@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
figure,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

em,
strong {
  font-style: normal;
  font-weight: normal;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  background: #2f2f2f;
  margin: 0; /* ブラウザ標準の余白を消す */
  overflow-x: hidden; /* 万が一突き抜けても横スクロールさせない */
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 900px) {
  .hidden-sp {
    display: inline;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 900px) {
  .hidden-pc {
    display: none;
  }
}

.heading {
  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;
}
.heading::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #159741;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .heading::after {
    margin-top: 16px;
  }
}

.heading.is-white::after {
  background: #fff;
}

.heading-ja {
  color: #159741;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .heading-ja {
    font-size: 18px;
    letter-spacing: 0.9px;
    margin-bottom: 14px;
  }
}

.heading-en {
  color: #333;
  font-family: "reross-quadratic", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 900px) {
  .heading-en {
    font-size: 48px;
    letter-spacing: 2.4px;
  }
}

/* 1. コンテナの共通設定（窓の大きさを決める） */
.parallax-container,
.parallax-container-menu {
  display: block;
  width: 100%;
  height: 250px; /* SP時の窓の高さ */
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .parallax-container,
  .parallax-container-menu {
    height: 450px; /* PC時の窓の高さ */
  }
}

/* 2. 個別の余白設定（AboutとMenuで余白が違う場合） */
.parallax-container {
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .parallax-container {
    margin-top: 150px;
  }
}

.parallax-container-menu {
  margin-top: 40px; /* 適宜調整 */
}
@media screen and (min-width: 900px) {
  .parallax-container-menu {
    margin-top: 80px;
  }
}

/* 3. 画像の共通設定（パララックスの動きを作る） */
.about__image,
.menu__image {
  display: block;
  width: 100%;
  height: 100%;
}
.about__image img,
.menu__image img {
  display: block;
  width: 100%;
  /* ここが重要：窓より高くして、上下に余裕を作る */
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  /* transformよりもpositionの方がパララックスの制御がしやすいです */
  position: absolute;
  top: -5%; /* 画像を少し上にずらして配置（これで隙間が消える） */
  left: 0;
}
@media screen and (min-width: 900px) {
  .about__image img,
  .menu__image img {
    height: 110%;
    top: -5%;
  }
}

/* 4. 重複していた menu__image の img { height: auto } は削除！ */
.header {
  width: 100%;
  height: 60px;
  background: #2f2f2f;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .header {
    height: 90px;
    width: 100%;
    left: 0;
  }
}

.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;
  padding-inline: 16px;
  height: inherit;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-left: 31px;
    padding-right: 71px;
    margin: 0 auto;
  }
}

.header__logo a img {
  width: 55px;
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 117.871px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .header__nav {
    gap: 40px;
  }
}

.header__link {
  font-family: "reross-quadratic", sans-serif;
  font-weight: 400;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.42px;
  padding-block: 20px;
}
@media screen and (min-width: 900px) {
  .header__link {
    font-size: 18px;
  }
  .header__link:hover {
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-color: #159741;
    text-decoration-thickness: 2px;
  }
}

.fv {
  background: #2f2f2f;
  margin-top: 60px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv {
    margin-top: 81px;
  }
}

.fv__inner {
  padding-bottom: 20px;
  position: relative;
}

.fv__image {
  display: block;
  margin-left: auto;
  width: 100%;
  max-width: 308px;
}
@media screen and (min-width: 900px) {
  .fv__image {
    max-width: 1080px;
  }
}
.fv__image img {
  width: 100%;
  height: auto;
  display: block;
}

.fv__message {
  position: absolute;
  top: 30px;
  left: 19px;
}
@media screen and (min-width: 900px) {
  .fv__message {
    top: 94px;
    left: 8vw;
    max-width: 526px;
  }
}

.fv__title {
  color: #fff;
  font-family: "reross-quadratic", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
}
@media screen and (min-width: 900px) {
  .fv__title {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 400;
    line-height: 100px;
  }
}
.fv__title span {
  color: #fff;
}
.fv__title span.is-white {
  display: block;
}
.fv__title span.is-1 {
  line-height: normal;
}
.fv__title span.is-green {
  color: #159741;
  font-size: 36px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .fv__title span.is-green {
    font-size: clamp(50px, 8vw, 100px);
  }
}

.fv__text {
  margin-top: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 32px;
    line-height: normal;
    letter-spacing: 1.6px;
  }
}
.fv__text span {
  display: block;
}
@media screen and (min-width: 900px) {
  .fv__text span {
    font-weight: 700;
  }
}

@media screen and (min-width: 900px) {
  .fv__text-1 {
    padding-left: 21px;
  }
}

.fv__text-2 {
  color: #fff;
  margin-top: 9px;
  padding: 4px 8px 7px 0px;
  background: #159741;
  display: inline-block;
}

.concept {
  padding-top: 24px;
  padding-bottom: 64px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 899px) {
  .concept {
    padding-top: 120px;
    padding-bottom: 110px;
  }
}
@media screen and (min-width: 900px) {
  .concept {
    padding-top: 120px;
    padding-bottom: 110px;
  }
}

.concept__inner {
  padding-inline: 16px;
}

.concept__title {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) and (max-width: 899px) {
  .concept__title {
    font-size: 30px;
    letter-spacing: 1.5px;
  }
}
@media screen and (min-width: 900px) {
  .concept__title {
    font-size: 30px;
    letter-spacing: 1.5px;
  }
}

.concept__text {
  margin-top: 24px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.48px;
  max-width: 311px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) and (max-width: 899px) {
  .concept__text {
    max-width: 493px;
    margin-top: 48px;
    letter-spacing: 0.54px;
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .concept__text {
    max-width: 493px;
    margin-top: 48px;
    letter-spacing: 0.54px;
    font-size: 18px;
  }
}
.concept__text span {
  display: block;
}
.concept__text span + span {
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .concept__text span + span {
    margin-top: 25px;
  }
}

.concept__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  max-width: 411px;
}
@media screen and (min-width: 768px) and (max-width: 899px) {
  .concept__image {
    max-width: 1732px;
  }
}
@media screen and (min-width: 900px) {
  .concept__image {
    max-width: 1732px;
  }
}
.concept__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  background: #f2f2f2;
  padding-top: 64px;
}

.about__cards {
  margin-top: 56px;
}

.about__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
.about__card + .about__card {
  margin-top: 56px;
}
@media screen and (min-width: 900px) {
  .about__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1140px;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 900px) {
  .about__card--01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-inline: auto;
    gap: 67px;
  }
}

@media screen and (min-width: 900px) {
  .about__card--02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-inline: auto;
    /* 修正：gapも画面幅に合わせて少し縮むようにすると安心です */
    gap: clamp(20px, 5vw, 65px);
  }
}

@media screen and (min-width: 900px) {
  .about__card--03 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-inline: auto;
    gap: 71px;
  }
}

.about__card-message {
  padding-left: 25px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about__card-message {
    padding-left: 0;
    margin-inline: 0;
    /* 修正：0 0 565px（縮まない）から 1（余った分を埋める＆縮める）に変更 */
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 565px;
  }
}

.about__card-title {
  position: relative;
  z-index: 2;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 900px) {
  .about__card-title {
    font-size: 30px;
    letter-spacing: 1.5px;
    width: 100%;
    display: block;
  }
}

.about__green {
  color: #159741;
  font-weight: 700;
  white-space: nowrap;
}

.about__card-text {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: #333;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.48px;
  z-index: 2;
  padding-right: 23px;
}
@media screen and (min-width: 900px) {
  .about__card-text {
    font-size: 18px;
    letter-spacing: 0.54px;
    padding-right: 0;
    width: 400px;
  }
}

.about__card-number {
  position: absolute;
  z-index: 1;
  top: 0; /* 個別クラスで調整 */
  right: 0; /* 個別クラスで調整 */
  font-family: "reross-quadratic", sans-serif;
  font-size: 180px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  text-align: justify;
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .about__card-number {
    font-size: 288px;
    letter-spacing: 17.28px;
  }
}

.about__card-number.about__card-number--01 {
  top: 27px;
  right: 0;
}
@media screen and (min-width: 900px) {
  .about__card-number.about__card-number--01 {
    top: -64px;
    right: 0;
  }
}

.about__card-number.about__card-number--02 {
  top: 64px;
  right: 7px;
}
@media screen and (min-width: 900px) {
  .about__card-number.about__card-number--02 {
    top: -50px;
    right: -10px;
  }
}

.about__card-number.about__card-number--03 {
  top: 40px;
  right: 0;
}
@media screen and (min-width: 900px) {
  .about__card-number.about__card-number--03 {
    top: -70px;
    right: -35px;
  }
}

.about__card-image {
  position: relative;
  z-index: 2;
  width: 343px;
  max-width: 100%;
  margin-inline: auto; /* 左右中央寄せ */
}
@media screen and (min-width: 900px) {
  .about__card-image {
    /* 修正：固定幅をやめて、最大幅を指定する */
    width: 100%;
    max-width: 450px;
    /* 修正：flex-shrink: 0 を消す（または 1 にする） */
    -ms-flex-negative: 1;
        flex-shrink: 1;
    margin-inline: 0;
  }
}
.about__card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.menu {
  padding-top: 24px;
}
@media screen and (min-width: 900px) {
  .menu {
    padding-top: 72px;
  }
}

.menu__inner {
  padding-inline: 16px;
  padding-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .menu__inner {
    padding-inline: 72px;
    padding-bottom: 72px;
  }
}

.menu__container {
  border: 1px solid #fff;
  padding-block: 32px;
}
@media screen and (min-width: 900px) {
  .menu__container {
    border: 2px solid #fff;
    padding: 80px 108px 100px;
  }
}

.menu__title .heading-ja {
  color: #fff;
}
.menu__title .heading-en {
  color: #fff;
}

.menu__text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  margin-top: 47px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .menu__text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.54px;
    margin-top: 32px;
  }
}

.menu__cards {
  margin-top: 48px;
}
@media screen and (min-width: 900px) {
  .menu__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px 32px;
    max-width: 1080px;
    margin-inline: auto;
  }
}

.menu__card {
  text-align: center;
  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;
}
.menu__card + .menu__card {
  margin-top: 48px;
}
@media screen and (min-width: 900px) {
  .menu__card + .menu__card {
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .menu__card {
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .menu__card.is-recommend {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    grid-column: 1/-1;
  }
}

.menu-card__image {
  max-width: 315px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .menu-card__image.is-recommend {
    max-width: 451px;
    margin-inline: 0;
  }
}
.menu-card__image img {
  width: 100%;
  height: auto;
  display: block;
  left: -6px;
  position: relative;
}

@media screen and (min-width: 900px) {
  .menu-card__image.is-avocado {
    max-width: 417px;
  }
}
.menu-card__image.is-avocado img {
  left: -3px;
}

@media screen and (min-width: 900px) {
  .menu-card__image.is-chicken {
    max-width: 427px;
  }
}
.menu-card__image.is-chicken img {
  left: -3px;
}

.menu-card__content {
  width: 300px;
  background: #f2f2f2;
  margin-inline: auto;
  padding: 10px;
  position: relative;
  z-index: 1;
}
.menu-card__content.is-recommend {
  margin-top: -38px;
}
@media screen and (min-width: 900px) {
  .menu-card__content.is-recommend {
    width: 592px;
    margin-inline: 0;
    margin-top: 0;
    margin-left: -90px;
    padding: 13px 13px 13px 14px;
  }
}
.menu-card__content.is-avocado {
  margin-top: -56px;
}
@media screen and (min-width: 900px) {
  .menu-card__content.is-avocado {
    margin-top: -76px;
    max-width: 524px;
    width: 100%;
    padding: 13px;
  }
}
.menu-card__content.is-chicken {
  margin-top: -52px;
}
@media screen and (min-width: 900px) {
  .menu-card__content.is-chicken {
    margin-top: -74px;
    max-width: 524px;
    width: 100%;
    padding: 13px;
  }
}

.menu-card__content-inner {
  border: 1px solid #333;
  margin-inline: auto;
  padding: 48px 11px 32px 11px;
}

.menu-card__content-inner.is-recommend {
  border: 1px solid #333;
  width: 280px;
  margin-inline: auto;
  padding: 111px 11px 32px 11px;
}
@media screen and (min-width: 900px) {
  .menu-card__content-inner.is-recommend {
    width: 100%;
    padding: 100px 63px 32px 62px;
  }
}

@media screen and (min-width: 900px) {
  .menu-card__content-inner.is-avocado {
    padding: 69px 29px 29px 29px;
  }
}

@media screen and (min-width: 900px) {
  .menu-card__content-inner.is-chicken {
    /* 2枚目のアボカドと同じ数値に合わせる */
    padding: 69px 29px 29px 29px;
  }
}

.menu-card__recommend-wrap {
  width: 211px;
  border: 2px solid #159741;
  background: #159741;
  padding: 38px 0 16px 0;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .menu-card__recommend-wrap {
    width: 251px;
    padding: 9px 51px 14px 52px;
  }
}

.menu-card__recommend-en {
  color: #fff;
  text-align: center;
  font-family: Satisfy;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}
@media screen and (min-width: 900px) {
  .menu-card__recommend-en {
    font-size: 14px;
  }
}

.menu-card__recommend {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.54px;
}
@media screen and (min-width: 900px) {
  .menu-card__recommend {
    font-size: 24px;
    white-space: nowrap;
  }
}

.menu-card__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2.4px;
}
@media screen and (min-width: 900px) {
  .menu-card__title {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3px;
  }
}

.menu-card__price {
  text-align: center;
  margin-top: 10px;
  font-family: "reross-quadratic", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
}
@media screen and (min-width: 900px) {
  .menu-card__price {
    font-size: 40px;
    letter-spacing: 4px;
    margin-top: 20px;
  }
}

.menu-card__price-yen {
  font-family: "reross-quadratic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 900px) {
  .menu-card__price-yen {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}

.menu-card__price-tax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
  margin-left: -5px;
}
@media screen and (min-width: 900px) {
  .menu-card__price-tax {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.8px;
    margin-left: -4px;
  }
}

.menu-card__nutrition {
  margin-top: 16px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.42px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .menu-card__nutrition {
    font-size: 24px;
    letter-spacing: 0.72px;
    margin-top: 20px;
  }
}

.menu__instagram {
  margin-top: 48px;
  padding: 10px;
  background: #f2f2f2;
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .menu__instagram {
    margin-top: 80px;
    padding: 14px 13px 12px 13px;
    max-width: 1080px;
    width: 100%;
    margin-inline: auto;
  }
}

.menu__instagram-inner {
  text-align: center;
  border: 1px solid #333;
  padding: 64px 10px 34px;
}
@media screen and (min-width: 900px) {
  .menu__instagram-inner {
    padding: 88px 48px 24px 33px;
  }
}

.menu__instagram-title {
  color: #fff;
  font-family: "reross-quadratic", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  background: #159741;
  padding: 10px 34px 11px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .menu__instagram-title {
    font-size: 30px;
    letter-spacing: 1.5px;
    padding: 18px 107px 19px;
  }
}

.menu__instagram-text {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  text-align: justify;
  width: 236px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .menu__instagram-text {
    font-size: 18px;
    letter-spacing: 0.9px;
    padding-left: 65.81px;
    padding-right: 42.8px;
    position: relative;
    width: auto;
    display: inline-block;
    text-align: center;
  }
  .menu__instagram-text::before, .menu__instagram-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 35.8px;
    height: 1px;
    background-color: #333;
  }
  .menu__instagram-text {
    /* 左のライン \ */
  }
  .menu__instagram-text::before {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .menu__instagram-text {
    /* 右のライン / */
  }
  .menu__instagram-text::after {
    right: 0;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
}

.menu__instagram-images {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .menu__instagram-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    /* --- 横スクロールのための追加 --- */
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
  }
}

.menu__instagram-image {
  width: 125px;
  display: block;
}
@media screen and (min-width: 900px) {
  .menu__instagram-image {
    width: 231px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.menu__instagram-image img {
  width: 100%;
  height: auto;
  display: block;
}

.menu__instagram-id {
  margin-top: 8px;
  color: #333;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 900px) {
  .menu__instagram-id {
    font-size: 18px;
  }
}

.menu__instagram-button {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .menu__instagram-button {
    margin-top: 26px;
  }
}
.menu__instagram-button a {
  display: inline-block;
  width: 260px;
  padding: 16px 50px 17px 37px;
  background: #f2f2f2;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
  border: 1px solid #333;
  position: relative;
  text-align: center;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
@media screen and (min-width: 900px) {
  .menu__instagram-button a {
    padding: 17px 65px 16px 58px;
    width: 300px;
    /* 絶対に改行させないお守り */
    white-space: nowrap;
  }
  .menu__instagram-button a:hover {
    background: #333;
    color: #fff;
  }
  .menu__instagram-button a:hover::after {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.menu__instagram-button a::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  background: url("../img/icon-instagram.svg") no-repeat center center;
  background-size: contain;
  right: 17px;
  top: 18px;
  -webkit-transition: -webkit-filter 0.4s;
  transition: -webkit-filter 0.4s;
  transition: filter 0.4s;
  transition: filter 0.4s, -webkit-filter 0.4s;
}
@media screen and (min-width: 900px) {
  .menu__instagram-button a::after {
    width: 22px;
    height: 22px;
    right: 32px;
  }
}

.shop {
  background: #f2f2f2;
  padding-block: 64px;
}
@media screen and (min-width: 900px) {
  .shop {
    padding-block: 120px;
  }
}

.shop__map {
  margin-top: 56px;
}
@media screen and (min-width: 900px) {
  .shop__map {
    margin-top: 80px;
  }
}

.shop__map-image {
  width: 100%;
  display: block;
}
.shop__map-image img {
  width: 100%;
  height: auto;
  display: block;
}

.shop__info {
  padding-top: 56px;
  padding-bottom: 98px;
}

.shop__info-inner {
  padding-inline: 16px;
}
@media screen and (min-width: 900px) {
  .shop__info-inner {
    padding-inline: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 9.1608391608vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

.shop__info-inner-texts {
  max-width: 613px;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .shop__info-inner-texts {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    padding-left: clamp(20px, 5vw, 184px);
  }
}

.shop__info-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .shop__info-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0;
    white-space: nowrap;
  }
}
.shop__info-title h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 900px) {
  .shop__info-title h3 {
    gap: 3px;
  }
}
.shop__info-title .shop__info-title-brand {
  text-align: center;
  font-family: "reross-quadratic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}
.shop__info-title .shop__info-title-name {
  text-align: center;
  font-family: "reross-quadratic", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.96px;
}
.shop__info-title p {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 900px) {
  .shop__info-title p {
    font-size: 18px;
    letter-spacing: 0.54px;
    line-height: 1;
  }
}

.shop__info-contents {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .shop__info-contents {
    margin-top: 25.5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 899px) {
  .shop__info-contents-inner {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 900px) {
  .shop__info-contents-inner {
    max-width: 613px;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.shop__info-address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 900px) {
  .shop__info-address {
    font-size: 18px;
    line-height: 200%; /* 36px */
    letter-spacing: 0.54px;
  }
}

.shop__info-text {
  margin-top: 5px;
}

.shop__info-items {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.48px;
  display: grid;
  grid-template-columns: 5em 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (min-width: 900px) {
  .shop__info-items {
    font-size: 18px;
    line-height: 200%;
    letter-spacing: 0.54px;
  }
}

.shop__image {
  margin-top: 40px;
  width: 100%;
  display: block;
}
@media screen and (min-width: 900px) {
  .shop__image {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: auto;
    min-width: 400px;
    width: max(700px, 48.951048951vw);
  }
}
.shop__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  /* 必要に応じて object-fit で高さを調整 */
  -o-object-fit: cover;
     object-fit: cover;
}

.shop__card-section {
  padding-top: 98px;
  padding-bottom: 64px;
}
@media screen and (min-width: 900px) {
  .shop__card-section {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

.shop__card-section-inner {
  padding-inline: 16px;
}
@media screen and (min-width: 900px) {
  .shop__card-section-inner {
    padding-inline: 30px;
    width: calc(80.1398601399vw + 60px);
    margin-inline: auto;
  }
}

.shop__card {
  background: #fff;
  -webkit-box-shadow: 0 4px 20px 0 rgba(161, 159, 159, 0.6);
          box-shadow: 0 4px 20px 0 rgba(161, 159, 159, 0.6);
  margin-inline: auto;
  position: relative;
}

.shop__card-inner {
  padding: 18px 10px;
}
@media screen and (min-width: 900px) {
  .shop__card-inner {
    padding: 30px 32.74px 19.64px 34px;
  }
}

.shop__card-stamp {
  width: 112px;
  display: block;
  position: absolute;
  top: -39px;
  left: -16px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .shop__card-stamp {
    width: 288px;
    top: -71px;
    left: -97px;
  }
}
.shop__card-stamp img {
  width: 100%;
  height: auto;
  display: block;
}

.shop__card-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .shop__card-images {
    display: grid;
    grid-template-columns: 630fr 450fr;
  }
}

.shop__card-image1,
.shop__card-image2 {
  width: 100%;
  display: block;
  position: relative;
  /* 擬似要素を使って白い枠線を作る */
}
.shop__card-image1::after,
.shop__card-image2::after {
  content: "";
  position: absolute;
  top: 12.5px;
  bottom: 12.5px;
  left: 14px;
  right: 14px;
  border: 1px solid #fff;
  pointer-events: none;
  z-index: 1;
}
.shop__card-image1 img,
.shop__card-image2 img {
  width: 100%;
  height: auto;
  display: block;
}

.shop__card-image1 {
  /* 擬似要素を使って白い枠線を作る */
}
@media screen and (min-width: 900px) {
  .shop__card-image1::after {
    content: "";
    position: absolute;
    top: 19.14px;
    bottom: 19.14px;
    left: 27.54px;
    right: 27.54px;
    border: 1px solid #fff;
    pointer-events: none;
    z-index: 1;
  }
}

.shop__card-image2 {
  /* 擬似要素を使って白い枠線を作る */
}
@media screen and (min-width: 900px) {
  .shop__card-image2::after {
    content: "";
    position: absolute;
    top: 19.42px;
    bottom: 19.42px;
    left: 19.49px;
    right: 19.49px;
    border: 1px solid #fff;
    pointer-events: none;
    z-index: 1;
  }
}

.shop__card-contents {
  margin-top: 20px;
  padding-left: 14px;
  position: relative;
  padding-bottom: 113px;
}
@media screen and (min-width: 900px) {
  .shop__card-contents {
    margin-top: 27.36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 52px;
    padding-bottom: 32.2px;
  }
}

.shop__card-contents-title {
  color: #333;
  font-family: Satisfy;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 900px) {
  .shop__card-contents-title {
    font-size: 48px;
    letter-spacing: 2.4px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 900px) {
  .shop__card-contents-body {
    max-width: 595px;
    margin-top: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 900px) and (max-width: 1305px) {
  .shop__card-contents-body {
    padding-bottom: 50px;
  }
}

.shop__card-contents-text {
  color: #4f4f4f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 250%;
  /* 罫線の実装 */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(97%, transparent), color-stop(95%, #c4c4c4));
  background-image: linear-gradient(to bottom, transparent 97%, #c4c4c4 95%);
  background-size: 100% 2.5em; /* 2.5em は line-height の数値に合わせる */
  background-attachment: local; /* スクロールしても線がずれないおまじない */
  /* 2. 左側に突き出させる魔法の設定 */
  margin-left: -12px; /* 親の padding-left 分だけ左に無理やり引っ張り出す */
  padding-left: 12px; /* 引っ張り出した分、中の文字を右に押し戻して位置を整える */
}
@media screen and (min-width: 900px) {
  .shop__card-contents-text {
    margin-left: -8.95px; /* 親の padding-left 分だけ左に無理やり引っ張り出す */
    padding-left: 8.95px; /* 引っ張り出した分、中の文字を右に押し戻して位置を整える */
  }
}

.shop__card-contents-text-en {
  color: #159741;
  font-family: Satisfy;
  font-size: 36px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  position: absolute;
  right: 11.27px;
  bottom: 42.73px;
  -webkit-transform: rotate(-6.175deg);
          transform: rotate(-6.175deg); /* 左に傾ける */
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .shop__card-contents-text-en {
    font-size: 40px;
    letter-spacing: 2px;
    right: 5.1px;
    bottom: 20px;
  }
}
.shop__card-contents-text-en {
  /* 1本目の線 */
}
.shop__card-contents-text-en::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 6px;
  width: 100%;
  border-bottom: 1px solid #159741;
  z-index: 2;
  pointer-events: none;
  -webkit-transform: rotate(-2.724deg);
          transform: rotate(-2.724deg);
}
.shop__card-contents-text-en {
  /* 2本目の線 */
}
.shop__card-contents-text-en::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0px; /* 1本目の少し下に配置 */
  width: 100%;
  border-bottom: 1px solid #159741;
  z-index: 2; /* 文字より上に配置 */
  pointer-events: none;
  -webkit-transform: rotate(-2.724deg);
          transform: rotate(-2.724deg);
}

.contact {
  padding-block: 64px;
  background: url("../img/contact-sp.png") no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-block: 130px;
    background: url("../img/contact-pc.png") no-repeat center center/cover;
  }
}

.contact__inner {
  padding-inline: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 840px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contact__box {
  background: #f2f2f2;
  padding: 64px 15px 64px 16px;
}
@media screen and (min-width: 900px) {
  .contact__box {
    padding: 64px 20px 72px 20px;
  }
}

.contact__text {
  margin-top: 48px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  margin-right: -15px;
}
@media screen and (min-width: 900px) {
  .contact__text {
    text-align: center;
    margin-top: 42px;
  }
}

.contact-form {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .contact-form {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .contact-form__group {
    max-width: 520px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .form-field__head {
    gap: 24px;
  }
}

.contact-form__label {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 900px) {
  .contact-form__label {
    font-size: 18px;
  }
}

.contact-form__required {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  border-radius: 6px;
  background: #159741;
  display: inline-block;
  padding: 1px 7px 3px 8px;
}

.contact-form__input {
  padding: 16px 16px 17px;
  width: 100%;
  border: 1px solid #2f2f2f;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .contact-form__input {
    max-width: 520px;
    padding: 13px 24px 13px;
  }
}
.contact-form__input:focus, .contact-form__input:hover {
  border: 1px solid #159741;
  -webkit-box-shadow: 0 0 4px 0 #159741;
          box-shadow: 0 0 4px 0 #159741;
  outline: none;
}

/* プレースホルダーの色を変更する */
.contact-form__input::-webkit-input-placeholder {
  color: #bdbdbd; /* ここを希望の色コードにします */
  opacity: 1; /* ブラウザ（特にFirefox）によって半透明になるのを防ぐ場合 */
}
.contact-form__input::-moz-placeholder {
  color: #bdbdbd; /* ここを希望の色コードにします */
  opacity: 1; /* ブラウザ（特にFirefox）によって半透明になるのを防ぐ場合 */
}
.contact-form__input:-ms-input-placeholder {
  color: #bdbdbd; /* ここを希望の色コードにします */
  opacity: 1; /* ブラウザ（特にFirefox）によって半透明になるのを防ぐ場合 */
}
.contact-form__input::-ms-input-placeholder {
  color: #bdbdbd; /* ここを希望の色コードにします */
  opacity: 1; /* ブラウザ（特にFirefox）によって半透明になるのを防ぐ場合 */
}
.contact-form__input::placeholder {
  color: #bdbdbd; /* ここを希望の色コードにします */
  opacity: 1; /* ブラウザ（特にFirefox）によって半透明になるのを防ぐ場合 */
}

.contact-form__textarea {
  padding: 13px 13px 13px 16px;
  width: 100%;
  height: 160px;
  border: 1px solid #2f2f2f;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .contact-form__textarea {
    padding: 13px 23px;
  }
}
.contact-form__textarea:focus, .contact-form__textarea:hover {
  border: 1px solid #159741;
  -webkit-box-shadow: 0 0 4px 0 #159741;
          box-shadow: 0 0 4px 0 #159741;
  outline: none;
}

.contact-form__textarea::-webkit-input-placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.contact-form__textarea::-moz-placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.contact-form__textarea:-ms-input-placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.contact-form__textarea::-ms-input-placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.contact-form__textarea::placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.contact-form__agreement-label {
  cursor: pointer;
}
.contact-form__agreement-label:hover .contact-form__checkbox:not(:checked) + .contact-form__agreement-text::before {
  border: 1px solid #159741;
  -webkit-box-shadow: 0 0 4px 0 #159741;
          box-shadow: 0 0 4px 0 #159741;
}
.contact-form__agreement-label:active .contact-form__checkbox:not(:checked) + .contact-form__agreement-text::before {
  border: 1px solid #159741;
  background: rgba(21, 151, 65, 0.15);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form__checkbox {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact-form__checkbox:checked + .contact-form__agreement-text::after {
  opacity: 1;
}
.contact-form__checkbox:focus + .contact-form__agreement-text::before {
  border: 1px solid #159741;
  -webkit-box-shadow: 0 0 4px 0 #159741;
          box-shadow: 0 0 4px 0 #159741;
}

.contact-form__agreement-text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  padding-left: 43px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .contact-form__agreement-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.9px;
  }
}
.contact-form__agreement-text::before, .contact-form__agreement-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-form__agreement-text::before {
  width: 30px;
  height: 30px;
  border: 1px solid #2f2f2f;
  background: #fff;
}
.contact-form__agreement-text::after {
  width: 24px;
  height: 18px;
  left: 2px;
  background: url(../img/contact-check.png) no-repeat center center;
  background-size: contain;
  opacity: 0;
}

.contact-form__link {
  color: #159741;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.8px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media screen and (min-width: 900px) {
  .contact-form__link {
    font-size: 18px;
  }
  .contact-form__link:hover {
    opacity: 0.7;
  }
}

.contact-form__submit {
  margin-inline: auto;
  text-align: center;
  margin-top: 8px;
}

.contact-form__button {
  padding: 15px 15px 14px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.9px;
  background: #159741;
  display: inline-block;
  width: 300px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.contact-form__button:hover {
  opacity: 0.7;
}

.contact__modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 160px);
  overflow-y: auto;
  padding: 0 23px 60px;
  background: #fff;
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.25);
  border: none;
  z-index: 60;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 900px) {
  .contact__modal {
    max-width: 929px;
    padding: 0 62px 100px;
  }
}
.contact__modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.6;
}
.contact__modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.6;
}

.contact__modal-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  padding-top: 18px;
}
@media screen and (min-width: 900px) {
  .contact__modal-close {
    padding-top: 40px;
    margin-inline: -62px;
    padding-right: 23px;
  }
}

.contact__modal-close-button img {
  width: 34px;
}

.contact__modal-head {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .contact__modal-head {
    margin-top: 57px;
  }
}

.contact__modal-body {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .contact__modal-body {
    max-width: 805px;
  }
}

.contact__modal-text {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 900px) {
  .contact__modal-text {
    font-size: 16px;
  }
}

.contact__modal-subheading {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 900px) {
  .contact__modal-subheading {
    font-size: 18px;
  }
}

.footer {
  background: #f2f2f2;
  padding-top: 48px;
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 56px;
    padding-bottom: 9px;
  }
}

.footer__sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.footer__sns-link {
  position: relative;
  display: block;
}
.footer__sns-link:hover .footer__sns-links-icon {
  opacity: 0;
}
.footer__sns-link:hover .footer__sns-links-icon-hover {
  opacity: 1;
}

.footer__sns-links-icon {
  width: 50px;
  display: block;
}
@media screen and (min-width: 900px) {
  .footer__sns-links-icon {
    width: 40px;
  }
}

.footer__sns-links-icon-hover {
  width: 50px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-top: 41px;
}
@media screen and (min-width: 900px) {
  .footer__nav {
    margin-top: 41px;
  }
}
.footer__nav a {
  color: #333;
  font-family: "reross-quadratic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 900px) {
  .footer__nav a {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
  .footer__nav a:hover {
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-color: #159741;
    text-decoration-thickness: 2px;
  }
}

.footer__logo {
  margin-inline: auto;
  width: 166.484px;
  margin-top: 34px;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    width: 165.484px;
    margin-top: 36px;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__copyright {
  margin-top: 29.35px;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    margin-top: 20.35px;
  }
}

.pagetop {
  position: fixed;
  bottom: 305px;
  right: 16px;
  width: 70px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
}
@media screen and (min-width: 900px) {
  .pagetop {
    width: 120px;
  }
}
.pagetop img {
  width: 100%;
  height: auto;
  display: block;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

確認用 * {
  outline: 1px solid red !important;
}