/*
内包  1100px
レスポンシブ ブレークポイント
タブレット：1000px
スマホ：768px
*/
:root {
  --slack: 'Slackside One', cursive;
  --white: #ffffff;
  --pink: #e95f91;
  --lineColor: #06c755;
  --fontColor: #4c4948;
  --gradation3: linear-gradient(90deg, #c17bb1, #e95f91, #ff6161);
  --gradation4: linear-gradient(90deg, #c17bb1, #e95f91, #ff6161, #fccd19);
}

/* 共通スタイル */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--fontColor);
}

.sp_only2 {
  display: none;
}

.pc_only2 {
  display: block;
}

@media (width < 768px) {
  .sp_only2 {
    display: block !important;
  }

  .pc_only2 {
    display: none !important;
  }
}

.pink {
  color: var(--pink);
}

/* 上部のイメージ */
#head_image {
  background-image: url(../../images/title02.webp);

  @media (width < 760px) {
    background-image: url(../../images/sp_title02.webp);
  }
}

/* sec02 */
.sec02 {
  opacity: 1;
}

/* slick.js*/
.slick-track {
  display: flex;
}

.slick_slide {
  height: auto !important;
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;

  @media (width < 768px) {
    margin-top: 25px;
    margin-bottom: 35px;
  }
}

.slide_image img {
  width: 98%;
  display: inline-block;

  @media (width < 768px) {
    width: 100%;
    height: auto;
    min-height: 150px;
  }
}

/* sec03 */
.sec03 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
}

.sec03_flex {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;

  @media (width < 768px) {
    flex-direction: column-reverse;
    width: 100%;
  }
}

.sec03_flex_left {
  width: 100%;

  @media (width < 768px) {
    width: 100%;
  }
}

.google-maps {
  position: relative;
  padding-bottom: 400px;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.sec03_flex_right {
  border-bottom: 1.8px solid;
  border-top: 1.8px solid;
  border-image: var(--gradation4) 1;
  padding: 35px 35px 35px 85px;

  @media (width < 768px) {
    width: 90%;
    margin: 0 auto;
    padding: 15px 15px 15px 40px;
  }
}

.address {
  margin-bottom: 35px;
  font-size: 16px;
  position: relative;

  @media (width < 768px) {
    margin-bottom: 5px;
  }
}

.station {
  margin-bottom: 0px;
  font-size: 16px;
  position: relative;

  @media (width < 768px) {
    margin-bottom: 0px;
  }
}

.tel {
  font-size: 16px;
  position: relative;
}

.address::before {
  content: '';
  display: inline-block;
  background: url(../../images/icon_maps_pin.svg) no-repeat;
  background-size: contain;
  width: 27px;
  height: 37px;
  position: absolute;
  left: -39px;

  @media (width < 768px) {
    width: 13px;
    height: 20px;
  }
}

.station::before {
  content: '';
  display: inline-block;
  background: url(../../images/icon_train.svg) no-repeat;
  background-size: contain;
  width: 27px;
  height: 24px;
  position: absolute;
  left: -36px;
}

@media (max-width: 768px) {
  .station::before {
    width: 23px;
    height: 23px;
    top: -5px;
  }
}

.tel::before {
  content: '';
  display: inline-block;
  background: url(../../images/icon_tel.svg) no-repeat;
  background-size: contain;
  width: 27px;
  height: 24px;
  position: absolute;
  left: -36px;

  @media (width < 768px) {
    width: 15px;
    height: 15px;
  }
}

.parking {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  font-size: 0.9375rem;
  margin-top: 5px;

  @media (width < 1000px) {
    margin-top: 1.125rem;
  }

  @media (width < 768px) {
    width: 90%;
    margin: 15px auto 30px;
  }
}

/* 　
ボタン
*/
.button_box {
  width: 90%;
  max-width: 1100px;
  display: flex;
  margin: 60px auto 85px;
  gap: 55px;

  @media (width < 1000px) {
    gap: 20px;
  }

  @media (width < 768px) {
    flex-direction: column;
    margin: 0 auto;
    gap: 0;
  }
}

/* グラデーションボタンの設定 */
.go_to_home_button {
  background-image: var(--gradation4);
  border: 1px solid var(--pink);
  width: 440px;
  height: 55px;
  margin: 0 auto 0px;
  border-radius: 25px;
  position: relative;
  /*アニメーションの指定*/
  transition: ease 0.2s;

  @media (width < 1000px) {
    margin-bottom: 50px;
  }

  @media (width < 768px) {
    max-width: 440px;
    width: 90%;
    margin-bottom: 60px;
  }
}

/* グラデーションボタンの中身をflexに */
.button_flex {
  position: relative;
  top: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

/* lineボタンの設定 */
.go_to_line_button {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--article_bottom);
  border: 1px solid var(--pink);
  width: 440px;
  height: 55px;
  margin: 0 auto 0px;
  border-radius: 25px;
  position: relative;
  background-color: var(--lineColor);
  border: 1px solid var(--lineColor);
  overflow: hidden;
  /*アニメーションの指定*/
  transition: ease 0.2s;

  @media (width < 1000px) {
    margin-bottom: 50px;
  }

  @media (width < 768px) {
    max-width: 440px;
    width: 90%;
    margin-bottom: 40px;
  }
}

/* ボタン内の文字 */
.go_to_line_button .go_to_home,
.go_to_home_button .go_to_home {
  color: #fff;
  z-index: 100;
}

/* グラデーションボタンをホバーしたら文字がピンクになる */
.go_to_home_button:hover .go_to_home {
  color: var(--pink);
  z-index: 100;
}

/* lineボタンをホバーしたら文字がみどり色になる */
.go_to_line_button:hover .button_arrow,
.go_to_line_button:hover .go_to_home {
  color: var(--lineColor);
  z-index: 100;
}

/* lineボタンをホバーしたらボタンのボーダーが緑色になる */
.go_to_line_button:hover .go_to_line_button {
  border: 5px solid var(--lineColor);
}

/*== 背景が流れる（左から右） */
.bg_left:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 25px;
}

.bg_left_white::before {
  background: #fff;
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bg_left:hover:before,
.bg_left_white:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.line_img2 {
  display: inline-block;
  width: 33px;
  height: 33px;
  background-image: url(https://illust-school.com/oi24/wp-content/themes/onof_illustration_school.project/images/icons8-line_white.svg);
  background-size: contain;
  z-index: 100;
}

.go_to_line_button:hover .line_img2 {
  background-image: url(https://illust-school.com/oi24/wp-content/themes/onof_illustration_school.project/images/icons8-line.svg);
  background-size: contain;
  z-index: 100;
}

.go_to_home {
  font-size: 1.25rem;
}

.button_arrow {
  position: relative;
  display: inline-block;
  padding: 10px;
}

.button_arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #333333;
  border-right: solid 2px #333333;
  position: absolute;
  left: 10px;
  top: 8px;
  transform: rotate(45deg);
}

.button_arrow::before {
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}

/* グラデーションボタンをホバーしたら矢印がピンク色になる */
.go_to_home_button:hover .button_arrow_pink::before {
  border-top: solid 2px var(--pink);
  border-right: solid 2px var(--pink);
  z-index: 10000;
}

/* lineボタンをホバーしたら矢印が緑色になる */
.go_to_line_button:hover .button_arrow::before {
  border-top: solid 2px var(--lineColor);
  border-right: solid 2px var(--lineColor);
}

/* [無料で体験する]のところ */
.go_to_home_button {
  position: relative;
}

.free {
  position: absolute;
  padding: 4px 25px;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  font-weight: 700;
  background: #ffffff;
  border-radius: 25px;

  @media (width < 480px) {
    padding: 4px 20px;
  }
}

.free::before {
  border-radius: 25px;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid transparent;
  background: var(--gradation4) border-box border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: destination-out;
  -webkit-mask-composite: destination-out;
}

/* ボタン終わり */
/* sec04 */
.sec04 {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.section_title_box {
  max-width: 300px;
  /* width: 90%; */
  margin: 0 auto 45px;
  text-align: center;
}

.section_title_upper {
  font-weight: 700;
  font-size: 1.6875rem;
  color: var(--pink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pink);

  @media (width < 1000px) {
    font-size: 1.5rem;
  }

  @media (width < 768px) {
    font-size: 1.625rem;
  }
}

.section_title_down {
  padding-top: 6px;
  font-weight: 700;
  font-size: 1.6875rem;
  background: var(--gradation3);
  background: -webkit-var(--gradation3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  @media (width < 1000px) {
    font-size: 1.25rem;
  }
}

#regular,
#half {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

/* レギュラータイムの表 */
.regular_table {
  margin-bottom: 60px;
  max-width: 100%;
  width: 100%;
  table-layout: fixed;
}

.regular_table th,
.regular_table td {
  white-space: nowrap;
  height: 95px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;

  @media (width < 1000px) {
    height: 65px;
  }

  @media (width < 768px) {
    height: 70px;
  }
}

.regular_table th {
  max-width: 275px;
  width: 100%;
  font-size: 1.5rem;
  background-color: #ffd8d8;
  border: 1px solid #000;

  @media (width < 1000px) {
    font-size: 1rem;
  }

  @media (width < 768px) {
    font-size: 0.9375rem;
  }
}

.regular_table .pc_only {
  @media (width < 768px) {
    display: none;
  }
}

.regular_table td {
  background-color: #f9f9f9;
  border: #000 solid 1px;
  line-height: 150%;
  font-size: 1.25rem;

  @media (width < 1000px) {
    font-size: 1rem;
  }

  @media (width < 768px) {
    font-size: 0.9375rem;
  }
}

/* 月謝 ・入会金*/
.fee_flex {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
  gap: 45px;

  @media (width < 1000px) {
    gap: 15px;
  }

  @media (width < 768px) {
    flex-direction: column;
    gap: 42px;
  }
}

/* ハーフタイムの表 */
.half_table {
  margin-bottom: 60px;
  max-width: 100%;
  width: 100%;
  table-layout: fixed;

  @media (width < 1000px) {
    margin-bottom: 77px;
  }

  @media (width < 768px) {
    margin-bottom: 35px;
  }
}

.half_table th,
.half_table td {
  white-space: nowrap;
  height: 95px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.half_table th {
  max-width: 275px;
  width: 100%;
  font-size: 16px;
  background-color: #ffd8d8;
  border: 1px solid #000;

  @media (width < 1000px) {
    height: 65px;
    /* font-size: 1rem; */
  }

  @media (width < 768px) {
    height: 50px;
    font-size: 0.9375rem;
  }
}

.half_table td {
  background-color: #f9f9f9;
  border: #000 solid 1px;
  line-height: 150%;
  font-size: 16px;

  /* @media (width < 1000px) {
        font-size: 1rem;
    } */
  @media (width < 768px) {
    height: 70px;
    font-size: 0.9375rem;
  }
}

#half .half_table tr th.pc_only {
  @media (width < 768px) {
    display: none;
    font-size: 16px;
  }
}

/* 角丸ボーダーグラデーションの設定 */
.grad-border-content {
  width: 100%;
  height: auto;
  padding: 2px;
  border-radius: 25px;
  text-align: center;
  background: var(--gradation3);
}

.once,
.twice,
.brother {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  /* リボンの絶対位置 */
}

.grad_border_box {
  display: flex;
  /* flex-growの設定 */
  flex-direction: column;
  width: 100%;
  height: 150px;
  padding: 36px 5% 10px;
  background-color: #fff;
  border-radius: 25px;

  @media (width < 768px) {
    padding: 20px 5%;
    height: auto;
  }
}

.fee_title {
  z-index: 1;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 16px;

  @media (width < 1000px) {
    font-size: 1.25rem;
  }

  @media (width < 768px) {
    margin-bottom: 5px;
    font-size: 1.125rem;
  }
}

.fee_text {
  flex-grow: 2;
  z-index: 2;
  font-size: 1rem;

  @media (width < 768px) {
    margin-bottom: 15px;
    flex-grow: 0;
    font-size: 0.875rem;
  }
}

.once .fee_text {
  margin-bottom: 40px;

  @media (width < 768px) {
    margin-bottom: 15px;
  }
}

.twice .fee_text {
  margin-bottom: 20px;
}

.fee_box {
  flex-grow: 3;
  z-index: 2;

  @media (width < 768px) {
    flex-grow: 0;
  }
}

.fee {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;

  @media (width < 1000px) {
    font-size: 0.75rem;
  }

  @media (width < 768px) {
    font-size: 1rem;
  }
}

.fee_impact {
  font-size: 2rem;
  font-weight: 700;

  @media (width < 1000px) {
    font-size: 1.875rem;
  }

  @media (width < 768px) {
    font-size: 1.5rem;
  }
}

.secont_person {
  text-align: left;
  padding-left: 40px;
  font-size: 0.875rem;

  @media (width < 768px) {
    font-size: 0.8125rem;
  }
}

/* リボンの設定 */
.osusume,
.otoku {
  position: absolute;
  top: -11%;
  left: 50%;
  transform: translateX(-50%);

  @media (width < 1000px) {
    top: -8%;
  }

  @media (width < 768px) {
    width: 150px;
    top: -25px;
  }
}

/* 入会金 */
.admission {
  max-width: 100%;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 15px;
  margin-bottom: 75px;
}

.admission_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* グラデーションボックスの設定 */
.gradBox {
  width: 100%;
  height: auto;
  padding: 2px;
  border-radius: 25px;
  text-align: center;
  background: var(--gradation3);
}

.gradBoxInner {
  padding: 5%;
  background-color: #fff;
  border-radius: 25px;
}

/* sec05 */
.sec05 {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

/* ハーフタイムの表 */
.half_table {
  margin-bottom: 60px;
  max-width: 100%;
  width: 100%;
  table-layout: fixed;

  @media (width < 1000px) {
    margin-bottom: 77px;
  }

  @media (width < 768px) {
    margin-bottom: 35px;
  }
}

.half_table th,
.half_table td {
  white-space: break-spaces;
  height: 95px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.half_table th {
  max-width: 275px;
  width: 100%;
  font-size: 16px;
  background-color: #ffd8d8;
  border: 1px solid #000;

  @media (width < 1000px) {
    height: 65px;
    /* font-size: 1rem; */
  }

  @media (width < 768px) {
    height: 50px;
    font-size: 0.9375rem;
  }
}

.half_table td {
  background-color: #f9f9f9;
  border: #000 solid 1px;
  line-height: 150%;
  font-size: 16px;

  /* @media (width < 1000px) {
        font-size: 1rem;
    } */
  @media (width < 768px) {
    font-size: 0.9375rem;
    height: 70px;
  }
}

.regular_table .table_pc_only,
.half_table .table_pc_only {
  @media (width < 768px) {
    display: none;
  }
}

.margin-bottom_70 {
  margin-bottom: 120px;

  @media (width <1000px) {
    margin-bottom: 70px;
  }

  @media (width < 768px) {
    margin-bottom: 100px;
  }
}

/* sec06 hrの代わり */
.sec06 {
  border-bottom: 0.75px solid #c7c7c7;
  display: block;
  padding-top: 120px;
  margin-top: -120px;
  margin-bottom: 0px;

  @media (width <1000px) {
    padding-top: 70px;
    margin-top: -70px;
    margin-bottom: 0px;
  }

  @media (width < 768px) {
    padding-top: 100px;
    margin-top: -100px;
    margin-bottom: 0px;
  }
}

/* sec07 */
.sec07 {
  width: 100%;
  opacity: 1;
  margin: 0px;
  background-color: #faffc9;
  padding: 76px;

  @media (width < 768px) {
    width: 100%;
    opacity: 1;
    margin: 0px;
    background-color: #faffc9;
    padding: 54px 36px;
  }
}

.section_title_box2 {
  max-width: 470px;
}

.title_gradition {
  background: var(--gradation4);
  background: -webkit-var(--gradation4);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: 700;
  max-width: 450px;
  width: 100%;
  border-bottom: 1px solid var(--pink);
}

.section_title_down2 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fontColor);
  max-width: 350px;
  width: 100%;
  background: #faffc8;
  background-clip: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: var(--fontColor);
  margin: 0 auto;

  @media (width < 768px) {
    font-size: 0.875rem;
  }
}

.reservation_text {
  margin: 50px auto 30px;
  max-width: 589px;
  width: 90%;
  font-size: 16px;
}

.bold {
  font-weight: 700;
}