@charset "UTF-8";
/* line 34, sass/_reset.scss */
header {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  /*font-size: 62.5%;*/
  box-sizing: border-box;
}

/* line 39, sass/_reset.scss */
header {
  line-height: 1;
}

@media (prefers-color-scheme: dark) {
  header,
  div {
    background-color: #fff;
  }
}

/* line 13, sass/_menu.scss */
.gnav {
  display: flex;
  height: 2rem;
  margin: 0 auto -10px;
  width: 850px;
  
}

/* line 19, sass/_menu.scss */
.gnav>li {
  /*親階層のみ幅を25%にする*/
  width: 25%;
}

/*全てのリスト・リンク共通*/
/* line 23, sass/_menu.scss */
.gnav li {
  list-style: none;
  position: relative;
  margin-bottom: -30px;
}

/* line 27, sass/_menu.scss */
.gnav li a {
  background-color: #fff;
  color: #000;
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  font-size: 9px;
  /*font-size: 1rem;*/
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  overflow: hidden;
}

/*子階層以降共通*/
/* line 40, sass/_menu.scss */
.gnav li li {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity .5s;
}

/* line 46, sass/_menu.scss */
.gnav li li a {
  border-top: 1px solid #eee;
  height: 50px;
}

/* line 50, sass/_menu.scss */
.gnav li:hover>ul>li {
  height: 5rem;
  opacity: 1;
  overflow: visible;
}

/* line 55, sass/_menu.scss */
.gnav li ul li ul {
  left: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

/*一番右のメニュー*/
/* line 62, sass/_menu.scss */
.gnav>li:nth-child(5) ul li ul {
  left: -100%;
}

/*hover*/
/* line 66, sass/_menu.scss */
.gnav>li:hover>a {
  /*親階層*/
  background-color: #E4BAAF;
}

/* line 70, sass/_menu.scss */
.gnav>li li>a {
  /*子階層*/
  background-color: #E4BAAF;
}

/* line 73, sass/_menu.scss */
.gnav>li li:hover>a {
  background-color: #FBEFED;
}

/* line 77, sass/_menu.scss */
.gnav li ul li ul li>a {
  /*孫階層*/
  background-color: #FBEFED;
}

/* line 80, sass/_menu.scss */
.gnav li ul li ul li:hover>a {
  background-color: #E4BAAF;
}

/* line 84, sass/_menu.scss */
.gnav li ul li ul li ul li>a {
  /*ひ孫階層*/
  background-color: #E4BAAF;
}

/* line 87, sass/_menu.scss */
.gnav li ul li ul li ul li:hover>a {
  background-color: #E4BAAF;
}

.gnav li.s_txt{
  overflow: hidden;
  height: 50px;
}
.gnav li.s_txt a {
  line-height: 1.8;
  padding: 5px 0 0;
}

/* line 90, sass/_menu.scss */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

/* line 96, sass/_menu.scss */
.menu-trigger {
  width: 35px;
  height: 32px;
  position: absolute;
  top: 15px;
  right: 10px;
}

/* line 103, sass/_menu.scss */
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #666;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* line 111, sass/_menu.scss */
.menu-trigger span:nth-of-type(1) {
  top: 3px;
}

/* line 114, sass/_menu.scss */
.menu-trigger span:nth-of-type(2) {
  top: 18px;
}

/* line 117, sass/_menu.scss */
.menu-trigger span:nth-of-type(3) {
  bottom: -5px;
}

/* line 120, sass/_menu.scss */
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(16px) rotate(-45deg);
  transform: translateY(16px) rotate(-45deg);
}

/* line 124, sass/_menu.scss */
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

/* line 127, sass/_menu.scss */
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}

/* line 1, sass/_blockreveal.scss */
.motion-txt {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 5px 0;
}

/* line 7, sass/_blockreveal.scss */
.motion-txt:after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #E4BAAF;
  transform: translate3d(-101%, 0, 0);
}

/* line 18, sass/_blockreveal.scss */
.js-scroll.show .motion-txt:after {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

/* line 25, sass/_blockreveal.scss */
.js-scroll.done .motion-txt:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

/* line 32, sass/_blockreveal.scss */
.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
}

/* line 36, sass/_blockreveal.scss */
.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}

/* line 50, sass/style.scss */
header {
  padding: 10px 3%;
  z-index: 999;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  background-color: #fff;
  width: 100%;
  transform: translateY(-100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  transition: 0.3s all ease-out;
}
header.fixed {
  transform: translateY(0%);
}

@media screen and (max-width: 768px) {

  /* line 50, sass/style.scss */
  header {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 10px 0;
    position: fixed;
    top: 0;
  }
  header h1 {
    padding: 10px 10px;
  }
  .gnav li.s_txt{
    overflow: hidden;
    height: auto;
  }
}

/* line 71, sass/style.scss */
header h1 img {
  width: 170px;
}

@media screen and (max-width: 768px) {

  /* line 71, sass/style.scss */
  header h1 img {
    width: 100px;
  }
}

@media screen and (max-width: 768px) {

  /* line 78, sass/style.scss */
  header .pcnav {
    display: none;
  }
}

/* line 83, sass/style.scss */
header .menu-trigger {
  display: none;
}

@media screen and (max-width: 768px) {

  /* line 83, sass/style.scss */
  header .menu-trigger {
    display: block;
  }
}

/* line 89, sass/style.scss */
header .spnav {
  background-color: #fff;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  font-size: 10.5px;
  display: none;
  z-index: 999;
}
header .spnav a{
  color: #333;
}

/* line 98, sass/style.scss */
header .spnav>ul>li {
  width: 100%;
  border-bottom: 1px solid #c9c9c9;
}

/* line 102, sass/style.scss */
header .spnav>ul>li>span {
  width: 100%;
  display: block;
  padding: 15px 0;
}

/* line 107, sass/style.scss */
header .spnav>ul>li>a {
  width: 100%;
  display: block;
  padding: 15px 0;
}

/* line 112, sass/style.scss */
header .spnav>ul>li>ul {
  background-color: #FBEFED;
}

/* line 115, sass/style.scss */
header .spnav>ul>li>ul>li>ul {
  background-color: #E4BAAF;
}

/* line 118, sass/style.scss */
header .spnav>ul>li>ul>li>span {
  width: 100%;
  display: block;
  padding: 15px 0;
  border-top: 1px solid #c9c9c9;
}

/* line 124, sass/style.scss */
header .spnav>ul>li>ul>li>a {
  width: 100%;
  display: block;
  padding: 15px 0;
  border-top: 1px solid #c9c9c9;
}

/* line 130, sass/style.scss */
header .spnav>ul>li>ul>li>ul>li>span {
  width: 100%;
  display: block;
  padding: 15px 0;
  border-top: 1px solid #c9c9c9;
}

/* line 136, sass/style.scss */
header .spnav>ul>li>ul>li>ul>li>a {
  width: 100%;
  display: block;
  padding: 15px 0;
  border-top: 1px solid #c9c9c9;
}

/* line 142, sass/style.scss */
header .spnav>ul>li>ul>li>ul {
  display: none;
}

/* line 145, sass/style.scss */
header .spnav>ul>li>ul {
  display: none;
}