@charset "UTF-8";
/* CSS Document */ :root {
  --text-color: #494949;
  --gray-color: #dddbd7;
  --beige-color: #efede9;
  --beige-bk: #cdbfb2;
  --red-color: #ce2b3d;
  --pink-color: #d84a7d;
  --main-color: #2b5ba6;
  --sub-color: #6a87c0;
  --sec-padding-side: 5%;
  --sec-pc-padding-top: 15%;
  --sec-pc-padding-bottom: 15%;
  --sec-sp-padding-top: 15%;
  --sec-sp-padding-bottom: 15%;
  --common-width: 90%;
  --nomal-pc-fontsize: 1.1rem;
  --nomal-sp-fontsize: 1rem;
  --note-pc-fontsize: 0.8rem;
  --note-sp-fontsize: 0.6rem;
  --note-lineheight: 1.5em;
  --letter-spacing: 0.1em;
  --line-height: 1.6em;
  --font-mincho: "yu-mincho-pr6n", sans-serif;
  --font-mincho_weight: 400;
  --font-mincho_style: normal;
}
html {
  background: linear-gradient(40deg, #7595cd30, #f3f8ff, #f3f8ff, #7595cd3b);
  overflow-y: scroll;
}
/*=========フォント=========*/
body {
  font-size: 62.5%;
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  overflow-x: hidden;
}
.wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #FFF;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
a {
  cursor: pointer;
  display: block;
}
small {
  font-size: 80%;
  line-height: 1.3;
  display: block;
}
img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}
/*=========追従CTAボタン=========*/
.floating_cta {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  background-color: rgba(95, 144, 204, 0.8);
  width: 100%;
  max-width: 500px;
  left: 50%;
  transform: translateX(-50%);
}
.floating_cta_inner {
  width: 85%;
  margin: auto;
  margin-top: 2%;
}
/*=========LPwrap=========*/
.wrapper {
  max-width: 500px;
}
.inner_padding {
  padding: 5%;
}
/*=========CTAアニメーション=========*/
.updown {
  animation-name: updown1; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*========== FV下CPコンテンツ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.famousperson_video, section.mv_bottom_cp {
  background: var(--gray-color);
}
.famousperson_video {
  padding-bottom: 13%;
  padding-top: 5%;
}
@media (max-width: 500px) {
  .famousperson_video {
    padding-bottom: 10%;
    padding-top: 5%;
  }
}
.famousperson_video_text {
  padding-top: 5%;
}
@media (max-width: 500px) {
  .famousperson_video_text {
    padding-top: 5%;
  }
}
.famousperson_video_box {
  aspect-ratio: 1125 / 633;
  width: 100%;
  overflow: hidden;
}
iframe {
  width: 100%;
  height: 100%;
}
/*========== 店内グラデ背景＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.store_gradation_bk {
  background: url(/tmpl/newstore/highgrade/img/common/experience_video_bk.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}
/*========== ナビアイコン＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
ul.nav_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 90%;
  margin: auto;
}
ul.nav_list li {
  width: 98%;
  padding-left: 2%;
}
.nav_wrap {
  padding-top: 10%;
}
/*========== 体験会動画コンテンツ ========== */
.experience_video {
  padding-left: var(--sec-padding_side);
  padding-right: var(--sec-padding_side);
}
.experience_video {
  padding-top: 8%;
  padding-bottom: 10%;
}
.experience_video_text {
  width: 85%;
  margin: auto;
}
.experience_video small {
  color: white;
  font-size: var(--note-pc-fontsize);
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
}
@media (max-width: 500px) {
  .experience_video small {
    font-size: var(--note-sp-fontsize);
  }
}
.experience_video video {
  width: 100%;
  border-radius: 10px;
}
.experience_videobox {
  width: 85%;
  margin: auto;
}
.experience_video small {
  padding: 5%;
  padding-bottom: 3%;
}
video {
  width: 100%;
  aspect-ratio: 720 / 900;
  height: auto;
}
/*========== CTAボタン ==========*/
.cta_wrap {
  width: var(--common-width);
  margin: auto;
}
.updown {
  animation-name: updown; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*========== FV下キャンペーン ==========*/
.mv_bottom_cp {
  position: relative;
}
.mv_bottom_cp small {
  position: absolute;
  bottom: 4%;
  right: 6%;
  color: white;
  font-size: var(--note-pc-fontsize);
}
@media (max-width: 500px) {
  .mv_bottom_cp small {
    font-size: var(--note-sp-fontsize);
  }
}
/*========== キャンペーン詳細 ==========*/
section.cp {
  background: url(/tmpl/newstore/highgrade/img/common/cp/cp_bk.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  position: relative;
}
.cp_title {
  width: var(--common-width);
  margin: auto;
  padding-top: var(--sec-pc-padding-top);
}
.cp_price {
  background: url(/tmpl/newstore/highgrade/img/common/cp_bk.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  padding-bottom: var(--sec-pc-padding-bottom);
}
.cp_price_img {
  width: 85%;
  margin: auto;
  padding-top: 5%;
}
.cp_transfer_img {
  width: 85%;
  margin: auto;
  padding-top: 10%;
}
.cp_price {
  margin-top: -11%;
  position: relative;
}
.cp_price_note, .cp_transfer_note {
  color: white;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  font-size: var(--note-pc-fontsize);
  line-height: var(--note-lineheight);
}
@media (max-width: 500px) {
  .cp_price_note, .cp_transfer_note {
    font-size: var(--note-sp-fontsize);
  }
}
.cp_price_note {
  bottom: 63.8%;
}
.cp_transfer_note {
  bottom: 48.5%;
}
/*========== 比較表  ==========*/
section.comparison {
  position: relative;
}
ul.comparison_note {
  position: absolute;
  bottom: 8.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  color: white;
  font-size: var(--note-pc-fontsize);
  line-height: var(--note-lineheight);
}
@media (max-width: 500px) {
  ul.comparison_note {
    font-size: var(--note-sp-fontsize);
  }
}
.comparison_smallnote {
  letter-spacing: 0.07em;
  margin: 0.4em 0;
}
/*========== お客様の声 ==========*/
.voice {
  padding-top: var(--sec-pc-padding-top);
  padding-bottom: var(--sec-pc-padding-bottom);
  background: url(/tmpl/newstore/highgrade/img/common/voice/voice_bk.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  padding-left: 3%;
  padding-right: 3%;
}
@media (max-width: 500px) {
  .voice {
    padding-top: var(--sec-sp-padding-top);
    padding-bottom: var(--sec-sp-padding-bottom);
  }
}
.voice_title {
  width: 90%;
  margin: auto;
  margin-bottom: 8%;
}
.voice_slider img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
#voice_slider {
  width: 90%;
  background: white;
  margin: auto;
  border-radius: 10px;
}
#voice_slider .slick-prev:before, #voice_slider .slick-next:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #6f8fbf;
  border-right: 2px solid #6f8fbf;
}
#voice_slider .slick-prev:before {
  transform: rotate(-135deg);
}
#voice_slider .slick-next:before {
  transform: rotate(45deg);
}
/* 位置 */
#voice_slider .slick-next {
  right: -15px;
}
#voice_slider .slick-prev {
  left: -11px;
}
#voice_slider .slick-prev:before {
  content: "‹";
}
#voice_slider .slick-next:before {
  content: "›";
}
.voice_note {
  font-size: var(--note-pc-fontsize);
  width: 90%;
  margin: auto;
  margin-top: 4%;
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
}
@media (max-width: 500px) {
  .voice_note {
    font-size: var(--note-sp-fontsize);
  }
}
/*========== ５つのポイント 共通 ==========*/
.point_number_bk img {
  filter: drop-shadow(0 8px 3px rgba(0, 0, 0, 0.1));
}
li.point-item, .point_number_bk {
  background: var(--beige-bk);
}
.point_evennumber_wrap {
  width: 92%;
  margin-left: auto;
  margin-top: -5%;
  padding-bottom: 4%;
}
.point_oddnumber_wrap {
  width: 92%;
  margin-right: auto;
  margin-top: -5%;
  padding-bottom: 4%;
}
.point-item.gradient_bk {
  background: linear-gradient(180deg, rgb(206 190 177) 0%, rgb(232 223 215) 100%);
}
/*========== ５つのポイント POINT１==========*/
.point1_number_bk {
  padding-right: 8%;
}
.point1_number_bk {
  background: url(/tmpl/newstore/highgrade/img/common/point/point1_bk.webp);
  background-size: cover;
  padding-bottom: 4%;
}
.point-item_note {
  position: absolute;
  z-index: 1;
  padding: 3% 5%;
  font-size: var(--note-pc-fontsize);
}
@media (max-width: 500px) {
  .point-item_note {
    font-size: var(--note-sp-fontsize);
  }
}
/*========== ５つのポイント POINT２ ==========*/
#slider_prg img {
  padding: 5px;
}
.support_qa_img {
  margin: 5% auto 0;
  width: 90%;
}
.slider img {
  width: 100%;
  height: auto;
}
/*========== ５つのポイント POINT3 ==========*/
p.point_access_text {
  text-align: center;
  font-size: 1.8rem;
  font-family: var(--font-mincho);
  font-weight: var(--font-mincho-weight);
  font-style: var(--font-mincho-style);
  line-height: 1.7em;
  padding-bottom: 5%;
}
span.point_access_bigtext {
  font-size: 2.5rem;
}
@media (max-width: 500px) {
  p.point_access_text {
    font-size: 1.2rem;
  }
  span.point_access_bigtext {
    font-size: 1.8rem;
  }
}
.point_access_map {
  width: 90%;
  margin: auto;
}
.lifestyle_img {
  width: 90%;
  margin: 10% auto 0;
}
div#slider_store img {
  margin: 0 10px;
}
/*========== ５つのポイント POINT4 ==========*/
.storecount_title_wrap {
  position: relative;
}
p.storecount_text {
  position: absolute;
  top: 10%;
  left: 29%;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.05em;
}
small.storecount_note {
  display: inline-block;
  font-size: 0.7rem;
}
@media (max-width: 500px) {
  p.storecount_text {
    font-size: var(--nomal-sp-fontsize);
    letter-spacing: 0.07em;
  }
}
.storecount_wrap {
  width: 90%;
  margin: auto;
}
#slider_store {
  margin-top: 0.7rem;
}
ul.storecount_note li::before {
  content: "※";
  margin-left: -10px;
}
ul.storecount_note {
  width: 95%;
  margin: auto;
  letter-spacing: 0.1em;
  padding-top: 3%;
  font-size: var(--note-pc-fontsize);
  line-height: 1.3em;
}
@media (max-width: 500px) {
  ul.storecount_note {
    font-size: var(--note-sp-fontsize);
  }
}
small.storecount_smallnote {
  letter-spacing: 0.1em;
  margin: 0.4em 0;
}
.effect_wrap {
  margin-top: 15%;
}
.effect_img {
  width: 90%;
  margin: auto;
}
.two_plan_wrap {
  background: #ffffff99;
  margin-top: 10%;
  border-radius: 10px;
}
.two_plan {
  padding: 10% 5%;
}
.plan_title {
  width: 90%;
  margin: auto;
}
p.plan_text {
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
  font-size: var(--nomal-pc-fontsize);
  width: 95%;
  margin: auto;
}
p.plan_redtext {
  color: var(--red-color);
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
  margin: auto;
  margin-top: 3%;
  font-size: 1rem;
  width: 95%;
}
@media (max-width: 500px) {
  p.plan_text {
    font-size: var(--nomal-sp-fontsize);
  }
  p.plan_redtext {
    font-size: 0.8rem;
    line-height: 1.5em;
  }
}
.plan {
  cursor: pointer;
  background: white;
  border-radius: 30px 30px 10px 10px;
  margin-top: 8%;
  padding-bottom: 2%;
}
.plan-panel {
  display: none;
}
.hidden {
  display: none;
}
/* 矢印 */
.plan-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
/* 開いたとき回転 */
.plan.open .plan-arrow {
  transform: rotate(180deg);
}
/* 上 */
.plan-arrow-top {
  margin-left: 8px;
}
/* 下 */
.plan-arrow-bottom {
  margin-left: 8px;
  display: none;
}
.plan.open .plan-arrow-bottom {
  display: inline-block; /* 下を出す */
}
#yoga, #kick {
  padding-bottom: 5%;
}
.plan_btn_wrap_top, .plan_btn_wrap_bottom {
  width: 50%;
  margin: auto;
  display: block;
  position: relative;
  margin-top: 1rem;
}
.plan_img_wrap {
  width: 90%;
  margin: 10% auto 5%;
}
.plan p {
  font-size: var(--nomal-pc-fontsize);
  letter-spacing: var(--letter-spacing);
  width: 90%;
  margin: auto;
  line-height: var(--line-height);
}
@media (max-width: 500px) {
  .plan p {
    font-size: var(--nomal-sp-fontsize);
  }
}
ul.plan_note {
  width: 90%;
  margin: auto;
  font-size: 1rem;
  margin-top: 3%;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
ul.plan_note {
  width: 90%;
  margin: auto;
  margin-top: 3%;
  line-height: var(--line-height);
  margin-bottom: 10%;
  display: block;
}
ul.plan_note {
  font-size: 0.8rem;
}
.plan.open .plan-arrow-bottom {
  position: absolute;
  display: inline-block;
  top: 20%;
  left: 70%;
}
svg.plan-arrow.plan-arrow-top {
  position: absolute;
  top: 20%;
  left: 70%;
}

/* 開いた時 */
.plan.open .plan-arrow-top {
  display: none; /* 上を消す */
}
.plan.open > .plan_btn_wrap_top {
  margin: 0;
}
.point-item.gradient_bottom_bk {
  background: linear-gradient(180deg, rgb(206 190 177) 0%, rgb(215 199 186) 100%);
}
.point_bottom {
  position: relative;
}
.point_bottom_cta {
  position: absolute;
  top: 10%;
}
@media (min-width: 601px) {
  .plan-arrow {
    width: 25px;
    height: 25px;
  }
  svg.plan-arrow.plan-arrow-top {
    position: absolute;
    top: 22%;
    left: 75%;
  }
  .plan.open .plan-arrow-bottom {
    top: 20%;
  }
}
/*========== 特徴==========*/
/* パネル */
.about-panel {
  display: none;
  margin-top: 60px; /* ボタンと被らないように */
}
/* パネル */
.features-panel {
  display: none;
  margin-top: 60px; /* ボタンと被らないように */
}
/* 矢印 */
.about-arrow {
  width: 4em;
  height: 4em;
  transition: transform 0.3s ease;
}
/* 開いたら回転 */
.about.open .about-arrow, .features.open .about-arrow {
  transform: rotate(180deg);
}
.about_btn_wrap {
  position: relative;
}
svg.about-arrow {
  position: absolute;
  left: 81%;
  top: 20%;
}
@media (max-width: 500px) {
  .about-arrow {
    width: 3em;
    height: 3em;
  }
  svg.about-arrow {
    left: 80%;
    top: 25%;
  }
}
button.about_btn {
  width: 85%;
  margin: auto;
  display: block;
  background: white;
  border-radius: 20px;
}
.about-arrow path {
  stroke: white;
  stroke-width: 1;
}
@media (min-width: 601px) {
  .about-arrow {
    width: 40px;
    height: 40px;
  }
  svg.about-arrow {
    top: 27%;
  }
}
img.about_sub_img {
  position: relative;
  z-index: 1;
  margin-bottom: -4%;
}
#about {
  background: #f0eeec;
}
.about {
  margin-bottom: 3%;
}
#toggle_about, #toggle_features {
  width: 85%;
  margin: auto;
  padding: 5%;
  background: white;
  border-radius: 0 0 10px 10px;
}
.toggle_about_title {
  width: 80%;
  margin: auto;
}
p.toggle_about_text {
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
  margin-top: 5%;
  margin-bottom: 5%;
  font-size: var(--nomal-pc-fontsize);
}
@media (max-width: 500px) {
  p.toggle_about_text {
    letter-spacing: var(--letter-spacing);
    line-height: var(--line-height);
    margin-top: 5%;
    margin-bottom: 5%;
    font-size: var(--nomal-sp-fontsize);
  }
}
.pink {
  color: var(--pink-color);
}
.about.open > .about_btn_wrap > .about_btn, .features.open > .about_btn_wrap > .about_btn {
  border-radius: 20px 20px 0 0;
}
.about_bottom {
  position: relative;
}
.about_cta {
  position: absolute;
  bottom: 2%;
}
/*========== 体験会の流れ　==========*/
.flow {
  background: url(/tmpl/newstore/highgrade/img/common/flow_bk.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  padding-top: var(--sec-pc-padding-top);
}
.flow_list {
  padding-top: 8%;
}
.flow_img {
  position: relative;
}
.flow1_text, .flow2_text, .flow3_text {
  position: absolute;
  width: 47%;
  right: -1%;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  font-size: clamp(10px, 3.2vw, 16px);
}
.flow1_text {
  bottom: 17%;
}
.flow2_text {
  bottom: 4%;
}
.flow3_text {
  bottom: 4%;
}
.flow_title {
  width: 80%;
  margin: auto;
}
span.flow_note {
  font-size: clamp(0.5rem, 2vw, 0.7rem);
}
.flow_text_note {
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  font-size: clamp(10px, 2vw, 12px);
  width: 90%;
  margin: auto;
  margin-top: 2%;
}
.flow_item {
  margin-bottom: 5%;
  padding-right: 5%;
}
.flow_item:nth-child(2) {
  background: #ae9b845e;
  padding: 5% 5% 5% 0;
  margin: 0;
}
.flow_item:nth-child(3) {
  background: #ae9b841c;
  padding: 5% 5% 0 0;
  padding-bottom: var(--sec-pc-padding-bottom);
  margin: 0;
}
.required_object_bk img {
  width: 90%;
  margin: auto;
}
.required_object_bk {
  padding-top: var(--sec-pc-padding-top);
  padding-bottom: var(--sec-pc-padding-bottom);
  background: #e3ddd5;
}
/*========== CP_注釈　==========*/
#cp_comment {
  width: var(--common-width);
  padding-top: var(--sec-pc-padding-top);
  padding-bottom: var(--sec-pc-padding-bottom);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  margin: auto;
  padding-left: 1em;
  box-sizing: border-box;
  font-size: 0.9rem;
}
@media (max-width: 500px) {
  #cp_comment {
    font-size: 0.7rem;
  }
}
#cp_comment dd:before {
  position: relative;
  content: "⚫︎";
}
#cp_comment dd {
  text-indent: -1em;
}
#cp_comment dt {
  margin-left: -1.5em;
}
.cp_price_note a {
  display: inline;
}
.cp_price_note a {
  border-bottom: solid 0.5px;
}
/*========== 店舗情報　==========*/
.store_information {
  width: var(--common-width);
  margin: auto;
  padding-bottom: var(--sec-pc-padding-bottom);
}
.logo {
  width: 50%;
  margin: auto;
  max-width: 300px;
}
h1 {
  font-size: clamp(28px, 5vw, 35px);
  color: var(--main-color);
  font-family: var(--font-mincho);
  font-weight: var(--font-mincho-weight);
  font-style: var(--font-mincho-style);
  text-align: center;
  margin-bottom: 3%;
}
h1 span {
  color: var(--text-color);
  font-size: clamp(14px, 3vw, 18px);
}
.user {
  margin: auto;
  background: var(--sub-color);
  color: white;
  text-align: center;
  padding: 5px;
  width: 70px;
}
.store_information_img {
  margin: 5% 0;
}
.store_information_list dd {
  border-bottom: 1px solid var(--gray-color);
  padding-bottom: 1em;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  font-size: 0.9rem;
}
.store_information_list dt {
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  padding-top: 1em;
  font-size: 0.9rem;
}
@media (max-width: 500px) {
  .store_information_list dd, .store_information_list dt {
    font-size: 0.8rem;
  }
}
dl.store_information_list dd:last-of-type {
  border-bottom: none;
  padding-bottom: 2em;
}
.map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 100%;
}
iframe {
  width: 100%;
  height: 100%;
}
/*========== 料金　==========*/
#price {
  background: linear-gradient(to bottom, #efefef 0%, #ffffff 100%);
  padding-top: var(--sec-pc-padding-top);
}
.price_title {
  width: 80%;
  margin: auto;
  margin-bottom: 8%;
}
/* パネル */
.price-panel {
  display: none;
}
/* 開いたら回転 */
.price.open .price-arrow {
  transform: rotate(180deg);
}
.price_btn_wrap {
  position: relative;
}
.price-arrow path {
  stroke: var(--main-color);
}
.price-arrow {
  width: 3em;
  height: 3em;
  transition: transform 0.3s ease;
  position: absolute;
  right: 8%;
  top: 40%;
}
@media (max-width: 500px) {
  /* 矢印 */
  .price-arrow {
    width: 2em;
    height: 2em;
  }
}
.price_btn_wrap {
  width: 80%;
  margin: auto;
  padding: 5% 0;
}
.price_item {
  position: relative;
  margin-top: 5%;
}
#toggle_price li:first-of-type {
  margin-top: 0;
}
.price_note {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.5em;
  letter-spacing: 0.1em;
  font-size: clamp(9px, 2.9vw, 14px);
  width: 80%;
  margin: auto;
}
.price_note.pff_text {
  bottom: 11%;
}
.price_cta {
  padding: 5% 0;
  padding-top: 0;
}
#toggle_price {
  margin-bottom: 5%;
}
/*========== パンくず　==========*/
ol.breadcrumbs {
  width: 90%;
  padding-bottom: 2rem;
  margin: auto;
  font-size: clamp(10px, 3vw, 14px);
  color: #4c4948;
}
li.breadcrumbs_item {
  display: inline-flex;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.breadcrumbs_item::after {
  content: ">";
}
.breadcrumbs_item:last-child::after {
  content: "";
}
/*========== footer　==========*/
footer {
  background: linear-gradient(-40deg, #2b5ba8 8%, #2b90a8 84%);
  padding: 30px 0;
  color: white;
  max-width: 500px;
  margin: auto;
}
@media (max-width: 500px) {
  footer {
    padding: 5% 0;
  }
}
.footer_logo {
  width: 50%;
  max-width: 300px;
  margin: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 400px;
  font-size: clamp(12px, 3.75vw, 16px);
  margin: 5% auto 0;
  justify-content: center;
  line-height: 1.7em;
  padding-bottom: 5%;
}
.footer-links li {
  position: relative;
  padding: 0 12px;
}
.footer-links li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
footer small {
  border-top: solid 0.5px;
  text-align: center;
  padding-top: 5%;
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  font-size: clamp(10px, 3.75vw, 12px);
}
/*========== 各セクション(スマホ)padding　==========*/
@media (max-width: 500px) {
  .cp_title, .flow, #cp_comment, .required_object_bk, #price {
    padding-top: var(--sec-sp-padding-top);
  }
  .cp_price, #cp_comment, .required_object_bk, .flow_item:nth-child(3) {
    padding-bottom: var(--sec-sp-padding-bottom);
  }
}
/*========== カウントダウン追従CTAボタン　==========*/
.floating_cta .countdown span {
  margin-right: 3px;
  padding: 0px 6px;
  border-radius: 6px;
  background: #fff;
  font-size: clamp(18px, 3.75vw, 25px);
  box-shadow: 0 3px 3px -2px #333;
  color: var(--text-color);
}
.cdt_inner {
  text-align: center;
}
#countdownArea {
  font-size: clamp(16px, 3.75vw, 20px);
  font-weight: bold;
  margin-bottom: 3%;
}
.cdt_copy {
  margin: 3% 0 4%;
  font-size: clamp(14px, 3.75vw, 18px);
  color: white;
  position: relative;
  font-weight: bold;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.cdt_copy::before {
  position: absolute;
  left: 10%;
  transform: rotate(-25deg);
}
.cdt_copy::after {
  position: absolute;
  right: 10%;
  transform: rotate(25deg);
}
.cdt_copy::before, .cdt_copy::after {
  position: absolute;
  content: "";
  display: block;
  width: 1.5px;
  height: 1.2em;
  background: #fff;
  top: 10%;
}
.cdt_cta {
  width: 95%;
  margin: auto;
}