@charset "UTF-8";
/*==================================================*/
/* 前提css */
/*==================================================*/
a, article, blockquote, body, caption, dd, div, dl, dt, footer, h1, h2, h3, h4, h5, h6, header, html, iframe, img, li, nav, ol, p, pre, section, small, span, strong, table, td, th, tr, ul, figure {
  background: 0;
  border: 0;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: bottom; }

a, small, span, strong {
  vertical-align: baseline; }

article, footer, header, nav, section {
  display: block; }

li {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

address, th {
  font-style: normal; }

:focus, a:focus {
  outline: 0; }

br {
  letter-spacing: normal; }

textarea {
  resize: none; }

a {
  text-decoration: none; }

main img {
  height: auto;
  width: 100%; }

/*==================================================*/
/* レスポンシブ用css */
/*==================================================*/
.pc {
  display: block; }
  .pc.inline {
    display: inline; }
  .pc.flex {
    display: flex; }

.sp {
  display: none; }
  .sp.inline {
    display: none; }
  .sp.flex {
    display: none; }

@media (max-width: 768px) {
  .pc {
    display: none; }
    .pc.inline {
      display: none; }
    .pc.flex {
      display: none; }

  .sp {
    display: block; }
    .sp.inline {
      display: inline; }
    .sp.flex {
      display: flex; } }
/*==================================================*/
/* アニメーション用css */
/*==================================================*/
/*==================================================*/
/*==============================================================*/
/* アニメーション */
/*==============================================================*/
@-webkit-keyframes bright {
  0% {
    filter: brightness(0.2); }
  100% {
    filter: brightness(1); } }
@-moz-keyframes bright {
  0% {
    filter: brightness(0.2); }
  100% {
    filter: brightness(1); } }
@keyframes bright {
  0% {
    filter: brightness(0.2); }
  100% {
    filter: brightness(1); } }
@-webkit-keyframes scroll {
  0% {
    transform: translateY(0%); }
  50% {
    transform: translateY(30%); }
  100% {
    transform: translateY(0%); } }
@-moz-keyframes scroll {
  0% {
    transform: translateY(0%); }
  50% {
    transform: translateY(30%); }
  100% {
    transform: translateY(0%); } }
@keyframes scroll {
  0% {
    transform: translateY(0%); }
  50% {
    transform: translateY(30%); }
  100% {
    transform: translateY(0%); } }
@-webkit-keyframes scroll_mozi {
  0% {
    transform: translateY(0%) rotateZ(90deg) scaleX(0.8); }
  50% {
    transform: translateY(12%) rotateZ(90deg) scaleX(0.8); }
  100% {
    transform: translateY(0%) rotateZ(90deg) scaleX(0.8); } }
@-moz-keyframes scroll_mozi {
  0% {
    transform: translateY(0%) rotateZ(90deg) scaleX(0.8); }
  50% {
    transform: translateY(12%) rotateZ(90deg) scaleX(0.8); }
  100% {
    transform: translateY(0%) rotateZ(90deg) scaleX(0.8); } }
@keyframes scroll_mozi {
  0% {
    transform: translateY(0%) rotateZ(90deg) scaleX(0.8); }
  50% {
    transform: translateY(12%) rotateZ(90deg) scaleX(0.8); }
  100% {
    transform: translateY(0%) rotateZ(90deg) scaleX(0.8); } }
@-webkit-keyframes text_on {
  0% {
    opacity: 0; }
  99% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@-moz-keyframes text_on {
  0% {
    opacity: 0; }
  99% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@keyframes text_on {
  0% {
    opacity: 0; }
  99% {
    opacity: 1; }
  100% {
    opacity: 1; } }
@-webkit-keyframes text-eff_on {
  0% {
    left: -100%; }
  50% {
    left: 0%; }
  100% {
    left: 100%; } }
@-moz-keyframes text-eff_on {
  0% {
    left: -100%; }
  50% {
    left: 0%; }
  100% {
    left: 100%; } }
@keyframes text-eff_on {
  0% {
    left: -100%; }
  50% {
    left: 0%; }
  100% {
    left: 100%; } }
.bright {
  -webkit-animation: bright 1s ease;
  -moz-animation: bright 1s ease;
  animation: bright 1s ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }

/*==================================================

    1. common
    2. header
    3. main
    4. footer
    5. other

==================================================*/
/*==================================================
 1. common
==================================================*/
/* color */
/* font */
/* other */
/* development */
img:not([alt]) {
  outline: 3px dashed pink; }

/* Common Parts */
body {
  color: #1f1f1f;
  background: #fff;
  font-family: "Noto Serif JP", serif; }

.logo-wrapper .logo, .about .logo-big__logo, .customize .customize-content__pic, .quality .table__fig, .howto .howto-fig-table__fig {
  width: 100%;
  height: auto; }

.max-width-inner__620, .max-width-inner__700, .max-width-inner__800, .contact .contact-btn {
  display: block;
  margin: 0 auto; }

.pc {
  display: inherit; }
  @media (max-width: 768px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media (max-width: 768px) {
    .sp {
      display: inherit; } }

/* animation */
/*@-webkit-keyframes pull {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.3) rotate(100deg);
        transform: scale(1.3) rotate(100deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
@keyframes pull {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.3) rotate(100deg);
        transform: scale(1.3) rotate(100deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
@-webkit-keyframes pull-sp {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.3) rotate(100deg) translateX(-50%);
        transform: scale(1.3) rotate(100deg) translateX(-50%);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1) rotate(0deg) translateX(-50%);
        transform: scale(1) rotate(0deg) translateX(-50%);
    }
}
@keyframes pull-sp {
    0% {
        opacity: 0;
        -webkit-transform: scale(1.3) rotate(100deg) translateX(-50%);
        transform: scale(1.3) rotate(100deg) translateX(-50%);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1) rotate(0deg) translateX(-50%);
        transform: scale(1) rotate(0deg) translateX(-50%);
    }
}*/
/*@keyframes svg {
    0% {
        //fill: transparent;
        //stroke-dasharray: 2000;
        stroke-dashoffset: 2000;
        //opacity: 0;
    }
    100%{
        //fill: transparent;
        stroke-dashoffset: 0;
        //opacity: 1;
        
    }
}*/
/*.logo-anime {
    //-webkit-animation-name: svg;
    //animation-name: svg;
    //animation-fill-mode: forwards;
    stroke: $black;
    stroke-width: 1;
    stroke-dasharray: 2000;
    fill: transparent;
    //animation: svg 5s ease-in both infinite;
}*/
.InVfadeInUp {
  opacity: 0;
  animation-duration: 4s;
  animation-delay: 1s; }

/*.InVsvg{
    //opacity: 0;
    animation-duration: 10s;
    animation-delay: 1s;
}*/
/*.InVpull{
    opacity: 0;
    animation-duration: 4s;
    animation-delay: 1.5s;
}*/
.animated {
  animation-duration: .75s; }
  .animated--delay {
    animation-duration: 10s; }

/*==================================================
 2. header
==================================================*/
header {
  height: 11.09375vw;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
    header {
      /* IE向けのCSS～START */
      justify-content: flex-start;
      /* IE向けのCSS～END */ }
      header .selector {
        property: value; } }
  @media (max-width: 768px) {
    header {
      height: 26.0416666667vw; } }

.logo-wrapper {
  display: block;
  margin: 0 auto;
  width: 6.875vw;
  height: auto; }
  @media (max-width: 768px) {
    .logo-wrapper {
      width: 22.9166666667vw; } }

/*==================================================
 3. main
==================================================*/
.text {
  line-height: 1.75;
  /*&--serif {
      font-family: $notoserif;
  }*/ }
  .text--12 {
    font-size: 0.9375vw; }
    @media (max-width: 768px) {
      .text--12 {
        font-size: 3.125vw; } }
  .text--14 {
    font-size: 1.09375vw; }
    @media (max-width: 768px) {
      .text--14 {
        font-size: 3.6458333333vw; } }
  @media (max-width: 768px) {
    .text--14-s {
      font-size: 2.6041666667vw; } }
  .text--16 {
    font-size: 1.25vw; }
    @media (max-width: 768px) {
      .text--16 {
        font-size: 4.1666666667vw; } }
  .text--20 {
    font-size: 1.5625vw; }
    @media (max-width: 768px) {
      .text--20 {
        font-size: 5.2083333333vw; } }
  .text--ls50 {
    letter-spacing: 0.05em; }
  .text--ls75 {
    letter-spacing: 0.075em; }
  .text--ls100 {
    letter-spacing: 0.1em; }
  .text--ls200 {
    letter-spacing: 0.2em; }
  .text--center {
    text-align: center; }
  @media (max-width: 768px) {
    .text--margin22 {
      margin-top: 2.8645833333vw; } }
  .text--margin28 {
    margin-top: 2.1875vw; }
    @media (max-width: 768px) {
      .text--margin28 {
        margin-top: 3.6458333333vw; } }

.h2 {
  font-family: "Cormorant Unicase", serif;
  font-size: 2.1875vw;
  text-align: center;
  margin-bottom: 1.875vw; }
  .h2__add {
    display: block;
    font-size: 1.09375vw;
    margin-top: 0.625vw;
    letter-spacing: 0.2em; }
  @media (max-width: 768px) {
    .h2 {
      font-size: 7.2916666667vw;
      margin-bottom: 3.125vw; }
      .h2__add {
        font-size: 3.125vw;
        margin-top: 1.0416666667vw; } }

.h3 {
  font-family: "Cormorant Unicase", serif;
  text-align: center;
  letter-spacing: 0.025em; }
  .h3--16 {
    font-size: 1.25vw; }
  .h3--20 {
    font-size: 1.5625vw; }
  .h3--add {
    display: block;
    font-size: 0.9375vw;
    margin-bottom: 0.390625vw;
    letter-spacing: 0.2em; }
  .h3--underline {
    position: relative; }
    .h3--underline::after {
      content: "";
      width: 100%;
      height: 1px;
      background: #1f1f1f;
      position: absolute;
      left: 0;
      bottom: -0.625vw; }
  @media (max-width: 768px) {
    .h3--16 {
      font-size: 4.1666666667vw; }
    .h3--20 {
      font-size: 5.2083333333vw; }
    .h3--add {
      display: block;
      font-size: 3.125vw;
      margin-bottom: 0.6510416667vw; }
    .h3--underline::after {
      bottom: -1.0416666667vw; } }

.max-width-inner__620 {
  width: 48.4375vw; }
  @media (max-width: 768px) {
    .max-width-inner__620 {
      width: 90%; } }
.max-width-inner__700 {
  width: 54.6875vw; }
  @media (max-width: 768px) {
    .max-width-inner__700 {
      width: 90%; } }
.max-width-inner__800 {
  width: 62.5vw; }
  .max-width-inner__800--gray {
    background: #f2f2f0; }
  .max-width-inner__800--padding {
    padding: 3.90625vw 0; }
  .max-width-inner__800--relative {
    position: relative; }
  @media (max-width: 768px) {
    .max-width-inner__800 {
      width: 90%; } }

.link-btn {
  color: #1f1f1f;
  transform: scale(1);
  transition: 0.3s ease; }
  .link-btn:hover {
    transform: scale(1.05); }

.introduction .block01 {
  height: 43.359375vw;
  position: relative; }
  .introduction .block01__text {
    position: absolute;
    left: 66.171875vw;
    top: 11.71875vw;
    line-height: 2.25; }
  .introduction .block01__pic {
    position: absolute;
    height: auto; }
  .introduction .block01__pic01 {
    width: 60.546875vw;
    left: 0;
    top: 0; }
  .introduction .block01__pic02 {
    width: 17.8125vw;
    left: 73.984375vw;
    top: -3.90625vw; }
  .introduction .block01__pic03 {
    width: 29.6875vw;
    left: 70.46875vw;
    top: 24.53125vw; }
  @media (max-width: 768px) {
    .introduction .block01 {
      height: auto;
      text-align: center; }
      .introduction .block01__text {
        position: inherit;
        left: auto;
        top: auto;
        margin: 5.2083333333vw 0; }
      .introduction .block01__pic {
        position: inherit;
        left: auto;
        top: auto; }
      .introduction .block01__pic01 {
        width: 90%; }
      .introduction .block01__pic02 {
        width: calc( 45% - 0.78125vw );
        height: 27.8645833333vw;
        margin-top: 1.5625vw; }
      .introduction .block01__pic03 {
        width: calc( 45% - 0.78125vw );
        height: 27.8645833333vw;
        margin-top: 1.5625vw;
        margin-left: 1.5625vw; } }
.introduction .block02 {
  height: 22.5vw;
  position: relative; }
  .introduction .block02__text {
    position: absolute;
    left: 41.5625vw;
    top: 0;
    line-height: 2.333; }
  .introduction .block02__pic-wrapper {
    width: 18.203125vw;
    height: auto;
    position: absolute;
    left: 19.140625vw;
    top: 0; }
  .introduction .block02__pic01 {
    width: 17.734375vw;
    height: auto; }
  .introduction .block02__pic02 {
    width: 17.734375vw;
    height: auto;
    margin-left: 0.46875vw;
    margin-top: 2.734375vw; }
  @media (max-width: 768px) {
    .introduction .block02 {
      height: auto;
      text-align: center; }
      .introduction .block02__text {
        position: inherit;
        left: auto;
        top: auto;
        text-align: left;
        display: inline-block;
        white-space: nowrap;
        margin: 5.2083333333vw 0 5.2083333333vw 5%; }
      .introduction .block02__pic-wrapper {
        width: 100%;
        position: inherit;
        left: auto;
        top: auto;
        text-align: center; }
      .introduction .block02__pic01 {
        width: calc( 45% - 0.78125vw );
        height: auto; }
      .introduction .block02__pic02 {
        width: calc( 45% - 0.78125vw );
        height: auto;
        margin-left: 1.5625vw;
        margin-top: 0; } }

section {
  margin-top: 9.375vw;
  padding: 3.90625vw 0; }
  @media (max-width: 768px) {
    section {
      margin-top: 15.625vw;
      padding: 6.5104166667vw 0; } }

.about {
  padding: 0;
  position: relative; }
  .about .logo-big__wrapper {
    width: 13.59375vw;
    height: auto;
    position: absolute;
    right: 1.484375vw;
    top: 6.5625vw; }
  .about .logo-big__logo-path {
    fill-opacity: 0;
    stroke: #1f1f1f;
    stroke-width: .5;
    stroke-miterlimit: 10; }
  @media (max-width: 768px) {
    .about .logo-big__wrapper {
      width: 22.65625vw;
      right: auto;
      left: 50%;
      top: auto;
      transform: translateX(-50%); } }

.customize {
  /*@include sp {
      .customize-content {
          &__pic {
              &--margin-top {
                  margin-top: vw_sp(4);
              }
              &--margin-large {
                  margin-top: vw_sp(64);
              }
          }
      }
  }*/ }
  .customize .buttons {
    display: flex;
    justify-content: center;
    align-items: center; }
    .customize .buttons__wrapper {
      display: flex; }
    .customize .buttons__item {
      font-size: 1.40625vw;
      position: relative; }
      .customize .buttons__item:not(:first-child) {
        margin-left: 3.90625vw; }
      .customize .buttons__item:nth-child(1)::before, .customize .buttons__item:nth-child(2)::before, .customize .buttons__item:nth-child(3)::before, .customize .buttons__item:nth-child(4)::before {
        font-size: 0.78125vw;
        font-family: "Cormorant Unicase", serif;
        position: absolute;
        top: -0.78125vw;
        left: -1.40625vw; }
      .customize .buttons__item:nth-child(1)::before {
        content: "01"; }
      .customize .buttons__item:nth-child(2)::before {
        content: "02"; }
      .customize .buttons__item:nth-child(3)::before {
        content: "03"; }
      .customize .buttons__item:nth-child(4)::before {
        content: "04"; }
      .customize .buttons__item::after {
        content: "";
        width: 100%;
        height: 1px;
        background: #1f1f1f;
        position: absolute;
        bottom: -0.46875vw;
        left: 0; }
    .customize .buttons__link {
      display: block;
      font-family: "Cormorant Unicase", serif; }
  .customize .customize-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .customize .customize-content:nth-child(odd) {
      flex-direction: row-reverse; }
    .customize .customize-content__text-wrapper {
      width: 29.84375vw;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
    .customize .customize-content__pic-wrapper {
      width: 32.5vw;
      display: flex;
      justify-content: space-between; }
      .customize .customize-content__pic-wrapper--column {
        justify-content: space-between;
        width: 10.3125vw;
        height: 100%; }
      .customize .customize-content__pic-wrapper--column-under {
        justify-content: flex-end; }
    .customize .customize-content__pic {
      max-width: 21.40625vw;
      max-height: 21.40625vw;
      box-sizing: border-box;
      border: 1px solid #1f1f1f; }
      .customize .customize-content__pic--margin-top {
        margin-top: 0.78125vw; }
      .customize .customize-content__pic--margin-large {
        margin-top: 11.09375vw; }
    .customize .customize-content:not(:first-child) {
      margin-top: 4.6875vw; }
    .customize .customize-content::before {
      content: "";
      width: 100%;
      height: 15.625vw;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: -1; }
    .customize .customize-content:nth-of-type(2)::before {
      background: #eeeae3; }
    .customize .customize-content:nth-of-type(3)::before {
      background: #ddd6ce; }
    .customize .customize-content:nth-of-type(4)::before {
      background: #eae8e7; }
    .customize .customize-content:nth-of-type(5)::before {
      background: #b0a99f; }
  @media (max-width: 768px) {
    .customize {
      padding: 13.0208333333vw 0 15.625vw; }
      .customize .buttons__item {
        font-size: 4.1666666667vw; }
        .customize .buttons__item:not(:first-child) {
          margin-left: 6.5104166667vw; }
        .customize .buttons__item:nth-child(1)::before, .customize .buttons__item:nth-child(2)::before, .customize .buttons__item:nth-child(3)::before, .customize .buttons__item:nth-child(4)::before {
          font-size: 2.6041666667vw;
          top: -1.953125vw;
          left: -3.6458333333vw; }
        .customize .buttons__item::after {
          bottom: -0.78125vw; }
      .customize .customize-content {
        flex-direction: column-reverse; }
        .customize .customize-content:nth-child(odd) {
          flex-direction: column-reverse; }
        .customize .customize-content__text-wrapper {
          width: 100%;
          margin-top: 2.6041666667vw; }
        .customize .customize-content__pic-wrapper {
          width: 79.6875vw;
          justify-content: center; }
          .customize .customize-content__pic-wrapper--column {
            width: 25.5208333333vw;
            margin: 0 1.0416666667vw; }
        .customize .customize-content__pic {
          max-width: 52.0833333333vw;
          max-height: 52.0833333333vw; }
          .customize .customize-content__pic--margin-top {
            margin-top: 1.0416666667vw; }
          .customize .customize-content__pic--margin-large {
            margin-top: 26.5625vw; }
        .customize .customize-content:not(:first-child) {
          margin-top: 7.8125vw; }
        .customize .customize-content::before {
          width: 100%;
          height: 32.5520833333vw;
          left: 0;
          top: auto;
          bottom: -19.0104166667vw; }
        .customize .customize-content:nth-of-type(2)::before {
          background: #eeeae3; } }

.quality, .howto, .contact, .discover {
  background: #f2f2f0;
  margin-top: 0; }

.quality {
  padding: 4.6875vw 0 0; }
  .quality .table__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse; }
    .quality .table__wrapper:not(:first-child) {
      margin-top: 3.75vw; }
  .quality .table__text-wrapper {
    width: 22.65625vw; }
  .quality .table__fig-wrapper {
    width: 21.875vw;
    display: flex;
    justify-content: center;
    align-items: center; }
  @media (max-width: 768px) {
    .quality {
      padding: 7.8125vw 0 0; }
      .quality .table__wrapper {
        flex-direction: column; }
        .quality .table__wrapper:not(:first-child) {
          margin-top: 9.375vw; }
      .quality .table__text-wrapper {
        width: 100%; }
      .quality .table__fig-wrapper {
        width: 80%;
        margin-top: 5.2083333333vw; } }

.howto {
  padding: 9.84375vw 0 0; }
  .howto .howto-fig-table {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto; }
    .howto .howto-fig-table__column {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; }
      .howto .howto-fig-table__column:not(:first-child) {
        margin-left: 0.46875vw; }
      .howto .howto-fig-table__column:nth-of-type(1) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(2) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(3) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(4) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(5) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(6) .howto-fig-table__fig-wrapper::before {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2.109375vw;
        height: 2.109375vw;
        background: #1f1f1f;
        color: #fff;
        font-size: 1.171875vw;
        border-radius: 50%;
        position: absolute;
        top: -0.3125vw;
        left: -0.625vw; }
      .howto .howto-fig-table__column:nth-of-type(1) .howto-fig-table__fig-wrapper::before {
        content: "1"; }
      .howto .howto-fig-table__column:nth-of-type(2) .howto-fig-table__fig-wrapper::before {
        content: "2"; }
      .howto .howto-fig-table__column:nth-of-type(3) .howto-fig-table__fig-wrapper::before {
        content: "3"; }
      .howto .howto-fig-table__column:nth-of-type(4) .howto-fig-table__fig-wrapper::before {
        content: "4"; }
      .howto .howto-fig-table__column:nth-of-type(5) .howto-fig-table__fig-wrapper::before {
        content: "5"; }
      .howto .howto-fig-table__column:nth-of-type(6) .howto-fig-table__fig-wrapper::before {
        content: "6"; }
    .howto .howto-fig-table__fig-wrapper {
      width: 5.9375vw;
      height: auto;
      position: relative; }
    .howto .howto-fig-table__text-wrapper {
      min-width: 8.75vw;
      margin-top: 0.9375vw; }
  @media (max-width: 768px) {
    .howto {
      padding: 16.40625vw 0 0; }
      .howto .howto-fig-table {
        flex-wrap: wrap; }
        .howto .howto-fig-table__column {
          margin-top: 10.4166666667vw;
          width: 45%; }
          .howto .howto-fig-table__column:not(:first-child) {
            margin-left: 1.5625vw; }
          .howto .howto-fig-table__column:nth-of-type(1) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(2) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(3) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(4) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(5) .howto-fig-table__fig-wrapper::before, .howto .howto-fig-table__column:nth-of-type(6) .howto-fig-table__fig-wrapper::before {
            width: 7.03125vw;
            height: 7.03125vw;
            top: -0.5208333333vw;
            left: -1.0416666667vw;
            font-size: 3.90625vw; }
        .howto .howto-fig-table__cell {
          width: 100%; }
        .howto .howto-fig-table__fig-wrapper {
          width: 60%; }
        .howto .howto-fig-table__text-wrapper {
          min-width: 14.5833333333vw;
          margin-top: 1.5625vw; } }

.contact {
  padding: 6.25vw 0; }
  .contact .contact-btn {
    width: 17.1875vw;
    height: 3.59375vw;
    color: #fff;
    background: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease; }
    .contact .contact-btn:hover {
      background: #847f78;
      color: #1f1f1f; }
  @media (max-width: 768px) {
    .contact {
      padding: 10.4166666667vw 0; }
      .contact .contact-btn {
        width: 60%;
        height: 7.8125vw; } }

.discover {
  padding: 4.84375vw 0 1.40625vw;
  border-top: 1px solid #1f1f1f; }
  .discover .banners {
    display: flex; }
    .discover .banners__banner-wrapper {
      position: relative; }
      .discover .banners__banner-wrapper:not(:first-child) {
        margin-left: 1.40625vw; }
      .discover .banners__banner-wrapper:nth-of-type(1) .banners__logo, .discover .banners__banner-wrapper:nth-of-type(2) .banners__logo, .discover .banners__banner-wrapper:nth-of-type(3) .banners__logo {
        width: 11.015625vw;
        height: auto; }
    .discover .banners__banner {
      box-sizing: border-box;
      border: 1px solid #1f1f1f; }
    .discover .banners__cover {
      width: 100%;
      height: 100%;
      background: rgba(173, 155, 122, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: 0.3s ease; }
      .discover .banners__cover:hover {
        opacity: 1; }
  @media (max-width: 768px) {
    .discover {
      padding: 8.0729166667vw 0 2.34375vw; }
      .discover .banners__banner-wrapper:not(:first-child) {
        margin-left: 2.34375vw; }
      .discover .banners__banner-wrapper:nth-of-type(1) .banners__logo {
        width: 18.359375vw; } }

/*==================================================
 4. footer
==================================================*/
footer {
  background: #f2f2f0;
  padding: 4.0625vw 0; }
  @media (max-width: 768px) {
    footer {
      padding: 6.7708333333vw 0; } }

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center; }
  .footer-nav__wrapper {
    display: flex;
    margin-top: 2.109375vw; }
  .footer-nav__item {
    position: relative; }
    .footer-nav__item:not(:first-child) {
      margin-left: 2.34375vw; }
    .footer-nav__item:not(:first-child)::before {
      content: "";
      width: 0.234375vw;
      height: 0.234375vw;
      background: #1f1f1f;
      border-radius: 50%;
      position: absolute;
      left: -1.171875vw;
      top: 50%;
      transform: translateY(-50%); }
  .footer-nav__link {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25vw; }
    .footer-nav__link::after {
      content: "";
      width: 100%;
      height: 1px;
      background: #1f1f1f;
      position: absolute;
      bottom: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transition: .3s; }
    .footer-nav__link:hover::after {
      bottom: -2px;
      opacity: 1;
      visibility: visible; }
  @media (max-width: 768px) {
    .footer-nav__wrapper {
      margin-top: 2.109375vw; }
    .footer-nav__item:not(:first-child) {
      margin-left: 4.1666666667vw; }
    .footer-nav__item:not(:first-child)::before {
      width: 0.390625vw;
      height: 0.390625vw;
      left: -2.0833333333vw; }
    .footer-nav__link {
      font-size: 4.1666666667vw; }
      .footer-nav__link:hover::after {
        bottom: -2px; } }

.copyright {
  display: block;
  margin-top: 2.109375vw;
  text-align: center;
  font-size: 0.9375vw; }
  @media (max-width: 768px) {
    .copyright {
      margin-top: 3.515625vw;
      font-size: 2.6041666667vw; } }

/*==================================================
 5. other
==================================================*/
.gototop {
  position: fixed;
  right: 3.359375vw;
  bottom: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #1f1f1f;
  background: #fff;
  transition: 0.3s ease; }
  .gototop:hover {
    background: #b0a99f; }
  .gototop__icon-wrapper {
    height: 28px;
    width: auto; }
  .gototop__icon {
    height: 100%;
    width: auto;
    margin-left: 8px; }

/*# sourceMappingURL=style.css.map */
