@charset "UTF-8";
/*common-------------------------------------------------*/
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 62.5%;
  background-color: #f2f2f2;
  overflow-x: hidden;
}

ul {
  padding: 0;
}

ul.slider {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.c-title {
  font-size: 4rem;
  margin-bottom: 20px;
}

.white {
  color: white;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  font-size: 1.6rem;
}

.only-sp {
  display: none;
}

.custom-prev-sliderc,
.custom-next-sliderc,
.custom-prev-gallery,
.custom-next-gallery {
  width: 74px;
  height: 74px;
  background-color: #000;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.custom-prev-sliderc:hover,
.custom-next-sliderc:hover,
.custom-prev-gallery:hover,
.custom-next-gallery:hover {
  opacity: 0.5;
}

.custom-prev-sliderc img,
.custom-next-sliderc img,
.custom-prev-gallery img,
.custom-next-gallery img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
}

a:hover {
  opacity: 0.7;
}

.gray {
  color: #777;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1e1e1e;
  z-index: 9999;
  animation: byeShutter 2.6s forwards;
}

.shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #f3f3f3;
  width: 0;
  height: 1px;
  animation: shutterOpen 2.6s forwards;
}

.content {
  animation: contentScale 2.6s forwards;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes contentScale {
  70% {
    transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    transform: perspective(800px) scale(1) rotateX(0);
  }
}
/* ==========================
  フローティングバナー（追従バナー）
========================== */
.bl_floatingBanner {
  position: fixed;
  bottom: 10%;
  right: 20px;
  width: 300px;
  max-width: 100%;
  z-index: 999;
}

.bl_floatingBanner.js_close {
  display: none;
}

.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
}

.bl_floatingBanner_img:hover {
  opacity: 0.6;
}

.bl_floatingBanner_close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: -40px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 80%;
}

.bl_floatingBanner_close:hover {
  opacity: 0.5;
}

.bl_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 14px;
  right: 8px;
  width: 15px;
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
}

.bl_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: 7px;
  right: 14px;
  width: 1px;
  height: 15px;
  background-color: #000;
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .bl_floatingBanner {
    position: fixed;
    bottom: 10%;
    right: 1%;
    width: 250px;
    max-width: 100%;
    z-index: 99;
  }
}
/*header-------------------------------------------------*/
.l-header {
  position: fixed;
  top: 5%;
  width: 100%;
  z-index: 10;
}

.l-header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.l-header__list-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5%; /* 各リンクの間隔を調整 */
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__list {
  margin: 0 15px; /* 間隔調整 */
}

.l-header__link {
  color: white;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}

/* 外側のグラデーションボーダー（親） */
#hamburger {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(90deg, #00c9ff, #92fe9d 50%, #fdf497);
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 内側の白い円 */
#hamburger .inner {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ハンバーガーの2本線 */
#hamburger .inner span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* アクティブ状態（×に変形） */
#hamburger.active .inner span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

#hamburger.active .inner span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: #333;
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 100px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: white;
  display: block;
  padding: 10px 20px;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: 800;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-tel-button a:hover {
  background-color: #2d9100;
}

/* PC（1024px以上）ではハンバーガー非表示、PCナビは表示 */
@media screen and (min-width: 1024px) {
  #hamburger {
    display: none;
  }
  .l-header__nav {
    display: flex; /* PCナビ表示 */
    justify-content: center;
  }
  .mobile-menu {
    display: none; /* モバイルメニュー非表示 */
  }
  .overlay {
    display: none;
  }
}
/*mv-------------------------------------------------*/
.mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2 !important;
  width: 35%;
}

.section_mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section_mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* 黒の半透明オーバーレイ */
  z-index: 1;
}

.slider {
  position: relative;
  z-index: 0;
  height: 100vh;
  padding: 0;
}

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

.slider-item02 {
  background: url(../../01_images/mv02.jpg);
}

.slider-item03 {
  background: url(../../01_images/mv03.jpg);
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

.choice-btn {
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px; /* 両端に余白をつけたい場合 */
}

.choice-btn .slick-list {
  overflow: hidden;
}

.choice-btn .slick-track {
  display: flex !important;
  justify-content: flex-start;
}

.choice-btn .slick-slide {
  margin-right: 10px;
}

/* 最後のスライドの右マージンをなくす */
.choice-btn .slick-slide:last-of-type {
  margin-right: 0;
}

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

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

.slick-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.container_01 {
  margin: 0;
  padding: 0;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}

.container_01 a:hover {
  opacity: 0.7;
}

.scroll-down_01 {
  position: relative;
  width: 200px;
  height: 200px;
  color: #fff;
  font-family: serif;
  text-decoration: none;
  pointer-events: none;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  font-size: 16px;
  transform-origin: 0 100px;
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 50px;
  transform: translate(-50%, -50%);
}

.arrow_01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background-color: #fff;
  transform: translateX(-50%);
}

.arrow_01::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scroll_01 {
  0% {
    transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
/*about--------------------------*/
.about-cta {
  background-color: black;
  color: white;
  width: 900px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 150px auto;
  border-radius: 200px;
}
.about-cta h3 {
  font-size: 2.4rem;
  border-left: solid 2px white;
  padding-left: 20px;
}

.about-tel {
  text-decoration: none;
  color: white;
  pointer-events: none;
}

.tel-text-area_wrapper {
  display: flex;
  justify-content: center;
}

.tel-wrapper {
  display: flex;
  gap: 8px;
  padding-right: 20px;
}

.tel-text-area h2 {
  font-size: 40px;
}
.tel-text-area p {
  display: block;
  font-size: 1.4rem;
}

.concept-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 8%;
  padding: 0;
}
.concept-wrapper li {
  width: 50%;
}
.concept-wrapper li img {
  width: 100%;
}
.concept-wrapper h1 {
  font-size: 10rem;
  font-weight: bold;
  line-height: 120%;
}
.concept-wrapper p {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 240%;
  margin-top: 30px;
}

/*gallery--------------------------*/
.section_gallery {
  margin: 150px auto;
}

.gallery-wrapper {
  position: relative;
}

.gallery {
  margin: 0 0 5px 0;
  padding: 0;
}

.gallery li {
  list-style: none;
}

.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;
}

.slick-next:before {
  display: none;
}

.slick-prev:before {
  display: none;
}

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

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

.choice-btn {
  display: flex;
  width: 100%;
  padding: 0;
  max-width: 1200px;
}

.choice-btn li {
  flex: 1;
  cursor: pointer;
  outline: none;
  background: #333;
  list-style: none;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  display: flex !important;
  transform: unset !important; /*画面幅サイズ変更に伴うサムネイル固定*/
}

.custom-prev-gallery,
.custom-next-gallery {
  width: 74px;
  height: 74px;
  background-color: #000;
  border-radius: 50%;
  position: absolute; /* gallery画像に重ねる */
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

/* 左：前へボタン */
.custom-prev-gallery {
  left: 10px; /* 左端に寄せる */
}

/* 右：次へボタン */
.custom-next-gallery {
  right: 10px; /* 右端に寄せる */
}

/* 中央にアイコン配置 */
.custom-prev-gallery img,
.custom-next-gallery img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
}

.choice-btn .slick-slide {
  width: 20% !important; /* 5枚均等なら */
}

.slick-list {
  width: 100%;
}

.choice-btn li img {
  width: 100%;
  display: block;
  opacity: 0.4;
}

.choice-btn li.slick-current img {
  opacity: 1;
}

/*support--------------------------*/
.section_support {
  margin: 150px auto;
  background-color: #333;
  padding: 120px 0;
  color: white;
}
.section_support .support_title-area {
  margin: 20px auto 60px;
}

.case-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.case-wrapper li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 320px;
  gap: 2%;
  margin-bottom: 80px;
}
.case-wrapper li .block {
  align-items: center;
  width: 48%;
  height: 320px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 8px;
}
.case-wrapper li .block .human-icon {
  width: 30%;
  margin: 0 auto 10px auto;
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.case-wrapper li .case {
  background-color: #4b4b4b;
}
.case-wrapper li .solution {
  background-image: url(../../01_images/sbg01.png);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.case-wrapper li .s02 {
  background-image: url(../../01_images/sbg02.png);
}
.case-wrapper li .s03 {
  background-image: url(../../01_images/sbg03.png);
}
.case-wrapper li .icon-arrow {
  width: 30px;
  height: auto;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-inner {
  display: flex;
  animation: marquee 15s linear infinite;
}

.marquee-inner span {
  display: inline-block;
  font-size: 20rem;
  font-weight: 900;
  -webkit-text-stroke: 2px white;
  color: transparent;
  opacity: 0.1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*features-------------------------*/
.section_features {
  margin: 150px auto;
  color: black;
}

.cp_accordionslide07 {
  display: flex;
  visibility: hidden;
  width: 100%;
  height: 80vh;
  margin: 80px auto;
}

.cp_accordionslide07 .slideitem {
  position: relative;
  visibility: visible;
  overflow: hidden;
  width: 34%;
  height: 100%;
  display: flex; /* 追加 */
  justify-content: center; /* 横方向中央 */
  align-items: center; /* 縦方向中央 */
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition-delay: 0s;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  transition-property: all;
  color: #ffffff;
}

.cp_accordionslide07 .slideitem:nth-child(1) {
  background-image: url("../../01_images/f01.jpg");
}

.cp_accordionslide07 .slideitem:nth-child(2) {
  background-image: url("../../01_images/f02.jpg");
}

.cp_accordionslide07 .slideitem:nth-child(3) {
  background-image: url("../../01_images/f03.jpg");
}

.cp_accordionslide07 .slideitem:after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
}

.cp_accordionslide07:hover .slideitem:hover {
  width: 60%;
  flex-shrink: 0;
}

.cp_accordionslide07 .slideitem .slidecont {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex; /* 追加 */
  justify-content: center; /* 横方向中央 */
  align-items: center; /* 縦方向中央 */
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
  box-sizing: border-box;
}

.cp_accordionslide07 .slideitem:hover .slidecont {
  visibility: visible;
  opacity: 1;
}

.cp_accordionslide07 .slideitem .text {
  width: 100%;
  max-width: 500px;
  text-align: left;
  color: white;
}

.cp_accordionslide07 .slideitem .text h2 {
  width: 80px;
  height: 80px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-left: auto; /* 枠内で右寄せにしたい場合 */
  margin-right: auto; /* 真ん中に置く */
}

.cp_accordionslide07 .slideitem .text h3 {
  margin-bottom: 0.8rem;
}

.cp_accordionslide07 .slideitem .text p {
  font-size: 1.6rem;
  line-height: 1.6;
}

.slide-title {
  font-size: 6rem;
  z-index: 6;
  writing-mode: vertical-rl;
  position: absolute;
  top: 6px;
  right: 2px;
}

/*table---------------------------------------------*/
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  table-layout: fixed;
  font-size: 1.6rem;
}

table tr {
  background-color: #fff;
  padding: 0.35em;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

table tr:last-child {
  border: none;
}

table th {
  padding: 2em;
  border-right: 2px solid #fff;
  width: 240px;
  font-size: 2rem;
}

table td {
  padding: 20px 24px;
  border-right: 2px solid #eee;
  text-align: center;
  font-size: 1.6rem;
}
table td span {
  font-size: 6rem;
}

.price-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 3px;
}
.price-wrapper .price {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.symbol {
  display: block;
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
}

.desc {
  display: block;
  text-align: left;
  margin: 0.2em auto 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  max-width: 100%;
}

table thead tr {
  color: #000;
  font-size: 2rem;
}

table tbody th {
  border-right: 2px solid #eee;
}

th.non {
  border-right: none;
}

.txt {
  text-align: left;
}

.feature {
  color: #000;
  font-weight: 500;
  text-align: left;
}

.bg-gr {
  background-color: #919191;
  border-top: solid 2px #919191;
  color: white;
}

.price span {
  font-size: 0.6em;
}

.im {
  background: #000;
}
.im img {
  margin: 0 auto;
}

table .btnarea td {
  padding: 0.2em 0.5em;
  border-right: none;
}

@media screen and (max-width: 1024px) {
  .wrap {
    overflow-x: scroll;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  table th:first-child {
    min-width: 100px;
  }
}
.border-img {
  margin: 150px auto;
  display: block;
}

/*priceandplan-------------------------*/
.section_price {
  margin-bottom: 150px;
  /* カスタムドット */
  /* 矢印 */
  /* 擬似要素で棒状のドットを表示 */
  /* 共通のボタンスタイル */
}
.section_price .slider-controls-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}
.section_price .custom-dots-sliderc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.section_price .custom-dots-sliderc .slick-dots {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.section_price .custom-dots-sliderc .slick-dots li {
  display: inline-block;
  width: auto;
  height: auto;
}
.section_price .custom-dots-sliderc .indicator {
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.section_price .custom-dots-sliderc .slick-active .indicator {
  opacity: 1;
}
.section_price .custom-arrows {
  display: flex;
  gap: 10px;
}
.section_price .custom-dots-sliderc .slick-dots li button::before {
  content: "";
  display: block;
  width: 24px; /* 棒の幅 */
  height: 4px; /* 棒の高さ */
  background: #ccc;
  border-radius: 2px;
  transition: background 0.3s;
}
.section_price .custom-prev-sliderc,
.section_price .custom-next-sliderc {
  cursor: pointer;
  padding: 5px;
  background-color: #000;
  border-radius: 100px;
  width: 80px;
  height: 80px;
}
.section_price .custom-dots-sliderc .slick-dots li.slick-active button::before {
  background: #000;
}
.section_price .custom-arrows {
  display: flex;
  gap: 16px; /* 矢印の間隔はお好みで調整 */
}
.section_price .slick-dots {
  bottom: -16px;
}
.section_price .plan-item {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 20px 20px;
  height: 600px;
}
.section_price .plan-item .plan-text-area {
  flex: 1;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section_price .plan-item .plan-text-area h2 {
  font-weight: 800;
}
.section_price .plan-item ul li {
  display: flex;
  margin: 8px 0;
  justify-content: flex-start;
  gap: 1%;
  align-items: flex-start;
}
.section_price .plan-item ul li span {
  font-size: 1.2rem;
}
.section_price .slider-c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-left: calc((100% - 1200px) / 2);
}
.section_price .plan-img {
  height: 220px; /* 例：固定高さに */
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.section_price .plan-spacer {
  margin-top: auto;
}

/*information------------------------------------- */
.section_information .info-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  margin: 60px 0;
  align-items: center;
}
.section_information .info-item {
  display: block;
  width: 49%;
}
.section_information .info-item ul {
  display: block;
}
.section_information .info-item ul li {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 5%;
  border-top: 1px solid #7a7a7a;
  padding: 20px 0;
}
.section_information .info-item ul li h4 {
  font-size: 1.8rem;
  display: block;
  width: 24%;
  font-weight: 500;
  text-align: center;
}
.section_information .info-item ul li:last-child {
  border-bottom: 1px solid #7a7a7a;
}
.section_information .info-item ul li a {
  color: #000;
}
.section_information iframe {
  display: block;
  width: 100%;
}

/*flow------------------------------------- */
.section_flow {
  margin: 150px auto;
}
.section_flow .flow-wrapper {
  display: block;
  margin: 60px 0;
}
.section_flow .flow-wrapper li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5%;
  margin: 40px auto;
}
.section_flow .flow-wrapper li .flow-text-wrap {
  max-width: 1000px;
}
.section_flow .flow-wrapper li .step {
  width: 120px; /* 横幅 */
  height: 120px; /* 高さ（横と同じ） */
  border: solid 2px #000;
  border-radius: 50%; /* 真円にする */
  display: flex; /* 中央寄せに必要 */
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.section_flow .flow-wrapper li a {
  background-color: #000;
  color: white;
  width: 400px;
  border-radius: 100px;
  display: flex;
  font-size: 2rem;
  font-weight: 800;
  justify-content: center;
  gap: 2%;
  text-decoration: none;
  padding: 10px 0;
  margin-top: 20px;
}

/*faq------------------------------------- */
.section_acc {
  /* 答え部分 */
}
.section_acc .cp_qa03 .cp_actab {
  margin: 30px 0;
  color: white;
}
.section_acc label:hover {
  opacity: 0.5;
}
.section_acc .cp_qa03 .cp_actab input {
  display: none;
}
.section_acc .cp_qa03 .cp_actab label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  border-radius: 8px;
  background: #000;
  cursor: pointer;
  position: relative;
}
.section_acc .cp_qa03 .label-text {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6;
  padding-left: 1.5em;
  position: relative;
}
.section_acc .cp_qa03 .label-text::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  font-weight: bold;
}
.section_acc .cp_qa03 .icon {
  width: 60px;
  height: 60px;
  background-color: white;
  color: black;
  font-size: 3rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
  padding: 0 0 5px 1px;
}
.section_acc .cp_qa03 .cp_actab input:checked + label .icon {
  transform: rotate(45deg);
}
.section_acc .cp_qa03 .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0; /* パディングをanswer-inner側へ移動 */
  border-radius: 0 0 8px 8px;
  transition: max-height 0.2s;
  background-color: #000; /* 黒背景 */
  font-size: 1.6rem;
  color: #000;
}
.section_acc .cp_qa03 .cp_actab .answer-inner {
  background-color: white;
  border-radius: 8px;
  padding: 2em 2.5em 2em 3.5em; /* 左の「A」の位置も考慮して余白調整 */
  position: relative;
  width: 90%;
  margin: 20px auto 20px auto;
}
.section_acc .cp_qa03 .cp_actab .answer-inner .answer-label {
  display: inline-block;
  font-weight: bold;
  font-size: 4rem;
  color: #000;
  margin-right: 0.5em;
}
.section_acc .cp_qa03 .cp_actab input:checked ~ .cp_actab-content {
  max-height: 400px;
  padding-bottom: 20px;
}
.section_acc .cp_qa03 .cp_actab input:checked ~ label {
  border-radius: 0.5em 0.5em 0 0; /* ← 上だけ角丸 */
}

/*latest-info------------------------------------- */
.section_latest-info {
  background-image: url(../../01_images/bg-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000; /* 背景に余白が出る場合の埋め色 */
  -o-object-fit: cover;
     object-fit: cover;
  margin: 150px auto;
  position: relative;
  overflow: hidden;
}

.section_latest-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* 黒いオーバーレイで暗くする */
  z-index: 0;
}

.latest-info-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.text-area {
  width: 50%;
  text-align: left;
  color: white;
  padding: 100px 0 20px 0;
}

.text-area h2 {
  font-size: 6rem;
  margin-bottom: 20px;
}

.text-area ul.check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}

.text-area ul.check li {
  align-items: center;
  display: flex;
  margin-bottom: 1em;
}
.text-area ul.check li p {
  font-size: 2rem;
}

.text-area ul.check li img {
  width: 20px;
  height: 20px;
  margin-right: 0.75em;
}

.arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  margin-top: 60px;
}

.arrow-button img {
  width: 26px;
  height: 26px;
}

.arrow-button:hover {
  transform: scale(1.15);
}

/*coach------------------------------------- */
.section_coach ul {
  margin-top: 20px;
  display: block;
  justify-content: center;
  align-items: center;
  gap: 3%;
}
.section_coach ul .block01 {
  display: flex;
  gap: 2%;
  margin-bottom: 20px;
}
.section_coach ul li img {
  border-radius: 8px;
  width: 50%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section_coach ul li h4 {
  font-size: 1.6rem;
}
.section_coach ul li h2 {
  font-size: 4rem;
}

/*contact------------------------------------- */
.section_contact {
  margin-top: 150px;
}
.section_contact .c-title {
  margin-bottom: 20px;
}
.section_contact .banner {
  width: 100%;
  background-color: #000;
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}
.section_contact .banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}
.section_contact .banner-left {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_contact .circle {
  width: 600px;
  height: 600px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  left: -300px; /* バナーを大きく超える */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.section_contact .circle img {
  width: 100px;
  height: auto;
  z-index: 2;
  margin-left: 180px;
}
.section_contact .banner-right {
  width: 80%;
  padding-left: 40px;
  z-index: 3;
  position: relative;
}
.section_contact .banner-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}
.section_contact .banner-text {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.section_contact .banner-button {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 3%;
  padding: 20px 60px;
  border: 2px solid #000;
  background-color: white;
  color: #000;
  text-decoration: none;
  width: 80%;
  border-radius: 9999px;
  transition: transform 0.3s ease, background-color 0.3s;
  font-size: 2rem;
  font-weight: 700;
}
.section_contact .contact-how-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 2%;
}
.section_contact .contact-how-wrapper li {
  width: 33%;
  display: block;
  background-color: white;
  padding: 30px 20px;
  border-radius: 8px;
}
.section_contact .contact-how-wrapper li h3 {
  text-align: center;
}
.section_contact .contact-how-wrapper li .desc {
  margin: 16px auto;
  height: 120px;
}
.section_contact .contact-how-wrapper li a {
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  padding: 20px 0;
  height: 76px;
  gap: 2%;
}
.section_contact .contact-how-wrapper li a h4 {
  font-size: 2.4rem;
  font-weight: 800;
}
.section_contact .contact-how-wrapper li a .sub {
  font-size: 1.2rem;
}
.section_contact .contact-how-wrapper li a img {
  width: 40px;
  height: 40px;
}
.section_contact .contact-how-wrapper li a .arrow {
  width: 18px;
  height: 18px;
}

footer {
  background-color: #000;
  color: white;
  padding: 60px 0;
  margin-top: 150px;
}
footer img {
  display: block;
  margin: 0 auto;
}
footer small {
  text-align: center;
  display: block;
  margin: 20px auto;
  font-size: 1em 0.4rem;
}

/* SP（1024px未満）はハンバーガー表示、PCナビ非表示 */
@media screen and (max-width: 767px) {
  .section_coach .block01 {
    display: block !important;
    gap: 2%;
    margin-bottom: 20px;
  }
  .section_coach .block01 img {
    width: 100%;
    height: auto;
  }
  .logo-mobile {
    display: block;
    margin: 10px auto;
    width: 55%;
  }
  .c-title {
    font-size: 3.6rem;
    margin-bottom: 10px;
  }
  .sp-none {
    display: none;
  }
  .l-header__nav {
    display: none; /* PCナビ非表示 */
  }
  #hamburger {
    display: flex;
  }
  .mobile-menu {
    width: 45%; /* 要望に合わせて幅調整 */
  }
  .l-inner {
    padding: 0 20px !important;
  }
  .mv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2 !important;
    width: 70%;
  }
  .slider-item01 {
    background-position: left;
  }
  .section_about {
    padding: 0 20px;
  }
  .about-cta {
    width: 100%;
    height: auto;
    display: block;
    padding: 10px 0 !important;
    margin: 80px auto;
  }
  .about-cta h2 {
    font-size: 2.4rem;
  }
  .about-cta .tel-wrapper {
    display: flex;
    gap: 8px;
    padding-right: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .custom-prev-gallery {
    width: 50px;
    height: 50px;
  }
  .custom-next-gallery {
    width: 50px;
    height: 50px;
  }
  .about-tel {
    text-decoration: none;
    color: white;
    pointer-events: all;
  }
  .about-tel img {
    width: 70px;
    height: 70px;
  }
  .concept-wrapper {
    display: block;
  }
  .concept-wrapper li {
    width: 100%;
  }
  .concept-wrapper li h1 {
    font-size: 5rem;
    margin-top: 20px;
  }
  .concept-wrapper li p {
    font-size: 1.8rem;
    margin-top: 10px;
  }
  .section_gallery {
    margin: 80px auto;
  }
  .section_support {
    margin: 80px auto;
    padding: 40px 0;
  }
  .section_support h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  .case-wrapper li {
    display: block;
    height: auto;
  }
  .case-wrapper li .icon-arrow {
    margin: 16px auto;
    display: block;
    transform: rotate(90deg);
  }
  .case-wrapper li .block {
    display: flex;
    width: 100%;
  }
  .case-wrapper li .block h3 {
    font-size: 2.2rem;
  }
  .marquee-inner span {
    font-size: 10rem;
  }
  .section_features {
    margin: 80px auto;
  }
  .section_features h2 {
    font-size: 2.4rem;
  }
  .section_features .cp_accordionslide07 {
    margin: 40px auto;
  }
  .section_table th {
    font-size: 1.6rem;
    padding: 2em 1.4em;
  }
  .section_table .symbol {
    font-size: 4rem;
  }
  .border-img {
    margin: 80px auto;
  }
  .section_information .info-wrapper {
    display: block;
    margin: 40px auto;
  }
  .section_information .info-item {
    width: 100%;
  }
  .section_flow {
    margin: 80px auto;
  }
  .section_flow .flow-wrapper {
    margin: 40px auto;
  }
  .section_flow .flow-wrapper li {
    display: block;
  }
  .section_flow .flow-wrapper li h2 {
    font-size: 1.8rem;
    padding: 20px !important;
  }
  .section_latest-info {
    margin: 80px auto;
  }
  .text-area {
    width: 100%;
    text-align: left;
    color: white;
    padding: 100px 0 20px 0;
  }
  .text-area h2 {
    font-size: 5rem;
  }
  .text-area p {
    font-size: 1.6rem;
  }
  .text-area .arrow-button {
    width: 100px;
    height: 100px;
    margin-top: 40px;
  }
  .section_latest-info {
    background-position: left;
  }
  .section_coach ul {
    display: block;
  }
  .section_coach li {
    width: 100% !important;
  }
  .section_coach li img {
    margin-bottom: 20px;
  }
  .section_contact {
    margin: 80px auto;
  }
  .section_contact .banner {
    padding: 20px 0;
    border-radius: 8px;
  }
  .section_contact .banner h2 {
    font-size: 1.6rem;
  }
  .section_contact .banner-inner {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }
  .section_contact .banner-left {
    width: 100%;
    margin-bottom: 30px;
    justify-content: center;
  }
  .section_contact .circle {
    width: 150px;
    height: 150px;
    position: static;
    transform: none;
    margin: 0 auto;
  }
  .section_contact .circle img {
    width: 60px;
    margin-left: 0;
  }
  .section_contact .banner-right {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .section_contact .banner-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .section_contact .banner-button {
    width: 100%;
    font-size: 1.6rem;
    padding: 14px 24px;
    gap: 8px;
  }
  .section_contact .banner-button img {
    width: 16px;
    height: auto;
  }
  .section_contact .contact-how-wrapper {
    display: block;
  }
  .section_contact .contact-how-wrapper li {
    width: 100%;
    margin-bottom: 40px;
  }
  footer {
    margin-top: 80px;
  }
  footer img {
    width: 80%;
  }
  .section_price {
    margin-bottom: 80px;
  }
  .section_price .slider-controls-wrapper {
    align-items: center;
    margin-bottom: 40px;
  }
  .section_price .custom-arrows {
    justify-content: center;
  }
  .section_price .custom-arrows .custom-prev-sliderc,
  .section_price .custom-arrows .custom-next-sliderc {
    width: 48px;
    height: 48px;
  }
  .section_price .slider-c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-left: 0;
    padding: 0 20px;
  }
  .section_price .plan-item {
    margin: 0 0 20px;
    height: auto;
  }
  .section_price .plan-img {
    height: 180px;
  }
  .section_price .plan-text-area {
    padding: 12px 16px;
  }
  .section_price .plan-text-area h1 {
    font-size: 2.4rem;
  }
  .section_price .plan-text-area h2 {
    font-size: 2rem;
  }
  .section_price .plan-text-area p.gray {
    font-size: 1.6rem;
  }
  .section_price .plan-text-area ul li p {
    font-size: 1.2rem;
  }
  .section_price .plan-text-area ul li span {
    font-size: 1rem;
  }
  /*flow------------------------------------------*/
  .section_flow .flow-wrapper {
    margin: 40px 0;
  }
  .section_flow .flow-wrapper li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 20px;
    margin: 40px 0;
  }
  .section_flow .flow-wrapper li .step {
    font-size: 2rem;
    padding: 20px;
    border-radius: 400px;
    align-self: flex-start;
    margin: 0 auto;
  }
  .section_flow .flow-wrapper li .flow-text-wrap h3 {
    font-size: 2rem;
  }
  .section_flow .flow-wrapper li .flow-text-wrap p {
    font-size: 1.6rem;
  }
  .section_flow .flow-wrapper li a {
    width: 100%;
    font-size: 1.6rem;
    padding: 14px 0;
    gap: 10px;
  }
  /*acc------------------------------------------*/
  .sp-none {
    display: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 1024px) {
  table {
    width: 100%;
    min-width: 800px; /* 最小幅を設定することでスマホでもスクロールできる */
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .wrap {
    overflow-x: auto;
    padding: 0 10px; /* ← 左右に余白を追加 */
  }
  .plan-item {
    margin: 0 10px !important;
  }
  .plan-text-area {
    padding: 20px !important;
  }
  table.gray th:first-child {
    width: 150px; /* ←ここで希望の幅に調整 */
    white-space: nowrap; /* 改行させない */
  }
  .price {
    font-size: 3rem !important;
  }
  .yen {
    font-size: 1.2rem;
  }
  .cp_accordionslide07 {
    flex-direction: column;
    height: auto;
    padding: 0 20px;
  }
  .cp_accordionslide07 .slideitem .slide-title {
    z-index: 2;
    position: relative;
  }
  .cp_accordionslide07 .slideitem .slidecont {
    z-index: 2;
    position: relative;
  }
  .cp_accordionslide07 .slideitem::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .cp_accordionslide07 .slideitem {
    position: relative;
    overflow: hidden;
    /* 高さを調整（↑の①と共通） */
    height: 100px;
  }
  .cp_accordionslide07 .slideitem {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-bottom: 10px;
  }
  .cp_accordionslide07 .slideitem .slidecont {
    position: relative;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    padding: 0 20px;
    background-color: transparent;
    box-sizing: border-box;
  }
  .cp_accordionslide07 .slideitem.active .slidecont {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    padding: 20px;
  }
  .cp_accordionslide07 .slideitem .slide-title {
    font-size: 2rem;
    writing-mode: horizontal-tb;
    position: relative;
    padding: 50px 20px;
    background-color: transparent;
    width: 100%;
    color: white;
    z-index: 2;
  }
  .cp_accordionslide07 .slideitem::after {
    display: none;
  }
  .cp_accordionslide07:hover .slideitem:hover {
    width: 100%;
  }
  .cp_accordionslide07 .slideitem .slide-title::after {
    content: "+";
    font-size: 2rem;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    transition: transform 0.3s ease;
  }
  .cp_accordionslide07 .slideitem.active .slide-title::after {
    content: "−";
  }
  .text h2 {
    font-size: 2.6rem;
    width: 60px;
    height: 60px;
  }
  .text h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block;
  }
}
/*タブレット----------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section_contact {
    margin: 80px auto;
  }
  .section_contact .banner {
    padding: 20px 0;
    border-radius: 8px;
  }
  .section_contact .banner h2 {
    font-size: 1.6rem;
  }
  .section_contact .banner-inner {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }
  .section_contact .banner-left {
    width: 100%;
    margin-bottom: 30px;
    justify-content: center;
  }
  .section_contact .circle {
    width: 150px;
    height: 150px;
    position: static;
    transform: none;
    margin: 0 auto;
  }
  .section_contact .circle img {
    width: 60px;
    margin-left: 0;
  }
  .section_contact .banner-right {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .section_contact .banner-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .section_contact .banner-button {
    width: 100%;
    font-size: 1.6rem;
    padding: 14px 24px;
    gap: 8px;
  }
  .section_contact .banner-button img {
    width: 16px;
    height: auto;
  }
  .section_contact .contact-how-wrapper {
    display: block;
  }
  .section_contact .contact-how-wrapper li {
    width: 100%;
    margin-bottom: 40px;
  }
  .section_coach .block01 {
    display: block !important;
    gap: 2%;
    margin-bottom: 20px;
  }
  .section_coach .block01 img {
    width: 100%;
    height: auto;
  }
  .bl_floatingBanner {
    position: fixed;
    bottom: 10%;
    right: 1%;
    width: 300px;
    max-width: 100%;
    z-index: 99;
  }
  .section_flow .flow-wrapper {
    margin: 40px 0;
  }
  .section_flow .flow-wrapper li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 20px;
    margin: 40px 0;
  }
  .section_flow .flow-wrapper li .step {
    font-size: 2rem;
    padding: 20px;
    border-radius: 400px;
    align-self: flex-start;
    margin: 0 auto;
  }
  .section_flow .flow-wrapper li .flow-text-wrap h3 {
    font-size: 2rem;
  }
  .section_flow .flow-wrapper li .flow-text-wrap p {
    font-size: 1.6rem;
  }
  .section_flow .flow-wrapper li a {
    width: 100%;
    font-size: 1.6rem;
    padding: 14px 0;
    gap: 10px;
  }
  .section_about {
    padding: 0 40px;
  }
  .concept-wrapper h1 {
    font-size: 4rem !important;
  }
  .concept-wrapper p {
    font-size: 1.6rem !important;
  }
  .about-cta {
    margin: 100px auto;
    width: 100%;
  }
  .about-cta h2 {
    font-size: 3rem;
  }
  .about-cta h3 {
    font-size: 2rem;
  }
  .l-header__nav {
    display: none;
  }
  .mobile-menu {
    width: 30%;
  }
  .logo-mobile {
    width: 40%;
    padding-left: 40px;
  }
  .mobile-menu a {
    padding: 15px 40px;
  }
  .concept-wrapper h1 {
    font-size: 6rem;
  }
  .concept-wrapper p {
    font-size: 2rem;
  }
  .section_support {
    margin: 120px auto;
    padding: 90px 40px;
  }
  .section_features {
    margin: 120px auto;
    padding: 0 40px;
  }
  .section_table {
    padding: 0 40px;
  }
  .section_contact {
    padding: 0 40px;
  }
  .section_contact h4 {
    font-size: 1.8rem !important;
  }
  .section_flow {
    padding: 0 40px;
  }
  .section_information {
    padding: 0 40px;
  }
  .section_acc {
    padding: 0 40px;
  }
  .section_coach {
    padding: 0 40px;
  }
  .desc {
    margin: 16px auto 40px auto !important;
  }
  .slider-c {
    margin-left: 0 !important;
  }
  .section_price {
    margin: 0 40px 120px 40px;
  }
  .plan-item {
    height: auto !important;
  }
  .plan-item h1 {
    font-size: 3rem;
  }
  .plan-item h2 {
    font-size: 2.4rem;
  }
  .section_gallery {
    padding: 0 40px;
  }
  .choice-btn {
    padding: 0 !important;
  }
  .cp_accordionslide07 {
    flex-direction: column;
    height: auto;
  }
  .cp_accordionslide07 .slideitem .slide-title {
    z-index: 2;
    position: relative;
  }
  .cp_accordionslide07 .slideitem .slidecont {
    z-index: 2;
    position: relative;
  }
  .cp_accordionslide07 .slideitem::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .cp_accordionslide07 .slideitem {
    position: relative;
    overflow: hidden;
    /* 高さを調整（↑の①と共通） */
    height: 100px;
  }
  .cp_accordionslide07 .slideitem {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-bottom: 10px;
  }
  .cp_accordionslide07 .slideitem .slidecont {
    position: relative;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    padding: 0 20px;
    background-color: transparent;
    box-sizing: border-box;
  }
  .cp_accordionslide07 .slideitem.active .slidecont {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    padding: 20px;
  }
  .cp_accordionslide07 .slideitem .slide-title {
    font-size: 2rem;
    writing-mode: horizontal-tb;
    position: relative;
    padding: 50px 20px;
    background-color: transparent;
    width: 100%;
    color: white;
    z-index: 2;
  }
  .cp_accordionslide07 .slideitem::after {
    display: none;
  }
  .cp_accordionslide07:hover .slideitem:hover {
    width: 100%;
  }
  .cp_accordionslide07 .slideitem .slide-title::after {
    content: "+";
    font-size: 2rem;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    transition: transform 0.3s ease;
  }
  .cp_accordionslide07 .slideitem.active .slide-title::after {
    content: "−";
  }
  .section_table {
    padding: 0 40px;
  }
  .wrap {
    overflow-x: auto; /* 常にスクロール可能にしておく */
    width: 100%;
  }
}
/*調整-----------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .section_about h1 {
    font-size: 7rem;
  }
  .section_about p {
    font-size: 2rem;
  }
  .section_gallery {
    padding: 0 40px;
  }
  .section_gallery .choice-btn {
    padding: 0;
  }
  .section_support {
    padding: 80px 40px;
  }
  .section_features {
    padding: 0 40px;
  }
  .section_table {
    padding: 0 40px;
  }
  .section_price {
    padding: 0 40px;
  }
  .slider-c {
    margin-left: 0 !important;
  }
  .section_information {
    padding: 0 40px;
  }
  .section_flow {
    padding: 0 40px;
  }
  .section_acc {
    padding: 0 40px;
  }
  .section_coach {
    padding: 0 40px;
  }
  .section_contact {
    padding: 0 40px;
  }
  .section_contact h4 {
    font-size: 1.8rem !important;
  }
  .plan-item {
    height: auto !important;
  }
}/*# sourceMappingURL=style.css.map */