@charset "UTF-8";
html,
body {
  overflow-x: hidden;
}

body {
  color: #222222;
  background: #f3efeb;
  font-family: "Noto Serif JP", serif;
  position: relative;
}

.inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 30px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 600px;
    padding: 60px 20px;
  }
}

.title {
  line-height: 1.5;
  text-align: center;
}
.title-en {
  font-size: 52px;
  font-family: "Amatic SC", cursive;
  letter-spacing: 20%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .title-en {
    font-size: 40px;
    letter-spacing: 10%;
  }
}
.title-ja {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .title-ja {
    font-size: 12px;
  }
}

.button {
  background: #222222;
  color: #fff;
  display: inline-block;
  padding: 24px 89px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media screen and (max-width: 767px) {
  .button {
    text-align: center;
    padding: 24px 65px;
  }
}
.button:hover {
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}
.button::before {
  content: "";
  width: 100%;
  height: 100%;
  border-right: #222222 solid 1px;
  border-bottom: #222222 solid 1px;
  position: absolute;
  top: 6px;
  right: -6px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  background: url(../img/button-arrow.svg) no-repeat center center/contain;
  top: 29px;
  right: 26px;
}
.button:hover::before {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}

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

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

.drawer-menu {
  top: 0;
  height: 100vh;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  position: fixed;
  background-color: #382620;
  max-width: 375px;
  width: 100%;
  height: 100%;
  z-index: 2000;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.drawer-menu.is-checked {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-menu-logo {
  width: 120px;
  padding: 10px 0 0 10px;
}
.drawer-menu-contents {
  padding: 60px 40px;
  color: #fff;
}
.drawer-menu-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.drawer-menu-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-menu-nav-en {
  font-family: "Patua One", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 12%;
}
.drawer-menu-nav-ja {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
}
.drawer-menu-sns {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -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 (max-width: 767px) {
  .drawer-menu-sns {
    gap: 25px;
  }
}
.drawer-menu-sns img {
  width: 24px;
}

.drawer-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #382620;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  border: none;
  display: block;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    top: 10px;
    right: 10px;
  }
}
.drawer-icon.is-show {
  opacity: 1;
  visibility: visible;
}
.drawer-icon.is-checked {
  background: #fff;
}
.drawer-icon.is-checked .drawer-icon-bar {
  background-color: #382620;
  left: 29%;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(1) {
  top: 29px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(3) {
  top: 29px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon-bar {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 27px;
  height: 2.25px;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
  transition: top 0.3s, transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.drawer-icon-bar:nth-of-type(1) {
  top: 21px;
}
.drawer-icon-bar:nth-of-type(2) {
  top: 29px;
}
.drawer-icon-bar:nth-of-type(3) {
  top: 37px;
}

.drawer-bg {
  background: rgba(0, 0, 0, 0.3019607843);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.drawer-bg.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.fv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv::before {
    content: "";
    position: absolute;
    background: url(../img/sp/sp-logo.png) no-repeat center center/contain;
    width: 120px;
    height: 65px;
    top: 10px;
    left: 10px;
    z-index: 10;
  }
}
.fv-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 60px;
}
.fv-sidebar {
  text-align: center;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .fv-sidebar {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .fv-sidebar {
    display: none;
  }
}
.fv-logo {
  padding: 18px 17px 0;
}
.fv-logo img {
  width: 166px;
}
.fv-nav-list {
  margin: 60px 0 60px;
  font-family: "Patua One", serif;
  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;
}
.fv-nav-link span {
  display: block;
}
.fv-nav-en {
  line-height: 1.5;
  letter-spacing: 12%;
}
.fv-nav-ja {
  font-size: 10px;
}
.fv-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.fv-sns-item {
  width: 24px;
}

.fv-main {
  width: calc(100% - 200px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}
.fv-main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 91.11%;
  height: 795px;
  background: #eae0d5;
}
@media screen and (max-width: 767px) {
  .fv-main::before {
    display: none;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.fv-main .fv-slider .swiper {
  width: 100%;
  height: 100%;
}
.fv-main .fv-slider .swiper-slide {
  overflow: hidden;
}
.fv-main .fv-slider .swiper-pagination {
  bottom: 16px;
  left: 20px;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 767px) {
  .fv-main .fv-slider .swiper-pagination {
    left: 6%;
    bottom: 1%;
  }
}
.fv-main .fv-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 1;
  margin: 0 16px 0 0 !important;
}
.fv-main .fv-slider .swiper-pagination-bullet-active {
  background: #d59b71;
}
.fv-main .fv-slider .swiper-scrollbar {
  display: none;
}
.fv-main-card {
  height: 770px;
}
.fv-main-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.fv-main .swiper-slide-active .fv-main-card img,
.fv-main .swiper-slide-duplicate-active .fv-main-card img,
.fv-main .swiper-slide-prev .fv-main-card img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}
.fv-main-text {
  position: absolute;
  font-size: 20px;
  z-index: 1;
  bottom: 52px;
  left: 50px;
  width: 426px;
  height: 80px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.14em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv-main-text {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 14%;
    top: 124px;
    left: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .fv-main-text {
    left: 20px;
    font-size: 16px;
  }
}
.fv-main .fv-pickup {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8509803922);
  width: 388px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .fv-main .fv-pickup {
    bottom: 32px;
    max-width: 335px;
    width: 89.3333333333%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
}
.fv-main .fv-pickup-card {
  position: relative;
}
.fv-main .fv-pickup-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: -51px;
  width: 168px;
  height: 95.17px;
  background: url(../img/pickup.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .fv-main .fv-pickup-card::before {
    width: 128px;
    height: 82px;
    right: -15px;
  }
}
.fv-main .fv-pickup-tag {
  position: absolute;
  background: #382620;
  color: #fff;
  left: -24px;
  top: -8px;
  z-index: 1;
  max-width: 116px;
}
.fv-main .fv-pickup-tag::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border: none;
  border-bottom: 4px solid transparent;
  border-right: solid 8px #aaaaaa;
}
.fv-main .fv-pickup-tag::after {
  position: absolute;
  top: 0;
  right: -5px;
  z-index: 1;
  width: 5px;
  height: 100%;
  content: "";
  border-color: #222222 transparent #222222 #222222;
  border-style: solid;
  border-width: 11px 5px 11px 0;
}
@media screen and (max-width: 767px) {
  .fv-main .fv-pickup-tag::after {
    border-width: 8px 5px 8px 0;
  }
}
.fv-main .fv-pickup-tag-text {
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 767px) {
  .fv-main .fv-pickup-tag-text {
    font-size: 9px;
  }
}
.fv-main .fv-pickup-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.fv-main .fv-pickup-image {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .fv-main .fv-pickup-image {
    width: 100px;
  }
}
.fv-main .fv-pickup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.fv-main .fv-pickup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  line-height: 1.5;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .fv-main .fv-pickup-content {
    max-width: 195px;
  }
}
.fv-main .fv-pickup-date {
  font-size: 12px;
  font-family: 500px;
  font-weight: 500;
  font-size: 12px;
}
.fv-main .fv-pickup-text {
  font-size: 14px;
  font-weight: 700;
}

.concept {
  position: relative;
}
.concept::before {
  content: "";
  position: absolute;
  background-color: #eae0d5;
  width: calc(100% - 20px);
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .concept::before {
    width: calc(92.969% + 40px);
    height: 300px;
  }
}
.concept::after {
  content: "";
  position: absolute;
  background: url(../img/concept-deco.png) no-repeat center center/contain;
  width: 145px;
  height: 130px;
  top: -20px;
  right: -17px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .concept::after {
    width: 296px;
    height: 265px;
    top: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .concept::after {
    width: 250px;
    height: 210px;
  }
}
.concept-inner {
  max-width: 600px;
  padding: 60px 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concept-inner {
    max-width: 1190px;
    padding: 80px 20px 80px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.concept-image {
  width: 94.0298507463%;
  margin: 66px 0 0 -20px;
}
@media screen and (min-width: 768px) {
  .concept-image {
    width: calc(46.3636363636% + 90px);
    height: 764px;
    left: 0;
    margin: 0;
    margin-left: -40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .concept-image {
    width: 40%;
    height: 764px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 768px) {
  .concept-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.concept-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .concept-content {
    width: 510px;
    gap: 48px;
  }
}
.concept-title {
  -moz-text-align-last: left;
       text-align-last: left;
}
.concept-lead {
  font-weight: 700;
  font-size: 20px;
  line-height: 200%;
}
@media screen and (min-width: 768px) {
  .concept-lead {
    font-size: 28px;
  }
}
.concept-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
}
.concept-text p:nth-of-type(2) {
  margin: 14px 0 0;
}
.concept-button {
  margin: 0 20px;
}
@media screen and (min-width: 768px) {
  .concept-button {
    margin: 0;
    margin-right: auto;
  }
}

.special-lunch {
  margin-top: 160px;
  background: #eae0d5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .special-lunch {
    margin-top: 120px;
  }
}
.special-lunch::before {
  content: "";
  position: absolute;
  background: url(../img/special-lunch-deco.png) no-repeat center center/contain;
  width: 201px;
  height: 228px;
  top: -130px;
  right: -34px;
}
@media screen and (max-width: 767px) {
  .special-lunch::before {
    width: 119px;
    height: 135px;
    top: -170px;
  }
}
.special-lunch-inner {
  max-width: 1280px;
  padding: 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .special-lunch-inner {
    padding: 60px 0;
  }
}
.special-lunch-content {
  padding: 60px 40px 40px;
  margin-top: 60px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .special-lunch-content {
    padding: 40px 20px 20px;
    max-width: 375px;
    margin: 60px auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .special-lunch-content {
    padding: 40px 20px 20px;
  }
}
.special-lunch-content::before {
  content: "";
  position: absolute;
  background: url(../img/lunch-speech-bubble.png) no-repeat center center/cover;
  width: 308px;
  height: 160px;
  top: -60px;
  right: -24.54px;
}
@media screen and (max-width: 767px) {
  .special-lunch-content::before {
    width: 206px;
    height: 107px;
    top: -245px;
    right: -25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .special-lunch-content::before {
    width: 190px;
    height: 100px;
  }
}
.special-lunch-select-tag {
  position: absolute;
  background: #222222;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: -20px;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .special-lunch-select-tag {
    padding: 8px 10px;
    font-size: 14px;
    white-space: nowrap;
  }
}
.special-lunch-select-tag::before {
  content: "";
  position: absolute;
  width: 31px;
  height: 37px;
  bottom: -7px;
  left: -19px;
  z-index: -2;
  background: url(../img/ribbon-left.png) no-repeat center center/contain;
}
.special-lunch-select-tag::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 37px;
  bottom: -7px;
  right: -19px;
  z-index: -2;
  background: url(../img/ribbon-right.png) no-repeat center center/contain;
}
.special-lunch-pasta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .special-lunch-pasta {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px 19px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .special-lunch-pasta {
    gap: 20px 19px;
  }
}
.special-lunch-pasta-image {
  max-width: 260px;
}
@media screen and (max-width: 767px) {
  .special-lunch-pasta-image {
    max-width: 158px;
  }
}
.special-lunch-pasta-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .special-lunch-pasta-info {
    gap: 6px;
  }
}
.special-lunch-pasta-label {
  width: 49px;
  height: 49px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Patua One", serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 12%;
  background: #222222;
  color: #fff;
  padding: 8.5px 14px;
}
@media screen and (max-width: 767px) {
  .special-lunch-pasta-label {
    width: 24px;
    height: 24px;
    font-size: 19px;
    padding: 2.5px 5.5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .special-lunch-pasta-label {
    width: 24px;
    height: 24px;
    font-size: 19px;
    padding: 2.5px 5.5px;
  }
}
.special-lunch-pasta-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .special-lunch-pasta-name {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .special-lunch-pasta-name {
    font-size: 12px;
  }
}
.special-lunch .special-lunch-pasta-item:nth-child(even) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .special-lunch .special-lunch-pasta-item:nth-child(even) {
    margin: 0;
  }
}
.special-lunch-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f3efeb;
  gap: 60px;
  margin-top: 60px;
  padding: 20px 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .special-lunch-set {
    display: block;
    padding: 20px 0;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .special-lunch-set {
    display: block;
    padding: 20px 0;
    margin-top: 20px;
  }
}
.special-lunch-set-image {
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .special-lunch-set-image {
    max-width: 335px;
    margin: 0 auto;
  }
}
.special-lunch-price {
  margin: 20px auto;
  max-width: 176px;
}
@media screen and (max-width: 767px) {
  .special-lunch-price {
    margin: 20px auto 0;
  }
}
.special-lunch-price-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: right;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .special-lunch-price-text {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .special-lunch-price-text {
    text-align: center;
  }
}
.special-lunch-price-value {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  border-bottom: 4px dotted #000;
  padding-bottom: 10px;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .special-lunch-price-value {
    text-align: center;
    width: 100%;
    font-size: 40px;
  }
}
.special-lunch-price-time {
  margin-top: 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: right;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .special-lunch-price-time {
    text-align: center;
    width: 100%;
    font-size: 12px;
  }
}

.grand-menu {
  position: relative;
  z-index: 1;
}
.grand-menu::before {
  content: "";
  position: absolute;
  width: 415px;
  height: 415px;
  top: -136.71px;
  left: -118px;
  z-index: -2;
  background: url(../img/grand-deco-ha.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .grand-menu::before {
    width: 190px;
    height: 190px;
    left: -42px;
    top: -90px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .grand-menu::before {
    z-index: 3;
  }
}
.grand-menu::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 330px;
  bottom: -121px;
  right: -89px;
  z-index: 1;
  background: url(../img/grand-deco-mame.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .grand-menu::after {
    width: 168px;
    height: 143px;
    bottom: -100px;
    right: -30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .grand-menu::after {
    width: 210px;
    height: 215px;
    bottom: -100px;
    right: -30px;
  }
}
.grand-menu-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 88%;
  height: 2196px;
  background: #eae0d5;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .grand-menu-bg {
    height: 1633px;
    width: 69.07%;
  }
}
.grand-menu-category {
  margin-top: 104px;
}
@media screen and (max-width: 767px) {
  .grand-menu-category {
    margin-top: 40px;
  }
}
.grand-menu-category-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  border-bottom: 2px solid #222222;
  border-top: 2px solid #222222;
  position: relative;
  padding: 4px 30px;
}
@media screen and (max-width: 767px) {
  .grand-menu-category-title {
    font-size: 20px;
    padding: 2px 10px;
  }
}
.grand-menu-category-title::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #222222;
  height: 1px;
  top: 2px;
  left: 0;
}
.grand-menu-category-title::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #222222;
  height: 1px;
  bottom: 2px;
  left: 0;
}
.grand-menu .grand-menu-category:nth-child(1) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .grand-menu .grand-menu-category:nth-child(1) {
    margin-top: 40px;
  }
}
.grand-menu-items {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media screen and (max-width: 767px) {
  .grand-menu-items {
    margin-top: 26px;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
  }
}
.grand-menu-item-image {
  background: #fff;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .grand-menu-item-image {
    padding: 5px;
  }
}
.grand-menu-item-name {
  margin-top: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .grand-menu-item-name {
    font-size: 14px;
  }
}
.grand-menu-item-price {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .grand-menu-item-price {
    font-size: 24px;
  }
}
.grand-menu-drink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 33px;
  gap: 94px;
}
@media screen and (max-width: 767px) {
  .grand-menu-drink {
    display: block;
    width: 89.33%;
    margin: 26px auto 0;
  }
}
.grand-menu-drink-image {
  width: 327px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .grand-menu-drink-image {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .grand-menu-drink-image {
    display: none;
  }
}
.grand-menu-drink-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .grand-menu-drink-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .grand-menu-drink-lists {
    margin: 0 auto;
  }
}
.grand-menu-drink-list-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #222222;
  padding-bottom: 6px;
}
.grand-menu-drink-row {
  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;
}
.grand-menu-drink-menu {
  width: 197px;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.5px;
}
@media screen and (max-width: 767px) {
  .grand-menu-drink-menu {
    width: 100%;
  }
}
.grand-menu-drink-menu dt {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.grand-menu-drink-menu dd {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: right;
}
.grand-menu-button {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .grand-menu-button {
    margin-top: 40px;
  }
}

.gallery {
  margin-top: 160px;
  background: #eae0d5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .gallery {
    margin-top: 120px;
  }
}
.gallery::before {
  content: "";
  position: absolute;
  width: 266px;
  height: 138px;
  top: -60px;
  left: calc(50% - 344px);
  background: url(../img/gallery-bubble.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .gallery::before {
    width: 200px;
    height: 104px;
    left: -23px;
  }
}
.gallery::after {
  content: "";
  position: absolute;
  width: 354px;
  height: 320px;
  bottom: -180px;
  left: -87px;
  background: url(../img/gallery-deco.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .gallery::after {
    width: 204px;
    height: 185px;
    left: -40px;
    bottom: -145px;
  }
}
.gallery-images {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .gallery-images {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .gallery-images {
    gap: 14px;
  }
}
.gallery-button {
  margin-top: 60px;
  text-align: center;
  margin-top: 40px;
}

.news {
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-inner {
    padding-bottom: 120px;
  }
}
.news-list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .news-list {
    margin-top: 40px;
    display: block;
  }
}
.news-card--large {
  max-width: 510px;
}
@media screen and (max-width: 767px) {
  .news-card--large {
    max-width: 560px;
  }
}
.news-card-link {
  position: relative;
}
.news-card-category {
  position: absolute;
  background: #382620;
  color: #fff;
  left: -8px;
  top: 10px;
  z-index: 1;
}
.news-card-category::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border: none;
  border-bottom: 4px solid transparent;
  border-right: solid 8px #aaaaaa;
}
.news-card-category::after {
  position: absolute;
  top: 0;
  right: -5px;
  z-index: 1;
  width: 5px;
  height: 100%;
  content: "";
  border-color: #382620 transparent #382620 #382620;
  border-style: solid;
  border-width: 14px 5px 14px 0;
}
@media screen and (max-width: 767px) {
  .news-card-category::after {
    border-width: 11px 5px 11px 0;
  }
}
.news-card-category-text {
  padding: 2px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news-card-category-side-text {
    font-size: 12px;
  }
}
.news-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.news-card-large-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-card-large-title {
    font-size: 14px;
  }
}
.news-card-text {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .news-card-text {
    font-size: 12px;
  }
}
.news-card-date {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}
.news-side {
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .news-side {
    gap: 38px 19px;
    margin-top: 20px;
  }
}
.news-card-small-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-card-small-title {
    font-size: 12px;
  }
}
.news-button {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .news-button {
    margin-top: 40px;
  }
}

.access {
  background: #eae0d5;
  position: relative;
}
.access::before {
  content: "";
  position: absolute;
  width: 233px;
  height: 200px;
  top: -50px;
  left: calc(50% - 336px);
  background: url(../img/footer-bubble.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .access::before {
    width: 200px;
    height: 172px;
    left: -32px;
  }
}
.access::after {
  content: "";
  position: absolute;
  width: 389px;
  height: 359px;
  top: -170px;
  right: -91px;
  background: url(../img/news-deco.png) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .access::after {
    width: 194px;
    height: 179px;
    right: -40px;
    top: -93px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .access::after {
    width: 350px;
    height: 290px;
  }
}
.access-inner {
  padding: 80px 30px;
  max-width: 748px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .access-inner {
    padding: 80px 20px;
    max-width: 600px;
  }
}
.access-map {
  width: 100%;
  height: 377px;
  border: 10px solid #fff;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .access-map {
    max-height: 310px;
    border: 5px solid #fff;
  }
}
.access-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .access-info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
.access-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #222;
  padding-bottom: 6px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.access-info-head {
  font-weight: 700;
  width: 56px;
}
.access-info-data {
  font-weight: 700;
}

.footer {
  background: #382620;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  width: 341px;
  height: 288px;
  bottom: 0;
  left: -85px;
  background: url(../img/footer-deco-mame.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .footer::before {
    width: 128px;
    height: 108px;
    top: -61px;
    left: -20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .footer::before {
    width: 310px;
    height: 200px;
  }
}
.footer-inner {
  padding: 40px 0 14px 0;
  width: 100%;
}
.footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer-sns {
    gap: 27px;
  }
}
.footer-sns-item {
  width: 24px;
}
.footer-sns-item img {
  width: 100%;
}
.footer-copy {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}
.footer-page-top {
  right: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .footer-page-top {
    right: 10px;
    bottom: 10px;
  }
}
.footer-page-top-link {
  display: block;
  width: 44px;
  height: 44px;
}
.footer-page-top-link img {
  display: block;
  width: 100%;
}

.page-header-title {
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.page-header-title-en {
  font-size: 72px;
  font-family: "Amatic SC", cursive;
  letter-spacing: 20%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-header-title-en {
    font-size: 32px;
    letter-spacing: 10%;
  }
}
.page-header-title-ja {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-header-title-ja {
    font-size: 12px;
  }
}

.page-header {
  position: relative;
}
.page-header.page-concept-header {
  background: url(../img/concept-header.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-header.page-concept-header {
    width: 100%;
    height: 120px;
  }
}
.page-header.page-menu-header {
  background: url(../img/menu-header.jpg) no-repeat center center/cover;
}
.page-header.page-news-header {
  background: url(../img/page-news-header.jpg) no-repeat center center/cover;
}
.page-header.page-shop-header {
  background: url(../img/page-shop-header.jpg) no-repeat center center/cover;
}
.page-header.page-gift-header {
  background: url(../img/page-gift-header.jpg) no-repeat center center/cover;
}
.page-header.page-contact-header {
  background: url(../img/page-contact-header.jpg) no-repeat center center/cover;
}
.page-header-bg {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 320px;
  top: 0;
  left: 0;
  z-index: 1000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-header-bg {
    height: 120px;
  }
}
.page-header-bg::before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .page-header-bg::before {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }
}
.page-header-bg::after {
  content: "";
  position: absolute;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .page-header-bg::after {
    width: calc(100% - 22px);
    height: calc(100% - 22px);
  }
}
.page-header-inner {
  padding-top: 101px;
}
@media screen and (max-width: 767px) {
  .page-header-inner {
    padding-top: 30px;
  }
}

.breadcrumb {
  margin-top: 16px;
  padding-inline: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 6px;
    padding-inline: 20px;
    gap: 6px;
  }
}
.breadcrumb span {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .breadcrumb span {
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
  }
}
.breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .breadcrumb-list {
    gap: 5px;
  }
}
.breadcrumb-item {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .breadcrumb-item {
    font-size: 12px;
  }
}
.breadcrumb-item a {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .breadcrumb-item a {
    font-size: 12px;
  }
}

.page-concept {
  position: relative;
}
.page-concept-inner {
  padding-bottom: 0;
}
.page-concept::before {
  content: "";
  position: absolute;
  background-color: #eae0d5;
  width: 77%;
  height: 200px;
  bottom: -100px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-concept::before {
    width: 89.33%;
    height: 100px;
    bottom: -50px;
  }
}
.page-concept-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .page-concept-body {
    display: block;
  }
}
.page-concept-content {
  width: 35.36%;
}
@media screen and (max-width: 767px) {
  .page-concept-content {
    width: initial;
  }
}
.page-concept-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .page-concept-title {
    font-size: 20px;
  }
}
.page-concept-text {
  margin-top: 34px;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .page-concept-text {
    margin-top: 32px;
  }
}
.page-concept-media {
  width: 58.18%;
}
@media screen and (max-width: 767px) {
  .page-concept-media {
    width: initial;
    margin-top: 32px;
  }
}
.page-concept-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .page-concept-sub {
    margin-top: 11px;
    gap: 11px;
  }
}
.page-concept-pasta {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .page-concept-pasta {
    margin-top: 40px;
  }
}
.page-concept-pasta::before {
  content: "";
  position: absolute;
  background-color: #eae0d5;
  width: 45%;
  height: 437px;
  bottom: -60px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-concept-pasta::before {
    width: 75.73%;
    height: 227px;
  }
}
@media screen and (max-width: 767px) {
  .page-concept-pasta-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 32px;
  }
}
.page-concept-bread {
  margin: 120px 0 160px;
}
@media screen and (max-width: 767px) {
  .page-concept-bread {
    margin-top: 40px;
  }
}
.page-concept-bread::before {
  content: "";
  position: absolute;
  background-color: #eae0d5;
  width: 31%;
  height: 520px;
  bottom: -80px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-concept-bread::before {
    width: 49.06%;
    height: 195px;
    bottom: -20px;
  }
}

.page-menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .page-menu-inner {
    gap: 80px;
  }
}
.page-menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-menu-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.page-menu-nav-link {
  background: #888888;
  color: #fff;
  width: 200px;
  height: 69px;
  text-align: center;
  padding-top: 22.5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-menu-nav-link.is-checked {
  background: #382620;
}
.page-menu-nav-link:hover {
  background: #382620;
}
@media screen and (max-width: 767px) {
  .page-menu-nav-link {
    width: 100%;
    height: 64px;
    font-size: 14px;
  }
}
.page-menu-nav-link::before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-menu-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .page-menu-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
  }
}
.page-menu-card-name {
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}
.page-menu-card-price {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
}
.page-menu-drink {
  margin-top: 0;
}

.page-news-inner {
  padding-bottom: 160px;
}
.page-news-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .page-news-layout {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-news-layout {
    display: block;
  }
}
.page-news-main {
  width: 720px;
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .page-news-main {
    width: calc(100% - 280px - 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-news-main {
    width: 100%;
  }
}
.page-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .page-news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 19px;
  }
}
.page-news-card {
  position: relative;
}
.page-news-card-link {
  display: block;
  color: inherit;
  height: 100%;
}
.page-news-card-image {
  position: relative;
  aspect-ratio: 340/213;
  overflow: hidden;
}
.page-news-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page-news-card-image {
    aspect-ratio: 158/100;
  }
}
.page-news-card-category {
  position: absolute;
  top: 10px;
  left: -8px;
  z-index: 1;
  background: #382620;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .page-news-card-category {
    top: 10px;
  }
}
.page-news-card-category::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border-right: 8px solid #aaa;
  border-bottom: 4px solid transparent;
}
.page-news-card-category::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 5px;
  height: 100%;
  border-style: solid;
  border-color: #382620 transparent #382620 #382620;
  border-width: 11px 6px 11px 0;
}
@media screen and (max-width: 767px) {
  .page-news-card-category::after {
    border-width: 11px 5px 11px 0;
  }
}
.page-news-card-category-text {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .page-news-card-category-text {
    padding: 2px 8px;
    font-size: 10px;
  }
}
.page-news-card-body {
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .page-news-card-body {
    padding-top: 8px;
  }
}
.page-news-card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .page-news-card-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-news-card-title {
    font-size: 12px;
    line-height: 1.5;
  }
}
.page-news-card-date {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-news-card-date {
    margin-top: 12px;
    font-size: 12px;
  }
}
.page-news-pagination {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .page-news-pagination {
    margin-top: 40px;
    gap: 8px;
  }
}
.page-news-pagination-link {
  width: 40px;
  height: 40px;
  border: 1px solid #382620;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #382620;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .page-news-pagination-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.page-news-pagination-link.is-current {
  background: #382620;
  color: #fff;
}
.page-news-sidebar {
  width: 320px;
}
@media screen and (min-width: 768px) and (max-width: 1059px) {
  .page-news-sidebar {
    width: 280px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-news-sidebar {
    width: 100%;
    margin-top: 60px;
  }
}
.page-news-sidebar-block {
  background: #fff;
  padding: 20px;
}
.page-news-sidebar-block + .page-news-sidebar-block {
  margin-top: 60px;
}
.page-news-sidebar-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 20px;
  position: relative;
}
.page-news-sidebar-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: #222222;
}
.page-news-sidebar-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.page-news-sidebar-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.page-news-sidebar-post-image {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-news-sidebar-post-image img {
  width: 100%;
  display: block;
  aspect-ratio: 100/100;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-news-sidebar-post-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.page-news-sidebar-post-title {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}
.page-news-sidebar-post-date {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
}
.page-news-sidebar-category-list {
  margin-top: 20px;
}
.page-news-sidebar-category-link {
  display: block;
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
  margin-bottom: 10px;
}
.page-news-sidebar-category-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #382620;
  border-right: 1px solid #382620;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.news-detail-inner {
  max-width: 748px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .news-detail-inner {
    max-width: 600px;
  }
}
.news-detail-image img {
  width: 100%;
  display: block;
}
.news-detail-header {
  margin-top: 20px;
}
.news-detail-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.news-detail-meta {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  gap: 25px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-detail-meta {
    gap: 41px;
    font-size: 14px;
  }
}
.news-detail-date {
  position: relative;
}
.news-detail-date::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  background-color: #222;
  top: 2px;
  right: -14px;
}
@media screen and (max-width: 767px) {
  .news-detail-date::before {
    right: -20px;
  }
}
.news-detail-category {
  font-weight: 700;
}
.news-detail-body {
  margin-top: 40px;
}
.news-detail-body h2 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  border-left: 4px solid #382620;
  padding-left: 12px;
}
.news-detail-body h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .news-detail-body h2 {
    font-size: 18px;
    padding-left: 10px;
  }
}
.news-detail-body h3 {
  margin-top: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  border-bottom: 1px solid #382620;
  padding-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .news-detail-body h3 {
    font-size: 16px;
  }
}
.news-detail-body h4 {
  margin-top: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .news-detail-body h4 {
    font-size: 14px;
  }
}
.news-detail-body p {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .news-detail-body p {
    margin-top: 14px;
    font-size: 14px;
  }
}
.news-detail-body strong {
  font-weight: 700;
}
.news-detail-body blockquote {
  background: #f8f8f8;
  padding: 40px;
  margin: 16px 0 0;
}
@media screen and (max-width: 767px) {
  .news-detail-body blockquote {
    padding: 20px;
  }
}
.news-detail-body blockquote p {
  margin-top: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
}
@media screen and (max-width: 767px) {
  .news-detail-body blockquote p {
    font-size: 14px;
  }
}
.news-detail-body blockquote cite,
.news-detail-body blockquote a {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .news-detail-body blockquote cite,
  .news-detail-body blockquote a {
    margin-top: 14px;
    font-size: 11px;
  }
}
.news-detail-body figure,
.news-detail-body .wp-block-image {
  margin-top: 16px;
}
.news-detail-body figure img,
.news-detail-body .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail-body ul {
  margin-top: 16px;
  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;
}
@media screen and (max-width: 767px) {
  .news-detail-body ul {
    margin-top: 14px;
  }
}
.news-detail-body ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
}
.news-detail-body ul li::before {
  content: "・";
  position: absolute;
  left: 3px;
  top: 0;
}
.news-detail-body ol {
  margin-top: 16px;
  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;
  padding-left: 1.4em;
  list-style-type: decimal;
}
.news-detail-body ol li {
  font-size: 14px;
  line-height: 1.8;
}
.news-detail-nav {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(80px, auto) auto minmax(80px, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news-detail-nav {
    grid-template-columns: minmax(72px, auto) auto minmax(72px, auto);
  }
}
.news-detail-nav-prev {
  font-size: 16px;
  line-height: 1.5;
  padding: 7px 0 7px 16px;
  font-weight: 700;
  position: relative;
}
.news-detail-nav-prev a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-left: 2px solid #382620;
  border-bottom: 2px solid #382620;
}
@media screen and (max-width: 767px) {
  .news-detail-nav-prev {
    font-size: 14px;
  }
}
.news-detail-nav-next {
  font-size: 16px;
  line-height: 1.5;
  padding: 7px 16px 7px 0px;
  font-weight: 700;
  position: relative;
}
.news-detail-nav-next a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  width: 8px;
  height: 8px;
  border-left: 2px solid #382620;
  border-bottom: 2px solid #382620;
}
@media screen and (max-width: 767px) {
  .news-detail-nav-next {
    font-size: 14px;
  }
}
.news-detail-nav-next:empty {
  display: none;
}
.news-detail-nav-back {
  border: 1px solid #382620;
  padding: 11px 36px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news-detail-nav-back {
    padding: 8px 20px;
    font-size: 14px;
  }
}
.news-detail-related {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .news-detail-related {
    margin-top: 100px;
  }
}
.news-detail-related-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-detail-related-title {
    font-size: 20px;
  }
}
.news-detail-related-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news-detail-related-list {
    margin-top: 40px;
    gap: 19px;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-detail-related-card {
  width: 100%;
  position: relative;
}
.news-detail-related-link {
  display: block;
  color: inherit;
}
.news-detail-related-category {
  position: absolute;
  top: 10px;
  left: -8px;
  z-index: 1;
  background: #382620;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.news-detail-related-category::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border-right: 8px solid #aaa;
  border-bottom: 4px solid transparent;
}
.news-detail-related-category::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 5px;
  height: 100%;
  border-style: solid;
  border-color: #382620 transparent #382620 #382620;
  border-width: 8px 5px 8px 0;
}
@media screen and (max-width: 767px) {
  .news-detail-related-category::after {
    border-width: 8px 5px 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .news-detail-related-category {
    top: 10px;
  }
}
.news-detail-related-category-text {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}
.news-detail-related-image {
  position: relative;
}
.news-detail-related-image img {
  width: 100%;
  display: block;
}
.news-detail-related-body {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .news-detail-related-body {
    margin-top: 8px;
  }
}
.news-detail-related-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-detail-related-card-title {
    font-size: 12px;
  }
}
.news-detail-related-date {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-detail-related-date {
    font-size: 12px;
  }
}

.page-shop-inner {
  max-width: 748px;
}
.page-shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .page-shop-list {
    gap: 60px;
  }
}
.page-shop-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  border-left: 6px solid #382620;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .page-shop-card-title {
    font-size: 18px;
  }
}
.page-shop-card-image {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .page-shop-card-image {
    margin-top: 20px;
  }
}
.page-shop-card-image img {
  width: 100%;
}
.page-shop-card-info {
  margin-top: 40px;
}
.page-shop-card-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  .page-shop-card-info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
.page-shop-card-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #222;
  padding-bottom: 6px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.page-shop-card-info-head {
  width: 56px;
  font-weight: 700;
}
.page-shop-card-info-data {
  font-weight: 700;
}

.page-gift-inner {
  padding-bottom: 160px;
}
.page-gift-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .page-gift-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 19px;
  }
}
.page-gift-product {
  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;
  text-align: center;
}
.page-gift-product-image {
  width: 100%;
}
.page-gift-product-image img {
  width: 100%;
  display: block;
}
.page-gift-product-title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-gift-product-title {
    font-size: 14px;
  }
}
.page-gift-product-price {
  margin-top: 8px;
  font-size: 24px;
  font-family: "Damion", cursive;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-gift-product-price {
    font-size: 24px;
    padding: 6px 12px;
  }
}
.page-gift-product-button {
  margin-top: 8px;
  padding: 8px 24px;
  background: #382620;
  color: #fff;
  font-size: 14px;
  -webkit-transition: 0.3s, color 0.3s;
  transition: 0.3s, color 0.3s;
  font-weight: 700;
}
.page-gift-product-button:hover {
  background: #fff;
  color: #382620;
  border: 1px solid #382620;
}
@media screen and (max-width: 767px) {
  .page-gift-product-button {
    font-size: 12px;
    padding: 5px 11px;
  }
}
.page-gift-product-large {
  grid-column: span 2;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .page-gift-product-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.page-gift-product-large .page-gift-product-title {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .page-gift-product-large .page-gift-product-title {
    font-size: 20px;
  }
}
.page-gift-product-large .page-gift-product-price {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .page-gift-product-large .page-gift-product-price {
    font-size: 28px;
  }
}
.page-gift-wrap {
  margin-top: 100px;
  background: #fff;
  padding: 79px 60px;
  border: 4px solid #382620;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.page-gift-wrap::before {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #382620;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .page-gift-wrap {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 29px;
    gap: 34px;
  }
}
.page-gift-wrap-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  padding-bottom: 20px;
  border-bottom: 4px dotted #382620;
}
@media screen and (max-width: 767px) {
  .page-gift-wrap-title {
    font-size: 15px;
  }
}
.page-gift-wrap-text {
  margin-top: 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .page-gift-wrap-text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.page-gift-wrap-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.page-contact-inner {
  max-width: 688px;
  margin: 0 auto;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .page-contact-inner {
    max-width: 600px;
  }
}
.page-contact-head {
  text-align: center;
}
.page-contact-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-contact-title {
    font-size: 20px;
  }
}
.page-contact-text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .page-contact-text {
    margin-top: 21px;
    font-size: 14px;
  }
}
.page-contact-form {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .page-contact-form {
    margin-top: 60px;
  }
}
.page-contact-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .page-contact-form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.page-contact-form-head {
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .page-contact-form-head {
    width: 100%;
  }
}
.page-contact-form-label {
  font-weight: 700;
}
.page-contact-form-required {
  background: #e76f2e;
  color: #fff;
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 2px;
}
.page-contact-form-data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .page-contact-form-data {
    width: 100%;
  }
}
.page-contact-form-input {
  width: 100%;
  height: 48px;
  border: 1px solid #382620;
  padding: 12px 16px;
  border-radius: 6px;
}
.page-contact-form-input::-webkit-input-placeholder {
  color: #ccc;
}
.page-contact-form-input::-moz-placeholder {
  color: #ccc;
}
.page-contact-form-input:-ms-input-placeholder {
  color: #ccc;
}
.page-contact-form-input::-ms-input-placeholder {
  color: #ccc;
}
.page-contact-form-input::placeholder {
  color: #ccc;
}
.page-contact-form-textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #382620;
  padding: 12px 16px;
  resize: none;
  border-radius: 6px;
}
.page-contact-form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.page-contact-form-textarea::-moz-placeholder {
  color: #ccc;
}
.page-contact-form-textarea:-ms-input-placeholder {
  color: #ccc;
}
.page-contact-form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.page-contact-form-textarea::placeholder {
  color: #ccc;
}
.page-contact-form-radio .wpcf7-form-control {
  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;
}
.page-contact-form-radio .wpcf7-list-item {
  margin: 0;
}
.page-contact-form-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.page-contact-form-radio input[type=radio] {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
}
.page-contact-form-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.page-contact-form-radio .wpcf7-list-item-label {
  padding-left: 34px;
  position: relative;
}
.page-contact-form-radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #000;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
}
.page-contact-form-radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f07317;
  border-radius: 50%;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
.page-contact-privacy-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}
.page-contact-submit {
  margin: 0 auto;
  width: 280px;
  height: 72px;
  margin: 0 auto;
  position: relative;
}
.page-contact-submit::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 100%;
  height: 100%;
  border-right: 2px solid #382620;
  border-bottom: 2px solid #382620;
  pointer-events: none;
}
.page-contact-submit::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  pointer-events: none;
}
.page-contact-submit-button {
  width: 100%;
  height: 100%;
  background: #222;
  color: #fff;
  border: none;
  font-weight: 700;
  letter-spacing: 0.3em;
  cursor: pointer;
}

.page-contact-thanks-inner {
  max-width: 688px;
  margin: 0 auto;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .page-contact-thanks-inner {
    width: 100%;
  }
}
.page-contact-thanks-box {
  text-align: center;
}
.page-contact-thanks-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-contact-thanks-title {
    font-size: 20px;
  }
}
.page-contact-thanks-text {
  margin-top: 24px;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page-contact-thanks-text {
    margin-top: 21px;
    font-size: 14px;
  }
}