@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Concert+One&family=Kiwi+Maru:wght@300;400;500&display=swap");

/*******************************
* ResetCSS
*******************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/***********************
root設定
***********************/

body {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  font-family: "Kiwi Maru", serif;
  font-feature-settings: "palt";
  color: #707070;
}

/***********************
表示設定
***********************/

.pc_hide {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
  .pc_hide {
    display: block;
  }
}

/***********************
フォント設定
***********************/

.en {
  font-family: "Concert One", cursive;
  font-weight: 400;
}

.en02 {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ff_light {
  font-weight: 300;
}

.ff_reg {
  font-weight: 400;
}

.ff_med {
  font-weight: 500;
}

.fc01 {
  color: #71c6d4;
}

.fc02 {
  color: #f8622b;
}

/***********************
画像設定
***********************/
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

img.ofi_contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ofi.min.js用の記述 */
  font-family: "object-fit: contain;";
}

img.ofi_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ofi.min.js用の記述 */
  font-family: "object-fit: cover;";
}

/***********************
リンク設定
***********************/

a {
  text-decoration: none;
  color: #707070;
  transition: all 0.5s;
}

a:hover {
  opacity: 0.7;
}

/***********************
レイアウト
***********************/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
  min-height: 1%;
  clear: both;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex.start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#wrapper {
  position: relative;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

#main {
  max-width: 910px;
  width: calc(100% - 380px);
  float: right;
  padding: 60px 0;
}

.ly_inner {
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1000px) {
  #wrapper {
    padding: 0 30px;
  }

  #main {
    max-width: 1000px;
    width: 100%;
    float: right;
    padding: 130px 0 30px;
  }

  .ly_inner {
    width: 100%;
  }
}

/***********************
Utils
***********************/

.hp_fl {
  float: left;
}
.hp_fr {
  float: right;
}
.el_imgTxt {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media screen and (max-width: 480px) {
  .fl,
  .fr {
    float: none;
  }
}

/***********************
Header
***********************/

#ly_header {
  width: 360px;
  background: #f8f8f8;
  padding: 30px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-670px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#ly_header .logo {
  max-width: 297px;
  margin-bottom: 20px;
}

.un_menuTrigger {
  display: none;
}

.bl_hNav {
  width: 100%;
}

.bl_hNav li {
  margin-bottom: 8px;
}

.bl_hNav li a {
  display: inline-block;
  font-size: 22px;
  line-height: 1.2;
  padding: 8px 0;
  border-bottom: solid 1px #707070;
}

.bl_hNav li.nav03 a {
  font-size: 15px;
}

.bl_hNav li .lg {
  font-size: 23px;
  margin-bottom: 5px;
  display: inline-block;
}

.bl_menu .links {
  margin-top: 30px;
}

.bl_menu .links .btn {
  margin-bottom: 20px;
  font-size: 24px;
  padding: 10px 0;
  width: 100%;
}

.bl_menu .sns_links {
  margin-top: 40px;
  text-align: center;
}

.bl_menu .sns_links a {
  display: inline-block;
  width: 36px;
  margin: 0 5px;
}

@media screen and (max-width: 1380px) {
  #ly_header {
    transform: translateX(calc(-50vw + 20px));
  }
}

@media screen and (max-width: 1000px) {
  #ly_header {
    width: 100%;
    height: 110px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    padding: 30px;
    background: #fff;
    float: none;
    transform: translateX(0);
  }

  #ly_header .logo {
    max-width: 243px;
    margin-bottom: 0;
  }

  .un_menuTrigger {
    position: fixed;
    width: 75px;
    height: 45px;
    display: block;
    top: 30px;
    right: 0;
    z-index: 9999;
    background: #179944;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .un_menuTrigger.active {
    background: transparent;
  }

  .un_menuTrigger span {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 1px;
    background-color: #fff;
  }

  .un_menuTrigger span:nth-of-type(1) {
    top: 12px;
  }
  .un_menuTrigger span:nth-of-type(2) {
    top: 22px;
  }
  .un_menuTrigger span:nth-of-type(3) {
    top: 32px;
  }

  .un_menuTrigger.active span:nth-of-type(1) {
    background: #707070;
    transform: translateX(0px) translateY(10px) rotate(-45deg);
  }
  .un_menuTrigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .un_menuTrigger.active span:nth-of-type(3) {
    background: #707070;
    transform: translateX(0px) translateY(-10px) rotate(45deg);
  }

  #ly_header .bl_menu {
    width: 100%;
    position: fixed;
    top: -200vh;
    right: inherit;
    left: 0;
    transition: all 0.5s;
    background: #f8f8f8;
    height: 100vh;
    z-index: 9998;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 110px 30px 0;
  }

  #ly_header.active .bl_menu {
    top: 0;
  }

  .bl_hNav li {
    width: 100%;
  }
}

/***********************
Footer
***********************/

#ly_footer {
  padding: 55px 45px;
}

#ly_footer .logo {
  width: 270px;
  margin-bottom: 20px;
}

#ly_footer .info {
  width: 50%;
  padding-right: 4%;
  border-right: solid 1px #eae8e8;
  margin-bottom: 50px;
}

#ly_footer .other {
  width: 50%;
  padding-left: 4%;
}

#ly_footer .txt {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

#ly_footer .mail {
  max-width: 215px;
  display: inline-block;
}

#ly_footer .onpo {
  color: #3fb4b9;
  line-height: 1.2;
  font-size: 16px;
}

.un_Copyright {
  font-size: 10px;
  text-align: center;
  color: #767676;
}

@media screen and (max-width: 1000px) {
  #ly_footer {
    padding: 30px 10px 0;
  }

  #ly_footer .logo {
    margin: 0 auto 30px;
  }

  #ly_footer .info {
    width: 100%;
    padding-right: 0;
    border-right: none;
    border-bottom: solid 1px #a09f9f;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: center;
  }

  #ly_footer .other {
    width: 100%;
    padding-left: 0;
    text-align: center;
    padding-bottom: 35px;
  }

  #ly_footer .txt {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  #ly_footer .info,
  #ly_footer .other {
    text-align: left;
  }
}
