@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

address {
  font-style: initial;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 300;
}

body {
  color: #000000;
}

span.gold {
  color: #BA852A;
}

span.uppercase {
  text-transform: uppercase;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}

.inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1920px;
    padding-right: 12rem;
    padding-left: 12rem;
  }
}

.header {
  position: relative;
}

.header__inner {
  padding-top: 0.9375rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-top: 2.125rem;
    padding-left: 3.125rem;
  }
}

.header-logo {
  width: 10.625rem;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 20rem;
  }
}

.header-logo a img {
  width: 100%;
  height: auto;
}

.section-title {
  font-size: 1.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2.625rem;
    line-height: 1.6904761905;
  }
}

.common-fz-text {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .common-fz-text {
    font-size: 1.75rem;
    line-height: 1;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 12.5rem; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
@media screen and (min-width: 768px) {
  .slider {
    padding-top: 3.125rem;
    height: 18.75rem;
  }
}

/*　背景画像設定　*/
.slider-item01 {
  background: url(../image/gym1.jpg);
}

.slider-item02 {
  background: url(../image/gym2.jpg);
}

.slider-item03 {
  background: url(../image/gym3.jpg);
}

.slider-item04 {
  background: url(../image/gym4.jpg);
}

.slider-item {
  width: 21.25rem;
  height: 12.5rem;
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
@media screen and (min-width: 768px) {
  .slider-item {
    width: 30.125rem;
    height: 18.75rem;
    margin-right: 1.25rem;
    margin-left: 1.25rem;
  }
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc; /*矢印の色*/
  border-right: 2px solid #ccc; /*矢印の色*/
  height: 25px;
  width: 25px;
}
@media screen and (min-width: 768px) {
  .slick-prev,
  .slick-next {
    top: 65%;
  }
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.footer {
  background-color: #F6F3EB;
  text-align: center;
  margin-bottom: 9.375rem;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-bottom: initial;
  }
}

.footer__container {
  padding-top: 1.875rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  padding-bottom: 1.875rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding-top: 3.125rem;
    padding-bottom: 1.25rem;
  }
}

.footer__img-wrapper {
  width: 9.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__img-wrapper {
    width: 12.5rem;
  }
}

.footer__img-wrapper img {
  width: 100%;
  height: auto;
}

.footer__items {
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .footer__items {
    padding-top: 0.625rem;
    display: flex;
    grid-template-columns: initial;
    justify-content: center;
  }
}

.footer__item {
  background-color: #f6f3eb;
  width: 10.3125rem;
  padding: 0.625rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__item {
    background-color: initial;
    width: initial;
    padding: 0.3125rem 2.5rem;
    border-right: 1px solid #BA852A;
  }
}

.footer__item a {
  font-size: 1rem;
  line-height: 1.5;
  color: #BA852A;
}
@media screen and (min-width: 768px) {
  .footer__item a {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

footer.footer small {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  footer.footer small {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.mv {
  width: 100%;
  margin-top: -3.9375rem;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 59.9375rem;
    margin-top: -7.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .mv picture {
    height: inherit;
  }
}

.mv img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .mv img {
    height: inherit;
  }
}

.recommendation {
  padding-top: 3.125rem;
  background-color: #F6F3EB;
}
@media screen and (min-width: 768px) {
  .recommendation {
    margin-top: initial;
    padding-top: 5rem;
  }
}

.recommendation-text {
  margin-top: 2.1875rem;
  line-height: 1.125;
}
@media screen and (min-width: 768px) {
  .recommendation-text {
    padding-left: 16.875rem;
    padding-right: 16.875rem;
  }
}

.features {
  background-color: #F6F3EB;
  padding-top: 3.125rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .features {
    padding-top: 6.25rem;
    padding-bottom: 3.125rem;
  }
}

.features__items {
  position: relative;
}
@media screen and (min-width: 768px) {
  .features__items {
    display: flex;
    justify-content: space-between;
  }
}

.features__items::before {
  position: absolute;
  content: url(../image/ring-white.png);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .features__items::before {
    top: -0.625rem;
  }
}

.features__item {
  padding-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .features__item {
    width: 30rem;
  }
}

.features__item-title {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .features__item-title {
    font-size: 2rem;
  }
}

.features__item-title span {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .features__item-title span {
    font-size: 2.5rem;
  }
}

.features__item-img-wrapper {
  margin-top: 0.625rem;
  width: 21.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .features__item-img-wrapper {
    width: 30rem;
  }
}

.features__item-img-wrapper img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.features__item-subtitle {
  color: #BA852A;
  font-size: 1.75rem;
  line-height: 1.7142857143;
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .features__item-subtitle {
    text-align: center;
    font-size: 2rem;
    line-height: 1.6875;
    padding-top: 1.5625rem;
  }
}

.features__item-supplementtitle {
  color: #BA852A;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .features__item-supplementtitle {
    font-size: 1.375rem;
    text-align: center;
    line-height: 1.3636363636;
  }
}

.features__text-wrapper {
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .features__text-wrapper {
    padding-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .features__text-wrapper.supplemen-non {
    padding-top: 3.4375rem;
  }
}

.features__text {
  font-size: 1rem;
  line-height: 1.125;
}
@media screen and (min-width: 768px) {
  .features__text {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.place {
  position: relative;
  background-color: #F6F3EB;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .place {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.place-title-text {
  background-color: #ffffff;
  padding: 0.9375rem 0.3125rem 0.875rem 0.3125rem;
  border-radius: 10px;
  width: 21.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .place-title-text {
    font-size: 1.5rem;
    line-height: 1.7083333333;
    padding: 1.375rem 1.875rem;
    width: 33.75rem;
    margin-top: 2.5rem;
  }
}

.place-table {
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .place-table {
    margin-top: 3.125rem;
  }
}

dl.table {
  width: 21.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  dl.table {
    width: 62.5rem;
  }
}

dl.table.table-popular {
  position: relative;
}

dl.table.table-popular::before {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 2.5rem;
  background-image: url(../image/no1-popular.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-20deg);
  top: -0.125rem;
  left: -0.875rem;
}
@media screen and (min-width: 768px) {
  dl.table.table-popular::before {
    width: 6.25rem;
    height: 5rem;
    transform: rotate(-18deg);
    top: 0;
    left: -0.5rem;
  }
}

dl.table:nth-child(n+2) {
  padding-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  dl.table:nth-child(n+2) {
    padding-top: 1.875rem;
  }
}

div.table__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

div.table__wrapper dt {
  width: 10.625rem;
  background-color: #BA852A;
  color: #ffffff;
  font-weight: 300;
  padding: 0.5625rem 0;
  border: 1px solid #707070;
  text-align: center;
}
@media screen and (min-width: 768px) {
  div.table__wrapper dt {
    width: 31.25rem;
    font-size: 1.25rem;
  }
}

div.table__wrapper dd {
  width: 10.625rem;
  background-color: #ffffff;
  border-right: 1px solid #707070;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  text-align: right;
  padding: 0.5625rem 0.3125rem 0.5625rem 0;
}
@media screen and (min-width: 768px) {
  div.table__wrapper dd {
    width: 31.25rem;
    font-size: 1.25rem;
    padding-right: 1.5625rem;
  }
}

dd.table-text {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  dd.table-text {
    font-size: 1.125rem;
    line-height: 1;
    padding-top: 1.25rem;
  }
}

table {
  margin-top: 0.625rem;
  margin-inline: auto;
  border-spacing: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  table {
    border-spacing: 0 1.875rem;
    margin-top: 1.25rem;
  }
}

tr.table th {
  width: 10.625rem;
  background-color: #BA852A;
  color: #ffffff;
  font-weight: 300;
  padding: 0.5625rem 0;
  border: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  tr.table th {
    width: 31.25rem;
    font-size: 1.25rem;
  }
}

tr.table td {
  width: 10.625rem;
  background-color: #ffffff;
  border-right: 1px solid #707070;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  text-align: right;
  padding-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  tr.table td {
    width: 31.25rem;
    font-size: 1.25rem;
    padding-right: 1.5625rem;
  }
}

tr.table-text td {
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  tr.table-text td {
    font-size: 1.125rem;
    line-height: 1;
  }
}

.place-list {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .place-list {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.place-list-title.section-title {
  color: #ffffff;
  background-color: #e86a6a;
  border-radius: 10px;
  padding: 0.4375rem;
  width: 14.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .place-list-title.section-title {
    font-size: 1.75rem;
    line-height: 1.7142857143;
    width: 18.375rem;
  }
}

.place-list__img-wrapper {
  width: 21.25rem;
  margin-inline: auto;
  padding-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .place-list__img-wrapper {
    width: 62.5rem;
    padding-top: 1.875rem;
  }
}

.place-list__img-wrapper img {
  width: 100%;
  height: auto;
}

.landscape {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .landscape {
    padding-top: 3.125rem;
    padding-bottom: 6.25rem;
    background-image: url(../image/ribon.png);
    background-repeat: no-repeat;
    background-size: 128.125rem 36.0625rem;
    background-position: center;
  }
}

.voice {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.voice__items {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .voice__items {
    display: flex;
    margin-top: 3.125rem;
    justify-content: space-between;
  }
}

.voice__item {
  border: 1px solid #707070;
  border-radius: 10px;
  display: flex;
  padding: 2.5rem 1.5625rem 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .voice__item {
    width: 30.125rem;
    padding: 1.875rem 1.25rem 1.5625rem 1.25rem;
  }
}

.voice__item:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voice__item:nth-child(n+2) {
    margin-top: initial;
  }
}

.voice__item figure {
  margin-right: 1.75rem;
}

.voice__item figure img {
  width: 4.6875rem;
  height: auto;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .voice__item figure img {
    width: 5.625rem;
  }
}

.voice__item figure figcaption {
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice__item figure figcaption {
    font-size: 1rem;
    padding-top: 0.3125rem;
  }
}

.voice-text-title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voice-text-title {
    font-size: 1.5rem;
  }
}

.voice-text {
  padding-top: 0.625rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .voice-text {
    padding-top: 0.9375rem;
    font-size: 1.125rem;
  }
}

.trainer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .trainer {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.trainer::before {
  position: absolute;
  content: "";
  width: 212px;
  height: 719px;
  background-color: rgba(186, 133, 42, 0.3);
  border-radius: 100px;
  top: -75px;
  left: -162px;
  transform: rotate(60deg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .trainer::before {
    width: 21.375rem;
    height: 72.5625rem;
    border-radius: 200px;
    top: -9.5625rem;
    left: -4.875rem;
  }
}

.trainer__container {
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .trainer__container {
    padding-top: 3.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.trainer__img-wrapper {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .trainer__img-wrapper {
    width: 41.625rem;
  }
}

.trainer__img-wrapper img {
  width: 100%;
  height: auto;
}

.trainer__text-wrapper {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .trainer__text-wrapper {
    padding-top: initial;
  }
}

.trainer__name {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .trainer__name {
    font-size: 2rem;
    line-height: 1.6875;
  }
}

.trainer__name-text {
  font-size: 1rem;
  line-height: 1.6875;
  margin-top: -0.625rem;
}
@media screen and (min-width: 768px) {
  .trainer__name-text {
    font-size: 1.75rem;
    line-height: 1.7142857143;
  }
}

.trainer__career-container {
  padding-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .trainer__career-container {
    padding-top: 1.875rem;
  }
}

.career-title {
  font-size: 1.125rem;
  line-height: 1.7222222222;
}
@media screen and (min-width: 768px) {
  .career-title {
    font-size: 1.75rem;
    line-height: 1.7142857143;
  }
}

.career__text-wrapper {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .career__text-wrapper {
    padding-top: 0.625rem;
  }
}

.career-text {
  font-size: 1rem;
  line-height: 1.6875;
  border-bottom: 1px solid #000000;
  padding-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .career-text {
    font-size: 1.75rem;
    line-height: 1.2857142857;
    padding-left: initial;
  }
}

.career-text:nth-child(n+2) {
  padding-top: 0.9375rem;
}

.access {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .access {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.access::before {
  position: absolute;
  content: "";
  width: 212px;
  height: 719px;
  background-color: rgba(186, 133, 42, 0.3);
  border-radius: 100px;
  top: -247px;
  right: -138px;
  transform: rotate(68deg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .access::before {
    width: 21.375rem;
    height: 72.5625rem;
    border-radius: 200px;
    top: -11.4375rem;
    right: -2.9375rem;
    transform: rotate(60deg);
  }
}

.access__container {
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .access__container {
    display: flex;
    justify-content: space-between;
  }
}

.map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .map {
    width: 48rem;
    height: 31.25rem;
  }
}

.map iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 768px) {
  .map iframe {
    height: inherit !important;
  }
}

.access__address-container {
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .access__address-container {
    padding-top: initial;
  }
}

.access-info dt {
  background-color: #BA852A;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6875;
  padding-left: 0.625rem;
  padding-top: 0.1875rem;
  padding-bottom: 0.1875rem;
  font-weight: 600;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .access-info dt {
    font-size: 1.5rem;
    line-height: 1.7083333333;
    padding-top: 0.4375rem;
    padding-bottom: 0.4375rem;
    width: 43.9375rem;
  }
}

.access-info dd {
  padding-top: 0.625rem;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .access-info dd {
    font-size: 1.5rem;
    line-height: 1.25;
    padding-top: 0.5rem;
    padding-left: 0.3125rem;
    padding-bottom: 0.625rem;
  }
}

.experience {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .experience {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}

.experience::before {
  position: absolute;
  content: "";
  width: 2079px;
  height: 1505px;
  background-color: #f6f3eb;
  border-radius: 50%;
  z-index: -1;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .experience::before {
    height: 68.75rem;
  }
}

.experience__items {
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .experience__items {
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .experience__item {
    width: 28.125rem;
  }
}

.experience__item:nth-child(n+2) {
  padding-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .experience__item:nth-child(n+2) {
    padding-top: initial;
  }
}

.experience-step {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .experience-step {
    font-size: 2rem;
    line-height: 1.6875;
    text-align: right;
  }
}

.experience-step span.gold {
  font-size: 1.625rem;
  line-height: 1.6923076923;
}
@media screen and (min-width: 768px) {
  .experience-step span.gold {
    font-size: 2.5rem;
    line-height: 1.7;
  }
}

.experience__img-wrapper {
  width: 21.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .experience__img-wrapper {
    width: 28.125rem;
    margin-top: -1.0625rem;
  }
}

.experience__img-wrapper img {
  width: 100%;
  height: auto;
}

.experience-subtitle {
  font-size: 1.25rem;
  color: #BA852A;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .experience-subtitle {
    font-size: 1.875rem;
    line-height: 1.7;
  }
}

.experience-text {
  font-size: 1rem;
  line-height: 1.125;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .experience-text {
    font-size: 1.5rem;
    line-height: 1.25;
    padding-top: 1.5625rem;
  }
}

.banner {
  position: fixed;
  visibility: visible;
  opacity: 1;
  width: 100%;
  max-width: inherit;
  padding: 0 12px;
  top: auto;
  right: 0;
  bottom: 12px;
  left: 0;
  transform: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .banner {
    width: 31.25rem;
    margin: auto;
    top: initial;
    right: -11.375rem;
    left: initial;
    z-index: 99;
    transform: rotate(90deg);
    visibility: initial;
    bottom: 18.75rem;
  }
}

.banner a {
  display: block;
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.overflow {
  overflow: hidden;
}

/* ===== FAQ ===== */
.faq {
  padding: 60px 0;
  background: #faf9f7;
}
.faq-title {
  text-align: center;
  margin-bottom: 40px;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.faq__question {
  padding: 20px 24px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 48px;
  line-height: 1.6;
}
.faq__question::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #c8a84e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
}
.faq__answer {
  padding: 0 24px 20px 48px;
  line-height: 1.8;
  color: #555;
  font-size: 0.95rem;
}

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