@charset "UTF-8";
html {
  font-size: calc(16 / 375 * 1000px);
}
@media screen and (max-width: 999px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

.main__container {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  margin-inline: auto;
  background: #FAF0E4;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  background-color: #FAF0E4;
  z-index: 100;
  margin: 0 auto;
}

.header__inner {
  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;
  height: 77px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .header__inner {
    height: 77px;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 101;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo img {
  width: 220px;
  max-width: 100%;
}
@media screen and (max-width: 999px) {
  .header__logo img {
    width: 183px;
    max-width: 100%;
  }
}

.drawer-content.is-checked + .header .header__logo {
  z-index: 50;
}

.header__open {
  -ms-flex-item-align: center;
      align-self: center;
}

.drawer-icon {
  width: 32px;
  height: 23px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  width: 43px;
  height: 3px;
  left: -10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  left: -10px;
  width: 43px;
  height: 3px;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: -0.0625rem;
  width: 2.0625rem;
  height: 3px;
  background: #C48765;
  border-radius: 0.375rem;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  width: 36px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 13px;
  width: 36px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 25px;
  width: 36px;
}
@media screen and (max-width: 999px) {
  .drawer-icon__bar {
    width: 32px; /* スマホサイズでは幅を36pxに変更 */
    height: 2px;
  }
  .drawer-icon__bar:nth-of-type(1), .drawer-icon__bar:nth-of-type(2), .drawer-icon__bar:nth-of-type(3) {
    width: 32px; /* 全てのバーの幅を36pxに設定 */
  }
}

.drawer-content {
  width: 100%;
  max-width: 1000px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-100%);
          transform: translateX(-50%) translateY(-100%); /* 初期状態では画面外に配置 */
  background: #FAF0E4;
  z-index: 50;
  padding: 5rem 2.75rem 25rem;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
  overflow: hidden;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0); /* is-checked時に表示される */
}

.drawer-content__menu {
  text-align: center;
}

.drawer_link--wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  gap: 1.0625rem;
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.drawer-content__link {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  font-size: 0.875rem;
}

.drawer-content__button {
  margin-top: 1.875rem;
  position: relative;
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 6.25rem;
  background: #696;
  padding-block: 1.125rem;
  width: 17.9375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 49;
}
.drawer-content__button::before {
  position: absolute;
  content: "";
  background-image: url(../img/mail-logo.png);
  width: 1.4375rem;
  height: 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 2rem;
}

.is-checked ~ .header .header__logo {
  display: none !important;
}

.fv {
  text-align: center;
  margin-top: 70px;
}

.fv__inner img {
  width: 100%;
  height: auto;
}

.promise {
  padding-top: 2.3125rem;
  padding-bottom: 3.75rem;
  width: 100%;
  max-width: 1000px;
  min-width: 320px;
  margin: 0 auto;
}

.promise__inner {
  padding-inline: 0.9375rem;
}

.promise__title {
  text-align: center;
  margin-bottom: 2rem;
}

.promise__title-main {
  color: #696;
  font-family: "Zen Maru Gothic";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(70%, #FFE65A));
  background: linear-gradient(transparent 60%, #FFE65A 70%);
  display: inline-block;
}

.promise__title-sub {
  color: #696;
  font-family: "Zen Maru Gothic";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.promise__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.375rem;
}

.promise__card-img {
  display: block;
  text-align: center;
}

.promise__card-title {
  color: #696;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 0.625rem;
}

.promise__text {
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 162.5% */
  margin-top: 0.4375rem;
}

.shop {
  background: #ECD7BC;
  padding-top: 2.5625rem;
  padding-bottom: 3.5625rem;
}

.shop__inner {
  width: min(66.25rem, 100%);
  padding-inline: 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 999px) {
  .shop__inner {
    padding-inline: 0.9375rem;
  }
}

.shop__head-title {
  margin-bottom: 1.375rem;
}

.head-title--sub {
  color: #A56E56;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head-title--main {
  color: #4C4948;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.shop__img {
  border-radius: 1.875rem;
  border: 0.3125rem solid #FFF;
  overflow: hidden;
}
.shop__img img {
  width: 100%;
  height: auto;
}

.shop__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  margin-top: 1.75rem;
}

.list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}

.title-dt {
  background: #696;
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 0.5rem 0rem 0.6875rem;
}

.item-dd {
  background: #FFF;
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 144.444% */
  padding: 0.5625rem 0.9375rem 0.625rem;
}

.staff {
  background: #FAF0E4;
  padding-top: 3.125rem;
  padding-bottom: 4.3125rem;
}

.staff__inner {
  width: min(66.25rem, 100%);
  padding-inline: 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 999px) {
  .staff__inner {
    padding-inline: 0.9375rem;
  }
}

.staff__head-title {
  margin-bottom: 1.3125rem;
}

.staff__img {
  border-radius: 1.875rem;
  border: 0.3125rem solid #FFF;
  overflow: hidden;
}
.staff__img img {
  width: 100%;
  height: auto;
}

.staff__content {
  margin-top: 0.625rem;
}

.staff__title {
  color: #696;
  font-family: "Zen Maru Gothic";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.5625rem;
}

.staff__text {
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 162.5% */
}
.staff__text:nth-of-type(1), .staff__text:nth-of-type(2) {
  margin-bottom: 0.625rem;
}

.staff__card {
  border-radius: 0.9375rem;
  background: #FFF;
  padding: 1.25rem 0.9375rem;
  margin-top: 1.6875rem;
}

.staff__card-title--main {
  color: #A56E56;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.5625rem;
}

.staff__card-title--sub {
  color: #696;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.75rem;
}

.staff__card-text {
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 162.5% */
}
.staff__card-text:nth-of-type(1), .staff__card-text:nth-of-type(2) {
  margin-bottom: 0.625rem;
}

.company {
  background: #ECD7BC;
  padding-top: 3.1875rem;
  padding-bottom: 3rem;
}

.company__inner {
  width: min(66.25rem, 100%);
  padding-inline: 1.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 999px) {
  .company__inner {
    padding-inline: 0.9375rem;
  }
}

.company__head-title {
  margin-bottom: 1.4375rem;
}

.company__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}

.item-dd6 {
  padding-left: 1.625rem;
}

.dd6-pr {
  position: relative;
}

.dd6-no1 {
  position: absolute;
  top: 3.6875rem;
  left: 0.875rem;
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 144.444% */
}

.dd6-no2 {
  position: absolute;
  top: 6.9375rem;
  left: 0.875rem;
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 144.444% */
}

.dd6-no3 {
  position: absolute;
  top: 8.5625rem;
  left: 0.875rem;
  color: #654131;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 144.444% */
}

.contact {
  background: #654131;
  padding-top: 2.8125rem;
  padding-bottom: 3.1875rem;
}

.contact__inner {
  padding-inline: 0.9375rem;
}

.contact__title-sub {
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact__title-main {
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form-container {
  width: 56.25rem; /* 900px を rem に変換 */
  max-width: 100%; /* スマホ対応 */
  margin: auto; /* 中央寄せ */
  margin-top: 0.75rem;
  background: #fff;
}

.form-container iframe {
  width: 100%; /* 親要素に合わせる */
  height: 824px; /* 824px をそのまま適用 */
}

.footer {
  padding-top: 2.5rem;
  padding-bottom: 0.4375rem;
}

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

.footer_link--wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6875rem;
  text-align: center;
  margin-bottom: 2.0625rem;
}

.footer-content__link {
  color: #654131;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer__button {
  position: relative;
  color: #FFF;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 6.25rem;
  background: #696;
  padding-block: 1.125rem;
  width: 17.9375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__button::before {
  position: absolute;
  content: "";
  background-image: url(../img/mail-logo.png);
  width: 1.4375rem;
  height: 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 2rem;
}

.footer__logo {
  display: block;
  text-align: center;
  width: 14.1875rem;
  margin-inline: auto;
  margin-top: 1.625rem;
  margin-bottom: 1rem;
  position: relative;
}

.copyright {
  color: #654131;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.625rem; /* 216.667% */
  margin-inline: auto;
  display: block;
}