@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
}

.fade-in.visible {
  animation: fadeInTop 0.6s ease-out forwards;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  background-color: #fffef2;
  color: #333;
}

.no-scroll {
  overflow: hidden;
}

p {
  line-height: 1.6;
}

a {
  outline: none;
  caret-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  padding: 20px 4%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.4s ease-in-out;
  background-color: transparent;
  transform: translateY(0);
  background-color: #fffef2;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.header.hide {
  transform: translateY(-100%);
}
.header__logo a {
  display: block;
}
.header__logo img {
  height: 40px;
}
.header__pc {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header__pc-nav ul {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.header__pc-nav ul li {
  transition: opacity 0.5s ease;
}
.header__pc-nav ul li:hover {
  opacity: 0.3;
}
.header__pc-social {
  display: flex;
  gap: 16px;
}
.header__pc-social img {
  width: 30px;
  transition: opacity 0.4s ease;
}
.header__pc-social img:hover {
  opacity: 0.3;
}
.header__sp {
  display: none;
  align-items: center;
  gap: 24px;
}
.header__sp img {
  width: 24px;
  transition: opacity 0.5s ease;
}
.header__sp img:hover {
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .header {
    align-items: center;
    height: 80px;
  }
  .header__logo img {
    height: 30px;
  }
  .header__pc {
    display: none;
  }
  .header__sp {
    display: flex;
  }
}
@media (max-width: 440px) {
  .header {
    background-color: #fffef2;
  }
}

.hamburger {
  position: relative;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #333;
  transition: 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.sp-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100vw;
  height: 100vh;
  padding-top: 80px;
  background: #fffef2;
  transform: translateY(-100%);
  transition: all 0.6s ease-out;
  opacity: 0;
}
.sp-modal.active {
  transform: translateY(0);
  opacity: 1;
}
.sp-modal__nav {
  padding-top: 10px;
}
.sp-modal__nav ul {
  display: flex;
  flex-direction: column;
}
.sp-modal__nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  font-size: 18px;
}
.sp-modal__social {
  text-align: center;
  margin-bottom: 80px;
}
.sp-modal__social-icon {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}
.sp-modal__social-icon img {
  width: 30px;
  transition: opacity 0.4s ease;
}
.sp-modal__social-icon img:hover {
  opacity: 0.3;
}

.section-headline {
  margin-bottom: 60px;
  padding: 0 4%;
  font-family: "Spectral", serif;
  font-weight: 400;
  text-align: center;
}
.section-headline--left {
  text-align: left;
}
.section-headline__label {
  display: block;
  margin-bottom: 8px;
  color: #920b26;
  font-size: 14px;
  letter-spacing: 2px;
}
.section-headline__title {
  font-size: 30px;
}
.section-headline__text {
  margin-top: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
}
@media (max-width: 440px) {
  .section-headline {
    margin-bottom: 50px;
  }
}

.reservation-button {
  position: fixed;
  z-index: 9999;
  bottom: 2%;
  right: 4%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 32px;
  background-color: #920b26;
  border-radius: 9999px;
  text-align: center;
  color: #fffef2;
  text-decoration: none;
  transition: all ease 0.4s;
}
.reservation-button:hover {
  background-color: #ab3f4b;
}
.reservation-button .reservation-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.reservation-button .reservation-text .reservation-subtitle {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin: 0;
}
.reservation-button .reservation-text .reservation-cta {
  margin-top: 4px;
  margin: 0;
}

.topview {
  display: flex;
  margin-top: 100px;
  height: calc(100vh - 100px);
  position: relative;
}
.topview .open-text {
  position: absolute;
  bottom: 2%;
  left: 50%;
  padding: 28px;
  background-color: #920b26;
  border-radius: 9999px;
  text-align: center;
  transform: translateX(-50%);
  bottom: 60%;
  left: 80%;
  transform: translateX(0);
}
.topview .open-text p {
  color: #fffef2;
  font-size: 28px;
}
.topview__image {
  flex: 1 1 50%;
  background-image: url("images/topview/topview_pc_1.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.topview__content {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f5e8;
}
.topview__message {
  margin-bottom: 60px;
  animation: fadeInTop 1s ease-out 0.3s forwards;
  opacity: 0;
}
.topview__subtitle {
  margin-bottom: 20px;
  color: #920b26;
  font-family: "Spectral", serif;
  font-weight: 200;
  font-size: 20px;
}
.topview__headline {
  font-size: 40px;
  letter-spacing: 2px;
  line-height: 1;
}
.topview__headline--first {
  margin-bottom: 20px;
}
.topview__price {
  font-size: 40px;
  animation: fadeInTop 1s ease-out 0.5s forwards;
  opacity: 0;
}
.topview__pricevalue {
  margin-bottom: 10px;
  line-height: 1;
}
.topview span {
  color: #920b26;
  font-size: 80px;
}
.topview__pricenote {
  font-size: 10px;
  text-align: end;
}
@media (max-width: 1024px) {
  .topview {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
  .topview .open-text {
    bottom: 40%;
    left: 60%;
    transform: translateX(0);
  }
  .topview__image {
    flex: 1 1 100%;
    background-position: top center;
  }
  .topview__content {
    flex: 1 1 0%;
  }
  .topview__message {
    position: absolute;
    z-index: 10;
    bottom: 30%;
    left: 0;
    width: 400px;
    margin: 0;
  }
  .topview__subtitle {
    display: inline-block;
    padding: 4px 4%;
    margin-bottom: 14px;
    background-color: #f6f5e8;
  }
  .topview__headline {
    display: inline-block;
    padding: 4px 4%;
    background-color: #f6f5e8;
  }
  .topview__headline--first {
    margin-bottom: 14px;
  }
  .topview__price {
    position: absolute;
    z-index: 10;
    bottom: 10%;
    right: 0;
    padding: 4px 4%;
    background-color: #f6f5e8;
  }
}
@media (max-width: 440px) {
  .topview {
    height: 70vh;
    margin-top: 80px;
  }
  .topview .open-text {
    bottom: 60%;
    left: 60%;
    transform: translateX(0);
  }
  .topview .open-text p {
    font-size: 16px;
  }
  .topview__image {
    background-image: url("images//topview/topview_sp_1.jpg");
  }
  .topview__message {
    bottom: 18%;
    width: 300px;
  }
  .topview__subtitle {
    font-size: 16px;
  }
  .topview__headline {
    font-size: 32px;
  }
  .topview__price {
    bottom: -6%;
  }
  .topview__pricevalue {
    font-size: 32px;
  }
  .topview__pricevalue span {
    font-size: 64px;
  }
}

.worries {
  padding-top: 100px;
}
.worries__items {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.worries__item {
  box-sizing: border-box;
}
.worries__item img {
  width: 100%;
}
.worries__item span {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.6;
}
.worries__item p {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 1024px) {
  .worries__items {
    flex-wrap: wrap;
    gap: 40px 0px;
  }
  .worries__item {
    width: calc(50% - 20px);
    text-align: center;
  }
  .worries__item img {
    width: 80%;
  }
}
@media (max-width: 414px) {
  .worries__items {
    flex-direction: column;
    gap: 40px;
  }
  .worries__item {
    width: 100%;
  }
}

.solution__box {
  max-width: 700px;
  margin: 100px auto 0;
  padding: 0 4%;
}
.solution__top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.solution__top-text {
  width: 60%;
  color: #920b26;
  text-align: center;
}
.solution__top-text p {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 6px;
}
.solution__top-text p span {
  margin-right: 10px;
  font-family: "Spectral", serif;
  font-size: 60px;
  font-weight: 200;
  letter-spacing: 2px;
}
.solution__top-image {
  width: 40%;
}
.solution__top-image img {
  width: 100%;
}
.solution__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #920b26;
  border-radius: 50px;
}
.solution__bottom p {
  padding: 30px 0;
  color: #fffef2;
  font-size: 24px;
}
.solution__bottom p rt {
  font-size: 20px;
}
@media (max-width: 768px) {
  .solution__box {
    max-width: 500px;
  }
  .solution__top-text p {
    font-size: 26px;
  }
  .solution__top-text p span {
    font-size: 40px;
  }
  .solution__bottom p {
    font-size: 20px;
  }
}
@media (max-width: 414px) {
  .solution__box {
    max-width: 400px;
  }
  .solution__top-text p {
    font-size: 24px;
    letter-spacing: 2px;
  }
  .solution__top-text p span {
    margin-right: 2px;
    font-size: 34px;
    letter-spacing: 2px;
  }
  .solution__bottom p {
    padding: 20px 10px;
    font-size: 16px;
  }
}

.strengths {
  margin-top: 100px;
}
.strengths__items {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.strengths__item {
  display: flex;
}
.strengths__item--reverse {
  flex-direction: row-reverse;
}
.strengths__image {
  width: 66.6%;
}
.strengths__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.strengths__box {
  width: 33.3%;
  padding-left: 4%;
  padding-right: 4%;
}
.strengths__box-header {
  font-family: "Spectral", serif;
  font-weight: 400;
}
.strengths__box-label {
  display: block;
  margin-bottom: 20px;
  color: #920b26;
  font-size: 14px;
  letter-spacing: 2px;
}
.strengths__box-title {
  margin-bottom: 30px;
  font-size: 24px;
}
@media (max-width: 768px) {
  .strengths__items {
    gap: 80px;
  }
  .strengths__item {
    display: block;
  }
  .strengths__image {
    width: 100%;
    padding-left: 4%;
    margin-bottom: 30px;
  }
  .strengths__image--reverse {
    padding-left: 0;
    padding-right: 4%;
  }
  .strengths__box {
    width: 100%;
  }
  .strengths__box-title {
    margin-bottom: 30px;
    font-size: 26px;
  }
}

.voice {
  display: flex;
  margin-top: 100px;
  padding: 50px 0;
  background-color: #f5f3e4;
}
.voice__headline-text {
  margin-top: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
}
.voice__slider {
  padding-left: 4%;
}
.voice__items {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.voice__items::-webkit-scrollbar {
  display: none;
}
.voice__item {
  width: 370px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.voice__item--reverse {
  flex-direction: row-reverse;
}
.voice__image {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.voice__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.voice__box-title {
  font-family: "Spectral", serif;
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.4;
}
.voice__box-text {
  margin-bottom: 20px;
}
.voice .scrollbar {
  height: 2px;
  background: #cccbc2;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.voice .scrollbar__track {
  width: 100%;
  height: 100%;
  position: relative;
}
.voice .scrollbar__thumb {
  height: 100%;
  width: 100px;
  background: #242424;
  border-radius: 2px;
  transition: width 0.2s ease-out;
}
@media (max-width: 1280px) {
  .voice__items {
    padding-right: 4%;
  }
}
@media (max-width: 768px) {
  .voice {
    flex-direction: column;
    gap: 0;
  }
  .voice__item {
    width: 280px;
  }
  .voice__box-title {
    font-size: 26px;
  }
}

.plan {
  max-width: 1280px;
  margin: 100px auto 0;
}
.plan .plan__items {
  padding: 0 4%;
}
.plan .plan__campaign {
  padding: 40px 20px;
  background-color: #920b26;
  color: #fffef2;
  text-align: center;
}
.plan .plan__campaign-label {
  margin-bottom: 12px;
}
.plan .plan__campaign-title {
  margin-bottom: 30px;
  font-size: 2rem;
}
.plan .plan__campaign-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.plan .plan__campaign-oldprice {
  margin: 0 8px;
}
.plan .plan__campaign-oldprice span {
  font-size: 1.6rem;
  text-decoration: line-through;
  opacity: 0.6;
}
.plan .plan__campaign-arrow {
  font-size: 1.2rem;
  margin: 0 8px;
}
.plan .plan__campaign-newprice {
  font-size: 3rem;
  font-weight: 500;
}
.plan .ticket__button {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  padding: 16px;
  border: 1px solid #920b26;
  border-radius: 4px;
  background-color: rgba(246, 232, 232, 0.8);
  color: #920b26;
  text-align: center;
  transition: all 0.2s ease;
}
.plan .ticket__button strong {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.plan .ticket__button span {
  margin: 0 auto;
  padding: 6px 14px;
  color: #fff;
  background: #920b26;
  border-radius: 16px;
  font-weight: 500;
}
.plan .ticket__button:hover {
  opacity: 0.6;
}
.plan .plan__intro-text {
  margin-top: 40px;
  padding: 4%;
  text-align: center;
}
.plan .plan__summary,
.plan .plan__benefit {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 4%;
}
.plan .plan__benefit  {
  margin-bottom: 80px;
}
.plan .plan__summary-item,
.plan .plan__benefit-item {
  flex: 1;
}
.plan .plan__summary-title,
.plan .plan__benefit-title {
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #333;
  font-size: 1.2rem;
  font-weight: 600;
}
.plan .plan__summary-desc,
.plan .plan__benefit-desc {
  font-size: 1rem;
  margin-bottom: 20px;
}
.plan .plan__summary-tagline,
.plan .plan__benefit-tagline {
  font-size: 0.95rem;
}
.plan .plan__summary-tagline span,
.plan .plan__benefit-tagline span {
  color: #920b26;
}
@media (min-width: 768px) {
  .plan .plan__summary,
  .plan .plan__benefit {
    flex-direction: row;
  }
}
.plan .plan__table-wrapper {
  overflow-x: auto;
}
.plan .plan__table {
  width: 100%;
  min-width: 1000px;
  border-collapse: collapse;
  table-layout: fixed;
}
.plan .plan__table th,
.plan .plan__table td {
  height: 80px;
  padding: 10px;
  background-color: rgba(51, 51, 51, 0.0509803922);
  font-weight: 300;
  text-align: center;
  vertical-align: middle;
  border-left: 3px solid #fffef2;
  border-right: 3px solid #fffef2;
}
.plan .plan__table thead tr {
  border-bottom: 3px solid #fffef2;
  color: #fffef2;
}
.plan .plan__table thead tr th {
  background-color: #333;
}
.plan .plan__table thead tr th:first-child {
  background-color: #fffef2;
}
.plan .plan__table thead tr:nth-of-type(2) th:nth-of-type(3) {
  background-color: #920b26;
  color: #fffef2;
}
.plan .plan__table tbody tr:first-child td {
  font-size: 1.2rem;
  font-weight: 600;
}
.plan .plan__table tbody tr td:nth-of-type(2) {
  background-color: #920b26;
  color: #fffef2;
}
.plan .plan__annotation {
  margin-top: 40px;
  padding: 0 4%;
  font-size: 10px;
}

.trainer {
  margin-top: 100px;
}
.trainer__items {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.trainer__item {
  display: flex;
}
.trainer__item--reverse {
  flex-direction: row-reverse;
}
.trainer__item:nth-child(2) {
  margin-top: 50px;
}
.trainer__image {
  width: 50%;
  margin-right: -10%;
}
.trainer__image--reverse {
  margin-right: 0%;
  margin-left: -10%;
}
.trainer__image img {
  width: 100%;
}
.trainer__box {
  z-index: 1;
  width: 60%;
  margin-top: 30px;
}
.trainer__name {
  display: flex;
  align-items: end;
  padding: 10px;
  background-color: #920b26;
  color: #fffef2;
}
.trainer__name-kanji {
  margin-right: 12px;
  font-size: 24px;
}
.trainer__name-roman {
  font-size: 14px;
}
.trainer__title {
  margin-top: 40px;
  font-family: "Spectral", serif;
  font-size: 24px;
}
.trainer__text {
  margin-top: 20px;
}
.trainer__data {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 10px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  margin-top: 20px;
}
.trainer__data dt {
  line-height: 1.6;
  padding-right: 16px;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
}
.trainer__data dd {
  line-height: 1.6;
}
@media (max-width: 768px) {
  .trainer__item {
    flex-direction: column;
  }
  .trainer__image {
    width: 100%;
    margin: 0;
  }
  .trainer__box {
    width: 100%;
  }
  .trainer__data {
    display: grid;
    grid-template-columns: 1fr;
  }
  .trainer__data dt {
    padding-right: 0;
    padding-bottom: 4px;
    border-right: none;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  }
  .trainer__data dd {
    line-height: 1.6;
  }
  .trainer__data dt {
    margin-top: 10px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  }
  .trainer__data dd {
    border: none;
  }
}

.faq {
  margin-top: 100px;
}
.faq__items {
  margin: 0 auto;
  padding: 0 4%;
  max-width: 1280px;
}
.faq__item {
  margin-bottom: 10px;
}
.faq__item.active .faq__answer {
  margin: 16px 0;
  opacity: 1;
}
.faq__item.active .faq__question::after {
  opacity: 0;
}
.faq__question {
  position: relative;
  width: 100%;
  padding: 16px 48px 16px 16px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  cursor: pointer;
}
.faq__question span {
  margin-right: 8px;
  color: #920b26;
  font-weight: 400;
}
.faq__question::after {
  content: "";
  position: absolute;
  right: 1.75em;
  top: 50%;
  width: 1px;
  height: 16px;
  background-color: #920b26;
  transform: translateY(-50%);
  transition: opacity 0.4s ease;
}
.faq__question:before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: #920b26;
  transform: translateY(-50%);
}
.faq__answer {
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease-in, margin 0.4s ease-in, opacity 0.4s ease;
}
.faq__answer span {
  margin-right: 8px;
  color: #920b26;
  font-weight: 400;
}

.contact {
  margin-top: 100px;
  padding: 50px 0;
  background-color: #f5f3e4;
}
.contact__form {
  margin: 0 auto;
  padding: 0 4%;
  max-width: 1280px;
}
.contact__field {
  margin-bottom: 30px;
}
.contact__label {
  display: block;
  margin-bottom: 8px;
}
.contact__input {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid rgba(51, 51, 51, 0.2);
  font-weight: 400;
  cursor: pointer;
}
.contact__input::-moz-placeholder {
  font-size: 14px;
  opacity: 0.4;
}
.contact__input::placeholder {
  font-size: 14px;
  opacity: 0.4;
}
.contact__input:focus {
  outline: 1px solid #920b26;
}
.contact__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__checkbox a {
  text-decoration: underline;
}
.contact__submit {
  width: 100%;
  padding: 16px;
  background-color: #333;
  color: #fffef2;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact__submit:hover {
  opacity: 0.8;
}
.contact__attention {
  font-size: 14px;
  margin-top: 8px;
}
.contact select {
  background-image: url("images/icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: right 16px center;
}
.contact textarea {
  resize: none;
  overflow: auto;
}
.contact input[type="checkbox"] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  vertical-align: middle;
}
.contact input[type="checkbox"]:checked {
  background-color: transparent;
  position: relative;
}
.contact input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.access {
  margin: 100px 0;
}
.access__items {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.access__item {
  display: flex;
  gap: 40px;
}
.access__box {
  flex: 1;
}
.access__box-name img {
  width: 300px;
}
.access__box-store {
  margin-top: 12px;
  font-size: 1.4rem;
}
.access__box-info {
  margin-top: 40px;
}
.access__box-tel {
  font-size: 30px;
  font-weight: 400;
}
.access__box-address {
  margin-top: 40px;
}
.access__map {
  flex: 1;
}
.access__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.access__tiktok {
  display: flex;
  gap: 40px;
  margin-top: 100px;
}
.access__tiktok-box {
  flex: 1;
  text-align: center;
}
.access__tiktok-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .access__item {
    flex-direction: column;
  }
  .access__tiktok {
    flex-direction: column;
  }
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  height: calc(100vh - 50px);
  margin: 0 auto;
  padding: 0 4%;
  text-align: center;
}
.thanks__title {
  font-size: 30px;
  color: #920b26;
}
.thanks__text {
  margin-top: 40px;
}
.thanks__btn {
  display: inline-block;
  margin-top: 40px;
  width: 300px;
  padding: 16px;
  background-color: #920b26;
  color: #fffef2;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.thanks__btn:hover {
  opacity: 0.8;
}

.privacy {
  max-width: 1280px;
  margin: 150px auto;
  padding: 0 4%;
}
.privacy__item {
  margin-top: 40px;
}
.privacy__title {
  font-size: 30px;
  color: #920b26;
}
.privacy__text {
  margin-top: 20px;
}

footer {
  position: relative;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: #333;
  color: #fffef2;
  text-align: center;
} /*# sourceMappingURL=style.css.map */