@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
  color: #393533;
  -webkit-font-smoothing: antialiased;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.obj-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-fadein {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.u-popin {
  animation: fv-pop-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.u-popin--photo {
  animation: fv-pop-in-photo 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.u-popin--line {
  animation: fv-grow-x 0.5s ease-out both;
}

.u-popin--d120 {
  animation-delay: 0.12s;
}

.u-popin--d240 {
  animation-delay: 0.24s;
}

.u-popin--d300 {
  animation-delay: 0.3s;
}

.u-popin--d340 {
  animation-delay: 0.34s;
}

.u-popin--d440 {
  animation-delay: 0.44s;
}

.u-popin--d540 {
  animation-delay: 0.54s;
}

@keyframes fv-pop-in {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(24px);
  }
  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-6px);
  }
  80% {
    transform: scale(0.96) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes fv-pop-in-photo {
  0% {
    opacity: 0;
    transform: scale(0.75) rotate(-4deg) translateY(30px);
  }
  55% {
    opacity: 1;
    transform: scale(1.04) rotate(1.5deg) translateY(-4px);
  }
  80% {
    transform: scale(0.98) rotate(-0.5deg) translateY(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateY(0);
  }
}
@keyframes fv-grow-x {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .u-popin,
  .u-popin--photo,
  .u-popin--line {
    animation: none;
  }
}
div,
p,
li,
dt,
dd,
th,
td,
a {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

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

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

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

/*************************************************
top
*************************************************/
.fixed-container {
  display: none;
}
@media (min-width: 390px) {
  .fixed-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
  }
}

.fixed-bg {
  position: absolute;
  background: #F2EEE9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 940px) {
  .fixed-logo,
  .fixed-nav,
  .fixed-buttons {
    position: absolute;
    pointer-events: auto;
  }
}

@media (min-width: 940px) {
  .fixed-logo {
    top: 26px;
    left: 50px;
    width: 203px;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-logo {
    display: none;
  }
}

@media (min-width: 1100px) {
  .fixed-nav {
    bottom: 10%;
    left: 5%;
  }
}
@media (max-width: 1099px) {
  .fixed-nav {
    bottom: 10%;
    left: 1%;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-nav {
    display: none;
  }
}
.fixed-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fixed-nav ul li {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-nav ul li:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}
.fixed-nav ul a {
  display: flex;
  align-items: center;
  padding: 14px 40px 14px 24px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.fixed-nav ul a img {
  margin-right: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-nav ul a:hover {
    transform: translateX(4px);
  }
}

@media (min-width: 1100px) {
  .fixed-buttons {
    bottom: 10%;
    right: 5%;
  }
}
@media (max-width: 1099px) {
  .fixed-buttons {
    bottom: 10%;
    right: 1%;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-buttons {
    display: none;
  }
}
.fixed-buttons .btn {
  width: 250px;
  background-color: #06c755;
}
.fixed-buttons .btn a {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 21px 24px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.fixed-buttons .btn a img {
  margin-right: 10px;
}

.fixed-card {
  display: none;
}
@media (min-width: 940px) {
  .fixed-card {
    display: flex;
    position: absolute;
    top: 26px;
    left: 50px;
    pointer-events: auto;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 330px;
    padding: 32px 0 42px;
    background: #fff;
    border: 1px solid #393533;
    border-radius: 10px;
  }
}
.fixed-card__logo {
  position: relative;
  width: 260px;
}
.fixed-card__catch {
  width: 280px;
  margin-top: 14px;
}
.fixed-card__catch-bang {
  display: inline-block;
  font-size: 36px;
  color: #393533;
  transform: rotate(23deg);
}
.fixed-card__badge {
  position: relative;
  width: 260px;
  margin-top: 4px;
}
.fixed-card__badge-head {
  display: flex;
  align-items: center;
  width: 233px;
  margin: 0 auto;
  gap: 6px;
}
.fixed-card__badge-year {
  flex-shrink: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e88e58;
}
.fixed-card__badge-year-line {
  flex: 1 1 auto;
  height: 1px;
  background: #e88e58;
}
.fixed-card__badge-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 233px;
  height: 38px;
  margin: 0 auto 0;
  background: #e88e58;
  border-radius: 1px;
  gap: 17px;
}
.fixed-card__badge-date-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: #fff;
}
.fixed-card__badge-date-day {
  padding-bottom: 2px;
  font-size: 10px;
  writing-mode: vertical-rl;
}
.fixed-card__badge-date-arrow img {
  display: flex;
  width: 14px;
}
.fixed-card__badge-price {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 59px;
  padding-left: 62px;
  margin-top: -5px;
}
.fixed-card__badge-price-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 59px;
  height: 59px;
}
.fixed-card__badge-price-value {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 47px;
  line-height: 1;
  color: #e88e58;
  display: flex;
  align-items: baseline;
}
.fixed-card__badge-price-value img {
  width: 24px;
  height: 24px;
  vertical-align: baseline;
}
.fixed-card__badge-price-wave {
  margin-left: 2px;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 35px;
}
.fixed-card__nav {
  width: 246px;
  margin-top: 20px;
}
.fixed-card__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fixed-card__nav a {
  display: block;
  font-weight: 500;
  letter-spacing: normal;
  white-space: nowrap;
  color: #393533;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-card__nav a:hover {
    color: #E17738;
  }
}
.fixed-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 47px;
  margin-top: 20px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: #f36b00;
  border-radius: 30px;
  box-shadow: 0 4px 0 #a0531b;
  transition: all 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-card__button:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #a0531b;
  }
}

.fixed-stamp {
  display: none;
}
@media (min-width: 940px) {
  .fixed-stamp {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 600px;
    height: 540px;
    overflow: hidden;
    pointer-events: none;
  }
}

.fixed-stamp-inner {
  position: absolute;
  right: -500px;
  bottom: -560px;
  width: 1100px;
  height: 1100px;
}

.fixed-stamp-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  overflow: visible;
}
.fixed-stamp-ring--outer {
  width: 1100px;
  height: 1100px;
}
.fixed-stamp-ring--inner {
  width: 980px;
  height: 980px;
}

.fixed-stamp-text {
  font-family: "Harmattan", sans-serif;
  font-weight: bold;
}

.fixed-stamp-ring--inner .fixed-stamp-text {
  fill: #f09192;
  font-size: 46px;
}

.fixed-stamp-ring--outer .fixed-stamp-base {
  font-size: 60px;
  fill: #f09192;
  stroke: #f09192;
  stroke-width: 2px;
  stroke-linejoin: round;
}

.fixed-stamp-ring--outer .fixed-stamp-cut {
  font-size: 60px;
  fill: #000;
  stroke: none;
}

main {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 0 auto;
  background: #F2EEE9;
  border: 1px solid #393533;
}
@media screen and (max-width: 599px) {
  main {
    border: 0px solid #393533;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 940px) {
  main {
    margin-left: max(420px, (100vw - 390px) / 2);
    margin-right: auto;
  }
}
main {
  /* shadow */
}

.nav-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 45px;
  background: #F2EEE9;
  border-radius: 3px;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: #E88E58;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle small {
  margin-top: 4px;
  font-size: 10px;
  color: #E88E58;
  font-weight: 700;
}
@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }
}

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.is-nav-open .nav-toggle small {
  color: #393533;
}

.gnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-sizing: border-box;
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  height: 100dvh;
  overflow-y: auto;
  padding: 76px 24px 40px;
  background: #fff;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 599px) {
  .gnav {
    max-width: 100%;
  }
}
@media (min-width: 940px) {
  .gnav {
    display: none;
  }
}

body.is-nav-open .gnav {
  transform: translateY(0);
  background-color: #F2EEE9;
}

.gnav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gnav__list a {
  display: flex;
  align-items: center;
  height: 52px;
  font-weight: 700;
  letter-spacing: normal;
  color: #393533;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 53, 51, 0.08);
}
@media (hover: hover) and (pointer: fine) {
  .gnav__list a:hover {
    color: #E17738;
  }
}

.gnav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin-top: 28px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  background: #f36b00;
  border-radius: 30px;
  box-shadow: 0 4px 0 #a0531b;
  transition: all 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .gnav__button:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #a0531b;
  }
}

.gnav__footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(57, 53, 51, 0.08);
}
.gnav__footer img {
  width: 100px;
  height: auto;
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .sp-line__btn--fixed {
  display: none;
}

.logo {
  width: 180px;
  height: auto;
}

.fv {
  position: relative;
  overflow: hidden;
}

.fv__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 495px;
  padding-top: 35px;
  padding-bottom: 90px;
  background: #e88e58;
}

.fv__logo-main {
  display: block;
  width: 320px;
  height: auto;
  margin-top: 4rem;
}

.fv__catch img {
  display: block;
  width: 580px;
  max-width: 90%;
  margin: 0 auto;
  height: auto;
}

.fv__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 20px;
}

.fv__info-head {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 270px;
}

.fv__info-year {
  flex-shrink: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #f7f7f7;
}

.fv__info-year-line {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(247, 247, 247, 0.5);
}

.fv__info-date {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 20px;
  box-sizing: border-box;
  width: 270px;
  height: 44px;
  padding: 0 10px;
  background: #fff;
  border-radius: 1px;
}

.fv__info-date-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 1;
  color: #E17738;
}

.fv__info-date-day {
  padding-bottom: 2px;
  font-size: 12px;
  writing-mode: vertical-rl;
}

.fv__info-date-arrow img {
  width: 16px;
  display: flex;
}

.fv__info-price {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 68px;
  padding-left: 30px;
  margin-top: -20px;
}

.fv__info-price-label {
  position: absolute;
  left: -40px;
  top: 0;
  width: 68px;
  height: 68px;
}

.fv__info-price-value {
  margin-top: 15px;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 55px;
  line-height: 1;
  color: #f7f7f7;
}
.fv__info-price-value img {
  width: 28px;
  height: 28px;
  vertical-align: baseline;
}

.fv__info-price-wave {
  margin-left: 2px;
  font-size: 41px;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
}

.fv__info-divider {
  width: 270px;
  height: 1px;
  background: rgba(247, 247, 247, 0.5);
}

.fv__gallery {
  position: relative;
  z-index: 1;
  width: calc(100% + 49px);
  aspect-ratio: 446/557;
  margin: -78px 0 60px -64px;
}
.fv__gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 14px;
  left: calc(50% + 70px);
  transform: translateX(-50%);
  width: 487px;
  height: 174px;
  background: url("../images/fv_circle.png") no-repeat center/contain;
}

.fv__gallery-main {
  width: 100%;
  height: 100%;
}

.fv__stamp {
  position: relative;
  z-index: 2;
  height: 200px;
  overflow: hidden;
  margin: 0px auto 0;
}

.fv__stamp-inner {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 900px;
  aspect-ratio: 1/1;
  transform: translateX(-50%);
}

.fv__stamp-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  height: auto;
  transform-origin: center;
  overflow: visible;
}
.fv__stamp-ring--outer {
  width: 900px;
  animation: fv-stamp-spin-cw 60s linear infinite;
}
.fv__stamp-ring--inner {
  width: 800px;
  animation: fv-stamp-spin-ccw 50s linear infinite;
}

.fv__stamp-text {
  font-family: "Harmattan", sans-serif;
  font-weight: bold;
}

.fv__stamp-ring--inner .fv__stamp-text {
  fill: #f09192;
  font-size: 46px;
}

.fv__stamp-ring--outer .fv__stamp-base {
  font-size: 60px;
  fill: #f09192;
  stroke: #f09192;
  stroke-width: 2px;
  stroke-linejoin: round;
}

.fv__stamp-ring--outer .fv__stamp-cut {
  font-size: 60px;
  fill: #000;
  stroke: none;
}

@keyframes fv-stamp-spin-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fv-stamp-spin-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fv__stamp-ring {
    animation: none;
  }
}
section {
  position: relative;
  background-color: #F2EEE9;
}
section .sub_h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: "Harmattan", sans-serif;
  font-size: 17.528px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
section .sub_h2::before, section .sub_h2::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
}
section .sub_h2::before {
  background: url("../images/brackets_left.svg") no-repeat center/contain;
}
section .sub_h2::after {
  background: url("../images/brackets_right.svg") no-repeat center/contain;
}
section h2 {
  font-size: 24px;
  color: #A2689B;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  margin: 10px 0 20px;
}
section .contents {
  width: 100%;
}
section .contents img {
  width: 100%;
}

.cta {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.cta__badge {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  z-index: 2;
  width: 75px;
  height: auto;
}

.cta__button {
  position: relative;
  overflow: hidden; /* 光をボタン内に収める */
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 10px 25px 10px 44px;
  border-radius: 30px;
  background: #F36B00;
  box-shadow: 0 4px 0 0 #A0531B;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta__button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #a0531b;
}

.cta__button-text {
  letter-spacing: 0.05em;
}

.cta__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* キラッと光る帯 */
.cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-25deg);
  animation: shine 3.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  18% {
    left: 125%;
  }
  100% {
    left: 125%; /* 18%〜100% は光らせず、間隔をあける */
  }
}
.about .inner {
  margin: 0 15px;
  padding: 40px 15px 30px;
  background: #fff;
}
.about h2 img {
  margin: 20px auto;
}
.about .about_txt__caption {
  font-size: 20px;
  font-weight: 700;
  color: #E17738;
  line-height: 34px;
  border-top: 1px solid #393533;
  border-bottom: 1px solid #393533;
  padding: 10px 0;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.about .about_txt p {
  font-size: 14px;
}
.about .about_txt p span {
  font-family: "Inter", sans-serif;
  color: #61AEA9;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
}
.about .about_txt p span small {
  font-size: 12px;
}
.about .img_wrap {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 30px auto 0;
}
.about .img_wrap:first-child {
  margin-top: 10px;
}
.about .about_img01_txt,
.about .about_img02_txt,
.about .about_img03_txt {
  position: relative;
  margin-bottom: 20px;
}
.about .about_img01_txt::after,
.about .about_img02_txt::after,
.about .about_img03_txt::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.about .about_img01_txt::after {
  width: 200px;
  height: 67px;
  background-image: url("../images/about_img01_txt.png");
}
.about .about_img02_txt::after {
  left: auto;
  right: -10px;
  width: 190px;
  height: 64px;
  background-image: url("../images/about_img02_txt.png");
}
.about .about_img02_txt::before {
  content: "";
  position: absolute;
  background: url("../images/logo_colman.svg") no-repeat center/contain;
  top: 10px;
  right: 10px;
  width: 80px;
  height: 50px;
}
.about .about_img03_txt::after {
  width: 220px;
  height: 65px;
  background-image: url("../images/about_img03_txt.png");
}

.plan .inner {
  margin: 0 15px;
  padding: 40px 0px 30px;
}
.plan .plan_txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  line-height: normal;
}
.plan .plan_txt span {
  background: linear-gradient(transparent 65%, #F7C5CB 65%);
}
.plan .img img {
  max-width: 275px;
  margin: 0 auto 10px;
  display: block;
}
.plan .plan01 {
  margin-bottom: 30px;
}
.plan .plan_detail {
  background: #fff;
  padding: 16px 15px;
  font-size: 15px;
}
.plan .plan_detail__caption {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.plan .plan_detail__caption p {
  margin: 0;
  font-size: 15px;
}
.plan .plan_detail__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.plan .plan_detail__price-row {
  display: flex;
  align-items: baseline;
  gap: 17px;
}
.plan .plan_detail__price-label {
  font-size: 16px;
  font-weight: 700;
}
.plan .plan_detail__price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan .plan_detail__price-num {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #b25722;
}
.plan .plan_detail__price-unit {
  font-size: 12px;
  font-weight: 700;
}
.plan .plan_detail__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.plan .plan_detail__card {
  background: #f2eee9;
  border-radius: 5px;
  padding: 15px;
}
.plan .plan_detail__card-title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dashed rgba(57, 53, 51, 0.6);
}
.plan .plan_detail__card-text p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

section.cta {
  padding: 10px 0px 10px;
}
section.cta .inner {
  padding: 0px 15px 10px;
}
section.cta .cta {
  margin-top: 10px;
}

.flow .inner {
  margin: 0 15px;
  padding: 40px 0 30px;
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.flow__item {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.flow__badge {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}
.flow__step-line {
  flex: 1;
  width: 8px;
  margin-bottom: -30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='24' viewBox='0 0 8 24'%3E%3Cline x1='4' y1='0' x2='4' y2='16' stroke='rgba(57,53,51,1)' stroke-width='0.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 8px 10px;
}
.flow__badge-bg {
  display: block;
  width: 100%;
  height: 100%;
}
.flow__badge-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 25.585px;
  line-height: 1;
  color: #f7f7f7;
}
.flow__body {
  flex: 1 1 auto;
  min-width: 0;
}
.flow__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  color: #393533;
}
.flow__text {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #393533;
}
.flow__notice {
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  background: #fff;
  border-radius: 4px;
}
.flow__notice-head {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: #E17738;
}
.flow__notice-icon {
  flex-shrink: 0;
  width: 25px;
  height: 20px;
}
.flow__notice-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.flow__notice-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 5px;
  padding: 3px 5px;
  background: #393533;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}
.flow__notice-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  color: #393533;
}

.slider_img {
  overflow: hidden;
  padding: 30px 0;
}

.slider_img__track {
  display: flex;
  width: max-content;
  animation: slider-img-scroll 20s linear infinite;
}

.slider_img__item {
  display: flex;
  flex-shrink: 0;
  margin-right: 10px;
}
.slider_img__item img {
  display: block;
  width: calc(min(390px, 100vw) * 4 / 2);
  height: auto;
}

@keyframes slider-img-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .slider_img__track {
    animation: none;
  }
}
.access__stamp {
  position: relative;
  z-index: 2;
  height: 200px;
  overflow: hidden;
  margin: 0px 0 -200px;
  background: linear-gradient(#F2EEE9 60px, transparent 60px);
}

.access__stamp-inner {
  position: absolute;
  left: 50%;
  top: 0;
  width: 900px;
  aspect-ratio: 1/1;
  transform: translateX(-50%);
}

.access__stamp-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  height: auto;
  transform-origin: center;
  overflow: visible;
}
.access__stamp-ring--outer {
  width: 900px;
  animation: fv-stamp-spin-cw 60s linear infinite;
}
.access__stamp-ring--inner {
  width: 800px;
  animation: fv-stamp-spin-ccw 50s linear infinite;
}

.access__stamp-text {
  font-family: "Harmattan", sans-serif;
  font-weight: bold;
}

.access__stamp-ring--inner .access__stamp-text {
  fill: #f09192;
  font-size: 46px;
}

.access__stamp-ring--outer .access__stamp-base {
  font-size: 60px;
  fill: #f09192;
  stroke: #f09192;
  stroke-width: 2px;
  stroke-linejoin: round;
}

.access__stamp-ring--outer .access__stamp-cut {
  font-size: 60px;
  fill: #000;
  stroke: none;
}

.access {
  margin-top: 120px;
}
.access .inner {
  margin: 0 15px;
  padding: 40px 15px 39px;
  background: #fff;
}
.access__map {
  margin-top: 20px;
  aspect-ratio: 330/244;
}
.access__map img {
  display: block;
}
.access__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.access__item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 0.6px solid rgba(225, 119, 56, 0.5);
}
.access__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.access__label {
  flex-shrink: 0;
  width: 80px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #E17738;
}
.access__value {
  flex: 1;
}
.access__value p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
}
.access__value a {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  text-decoration: underline;
}
.access__value .access__routes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.access__value .access__route {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #f2eee9;
  border-radius: 4px;
}
.access__value .access__route-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(225, 119, 56, 0.12);
  color: #E17738;
}
.access__value .access__route-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.access__value .access__route-title {
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  color: #E17738;
  margin: 0 0 4px;
}
.access__value .access__route-text {
  font-family: inherit;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.cancel .inner {
  padding: 50px 15px 0px;
}
.cancel__title {
  font-size: 23px;
  font-weight: 700;
  line-height: 34px;
  color: #E17738;
  text-align: center;
  border-top: 1px solid #393533;
  border-bottom: 1px solid #393533;
  padding: 10px 0;
  margin-bottom: 15px;
}
.cancel__tabs {
  display: flex;
}
.cancel__tab {
  flex: 1;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #f7f7f7;
}
.cancel__tab--food {
  background: #e88e58;
}
.cancel__tab--equipment {
  background: #aec07a;
}
.cancel__summary {
  display: flex;
  background: #f7f7f7;
  padding: 10px 11px;
}
.cancel__summary-item {
  flex: 1;
  text-align: center;
}
.cancel__summary-day {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #393533;
}
.cancel__summary-num {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 36px;
}
.cancel__summary-num small {
  font-size: 16px;
  font-weight: 700;
}
.cancel__summary-free {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.cancel__summary-item--food .cancel__summary-day,
.cancel__summary-item--food .cancel__summary-num,
.cancel__summary-item--food .cancel__summary-free {
  color: #E17738;
}
.cancel__summary-item--food .cancel__summary-day {
  color: #393533;
}
.cancel__summary-item--equipment .cancel__summary-day,
.cancel__summary-item--equipment .cancel__summary-num,
.cancel__summary-item--equipment .cancel__summary-free {
  color: #33aa84;
}
.cancel__summary-item--equipment .cancel__summary-day {
  color: #393533;
}
.cancel__group {
  margin-top: 15px;
}
.cancel__group-title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.cancel__group-title--food {
  color: #e88e58;
}
.cancel__group-title--equipment {
  color: #aec07a;
}
.cancel__table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.cancel__row-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 5px 10px;
  background: #f7f7f7;
  font-size: 16px;
  font-weight: 700;
  color: #393533;
}
.cancel__row-label span {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 22px;
}
.cancel__row-value {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  background: #f7f7f7;
  font-size: 16px;
  font-weight: 700;
  color: #393533;
}
.cancel__row-value span {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 22px;
}
.cancel__row-value--food {
  color: #E17738;
}
.cancel__row-value--equipment {
  color: #33aa84;
}
.cancel__note {
  margin: 30px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #393533;
  text-align: center;
}
.cancel__warning {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 9px 0;
  padding: 22px 20px;
  background: rgba(225, 119, 56, 0.13);
  border: 1px solid #E17738;
  border-radius: 10px;
}
.cancel__warning-head {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cancel__warning-icon {
  width: 20px;
  height: 20px;
}
.cancel__warning-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #393533;
}
.cancel__warning-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #393533;
}

.faq .inner {
  padding: 50px 0 30px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.faq__item {
  width: 100%;
}
.faq__item:not([open]) {
  padding: 0 15px 15px;
  border-bottom: 0.8px solid #fff;
}
.faq__item[open] {
  padding: 15px;
  background: #fff;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  cursor: pointer;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__label {
  flex-shrink: 0;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #393533;
}
.faq__question-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #393533;
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #393533;
  transform: translate(-50%, -50%);
}
.faq__icon::before {
  width: 15px;
  height: 0.8px;
}
.faq__icon::after {
  width: 0.8px;
  height: 15px;
}
.faq__item[open] .faq__icon::after {
  content: none;
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
}
.faq__answer-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 3px;
}
.faq__answer-text p {
  margin: 0;
}
.faq__link {
  color: inherit;
  text-decoration: underline;
}

.form__sec {
  padding: 50px 0 75px;
  position: relative;
  background-color: #fff;
}
.form__sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.form__title {
  position: relative;
  z-index: 3;
  width: 274px;
  height: auto;
  margin: 0 auto 32px auto;
}

.form__notice {
  position: relative;
  z-index: 3;
  margin: 24px 20px 0;
  padding: 20px;
  background-color: rgba(218, 189, 127, 0.2);
  border: 1px solid #dabd7f;
  border-radius: 5px;
}

.form__notice-deadline {
  padding: 10px 0;
  border-top: 1px solid rgba(57, 53, 51, 0.5);
  border-bottom: 1px solid rgba(57, 53, 51, 0.5);
  margin-bottom: 15px;
}

.form__notice-deadline-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.form__notice-list {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.form__notice-item {
  font-size: 14px;
}
.form__notice-item-highlight {
  color: #E17738;
}
.form__notice-item-num {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.form__notice-divider {
  height: 1px;
  margin-bottom: 16px;
  background-color: rgba(57, 53, 51, 0.5);
}

.form__notice-text {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form__notice-tel {
  display: block;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #E17738;
  text-decoration: none;
  line-height: 0.8;
}

.form__notice-hours {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: rgba(57, 53, 51, 0.68);
  font-family: "Inter", sans-serif;
}

.form__content {
  margin: 0 20px;
  position: relative;
  z-index: 3;
}

.contact-form {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact-form {
    margin-top: 32px;
  }
}
.contact-form__steps {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
}
.contact-form__steps-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 140px;
}
.contact-form__steps-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: rgba(57, 53, 51, 0.3);
}
.contact-form__steps-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(57, 53, 51, 0.15);
  color: rgba(57, 53, 51, 0.6);
  font-weight: 700;
  font-size: 14px;
}
.contact-form__steps-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(57, 53, 51, 0.6);
}
.contact-form__steps-item.is-active .contact-form__steps-num {
  background: #E17738;
  color: #fff;
}
.contact-form__steps-item.is-active .contact-form__steps-label {
  color: #393533;
  font-weight: 700;
}
.contact-form__group {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(57, 53, 51, 0.5);
  padding-bottom: 15px;
}
.contact-form__group:last-child {
  margin-bottom: initial;
}
@media screen and (max-width: 768px) {
  .contact-form__group {
    margin-bottom: 16px;
  }
}
.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
}
.contact-form__required {
  color: #E17738;
  border: 1.5px solid #E17738;
  border-radius: 50px;
  padding: 1px 8px;
  margin-left: 8px;
  font-size: 14px;
  line-height: 100%;
}
.contact-form__input {
  width: 100%;
  padding: 14px 12px 14px;
  background: rgba(232, 142, 88, 0.1);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
}
.contact-form__input:focus {
  border: 1px solid #dedede;
}
.contact-form__input::placeholder {
  color: #999;
  opacity: 1;
}
.contact-form__select {
  width: 100%;
  padding: 14px 12px 14px;
  background: rgba(232, 142, 88, 0.1);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  appearance: none;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  padding-right: 40px;
  filter: drop-shadow(0 0 10px rgba(31, 2, 2, 0.1));
}
.contact-form__select:focus {
  border: 1px solid #dedede;
}
.contact-form__hint {
  margin-top: 8px;
  font-size: 12px;
  color: #E17738;
}
.contact-form__textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px;
  background: rgba(232, 142, 88, 0.1);
  border-radius: 8px;
  font-size: 16px;
  resize: vertical;
  line-height: 1.5;
  filter: drop-shadow(0 0 10px rgba(31, 2, 2, 0.1));
}
.contact-form__textarea:focus {
  border: 1px solid #dedede;
}
.contact-form__textarea::placeholder {
  color: #999;
  opacity: 1;
}
.contact-form__privacy {
  text-align: center;
  margin-top: 24px;
}
.contact-form__privacy-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.contact-form__privacy-checkbox {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  accent-color: #E17738;
  cursor: pointer;
}
.contact-form__privacy-link {
  color: inherit;
  text-decoration: underline;
}
.contact-form__privacy-link:visited {
  color: inherit;
}
.contact-form__submit {
  text-align: center;
  margin-top: 40px;
}
.contact-form__button {
  background: #AEC07A;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 240px;
  border-radius: 36px;
  padding: 13px 0;
  border: 1px solid #AEC07A;
}
@media screen and (max-width: 768px) {
  .contact-form__button {
    min-width: 310px;
  }
}
.contact-form__button:disabled {
  background: rgba(174, 192, 122, 0.5);
  color: rgba(57, 53, 51, 0.6);
  position: relative;
  cursor: not-allowed;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .contact-form__button:hover:not(:disabled) {
    opacity: 0.8;
  }
}
.contact-form__button--outline {
  background: transparent;
  border: 1px solid rgba(57, 53, 51, 0.3);
  color: inherit;
}
.contact-form__step {
  display: none;
}
.contact-form__step.is-active {
  display: block;
}
.contact-form__people {
  display: flex;
  gap: 16px;
}
.contact-form__people-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form__people-label {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
}
.contact-form__people-input {
  text-align: right;
}
.contact-form__people-unit {
  flex-shrink: 0;
  font-size: 14px;
}
.contact-form__estimate {
  text-align: center;
  margin: 24px 0;
}
.contact-form__estimate-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-form__estimate-value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.contact-form__estimate-num {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #b25722;
}
.contact-form__estimate-unit {
  font-size: 14px;
  font-weight: 700;
}
.contact-form__submit--split {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact-form__submit--split {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.turnstile-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

footer {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 41px;
  background: #fff;
}
@media screen and (max-width: 599px) {
  footer {
    width: 100%;
    max-width: 100%;
  }
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 494px;
  height: 105px;
  border-radius: 50%;
  background-color: #e88e58;
  z-index: 0;
}
@media screen and (max-width: 599px) {
  footer::before {
    width: 610px;
  }
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0 auto;
  padding-bottom: 30px;
  background-color: #e88e58;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-bottom: 90px;
    max-width: 100%;
  }
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}
.footer__logo img {
  max-width: 100%;
  height: auto;
}

.footer__logo-title {
  font-family: "Harmattan", sans-serif;
  font-weight: 700;
  font-size: 31px;
  letter-spacing: 0.6px;
  line-height: normal;
  color: #f7f7f7;
}

.footer__logo-sub {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 2px;
  font-family: "Harmattan", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3px;
  color: #f7f7f7;
}
.footer__logo-sub .footer__logo-img {
  width: 37px;
  height: 10px;
}

.footer__upgrill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 70px;
  margin: 20px auto 0;
  border-radius: 50%;
}
.footer__upgrill img {
  width: 100px;
  height: auto;
}

.footer__text {
  margin-top: 20px;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 10px;
  font-weight: 400;
}

.sp-line__btn--fixed {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-line__btn--fixed {
    display: flex;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
    max-width: 390px;
    margin: 0 auto;
    padding: 0 15px;
  }
}
.sp-line__btn--fixed a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55px;
  background-color: #F36B00;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  gap: 15px;
}
.sp-line__btn--fixed a img {
  margin-right: 8px;
  width: 40px;
  height: 40px;
}
@media (hover: hover) and (pointer: fine) {
  .sp-line__btn--fixed a:hover {
    background-color: #d95c00;
  }
}
.sp-line__btn--fixed a p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
}
.sp-line__btn--fixed a::before {
  content: "ただ今 受付中！";
  content: "ただ今 受付中！";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 25px;
  background: #33AA84;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p--thanks {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 15px;
  box-sizing: border-box;
}

.p--thanks__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.p--thanks__inner img {
  max-width: 300px;
  padding: 45px 0 50px;
}

.p--thanks__wrap {
  background: #fff;
  padding: 30px 15px;
}

.p--thanks__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: #E17738;
  text-align: center;
  border-top: 1px solid #393533;
  border-bottom: 1px solid #393533;
  padding: 10px 0;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.p--thanks__text p {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}
.p--thanks__text p:last-child {
  margin-bottom: 30px;
}

.p--thanks__notice {
  border-radius: 10px;
  border: 1px solid #E17738;
  background: rgba(225, 119, 56, 0.13);
  padding: 22px 10px;
}
.p--thanks__notice p {
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.p--thanks__notice-contact .p--thanks__notice-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin-bottom: 5px;
}
.p--thanks__notice-contact .p--thanks__notice-tel {
  display: block;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #E17738;
  text-decoration: none;
  line-height: 0.8;
  margin-bottom: 5px;
}
.p--thanks__notice-contact .p--thanks__notice-hours {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: rgba(57, 53, 51, 0.68);
  font-family: "Inter", sans-serif;
}

.p--thanks__btn a {
  margin: 50px auto 0;
}

.p--thanks__btn-back {
  display: inline-block;
  padding: 16px 120px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  position: relative;
}
.p--thanks__btn-back::after {
  content: "";
  position: absolute;
  background: url("../images/arrow-white.svg") no-repeat;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .p--thanks__btn-back:hover {
    background-color: #555;
  }
}
@media (min-width: 768px) {
  .p--thanks__btn-back {
    padding: 18px 60px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .br_sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */