@charset "UTF-8";
/** @format */
html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 1029px) and (min-width: 768px) {
  html {
    font-size: max(0.8rem, 16 / 1030 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

/* base
-----------------------------------------------*/
a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 共通
-----------------------------------------------*/
body {
  color: #333333;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.8px;
}

.inner {
  max-width: 1000px;
  padding-inline: 15px;
  margin-inline: auto;
}

.section {
  padding-block: 140px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 100px;
  }
}

.section-title {
  font-family: "Cormorant Garamond";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
  display: inline-block;
  position: relative;
  padding-right: 7.5rem;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 6.25rem;
  height: 1px;
  background-color: #333333;
  display: inline-block;
}

.content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .content {
    margin-top: 60px;
  }
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

/*==============================================
#header
===============================================*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(34, 34, 34, 0.9);
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  padding-inline: 70px;
  padding-block: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-inline: 15px;
    padding-block: 14px;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.header__link {
  color: #fff;
  display: block;
  position: relative;
  padding-inline: 4px;
  padding-block: 3px;
}
.header__link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ed1c24;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 10px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}

.drawer__icon--bar-wrap {
  width: 16px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #333;
}

.drawer__icon.js-show {
  display: block;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 5.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -5.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 80px;
  right: 0;
  max-width: 375px;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: rgba(34, 34, 34, 0.9);
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .drawer {
    top: 60px;
  }
}

.drawer__body {
  width: 270px;
  padding-block: 50px;
  padding-inline: 20px;
  margin-top: 37px;
  margin-inline: auto;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
.drawer__list li {
  border-bottom: 1px solid #fff;
  padding: 8px;
}
.drawer__list li a {
  color: #fff;
  display: block;
}

.drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

/*==============================================
#fv
===============================================*/
.fv__inner {
  padding-left: max(5%, 70px);
  padding-right: max(5%, 70px);
  padding-top: 300px;
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-top: 150px;
    padding-bottom: 400px;
    padding-left: 15px;
    padding-right: 0;
  }
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 45% 50%;
     object-position: 45% 50%;
}
@media screen and (max-width: 767px) {
  .fv__bg img {
    -o-object-position: 45% 50%;
       object-position: 45% 50%;
  }
}

.fv__text-wrap {
  position: relative;
}

.fv__text {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
  text-shadow: 4px 4px 10px #000;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 1.5rem;
  }
}
.fv__text + .fv__text {
  margin-top: 16px;
}
.fv__text .char {
  opacity: 0;
}

.coupon {
  position: relative;
  margin-top: 98px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .coupon {
    margin-top: 32px;
    margin-bottom: 32px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.coupon--pc {
  width: 230px;
  height: 200px;
  padding-block: 42px;
  border: 5px solid #b89859;
  background-color: #fff;
}

.coupon--sp-wrap {
  background-color: #f4f1e6;
  text-align: center;
}

.coupon--sp {
  max-width: 280px;
  width: 100%;
  height: auto;
  padding-block: 12px;
  padding-inline: 20px;
  border: 3px solid #b89859;
  background-color: #fff;
}

.coupon__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coupon__title {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .coupon__title {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.coupon__discount {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .coupon__discount {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
.coupon__discount span {
  color: #b89859;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  padding-inline: 2px;
}
@media screen and (max-width: 767px) {
  .coupon__discount span {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

.coupon__period {
  font-family: "Noto Sans JP";
  font-size: 15px;
  line-height: normal;
  letter-spacing: 0.75px;
  padding: 2px 10px;
  border: 1px solid #666;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .coupon__period {
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-top: 6px;
  }
}

/*==============================================
#concept
===============================================*/
.concept {
  position: relative;
  overflow: hidden;
}
.concept::before {
  content: "";
  position: absolute;
  background: url(../img/img_thread01.webp) no-repeat center center/cover;
  width: 375px;
  height: 245px;
  top: 152px;
  right: calc(50% + 345px);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .concept::before {
    display: none;
  }
}
.concept::after {
  content: "";
  position: absolute;
  background: url(../img/img_thread02.webp) no-repeat center center/cover;
  width: 410px;
  height: 257px;
  bottom: 0;
  left: calc(50% + 310px);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .concept::after {
    display: none;
  }
}

.concept__body {
  max-width: 800px;
  width: 100%;
  padding-block: 50px;
  padding-inline: 2rem;
  background: #fff;
  -webkit-box-shadow: 10px 10px 20px 0px #e4e0ce;
          box-shadow: 10px 10px 20px 0px #e4e0ce;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .concept__body {
    -webkit-box-shadow: 5px 5px 10px 0px #e4e0ce;
            box-shadow: 5px 5px 10px 0px #e4e0ce;
  }
}

.concept__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.9px;
  text-align: center;
}

.concept__text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.8px;
  margin-top: 20px;
}

/*==============================================
#quality
===============================================*/
.quality {
  background-color: #f4f1e6;
}

.quality__lead {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .quality__lead {
    font-size: 1rem;
  }
}

.quality__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 270px);
  gap: 36px;
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quality__item {
  background-color: #fff;
  padding-block: 50px;
  padding-inline: 24px;
}

.quality__img {
  width: 50px;
  height: 50px;
  margin-inline: auto;
}

.quality__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.9px;
  margin-top: 28px;
  text-align: center;
}

.quality__text {
  font-size: 16px;
  margin-top: 20px;
}

/*==============================================
#menu
===============================================*/
.menu {
  background: url(../img/bg_menu.webp) no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  padding-bottom: 244px;
}
@media screen and (max-width: 767px) {
  .menu {
    padding-bottom: 120px;
  }
}
.menu::before {
  content: "";
  position: absolute;
  background: url(../img/img_thread02.webp) no-repeat center center/cover;
  width: 410px;
  height: 257px;
  top: 0;
  left: calc(50% + 310px);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .menu::before {
    display: none;
  }
}
.menu::after {
  content: "";
  position: absolute;
  background: url(../img/img_thread01.webp) no-repeat center center/cover;
  width: 375px;
  height: 245px;
  bottom: 0;
  right: calc(50% + 345px);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .menu::after {
    display: none;
  }
}

.menu__list {
  padding-block: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 270px);
  row-gap: 100px;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .menu__list {
    padding-block: unset;
    row-gap: 36px;
  }
}

.menu__item {
  padding: 16px;
  position: relative;
}

.menu__img {
  width: 200px;
  height: 200px;
  margin-inline: auto;
}

.menu__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.9px;
}

.menu__price {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.9px;
}

.menu__text {
  font-size: 15px;
  letter-spacing: 0.75px;
  margin-top: 10px;
}

.menu-label {
  width: 50px;
  height: 50px;
  padding-block: 6px;
  padding-inline: 8px;
  background-color: #b89859;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: 5px;
  top: 150px;
}

.menu-label__text {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}
.menu-label__text + .menu-label__text {
  font-size: 14px;
}

/*==============================================
#access
===============================================*/
.access {
  background-color: #f4f1e6;
}

.access__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .access__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.access__info {
  background-color: #fff;
}

.access__dl {
  padding-block: 4rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .access__dl {
    padding-block: 3.125rem;
    padding-inline: 1.25rem;
  }
}

.access__row + .access__row {
  margin-top: 20px;
}
.access__row dt {
  font-weight: 700;
}
.access__row dd {
  word-break: keep-all;
}

.access__map-wrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access__map-wrap {
    width: 100%;
  }
}

.access__map {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 75%;
}

.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==============================================
#footer
===============================================*/
.footer {
  background: url(../img/bg_footer.webp) no-repeat center center/cover;
  padding-block: 120px;
}

.footer-logo {
  text-align: center;
}

.footer-logo__link {
  width: auto;
  height: 50px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer-logo__link {
    height: 40px;
  }
}
.footer-logo__link:hover {
  opacity: 0.7;
}

.footer__sns {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    margin-top: 140px;
  }
}

.sns__text {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .sns__text {
    font-size: 16px;
  }
}

.sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .sns__list {
    margin-top: 20px;
  }
}

.sns__link {
  height: 24px;
  width: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sns__link {
    height: 20px;
  }
}
.sns__link:hover {
  opacity: 0.7;
}

.to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 20px;
    bottom: 20px;
  }
}

.to-top__link {
  width: 60px;
  height: 60px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .to-top__link {
    width: 50px;
    height: 50px;
  }
}
.to-top__link:hover {
  opacity: 0.7;
}

.copyright {
  background-color: #dccdb1;
  padding-block: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .copyright {
    padding-block: 14px;
  }
}

.copyright__text {
  font-size: 14px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  .copyright__text {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}