@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-size: 62.5%;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #000;
  font-size: 1.6rem;
  color: #c0a100;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }
}

.wrapper {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

.nowrap {
  flex-wrap: nowrap;
}

/* inner */
.inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 928px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 928px) {
  .tab_db {
    display: block;
  }
}

.top_btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: 80px;
  height: 80px;
  transition: 0.3s;
  z-index: 10000;
  opacity: 0;
}
@media (max-width: 928px) {
  .top_btn {
    bottom: 60px;
    right: -20px;
  }
}
@media (max-width: 768px) {
  .top_btn {
    bottom: 40px;
    right: -20px;
  }
}
.top_btn img {
  border-radius: 3px;
  width: 50%;
}

.top_btn.active {
  opacity: 1;
}

/* スライダー */
.slick-arrow:before {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px;
  color: #fd7627;
}

.slick-next:before {
  content: "\f054";
  background-size: contain !important;
}

.slick-prev:before {
  content: "\f053";
  background-size: contain !important;
}

.slick-arrow {
  z-index: 2 !important;
  width: 60px !important;
  height: 60px !important;
}

.slick-next {
  right: -30px !important;
}
@media (max-width: 768px) {
  .slick-next {
    right: 0 !important;
  }
}

.slick-prev {
  left: -50px !important;
}
@media (max-width: 768px) {
  .slick-prev {
    left: -20px !important;
  }
}

.slick-dots li button:before {
  opacity: 1;
  color: #fff;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fd7627;
}

.accordion-container {
  width: 100%;
  margin: auto;
}

.accordion-item {
  color: #000;
  margin-bottom: 10px;
}

.accordion-answer {
  display: none;
  padding: 10px;
  background-color: #404043;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 20px;
}

#form_ank {
  margin-top: -80px;
  padding-top: 80px;
}
@media (max-width: 768px) {
  #form_ank {
    margin-top: -60px;
    padding-top: 60px;
  }
}

.common_ttl {
  text-align: center;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .common_ttl {
    margin-bottom: 15px;
  }
}
.common_ttl span {
  display: block;
  font-size: 1.4rem;
  color: #C0A100;
}

/* SNSアイコンエリア */
.social-icons {
  display: flex;
  gap: 15px;
  /* アイコン間のスペース */
}
.social-icons .icon {
  width: 30px;
  /* アイコンのサイズ */
  height: auto;
}
@media (max-width: 768px) {
  .social-icons .icon {
    width: 25px;
  }
}

/* 下層ページ共通 */
header {
  position: fixed;
  background-color: #000;
  height: 80px;
  top: 0;
  width: 100%;
  z-index: 100000;
  padding-top: 5px;
  color: #c0a100;
  display: flex;
  align-items: center;
  /* ヘッダー内の要素の配置 */
  /* ロゴとジム名エリア */
  /* レスポンシブ対応 */
}
@media (max-width: 768px) {
  header {
    height: 60px;
  }
}
header .header-container {
  width: 90%;
  max-width: 1920px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* 要素を自動的に折り返す */
}
header .logo-area {
  display: flex;
  align-items: center;
}
header .logo {
  width: 72px;
  /* ロゴのサイズ */
  margin-right: 10px;
}
header .gym-name {
  font-size: 16px;
  color: #c0a100;
  font-weight: 400;
}
@media (max-width: 768px) {
  header .header-container {
    text-align: center;
  }
  header .logo {
    width: 50px;
    /* ロゴを少し小さくする */
  }
  header .gym-name {
    font-size: 16px;
    /* ジム名の文字サイズを少し小さくする */
    margin-top: 10px;
  }
}

footer {
  padding: 80px 0;
  background: url("../images/bg_footer.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  /* 横幅を指定するための要素 */
}
@media (max-width: 768px) {
  footer {
    padding: 40px 0;
  }
}
footer .gmap {
  max-width: 1000px;
  margin: 0 auto;
  /* ここに横幅を指定 */
}
footer .gmap .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 40%;
}
footer .gmap .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
footer .ftr_logo {
  max-width: 124px;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  footer .ftr_logo {
    margin: 30px auto;
  }
}
footer .address {
  color: #fff;
}
@media (max-width: 768px) {
  footer .address {
    flex-basis: 100%;
    font-size: 14px;
  }
}
footer .address h3 {
  font-size: 2rem;
  font-weight: 400;
  background-color: #C0942C;
  text-align: center;
}
footer .address table td {
  padding: 8px 0;
  vertical-align: top;
}
footer .address table td:nth-child(even) {
  color: #C0942C;
}
footer .address .item {
  width: 100px;
}
@media (max-width: 768px) {
  footer .address .item {
    width: 68px;
  }
}
footer .address_img {
  width: 500px;
}
footer a {
  color: #fff;
  display: inline-block;
}
footer .social-icons {
  margin-top: 20px;
  justify-content: end;
}
@media (max-width: 768px) {
  footer .social-icons {
    justify-content: center;
  }
}
footer .copyright {
  text-align: center;
  font-size: 1.4rem;
}
footer .copyright a {
  color: #C0942C;
}

/*TOP*/
.image-container {
  position: relative;
  width: 100%;
  margin-top: 80px;
  font-size: 0;
}
@media (max-width: 928px) {
  .image-container {
    margin-top: 0;
  }
}
.image-container .points {
  position: absolute;
  left: 4%;
  bottom: 4%;
  z-index: 4;
  width: 15%;
  height: 32%;
}
@media (max-width: 928px) {
  .image-container .points {
    width: 30%;
    left: 65%;
    bottom: 50%;
  }
}

.mv_cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
  padding: 50px;
}
@media (max-width: 928px) {
  .mv_cta {
    width: 90%;
    padding: 0;
  }
}
.mv_cta .text-area {
  position: relative;
}
.mv_cta .text-area .cta-button {
  width: 100%;
  max-width: 420px;
  text-align: center;
  background-image: linear-gradient(90deg, rgb(255, 82, 0), rgb(249, 180, 0));
  color: #000;
  padding: 10px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  position: absolute;
  top: 90%;
  right: 5%;
  font-size: 1.6rem;
}
@media (max-width: 928px) {
  .mv_cta .text-area .cta-button {
    position: relative;
    top: 0;
    right: auto;
    margin: 10px auto;
    display: block;
  }
}
.mv_cta .text-area .cta-button:hover {
  opacity: 1;
}
.mv_cta .text-area .cta-button::after {
  width: 100%;
  max-width: 420px;
  text-align: center;
  background-image: linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
  color: #000;
  padding: 10px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  position: absolute;
  transition-duration: 0.3s;
  opacity: 0;
  content: "今すぐ500円で体験申し込み";
  z-index: 0;
  top: 0;
  left: 0;
}
.mv_cta .text-area .cta-button:hover::after {
  opacity: 1;
}

.multiply {
  position: relative;
  background-color: #333;
  font-weight: 100;
}
.multiply::after {
  content: "×";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  line-height: 0;
}
.multiply p {
  text-align: center;
  background-color: #000;
  border: 1px solid #a2801c;
  border-radius: 10px;
  padding: 20px 0;
  color: #fff;
  font-size: 3rem;
  max-width: 800px;
  margin-inline: auto;
  letter-spacing: 0.2em;
  box-shadow: 0px 0px 20px -5px #000;
  font-weight: 500;
}
.multiply p:first-child {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .multiply p {
    padding: 10px 0;
    font-size: 2.4rem;
  }
}

.pc_bg_belt_01 {
  position: absolute;
  left: 0;
  bottom: -35%;
}
@media (max-width: 928px) {
  .pc_bg_belt_01 {
    display: none;
  }
}

/* 親要素の設定 */
.container {
  position: relative;
  /* 子要素を重ねるために relative を使用 */
  width: 100%;
  /* 親要素の幅を画面いっぱいに */
  max-width: 1200px;
  max-height: 1080px;
  margin: 0 auto;
  /* 中央に配置 */
}

/* 背景画像の設定 */
.background-image {
  width: 100%;
  /* 背景画像の幅をコンテナいっぱいに広げる */
  height: auto;
  /* 縦横比を保つ */
  display: block;
  /* ブロック要素として表示 */
}

/* 重ねる画像の基本設定 */
.overlay-image {
  position: absolute;
  /* 背景画像に対して自由に配置できるようにabsoluteを指定 */
  width: 30%;
  /* 画像の幅を親要素に対して30%に設定 */
  height: auto;
  /* 画像の縦横比を保つ */
}

/* 個別の画像配置設定 */
/* 画像1 */
.image1 {
  width: 15%;
  top: 65%;
  left: 10%;
}

/* 画像2 */
.image2 {
  width: 45%;
  top: 64%;
  left: 30%;
}

.bg_body_01 {
  position: relative;
  background: url("../images/bg_body_01.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/*-------------------------------------------
悩み解決
-------------------------------------------*/
.hero-section {
  position: relative;
  /* background-image: url('gym-background.jpg'); */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0;
}
@media (max-width: 928px) {
  .hero-section {
    background: url("../images/bg_body_01_sp_01.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.hero-section .overlay-images {
  position: absolute;
  right: -340px;
  top: 130px;
}
@media (max-width: 928px) {
  .hero-section .overlay-images {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto 40px;
  }
}
.hero-section .hero-content {
  position: relative;
  color: white;
  /* 大きな文字で太字 */
  /* 小さい文字で細字 */
}
.hero-section .hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  letter-spacing: 10px;
  font-weight: 300;
}
@media (max-width: 928px) {
  .hero-section .hero-content h1 {
    font-size: 2.4rem;
    letter-spacing: 2px;
    line-height: 1.3;
    font-weight: 400;
  }
}
.hero-section .hero-content .underline {
  width: 30%;
  /* 線の幅を自由に調整 */
  height: 1px;
  /* 線の太さ */
  background-color: #fff;
  /* 線の色 */
  margin: 0 auto 30px auto;
  /* 中央揃えと下部の余白 */
}
.hero-section .hero-content .icons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  gap: 15px;
  filter: drop-shadow(0 0 10px #000);
}
@media (max-width: 768px) {
  .hero-section .hero-content .icons {
    display: none;
  }
}
.hero-section .hero-content .icons_sp {
  display: none;
}
@media (max-width: 768px) {
  .hero-section .hero-content .icons_sp {
    display: block;
  }
}
.hero-section .hero-content .yellow-banner {
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(192, 161, 0));
  padding: 30px 0 25px;
  margin-top: -70px;
  border-radius: 5px;
}
@media (max-width: 928px) {
  .hero-section .hero-content .yellow-banner {
    border-radius: 15px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content .yellow-banner {
    margin-top: -54px;
  }
}
.hero-section .hero-content .large-bold {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 10px;
}
@media (max-width: 928px) {
  .hero-section .hero-content .large-bold {
    font-size: 2rem;
    letter-spacing: 4px;
  }
}
.hero-section .hero-content .small-thin {
  font-size: 16px;
  /* 小さい文字サイズ */
  font-weight: lighter;
  /* 細い文字 */
  color: #fff;
  /* グレーの文字色 */
}
@media (max-width: 928px) {
  .hero-section .hero-content .small-thin {
    font-size: 14px;
  }
}
.hero-section .hero-content .textimg-box {
  margin-top: 41px;
}

/*-------------------------------------------
疑問解消
-------------------------------------------*/
.kick-box-section {
  padding: 95px 0;
}
@media (max-width: 928px) {
  .kick-box-section {
    background: url("../images/bg_body_01_sp_02.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 30px 0 0;
  }
}

.kick-box {
  position: relative;
  max-width: 1070px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 16px 10px;
}

.kick-box p {
  font-size: 3.2rem;
  font-weight: normal;
  color: #fff;
}
@media (max-width: 928px) {
  .kick-box p {
    text-align: center;
    font-size: 2rem;
  }
}

.diagonal-line {
  width: 100px;
  height: 1px;
  background-color: white;
  position: absolute;
  bottom: -25px;
  left: 55%;
  transform: rotate(-60deg);
}

.container1,
.container2,
.container3 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0 20px 20px;
  background-color: #fff;
  height: 300px;
  margin: 50px auto 70px;
}
@media (max-width: 928px) {
  .container1,
  .container2,
  .container3 {
    padding: 0;
    flex-direction: column-reverse;
    height: auto;
  }
}
@media (max-width: 768px) {
  .container1,
  .container2,
  .container3 {
    margin: 20px auto;
  }
}

@media (max-width: 928px) {
  .container2 {
    flex-direction: column;
  }
}

@media (max-width: 928px) {
  .container3 {
    margin-bottom: 470px;
  }
}
@media (max-width: 768px) {
  .container3 {
    margin-bottom: 200px;
  }
}

.text-box1,
.text-box2,
.text-box3 {
  position: relative;
  color: #c0a100;
  font-size: 18px;
  flex-basis: 50%;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 50px;
}
@media (max-width: 928px) {
  .text-box1,
  .text-box2,
  .text-box3 {
    flex-basis: 100%;
    padding: 30px;
    margin-bottom: 49px;
  }
}
@media (max-width: 768px) {
  .text-box1,
  .text-box2,
  .text-box3 {
    padding: 25px 14px;
    margin-bottom: 39px;
  }
}

.text-box1-1,
.text-box2-1,
.text-box3-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3.2rem;
  font-weight: 400;
  color: #c0a100;
  letter-spacing: 10px;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .text-box1-1,
  .text-box2-1,
  .text-box3-1 {
    letter-spacing: 4px;
  }
}
@media (max-width: 928px) {
  .text-box1-1,
  .text-box2-1,
  .text-box3-1 {
    letter-spacing: 2px;
    flex-direction: row-reverse;
    justify-content: center;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .text-box1-1,
  .text-box2-1,
  .text-box3-1 {
    font-size: 2.4rem;
  }
}
.text-box1-1 span,
.text-box2-1 span,
.text-box3-1 span {
  font-family: "Poppins", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 0;
  letter-spacing: 4px;
}
@media (max-width: 928px) {
  .text-box1-1 span,
  .text-box2-1 span,
  .text-box3-1 span {
    font-size: 3.2rem;
  }
}

.text-box2-1 {
  flex-direction: row-reverse;
}

.text-box1-2,
.text-box2-2,
.text-box3-2 {
  font-size: 16px;
  font-weight: normal;
  color: #000;
}

.assertion,
.assertion_r {
  position: absolute;
  bottom: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 8px 30px;
  z-index: 1;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 768px) {
  .assertion,
  .assertion_r {
    font-size: 1.4rem;
    letter-spacing: 0px;
    width: 100%;
    text-align: center;
    padding: 8px;
  }
}
.assertion::before,
.assertion_r::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(192, 161, 0));
  transform: skewX(-15deg);
}

.assertion_r {
  transform: translateX(-60%);
}
@media (max-width: 928px) {
  .assertion_r {
    transform: translateX(-50%);
  }
}

.image-box1 {
  position: relative;
  z-index: 2;
  flex-basis: 50%;
  display: flex;
}
@media (max-width: 928px) {
  .image-box1 {
    width: 100%;
    border-top: 4px solid #2c2c2c;
    margin-top: 2px;
  }
}

.image-box2,
.image-box3 {
  height: 100%;
  display: flex;
  align-items: center;
  flex-basis: 50%;
}
@media (max-width: 928px) {
  .image-box2,
  .image-box3 {
    width: 100%;
  }
}

@media (max-width: 928px) {
  .image-box3 picture {
    width: 100%;
    display: flex;
  }
}

.image-right-top {
  margin-right: -50px;
}

.image-left-top {
  margin-left: -40px;
  margin-top: 30px;
}
@media (max-width: 928px) {
  .image-left-top {
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    top: 358px;
    float: left;
  }
}
@media (max-width: 768px) {
  .image-left-top {
    top: 269px;
  }
}

.clearfix {
  clear: both;
  height: 1px;
}

.banner-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 120px;
}
.banner-container p {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .banner-container {
    padding-top: 60px;
  }
}

.cta_btns {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 100%;
  gap: 40px;
}
@media (max-width: 928px) {
  .cta_btns {
    position: relative;
    gap: 20px;
    margin-top: -25px;
  }
}
.cta_btns .banner-text1,
.cta_btns .banner-text2 {
  width: 100%;
  max-width: 400px;
  text-align: center;
  background-image: linear-gradient(90deg, rgb(255, 82, 0), rgb(249, 180, 0));
  color: #fff;
  padding: 23px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
}
@media (max-width: 928px) {
  .cta_btns .banner-text1,
  .cta_btns .banner-text2 {
    padding: 12px 0;
  }
}
.cta_btns .banner-text1 a,
.cta_btns .banner-text2 a {
  display: flex;
  font-size: 2rem;
  color: #fff;
  justify-content: center;
  align-items: center;
}
@media (max-width: 928px) {
  .cta_btns .banner-text1 a,
  .cta_btns .banner-text2 a {
    font-size: 1.6rem;
  }
}
.cta_btns .banner-text1 a i,
.cta_btns .banner-text2 a i {
  margin-right: 12px;
  font-size: 2.6rem;
}
.cta_btns .banner-text2 {
  background-image: linear-gradient(0deg, #009B33, #009B33);
}

.bg_body_02 {
  background: url("../images/bg_body_02.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.three_point {
  padding-bottom: 160px;
}
.three_point .point_ttl {
  position: relative;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 8px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.three_point .point_ttl::after {
  content: "";
  width: 400px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -16%;
  left: 50%;
  transform: translateX(-50%);
}
.three_point .point_ttl img {
  width: 192px;
  margin-left: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.three_point .point_box {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.three_point .point_1,
.three_point .point_2,
.three_point .point_3 {
  width: 100%;
  max-width: 380px;
  background-color: #fff;
}
.three_point .point_1 p,
.three_point .point_2 p,
.three_point .point_3 p {
  font-weight: 400;
  color: #000;
  padding: 18px 30px;
}
.three_point .point_sub_ttl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: end;
  font-size: 2.4rem;
  margin-top: -30px;
}
@media (max-width: 1200px) {
  .three_point .point_sub_ttl {
    margin-top: -74px;
  }
}
@media (max-width: 1200px) {
  .three_point .point_sub_ttl span {
    flex-basis: 100%;
    text-align: center;
  }
}
.three_point .point_sub_ttl img {
  width: -moz-fit-content;
  width: fit-content;
  height: 69px;
}
@media (max-width: 768px) {
  .three_point .point_sub_ttl img {
    width: 50%;
    height: 69px;
    filter: grayscale(1) brightness(3);
  }
}

.staff {
  position: relative;
  color: #fff;
}
.staff .bt_text {
  position: absolute;
  left: 0;
  top: -70px;
}
.staff .bg_staff_1 {
  position: relative;
  margin-bottom: 30px;
}
.staff .bg_staff_1::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 12%;
  right: -25%;
  z-index: 0;
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(13, 22, 31));
  transform: skewX(-15deg);
}
.staff .bg_staff_2 {
  position: relative;
  /*写真が来たらここを消す*/
}
.staff .bg_staff_2::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: -25%;
  right: 9%;
  z-index: 0;
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(13, 22, 31));
  transform: skewX(-15deg);
}
.staff .bg_staff_2 .img_staff_2 {
  position: relative;
}
.staff .bg_staff_2 .img_staff_2::before {
  content: "写真準備中";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 10;
}
.staff .bg_staff_2 .img_staff_2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.staff .staff_box {
  max-width: 1100px;
  position: relative;
}
.staff .staff_box .staff_desc {
  flex-basis: 65%;
}
@media (max-width: 928px) {
  .staff .staff_box .staff_desc {
    flex-basis: 50%;
  }
}
.staff .staff_box .staff_name {
  font-size: 2.4rem;
  font-weight: 400;
  padding: 16px 0;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: wrap;
}
.staff .staff_box .staff_name img {
  width: 166px;
}
@media (max-width: 928px) {
  .staff .staff_box .staff_name span {
    text-align: center;
    flex-basis: 100%;
  }
}
.staff .staff_box .staff_name span i {
  font-style: normal;
}
@media (max-width: 928px) {
  .staff .staff_box .staff_name span i {
    font-size: 12px;
  }
}
.staff .staff_box .staff_prof {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 14%;
}
@media (max-width: 928px) {
  .staff .staff_box .staff_prof {
    margin-left: 0;
  }
}
.staff .staff_box .staff_prof ul {
  flex-basis: 40%;
}
@media (max-width: 928px) {
  .staff .staff_box .staff_prof ul {
    flex-basis: 100%;
  }
}
.staff .staff_box .staff_prof ul li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.staff .staff_box .staff_prof ul li span {
  width: 160px;
}
@media (max-width: 928px) {
  .staff .staff_box .staff_prof ul li {
    font-size: 1.2rem;
  }
}
.staff .staff_box .staff_prof .comment {
  flex-basis: 60%;
}
.staff .staff_box .staff_prof .comment h5 {
  font-size: 2rem;
  background-color: #000;
  padding: 4px 20px;
}
.staff .staff_box .staff_prof .comment p {
  margin: 10px 20px;
  line-height: 1.8;
}
.staff .staff_box .staff_prof_2 {
  margin-left: 5%;
}
.staff .staff_box .img_staff_1 img {
  width: 320px;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff .staff_box .img_staff_2 img {
  width: 320px;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff .staff_box_1 {
  transform: translate(100px, -40px);
}
@media (max-width: 928px) {
  .staff .staff_box_1 {
    transform: translate(0, 0);
  }
}
.staff .staff_box_2 {
  transform: translate(0, -40px);
}
@media (max-width: 928px) {
  .staff .staff_box_2 {
    transform: translate(0, 0);
  }
}

.flow .flow_list {
  margin-top: 40px;
  max-width: 850px;
  margin-inline: auto;
}
@media (max-width: 928px) {
  .flow .flow_list .flow_01,
  .flow .flow_list .flow_02,
  .flow .flow_list .flow_03 {
    width: 90%;
    margin: auto;
  }
}
.flow .flow_list .flow_02,
.flow .flow_list .flow_03 {
  margin-top: -20px;
}
@media (max-width: 928px) {
  .flow .flow_list .flow_02,
  .flow .flow_list .flow_03 {
    margin-top: -30px;
  }
}

.system {
  padding: 40px 0;
}
@media (max-width: 928px) {
  .system {
    padding: 20px 0;
  }
}
.system h4 {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  color: #fff;
}
.system .system_img {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 928px) {
  .system .system_img {
    padding: 20px 8px;
  }
}
.system .system_img .icon_natsu {
  width: 175px;
  height: auto;
  position: absolute;
  top: -40px;
  left: -20px;
}
@media (max-width: 928px) {
  .system .system_img .icon_natsu {
    width: 74px;
    top: -15px;
    left: 0;
  }
}
.system .parent {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  margin-top: 30px;
  font-size: 1.8rem;
  width: 1200px;
}
@media (max-width: 928px) {
  .system .parent {
    margin-top: 0;
  }
}
.system .parent div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.system .div1 {
  grid-area: 1/1/2/2;
}
.system .div2 {
  grid-area: 1/2/2/3;
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(192, 161, 0));
  border-radius: 10px 10px 0 0;
}
.system .div2 p {
  font-size: 2rem;
  color: #fff;
}
.system .div2 p span {
  font-size: 1.4rem;
}
.system .div3 {
  grid-area: 1/3/2/4;
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(192, 161, 0));
  border-radius: 10px 10px 0 0;
}
.system .div3 p {
  font-size: 2rem;
  color: #fff;
}
.system .div3 p span {
  font-size: 1.4rem;
}
.system .div4 {
  grid-area: 1/4/2/5;
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(192, 161, 0));
  border-radius: 10px 10px 0 0;
}
.system .div4 p {
  font-size: 2rem;
  color: #fff;
}
.system .div4 p span {
  font-size: 1.4rem;
}
.system .div5 {
  grid-area: 2/1/3/2;
  background-image: linear-gradient(90deg, rgb(255, 82, 0), rgb(249, 180, 0));
  color: #fff;
  font-weight: 600;
  border-radius: 10px 0 0 10px;
}
.system .div6 {
  grid-area: 2/2/3/3;
  background-color: #fff;
}
.system .div6 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div6 p span {
  font-size: 2rem;
}
.system .div7 {
  grid-area: 2/3/3/4;
  background-color: #fff;
}
.system .div7 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div7 p span {
  font-size: 2rem;
}
.system .div8 {
  grid-area: 2/4/3/5;
  background-color: #fff;
}
.system .div8 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div8 p span {
  font-size: 2rem;
}
.system .div9 {
  grid-area: 3/1/4/2;
  background-image: linear-gradient(90deg, rgb(255, 82, 0), rgb(249, 180, 0));
  color: #fff;
  font-weight: 600;
  border-radius: 10px 0 0 10px;
}
.system .div10 {
  grid-area: 3/2/4/3;
  background-color: #fff;
  flex-wrap: wrap;
}
.system .div10 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div10 p span {
  font-size: 2rem;
}
.system .div11 {
  grid-area: 3/3/4/4;
  background-color: #fff;
}
.system .div11 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div11 p span {
  font-size: 2rem;
}
.system .div12 {
  grid-area: 3/4/4/5;
  background-color: #fff;
  display: flex;
  align-items: baseline !important;
}
.system .div12 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div12 p span {
  font-size: 2rem;
}
.system .div12 i {
  color: #EE0011;
}
.system .div12 p.border {
  font-size: 2rem;
}
.system .div12 p.border span {
  font-size: 1.4rem;
}
.system .div12 p.text_red {
  color: #EE0011;
}
.system .div13 {
  grid-area: 4/1/5/2;
  background-image: linear-gradient(90deg, rgb(255, 82, 0), rgb(249, 180, 0));
  color: #fff;
  font-weight: 600;
  border-radius: 10px 0 0 10px;
}
.system .div14 {
  grid-area: 4/2/5/3;
  background-color: #fff;
}
.system .div14 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div14 p span {
  font-size: 2rem;
}
.system .div15 {
  grid-area: 4/3/5/4;
  background-color: #fff;
}
.system .div15 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div15 p span {
  font-size: 2rem;
}
.system .div16 {
  grid-area: 4/4/5/5;
  background-color: #fff;
}
.system .div16 p {
  font-size: 3.2rem;
  font-weight: 600;
}
.system .div16 p span {
  font-size: 2rem;
}
.system .recommend {
  position: absolute;
  bottom: 0;
  color: #FDAB00;
  font-size: 2rem;
  font-weight: 600;
  padding: 0 40px;
  z-index: 1;
  bottom: -20px;
  left: 3%;
}
.system .recommend::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #000;
  transform: skewX(-15deg);
}
.system .js-scrollable {
  overflow: inherit !important;
}
@media (max-width: 1200px) {
  .system .js-scrollable {
    overflow: auto !important;
    height: 360px;
  }
}
.system .system_notice {
  color: #fff;
  text-align: center;
  margin-top: 28px;
}
.system .bg_membership_fee {
  background: #303033;
  width: 100vw;
  margin: 60px calc(50% - 50vw) 1px;
}
.system .membership_fee {
  padding: 40px 40px 80px;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 928px) {
  .system .membership_fee {
    width: 90%;
    padding: 40px 0 100px;
  }
}
.system .membership_fee .membership_fee_box {
  position: relative;
  border: 1px solid #fff;
  padding: 40px 0 60px;
  text-align: center;
}
.system .membership_fee .membership_fee_box img {
  max-width: 767px;
}
@media (max-width: 928px) {
  .system .membership_fee .membership_fee_box img {
    max-width: 90%;
  }
}
.system .membership_fee .membership_fee_box .fee_notice {
  position: absolute;
  left: 50%;
  bottom: -18%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  background-image: linear-gradient(90deg, rgb(101, 86, 0), rgb(192, 161, 0));
  width: 400px;
  height: 80px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 928px) {
  .system .membership_fee .membership_fee_box .fee_notice {
    font-size: 1.6rem;
    width: 90%;
    height: 60px;
    bottom: -12%;
  }
}

.form {
  padding-top: 120px;
}

.bg_movie {
  position: absolute;
  width: 100%;
  height: 400px;
  overflow: hidden;
  z-index: -1;
  margin-top: -90px;
  border-radius: 50px;
}
.bg_movie::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  /* ドット模様がビデオの操作を邪魔しないようにする */
}
.bg_movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 動画を指定された領域にフィットさせる */
  -o-object-position: center;
     object-position: center;
  /* 中心に位置させる */
}
.bg_movie .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
}

.form_area {
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  margin: auto;
  padding: 60px;
}
@media (max-width: 928px) {
  .form_area {
    padding: 20px;
  }
}
.form_area .contact_steps {
  width: 490px;
  margin: 0 auto 50px;
}
@media (max-width: 928px) {
  .form_area .contact_steps {
    width: 100%;
    margin-bottom: 30px;
  }
}
.form_area .contact_steps .contact_step {
  width: 30%;
  position: relative;
}
.form_area .contact_steps .contact_step.active p {
  transform: translateY(-10px);
}
.form_area .contact_steps .contact_step.active p span {
  width: 40px;
  height: 40px;
  z-index: 10;
  margin-bottom: 0;
  background-color: #fff;
}
.form_area .contact_steps .contact_step.active p span::before, .form_area .contact_steps .contact_step.active p span::after {
  position: absolute;
  border-radius: 50%;
}
.form_area .contact_steps .contact_step.active p span::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #e3d9ba;
  transform: none;
  top: 0;
  left: 0;
}
.form_area .contact_steps .contact_step.active p span::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #a2801c;
  z-index: 2;
}
.form_area .contact_steps .contact_step::after {
  content: "";
  position: absolute;
  top: 9px;
  left: -37%;
  width: 100%;
  height: 2px;
  background-color: #1A1A1A;
  z-index: 0;
}
@media (max-width: 928px) {
  .form_area .contact_steps .contact_step::after {
    left: -39%;
  }
}
.form_area .contact_steps .contact_step:first-child::after {
  content: none;
}
.form_area .contact_steps .contact_step:nth-child(3)::after {
  width: 100%;
  left: -43%;
}
.form_area .contact_steps .contact_step p {
  color: #1A1A1A;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 928px) {
  .form_area .contact_steps .contact_step p {
    font-size: 16px;
  }
}
.form_area .contact_steps .contact_step p span {
  width: 20px;
  height: 20px;
  margin: 0 auto 9px;
  border-radius: 50%;
  display: block;
  background-color: #1A1A1A;
  position: relative;
  z-index: 1;
}
.form_area .contact_steps .contact_step.contact_step02.active::after {
  width: 85%;
}
@media (max-width: 928px) {
  .form_area .contact_steps .contact_step.contact_step02.active::after {
    width: 78%;
    left: -40%;
  }
}
.form_area .confirm_page .contact_steps .contact_step.active::after {
  left: -50%;
  width: 87%;
}
.form_area .confirm_page .contact_steps .contact_step:last-child::after {
  width: 90%;
  left: -37%;
}
.form_area .thanks_page .contact_steps .contact_step::after {
  left: -45%;
}
.form_area .thanks_page .contact_steps .contact_step.active::after {
  left: -50%;
  width: 87%;
}
.form_area .thanks_page .contact_steps .contact_step:last-child::after {
  width: 81%;
  left: -44%;
}
.form_area .date_text {
  color: #000;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
}
.form_area p {
  color: #000;
  font-weight: 600;
}
.form_area .date_box {
  margin: 20px auto;
}
.form_area input[type=text] {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
}
@media (max-width: 928px) {
  .form_area input[type=text] {
    margin-left: 0;
  }
}
.form_area #form_submit {
  text-align: center;
  margin: 60px auto 0;
}
.form_area input[type=button] {
  border: 1px solid #C0A100;
  color: #fff;
  border-radius: 28px;
  margin: auto;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #C0A100;
  font-size: 18px;
  font-weight: 600;
}

.faq {
  background: url("../images/bg_faq.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.faq h2 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 928px) {
  .faq h2 {
    font-size: 0.4rem;
  }
}
.faq .faq_sub {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}
.faq .accordion-item img {
  width: 17px;
  margin-right: 10px;
}
.faq .accordion-question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px 4px 20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq .accordion-question::after {
  content: "";
  background-image: url("../images/icon_faq.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  width: 92px;
  height: 60px;
  position: absolute;
  right: 0;
}
.faq .accordion-question span {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  z-index: 6;
  filter: grayscale(1) brightness(3);
}
@media (max-width: 928px) {
  .faq .accordion-question span {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-right: 46px;
  }
}
.faq .accordion-question .icon {
  color: #fff;
  font-size: 3rem;
  padding-right: 0;
}

.campaign_2025 img {
  max-width: 900px;
  margin: auto;
  display: block;
}
@media (max-width: 928px) {
  .campaign_2025 {
    margin-top: -70px;
    margin-bottom: 30px;
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(360deg);
  }
}
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.loading {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading .loading_logo {
  opacity: 0;
}
.loading .loading_logo h3 {
  font-size: 20px;
  font-weight: 400;
  color: #c0a100;
}
.loading p {
  opacity: 0;
  font-size: 36px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 10px;
  font-style: italic;
}
@media (max-width: 768px) {
  .loading p {
    font-size: 22px;
  }
}

/* CSS for pc_bg_belt_01 */
.pc_bg_belt_01 {
  position: absolute;
  left: 0;
  bottom: -35%;
  transform: translate(-100%, 100%);
  /* 初期位置：左下の画面外 */
  transition: transform 1s ease-in-out;
  /* アニメーションの設定 */
}
@media (max-width: 928px) {
  .pc_bg_belt_01 {
    display: none;
  }
}

.pc_bg_belt_01.animate {
  transform: translate(0, 0);
  /* 最終位置：画面内 */
}

.fade-in {
  opacity: 0;
  /* 初期状態は透明 */
  transform: translateY(10px);
  /* 初期位置は少し下 */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* アニメーションの設定 */
}

.fade-in-left {
  opacity: 0;
  /* 初期状態は透明 */
  transform: translateX(10px);
  /* 初期位置は少し下 */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* アニメーションの設定 */
}

.fade-in-right {
  opacity: 0;
  /* 初期状態は透明 */
  transform: translateX(-10px);
  /* 初期位置は少し下 */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* アニメーションの設定 */
}

/* アニメーションが適用された状態 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
  /* 最終位置 */
}

.fade-in-left.show {
  opacity: 1;
  transform: translateX(0);
  /* 最終位置 */
}

.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
  /* 最終位置 */
}

/* 各遅延時間に対応するクラス */
.fade-in-2.show {
  transition-delay: 0.5s;
  /* 1秒後に出現 */
}

.fade-in-3.show {
  transition-delay: 1s;
  /* 1.5秒後に出現 */
}

.fade-in-4.show {
  transition-delay: 1.5s;
  /* 2秒後に出現 */
}

.mv_cta.fade-in {
  opacity: 0;
  /* 初期状態は透明 */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* ふわっとアニメーション */
  transform: translate(-50%, 10px);
}

/* アニメーションが適用された状態 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
  /* 最終位置 */
}

.points {
  opacity: 0;
  /* 初期状態は透明 */
  transform: translateY(10px);
  /* 初期位置は少し下 */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* アニメーションの設定 */
}

.points.show {
  opacity: 1;
  transform: translateY(0);
  /* 最終位置 */
}

.mv_cta {
  opacity: 0;
  /* 初期状態は透明 */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* ふわっとアニメーション */
  transform: translate(-50%, 10px);
}

.mv_cta.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.no-scroll {
  overflow: hidden;
  /* スクロールを無効化 */
}
.no-scroll.page-no-scroll {
  overflow: auto;
}

/* ポップアップ */
.gtm__modal-content {
  display: none;
  width: 80vw;
  background: #fff;
  padding: 20px;
  position: fixed;
  z-index: 9999;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 8px;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.2);
  color: #000;
}
@media (max-width: 768px) {
  .gtm__modal-content {
    padding: 14px;
  }
}

.gtm__modal-content p {
  font-weight: 400;
}
@media (max-width: 768px) {
  .gtm__modal-content p {
    font-size: 14px;
  }
}

.gtm__modal-content img {
  width: 100%;
}

#gtm__modal-wrapper {
  display: none;
}

#gtm__modal-wrapper.js-enable {
  display: block;
}

#gtm__modal-wrapper.js-enable .gtm__modal-content {
  display: block;
}

.gtm__modal-content br {
  display: none;
}

.gtm__modal-inner {
  display: flex;
  margin-top: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.gtm__modal-inner a {
  padding: 10px;
  background-image: linear-gradient(0deg, #009b33, #009b33);
  width: 60%;
  color: #fff;
  font-weight: bold;
  min-height: 48px;
}

.gtm__modal-inner button {
  padding: 10px;
  width: auto;
  background: #efefef;
  border: none;
}

.gtm__modal-inner #gtm__modal-continue-btn {
  background: #888;
  color: #333;
  font-weight: bold;
  flex: 1;
  margin-left: 15px;
  min-height: 48px;
}

#gtm__modal-wrapper.js-enable #gtm__modal-overlay {
  display: block;
}

/* 背景色 */
#gtm__modal-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .gtm__modal-content {
    width: auto;
    max-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .gtm__modal-content br {
    display: inline;
  }
  .gtm__modal-inner {
    flex-direction: column;
  }
  .gtm__modal-inner a {
    width: 80%;
  }
  .gtm__modal-inner button {
    width: 80%;
    margin-top: 20px;
  }
  .gtm__modal-inner #gtm__modal-continue-btn {
    margin-top: 20px;
    margin-left: 0;
  }
}
.form_item_wrap .form_item {
  margin-bottom: 3rem;
}
.form_item_wrap .form_item:last-child {
  margin-bottom: 0;
}
.form_item_wrap .form_item .form_item_text {
  width: 30%;
}
@media (max-width: 768px) {
  .form_item_wrap .form_item .form_item_text {
    width: 100%;
  }
}
.form_item_wrap .form_item .form_item_text p {
  color: #707f88;
}
.form_item_wrap .form_item .form_item_input {
  width: 65%;
}
@media (max-width: 768px) {
  .form_item_wrap .form_item .form_item_input {
    width: 100%;
  }
}
.form_item_wrap .form_item .form_item_input input,
.form_item_wrap .form_item .form_item_input textarea {
  border: 1px solid #dadada;
  border-radius: 0 0 3px 3px;
  padding: 15px 10px;
  width: 100%;
  font-size: 16px;
  margin: 0;
  max-width: 100%;
  border: 1px solid #ccd5dc;
}
@media (max-width: 768px) {
  .form_item_wrap .form_item .form_item_input input,
  .form_item_wrap .form_item .form_item_input textarea {
    font-size: 14px;
  }
}
.form_item_wrap .form_item .form_item_input.required_error {
  position: relative;
}
.form_item_wrap .form_item .form_item_input.required_error::after {
  content: url(../images/icon_error.png);
  position: absolute;
  right: 0;
  top: -7px;
  transform: scale(0.3);
}
.form_item_wrap .form_item .form_item_input.required_error input {
  border: 1px solid #707f88;
}
.form_item_wrap .form_item .form_item_input textarea {
  height: 200px;
}

.form_area .error-message {
  color: #cd0000;
  font-size: 14px;
  font-weight: normal;
  display: none;
}

.form_area .required_error_center {
  text-align: center;
}

.submit_wrap {
  margin-top: 4rem;
}
.submit_wrap div,
.submit_wrap a {
  width: 270px;
  margin: 0;
  display: block;
}
@media (max-width: 768px) {
  .submit_wrap div,
  .submit_wrap a {
    width: 100%;
  }
}
.submit_wrap #form_submit {
  margin: 0;
}
.submit_wrap #form_submit input {
  height: auto;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.submit_wrap #form_submit input:hover {
  background-color: #fff;
  color: #C0A100;
}
.submit_wrap #form_submit_prev {
  margin-right: 20px;
  background-color: #97a5b4;
  color: #fff;
  border-radius: 28px;
  padding-left: 1em;
  padding-right: 1em;
  max-width: 410px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: 1px solid #97a5b4;
}
@media (max-width: 768px) {
  .submit_wrap #form_submit_prev {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.submit_wrap #form_submit_prev:hover {
  background-color: #fff;
  color: #97a5b4;
  opacity: 1;
}

.guide_check {
  text-align: center;
  opacity: 0.5;
  transition: 0.3s;
  margin-top: 2rem;
}
.guide_check.active {
  opacity: 1;
}
@media (max-width: 768px) {
  .guide_check {
    margin-bottom: 50px;
  }
}
.guide_check input {
  display: none;
}
.guide_check label {
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  color: #000;
}
.guide_check label::before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 8px;
  display: block;
  width: 9px;
  height: 15px;
  border-right: 2px solid #97a5b4;
  border-bottom: 2px solid #97a5b4;
  transform: translateY(-2px) rotate(45deg);
  transition: opacity 0.2s linear;
  background-color: transparent;
  z-index: 10;
}
@media (max-width: 768px) {
  .guide_check label::before {
    width: 7px;
    height: 13px;
    top: 5px;
  }
}
.guide_check label::after {
  content: "";
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  border: 1.5px solid #97a5b4;
  top: -3px;
  bottom: 0;
  background-color: #fff;
  left: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .guide_check label::after {
    width: 22px;
    height: 22px;
    top: 0;
  }
}
.guide_check label a {
  color: #000;
  text-decoration: underline;
}
.guide_check input:checked + label:before {
  opacity: 1;
}

.last_text {
  text-align: center;
  margin-top: 4rem;
}
.last_text p {
  font-weight: normal;
}

.gold_btn {
  border: 1px solid #C0A100;
  color: #fff;
  border-radius: 28px;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  max-width: 410px;
  background: #C0A100;
  font-size: 18px;
  font-weight: 600;
}

.thanks_page {
  padding: 20rem 0 10rem;
}
.thanks_page h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #000;
}
.thanks_page .last_text {
  margin-bottom: 2rem;
}
.thanks_page .form_area .contact_steps .contact_step:nth-child(3)::after {
  width: 80%;
}
.thanks_page .form_area .contact_steps .contact_step::after {
  left: -47%;
}

.next_page {
  padding: 15rem 0 10rem;
}
@media (max-width: 768px) {
  .next_page {
    padding: 10rem 0;
  }
}
.next_page .form_area .contact_steps .contact_step::after {
  left: -47%;
  width: 83%;
}
@media (max-width: 768px) {
  .next_page .form_area .contact_steps .contact_step::after {
    left: -52%;
  }
}
.next_page .form_area .contact_steps .contact_step:nth-child(3)::after {
  width: 85%;
  left: -36%;
}
@media (max-width: 768px) {
  .next_page .form_area .contact_steps .contact_step:nth-child(3)::after {
    left: -28%;
  }
}

input[type=submit] {
  border: 1px solid #C0A100;
  color: #fff;
  border-radius: 28px;
  margin: auto;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #C0A100;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #fff;
  color: #C0A100;
}

#form_submit_button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  /* カーソルを変更してクリックが無効であることを示す */
}

.privacy {
  padding: 15rem 0 10rem;
}
@media (max-width: 768px) {
  .privacy {
    padding: 10rem 0rem;
  }
  .privacy .inner {
    width: 90%;
  }
}
.privacy p,
.privacy a {
  color: #fff;
}
@media (max-width: 768px) {
  .privacy p,
  .privacy a {
    font-size: 1.4rem;
  }
}
.privacy a {
  text-decoration: underline;
}
.privacy .privacy_text {
  margin-bottom: 3rem;
}
.privacy .privacy_item {
  margin-bottom: 5rem;
}
.privacy .privacy_item p {
  text-indent: -3rem;
  padding-left: 3rem;
}
.privacy .privacy_item:last-child {
  margin-bottom: 0;
}
.privacy .privacy_item:last-child p {
  text-indent: 0;
  padding-left: 0;
}
.privacy .privacy_item:nth-child(1) p, .privacy .privacy_item:nth-child(7) p {
  text-indent: 0;
  padding-left: 0;
}
.privacy .privacy_item h4 {
  font-size: 2rem;
  border-bottom: 1px dashed #C0A100;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .privacy .privacy_item h4 {
    font-size: 1.8rem;
  }
}

.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0);
  /* 透明な背景 */
}

.hero-section .hero-content .icons.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .hero-section .hero-content .icons.sp_db {
    display: flex;
  }
}

@media (max-width: 768px) {
  .staff .bg_staff_1::before,
  .staff .bg_staff_2::before {
    height: 65%;
    bottom: auto;
    right: -50px;
    left: auto;
    width: 100%;
    transform: skewX(-7deg);
  }
  .staff .staff_box .staff_name {
    width: 100%;
  }
  .staff .staff_box .staff_name span {
    width: calc(100% - 180px);
    flex-basis: auto;
  }
  .staff .staff_box .staff_prof ul li {
    font-size: 1.4rem;
  }
  .staff .staff_box .staff_desc {
    width: 100%;
    flex-basis: auto;
  }
  .staff .staff_box .img_staff_1,
  .staff .staff_box .img_staff_2 {
    width: 80%;
    margin: 0 auto 20px;
  }
  .staff .staff_box .img_staff_1 img,
  .staff .staff_box .img_staff_2 img {
    width: 100%;
    height: auto;
  }
  .staff .staff_box .comment {
    margin-top: 2rem;
  }
  .staff .staff_box .comment h5 {
    color: #C0A100;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .staff .staff_box .comment .comment_box {
    border: 1px solid #C0A100;
    padding: 20px 10px;
  }
  .staff .staff_box .comment .comment_box p {
    font-size: 14px;
  }
  .bg_body_02 {
    background: url(../images/bg_body_02_sp.jpg) center/cover no-repeat;
  }
  .banner-container {
    padding-bottom: 120px;
  }
  .three_point {
    position: relative;
    padding-bottom: 0;
    padding-top: 100px;
  }
  .three_point .slide-arrow {
    position: absolute;
    width: 45px !important;
    height: auto !important;
    top: 26%;
  }
  .three_point .slide-arrow.prev-arrow {
    left: -15px;
  }
  .three_point .slide-arrow.next-arrow {
    right: -15px;
  }
  .three_point .inner {
    position: relative;
    z-index: 1000;
  }
  .three_point .point_box_slide {
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  .three_point .point_box_slide .slick-track {
    display: flex;
  }
  .three_point .point_box_slide .slick-slide {
    height: auto !important;
  }
  .three_point .point_ttl_img {
    position: absolute;
    width: 50%;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  .three_point .point_ttl.sp_dn {
    display: none;
  }
  .three_point .point_item {
    margin: 0 10px;
    position: relative;
    z-index: 1000;
  }
  .three_point .point_item p {
    padding: 15px;
  }
  .three_point .point_item .point_sub_ttl {
    margin-top: 10px;
  }
  .three_point .point_item .point_sub_ttl span {
    position: absolute;
    top: 120px;
    left: 35%;
  }
  .hero-section {
    position: relative;
  }
  .hero-section .gym-background_sp_bg {
    position: absolute;
    top: 0;
    background: url(../images/gym-background_sp.jpg) top/cover no-repeat;
    height: 75%;
    width: 100%;
  }
  .hero-section .overlay_nayami_sp {
    position: absolute;
    left: 0;
    top: -120px;
  }
  .hero-section .icons.sp_dn {
    display: none;
  }
  .image-container {
    padding-bottom: 50px;
  }
  .mv_cta {
    padding: 0;
    margin-top: -70px;
    position: relative;
  }
  .mv_cta .text-area .cta-button {
    color: #fff;
    padding: 15px 0;
    width: 80%;
  }
  .accordion-answer p {
    padding-left: 0;
    text-indent: 0;
  }
  .flow {
    padding-bottom: 0;
  }
  footer {
    background: none;
  }
  footer .footer_bg {
    background: url(../images/bg_footer_sp.jpg) top/cover no-repeat;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  footer .inner {
    width: 100%;
  }
  footer .ftr_logo {
    margin-top: 0;
  }
  footer .address {
    flex-basis: auto;
    width: 90%;
    margin: 0 auto;
  }
  footer .address h3 {
    font-size: 18px;
  }
  footer .address_img {
    width: 100%;
  }
}
.accordion-answer {
  padding: 20px;
}
@media (max-width: 768px) {
  .accordion-answer {
    padding: 15px;
  }
}/*# sourceMappingURL=style.css.map */