@charset "UTF-8";
/* =========================
   Foundation
========================= */
.pc-apparent {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-apparent {
    display: block;
  }
}

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

/* =========================
   Layout
========================= */
/* =========================
   Foundation
========================= */
header {
  background-color: #2f2f2f;
  width: 100%;
  height: 60px;
  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-right: 16px;
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
  header {
    height: 90px;
    padding-right: 71px;
    padding-left: 31px;
  }
}

.header_logo-icon {
  display: block;
  width: 55px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .header_logo-icon {
    width: 118px;
    height: 63px;
  }
}

.l-header_nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header_nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-header_nav-list {
    gap: 40px;
  }
  .l-header_nav-list:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 2px; /* 下線の横幅を100%にする */
  }
}

.l-header_nav-text {
  position: relative;
  display: inline-block;
  font-family: "reross-quadratic";
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .l-header_nav-text {
    font-size: 18px;
  }
  .l-header_nav-text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0; /* 横幅を親に合わせる安全策 */
    bottom: -8px; /* 文字との間隔を調整 */
    height: 2px;
    background: #159741;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: -webkit-transform 0.32s ease;
    transition: -webkit-transform 0.32s ease;
    transition: transform 0.32s ease;
    transition: transform 0.32s ease, -webkit-transform 0.32s ease;
    /* z-index: 0;  必要なら指定 */
  }
  .l-header_nav-text:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-size: 100% 2px; /* 下線の横幅を100%にする */
  }
}

.footer {
  background-color: rgb(242, 242, 242);
}

.footer__inner {
  padding-top: 48px;
  padding-bottom: 10px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 56px;
  }
}

.footer__sns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 40px;
}

.footer__sns-item {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .footer__sns-item {
    width: 40px;
    height: 40px;
  }
  .footer__sns-item:hover {
    -webkit-filter: invert(1);
            filter: invert(1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.footer__sns-icon {
  display: block;
  width: 100%;
}

.l-footer_nav {
  margin-top: 39px;
}

.l-footer_nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-footer_nav-list {
    gap: 40px;
  }
}

.l-footer_nav-text {
  position: relative;
  font-family: "reross-quadratic";
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-footer_nav-text {
    font-size: 18px;
  }
  .l-footer_nav-text::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0; /* 横幅を親に合わせる安全策 */
    bottom: -8px; /* 文字との間隔を調整 */
    height: 2px;
    background: #159741;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: -webkit-transform 0.32s ease;
    transition: -webkit-transform 0.32s ease;
    transition: transform 0.32s ease;
    transition: transform 0.32s ease, -webkit-transform 0.32s ease;
    /* z-index: 0;  必要なら指定 */
  }
  .l-footer_nav-text:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background-size: 100% 2px; /* 下線の横幅を100%にする */
  }
}

.l-footer_logo {
  margin: 0 auto;
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .l-footer_logo {
    margin-top: 36px;
  }
}

.l-footer_logo-icon {
  display: block;
  width: 166.48px;
  height: 91.65px;
}

.l-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  margin-top: 29.35px;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 14px;
    margin-top: 20.35px;
  }
}

/* =========================
   Component
========================= */
/* =========================
   Foundation
========================= */
.c-heading {
  text-align: center;
  position: relative;
}
.c-heading ::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 2px;
  content: "";
  background: #159741;
}
@media screen and (min-width: 768px) {
  .c-heading ::after {
    bottom: -19px;
  }
}

.c-heading-text-ja {
  font-family: "Noto Sans JP", sans-serif;
  color: #159741;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-heading-text-ja {
    font-size: 18px;
  }
}

.c-heading-text-en {
  font-family: "reross-quadratic";
  color: #333;
  font-size: 32px;
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-heading-text-en {
    font-size: 48px;
  }
}

.c-heading-sub {
  text-align: center;
  position: relative;
}
.c-heading-sub ::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 2px;
  content: "";
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-heading-sub {
    margin-top: 80px;
  }
}

.c-heading-sub-text-ja {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-heading-sub-text-ja {
    font-size: 18px;
  }
}

.c-heading-sub-text-en {
  font-family: "reross-quadratic";
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  margin-top: 16px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-heading-sub-text-en {
    font-size: 48px;
  }
}

/* =========================
   Foundation
========================= */
.pagetop {
  position: fixed;
  right: 21px;
  bottom: 304px;
  width: 70px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.pagetop img {
  width: 100%;
  height: auto;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 120px;
    height: auto;
    right: 60px;
    bottom: 270px;
  }
  .pagetop:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pagetop {
    width: 90px;
  }
}

/* =========================
   mv
========================= */
.mv {
  background-color: #2f2f2f;
}

.mv__inner {
  background: url("../img/mv-img-sp.png") no-repeat center;
  background-size: cover;
  margin-left: 17.8vw;
  padding-top: 30px;
  padding-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    background: url("../img/mv-img-pc.png") no-repeat center;
    background-size: cover;
    margin-left: 360px;
    padding-top: 94px;
    padding-bottom: 84px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__inner {
    margin-left: 25vw;
  }
}

.mv__text-en {
  font-family: "reross-quadratic";
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  margin-left: -48px;
}
@media screen and (min-width: 768px) {
  .mv__text-en {
    font-size: 100px;
    margin-left: -182px;
  }
}
@media screen and (min-width: 768px) {
  .mv__text-en {
    margin-left: -12.5vw;
    margin-top: -8px;
  }
}

.text-green {
  color: #159741;
}

.mv__text-ja {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-left: -43px;
  margin-top: 22px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .mv__text-ja {
    margin-left: -12.5vw;
    font-size: 32px;
    margin-top: 49px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__text-ja {
    margin-left: -11vw;
  }
}

.mv__text-green-box {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #159741;
  padding: 4px 6px 6px 0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -48px;
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .mv__text-green-box {
    margin-left: -12.5vw;
    font-size: 32px;
    margin-top: 21px;
    padding: 10px 21px 6px 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mv__text-green-box {
    margin-left: -15vw;
  }
}

/* =========================
   concept
========================= */
.concept {
  background-color: #2f2f2f;
  background-image: url("../img/concept-bg-sp.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .concept {
    background-image: url("../img/concept-bg-pc.png");
  }
}

.concept__inner {
  padding-top: 51px;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    padding-top: 120px;
    padding-bottom: 110px;
  }
}

.concept__title {
  display: block;
  margin: 0 auto;
  max-width: 210px;
}
@media screen and (min-width: 768px) {
  .concept__title {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.concept__title-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__title-text {
    font-size: 30px;
  }
}

.concept__copy {
  display: block;
  margin: 0 auto;
  max-width: 493px;
  padding-left: 33px;
  padding-right: 33px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .concept__copy {
    padding: 0;
    margin-top: 48px;
  }
}

.concept__text {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept__text {
    font-size: 18px;
  }
}

/* =========================
   about
========================= */
.about {
  background-color: #f2f2f2;
  padding-top: 62px;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 134px;
    padding-bottom: 151px;
  }
}

.about__inner {
  padding-right: 4.2%;
  padding-left: 4.2%;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-right: 12.5%;
    padding-left: 12.5%;
  }
}
.about__content {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__content {
    max-width: 1080px;
    padding-top: 98px;
    margin: 0 auto;
    gap: 64px;
  }
}
.about__content-item {
  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: 768px) {
  .about__content-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 67px;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__bg-number {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__bg-number {
    display: block;
    font-size: clamp(0px, 20vw, 288px);
    font-family: "reross-quadratic";
    font-weight: 400;
    color: #fff;
    position: absolute;
    right: -4px;
    bottom: -46px;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__bg-number {
    display: none;
  }
}

.about__bg-number-reverse {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__bg-number-reverse {
    display: block;
    font-size: clamp(0px, 20vw, 288px);
    font-family: "reross-quadratic";
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 233px;
    bottom: -40px;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__bg-number-reverse {
    display: none;
  }
}

.about__content-item-text-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: 16px;
  margin-left: 9px;
}
@media screen and (min-width: 768px) {
  .about__content-item-text-wrapper {
    margin-top: auto;
    margin-bottom: auto;
    max-width: 400px;
    margin-right: auto;
    margin-left: 0;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__content-item-text-wrapper {
    margin: 0;
  }
}

.about__content-item-title-text {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .about__content-item-title-text {
    font-size: 30px;
    font-weight: 700;
    margin-right: calc(50% - 25vw);
  }
}

.about__content-item-discription {
  position: relative;
  padding-bottom: 32px;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .about__content-item-discription {
    padding-bottom: 0;
  }
}

.discription-03 {
  padding: 0;
}

.about__content-item-discription-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .about__content-item-discription-text {
    font-size: 18px;
  }
}

.about__content-item-image-wrapper-01 {
  position: relative;
}
.about__content-item-image-wrapper-01::before {
  content: "";
  position: absolute;
  top: -135px;
  right: 5px;
  width: 150px;
  height: 138px;
  background: url(../img/about-01-bg.png) no-repeat right center/contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about__content-item-image-wrapper-01::before {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__content-item-image-wrapper-01::before {
    display: block;
    width: 100%;
  }
}

.about__content-item-image-wrapper-02 {
  position: relative;
}
.about__content-item-image-wrapper-02::before {
  content: "";
  position: absolute;
  top: -134px;
  right: 1px;
  width: 182px;
  height: 138px;
  background: url(../img/about-02-bg.png) no-repeat right center/contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about__content-item-image-wrapper-02::before {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__content-item-image-wrapper-02::before {
    display: block;
    width: 100%;
  }
}

.about__content-item-image-wrapper-03 {
  position: relative;
  margin-top: 48px;
}
.about__content-item-image-wrapper-03::before {
  content: "";
  position: absolute;
  top: -134px;
  right: 1px;
  width: 182px;
  height: 138px;
  background: url(../img/about-03-bg.png) no-repeat right center/contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about__content-item-image-wrapper-03 {
    margin-top: 0;
  }
  .about__content-item-image-wrapper-03::before {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__content-item-image-wrapper-03::before {
    display: block;
    width: 100%;
  }
}

.about__content-item-image {
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__content-item-image {
    max-width: 450px;
    height: auto;
  }
}

/* =========================
   parallax salad
========================= */
.parallax {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .parallax {
    height: 450px;
  }
}

.parallax-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* =========================
   Menu
========================= */
.menu {
  background-color: #2f2f2f;
  padding-top: 24px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .menu {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-inline: 5vw;
  }
}

.menu__inner {
  text-align: center;
  border: 1px solid #fff;
}
.menu__heading {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .menu__heading {
    margin-top: 78px;
  }
}

.menu__heading-text-ja {
  display: block;
  margin-top: 29px;
}

.menu__heading-text-en {
  margin-top: 9px;
}

.menu__heading-text-notes {
  display: block;
  text-align: center;
  margin-top: 60px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .menu__heading-text-notes {
    font-size: 18px;
    margin-top: 49px;
  }
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu-item {
    -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;
    margin-top: 105px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .menu-item-no-recommends {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    gap: 32px;
    z-index: 10;
    max-width: 1080px;
    margin: 0 auto;
    margin-top: -63px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item-no-recommends {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 37px;
  }
}

.menu-item-no-recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .menu-item__image-wrapper {
    max-width: 451px;
    position: relative;
    top: -117px;
    left: calc(50% - 403px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item__image-wrapper {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
}

.menu-item__image {
  position: relative;
  display: block;
  width: 92%;
  z-index: 10;
  top: 48px;
  left: 7px;
}
@media screen and (min-width: 768px) {
  .menu-item__image {
    position: relative;
    display: block;
    width: 100%;
    z-index: 10;
    top: 67px;
    left: -77px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item__image {
    top: 158px;
    left: 0;
  }
}

.menu-item__image-no-recommend {
  position: relative;
  display: block;
  width: 89%;
  z-index: 10;
  top: 48px;
  left: 15px;
}
@media screen and (min-width: 768px) {
  .menu-item__image-no-recommend {
    max-width: 427px;
    height: 432px;
    top: 70px;
    left: 31px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item__image-no-recommend {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
  }
}

.menu-item__content {
  background-color: #f2f2f2;
  padding-bottom: 40px;
  width: 87.7%;
  height: auto;
  margin: 0 auto;
  position: relative;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .menu-item__content {
    display: block;
    max-width: 592px;
    height: 367px;
    margin-top: 0;
    padding-bottom: 45px;
    left: -4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item__content {
    left: 0;
  }
}

.menu-item__content-border {
  position: absolute;
  top: 8px;
  left: 10px;
  right: 8px;
  bottom: 9px;
  border: 2px solid #333;
}
@media screen and (min-width: 768px) {
  .menu-item__content-border {
    position: absolute;
    top: 11px;
    left: 16px;
    right: 9px;
    bottom: 11px;
    border: 2px solid #333;
  }
}

.menu-item__recommend {
  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;
  margin: 0 auto;
  padding-top: 38px;
  padding-bottom: 16px;
  background-color: #159741;
  width: 211px;
  height: 97px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .menu-item__recommend {
    padding-top: 9px;
    padding-bottom: 14px;
    width: 251px;
    height: 78px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item__recommend {
    width: 251px;
    height: 97px;
    padding-top: 38px;
    padding-bottom: 16px;
  }
}

.menu-item__recommend-text-en {
  font-family: "Satisfy";
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .menu-item__recommend-text-en {
    font-size: 14px;
  }
}

.menu-item__recommend-text-jp {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .menu-item__recommend-text-jp {
    font-size: 24px;
  }
}

.menu-item__content-no-recommend {
  background-color: #f2f2f2;
  padding-bottom: 42px;
  width: 87.7%;
  height: auto;
  margin: 0 auto;
  position: relative;
  padding-top: 58px;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  .menu-item__content-no-recommend {
    padding-top: 77px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-left: 45px;
    padding-right: 45px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-item__content-no-recommend {
    max-width: 592px;
    height: auto;
    position: relative;
    margin: 0;
  }
}

.menu-item__title {
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  color: #2f2f2f;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .menu-item__title {
    font-size: 30px;
    margin-top: 35px;
  }
}

.menu-item__title-no-recommend {
  font-family: "Noto Sans JP", sans-serif;
  color: #2f2f2f;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .menu-item__title-no-recommend {
    font-size: 30px;
  }
}

.menu-item__price {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .menu-item__price {
    margin-top: 11px;
  }
}

.menu-item__price-yen {
  font-family: "reross-quadratic";
  color: #333;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .menu-item__price-yen {
    font-size: 24px;
  }
}

.menu-item__price-text {
  font-family: "reross-quadratic";
  color: #333;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .menu-item__price-text {
    font-size: 40px;
  }
}

.menu-item__price-tax {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .menu-item__price-tax {
    font-size: 18px;
  }
}

.menu-item__nutrition {
  display: block;
  margin-top: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .menu-item__nutrition {
    display: block;
    margin-top: 21px;
    font-size: 24px;
  }
}

/* =========================
   instagram
========================= */
.instagram {
  margin-top: 48px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .instagram {
    display: block;
    margin-top: 80px;
    margin-bottom: 100px;
  }
}

.instagram__content {
  padding-bottom: 35px;
}

.instagram__content-border {
  position: absolute;
  top: 13px;
  left: 14px;
  right: 12px;
  bottom: 12px;
  border: 2px solid #333;
  z-index: 0;
}

.instagram__content {
  margin-left: 25px;
  margin-right: 18px;
}
@media screen and (min-width: 768px) {
  .instagram__content {
    max-width: 1080px;
    height: auto;
    display: block;
    margin: 0 auto;
    left: 0;
  }
}

.instagram__badge {
  width: 185px;
  padding: 10px 34px 11px 34px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .instagram__badge {
    padding: 16px 107px 19px 107px;
    min-width: 360px;
  }
}

.instagram__badge-text {
  font-family: "reross-quadratic";
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .instagram__badge-text {
    font-size: 30px;
  }
}

.instagram_caption {
  position: relative;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 24px;
  margin-inline: 32px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .instagram_caption {
    display: inline-block;
    font-size: 17px;
    margin-left: 22.3%;
    margin-right: 22.8%;
    letter-spacing: 0.1em;
  }
  .instagram_caption::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -44px;
    display: inline-block;
    width: 38px;
    height: 1px;
    background-color: black;
    -webkit-transform: rotate(235deg);
            transform: rotate(235deg);
  }
  .instagram_caption::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -44px;
    display: inline-block;
    width: 38px;
    height: 1px;
    background-color: black;
    -webkit-transform: rotate(-55deg);
            transform: rotate(-55deg);
  }
}

.instagram__images {
  margin-inline: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .instagram__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    margin-left: 4.25%;
    margin-right: 5.74%;
    margin-top: 31px;
  }
}

.instagram__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.instagram_ID {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .instagram_ID {
    font-size: 1.18vw;
    margin-top: 13px;
    margin-left: 41.9%;
    margin-right: 42.9%;
    letter-spacing: 0.01em;
  }
}

.instagram__button {
  margin-top: 24px;
  margin-inline: 20px;
  display: inline-block;
  position: relative;
  padding: 14px 58px 15px 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #333;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .instagram__button {
    margin-top: 22px;
    font-size: 16px;
    padding: 17px 77px 16px 58px;
  }
  .instagram__button:hover {
    color: #fff;
    background-color: #2f2f2f;
    border: 1px solid #2f2f2f;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .instagram__button:hover .instagram__button-icon {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}

.instagram__button-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 19px;
}
@media screen and (min-width: 768px) {
  .instagram__button-icon {
    width: 22px;
    top: 18px;
    right: 33px;
  }
}

/* =========================
   shop
========================= */
.shop {
  background-color: #f2f2f2;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .shop {
    padding-bottom: 120px;
  }
}

.shop__heading {
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .shop__heading {
    padding-top: 120px;
  }
}

.shop__map {
  width: 100%;
}

.shop__map-image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 68px;
}
@media screen and (min-width: 768px) {
  .shop__map-image {
    margin-top: 95.95px;
    height: 465px;
  }
}

@media screen and (min-width: 768px) {
  .shop__info-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    gap: 11.09vw;
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__info-wrapper {
    -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;
  }
}

@media screen and (min-width: 768px) {
  .shop-info {
    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;
    margin-top: 65px;
  }
}

.shop__info-name {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shop__info-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.shop__info-name-text-en {
  font-family: "reross-quadratic";
  color: #333;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .shop__info-name-text-en {
    margin-top: 0;
  }
}

.shop__info-name-text-en-sub {
  font-family: "reross-quadratic";
  color: #333;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.shop__info-name-jp {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .shop__info-name-jp {
    display: inline-block;
  }
}

.shop__info-business {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 7.4%;
  padding-right: 7.4%;
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .shop__info-business {
    padding: 0;
    max-width: 351px;
    margin-top: 21px;
  }
}

@media screen and (min-width: 768px) {
  .shop__info-business-bottom {
    width: 429px;
    margin-top: 20px;
    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;
  }
}

/* ベーシックな段落設定 */
.shop-info__postal-code,
.shop-info__address,
.shop-info__tel {
  margin-bottom: 1px;
  letter-spacing: 0.03em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .shop-info__postal-code,
  .shop-info__address,
  .shop-info__tel {
    font-size: 18px;
  }
}

/* 電話番号のリンク */
.shop-info__tel-link {
  color: #333;
  text-decoration: none;
}

/* ラベルと本文を横並びにする共通設定 */
.shop-info__business-hours,
.shop-info__holiday,
.shop-info__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 4px;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .shop-info__business-hours,
  .shop-info__holiday,
  .shop-info__access {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

.shop-info__access {
  margin-top: -3px;
  line-height: normal;
}

/* 左のラベル */
.shop-info__label {
  display: inline-block;
  width: 70px; /* ラベル幅（全体をそろえる） */
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .shop-info__label {
    width: 80px;
  }
}

/* 右側の本文テキスト */
.shop-info__time,
.shop-info__day,
.shop-info__access-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.03em;
}

/* アクセスリストの調整 */
.shop-info__access-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .shop-info__access-list {
    line-height: 1.5;
  }
}

.shop-info__access-item {
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .shop-info__access-item {
    margin-bottom: 9px;
  }
}

/* レイアウト全体の余白調整 */
.shop__info-business > *:not(:last-child) {
  margin-bottom: 1px;
}

.shop__image-outside-wrapper {
  margin-left: 4.2%;
  margin-right: 4.2%;
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .shop__image-outside-wrapper {
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__image-outside-wrapper {
    margin-inline: auto;
  }
}

.shop__image-outside {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .shop__image-outside {
    width: 48.6vw;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__image-outside {
    position: relative;
    width: 100%;
  }
}

.shop__stamp {
  position: absolute;
  width: 112px;
  top: -39px;
  left: -17px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .shop__stamp {
    width: 288px;
    left: -93px;
    top: -69px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__stamp {
    width: 200px;
    left: -59px;
  }
}

.shop__postcard {
  position: relative;
  margin-left: 4.2%;
  margin-right: 4.2%;
  margin-top: 92px;
  padding-bottom: 34px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .shop__postcard {
    max-width: 1146px;
    margin-top: 71px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard {
    position: relative;
    margin-left: 7%;
    margin-right: 7%;
  }
}

.shop__postcard-inner {
  padding-left: 2.9%;
  padding-right: 2.9%;
  padding-top: 18px;
  padding-bottom: 79px;
  -webkit-box-shadow: 0 4px 6px rrgba(161, 159, 159, 0.6);
          box-shadow: 0 4px 6px rrgba(161, 159, 159, 0.6);
}
@media screen and (min-width: 768px) {
  .shop__postcard-inner {
    padding: 30px 32.74px 41.97px 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.shop__postcard-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: 768px) {
  .shop__postcard-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.shop__postcard-terace {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 323/282;
}
@media screen and (min-width: 768px) {
  .shop__postcard-terace {
    aspect-ratio: 629.57/430.75;
    width: 58.3%;
    height: 430.75px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-terace {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 323/282;
  }
}

.shop__postcard-terace-image {
  width: 100%;
  height: 100%;
}
.shop__postcard-terace-image-border {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  bottom: 13px;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .shop__postcard-terace-image-border {
    position: absolute;
    top: 19px;
    left: 27px;
    right: 27px;
    bottom: 17px;
  }
}

.shop__postcard-takeout {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 323/209;
}
@media screen and (min-width: 768px) {
  .shop__postcard-takeout {
    aspect-ratio: 449.69/430.75;
    width: 41.7%;
    height: 430.75px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-takeout {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 323/209;
  }
}

.shop__postcard-takeout-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .shop__postcard-takeout-image {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.shop__postcard-takeout-image-border {
  position: absolute;
  top: 8px;
  left: 14px;
  right: 14px;
  bottom: 17px;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .shop__postcard-takeout-image-border {
    position: absolute;
    top: 20px;
    left: 19px;
    right: 19px;
    bottom: 19px;
  }
}

.shop__postcard-message {
  position: relative;
}
@media screen and (min-width: 768px) {
  .shop__postcard-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.shop__postcard-message-title {
  font-family: "Satisfy";
  color: #333;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 13px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .shop__postcard-message-title {
    font-size: 48px;
    margin-top: 27.36px;
    margin-left: 8.75px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-message-title {
    font-size: 39px;
    margin-top: 27.36px;
    margin-left: 8.75px;
  }
}

.shop__postcard-message-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.5;
  margin-left: 14px;
  margin-right: 5px;
  /* 行ごとに下線を描く背景 */
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent calc(2.5em - 1px), #ccc calc(2.5em - 1px), #ccc 2.5em);
  background-size: 100% 2.5em;
  background-repeat: repeat-y;
  padding-bottom: 2px; /* 下端の線切れ防止用 */
}
@media screen and (min-width: 768px) {
  .shop__postcard-message-text {
    width: 595.59px;
    margin-top: 45.35px;
    margin-left: 52.96px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-message-text {
    width: 100%;
    margin-top: 32px;
    margin-inline: auto;
  }
}

.shop__postcard-message-footer {
  position: absolute;
  font-family: "Satisfy";
  color: #159741;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: #159741 1px solid;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  rotate: -6.17deg;
  z-index: 5;
  right: 10px;
  bottom: -43px;
}
.shop__postcard-message-footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px; /* 下の線との間隔 */
  width: 100%;
  height: 1px; /* 線の太さ */
  background-color: #159741;
}
@media screen and (min-width: 768px) {
  .shop__postcard-message-footer {
    font-size: 40px;
    bottom: -2px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .shop__postcard-message-footer {
    bottom: -49px;
  }
}

/* =========================
   contact
========================= */
.contact {
  background: url(../img/contact_bg.png) no-repeat center top/cover;
  padding-left: 4.2%;
  padding-right: 4.2%;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

.contact__content {
  padding-bottom: 64px;
  background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .contact__content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 72px;
  }
}

.contact__content-inner {
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  .contact__content-inner {
    padding-left: 17.5%;
    padding-right: 17.5%;
  }
}

.contact__heading {
  padding-top: 64px;
}
@media screen and (min-width: 768px) {
  .contact__heading ::after {
    bottom: -12px;
  }
}

.contact__text {
  margin-top: 57px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 42px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .contact__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 33px;
    margin-top: 51px;
  }
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .contact__field {
    margin-top: 0;
  }
}

.form__field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .form__field-head {
    gap: 19px;
  }
}

.form__field-label {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .form__field-label {
    font-size: 18px;
  }
}

.form__field-tag {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  background-color: #159741;
  padding: 3px 7px;
  border-radius: 6px;
}

.form__field-item {
  width: 100%;
  background-color: #fff;
  border: 1px solid rgb(47, 47, 47);
  margin-top: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .form__field-item {
    height: 50px;
  }
}

.form__field-input {
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(189, 189, 189);
  font-size: 16px;
  font-weight: 400;
  height: 56px;
  padding-left: 16px;
  width: 100%;
}
.form__field-input:hover {
  border-color: #159741;
  -webkit-box-shadow: 0 0 4px #159741;
          box-shadow: 0 0 4px #159741;
}
.form__field-input:focus {
  outline: none;
  border-color: #159741;
  -webkit-box-shadow: 0 0 6px #159741;
          box-shadow: 0 0 6px #159741;
}
@media screen and (min-width: 768px) {
  .form__field-input {
    height: 50px;
  }
}

@media screen and (min-width: 768px) {
  .form__field-item-message {
    height: 160px;
  }
}

.form-textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(189, 189, 189);
  font-size: 16px;
  font-weight: 400;
  height: 160px;
  padding-left: 16px;
  padding-top: 13px;
  width: 100%;
}
.form-textarea:hover {
  border-color: #159741;
  -webkit-box-shadow: 0 0 4px #159741;
          box-shadow: 0 0 4px #159741;
}
.form-textarea:focus {
  outline: none;
  border-color: #159741;
  -webkit-box-shadow: inset 0 0 6px #159741;
          box-shadow: inset 0 0 6px #159741;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    height: 160px;
  }
}

.contact__privacy {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 33px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:hover + .form-checkbox__text::before {
  border-color: #159741;
  -webkit-box-shadow: 0 0 4px rgb(21, 151, 65);
          box-shadow: 0 0 4px rgb(21, 151, 65);
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #159741;
  -webkit-box-shadow: 0 0 4px rgb(21, 151, 65);
          box-shadow: 0 0 4px rgb(21, 151, 65);
}

.form-checkbox__text {
  position: relative;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 36px;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -9px;
}
.form-checkbox__text::before {
  width: 28px;
  height: 28px;
  background: #f2f2f2;
  border: 1px solid #333;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox__text::before:hover {
  border-color: #159741;
  -webkit-box-shadow: 0 0 4px #159741;
          box-shadow: 0 0 4px #159741;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::before {
    width: 31px;
    height: 31px;
    top: 56%;
    left: 1px;
  }
}
.form-checkbox__text::after {
  background: url(../img/contact_check-icon.png) no-repeat center center/contain;
  width: 24px;
  height: 18px;
  left: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #159741;
}
.form-checkbox__text a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 18px;
    padding-left: 43px;
  }
}

.contact__button {
  width: 300px;
  height: 56px;
  padding: 15px 131px;
  margin-right: auto;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 40px;
  background: #159741;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__button:hover {
  opacity: 0.7;
}
.contact__button:disabled {
  background: rgb(189, 189, 189);
  cursor: not-allowed;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .contact__button {
    width: 239px;
    padding: 15px 101px;
    margin-top: 41px;
  }
}

.contact__button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

/* =========================
   modal
========================= */
.modal {
  width: min(90%, 929px);
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: fixed;
  margin: auto;
}

.modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

/* 内側レイアウト */
.modal__inner {
  background: #fff;
  padding-inline: 6.6%;
  padding-top: 40px;
  padding-bottom: 32px;
  position: relative;
  max-height: 80vh;
}

/* 閉じるボタン */
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  line-height: 1;
}
.modal__close:hover {
  opacity: 0.6;
}

/* 見出し部分 */
.modal-heading {
  text-align: center;
}

.modal-heading-text-ja {
  font-size: 12px;
}

.modal-heading-text-en {
  font-size: 24px;
}

/* 本文 */
.modal__content {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 48px;
}

.modal__content h3 {
  font-size: 16px;
  margin-top: 16px;
}