@charset "UTF-8";
/*======================================
    size
======================================*/
/*======================================
    font
======================================*/
/*======================================
    color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 10.0266666667px;
  }
}
@media screen and (max-width: 1199px) {
  html {
    font-size: min(2.1333333333vw, 1rem);
  }
}

body {
  background-color: #fff;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media screen and (max-width: 1199px) {
  br.is-pc {
    display: none;
  }
}

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

/*======================================
    layout
======================================*/
.container {
  display: grid;
  column-gap: 1.25rem;
}

.contents {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  max-width: 46.875rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .contents {
    max-width: 46.875rem;
  }
}

.pc_contents {
  grid-column: 1/2;
  grid-row: 1/2;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 47em 1fr;
  column-gap: 2em;
  padding: 0 1.25rem;
}
@media screen and (max-width: 1199px) {
  .pc_contents {
    display: none;
  }
}

.bg_pc {
  grid-column: 1/2;
  grid-row: 1/2;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: -1;
  opacity: 0.2;
}
.bg_pc img {
  height: 100%;
  object-fit: cover;
}

/*======================================
    header
======================================*/
.header {
  display: flex;
  align-items: center;
  height: 7.375rem;
  padding: 0 1.875rem 0 1rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}

.h_logo {
  display: flex;
  align-items: flex-end;
  font-size: 1.75rem;
  font-weight: 700;
  color: #023c77;
  letter-spacing: 0.05em;
  column-gap: 0.625rem;
}
.h_logo .logo {
  display: block;
  max-width: 14.875rem;
}
.h_logo .name {
  display: block;
  padding-bottom: 0.625rem;
}

.h_text {
  max-width: 24.5rem;
  margin-left: 0.625rem;
  margin-top: 0.25rem;
}

.h_button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-weight: 700;
  color: #023c77;
  font-family: inherit;
  border: 0.1875rem solid #ff0000;
  background-color: #ffdc00;
  border-radius: 62.5rem;
  box-shadow: none;
  font-size: 2.25rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.25rem;
  height: 4rem;
  text-align: center;
  transition: filter 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
@media screen and (max-width: 1199px) {
  .h_button.active {
    background-color: unset;
    background: url(../img/icon_close.svg) no-repeat center/contain;
    border: none;
    color: rgba(255, 255, 255, 0);
  }
}
.h_button:hover {
  filter: brightness(1.1);
}

/*======================================
    CTA
======================================*/
.cta {
  padding: 1.875rem 0;
}

.cta_text {
  width: 88.8%;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-2%);
}

.cta_button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  width: 86%;
  margin: 2.625rem auto 0;
  background-color: #ffd200;
  border: 0.3125rem solid #ff0000;
  border-radius: 62.5rem;
  height: 10.375rem;
  padding-bottom: 0.625rem;
  position: relative;
  transition: filter 0.3s ease;
  box-shadow: 0 0.625rem 0.875rem rgba(0, 0, 0, 0.4);
  color: #023c77;
}
.cta_button:hover, .cta_button:focus {
  filter: brightness(1.1);
}
.cta_button:hover::before, .cta_button:focus::before {
  transform: translate(0.1em, -50%) rotate(-45deg);
}
.cta_button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 1.125rem;
  aspect-ratio: 1/1;
  border-bottom: 0.1875rem solid #000;
  border-right: 0.1875rem solid #000;
  transition: transform 0.3s ease;
}
.cta_button .sm {
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  line-height: 1.6071428571;
}
.cta_button .md {
  font-size: 2.5rem;
}

.cta_note {
  text-align: center;
  font-weight: 700;
  line-height: 1.75;
  font-size: 2.125rem;
  margin-top: 1rem;
  font-feature-settings: "palt";
}

.cta_kome {
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: -0.01em;
  line-height: 1.6;
  width: fit-content;
  margin: 0.625rem auto 0;
  font-size: 1.0625rem;
}
@media screen and (max-width: 1199px) {
  .cta_kome {
    font-size: 1.0625rem;
    margin-top: 1.25rem;
  }
}
.cta_kome.-modal {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}

/*======================================
    fv
======================================*/
.fv {
  color: #023c77;
  background-color: #f4f5f1;
  padding-top: 1.875rem;
  overflow-x: clip;
}

.fv_lead {
  text-align: center;
  font-size: 3.3125rem;
  font-weight: 700;
  letter-spacing: 0.145em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.fv_lead::before, .fv_lead::after {
  content: "";
  position: absolute;
  top: 50%;
  background: url(../img/fv_lines.svg) no-repeat center/contain;
  aspect-ratio: 94/40;
  width: 5.875rem;
}
.fv_lead::before {
  left: 0;
  transform: translate(-110%, -50%) scale(-1, 1);
}
.fv_lead::after {
  right: 0;
  transform: translate(110%, -50%);
}
.fv_lead span {
  font-size: 2.3125rem;
}

.fv_title {
  text-align: center;
  font-size: 6.875rem;
  font-weight: 700;
  line-height: 1.1090909091;
  letter-spacing: -0.05em;
  margin-top: 0.625rem;
}
.fv_title span {
  font-size: 4.5rem;
}

.fv_target {
  text-align: center;
  font-size: 1.625rem;
  font-feature-settings: "palt";
  color: #000;
  font-weight: 700;
  line-height: 1.2307692308;
  margin-top: 0.625rem;
}

.fv_course {
  display: grid;
}

.fv_course_img {
  grid-column: 1/2;
  grid-row: 1/2;
  height: 30.375rem;
  position: relative;
  z-index: 2;
}
.fv_course_img img {
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.fv_course_texts {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 30.375rem;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #023c77;
  margin-left: auto;
  transform: translate(5%, 2%);
}

.fv_course_text {
  font-weight: 700;
  letter-spacing: 0.045em;
  color: #fff;
  line-height: 1.2;
  font-size: 2.8125rem;
  text-align: center;
  font-feature-settings: "palt";
}
.fv_course_text .lg {
  display: block;
  position: relative;
  padding-bottom: 0.625rem;
  width: 15.375rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.625rem;
}
.fv_course_text .lg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.375rem;
  background-color: #ff0000;
}

.fv_course_features {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
  margin-top: 1.25rem;
}
.fv_course_features li {
  width: 9.5rem;
  aspect-ratio: 1/1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1315789474;
  color: #023c77;
  background-color: #ffdc00;
  border-radius: 50%;
}

.fv_features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.9375rem;
  margin: 1.875rem auto 0;
  width: 92%;
}

.fv_feature_dl dt {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: #000;
}
.fv_feature_dl dd {
  margin-top: 0.625rem;
}

.approach {
  background-color: #ceecfa;
  position: relative;
  padding-top: 5.75rem;
  margin-top: 3.875rem;
  overflow: hidden;
  padding-bottom: 6.875rem;
}
.approach::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.875rem;
  background-color: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.approach_lead {
  font-size: 2.875rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2173913043;
  text-align: center;
  font-feature-settings: "palt";
}
.approach_lead .dot {
  display: inline-block;
  position: relative;
  padding-top: 0.15em;
}
.approach_lead .dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.174em;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
}
.approach_lead .sm {
  font-size: 2.125rem;
}
.approach_lead .lg {
  font-size: 3.875rem;
  color: #023c77;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 0.625rem;
}
.approach_lead .md {
  font-size: 2.8125rem;
  letter-spacing: normal;
}
.approach_lead .half {
  display: inline-block;
  width: 0.5em;
  transform: translateX(-0.25em);
}

.approach_comment {
  color: #ffdc00;
  background-color: #023c77;
  width: 86.7%;
  margin: 1.25rem auto 0;
  position: relative;
  font-size: 3.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.875rem;
  padding: 0.5em;
}
.approach_comment::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 80%);
  width: 9.625rem;
  aspect-ratio: 154/70;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #023c77;
}

.approach_img {
  transform: translateX(-2%);
  margin-top: 0.375rem;
}

.approach_try {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin-top: 1.25rem;
  font-feature-settings: "palt";
}
.approach_try .red {
  color: #ff0000;
  font-size: 3.125rem;
}
.approach_try .line {
  display: inline-block;
  font-size: 3.875rem;
  border-bottom: 0.1875rem solid #ff0000;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
}
.approach_try .line .sm {
  font-size: 2.375rem;
}
.approach_try .line .ls {
  letter-spacing: -0.075em;
}

.approach_course {
  background-color: #fff;
  width: 90.13%;
  margin: 2.25rem auto 0;
  padding: 2.375rem 2.25rem 0;
}

.approach_course_title {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.075em;
  color: #023c77;
  background-color: #fff4cb;
  line-height: 2.05;
}

.approach_course_img {
  margin: 0 -1.25rem;
}

.solve_title {
  text-align: center;
  color: #ffdc00;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  line-height: 1.4;
  font-size: 3.125rem;
  font-weight: 700;
  background-color: #023c77;
  padding: 1.875rem 1.25rem 2.5rem;
  min-height: 11.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solve_text {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7692307692;
  font-feature-settings: "palt";
  width: 86.67%;
  margin: 2.5rem auto 0;
  text-align: justify;
  letter-spacing: -0.05em;
  padding-bottom: 4.75rem;
  position: relative;
}
.solve_text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 166/47;
  width: 10.375rem;
  background-color: #ffd65f;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.solve_recovery {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  line-height: 1.4642857143;
  margin-top: 1.25rem;
}
.solve_recovery .sm {
  font-size: 2.25rem;
}
.solve_recovery .line {
  color: #023c77;
  display: inline-block;
  position: relative;
}
.solve_recovery .line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: #000;
}

.solve_history {
  font-size: 2.4375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.5897435897;
  text-align: center;
  margin-top: 2.1875rem;
  font-feature-settings: "palt";
}
.solve_history .lg {
  font-size: 3.125rem;
}
.solve_history .md {
  font-size: 2.9375rem;
  letter-spacing: -0.04em;
}
.solve_history .color {
  color: #023c77;
}

.video {
  margin-top: 4.375rem;
  aspect-ratio: 750/462;
}
.video video {
  aspect-ratio: 750/462;
  width: 100%;
}

.point_lists {
  margin-top: 5.5rem;
}

.point_list:nth-child(n+2) {
  margin-top: 4.375rem;
}

.point_list_head {
  background-color: #023c77;
  color: #fff;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "palt";
  height: 4.375rem;
  padding: 0.25em 1.5em;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 62.5rem;
}

.point_list_title {
  text-align: center;
  font-weight: 700;
  line-height: 1.4523809524;
  letter-spacing: 0.06em;
  font-size: 2.625rem;
  color: #023c77;
  font-feature-settings: "palt";
  margin-top: 1.25rem;
}

.point_list_img {
  margin-left: auto;
  margin-right: auto;
}
.point_list_img.-img1 {
  width: 86.67%;
  margin-top: 0.625rem;
}
.point_list_img.-img2 {
  width: 86.867%;
}
.point_list_img.-img3 {
  width: 80.53%;
}
.point_list_img.-img4 {
  width: 80%;
}

.point_cta {
  margin-top: 1.875rem;
}

.features {
  margin-top: 2.5rem;
}
.features .point_list_head {
  font-size: 2rem;
  padding: 0.25em 1em;
}

.feature_list_img {
  margin-top: 1.875rem;
}
.feature_list_text {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.7692307692;
  font-feature-settings: "palt";
  text-align: justify;
  width: 83.73%;
  margin: 1.875rem auto 0;
}

.voice {
  margin-top: 6.25rem;
}

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

.voice_inner {
  width: 83.73%;
  margin-left: auto;
  margin-right: auto;
}

.voice_lead {
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 1.3513513514;
  font-feature-settings: "palt";
  letter-spacing: -0.005em;
  margin-top: 3.75rem;
}

.voice_img {
  margin-top: 1.25rem;
}

.voice_text {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.7692307692;
  text-align: justify;
  margin-top: 1.875rem;
}
.voice_text span.note {
  font-size: 1.3125rem;
}

/* Swiper Pagination */
.voice-pagination {
  position: static;
  margin-top: 4.375rem;
  margin-bottom: 3.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.375rem;
}

.voice-pagination .swiper-pagination-bullet {
  width: 1.125rem;
  height: 1.125rem;
  background-color: #000;
  opacity: 0.5;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: block;
  margin: 0 !important;
}

.voice-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 1;
}

.doctor {
  overflow: hidden;
}

.doctor_title {
  transform: translateX(2%);
}

.doctor_lead {
  width: 93.33%;
  margin-left: auto;
  margin-right: auto;
}

.doctor_recommend {
  margin-top: 1.25rem;
}

.branch {
  margin-top: 2.5rem;
}

.branch_lists {
  width: 89.867%;
  margin: 1.875rem auto 0;
}

.branch_list:nth-child(n+2) {
  margin-top: 6.25rem;
}

.branch_list_head {
  display: flex;
  align-items: center;
  background-color: #023c77;
  color: #fff;
  padding: 0.625rem 1.5rem 0.625rem 3.75rem;
  position: relative;
  transition: filter 0.3s ease;
  min-height: 6.125rem;
  column-gap: 1.25rem;
}
.branch_list_head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.75rem;
  height: 100%;
  background-color: #ffd65f;
}
.branch_list_head:hover {
  filter: brightness(1.1);
}
.branch_list_head:hover .branch_list_details::before {
  transform: translate(0.1em, -50%) rotate(-45deg);
}

.branch_list_title {
  font-size: 2.5625rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-feature-settings: "palt";
  font-weight: 700;
}

.branch_list_details {
  margin-left: auto;
  font-weight: 700;
  font-size: 1.8125rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  padding-right: 1.25rem;
  position: relative;
}
.branch_list_details::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  aspect-ratio: 1/1;
  width: 0.875rem;
  border-bottom: 0.1875rem solid #fff;
  border-right: 0.1875rem solid #fff;
  transition: transform 0.3s ease;
}

.branch_list_map {
  aspect-ratio: 674/348;
}
.branch_list_map iframe {
  width: 100%;
  height: 100%;
}

.branch_list_web {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #023c77;
  background-color: #ffdc00;
  border: 0.25rem solid #ff0000;
  box-shadow: 0 0.625rem 0.875rem rgba(0, 0, 0, 0.4);
  border-radius: 625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  margin-top: 2rem;
  position: relative;
  transition: filter 0.3s ease;
}
.branch_list_web:hover {
  filter: brightness(1.1);
}
.branch_list_web:hover::before {
  transform: translate(0.1em, -50%) rotate(-45deg);
}
.branch_list_web::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.75rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 1rem;
  aspect-ratio: 1/1;
  border-bottom: 0.1875rem solid #000;
  border-right: 0.1875rem solid #000;
  transition: transform 0.3s ease;
}
.branch_list_web .lg {
  font-size: 3.0625rem;
  display: inline-block;
}

.branch_lint_tel {
  display: block;
  width: fit-content;
  margin: 3.125rem auto 0;
  text-align: center;
  font-weight: 700;
  color: #023c77;
  font-size: 3.3125rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  line-height: 1.25;
  border-bottom: 0.25rem solid #023c77;
}

.pc_header {
  width: 100%;
  max-width: 27.8em;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.pc_header_shop {
  font-size: 2.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #023c77;
  margin-top: 0.5em;
}

.pc_header_lead {
  max-width: 19.6em;
  margin-top: 2em;
}

.pc_header_lists {
  margin-top: 4em;
}

.pc_header_list {
  border-bottom: 0.0625rem solid #023c77;
}
.pc_header_list:first-child {
  border-top: 0.0625rem solid #023c77;
}
.pc_header_list a {
  display: flex;
  align-items: center;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  padding: 0.5em 2em 0.5em 0;
  min-height: 4.3em;
  color: #023c77;
  font-feature-settings: "palt";
  transition: opacity 0.3s ease;
}
.pc_header_list a:hover {
  opacity: 0.7;
}
.pc_header_list a:hover::before {
  transform: translateY(-20%) rotate(45deg);
}
.pc_header_list a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(45deg);
  aspect-ratio: 1/1;
  width: 0.35em;
  border-bottom: 0.0625rem solid #023c77;
  border-right: 0.0625rem solid #023c77;
  transition: transform 0.3s ease;
}

.pc_cta {
  grid-column: 3/4;
  grid-row: 1/2;
  width: 100%;
  max-width: 36.2em;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.pc_cta .cta_button {
  font-size: 2.6em;
  width: 100%;
  height: 3.46em;
  padding-bottom: 0.2em;
  margin-top: 0.77em;
}
.pc_cta .cta_button::before {
  width: 0.38em;
  right: 0.77em;
}
.pc_cta .cta_button .sm {
  font-size: 0.615em;
}
.pc_cta .cta_button .md {
  font-size: 0.73em;
}
.pc_cta .cta_note {
  font-size: 1.9em;
  margin-top: 0.5em;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  padding: 3.75rem;
  overflow: auto;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
  background-color: #ceecfa;
}
@media screen and (max-width: 1199px) {
  .modal {
    height: calc(100% - 7.375rem);
    top: 7.375rem;
    padding: 3.75rem 5.375rem;
    max-width: 46.875rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
  }
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal.active .sp_modal_close {
  visibility: visible;
  opacity: 1;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal_body {
  display: inline-block;
  vertical-align: middle;
  width: 98%;
}

.modal_inner {
  max-width: 118.8em;
  margin-left: auto;
  margin-right: auto;
}

.modal_close {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: unset;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 10em;
  margin-left: auto;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  .modal_close {
    display: none;
  }
}

.modal_contents {
  text-align: left;
}

.modal_branches {
  margin-top: 10em;
}
@media screen and (max-width: 1199px) {
  .modal_branches {
    margin-top: 0;
  }
}

.modal_branch:nth-child(n+2) {
  margin-top: 3.75rem;
}

.modal_branch_area {
  position: relative;
  z-index: 1;
}
.modal_branch_area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: -1;
}
.modal_branch_area span {
  display: inline-block;
  background-color: #ceecfa;
  padding-right: 0.5em;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.modal_branch_lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.2em, 1fr));
  column-gap: 3.6em;
  row-gap: 3em;
  margin-top: 2em;
}

.modal_branch_list_name {
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  padding-left: 1em;
  position: relative;
}
.modal_branch_list_name::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.modal_branch_button {
  display: flex;
  align-items: center;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.03em;
  height: 2.5em;
  border-radius: 5em;
  background-color: #ffdc00;
  border: 0.09375em solid #ff0000;
  padding: 0.25em 1em;
  transition: filter 0.3s ease;
  position: relative;
  box-shadow: 0 0.1875em 0.3125em rgba(0, 0, 0, 0.4);
  margin-top: 0.8em;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.modal_branch_button:hover {
  filter: brightness(1.1);
}
.modal_branch_button:hover::before {
  transform: translate(0.15em, -50%) rotate(-45deg);
}
.modal_branch_button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  aspect-ratio: 1/1;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 0.125em solid #000;
  border-right: 0.125em solid #000;
  width: 0.4em;
  transition: transform 0.3s ease;
}
.modal_branch_button.-web {
  color: #023c77;
}
.modal_branch_button span.lg {
  font-size: 1.0625em;
}

.branch_details {
  margin-top: 3.75rem;
}

.branch_detail {
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.4473684211;
  font-feature-settings: "palt";
  color: #023c77;
  border-bottom: 1px solid #023c77;
  padding: 1.625rem 0;
}
.branch_detail a {
  font-weight: inherit;
}
.branch_detail:first-child {
  border-top: 1px solid #023c77;
}

.greeting {
  width: 89.87%;
  margin: 5rem auto 0;
}

.greeting_title {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 2.625rem;
  font-feature-settings: "palt";
  color: #023c77;
}

.greeting_img {
  aspect-ratio: 1/1;
  max-width: 27.625rem;
  margin: 1.875rem auto 3.125rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: gray;
}
.greeting_img img {
  height: 100%;
  object-fit: cover;
}

.greeting_name {
  color: #023c77;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.7142857143;
  letter-spacing: 0.06em;
}
.greeting_name .name {
  font-size: 3.125rem;
  letter-spacing: 0.06em;
}
.greeting_name .en {
  font-size: 2.25rem;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-left: 0.5em;
}

.greeting_intro {
  padding: 1.25rem 0;
  border-top: 1px solid #023c77;
  border-bottom: 1px solid #023c77;
  margin: 1.875rem 0;
}

.greeting_intro_list dt, .greeting_intro_list dd {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7692307692;
  font-feature-settings: "palt";
}
.greeting_intro_list dt {
  padding-left: 1em;
  position: relative;
}
.greeting_intro_list dt::before {
  content: "◆";
  position: absolute;
  top: 0;
  left: 0;
}

.greeting_text {
  font-weight: 700;
  text-align: justify;
  font-feature-settings: "palt";
  font-size: 1.625rem;
  line-height: 1.7692307692;
}

.modal_shop_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1199px) {
  .modal_shop_wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.modal_shop_meta,
.modal_shop_buttons {
  align-self: start;
}

.modal_shop_meta {
  margin-left: 0;
}
@media screen and (max-width: 1199px) {
  .modal_shop_meta {
    display: none;
  }
}

.modal_shop_details {
  margin-left: auto;
  margin-right: auto;
  color: #023c77;
}
@media screen and (min-width: 1200px) {
  .modal_shop_details {
    max-width: 33.6em;
  }
}
@media screen and (max-width: 1199px) {
  .modal_shop_details {
    width: 100%;
    margin-top: 7.5rem;
  }
}

.modal_shop_details_title {
  font-size: 2.8em;
  font-weight: 700;
  letter-spacing: 0.045em;
  font-feature-settings: "palt";
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .modal_shop_details_title {
    font-size: 3.125rem;
  }
}

.modal_shop_detail {
  margin-top: 2em;
}
.modal_shop_detail li {
  font-weight: 700;
  line-height: 1.6875;
  font-size: 1.6em;
  font-feature-settings: "palt";
  border-bottom: 1px solid #023c77;
  padding: 0.625em 0;
}
.modal_shop_detail li a {
  font-weight: inherit;
}
.modal_shop_detail li:first-child {
  border-top: 1px solid #023c77;
}

/*# sourceMappingURL=style.css.map */
