/**  Mixins */
/*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
:root {
  --base-width: 375;
}

@media (min-width: 768px) {
  :root {
    --base-width: 1440;
  }
}
/** Global **/
:root {
  --white: #ffffff;
  --black: #000000;
  --black-light: #212121;
  --smoke: #f4f5ef;
  --gray: #F5F5F5;
  --primary: #F2B93B;
  --second: #F77E4A;
  --text-body: #212121;
  --radius: 5px;
}

.container--lg, .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.branch-location ul, .branch-gym ul, .branch-voice__item--body ul, .branch-trainer__item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.heading-square {
  position: relative;
  padding-left: 27px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.55px;
  margin: 0 0 20px;
  font-size: 20px;
}
@media only screen and (min-width: 992px) {
  .heading-square {
    font-size: 22.09px;
  }
}
.heading-square::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 4px;
  left: 0;
  background: var(--text-body);
}
@media only screen and (min-width: 992px) {
  .heading-square::before {
    top: 6px;
  }
}
.heading-square--xs {
  font-size: 15px;
  padding-left: 16px;
}
@media only screen and (min-width: 992px) {
  .heading-square--xs {
    font-size: 17px;
    padding-left: 20px;
  }
}
.heading-square--xs::before {
  width: 12px;
  height: 12px;
  top: 5px;
}
@media only screen and (min-width: 992px) {
  .heading-square--xs::before {
    width: 14px;
    height: 14px;
    top: 6px;
  }
}
.heading-square--lg {
  font-size: 20px;
  padding-left: 24px;
}
@media only screen and (min-width: 992px) {
  .heading-square--lg {
    font-size: 35px;
    padding-left: 42px;
  }
}
.heading-square--lg::before {
  width: 16px;
  height: 16px;
  top: 6px;
}
@media only screen and (min-width: 992px) {
  .heading-square--lg::before {
    width: 28px;
    height: 28px;
    top: 9px;
  }
}
.heading-square--2lg {
  font-size: 20px;
  padding-left: 24px;
}
@media only screen and (min-width: 992px) {
  .heading-square--2lg {
    font-size: 36px;
    padding-left: 43px;
  }
}
.heading-square--2lg::before {
  width: 16px;
  height: 16px;
  top: 6px;
}
@media only screen and (min-width: 992px) {
  .heading-square--2lg::before {
    width: 29px;
    height: 29px;
    top: 9px;
  }
}
.heading-square--xl {
  font-size: 20px;
  padding-left: 24px;
  margin: 0 0 24px;
}
@media only screen and (min-width: 992px) {
  .heading-square--xl {
    font-size: 42px;
    padding-left: 52px;
    margin: 0 0 60px;
  }
}
.heading-square--xl::before {
  width: 16px;
  height: 16px;
  top: 6px;
}
@media only screen and (min-width: 992px) {
  .heading-square--xl::before {
    width: 34px;
    height: 34px;
    top: 11px;
  }
}

.container--lg {
  max-width: 1420px;
}

.section {
  padding-block: 56px;
}
@media only screen and (min-width: 768px) {
  .section {
    padding-block: 75px;
  }
}
.section--yellow {
  background: var(--primary);
}
.section--white {
  background: var(--white);
}

.btn-arrow, .btn-arrow--black, .btn-arrow--white {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.77px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 257px;
  min-height: 40px;
  transition: all 0.3s;
  gap: 10px;
}
@media only screen and (min-width: 992px) {
  .btn-arrow, .btn-arrow--black, .btn-arrow--white {
    min-width: 300px;
    min-height: 56px;
    border-radius: 6.2px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-arrow, .btn-arrow--black, .btn-arrow--white {
    min-width: 400px;
    min-height: 62px;
    font-size: 23.19px;
  }
}
.btn-arrow::after, .btn-arrow--black::after, .btn-arrow--white::after {
  content: "";
  background: url("../images/branch/arrow-right-white.png") no-repeat 50% 50%/100%;
  width: 11px;
  height: 14px;
}
@media only screen and (min-width: 992px) {
  .btn-arrow::after, .btn-arrow--black::after, .btn-arrow--white::after {
    width: 14px;
    height: 19px;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-arrow::after, .btn-arrow--black::after, .btn-arrow--white::after {
    width: 16px;
    height: 20px;
  }
}
.btn-arrow--white {
  background: var(--white);
  color: var(--text-body);
}
.btn-arrow--white::after {
  background-image: url("../images/branch/arrow-right-yellow.svg");
}
.btn-arrow--black {
  background: var(--black-light);
}
.btn-arrow--black::after {
  background-image: url("../images/branch/arrow-right-yellow.svg");
}
@media only screen and (min-width: 1200px) {
  .btn-arrow--md {
    font-size: 27px;
    min-width: 460px;
    min-height: 72px;
    border-radius: 7.16px;
    gap: 11px;
  }
  .btn-arrow--md::after {
    width: 20px;
    height: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .btn-arrow--lg {
    min-width: 546px;
    min-height: 86px;
    border-radius: 8.5px;
    gap: 13px;
    font-size: 32px;
  }
  .btn-arrow--lg::after {
    width: 25px;
    height: 28px;
  }
}
.btn-arrow--shadow {
  text-shadow: 2px 4px 6px #E88F15;
}
@media only screen and (min-width: 992px) {
  .btn-arrow--shadow {
    text-shadow: 4.25px 8.5px 12.75px #E88F15;
  }
}
.btn-arrow--shadow::after {
  filter: drop-shadow(2px 4px 6px #E88F15);
}
@media only screen and (min-width: 992px) {
  .btn-arrow--shadow::after {
    filter: drop-shadow(4.25px 8.5px 12.75px #E88F15);
  }
}
.btn-arrow:hover, .btn-arrow--white:hover, .btn-arrow--black:hover {
  opacity: 0.7;
}

.section-heading {
  text-align: center;
  background: url("../images/branch/dashed-sp.svg") no-repeat 50% 100%;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .section-heading {
    background-image: url("../images/branch/dashed.svg");
    margin-bottom: 60px;
  }
}
.section-heading h2 {
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
  color: #FFD372;
  margin: 0 0 5px;
  opacity: 0.4;
}
@media only screen and (min-width: 768px) {
  .section-heading h2 {
    font-size: 60px;
    letter-spacing: 2.18px;
    font-style: normal;
  }
}
@media only screen and (min-width: 992px) {
  .section-heading h2 {
    font-size: 87.33px;
  }
}
.section-heading p {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2.18px;
  text-align: center;
  color: #5A5A5A;
  margin: 0;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .section-heading p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .section-heading p {
    font-size: 34.92px;
  }
}
.section-heading h3 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 2.18px;
  text-align: center;
  color: var(--text-body);
  font-size: 28px;
}
@media only screen and (min-width: 768px) {
  .section-heading h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .section-heading h3 {
    font-size: 61.1px;
  }
}
.section-heading--white {
  background-image: url("../images/branch/dashed-white-sp.svg");
}
@media only screen and (min-width: 768px) {
  .section-heading--white {
    background-image: url("../images/branch/dashed-white.svg");
  }
}
.section-heading--white h2 {
  color: var(--white);
}

.review-rating {
  display: inline-flex;
  gap: 2px;
}
.review-rating svg {
  width: 16px;
  height: auto;
  display: block;
}
.review-rating span {
  color: #b9b9b9;
}
.review-rating span.star-full {
  color: #FFDB49;
}
.review-rating span.star-half {
  position: relative;
}
.review-rating span.star-half span {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #FFDB49;
}
@media only screen and (min-width: 768px) {
  .review-rating.total {
    gap: 4px;
  }
  .review-rating.total svg {
    width: 31px;
  }
}
.review-rating.total > span:nth-child(2).star-full, .review-rating.total > span:nth-child(2).star-half span {
  color: #FCD145;
}
.review-rating.total > span:nth-child(3).star-full, .review-rating.total > span:nth-child(3).star-half span {
  color: #F9CA42;
}
.review-rating.total > span:nth-child(4).star-full, .review-rating.total > span:nth-child(4).star-half span {
  color: #F7C440;
}
.review-rating.total > span:nth-child(5).star-full, .review-rating.total > span:nth-child(5).star-half span {
  color: #F3BC3D;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
  background: #D9D9D9;
  width: 6px;
  height: 6px;
  margin-inline: 9px;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary);
}

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

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

/** pages */
.branch-banner {
  position: relative;
  z-index: 1;
}
.branch-banner picture {
  display: block;
  padding-bottom: calc(36 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .branch-banner picture {
    padding-bottom: 0;
  }
}
.branch-banner picture img {
  width: 100%;
  aspect-ratio: 1.494;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .branch-banner picture img {
    aspect-ratio: 1.67;
  }
}
.branch-banner::before {
  content: "";
  height: calc(155 / var(--base-width) * 100vw);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F2B93B 75%);
}
@media only screen and (min-width: 768px) {
  .branch-banner::before {
    height: calc(277 / var(--base-width) * 100vw);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F2B93B 60%);
  }
}
.branch-banner__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 0 calc(28 / var(--base-width) * 100vw) 20px;
}
@media only screen and (min-width: 768px) {
  .branch-banner__inner {
    padding: 0 0 calc(70 / var(--base-width) * 100vw) calc(200 / var(--base-width) * 100vw);
  }
}
.branch-banner__inner h1 {
  font-size: calc(72 / var(--base-width) * 100vw);
  color: var(--white);
  line-height: 0.9;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .branch-banner__inner h1 {
    font-size: calc(183 / var(--base-width) * 100vw);
    line-height: 0.8;
  }
}
.branch-banner__inner h1 small {
  font-size: calc(15 / var(--base-width) * 100vw);
  margin-left: calc(5 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .branch-banner__inner h1 small {
    font-size: calc(41 / var(--base-width) * 100vw);
    margin-left: calc(14 / var(--base-width) * 100vw);
  }
}

.page-heading {
  display: flex;
  background: var(--white);
}
@media only screen and (min-width: 768px) {
  .page-heading {
    display: none;
  }
}
.page-heading h2 {
  font-weight: 700;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.5px;
  padding: 5px 20px 5px 41px;
  position: relative;
  width: calc(100% - 142px);
  display: flex;
  align-items: center;
}
.page-heading h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--text-body);
  width: 10px;
  height: 10px;
}
.page-heading h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 1px;
  text-align: right;
  vertical-align: middle;
  background: var(--black-light);
  color: var(--white);
  width: 142px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(22px 0%, 100% 0, 100% 100%, 0% 100%);
  padding: 5px 15px;
}

.breadcrumb {
  background: var(--white);
}
.breadcrumb .p-breadcrumbs__container {
  max-width: none;
  padding: 0;
}
.breadcrumb .p-breadcrumbs {
  padding-block: 17px;
  background: none;
}
@media only screen and (min-width: 768px) {
  .breadcrumb .p-breadcrumbs {
    padding-block: 18px;
  }
}
.breadcrumb .p-breadcrumbs__item {
  font-size: 12px;
  color: var(--black);
}
@media only screen and (min-width: 768px) {
  .breadcrumb .p-breadcrumbs__item {
    font-size: 18px;
    letter-spacing: -2px;
  }
}
@media only screen and (min-width: 1200px) {
  .breadcrumb .p-breadcrumbs__item {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb--gray-sp {
    background: var(--gray);
  }
}

.branch-about {
  padding-block: 12px 48px;
  background: #F5F5F5;
}
@media only screen and (min-width: 768px) {
  .branch-about {
    padding-block: 65px 75px;
    background: var(--white);
  }
}
@media only screen and (min-width: 768px) {
  .branch-about__inner {
    display: flex;
    gap: 70px 68px;
    flex-wrap: wrap;
    align-items: center;
  }
}
.branch-about__images {
  padding-bottom: 68px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .branch-about__images {
    width: calc(50% - 43px);
    order: 2;
    padding-bottom: 0;
  }
}
.branch-about__images .swiper-pagination {
  bottom: 40px;
}
.branch-about__images--list {
  margin-bottom: 7px;
}
@media only screen and (min-width: 768px) {
  .branch-about__images--list {
    margin-bottom: 12px;
  }
}
.branch-about__images--list figure {
  padding: 1px;
}
.branch-about__images--list figure img {
  aspect-ratio: 1.6746;
  object-fit: cover;
  border-radius: 6.7px;
}
@media only screen and (min-width: 768px) {
  .branch-about__images--list .swiper-pagination {
    display: none;
  }
}
.branch-about__images--thumb figure {
  padding: 1px;
}
.branch-about__images--thumb figure img {
  aspect-ratio: 1.325;
  object-fit: cover;
  border-radius: 3.35px;
}
.branch-about__content {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.5px;
  padding-top: 48px;
}
@media only screen and (min-width: 768px) {
  .branch-about__content {
    width: calc(50% - 25px);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.43px;
    padding-top: 0;
  }
}
.branch-about__content h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
  margin: 0 0 70px;
}
@media only screen and (max-width: 767px) {
  .branch-about__content h2 {
    display: none;
  }
}
.branch-about__content h2 small {
  font-size: 38.44px;
}
.branch-about__content p {
  margin-bottom: 26px;
}
@media only screen and (min-width: 768px) {
  .branch-about__content p {
    margin-bottom: 22.5px;
  }
}
.branch-about__content p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .branch-about__features {
    width: 100%;
    order: 3;
  }
}
@media only screen and (max-width: 767px) {
  .branch-about__features {
    padding: 20px 0;
    margin: 0 -20px;
    background: var(--white);
    overflow-x: auto;
  }
}
.branch-about__features h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  margin: 0 0 12px;
  color: var(--primary);
  text-transform: uppercase;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .branch-about__features h2 {
    display: none;
  }
}
.branch-about__features--inner {
  display: flex;
  justify-content: space-around;
  gap: 8px;
}
.branch-about__features--inner figure img {
  max-width: 164px;
  aspect-ratio: 1.438;
  object-fit: cover;
  border-radius: 99px;
}
@media only screen and (min-width: 768px) {
  .branch-about__features--inner figure img {
    max-width: 180px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-about__features--inner figure img {
    max-width: 272px;
  }
}

.counseling {
  background: var(--black-light);
}
@media only screen and (min-width: 768px) {
  .counseling {
    display: flex;
    flex-wrap: wrap;
  }
}
.counseling__top {
  width: 100%;
  background: #5A5A5A;
  padding: 32px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .counseling__top {
    clip-path: polygon(100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px), 0 0);
    padding: 35px 20px 45px;
  }
}
.counseling__top h2 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.13px;
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 20px;
  gap: 22px;
}
@media only screen and (min-width: 768px) {
  .counseling__top h2 {
    font-size: 30px;
    gap: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .counseling__top h2 {
    font-size: 45.38px;
    gap: 47px;
  }
}
.counseling__top h2::before, .counseling__top h2::after {
  content: "";
  height: 35px;
  width: 2px;
  transform: rotate(-40deg);
  border-radius: 3px;
  background: var(--white);
  transform-origin: left;
}
@media only screen and (min-width: 768px) {
  .counseling__top h2::before, .counseling__top h2::after {
    height: 60px;
    width: 3px;
  }
}
@media only screen and (min-width: 992px) {
  .counseling__top h2::before, .counseling__top h2::after {
    height: 70px;
    width: 4.5px;
  }
}
.counseling__top h2::after {
  transform: rotate(40deg);
}
.counseling__hotline {
  padding-bottom: 12px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2.11px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: 7px;
}
@media only screen and (min-width: 768px) {
  .counseling__hotline {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .counseling__hotline {
    font-size: 28.18px;
  }
}
@media only screen and (max-width: 767px) {
  .counseling__hotline {
    background: #5A5A5A;
    clip-path: polygon(100% 0, 100% 30px, 50% 100%, 0 30px, 0 0);
    padding-bottom: 25px;
    margin-top: -1px;
  }
}
.counseling__hotline a {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: var(--primary);
}
@media only screen and (min-width: 992px) {
  .counseling__hotline a {
    font-size: 50.73px;
  }
}
.counseling__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 15px;
}
@media only screen and (min-width: 768px) {
  .counseling__button {
    width: 50%;
  }
}

@media only screen and (min-width: 768px) {
  .branch-information__inner {
    display: flex;
  }
}
.branch-information__map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 37px;
}
@media only screen and (min-width: 768px) {
  .branch-information__map {
    order: 2;
    width: 50%;
    padding-left: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-information__map {
    padding-left: 82px;
  }
}
.branch-information__map iframe {
  width: 100%;
  height: 240px;
}
@media only screen and (min-width: 768px) {
  .branch-information__map iframe {
    height: 370px;
  }
}
.branch-information__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .branch-information__content {
    width: 50%;
  }
}
.branch-information__content .btn-arrow--white {
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .branch-information__content .btn-arrow--white {
    margin-top: 43px;
  }
}
.branch-information__row {
  display: flex;
  border-bottom: 1px solid #FFD77F;
  padding-block: 12px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .branch-information__row {
    border-bottom-width: 1.79px;
    padding-block: 21px;
  }
}
.branch-information__row label {
  margin: 0;
  font-weight: 500;
  width: 90px;
  padding-right: 20px;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 992px) {
  .branch-information__row label {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.9px;
    width: 140px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-information__row label {
    font-size: 26.87px;
    line-height: 1.2;
    width: 160px;
    margin: 6px 0 0;
  }
}
.branch-information__row--body {
  width: calc(100% - 90px);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 992px) {
  .branch-information__row--body {
    width: calc(100% - 140px);
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.9px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-information__row--body {
    width: calc(100% - 160px);
    font-size: 26.87px;
    line-height: 1.73;
    letter-spacing: 0.9px;
  }
}

@media only screen and (min-width: 768px) {
  .branch-access__row {
    display: flex;
  }
}
.branch-access__row + .branch-access__row {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .branch-access__row + .branch-access__row {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 768px) {
  .branch-access__row--body {
    width: 49.4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
  }
}
.branch-access__row--body h4 {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.89px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 20px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .branch-access__row--body h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-access__row--body h4 {
    font-size: 26.55px;
  }
}
@media only screen and (max-width: 767px) {
  .branch-access__row--body h4 {
    display: none;
  }
}
.branch-access__row--top {
  position: relative;
  padding-left: 25px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 992px) {
  .branch-access__row--top {
    font-size: 20px;
    line-height: 1.73;
    letter-spacing: 0.89px;
    padding-left: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-access__row--top {
    font-size: 26.55px;
    line-height: 1.73;
    letter-spacing: 0.89px;
    padding-left: 45px;
  }
}
.branch-access__row--top h5 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  font-size: 28px;
  letter-spacing: 1.5px;
}
@media only screen and (min-width: 992px) {
  .branch-access__row--top h5 {
    font-size: 36px;
    letter-spacing: 2.66px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-access__row--top h5 {
    font-size: 49.56px;
  }
}
.branch-access__row figure {
  margin: 0 0 12px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .branch-access__row figure {
    width: 50.6%;
    padding-left: 28px;
    order: 2;
    margin: 0;
  }
}
.branch-access__row figure img {
  width: 100%;
  border-radius: 4px;
  min-height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .branch-access__row figure img {
    border-radius: 7px;
  }
}
.branch-access__row figure figcaption {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 4px 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 5px 20px;
}
@media only screen and (min-width: 768px) {
  .branch-access__row figure figcaption {
    display: none;
  }
}

.branch-review__top {
  background: #F5F5F5;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 20px 12px;
}
@media only screen and (min-width: 768px) {
  .branch-review__top {
    padding: 12px 20px 24px;
    max-width: 675px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-review__top {
    margin-bottom: 58px;
  }
}
.branch-review__top--info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px;
}
.branch-review__top--info figure {
  width: 100%;
  max-width: 65px;
}
@media only screen and (min-width: 768px) {
  .branch-review__top--info figure {
    max-width: 90px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-review__top--info figure {
    max-width: 130px;
  }
}
.branch-review__top--info figure img {
  width: 100%;
}
.branch-review__top--info h3 {
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 10px;
  color: #5A5A5A;
  font-size: 15px;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 768px) {
  .branch-review__top--info h3 {
    font-size: 22px;
    letter-spacing: 1.01px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-review__top--info h3 {
    font-size: 30.22px;
  }
}
.branch-review__top--info h3 strong {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2.01px;
}
@media only screen and (min-width: 768px) {
  .branch-review__top--info h3 strong {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-review__top--info h3 strong {
    font-size: 56.42px;
  }
}
.branch-review__top--info h3 strong span {
  color: var(--text-body);
}
.branch-review__top--info h3 span {
  color: var(--primary);
}
.branch-review__inner {
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  padding: 20px;
  max-height: 600px;
  overflow-y: auto;
}
@media only screen and (min-width: 768px) {
  .branch-review__inner {
    padding: 20px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .branch-review__inner {
    padding: 21px 72px;
    max-height: 730px;
  }
}
.branch-review__inner::-webkit-scrollbar {
  width: 6px;
}
@media only screen and (min-width: 768px) {
  .branch-review__inner::-webkit-scrollbar {
    width: 12px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-review__inner::-webkit-scrollbar {
    width: 21px;
  }
}
.branch-review__inner::-webkit-scrollbar-thumb {
  background: #BDBDBD;
  border-radius: 12px;
}
.branch-review__item + .branch-review__item {
  margin-top: 20px;
}
.branch-review__item--info {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.branch-review__item--info figure {
  width: 48px;
}
.branch-review__item--info figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}
.branch-review__item--info h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin: 0;
}
.branch-review__item--info p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  margin: 0;
}
.branch-review__item--body {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.66;
  letter-spacing: 0.5px;
  color: var(--black);
}

.branch-trainer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media only screen and (min-width: 768px) {
  .branch-trainer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-trainer__inner {
    gap: 65px 120px;
  }
}
.branch-trainer__item figure {
  margin: 0 0 30px;
}
.branch-trainer__item figure img {
  width: 100%;
  aspect-ratio: 1.67;
  object-fit: cover;
  border-radius: 5.6px;
}
.branch-trainer__item h3 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.32px;
  color: var(--text-body);
  margin: 0 0 6px;
  font-size: 32px;
}
@media only screen and (min-width: 992px) {
  .branch-trainer__item h3 {
    font-size: 37.16px;
  }
}
.branch-trainer__item h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 30.19px;
  letter-spacing: 0.58px;
  gap: 10px;
  margin: 0 0 14px;
}
@media only screen and (min-width: 992px) {
  .branch-trainer__item h4 {
    font-size: 13.93px;
  }
}
.branch-trainer__item h4 strong {
  font-family: "DIN 2014";
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1.74px;
  color: var(--primary);
}
@media only screen and (min-width: 992px) {
  .branch-trainer__item h4 strong {
    font-size: 23.22px;
  }
}
.branch-trainer__item h5 {
  margin: 0 0 12px;
}
.branch-trainer__item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.58px;
  text-align: center;
  margin-bottom: 13px;
}
@media only screen and (min-width: 992px) {
  .branch-trainer__item ul {
    font-size: 13.93px;
    gap: 7px;
  }
}
.branch-trainer__item ul li {
  background: #5A5A5A;
  border-radius: 2.3px;
  color: var(--white);
  padding: 2px 12px;
}
@media only screen and (min-width: 992px) {
  .branch-trainer__item ul li {
    padding: 6px 14px;
  }
}
.branch-trainer__item--body {
  background: #F5F5F5;
  padding: 16px 20px;
  border-radius: 4px;
  max-width: 389px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 992px) {
  .branch-trainer__item--body {
    padding: 18px 24px;
    border-radius: 4.64px;
    font-size: 17.42px;
    line-height: 30.19px;
    letter-spacing: 0.58px;
  }
}
.branch-trainer__item--body p {
  margin-bottom: 30px;
}
.branch-trainer__item--body p:last-of-type {
  margin-bottom: 0;
}

.pricing-table {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .pricing-table {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .pricing-table {
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .pricing-table {
    gap: 40px;
  }
}
.pricing-table__item {
  box-shadow: 2px 4px 8px 0px #3E3A3933;
  background: var(--white);
  border-radius: 4px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .pricing-table__item {
    border-radius: 4.4px;
    box-shadow: 2.21px 4.43px 8.86px 0px #3E3A3933;
  }
}
.pricing-table__item h2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: 900;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.63px;
  text-align: center;
  color: var(--primary);
  gap: 30px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -36px;
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .pricing-table__item h2 {
    font-size: 25.02px;
    line-height: 32.53px;
    top: -64px;
    gap: 40px;
  }
}
.pricing-table__item h2::before, .pricing-table__item h2::after {
  content: "";
  height: 26px;
  width: 3px;
  transform: rotate(-40deg);
  border-radius: 3px;
  background: var(--primary);
  transform-origin: left;
}
@media only screen and (min-width: 992px) {
  .pricing-table__item h2::before, .pricing-table__item h2::after {
    height: 30px;
    width: 3.75px;
  }
}
.pricing-table__item h2::after {
  transform: rotate(40deg);
}
.pricing-table__item h3 {
  background: var(--primary);
  color: var(--text-body);
  text-align: center;
  border-radius: 4px 4px 0 0;
  font-weight: 700;
  letter-spacing: 0.55px;
  padding: 13px 20px;
  font-size: 20px;
  line-height: 26px;
}
@media only screen and (min-width: 768px) {
  .pricing-table__item h3 {
    font-size: 14px;
    padding: 13px 10px;
  }
}
@media only screen and (min-width: 992px) {
  .pricing-table__item h3 {
    font-size: 16px;
    padding: 13px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pricing-table__item h3 {
    font-size: 22.14px;
    line-height: 28.78px;
    border-radius: 4.4px 4.4px 0 0;
  }
}
.pricing-table__item--inner {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--inner {
    padding: 26px 16px;
  }
}
.pricing-table__item--inner h4 {
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--primary);
  border-top: 1px solid #BDBDBD;
  padding-top: 8px;
  margin: 0 0 12px;
  font-size: 50px;
  letter-spacing: 1.5px;
}
@media only screen and (min-width: 768px) {
  .pricing-table__item--inner h4 {
    font-size: 28px;
    letter-spacing: 0.5px;
  }
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--inner h4 {
    font-size: 36px;
    letter-spacing: 1.5px;
  }
}
@media only screen and (min-width: 1200px) {
  .pricing-table__item--inner h4 {
    font-size: 50px;
    letter-spacing: 1.66px;
    border-top-width: 1.11px;
    padding-top: 12px;
    margin: 0 0 14px;
  }
}
@media only screen and (min-width: 1300px) {
  .pricing-table__item--inner h4 {
    font-size: 57.56px;
  }
}
.pricing-table__item--inner h4 small {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.55px;
}
@media only screen and (min-width: 768px) {
  .pricing-table__item--inner h4 small {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--inner h4 small {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .pricing-table__item--inner h4 small {
    font-size: 16.6px;
  }
}
.pricing-table__item--inner h5 {
  background: #5A5A5A;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.55px;
  color: var(--white);
  text-align: center;
  border-radius: 4.43px;
  padding: 7px 10px;
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--inner h5 {
    font-size: 13.28px;
    line-height: 22.14px;
  }
}
.pricing-table__item--inner ul {
  align-self: center;
  margin-top: 9px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.55px;
  color: var(--black);
}
@media only screen and (min-width: 768px) {
  .pricing-table__item--inner ul {
    font-size: 11px;
  }
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--inner ul {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .pricing-table__item--inner ul {
    font-size: 16.6px;
    line-height: 1.3;
    margin-top: 15px;
  }
}
.pricing-table__item--inner ul li {
  background: url("../images/branch/check-icon.svg") no-repeat 0 2px/16px;
  padding-left: 20px;
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--inner ul li {
    padding-left: 23px;
    background-size: 18px;
  }
}
.pricing-table__item--inner ul li + li {
  margin-top: 4px;
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--inner ul li + li {
    margin-top: 13px;
  }
}
.pricing-table__item--description {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 22.14px;
  line-height: 1.299;
  letter-spacing: 0.55px;
  border-left: 6px solid var(--primary);
  padding-left: 16px;
  margin-left: 12px;
  font-size: 20px;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .pricing-table__item--description {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .pricing-table__item--description {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .pricing-table__item--description {
    font-size: 22.14px;
    line-height: 1.299;
    border-left-width: 6.6px;
    padding-left: 17px;
    margin-left: 13px;
    margin-bottom: 22px;
  }
}
.pricing-table__item--description p {
  margin: 0;
}
.pricing-table__item--second h3 {
  background: var(--second);
  color: var(--white);
}
.pricing-table__item--second .pricing-table__item--inner h4 {
  color: var(--second);
}
.pricing-table__item--second .pricing-table__item--inner h4 small {
  color: #5A5A5A;
}
.pricing-table__item--second .pricing-table__item--inner ul li {
  background-image: url("../images/branch/check-icon-gray.svg");
}
.pricing-table__item--black h3 {
  background: #212121;
  color: var(--white);
}
.pricing-table__item--black .pricing-table__item--inner h4 {
  color: var(--text-body);
}
.pricing-table__item--black .pricing-table__item--inner h4 small {
  color: var(--text-body);
}
@media only screen and (max-width: 767px) {
  .pricing-table__item--special {
    margin-top: 36px;
  }
}

@media only screen and (min-width: 768px) {
  .branch-plan .section-heading {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-plan .section-heading {
    margin-bottom: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-plan .section-heading {
    margin-bottom: 160px;
  }
}
.branch-plan__inner {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 80px;
  gap: 36px;
}
@media only screen and (min-width: 768px) {
  .branch-plan__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 52px;
    margin-top: 100px;
  }
}
.branch-plan__col h6 {
  font-weight: 700;
  font-size: 15.62px;
  line-height: 27.07px;
  letter-spacing: 0.52px;
  margin: 10px 0;
}
.branch-plan__col h6 span {
  color: var(--second);
}
.branch-plan__col h6 + h3 {
  margin-top: 36px;
}
@media only screen and (min-width: 992px) {
  .branch-plan__col h6 + h3 {
    margin-top: 56px;
  }
}
.branch-plan__col figure img {
  width: 100%;
  border-radius: 4;
}
@media only screen and (min-width: 992px) {
  .branch-plan__col figure img {
    border-radius: 4.4px;
  }
}
.branch-plan__col figure figcaption {
  font-weight: 400;
  letter-spacing: 0.55px;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 26px;
}
@media only screen and (min-width: 992px) {
  .branch-plan__col figure figcaption {
    font-size: 16.57px;
    line-height: 1.73;
    margin: 18px 0 0;
  }
}
.branch-plan__col table {
  border-collapse: collapse;
  border-radius: 4.16px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #5A5A5A;
  width: 100%;
  font-weight: 700;
  font-size: 13.25px;
  line-height: 1.667;
  letter-spacing: 0.55px;
}
.branch-plan__col table td,
.branch-plan__col table th {
  border: 1.04px solid #5A5A5A;
  padding: 2px 24px;
  vertical-align: middle;
}
.branch-plan__col table th {
  font-weight: 700;
  line-height: 27.07px;
  letter-spacing: 0.52px;
  text-align: center;
  background: var(--primary);
  color: var(--text-body);
  font-size: 15px;
}
@media only screen and (min-width: 992px) {
  .branch-plan__col table th {
    font-size: 15.62px;
  }
}
.branch-plan__col table th.dark {
  background: #5A5A5A;
  color: var(--white);
}
.branch-plan__col table td {
  padding-block: 5px;
}
.branch-plan__col table td h5 {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.51px;
  text-align: center;
  color: #5A5A5A;
}
@media only screen and (min-width: 992px) {
  .branch-plan__col table td h5 {
    font-size: 15.31px;
  }
}
.branch-plan__col table td h4 {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.52px;
  text-align: center;
  color: #5A5A5A;
  padding-block: 2px;
}
@media only screen and (min-width: 992px) {
  .branch-plan__col table td h4 {
    font-size: 12.49px;
  }
}
.branch-plan__col table td h4 strong {
  color: #F77E4A;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.52px;
}
@media only screen and (min-width: 992px) {
  .branch-plan__col table td h4 strong {
    font-size: 15.62px;
  }
}
.branch-plan__col table tr:first-child th:first-child {
  border-top-left-radius: 4.16px;
}
.branch-plan__col table tr:first-child th:last-child {
  border-top-right-radius: 4.16px;
}
.branch-plan__col table tr:last-child th:first-child {
  border-bottom-left-radius: 4.16px;
}

.stadios__inner {
  display: grid;
  grid-template-rows: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .stadios__inner {
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .stadios__inner {
    gap: 27px 55px;
  }
}
.stadios__item {
  background: var(--white);
  border-radius: 4px;
  display: flex;
}
@media only screen and (min-width: 992px) {
  .stadios__item {
    border-radius: 6.81px;
  }
}
.stadios__item figure {
  width: 120px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .stadios__item figure {
    width: 204px;
  }
}
.stadios__item figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px 0 0 4px;
}
@media only screen and (min-width: 992px) {
  .stadios__item figure img {
    border-radius: 6.81px 0 0 6.81px;
  }
}
.stadios__item figure figcaption {
  position: absolute;
  border-radius: 6.81px 6.81px 0 6.81px;
  background: rgba(33, 33, 33, 0.8);
  color: var(--white);
  padding: 10px 12px;
  bottom: 0;
  width: 100%;
  left: 0;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.85px;
}
@media only screen and (min-width: 992px) {
  .stadios__item figure figcaption {
    font-size: 17.03px;
  }
}
.stadios__item figure figcaption strong {
  font-weight: 700;
  font-size: 15px;
}
@media only screen and (min-width: 992px) {
  .stadios__item figure figcaption strong {
    font-size: 25.54px;
  }
}
.stadios__item figure figcaption strong small {
  font-size: 12px;
}
@media only screen and (min-width: 992px) {
  .stadios__item figure figcaption strong small {
    font-size: 20.43px;
  }
}
.stadios__item--body {
  width: calc(100% - 120px);
  padding: 12px 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 992px) {
  .stadios__item--body {
    padding: 20px 27px;
    width: calc(100% - 204px);
    font-size: 20.43px;
    line-height: 1.33;
    letter-spacing: 0.85px;
  }
}
.stadios__item--body h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--primary);
  border-bottom: 1.7px solid #BDBDBD;
  padding-bottom: 5px;
  margin: 0 0 7px;
}
@media only screen and (min-width: 992px) {
  .stadios__item--body h3 {
    font-size: 34.05px;
    line-height: 1.3;
    border-bottom-width: 1.7px;
    padding-bottom: 8px;
    margin: 0 0 10px;
    letter-spacing: 0.85px;
  }
}

@media only screen and (max-width: 1199px) {
  .branch-voice__list {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .branch-voice__list {
    padding-right: 55px;
    margin-right: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .branch-voice .swiper-pagination {
    padding-right: 20px;
  }
}
.branch-voice__item {
  background: #F5F5F5;
  border-radius: 4;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .branch-voice__item {
    border-radius: 4.38px;
  }
}
.branch-voice__item figure img {
  border-radius: 4px 4px 0 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .branch-voice__item figure img {
    border-radius: 4.38px 4.38px 0 0;
  }
}
.branch-voice__item--body {
  padding: 18px 16px 36px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.73;
  letter-spacing: 0.55px;
}
@media only screen and (min-width: 768px) {
  .branch-voice__item--body {
    padding: 20px 18px 38px;
    font-size: 16.42px;
  }
}
.branch-voice__item--body h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.55px;
  border-bottom: 1.09px solid #BDBDBD;
  padding-bottom: 12px;
  margin: 0 0 8px;
}
@media only screen and (min-width: 768px) {
  .branch-voice__item--body h3 {
    font-size: 19.71px;
    line-height: 1.44;
    padding-bottom: 14px;
    margin: 0 0 10px;
  }
}
.branch-voice__item--body ul {
  display: flex;
  gap: 4px;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.55px;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) {
  .branch-voice__item--body ul {
    font-size: 13.14px;
    line-height: 1.2;
  }
}
.branch-voice__item--body ul li {
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 2px 12px;
}
@media only screen and (min-width: 768px) {
  .branch-voice__item--body ul li {
    padding: 5px 13px;
  }
}

@media only screen and (max-width: 767px) {
  .branch-points {
    background: #F5F5F5;
  }
}
.branch-points__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .branch-points__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
}
.branch-points__item {
  background: var(--white);
  border-radius: 4px;
}
@media only screen and (min-width: 768px) {
  .branch-points__item {
    border-radius: 4.64px;
  }
}
.branch-points__item figure img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}
@media only screen and (min-width: 768px) {
  .branch-points__item figure img {
    border-radius: 4.64px 4.64px 0 0;
  }
}
.branch-points__item--body {
  padding: 8px 16px 20px;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.58px;
}
@media only screen and (min-width: 992px) {
  .branch-points__item--body {
    padding: 10px 19px 20px;
    font-size: 17.39px;
    line-height: 1.733;
  }
}
.branch-points__item--body p {
  margin-bottom: 26px;
}
@media only screen and (min-width: 992px) {
  .branch-points__item--body p {
    margin-bottom: 30px;
  }
}
.branch-points__item--body p:last-of-type {
  margin-bottom: 0;
}
.branch-points__item--title {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 12px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .branch-points__item--title {
    border-bottom-width: 1.16px;
    gap: 14px;
  }
}
.branch-points__item--title h3 {
  font-weight: 700;
  line-height: 0.83;
  letter-spacing: 3.48px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  .branch-points__item--title h3 {
    font-size: 16.23px;
  }
}
.branch-points__item--title h3 strong {
  font-weight: 700;
  font-size: 56px;
  letter-spacing: 0.58px;
}
@media only screen and (min-width: 992px) {
  .branch-points__item--title h3 strong {
    font-size: 64.92px;
  }
}
.branch-points__item--title h4 {
  font-weight: 700;
  letter-spacing: 0.58px;
  margin: 0;
  font-size: 15px;
  line-height: 20px;
}
@media only screen and (min-width: 992px) {
  .branch-points__item--title h4 {
    font-size: 17.39px;
    line-height: 1.33;
  }
}

.branch-flow__item {
  background: #F5F5F5;
  border-radius: 4px;
}
@media only screen and (min-width: 768px) {
  .branch-flow__item {
    border-radius: 5.08px;
  }
}
.branch-flow__item + .branch-flow__item {
  margin-top: 34px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .branch-flow__item + .branch-flow__item {
    margin-top: 112px;
  }
}
.branch-flow__item + .branch-flow__item::before {
  content: "";
  width: 50px;
  height: 16px;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/branch/arrow-gray-down.svg") no-repeat 0 0/100%;
}
@media only screen and (min-width: 768px) {
  .branch-flow__item + .branch-flow__item::before {
    width: 75px;
    height: 20px;
    top: -65px;
  }
}
.branch-flow__item h3 {
  background: var(--primary);
  color: var(--text-body);
  border-radius: 4px 4px 0 0;
  font-weight: 700;
  padding: 8px 20px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 768px) {
  .branch-flow__item h3 {
    font-size: 22.87px;
    line-height: 1.3;
    letter-spacing: 0.64px;
    padding: 12px 20px;
    border-radius: 5.08px 5.08px 0 0;
  }
}
.branch-flow__item--body {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.64px;
  text-align: center;
  padding: 16px 20px;
}
@media only screen and (min-width: 768px) {
  .branch-flow__item--body {
    font-size: 19.06px;
    line-height: 1.4;
    padding: 24px 20px;
  }
}

.branch-gym .container {
  max-width: 1440px;
}
.branch-gym ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.5px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .branch-gym ul {
    justify-content: center;
  }
}
.branch-gym ul li figure {
  width: 106px;
}
.branch-gym ul li figure img {
  width: 100%;
}
.branch-gym ul li figure figcaption {
  margin-top: 4px;
}

.branch-body__inner {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .branch-body__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1200px) {
  .branch-body__inner {
    grid-template-columns: 44.6% 1fr;
  }
}
.branch-body__inner figure {
  text-align: center;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px) {
  .branch-body__inner figure {
    padding-inline: 30px;
    margin: 0;
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
.branch-body__inner figure img {
  border-radius: 4px;
  width: 100%;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .branch-body__inner figure img {
    max-width: 335px;
  }
}
.branch-body__body {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 992px) {
  .branch-body__body {
    font-weight: 500;
    font-size: 17.55px;
    line-height: 1.73;
    letter-spacing: 0.59px;
  }
}
.branch-body__body p {
  margin-bottom: 26px;
}
@media only screen and (min-width: 992px) {
  .branch-body__body p {
    margin-bottom: 30px;
  }
}
.branch-body__body p:last-of-type {
  margin-bottom: 0;
}

.branch-strengths__heading {
  font-weight: 500;
  font-size: 20.62px;
  line-height: 1.66;
  letter-spacing: 0.86px;
  margin-bottom: 40px;
}
.branch-strengths__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .branch-strengths__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media only screen and (min-width: 1300px) {
  .branch-strengths__inner {
    gap: 50px 74px;
  }
}
@media only screen and (min-width: 1300px) {
  .branch-strengths .branch-points__item--title h3 {
    font-size: 23.57px;
  }
  .branch-strengths .branch-points__item--title h3 strong {
    font-size: 94.28px;
  }
  .branch-strengths .branch-points__item--body {
    font-size: 25.25px;
  }
  .branch-strengths .branch-points__item--body p {
    margin-bottom: 44px;
  }
  .branch-strengths .branch-points__item--body p:last-of-type {
    margin-bottom: 0;
  }
}

.faqs {
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .faqs {
    background: var(--primary);
    padding-top: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .faqs .section-heading {
    background-image: url("../images/branch/dashed-white-sp.svg");
  }
  .faqs .section-heading h2 {
    color: var(--white);
  }
}
.faqs__inner {
  background: var(--primary);
  padding-block: 0 48px;
}
@media only screen and (min-width: 768px) {
  .faqs__inner {
    padding-block: 22px;
  }
}
.faqs__item {
  background: var(--white);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.68px;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) {
  .faqs__item {
    padding: 15px;
    font-size: 16.24px;
    line-height: 1.4;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .faqs__item {
    box-shadow: 2px 4px 8px 0px #3E3A3933, 2px 4px 8px 0px #3E3A3933;
    border-radius: 4px;
  }
}
.faqs__item + .faqs__item {
  margin-top: 16px;
}
@media only screen and (min-width: 768px) {
  .faqs__item + .faqs__item {
    margin-top: 22px;
  }
}
.faqs__item h3 {
  font-weight: 500;
  display: flex;
  padding-block: 12px;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.5px;
  align-items: center;
  position: relative;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .faqs__item h3 {
    font-size: 20.3px;
    line-height: 1.33;
    letter-spacing: 0.68px;
    display: inline-flex;
    padding-block: 0 17px;
    border-bottom: 1.35px solid #BDBDBD;
  }
}
@media only screen and (max-width: 767px) {
  .faqs__item h3 {
    padding-right: 56px;
  }
  .faqs__item h3::before, .faqs__item h3::after {
    content: "";
    width: 16px;
    border-bottom: 2px solid #5A5A5A;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  .faqs__item h3::after {
    transform: translateY(-50%) rotate(90deg);
  }
}
.faqs__item h3 span {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 2.03px;
  color: #DEDEDE;
  margin-right: 5px;
}
@media only screen and (min-width: 768px) {
  .faqs__item h3 span {
    font-size: 27.06px;
  }
}
.faqs__item--body {
  display: none;
  border-top: 1.35px solid #BDBDBD;
  padding: 4px 0 14px;
}
@media only screen and (min-width: 768px) {
  .faqs__item--body {
    border: 0;
    padding: 7px 0 0;
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .faqs__item.show h3::after {
    transform: translateY(-50%) rotate(0);
  }
}

.branch-payment__inner {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 768px) {
  .branch-payment__inner {
    font-size: 16px;
    line-height: 1.66;
    letter-spacing: 0.87px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-payment__inner {
    font-size: 20.78px;
  }
}
.branch-payment__inner p {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .branch-payment__inner p {
    margin-bottom: 35px;
  }
}
.branch-payment__inner h4 {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 32px 0 4px;
}
@media only screen and (min-width: 768px) {
  .branch-payment__inner h4 {
    margin: 60px 0 7px;
    font-size: 16px;
    line-height: 1.66;
    letter-spacing: 0.87px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-payment__inner h4 {
    font-size: 20.78px;
  }
}
.branch-payment__inner figure {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .branch-payment__inner figure {
    margin-bottom: 34px;
  }
}
.branch-payment__inner figure img {
  width: 100%;
  max-width: 578px;
}
.branch-payment__inner small {
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0.2px;
  color: var(--black);
}
@media only screen and (min-width: 768px) {
  .branch-payment__inner small {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.35px;
  }
}
@media only screen and (min-width: 992px) {
  .branch-payment__inner small {
    font-size: 19.05px;
  }
}

@media only screen and (max-width: 767px) {
  .branch-location {
    background: var(--gray);
  }
}
.branch-location ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}
@media only screen and (min-width: 992px) {
  .branch-location ul {
    gap: 32px 8px;
    justify-content: center;
  }
}
.branch-location ul li {
  width: calc(50% - 4px);
}
@media only screen and (min-width: 768px) {
  .branch-location ul li {
    width: auto;
  }
}
.branch-location ul li a {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #212121;
  border-radius: 4px;
  background: var(--primary);
  color: var(--black);
  transition: all 0.3s;
  min-width: 164px;
  min-height: 40px;
  padding: 5px 6px;
}
@media only screen and (min-width: 768px) {
  .branch-location ul li a {
    padding: 5px 20px;
  }
}
.branch-location ul li a:hover {
  opacity: 0.8;
}

.l-footer--new {
  padding: 10.2vw 0;
}
@media only screen and (min-width: 768px) {
  .l-footer--new {
    padding-block: 75px 30px;
  }
}
.l-footer--new .l-footer__inner {
  gap: 25px;
}
.l-footer--new .l-footer__container {
  max-width: 1440px;
  padding-inline: 20px;
}
.l-footer--new .l-footer__logo {
  text-align: center;
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) {
  .l-footer--new .l-footer__logo {
    margin-bottom: 78px;
  }
}
.l-footer--new .l-footer__logo a {
  display: inline-block;
}
.l-footer--new .l-footer__logo a img {
  width: 100%;
  max-width: 120px;
}
@media only screen and (min-width: 768px) {
  .l-footer--new .l-footer__logo a img {
    max-width: 195px;
  }
}
@media only screen and (max-width: 767px) {
  .l-footer--new .l-footer__nav-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.l-footer--new .l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 30px;
  justify-content: center;
  flex-direction: row;
}
@media only screen and (min-width: 768px) {
  .l-footer--new .l-footer__nav-list {
    gap: 43px 73px;
  }
}
.l-footer--new .l-footer__nav-list li {
  width: calc(50% - 15px);
}
@media only screen and (min-width: 768px) {
  .l-footer--new .l-footer__nav-list li {
    width: auto;
  }
}
.l-footer--new .l-footer__nav-list li a {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.9px;
  text-align: left;
  font-size: 2.8vw;
}
@media only screen and (min-width: 768px) {
  .l-footer--new .l-footer__nav-list li a {
    text-align: center;
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .l-footer--new .l-footer__nav-list li a {
    font-size: 25.11px;
  }
}
.l-footer--new .l-footer__nav--last {
  margin-top: 26px;
}
@media only screen and (min-width: 768px) {
  .l-footer--new .l-footer__nav--last {
    margin-top: 80px;
  }
}
.l-footer--new .l-footer__copy {
  font-weight: 400;
  font-size: 2.8vw;
  line-height: 1.3;
  letter-spacing: 0.9px;
  text-align: center;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .l-footer--new .l-footer__copy {
    font-size: 20px;
    font-weight: 700;
  }
}
@media only screen and (min-width: 992px) {
  .l-footer--new .l-footer__copy {
    font-size: 25.11px;
  }
}

.post-password-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.post-password-form p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
}

.post-password-form input[type="password"] {
  width: 80%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.post-password-form input[type="submit"] {
  padding: 8px 16px;
  background: #0073aa;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
}

.post-password-form input[type="submit"]:hover {
  background: #005177;
}
/*# sourceMappingURL=styles.css.map */
