@charset "utf-8";

:root {
  --article_size: 1200px;
  --color_main: #232323;
  --color_text: #232323;
  --color_list_check: #232323;
  --color_list_num: #232323;
  --color_red: #c90000;
  --color_blue: #00407f;
  --color_orange: #ff9110;
  --color_pink_orange: #ff9257;
  --color_light_orange: #ffeaa8;
  --color_yellow: #f8ff8d;
  --font_anton: "Anton", sans-serif;
  --font-icon: 'myicon';
  --color_border--table: #232323;
  --swl-btn_shadow: 3px 3px 0 rgba(0,0,0,.1);
}

.anton {
  font-family: var(--font_anton);
  font-weight: 900;
}

/* icon-font */

@font-face {
  font-family: 'myicon';
  src: url('../font/myicon.woff?20250714-1500') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"] {
  line-height: 0;
}

[class^="iconm-"], [class*=" iconm-"] {
  display: block;
  font-family: var(--font-icon);
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iconm-outer_link,
.iconm-mail {
  display: inline !important;
  padding-left: .5em;
}
.iconm-outer_link:before {
  content: "\e917";
}
.iconm-speech_big_r:before {
  content: "\e913";
}
.iconm-speech_big_l:before {
  content: "\e914";
}
.iconm-person_two:before {
  content: "\e918";
}
.iconm-persons:before {
  content: "\e915";
}
.iconm-person:before {
  content: "\e916";
}
.iconm-dots:before {
  content: "\e912";
  font-size: min(5vw, 34px);
}
.iconm-num_1:before {
  content: "\e90c";
}
.iconm-num_2:before {
  content: "\e90d";
}
.iconm-num_3:before {
  content: "\e90e";
}
.iconm-num_4:before {
  content: "\e90f";
}
.iconm-num_5:before {
  content: "\e910";
}
.iconm-num_6:before {
  content: "\e911";
}
.iconm-technique:before {
  content: "\e900";
}
.iconm-speech_l:before {
  content: "\e901";
}
.iconm-speech_r:before {
  content: "\e902";
}
.iconm-tap {
  margin-right: .5rem;
}
.iconm-tap:before {
  font-size: 1.5rem;
  content: "\e903";
}
.iconm-instructor:before {
  content: "\e904";
}
.iconm-store:before {
  content: "\e905";
}
.iconm-insta:before {
  content: "\e906";
}
.iconm-clown:before {
  content: "\e907";
}
.iconm-mail:before {
  content: "\e908";
}
.iconm-phone:before {
  content: "\e909";
}
.iconm-price:before {
  content: "\e90a";
}
.iconm-toku:before {
  content: "\e90b";
}

body {
  font-size: clamp(12px, 3.137vw, 16px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  -webkit-tap-highlight-color: transparent;
}

img {
  vertical-align: bottom;
}

.l-content {
  margin-bottom: 0;
  padding-top: 0;
}

main {
  padding: 4em 0 6em;
}

main.page-top,
main.page-store {
  padding: 0;
}

.swell-block-fullWide.padding-lage {
  padding: 3.2em 0;
}

.swell-block-fullWide+.swell-block-fullWide {
  margin-top: 0;
}

.alignfull>.wp-block-cover__inner-container.no-bottom-space>* {
  margin-bottom: 0;
}

.alignfull.w-640>.wp-block-cover__inner-container {
  max-width: 640px;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.content-inner-wrap {
  padding: 0 2.941vw;
}

.content-inner-wrap-margin {
  padding: 0 6.863vw;
}

.content-inner-indent {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;
  padding: 1em 1.5em;
}

.column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw;
  padding: min(4vw, 30px);
}

/* 汎用アニメーション */

.show-anim {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show-anim.animate {
  opacity: 1;
  transform: translateY(0);
}

/* タブ */

#content .c-tabList {
  justify-content: center;
  align-items: end;
  gap: .5em;
}

.c-tabList .c-tabList__item {
  width: calc(33% - 0.5em);
  max-width: 320px;
}

.is-style-default .c-tabBody {
  padding: 2.5em 1em;
  border: none;
}

@media (min-width: 600px) {
  .is-style-default .c-tabBody {
      padding: 4em 2em;
  }
}

.is-style-default>.c-tabList .c-tabList__button:hover,
.is-style-default>.c-tabList .c-tabList__button[aria-selected=true] {
  position: relative;
  padding: 1em 1em 1.5em;
  margin-bottom: -3px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #333;
  border-radius: 6px 6px 0 0;
}

.is-style-default>.c-tabList .c-tabList__button[aria-selected=true]::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  bottom: -.2em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.is-style-default>.c-tabList .c-tabList__button {
  opacity: 1;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 3px;
  padding: 1em;
  background-color: var(--color_red);
  border-radius: 6px 6px 0 0;
}

.wp-block-table {
  margin: 1em 0;
}

.wide-750 {
  max-width: 750px;
  margin: 0 auto;
}

.wide-400 {
  width: 95%;
  max-width: 400px;
  margin: 0 auto;
}

.wide-90 {
  width: 90%;
  margin: 0 auto;
}

.flexbox {
  display: flex;
  align-items: center;
  gap: .25em;
}

.top-space-10 {
  padding-top: min(15vw, 100px);
}

.bottom-space-5 {
  padding-bottom: min(4vw, 30px);
}

.bottom-space-10 {
  padding-bottom: min(10vw, 60px);
}

.bottom-space-25 {
  padding-bottom: min(10vw, 95px);
}

.bottom-space-50 {
  padding-bottom: min(20vw, 190px);
}

.bottom-margin-10 {
  margin-bottom: min(9.804vw, 80px);
}

.top-space-0 {
  padding-top: 0 !important;
}

.top-margin-5 {
  margin-top: min(3vw, 10px);
}

.top-margin-10 {
  margin-top: min(9.804vw, 80px) !important;
}

.bg-white {
  background-color: #fff;
}

.bg-verylight-gray {
  background-color: #f9f9f9;
}

.bg-light-gray {
  background-color: #f4f4f4;
}

.bg-blue {
  background-color: var(--color_blue);
}

.bg-cream {
  background-color: var(--color_footer_bg);
}

.bg-dark-gray {
  background-color: #333333;
}

.h2-section-head {
  margin-bottom: 2.5em;
  color: var(--color_red);
  font-weight: 700;
  text-align: center;
}

.h2-section-head h2 {
  font-size: min(6.863vw, 40px);
  letter-spacing: .06em;
}

.h2-section-head.thin h2 {
  line-height: 1.1;
  padding-bottom: min(2vw, 15px);
}

.h2-section-head + p {
  font-size: 1rem;
}

.h2-en {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: min(2vw, 15px);
  color: var(--color_red);
  font-family: var(--font_anton);
  font-size: min(4vw, 25px);
  font-weight: normal;
}

.tit-deco {
  width: min(80vw, 400px);
  height: min(1vw, 5px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 718 9"><defs><style>.cls-1{fill:%2300407f;}.cls-1,.cls-2{fill-rule:evenodd;}.cls-2{fill:%23c90000;}</style></defs><path class="cls-1" d="M691,379.5h351l-4,9H687Z" transform="translate(-324 -379.5)"/><path class="cls-2" d="M328,379.5H679l-4,9H324Z" transform="translate(-324 -379.5)"/></svg>');
  background-repeat: no-repeat;
  background-size: 100%;
}

h2.h2-common {
  position: relative;
  margin-top: min(7vw, 50px);
  margin-bottom: min(7vw, 50px);
  border-bottom: solid 3px #c0c0c0;
  font-size: clamp(14px, 3.5vw, 18px);
}

h2.h2-common::after {
  position: absolute;
  content: " ";
  display: block;
  width: min(40%, 300px);
  border-bottom: solid 3px var(--color_red);
  bottom: -3px;
}

h2.h2-common > span {
  display: block;
  padding: 0.5em;
}

.h2-two-lines + p {
  display: inline-block;
  position: relative;
  padding: min(3vw, 20px) 0;
  color: var(--color_red);
  font-size: min(4.902vw, 30px);
  font-weight: 700;
  z-index: 1;
}

.h2-two-lines + p::before,
.h2-two-lines + p::after {
  position: absolute;
  content: "";
  width: min(12vw, 50px);
  height: 2px;
  margin: auto;
  background-color: var(--color_red);
  top: 0;
  bottom: 0;
}

.h2-two-lines + p::before {
  left: -15vw;
}

.h2-two-lines + p::after {
  right: -15vw;
}

.h2-red-big {
  position: relative;
  margin-bottom: min(9vw, 70px);
  padding-bottom: min(5vw, 40px);
  text-align: center;
  color: var(--color_red);
  font-size: min(6.863vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.h2-red-big.thin {
  margin-bottom: min(2vw, 20px);
}

.h2-section-head h2 span,
.h2-red-big span {
  font-size: min(8.824vw, 50px);
}

.h2-red-big::after {
  position: absolute;
  content: "";
  width: min(14.706vw, 100px);
  height: min(0.49vw, 3px);
  margin: auto;
  background-color: var(--color_red);
  bottom: 0;
  left: 0;
  right: 0;
}

.h2-red-circle {
  display: flex;
  align-items: center;
  margin-top: min(6vw, 40px);
  margin-bottom: min(8vw, 30px);
  margin-left: -6vw;
  text-align: center;
  color: var(--color_main);
  font-size: min(6.863vw, 40px);
  letter-spacing: 0.1em;
  text-align: left;
}

.bg-dark-gray .h2-red-circle {
  color: #fff;
}

.h2-red-circle::before {
  display: block;
  content: "";
  width: min(6.471vw, 40px);
  height: min(6.471vw, 40px);
  margin-right: min(4.902vw, 30px);
  background-color: var(--color_red);
  border-radius: 100%;
}

.h2-red-circle.type2 {
  align-items: flex-start;
  margin-top: min(8vw, 50px);
}

.h2-red-circle span {
  display: block;
  font-size: min(3.922vw, 20px);
  line-height: 2;
  letter-spacing: 0.05em;
}

h3.h3-red {
  padding: 0 min(3vw, 20px) min(5vw, 40px);
  color: var(--color_red);
  font-size: min(4.902vw, 28px);
  text-align: center;
}

h3.h3-red.left {
  padding: 1em 0 0.5em 0;
  font-size: min(3.922vw, 20px);
  text-align: left;
}

h3.h3-bg-red {
  padding: min(3vw, 10px) min(3vw, 20px);
  background-color: var(--color_red);
  color: #fff;
  font-size: min(3.5vw, 20px);
  font-weight: 700;
}

.h3-common {
  width: min(50%, 300px);
  margin-left: 1em;
  padding: 0.1em 1em;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
  background-color: var(--color_blue);
  color: #fff;
}

.h3-type2 {
  display: flex;
  gap: .5em;
  margin-bottom: 0 !important;
  font-size: min(8vw, 40px);
  font-weight: normal;
  color: white;
  line-height: 1;
}

.h3-type2::before {
  display: block;
  content: "";
  width: min(10%, 100px);
  height: min(2vw, 5px);
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
  background-color: white;
  bottom: 0;
  left: -1.5em;
}

.h3-type2 + div {
  width: 92%;
  margin: 0 auto;
  padding: 1.5em 2em;
  background-color: white;
  border-radius: min(0.8vw, 8px);
}

.h3-type3 {
  padding: .5em 1.5em;
  border-left: solid 5px var(--color_blue);
  color: var(--color_blue);
  margin-bottom: 1em;
}

.br-pc {
  display: none;
}

.speech {
  margin-bottom: min(6.863vw, 20px);
  font-weight: 700;
  text-align: center;
}

.speech > * {
  display: inline-block;
  position: relative;
  font-size: min(3.922vw, 20px);
}

.speech > *::before,
.speech > *::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #232323;
  bottom: 0;
}

.speech > *::before {
  transform: rotate(-22deg);
  left: -1.5em !important;
}

.speech > *::after {
  transform: rotate(22deg);
  right: -1.5em;
}

.speech span {
  padding: 0 min(1vw, 10px);
  font-size: min(4.902vw, 28px);
}

.speech.red {
  color: var(--color_red);
}

.speech.red > *::before,
.speech.red > *::after {
  background-color: var(--color_red);
}

.speech.blue {
  color: var(--color_blue);
}

.speech.blue > *::before,
.speech.blue > *::after {
  background-color: var(--color_blue);
}

.speech.white {
  color: #fff;
}

.speech.white > *::before,
.speech.white > *::after {
  background-color: #fff;
}

.speech.narrowly {
  margin-bottom: min(2vw, 15px);
}

.speech-type2 {
  position: relative;
  display: inline-block;
  min-width: 240px;
  max-width: 100%;
  padding: 0 min(2.2vw, 25px) min(1.5vw, 20px);
  border-bottom: solid 2px var(--color_main);
  font-size: min(4.902vw, 28px);
  font-weight: 700;
  text-align: center;
}

.speech-type2::before,
.speech-type2::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
}

.speech-type2::before {
  border: 10px solid transparent;
  border-top: 10px solid var(--color_main);
  transform: translateX(-50%);
}

.speech-type2::after {
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  margin-top: -5px;
  transform: translateX(-50%);
}

.speech-big {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(3vw, 28px);
  font-size: min(4.5vw, 25px);
  text-align: center;
  z-index: 1;
}

.speech-big.min {
  margin-bottom: min(6.2vw, 50px);
  font-size: min(3.7vw, 22px);
}

.speech-big i {
  font-size: min(11vw, 69px);
  transform: translateY(2vw);
}

.speech-big .txt-big {
  font-size: min(5.2vw, 32px);
}

.speech-min {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;  margin: min(2vw, 10px) 0 min(1vw, 5px);
  font-weight: 700;
}

.speech-min i {
  font-size: 1.5em;
}

.link-inline {
  text-decoration: underline;
}

.btn-area {
  display: flex;
  justify-content: center;
  gap: min(2.941vw, 15px);
  width: min(87vw, 435px);
  margin: 0 auto;
}

.btn-area [class*=is-style-btn_] {
  width: 100%;
  margin: 0;
}

.btn-area [class*=is-style-btn_] a {
  width: 100%;
}

.area-share-btn {
  width: min(100%, 750px);
  margin: 5em auto 3em;
}

.btn-icon-under a,
.btn-icon-top a,
.btn-icon-right a,
.btn-icon-left a {
  min-width: 60%;
  padding-right: min(9vw, 50px);
}

.btn-icon-under a::after,
.btn-icon-top a::after,
.btn-icon-right a::after,
.btn-icon-left a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
  background-color: var(--color_red);
  top: 0;
  bottom: 0;
  right: min(4vw, 25px);
}

.btn-icon-under a:hover::after,
.btn-icon-top a:hover::after,
.btn-icon-right a:hover::after,
.btn-icon-left a:hover::after {
  background-color: #fff;
}

.btn-icon-under a::after {
  transform: rotate(90deg);
}

.btn-icon-top a::after {
  transform: rotate(-90deg);
}

.btn-icon-left a {
  padding-left: min(9vw, 50px);
  padding-right: .75em 1.5em;
}

.btn-icon-left a::after {
  transform: rotate(180deg);
  left: min(4vw, 25px);
  right: auto;
}

.btn-icon-under a:hover:after,
.btn-icon-top a:hover:after {
  background-color: #fff;
}

.btn-accordion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: min(3vw, 30px);
  padding: .75em 1.5em;
  background: none;
  border: 1px solid var(--color_red);
  border-radius: min(1.4vw, 5px);
  color: var(--color_red);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.is-style-btn_line a {
  border: 2px solid;
  box-shadow: var(--swl-btn_shadow);
  font-weight: 700;
}

[class*=is-style-btn_].-size-s {
  font-size: clamp(12px, 3.5vw, 16px);
}

[class*=is-style-btn_] a.size-l {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25em;
  width: min(90%, 500px);
  margin: 0 auto;
  font-size: min(4.902vw, 25px);
  line-height: 1.35;
}

[class*=is-style-btn_] a.size-l > span {
  display: inline-block;
}

.icon-line {
  line-height: 0;
}

.swell-block-button .icon-line {
  font-size: 2rem;
}

[class*=is-style-btn_] a.grayout {
  background: #d4d4d4;
  pointer-events: none;
}

.btn-store-name {
  display: block;
  font-size: clamp(10px, 3vw, 16px);
}

.white_ {
  --the-btn-color: white;
  --the-solid-shadow: rgba(0, 0, 0, 1);
}

.is-style-btn_line.white_ a:hover {
  background-color: rgba(0, 0, 0, .5);
}

.icon-plus-circle,
.icon-minus-circle {
  display: block;
  width: min(5vw, 20px);
  height: min(5vw, 20px);
  margin-left: 0.4em;
}

.icon-plus-circle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54.29 54.29"><path fill="%23ff5757" d="M87.64,815.48h-13v13h-6v-13h-13v-6h13v-13h6v13h13Zm-16-28.14a25.14,25.14,0,1,0,25.14,25.14,25.17,25.17,0,0,0-25.14-25.14m0-2a27.14,27.14,0,1,1-27.15,27.14,27.14,27.14,0,0,1,27.15-27.14Z" transform="translate(-44.47 -785.34)"></path></svg>');
}

.icon-minus-circle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54.29 54.29"><path fill="%23ff5757" d="M206,815.48H174v-6h32Zm-16-28.14a25.14,25.14,0,1,0,25.15,25.14A25.17,25.17,0,0,0,190,787.34m0-2a27.14,27.14,0,1,1-27.14,27.14A27.15,27.15,0,0,1,190,785.34Z" transform="translate(-162.87 -785.34)"></path></svg>');
}

.icon-plus-circle.gray {
  width: min(12.255vw, 50px);
  height: min(12.255vw, 50px);
  margin: 1.5em auto;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54.29 54.29"><path fill="%23333333" d="M87.64,815.48h-13v13h-6v-13h-13v-6h13v-13h6v13h13Zm-16-28.14a25.14,25.14,0,1,0,25.14,25.14,25.17,25.17,0,0,0-25.14-25.14m0-2a27.14,27.14,0,1,1-27.15,27.14,27.14,27.14,0,0,1,27.15-27.14Z" transform="translate(-44.47 -785.34)"></path></svg>');
}

.icon, .icon svg {
  width: 1.6em;
  height: 1.6em;
  vertical-align: top;
}

.icon {
  margin-right: 0.5em;
}

.icon-mail {
  width: 1.4em;
  height: 1.4em;
  margin-left: 0.5em;
}

.icon-phone {
  margin-right: 0.1em;
}

.txt-red {
  color: var(--color_red);
  font-weight: 700;
}

.txt-yellow {
  color: var(--color_yellow) !important;
  font-weight: 700;
}

.txt-blue {
  color: var(--color_blue);
  font-weight: 700;
}

.txt-discription {
  margin-bottom: min(4vw, 20px);
  padding: 0 min(4vw, 30px);
}

.txt-discription span {
  font-weight: 700;
}

.txt-spacious {
  line-height: 2.2;
  letter-spacing: 0.1em;
}

.txt-amendment {
  margin-bottom: min(7vw, 50px);
  padding-left: min(5vw, 70px);
}

.default-hide {
  display: none;
}

.paln-frame {
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 4px 4px -4px rgba(0,0,0,.1);
  border-radius: min(1.4vw, 5px);
  outline: solid 2px var(--color_blue);
}

.important-frame {
  width: 95%;
  padding: 1em;
  background-color: #faffb7;
  border: solid 1px #fff27e;
  border-radius: min(0.8vw, 6px);
  font-size: 1rem;
}

.paln-frame h4 {
  padding: min(0.8vw, 5px);
  background-color: var(--color_blue);
  border-radius: min(1.4vw, 5px) min(1.4vw, 5px) 0 0;
  color: #fff;
  font-size: min(5.882vw, 30px);
  text-align: center;
  letter-spacing: 0.1em;
}

.paln-frame h4.frame-separator {
  margin-top: min(7vw, 50px);
  border-radius: 0;
}

.paln-frame h4 span {
  padding: 0 0.15em;
  font-size: min(4.902vw, 28px);
}

.chance {
  margin: 0 auto;
}

.chance.wide-l {
  margin-bottom: 0;
}

.chance .column {
  padding: min(2vw, 20px) min(4vw, 30px);
}

.chance .important-frame {
  padding-bottom: 1.5em;
}

.more-chance {
  font-size: min(4vw, 18px);
  font-weight: 700;
  text-align: center;
}

.chance .speech {
  margin: min(3vw, 20px) 0 min(2vw, 10px);
}

.chance .speech span {
  font-size: min(4vw, 18px);
}

.chance .txt-big {
  font-size: min(5vw, 25px);
}

.recomend-frame {
  padding-bottom: min(5vw, 40px);
  outline: solid 2px var(--color_red);
  outline-offset: -2px;
}

.recomend-frame h4 {
  background-color: var(--color_red);
}

.h5-common {
  position: relative;
  margin: min(5vw, 40px) 0;
  padding: min(3vw, 20px);
  color: var(--color_blue);
  font-size: min(4.2vw, 24px);
  font-weight: 700;
  text-align: center;
}

.h5-common::after {
  position: absolute;
  content: "";
  width: min(17vw, 100px);
  height: min(1vw, 5px);
  margin: auto;
  background-color: var(--color_blue);
  transform: skew(-20deg, 0deg);
  bottom: 0;
  left: 0;
  right: 0;
}

.icon-down {
  display: block;
  width: min(7.451vw, 38px);
  height: min(3.137vw, 16px);
  margin: 0 auto min(1.961vw, 20px);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--color_red);
}

.label-circle {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(20vw, 100px);
  height: min(20vw, 100px);
  background-color: var(--color_red);
  border: solid 2px white;
  border-radius: 100%;
  font-size: min(5vw, 25px);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  top: min(10vw, 30px);
  right: 3vw;
}

.label-circle span {
  display: block;
}

.frame-balloon {
  position: relative;
  max-width: 500px;
  margin: min(2vw, 10px) auto 1em;
  padding: 1em 1.5em;
  background-color: #fbffc2;
  border-radius: min(1.5vw, 10px);
}

.frame-balloon::before {
  position: absolute;
  content: "";
  width: min(5vw, 30px);
  height: min(4vw, 22px);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #fbffc2;
  top: -3.5vw;
  left: 50%;
  transform: translateX(-50%);
}

.frame-balloon h5 {
  position: relative;
  margin-bottom: .5em;
  color: var(--color_green);
  font-size: 1rem;
}

.frame-balloon h5::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color_green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.frame-balloon h5 span {
  position: relative;
  padding: .25em 1em;
  background-color: #fbffc2;
}

.frame-commn {
  overflow: hidden;
  background-color: #fff;
  border-radius: min(1.5vw, 10px);
}

.frame-commn h3 {
  padding: .5rem;
  background-color: var(--color_red);
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}

.frame-commn > div {
  font-size: 1rem;
  padding: .85em 1.5em 1.5em;
}

.frame-gray {
  background-color: #f8f8f4;
  border-radius: min(2vw, 6px);
}

.list-check li {
  position: relative;
  padding-left: min(9vw, 45px);
  font-size: 1.3rem;
  text-align: left;
  font-weight: 700;
}

.list-check li::before {
  position: absolute;
  content: "";
  width: min(7vw, 25px);
  height: min(7vw, 25px);
  background-color: #fff;
  border: solid 1px #d7d7d7;
  border-radius: min(1.2vw, 5px);
  top: .2rem;
  left: 0;
}

.list-check li::after {
  display: block;
  position: absolute;
  content: "\e923";
  font-family: icomoon !important;
  color: var(--color_red);
  font-size: min(7vw, 31px);
  line-height: .8;
  top: .1rem;
  left: min(.6vw, 5px);
}

.num-list {
  display: flex;
  flex-direction: column;
  gap: .5em;
  margin: 1em 0;
  padding: 1.5em;
}

.num-list li {
  counter-increment: item;
  position: relative;
  padding-left: 1.6em;
}

.num-list li::before {
  content: counter(item) ").";
  position: absolute;
  left: 0;
}

.form-info {
  max-width: 806px;
  margin: 0 auto;
  padding: min(3vw, 30px) 1em min(3vw, 30px);
  font-size: 1rem;
}

/* フォーム */

.search-form-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  margin-bottom: min(8vw, 60px);
  padding: 20px;
  background-color: white;
  border-radius: min(1.5vw, 10px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.search-form-wrap > p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(1.2vw, 10px);
}

.search-form-wrap .icon-search {
  font-size: min(4vw, 16px);
}

.search-form-wrap > form,
.search-form-wrap .search-box {
  flex: 1;
  max-width: 300px;
}

.load-wrap {
  position: relative;
}

.loading {
  position: absolute;
  display: none;
  width: 50px;
  height: 50px;
  margin: auto;
  cursor: progress;
  top: min(10vw, 50px);
  right: 0;
  left: 0;
  z-index: 1;
}

.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5em;
  height: 5em;
  margin-top: -2.5em;
  margin-left: -2.5em;
  border-radius: 50%;
  border: 0.25em solid #ccc;
  border-top-color: #333;
  animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* ベーススタイル */
* {
  box-sizing: border-box;
}

.wpcf7 {
  font-family: var(--swl-font_family);
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* フォームタイトル部分 */
.wpcf7 h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
}

/* ラジオボタン（お問い合わせ目的選択） */
.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
}

.wpcf7-list-item label:hover {
  background: #e3f2fd;
  border-color: #2196f3;
}

.wpcf7-list-item input[type="radio"] {
  margin-right: 12px;
  accent-color: #ff6b6b;
  transform: scale(1.2);
  outline: none;
  border: none;
}

.wpcf7-list-item input[type="radio"]:focus {
  outline: none;
  box-shadow: none;
}

.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
  color: #ff6b6b;
  font-weight: bold;
}

.wpcf7-list-item label:has(input:checked) {
  background: #fff0f0;
  border-color: #ff6b6b;
}

/* テーブルスタイル */
.inquiry {
  width: 100%;
  margin-top: 2em;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.inquiry th {
  background: #f3f3f3;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  width: 300px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
  font-size: 1rem;
}

.inquiry td {
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
}

.inquiry tr:last-child td {
  padding-bottom: 0;
  border-bottom: none;
}

/* 必須・任意ラベル */
.haveto, .any {
  display: inline-block;
  margin-right: 8px;
  padding: .25rem .5rem;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: bold;
  color: white;
  line-height: 1;
  letter-spacing: 0.5px;
}

.haveto {
  background: #ff4757;
}

.any {
  background: #858585;
}

/* 入力フィールド共通スタイル */
.wpcf7-text, 
.wpcf7-email, 
.wpcf7-tel, 
.wpcf7-textarea, 
.wpcf7-select,
.wpcf7-date {
  width: 100%;
  padding: .5rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

.wpcf7-text:focus, 
.wpcf7-email:focus, 
.wpcf7-tel:focus, 
.wpcf7-textarea:focus, 
.wpcf7-select:focus,
.wpcf7-date:focus {
  outline: none;
}

/* プレースホルダー */
.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-tel::placeholder,
.wpcf7-textarea::placeholder {
  color: #adb5bd;
  font-style: italic;
}

/* セレクトボックス */
.wpcf7-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  padding-right: 2.5rem;
  appearance: none;
}

/* 日付入力フィールド */
.wpcf7-date {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 1.4rem;
  padding-right: 1rem;
  position: relative;
}

.wpcf7-date::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: none;
  color: transparent;  
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

.wpcf7-date::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
}

.wpcf7-date::-webkit-clear-button {
  display: none;
  -webkit-appearance: none; 
}

.wpcf7-date::-webkit-datetime-edit {
  background: none;
}

.wpcf7-date::-webkit-datetime-edit-fields-wrapper {
  background: none;
}

.wpcf7-date::-webkit-datetime-edit-text {
  background: none;
}

/* Firefoxでの日付入力 */
.wpcf7-date::-moz-focus-inner {
  border: 0;
}

/* 日付入力のプレースホルダー風スタイル */
.wpcf7-date:invalid {
  color: #adb5bd;
}

.wpcf7-date:valid {
  color: #333;
}

/* フォーム幅制御 */
.form-width-m {
  width: 44%;
  max-width: 300px;
}

.form-width-m .wpcf7-date {
  width: 100%;
}

/* 日時選択部分の特別スタイル */
.abc {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.abc .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 120px;
}

.abc br {
  display: none;
}

.form-width-m .wpcf7-select,
.form-width-m .wpcf7-date {
  font-size: 1rem;
}

/* テキストエリア */
.wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}

/* 経験選択のラジオボタン */
.radio1 {
  display: flex;
  gap: .5rem;
  flex-direction: row;
  margin-bottom: 0;
}

.radio1 .wpcf7-list-item label {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 10px 20px;
  min-width: 80px;
  justify-content: center;
  font-size: 1rem;
}

/* 同意部分 */
#accep-wrap {
  background: #fff0f0;
  padding: 20px;
  border-radius: 8px;
  margin: 1.5em 0;
  border-left: 4px solid #ff6b6b;
  text-align: center;
}

#accep-wrap p {
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.6;
}

#accep-wrap a {
  font-size: 1rem;
  font-weight: 700;
  text-decoration: underline;
}

.wpcf7-acceptance {
  margin-bottom: 10px;
}

.wpcf7-acceptance input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #ff6b6b;
  transform: scale(1.2);
  outline: none !important;;
  border: none !important;; 
}

.wpcf7-acceptance input[type="checkbox"]:focus {
  outline: none !important;
  box-shadow: none !important; 
}

.wpcf7-acceptance input[type="checkbox"]:checked {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.wpcf7-acceptance input[type="checkbox"]:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* 送信ボタン */
.wpcf7-submit {
  width: 100%;
  padding: 18px 30px;
  background: var(--color_red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 33, 33, 0.3);
  letter-spacing: 1px;
}

.wpcf7-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 33, 33, 0.4);
}

.wpcf7-submit:disabled {
  background: #adb5bd;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* エラー・成功メッセージ */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* バリデーションエラー */
.wpcf7-not-valid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* スピナー */
.wpcf7-spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #ff6b6b;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 隠されたグループの表示制御 */
.wpcf7cf-hidden {
  display: none !important;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .wpcf7 {
    padding: 15px;
    margin: 10px;
  }
  
  .inquiry th {
    width: auto;
    display: block;
    padding: 12px 15px;
    border-bottom: none;
  }
  
  .inquiry td {
    display: block;
    padding: 15px;
    border-bottom: none;
  }
  
  .inquiry tr {
    display: block;
    margin-bottom: .5em;
  }

  .inquiry tr:last-of-type {
    margin-bottom: 0;
  }
  
  .abc {
    flex-direction: column;
    align-items: stretch;
  }
  
  .abc .wpcf7-form-control-wrap {
    min-width: auto;
  }
  
  .radio1 {
    gap: 10px;
  }

  .radio1 .wpcf7-list-item {
    width: 50%;
  }
  
  .radio1 .wpcf7-list-item label {
    justify-content: flex-start;
  }
  
  .wpcf7-radio {
    gap: 8px;
  }
  
  .wpcf7-list-item label {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .wpcf7 {
    padding: 10px;
  }
  
  .inquiry th,
  .inquiry td {
    padding: 10px 12px;
  }
  
  .wpcf7-submit {
    font-size: 16px;
    padding: 15px 20px;
  }
}

/* フォーカス時のアクセシビリティ向上 */
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
}

/* 印刷時のスタイル調整 */
@media print {
  .wpcf7 {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .inquiry th {
    background: #f0f0f0 !important;
    color: #000 !important;
  }
  
  .wpcf7-submit {
    display: none;
  }
}

.form-width-s {
    width: min(34%, 200px);
}

.inform-txt {
  padding-bottom: 1rem;
}

.form-h3 {
  padding: 1.5rem 1rem .5rem;
  font-size: 1rem;
}

/* テーブル */

table {
  width: 100%;
  table-layout: auto;
}

table li {
  position: relative;
  padding-left: 1.5em;
}

table li::before {
  position: absolute;
  content: "・";
  left: 0;
}

table .txt-bold {
  font-size: min(2.745vw, 14px);
  letter-spacing: 0.02em;
}

.mousikomi,
.checkbox-privacy {
  max-width: 600px;
  margin: 0 auto;
}

.mousikomi tr {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: min(4vw, 20px);
}

.mousikomi tr > td:first-of-type {
  margin-bottom: 0.4em;
}

.layout-row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  width: 100%;
  margin-bottom: 0.8em;
}

.mousikomi span.b {
  font-weight: 700;
}

.mousikomi .select.select-required {
  background-color: #fffdd8;
}

.plan-table {
  width: 100%;
  max-width: 600px;
}

.plan-table th,
.plan-table td:not(.cell-tit) {
  padding: 0 min(1vw, 5px);
  border: solid min(0.588vw, 3px) #fff;
  font-size: min(3.922vw, 16px);
}

.plan-table.price-single table {
  table-layout: fixed;
}

.plan-table.price-single td:not(.cell-tit) {
  padding: min(3vw, 10px) min(1vw, 5px);
}

.plan-course-tit {
  display: flex;
  width: 100%;
  padding: 0 1em .5em 1.5em;
  text-align: left;
  align-items: baseline;
  justify-content: flex-start;
}

.plan-course-tit i {
  margin-right: .25em;
  font-size: min(5vw, 24px);
}

.commn-table.wp-block-table {
  font-size: min(2.353vw, 12px);
}

.commn-table.wp-block-table tbody {
  background-color: white;
}

.commn-table.wp-block-table th {
  padding: 0;
  font-size: min(3.922vw, 18px);
  vertical-align: middle;
}

.commn-table.wp-block-table td {
  padding: .4em 0;
  line-height: 1.4;
  vertical-align: middle;
}

.wp-block-table th.th-no-border {
  border-top: none;
  border-left: none;
}

.commn-table .txt-bold {
  font-size: min(2.745vw, 14px);
  letter-spacing: 0;
}

th.cell-mine {
  border: solid 3px var(--color_red);
  border-bottom: none;
}

td.cell-mine {
  border-left: solid 3px var(--color_red);
  border-right: solid 3px var(--color_red);
}

.table-check {
  width: min(5.686vw, 40px);
  height: min(5.686vw, 40px);
  margin: .5em auto;
  background-repeat: no-repeat;
  background-position: center;
}

.commn-table tbody > tr:last-of-type td.cell-mine {
  border-bottom: solid 3px var(--color_red);
}

.nocheck {
  width: min(4vw, 30px);
  height: min(4vw, 30px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42.38 5"><path fill="%23c2c2c2" d="M397.19,818H354.81v-5h42.38Z" transform="translate(-354.81 -812.98)"></path></svg>');
}

.star{
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 71.5 68"><path fill="%23ff5757" d="M57.85,68l-22.09-15.36-22.09,15.36,7.79-25.76L0,25.97l26.91-.56L35.75,0l8.84,25.42,26.91.56-21.44,16.27,7.79,25.76ZM14.46,30.67l12.77,9.68-4.64,15.34,13.16-9.15,13.16,9.15-4.64-15.34,12.77-9.68-16.02-.33-5.27-15.13-5.27,15.13-16.02.33Z"></path></svg>');
}

.circle-double {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.35 58.35"><path fill="%23ff5757" d="M242.52,552.53a29.18,29.18,0,1,1,29.17-29.18A29.21,29.21,0,0,1,242.52,552.53Zm0-53.35a24.18,24.18,0,1,0,24.17,24.17A24.2,24.2,0,0,0,242.52,499.18Zm0,41.07a16.9,16.9,0,1,1,16.89-16.9A16.92,16.92,0,0,1,242.52,540.25Zm0-28.79a11.9,11.9,0,1,0,11.89,11.89A11.91,11.91,0,0,0,242.52,511.46Z" transform="translate(-213.34 -494.18)"></path></svg>');
}

.circle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 53.87 53.87"><path fill="%23ffaeae" d="M242.52,616.51a26.94,26.94,0,1,1,26.93-26.93A27,27,0,0,1,242.52,616.51Zm0-48.87a21.94,21.94,0,1,0,21.93,21.94A22,22,0,0,0,242.52,567.64Z" transform="translate(-215.58 -562.64)"></path></svg>');
}

.triangle {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.26 51.32"><path fill="%23919191" d="M272.15,736.44H212.89l29.63-51.33Zm-50.6-5h41.94l-21-36.33Z" transform="translate(-212.89 -685.11)"></path></svg>');
}

.cross {
  width: min(5vw, 35px);
  height: min(5vw, 35px);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.43 48.43"><path fill="%23919191" d="M246.05,650.54l20.68,20.68-3.53,3.54-20.68-20.68-20.68,20.68-3.54-3.54L239,650.54,218.3,629.86l3.54-3.53L242.52,647l20.68-20.68,3.53,3.53Z" transform="translate(-218.3 -626.33)"></path></svg>');
}

.price-info {
  position: absolute;
  width: min(18.627vw, 100px);
  background-color: var(--color_red);
  border-radius: 50vw;
  color: #fff;
  font-size: clamp(10px, 2.549vw, 14px);
  top: 1.5vw;
  left: -6vw;
  z-index: 1;
}

.price-info::after {
  position: absolute;
  content: "";
  width: min(2.647vw, 13px);
  height: min(2.353vw, 12px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: var(--color_red);
  bottom: -1.2vw;
  left: 7vw;
}

.price-single .price-info {
  line-height: 1.7;
  top: -1.6vw;
}

.price-split {
  position: relative;
}

.price-split > p:first-of-type {
  position: absolute;
  margin: auto;
  top: min(3vw, 12px);
  left: min(1.5vw, 10px);
}

.txt-size-s {
  font-size: min(2.745vw, 14px);
}

.txt-size-ss {
  padding-right: 0.5em;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: normal;
}

.txt-description {
  padding: min(4vw, 30px) min(3vw, 40px);
  font-size: 1rem;
  text-align: center;
}

.txt-description.left {
  text-align: left;
}

.txt-bold {
  font-weight: 700;
}

.txt-bold-big {
  font-size: min(3.922vw, 20px);
  font-weight: 700;
}

.txt-bold-s {
  font-weight: 700;
}

.txt-small {
  display: block;
  font-size: min(3vw, 14px);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.05em;
}

.txt-strong {
  padding: min(3vw, 20px) 0;
  font-size: min(6.863vw, 40px);
}

.txt-strong-big {
  font-size: min(8.824vw, 50px);
}

.txt-price-wrap {
  padding-right: min(1vw, 6px);
  text-align: right;
}

.txt-price {
  font-family: var(--font_anton);
  font-weight: normal;
  font-size: min(5vw, 28px);
  letter-spacing: 0.01em;
}

.txt-strong .txt-price {
  font-size: min(7.843vw, 50px);
}

.txt-strong .unit {
  font-size: min(5.882vw, 28px);
}

.txt-price.thin {
  font-size: min(5.392vw, 28px);
}

.txt-marker {
  display: inline;
  position: relative;
  background: linear-gradient(transparent 60%, var(--color_yellow) 60%);
}

.unit {
  font-weight: 700;
}

.emphasis {
  display: inline;
  position: relative;
  margin: 0 0.2em;
  background: linear-gradient(transparent 60%, #fff6a7 60%);
}

.plan-table th.cell-tit-l,
.plan-table td.cell-tit-l {
  padding: min(2.5vw, 10px) min(6vw, 30px) min(1.5vw, 10px);
  border-left: solid min(0.588vw, 3px) #fff;
  border-top-left-radius: min(4.5vw, 25px);
  color: #fff;
  font-size: min(3.922vw, 20px);
}

.plan-table th.cell-tit-r,
.plan-table td.cell-tit-r {
  padding: min(2.5vw, 10px) min(6vw, 30px) min(1.5vw, 10px);
  border-right: solid min(0.588vw, 3px) #fff;
  border-top-right-radius: min(4.5vw, 25px);
  color: #fff;
  font-size: min(3.922vw, 20px);
}

.plan-table th.cell-red {
  padding-top: min(1.8vw, 8px);
  padding-bottom: min(1vw, 5px);
  background-color: var(--color_red);
}

.cnt-big {
  font-size: min(5.882vw, 30px);
  line-height: 1.2;
}

.cell-tit-red {
  background-color: var(--color_red);
  color: #fff;
  text-align: center;
}

.cell-white {
  background-color: white;
}

.cell-green {
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.cell-tit-gray {
  background-color: #616161;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.cell-tit-gray {
  position: relative;
}

.price-single .cell-green.arrow {
  line-height: 1;
}

.cell-strong-red {
  background-color: #fcd0d0;
  font-weight: 700;
  text-align: center;
}

.cell-green.arrow::after,
.cell-tit-red.arrow::after {
  position: absolute;
  content: "";
  width: min(2.157vw, 13px);
  height: min(3.922vw, 24px);
  margin: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  top: 0;
  bottom: 0;
  right: -1.4vw;
  z-index: 1;
}

.cell-green.arrow::after {
  background-color: #616161;
}

.cell-tit-red.arrow::after {
  background-color: var(--color_red);
}

.plan-table th.cell-blue {
background-color: var(--color_blue);
}

.cell-light-gray {
  background-color: #f7f7f7;
}

.cell-medium-gray {
  background-color: #ececec;
}

.cell-other-gray {
  background-color: #919191;
  color: #fff;
  font-size: min(2.45vw, 16px) !important;
  line-height: 1.3;
}

.cell-red {
  background-color: #fcd0d0;
}

.cell-red-pastel {
  background-color: #ffeaea;
}

.cell-yellow {
  background-color: #feffdd
}

.cell-yellow-pastel {
  background-color: #feffdd
}

.icon-gakuwari {
  width: min(13.529vw, 57px);
  height: min(6.961vw, 29px);
  margin-right: 0;
}

.icon-gakuwari.mini {
  width: min(9.216vw, 47px);
  height: min(4.706vw, 24px);
}

.add-note {
  position: relative;
}

.add-note::after {
  position: absolute;
  content: "※";
  font-size: min(2vw, 10px);
  top: -1em;
  right: -0.5em;
}

.note-wrap {
  padding: 0 min(4vw, 30px) min(6vw, 30px);
  font-size: clamp(10px, 2.745vw, 14px);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.note-wrap.important-frame {
  padding: 1em;
}

.note-wrap.bottom-posititon {
  width: 100%;
  margin: 1.5em auto 2em;
  padding: 1em;
}

.note-wrap > p {
  position: relative;
  padding-left: min(3.2vw, 15px);
  text-align: left;
}

.note-wrap > p::before {
  position: absolute;
  content: "※";
  left: 0;
}

.normal-wrap {
  padding: 0 min(4vw, 30px) min(6vw, 30px);
}

.cont-ticket {
  font-size: min(4.902vw, 28px);
  line-height: 1;
}

.course-label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .25em;
  width: 100%;
  color: var(--color_yellow);
  font-size: min(2.5vw, 14px);
  line-height: 1.8;
  text-align: center;
  left: 0;
}

.price-single .course-label {
  position: relative;
}

.course-label i {
  font-size: min(3.5vw, 16px);
}

.hr-dots-green {
  width: 90%;
  margin: 2em auto 0;
  border-top: none;
  border-bottom: dotted 2px var(--color_green);
}

.icon-clown,
.icon-toku {
  margin-right: 0.1em;
}

/*////////// ヘッダー //////////*/

@media not all and (min-width: 960px) {

  .l-header__inner {
      color: var(--color_red);
  }

  [data-scrolled=true] [data-spfix="1"] .l-header__inner {
      color: var(--color_red);
  }

  .-img .c-headLogo__link {
      padding: 0;
  }
}

@media (min-width: 960px) and (min-width: 600px) {

  .-series .c-headLogo {
      margin-right: .85em;
  }

  .c-headLogo__picture source {
    min-width: min(6vw, 120px);
    display: block;
  }
}

@media (min-width:960px) and (max-width:1399px) {
  .c-headLogo__picture source {
    width: 40px;
    display: block;
  }
}

.c-gnav a::after {
  height: 1px;
}

.c-gnav>.menu-item>a .ttl {
  font-size: min(1vw, 14px);
}

.c-gnav>.menu-item>a:after {
  bottom: 20px;
}

.c-gnav a::after {
  background-color: #fff;
}

.c-gnav > .-current > a {
  font-weight: 700;
  color: var(--color_red);
}

.c-gnav > .-current > a::after {
  transition: none;
}

.c-widget__title.-spmenu {
  display: none;
}

/*////////// パンくず //////////*/

.p-breadcrumb__text .__home {
  color: var(--color_red);
}

.p-breadcrumb__list {
  flex-wrap: wrap;
}

.single .p-breadcrumb__item:last-child>span.p-breadcrumb__text {
  display: block!important;
  opacity: 1;
  white-space: pre-wrap;
}

/*////////// メインビジュアル //////////*/

.p-mainVisual {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 158vw;
  max-height: 850px;
}

.p-mainVisual__inner {
  height: 100%;
}

.p-mainVisual__textLayer {
  align-items: center;
  padding-top: min(10vw, 50px);
}

.p-mainVisual__video {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  position: relative;
  width: 100%;
  z-index: -1;
}

.fv-left {
  max-width: 500px;
}

.fv-txt-main {
  width: min(34vw, 170px);
  height: auto;
}

.fv-txt-name {
  padding: .25em;
  border-top: solid 2px white;
  border-bottom: solid 2px white;
}

.fv-left-bottom {
  align-items: center !important;
  gap: .5em 0 !important;
}

.fv-no1 {
  width: min(35vw, 180px);
  height: auto;
  margin: 0 auto;
}

.fv-btn-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65em 0;
}

.fv-btn-area > div,
.fv-btn-area > div a {
  width: 100%;
}

.fv-btn-area .swl-inline-icon {
  margin-right: .25em;
  font-size: min(6vw, 26px);
  line-height: 1;
}

.top #content {
  padding-top: 0;
}

#fv-stripe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skewX(40deg);
}

.rea-stripe {
  position: absolute;
  width: min(70vw, 500px);
  height: 100%;
  background-color: rgba(255, 87, 87, .3);
  top: 0;
  left: 50%;
  transform: translateX(-41%);
}

.stripe1 {
  position: absolute;
  width: min(30vw, 36px);
  height: min(65vw, 300px);
  background-color: rgba(255, 238, 156, .4);
  bottom: 0;
  left: -5%;
  transform: translateX(-63%);
}

.stripe2 {
  position: absolute;
  width: min(7vw, 15px);
  height: min(65vw, 300px);
  background-color: rgba(255, 238, 156, .8);
  top: 15%;
  left: 12%;
  transform: translateX(-63%);
}

.stripe3 {
  position: absolute;
  width: min(7vw, 15px);
  height: min(65vw, 300px);
  background-color: rgba(255, 238, 156, .8);
  bottom: 26%;
  left: -19%;
  transform: translateX(-63%);
}

.stripe4 {
  position: absolute;
  width: min(8vw, 74px);
  height: min(65vw, 300px);
  background-color: rgba(255, 238, 156, .8);
  top: 10%;
  right: -29%;
  transform: translateX(-63%);
}

.stripe5 {
  position: absolute;
  width: min(3vw, 74px);
  height: min(65vw, 300px);
  background-color: rgba(255, 238, 156, .4);
  top: 16%;
  right: -33%;
  transform: translateX(-63%);
}

.stripe6 {
  position: absolute;
  width: min(2vw, 74px);
  height: min(65vw, 300px);
  background-color: rgba(255, 238, 156, .4);
  top: -28%;
  right: -42%;
  transform: translateX(-50%);
}

/* スクロール誘導 */

.p-mainVisual__scroll {
  display: none;
  bottom: 16px;
  color: #fff;
  left: 50%;
  opacity: .75;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: opacity .25s;
  z-index: 9
}

.p-mainVisual__scroll {
  bottom: 24px
}

.p-mainVisual__scroll:hover {
  opacity: 1
}

.p-mainVisual__scrollArrow {
  -webkit-animation: FloatVertical 3s ease-in-out infinite alternate;
  animation: FloatVertical 3s ease-in-out infinite alternate;
  display: block;
  height: 20px;
  margin: 0 auto;
  width: 20px
}

.p-mainVisual__scrollLabel {
  display: block;
  font-size: 12px;
  letter-spacing: var(--swl-letter_spacing,1px);
  line-height: 1;
  padding-top: 4px
}

.bnr-top-wrap {
  height: min(42vw, 227px);
}

.bnr-top {
  display: block;
  position: absolute;
  width: 100%;
  top: min(-3vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

/*////////// コンテンツ //////////*/

.tit-sub {
  padding-bottom: min(0.98vw, 5px);
  font-size: min(2.353vw, 12px);
  text-align: center;
}

.tit-sub h1 {
  font-size: clamp(10px, 3.922vw, 18px);
}

#page-common .tit-sub {
  padding: min(2vw, 30px) min(2vw, 30px) min(2vw, 20px);
  background-color: var(--color_blue);
  color: white;
}

#page-common .tit-sub h1 {
  padding: 0 min(1vw, 10px);
  font-size: min(4.5vw, 30px);
}

#page-common .tit-sub .h1-en {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  color: var(--color_yellow);
  font-size: min(2.5vw, 14px);
}

#worries .wp-block-cover__inner-container>* {
  margin-bottom: 0;
}

#worries .content-inner-wrap {
  margin-bottom: min(5vw, 33px);
}

.example-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2vw, 15px);
  z-index: 2;
}

.example-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: min(4vw, 20px);
  background-color: #fff;
  border-radius: min(1.961vw, 14px);
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.3);
  font-size: clamp(10px, 3.137vw, 14px);
  letter-spacing: 0.01em;
}

@media (min-width: 750px) {
  .example-list {
    grid-template-columns: repeat(4, 1fr);
    width: min(100%, 960px);
    margin: 0 auto;
  }
}

.example-list li img {
  margin: min(2vw, 12px) 0;
  padding: 0 min(4vw, 30px);
}

.txt-poin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(13vw, 50px);
  color: var(--color_red);
  font-size: clamp(12px, 3.922vw, 16px);
  font-weight: 700;
  text-align: center;
}

.txt-size-common {
  font-size: 1rem;
}

.txt-thin {
  transform: scale(0.9,1);
}

.txt-tips {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(4vw, 20px);
  color: var(--color_red);
  font-size: clamp(10px, 2.745vw, 14px);
}

.txt-tips.white {
  color: #fff;
}

.solution-wrap {
  margin-bottom: min(30vw, 206px);
}

#about-concept.solution-wrap {
  margin-bottom: min(39vw, 206px);
}

#concept {
  position: relative;
  padding-top: 0;
}

.page-concept #concept {
  padding-top: min(9vw, 80px);
  padding-bottom: min(9vw, 80px);
}

#concept::before {
  position: absolute;
  content: "";
  width: min(60vw, 500px);
  height: min(66vw, 550px);
  background-image: url(../images/bg_concept.webp?20250827);
  background-size: 100%;
  bottom: -24vw;
  left: -10vw;
}

#concept::after {
  display: block;
  content: "";
  width: min(100%, 1020px);
  height: min(14vw, 100px);
  margin: 7vw auto 0;
  clip-path: polygon(100% 0, 100% 10%, 50% 100%, 0 10%, 0 0, 50% 90%);
  background-color: var(--color_red);
}

.page-concept #concept::after {
  display: none;
}

.concept-h2 {
  width: 100%;
  margin: 1.6em 0 2.5em;
  padding: min(5vw, 50px) 0 min(5vw, 30px);
  background-color: #efefef;
  background-image: url(../images/bg_concept.webp);
  background-repeat: no-repeat;
  background-size: min(100%, 800px);
  background-position: center;
}

.concept-h2 h2 {
  width: min(47vw, 300px);
  height: min(29vw, 187px);
  margin: min(8vw, 30px) auto 0;
}

.solution {
  position: absolute;
  width: 100%;
  margin-top: -10vw;
  color: #fff;
  font-size: min(3.922vw, 20px);
  font-weight: 700;
  text-align: center;
}

.solution p {
  position: absolute;
  margin: auto;
  z-index: 1;
  top: 15vw;
  left: 0;
  right: 0;
}

.solution span {
  font-size: min(5.882vw, 30px);
}

.solution::after,
.solution::before {
  position: absolute;
  content: "";
  width: min(100%, 1020px);
  height: min(40vw, 280px);
  margin: auto;
  clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0, 50% 30%);
  left: 0;
  right: 0;
}

.solution::before {
  background-color: white;
  top: 0;
}

.solution::after {
  background-color: var(--color_red);
  top: min(1vw, 3px);
}

.solution.normal-type {
  margin-top: auto;
  bottom: 0;
}

.solution.normal-type p {
  top: min(7vw, 50px);
}

.solution.normal-type::after {
  height: min(34vw, 200px);
}

.txt-center {
  text-align: center;
}

.txt-push {
  margin-bottom: 0 !important;
  padding: 1em 1em 0;
  font-size: min(4vw, 20px);
  font-weight: 700;
  text-align: center;
}

.txt-comingsoon {
  position: absolute;
  width: 100%;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}

.scroll-infinity-wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: -4vw;
}

.scroll-infinity-list {
  display: flex;
  list-style: none;
  padding: 0
}

.scroll-infinity-list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity-item {
  width: calc(100vw / 1.2);
}

.scroll-infinity-item > img {
  width: 100%;
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: min(8vw, 50px);
}

.point-list > li {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 1020px);
  margin: 0 auto;
}

.point-list h3 {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-bottom: -16vw;
  padding: 0 0 18vw;
  background: linear-gradient(to bottom, rgba(201,0,0,0) 0%,rgba(201,0,0,0) 15%,rgba(201,0,0,1) 15%,rgba(201,0,0,1) 100%);
  font-size: min(4.6vw, 20px);
}

.point-header {
  width: min(100%, 640px);
  margin: 0 0 0 auto;
  color: white;
}

.point-list > li:nth-child(even) .point-header {
  margin: 0 auto 0 0;
}

.point-list > li:nth-child(even) .point-header h3 {
  flex-direction: row-reverse;
}

.point-header i {
  flex: none;
  width: min(33vw, 180px);
  padding-left: 1em;
  padding-bottom: .25em;
  border-bottom: solid 3px white;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: normal;
  font-family: var(--font_anton);
  line-height: 1;
}

.point-header i span {
  padding-left: .25rem;
  padding-right: 1rem;
  font-size: 3.4rem;
}

.point-header h3 p {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: min(26vw, 144px);
  padding: 1em 2em;
  border-bottom: solid 3px white;
  font-size: min(4.6vw, 26px);
}

.point-header h3 p::before,
.point-header h3 p::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color_blue);
  clip-path: polygon(0 50%, 5% 0, 100% 0, 100% 100%, 5% 100%);
  top: 0;
}

.point-list > li:nth-child(even) .point-header h3 p::before,
.point-list > li:nth-child(even) .point-header h3 p::after {
  clip-path: polygon(0 100%, 0 0, 95% 0, 100% 50%, 95% 100%);
}

.point-header h3 p::before {
  background-color: var(--color_blue);
  left: 0;
  z-index: 1;
}

.point-header h3 p::after {
  background-color: white;
  left: -3px;
  z-index: 0;
}

.point-list > li:nth-child(even) .point-header h3 p::after {
  left: 3px;
}

.point-header h3 p span {
  position: relative;
  z-index: 2;
}

.img-point {
  width: 100%;
  height: auto;
}

.img-point + p {
  width: 100%;
  padding: .5em 1em 1em;
}

.layout-right {
  display: flex;
  justify-content: flex-end;
  margin: min(3vw, 30px) 0 0;
}

#price-tab {
  width: min(104%, 750px);
  margin-top: min(5vw, 40px);
  margin-bottom: min(3vw, 20px);
  margin-left: -2vw;
  color: #fff;
  font-size: min(3.922vw, 20px);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

#price-tab ul {
  position: relative;
  display: flex;
  z-index: 1000;
}

#price-tab li {
  width: 33.3%;
  padding: min(3vw, 15px);
  text-align: center;
  cursor: pointer;
}

#price-tab li:hover {
  box-shadow: inset 0 0 min(3vw, 6px) rgba(0,0,0,0.3);
}

#bronze-tab {
  position: relative;
  background: linear-gradient(to bottom, #d8987c 0%,#b87f6b 100%);
  border-radius: min(4vw, 10px) 0 0 min(4vw, 10px);
  color: #792618;
}

#silver-tab {
  position: relative;
  background: linear-gradient(to bottom, #dfdfdf 0%,#b6b6b6 100%);
  color: #6a6969;
}

#gold-tab {
  position: relative;
  background: linear-gradient(to bottom, #d1bd75 0%,#ab9a61 100%);
  border-radius: 0 min(4vw, 10px) min(4vw, 10px) 0;
  color: #726431;
}

#bronze-tab.on,
#silver-tab.on,
#gold-tab.on {
  color: #fff;
  text-shadow: none;
  pointer-events: none;
}

#bronze-tab.on {
  background: #a6512d;
}

#silver-tab.on {
  background: #6e7679;
}

#gold-tab.on {
  background: #b7a306;
}

#bronze-tab.on:after,
#silver-tab.on:after,
#gold-tab.on:after {
  position: absolute;
  content: "";
  width: min(4.2vw, 32px);
  height: min(3vw, 24px);
  margin: auto;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  bottom: -3vw;
  left: 0;
  right: 0;
}

#bronze-tab.on:after {
  background-color: #a6512d;
}

#silver-tab.on:after {
  background-color: #6e7679;
}

#gold-tab.on:after {
  background-color: #b7a306;
}

#bronze-tab.on:before,
#silver-tab.on:before,
#gold-tab.on:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  margin: auto;
  background: transparent;
  border-radius: min(1.6vw, 10px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#bronze-tab.on:before {
  border: solid min(5vw, 10px) #a6512d;
}

#silver-tab.on:before {
  border: solid min(5vw, 10px) #6e7679;
}

#gold-tab.on:before {
  border: solid min(5vw, 10px) #b7a306;
}

#price-silver, #price-gold {
  display: none;
}

#tab-bg {
  position: fixed;
  display: none;
  width: 100vw;
  height: min(25vw, 120px);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 80%,rgba(255,255,255,0) 100%);
  top: 40px;
  left: 0;
  z-index: 999;
}

.fixed {
  position: fixed;
  top: 55px;
  width: 100%;
  background-color: white;
  z-index: 1000;
}

#price-tab.fixed {
  width: 98vw;
  margin: auto;
  left: 0;
  right: 0;
}

#price-tab.fixed #tab-bg {
  display: block;
}

.ticket-wrap-margin {
  margin-top: 250px;
}

/* キャンペーン */

.initiation-fee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  margin: 1em 0.3em 0;
  font-size: min(4.902vw, 28px);
  font-weight: 700;
  text-align: center;
}

.initiation-fee-head {
  display: flex;
  font-size: min(3.5vw, 20px);
  width: min(14vw, 80px);
  height: min(14vw, 80px);
  border: solid min(.5vw, 1px) var(--color_main);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
}

.initiation-fee .txt-price {
  font-size: min(7.843vw, 50px);
}

.bnr-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}

.bnr-area > p {
  width: min(100%, 450px);
}

.bnr {
  width: min(100%, 640px);
  margin: 0 auto min(5vw, 30px);
  transition: filter .25s;
}

.bnr a {
  display: block;
  box-shadow: 2px 2px 10px 0 rgba(0,0,0,0.5);
}

.bnr a:hover {
  filter: brightness(1.1);
}

.bnr-campaign {
  position: relative;
  width: min(92%, 500px);
  margin: 0 auto;
}

.bnr-campaign::after {
  display: block;
  content: "";
  width: min(7vw, 39px);
  height: min(3vw, 19px);
  margin: -1px auto 0;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: white;
}

/*////////// バクトレについて //////////*/

#about-concept {
  min-height: min(120vw, 600px);
  background-image: url(../images/bg_dream_left.webp),url(../images/bg_dream_right.webp);
  background-repeat: no-repeat;
  background-size: min(41.667vw, 380px) auto, min(41.176vw, 400px) auto;
  background-position: bottom 5vw left 8vw, bottom 5vw right 8vw;
}

.dreams-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: min(5vw, 30px);
  z-index: 2;
}

.dreams-list li {
  display: flex;
  gap: min(3vw, 20px);
  width: 100%;
}

.dreams-list li img {
  display: block;
  width: min(23.529vw, 120px);
  height: min(35.294vw, 180px);
}

.label-red {
  display: inline-block;
  margin-left: -6.863vw;
  margin-top: min(3vw, 10px);
  margin-bottom: min(6.863vw, 40px);
  padding: 1.2vw 3.5vw 1.2vw 6.863vw;
  background-color: var(--color_red);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.person-about {
  display: flex;
  align-items: center;
  gap: 0 min(4.5vw, 50px);
}

.person-about img {
  display: block;
  width: min(32.745vw, 300px);
  height: min(32.745vw, 300px);
}

.person-about > div {
  width: 100%;
}

.person-about .speech-type2 {
  width: 100%;
  min-width: auto;
  margin-bottom: min(3vw, 20px);
  padding: 0 0 min(0.5vw, 5px) 0;
  font-size: min(3.333vw, 24px);
  text-align: left;
}

.person-about .speech-type2 > span {
  font-size: min(4.902vw, 40px);
}

.person-about .speech-type2 > span > span.txt-unit {
  font-size: min(4vw, 30px);
}

.person-about .speech-type2::before,
.person-about .speech-type2::after {
  left: 25%;
}

.person-about .speech-type2::before {
  border: 7px solid transparent;
  border-top: 7px solid var(--color_main);
}

.person-about .speech-type2::after {
  border-top: 9px solid #e2e2e2;
}

.person-about h2 {
  font-size: min(3.922vw, 25px);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.person-about h2 .txt-big {
  font-size: min(4.902vw, 40px);
}

.person-comment {
  padding-top: min(6vw, 50px);
}

/*////////// 技 //////////*/

#technique .content-inner-wrap {
  padding: 0;
}

.technique-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(173px, 1fr));
  gap: 2em 1em;
  list-style-type: none;
  width: min(100%, 940px);
  margin: 0 auto;
  padding: 0;
}

.technique-list li {
  overflow: hidden;
  position: relative;
  display: list-item;
  width: 100%;
  color: white;
}

.technique-list h3 {
  text-align: center;
}

.level-wrap {
  display: flex;
  justify-content: space-between;
  background-color: #636363;
  padding: min(1vw, 5px) min(2vw, 15px);
}

/*////////// レッスンの流れ //////////*/

#lesson {
  padding-bottom: 3px;
}

.lesson-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1.5em;
  margin-bottom: min(10vw, 50px);
}

.lesson-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(min(50%, 300px) - 1em);
  padding: min(3vw, 20px) 0;
}

.lesson-list li::after {
  position: absolute;
  content: "";
  width: min(2.941vw, 15px);
  height: min(5.294vw, 27px);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: var(--color_blue);
  top: min(14vw, 77px);
  left: -1.5em;
  z-index: 1;
}

#lesson section {
  position: relative;
  z-index: 1;
}

.lesson-list li:nth-child(odd)::after,
.lesson-list li:nth-child(6)::after {
  display: none;
}

.lesson-list li:nth-child(even) {
  margin-top: min(5vw, 40px);
}

.lesson-list li:nth-child(7)::after {
  display: block;
}

.lesson-tit-cnt {
  position: relative;
  display: block;
  width: min(60%);
  margin-top: -1em;
  color: var(--color_red);
  font-family: var(--font_anton);
  font-size: min(4.5vw, 20px);
  font-style: normal;
}

.lesson-tit-cnt::before {
  position: absolute;
  content: "";
  width: min(100%, 200px);
  height: min(1vw, 5px);
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
  background-color: var(--color_red);
  bottom: 0;
  left: -1.5em;
}

.lesson-tit-cnt span {
  padding-left: .1em;
  color: white;
  font-size: min(13vw, 63px);
  -webkit-text-stroke: 1px var(--color_red);
  line-height: 1;
}

.lesson-img {
  position: relative;
}

.lesson-img::before {
  position: absolute;
  content: "";
  width: calc(100% + 2vw);
  height: 100%;
  background-color: var(--color_blue);
  border: solid 1px white;
  top: min(10vw, 50px);
  right: 0;
}

.lesson-img img {
  position: relative;
}

.lesson-tit {
  position: relative;
  width: calc(100% + 2vw);
  margin-left: -2vw;
  padding: .7em .25em;
  background-color: var(--color_blue);
  color: white;
  text-align: center;
  border: solid 1px white;
  border-top: none;
}

.lesson-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: .8em;
  border-radius: 0 0 min(0.8vw, 5px) min(0.8vw, 5px);
  font-size: clamp(10px, 3.137vw, 14px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.02em;
}

.lesson-list li.flow-point-min {
  width: min(100%, 960px);
  padding-top: 0;
}

.speech-bubble {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding: 16px;
  border: 2px solid var(--color_red);
  border-radius: 8px;
  background-color: #ffffff;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
}

.speech-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 70%;
  border-style: solid;
  border-width: 0 10px 20px 10px;
  border-color: transparent transparent var(--color_red);
  translate: -50% -100%;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: 70%;
  border-style: solid;
  border-width: 0 7.8px 15.5px 7.8px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}

.flow-point {
  margin-top: -36vw;
  margin-bottom: 0;
  padding-top: min(31vw,134px);
  background-color: var(--color_red);
}


/*////////// 講師 //////////*/

.tips-frame {
  width: 100%;
  margin-bottom: min(8.333vw, 40px);
  padding: min(2.941vw, 15px) min(4vw, 30px);
  background-color: #f7f7f7;
  border: solid 1px #e1e1e1;
  border-radius: min(0.98vw, 10px);
}

.tips-frame p {
  margin-bottom: 0.2em;
  font-weight: 700;
}

.rank-list {
  display: flex;
  gap: 1.6em;
  margin: 0 0.9em;
}

.rank-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.instructors-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(147px, 1fr));
  justify-content: center;
  gap: clamp(30px, 30px + 15*(100vw - 375px) / 1225, 33px) clamp(20px, 20px + 15*(100vw - 375px) / 1225, 25px);
  list-style-type: none;
  width: 92%;
  margin: 0 auto min(12vw, 100px);
  padding: 0;
}

.instructors-list li {
  position: relative;
  display: list-item;
}

.instructors-list li a,
.instructors-list li .modal-open {
  display: block;
}

.instructors-list li a > img,
.instructors-list li .modal-open > img {
  width: 100%;
  height: auto;
  border-radius: 100%;
}

.tap-area-shadow {
  box-shadow: 0 0 min(2.5vw, 8px) 0 rgba(0, 0, 0, 0.15);
}

.instructors-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: min(1.2vw, 5px);
  text-align: center;
}

#single-instructor .instructors-job,
.modal-content .instructors-job {
  align-self: center;
  max-width: 264px;
  margin: 0 auto 1em;
  margin-bottom: 1em;
  padding: .25em 2em;
  background-color: var(--color_red);
  border-radius: 50vw;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.instructors-rank {
  display: inline-block;
  position: relative;
  width: min(2.451vw, 12px);
  height: min(3.039vw, 15px);
}

.instructors-rank.bronze::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.42 31.53"><path fill="%23a6512d" d="M249.2,475.18,240,470.05a1.81,1.81,0,0,0-1.72,0L229,475.18a1.76,1.76,0,0,1-2.62-1.54v-28a1.77,1.77,0,0,1,1.77-1.77h21.88a1.77,1.77,0,0,1,1.77,1.77v28A1.77,1.77,0,0,1,249.2,475.18Z" transform="translate(-226.41 -443.88)"></path></svg>');
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.instructors-rank.silver::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.42 31.53"><path fill="%236d838a" d="M249.2,475.18,240,470.05a1.81,1.81,0,0,0-1.72,0L229,475.18a1.76,1.76,0,0,1-2.62-1.54v-28a1.77,1.77,0,0,1,1.77-1.77h21.88a1.77,1.77,0,0,1,1.77,1.77v28A1.77,1.77,0,0,1,249.2,475.18Z" transform="translate(-226.41 -443.88)"></path></svg>');
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.instructors-rank.gold::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.42 31.53"><path fill="%23b59424" d="M249.2,475.18,240,470.05a1.81,1.81,0,0,0-1.72,0L229,475.18a1.76,1.76,0,0,1-2.62-1.54v-28a1.77,1.77,0,0,1,1.77-1.77h21.88a1.77,1.77,0,0,1,1.77,1.77v28A1.77,1.77,0,0,1,249.2,475.18Z" transform="translate(-226.41 -443.88)"></path></svg>');
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.instructor-location-name {
  margin-top: min(2vw, 10px);
}

.instructor-location-name span {
  padding: 0 .2rem;
  font-weight: 700;
}

.instructors-name {
  display: inline-block;
  padding-top: .5rem;
  color: var(--color_red);
  font-size: 1.23rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.instructors-kana {
  padding-bottom: .5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.instructors-list li a.btn-insta,
.single-instructor a.btn-insta  {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: min(11.275vw, 50px);
  height: min(11.275vw, 50px);
  padding: 0.5em;
  background: linear-gradient(45deg, #fec41e 10%,#f30005 50%,#c0009f 90%);
  border-radius: 100%;
  font-size: 1.5rem;
  color: #fff;
  bottom: min(11vw, 63px);
  left: 0;
}

.is-style-btn_normal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .25em;
  font-size: min(4vw, 20px);
}

.is-style-btn_normal.red_.btn-icon-right a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  margin: auto;
  clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
  background-color: #fff;
  top: 0;
  bottom: 0;
  right: min(4vw, 25px);
}

.icon-insta {
  margin-right: 0;
}

/* モーダル */

.modal-open {
  cursor: pointer
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.8);
  top: 0;
  left: 0
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  width: min(95%, 750px);
  height: auto;
  padding: 1em;
  background: #fff;
  border-radius: min(3vw, 10px);
  top: 70px;
  bottom: 15vw;
  left: 50%;
  transform: translate(-50%,0);
}

.modal-close {
  position: absolute;
  width: min(25vw, 40px);
  height: min(25vw, 40px);
  margin: auto;
  background: var(--color_red);
  border: 1px solid var(--color_red);
  border-radius: 80px;
  top: -2vw;
  right: min(2vw, 30px);
  cursor: pointer;
}

.modal-content .instructor-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modal-content .instructor-layout > p {
  font-size: .8rem;
  text-align: center;
}

.modal-content .instructor-layout > p.name {
  padding-top: .25em;
  padding-bottom: min(2.2vw, 10px);
  font-size: min(4.902vw, 28px);
  font-weight: 700;
}

.modal-content .instructor-layout > p.name span {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.modal-close::after {
  position: absolute;
  content: "";
  width: min(3vw, 13px);
  height: min(3vw, 13px);
  margin: auto;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.43 48.43"><path fill="%23ffffff" d="M246.05,650.54l20.68,20.68-3.53,3.54-20.68-20.68-20.68,20.68-3.54-3.54L239,650.54,218.3,629.86l3.54-3.53L242.52,647l20.68-20.68,3.53,3.53Z" transform="translate(-218.3 -626.33)"></path></svg>');
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.trainer-data {
  overflow-y: scroll;
  flex: auto;
  width: 100%;
  padding: 0 min(3vw, 40px);
}

.trainer-data.scroll-bar {
  border-right: solid 1px #777777;
}

.trainer-data::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.trainer-data::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #333;
}

.trainer-data dl {
  display: flex;
  flex-wrap: wrap;
}

.trainer-data dt,
.trainer-data dd {
  width: 100%;
}

.trainer-data dt {
  font-weight: 700;
}

.trainer-data dt:first-of-type {
  margin-top: 0 !important;
}

.trainer-data .dt-rank {
  width: auto;
  min-width: min(16vw, 80px);
  padding-left: 0.4em;
}

.trainer-data .dd-rank {
  width: auto;
  font-weight: 700;
}


.txt-label-bronze,
.txt-label-silver,
.txt-label-gold {
  display: inline-block;
  padding: 0 0.6em;
  border-radius: min(0.5vw, 3px);
  color: #fff;
}

.txt-label-bronze {
  background-color: #a6512d;
}

.txt-label-silver {
  background-color: #6e7679;
}

.txt-label-gold {
  background-color: #b7a306;
}

.tit-in-profile {
  margin-top: 2em;
  padding: 0 0.6em 0.2em;
  border-bottom: solid 2px var(--color_main);
}

.tit-in-profile + dd {
  padding: 1em;
}

/* スライダー */

.instructor-slider {
  position: relative;
  width: 39vh;
  max-width: 380px;
  margin: 0 auto;
}

.swiper-instructor {
  width: min(34vh, 500px);
  padding-bottom: min(7vw, 27px);
}

.instructor-slider .swiper {
  position: static;
  max-width: 320px;
}

.swiper-instructor img {
  width: min(80vw, 320px);
  height: auto;
}

.swiper {
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  width: min(10.588vw, 50px);
  height: min(10.588vw, 50px);
  padding: 0;
  background: #333333;
  border: solid 1px #666;
  border-radius: 100%;
  top: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  position: absolute;
  width: min(2.255vw, 10px);
  height: min(4.608vw, 22px);
  margin: auto;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7.56 16.13"><path fill="%23ffffff" d="M195.37,463.43a1,1,0,0,1-.78-1.62l5.07-6.44-5.07-6.45a1,1,0,1,1,1.57-1.24l5.56,7.07a1,1,0,0,1,0,1.23l-5.56,7.07A1,1,0,0,1,195.37,463.43Z" transform="translate(-194.37 -447.3)"></path></svg>');
  background-repeat: no-repeat;
  border: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: none;
}

.swiper-button-prev:after {
  transform: scaleX(-1);
}

.swiper-horizontal>.swiper-pagination-bullets {
  bottom: min(8vw, 40px);
}

.swiper-pagination-bullet-active {
  background: #333;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}

.instructor-slider .swiper-slide {
  align-self: center;
}

video {
  width: 100%;
  height: auto;
}

.instructor-slider video {
  aspect-ratio: 1 / 1;
}

/* 講師詳細ページ */

#single-instructor {
  padding-top: 2em;
}

.sub-store-name {
  font-size: clamp(12px, 3vw, 16px);
}

#instructor-skill-movies {
  margin-bottom: 4em;
}

.instructor-movies-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.instructor-movies-list li {
  width: 90%;
  max-width: 640px;
}

#single-instructor .trainer-data {
  width: min(100%, 800px);
  margin: 0 auto 3em;
  padding: 0;
}

dl.tit-red dt.tit-in-profile {
  color: var(--color_red);
  font-size: clamp(14px, 6vw, 18px);
  border-bottom: solid 2px var(--color_red);
}

.instructor-sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 0 0 2em;
}

.single-instructor a.btn-insta {
  position: static;
}

/*////////// 店舗 //////////*/

[id^="area-"],
[id^="prefecture-"] {
  scroll-margin-top: var(--top-offset, 0px);
}

.area-navigation {
  display: flex;
  gap: .65em;
  width: min(90%, 400px);
  margin: 2em auto 0;
}

.area-navigation > i {
  font-size: min(5vw, 26px);
  color: #7e7e7e;
}

.area-navigation > p {
  width: 100%;
}

.prefecture-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  margin-bottom: min(7vw, 30px);
}

.prefecture-links a {
  position: relative;
  width: calc(33% - 0.5em);
  padding: .5em 1em;
  border: solid 1px var(--color_blue);
  font-weight: bold;
}

.prefecture-links a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
  background-color: var(--color_red);
  top: 0;
  bottom: 0;
  right: min(4vw, 25px);
  transform: rotate(90deg);
}

#store .h2-section-head {
  margin-bottom: 2.5em;
}

.area-title {
  margin: 2.5em 0 1.5em;
  padding: .5em 1em;
  color: var(--color_red);
  background-color: #e9e9e9;
  border-bottom: solid 2px var(--color_red);
  font-size: min(4vw, 20px);
}

.stores-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(42vw, 1fr));
  gap: 5vw 4vw;
  width: 100%;
  margin: 0 auto 2.5em;
}

.stores-list li {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: min(1.961vw, 14px);
}

.store-photo {
  overflow: hidden;
  width: min(93.333vw, 571px);
  height: min(50.98vw, 312px);
  margin-left: -2.941vw;
  border-radius: 0 min(6.373vw, 30px) min(6.373vw, 30px) 0;
}

.store-info {
  display: flex;
  flex-wrap: wrap;
  padding: 0 min(3vw, 20px);
  font-size: clamp(10px, 2.6vw, 12px);
}

.store-info > p {
  width: 100%;
}

.stores-data.minimum {
  flex: 1;
  padding: 1em 0;
  font-size: min(3vw, 12px);
  font-weight: 700;
}

.stores-data.minimum .srore-address {
  padding-bottom: 0.5em;
  border-bottom: solid 1px #c0c0c0;
  font-weight: normal;
}

.stores-data.minimum .srore-access {
  padding: 0.5em 0;
}

.stores-data.minimum .srore-tel {
  display: flex;
  align-items: center;
  gap: .4em;
  padding: 0.5em 0;
  border-top: solid 1px #c0c0c0;
}

.stores-data.minimum .srore-time {
  padding-top: 0.5em;
  border-top: solid 1px #c0c0c0;
}

.srore-info dt {
  width: 30%;
  font-weight: 700;
}

.stores-list .srore-info dd {
  width: 70%;
}

.stores-list .swell-block-button {
  margin: 0 auto min(4vw, 30px);
  font-size: clamp(10px, 3vw, 16px);
}

dl.store-info {
  justify-content: space-between;
  margin-top: 2em;
  margin-bottom: 3em;
  margin-right: -2.941vw;
  padding-right: 0;
  font-size: clamp(12px, 3.137vw, 16px);
}

.store-info dt,
.store-info dd {
  border-bottom: solid 1px #e5e5e5;
}

.store-info dt {
  width: 20%;
  padding: 0.5em 0 0.5em 1em;
  font-weight: 700;
}

.store-info dd {
  display: flex;
  flex-wrap: wrap;
  gap: .25em .5em;
  width: 80%;
  padding: 0.5em 2.941vw 0.5em 0.5em;
}

.google-map-wrap {
  width: 100%;
  height: min(30vw, 300px);
}

.google-map-wrap iframe {
  width: 100%;
  height: 100%;
}

#store .iconm-phone {
  color: var(--color_blue);
  font-size: 1.2rem;
}

.btn-phone {
  font-weight: 700;
}

/*////////// 店舗詳細 //////////*/

.page-store .tit-sub {
  padding: min(2vw, 10px) min(0.98vw, 5px) min(0.98vw, 5px);
}

#main_content.page-store .post_content {
  padding: 0 4vw;
}

.page-store .wp-block-cover, .wp-block-cover-image {
  height: 154vw;
  min-height: min(100vw, 460px);
  padding: 0;
}

.page-store .wp-block-cover .wp-block-cover__background {
  z-index: 0 !important;
}

.page-store .wp-block-cover .wp-block-cover__inner-container {
  height: 100%;
}

.page-store .wp-block-cover .wp-block-cover__inner-container .post_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-store .fv-main-wrap {
  padding-top: min(2.5vw, 20px);
}

.page-store .fv-txt-main {
  width: min(34vw, 152px);
}

.txt-top-main,
.txt-store-main {
  width: min(95vw, 492px);
  height: min(75vw, 379px);
  margin: 0;
}

.store-main-logo {
  width: min(60.098vw, 307px);
  height: min(20vw, 102px);
  margin: min(4.902vw, 20px) auto;
}

.txt-top-main img,
.txt-store-main img,
.store-main-logo img {
  width: 100%;
  height: auto;
}

.store-main-read {
  text-align: center;
  font-size: min(3.922vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.top-main-read {
  font-size: min(3.65vw, 17px);
}

.root-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.root-list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1.5em;
}

.root-list li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  color: var(--color_red);
  font-weight: bold;
}

.img-root {
  border: solid 1px #000;
}

.txt-root {
  padding-top: 1em;
  font-size: clamp(10px, 3.137vw, 14px);
  font-weight: 700;
  line-height: 1.4;
}

.page-store .p-postList.-type-simple {
  display: flex;
  flex-direction: column;
  gap: .25em;
  border-top: none;
  margin-top: 0;
}

.page-store .-type-simple .p-postList__link {
  background-color: #fff;
  border: none;
  border-radius: min(2vw, 10px);
}

/*////////// よくある質問 //////////*/

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: min(100%, 960px);
  margin: 0 auto;
}

.faq-list li {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-q,
.faq-a {
  position: relative;
}

.faq-q {
  padding: 0.8em 3em 0.8em 3.2em;
  background-color: var(--color_red);
  color: #fff;
  font-weight: 700;
}

.faq-q::before,
.faq-a::before {
  position: absolute;
  font-family: var(--font_anton);
  font-size: min(4vw, 22px);
  font-weight: 900;
  font-weight: normal;
  line-height: 2.1;
  left: 1em;
}

.faq-q::before {
  content: "Q";
  top: min(1.2vw, 2px);
}

.faq-a {
  padding: 1em 1.5em 1em 3.5em;
  background-color: #fff;
}

.faq-a::before {
  content: "A";
  color: var(--color_blue);
  top: min(2vw, 5px);
  left: 1.5em;
}

#faq .swell-block-button {
  margin: 0.8em 0 1em;
}

/*////////// ブログ //////////*/

.single-blog .c-postTitle {
  align-items: normal;
}

.single-blog .l-mainContent__inner>.post_content {
  margin: 2em 0;
}

.widget_blog_category_widget {
  margin-bottom: 3em;
}

.p-postList.-type-card .c-postThumb__cat {
  left: .25em;
  right: auto;
  top: .25em;
}


.widget_blog_category_widget a {
  display: inline-block;
  padding: .5em;
  color: #333;
}

.widget_blog_category_widget a::before {
  content: "\e92f";
  padding-right: .5em;
  font-family: myicon !important;
}

@media not all and (min-width: 600px) {
  .c-postThumb__cat {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

/* 画面下部・固定ボタン */

#fix_bottom_menu {
  position: fixed;
  display: none;
  bottom: -60px;
  left: 0;
}

@media not all and (min-width: 960px) {
  #fix_bottom_menu {
      display: block;
      padding-bottom: calc(env(safe-area-inset-bottom)* .5);
  }
}

#fix_bottom_menu .menu_list {
  min-height: 45px;
  padding: 0;
}

#fix_bottom_menu .menu-item,
#fix_bottom_menu .menu-item a {
  width: 100%;
  height: 100%;
}


#fix_bottom_menu .menu-item {
  flex: auto;
}

#fix_bottom_menu .menu-item a {
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: center;
  font-weight: 700;
}

#fix_bottom_menu .menu-item i {
  font-size: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
}

#fix_bottom_menu span {
  display: inline-block;
  width: auto;
  margin-top: 0;
}

#fix_bottom_menu a > span {
  margin-left: min(2vw, 8px);
}

#fix_bottom_menu .menu-item.bottom-line span.footer-btn-txt-min {
  padding-bottom: 0.5em;
  font-size: 10px;
}

#fix_bottom_menu .menu-item.bottom-line {
  width: 50%;
  background-color: #00c300;
}

#fix_bottom_menu .menu-item.bottom-other {
  width: 25%;
  background-color: #1b1b1b;
}

#fix_bottom_menu .menu-item.bottom-other {
  border-right: solid 1px #888;
}

#fix_bottom_menu .menu-item:nth-child(3) {
  border-right: none;
}

#fix_bottom_menu .menu-item.bottom-other a {
  flex-direction: column;
}

#fix_bottom_menu .menu-item.bottom-line span {
  font-size: min(4vw, 16px); 
  text-align: left;
}

#fix_bottom_menu .menu-item.bottom-other .icon {
  width: 100%;
  height: 100%;
  margin-right: 0;
}

#fix_bottom_menu .bottom-other a > span {
  margin-left: 0;
  margin-top: 0.5em;
  font-weight: 500;
}

/*////////// お問い合わせ //////////*/

.contact-area-title {
  margin-bottom: 1em;
  padding: 1em;
  background-color: #eee;
  color: var(--color_blue);
  border-left: solid 6px var(--color_red);
}

.recommend-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.recommend-line img {
  display: block;
  width: clamp(90px, 29.804vw, 150px);
  height: clamp(90px, 29.804vw, 150px);
}

.recommend-line .txt-description {
  width: min(59vw, 700px);
}

.icon-tap {
  margin-right: 0.5em;
}

.stores-list-simple {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(auto-fill, minmax(50vw, 1fr));
  margin: min(1.5vw, 20px) 0 min(10vw, 80px);
  padding-left: 2em;
}

.stores-list-simple li {
  width: 100%;
  font-size: min(3.922vw, 20px);
}

.store-about.btn-accordion {
  justify-content: space-between;
  margin-top: 0;
  padding: min(2vw, 10px) min(3vw, 20px);
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 2px var(--color_red);
  border-radius: 0;
}

.stores-list-simple [class*=is-style-btn_] {
  margin: 0 0.4em 0 0;
}

.stores-list-simple .is-style-btn_normal a {
  padding: min(1.2vw, 8px) min(4vw, 20px);
  border-radius: 50px;
}

.store-about.btn-accordion > div {
  display: flex;
  align-items: center;
}

.stores-list-simple .default-hide {
  padding: min(2vw, 10px) 0 min(6vw, 50px);
}

.stores-list-simple .store-info {
  font-size: clamp(12px, 3.137vw, 16px);
}

.stores-list-simple img {
  width: 50%;
}

.grecaptcha-badge {
  z-index: 1;
}

#store-news {
  padding-top: 0;
}

#store-news .h5-common {
  margin: 0 0 min(5vw, 40px);
}

#store-news .modal-content {
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.news-modal-wrap {
  overflow-y: auto;
  max-height: 75vh;
  padding: 1em;
}

.news-modal-wrap.scroll-bar {
  border-right: solid 1px #777777;
}

.news-modal-wrap::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.news-modal-wrap::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #333;
}

.news-modal-wrap h4 {
  position: relative;
  margin-bottom: 1.5em;
  padding: .5em 1em .5em 1.5em;
}

.news-modal-wrap h4:before {
  position: absolute;
  content: "";
  width: .25em;
  height: 100%;
  background-color: var(--color_main);
  top: 0;
  left: 0;
}

/*////////// お客様の声 //////////*/

.voice-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5em;
  list-style: none;
  width: min(100%, 960px);
  padding: 0;
  margin: 0 auto;
}

.voice-list li {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: min(1.2vw, 6px);
  box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 4px 4px -4px rgba(0,0,0,.1);
}

.voice-head {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: min(22vw, 120px);
}

.voice-head img {
  position: absolute;
  width: auto;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.poster-img {
  position: absolute;
  width: min(25vw, 120px);
  height: min(38vw, 180px);
  box-shadow: 0 0 .5em rgba(0,0,0,.5);
  top: 50%;
  left: 2em;
  transform: translateY(-50%);
  z-index: 1;
}

.voice-head::after {
  position: absolute;
  content: "";
  width: 85%;
  height: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  background: linear-gradient(to right, rgba(228, 65, 65, 0) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 100%);
}

.voice-head::before {
  position: absolute;
  content: "";
  width: min(80%, 400px);
  height: min(2vw, 5px);
  clip-path: polygon(0 0, 100% 0%, 99% 100%, 0% 100%);
  background-color: var(--color_red);
  bottom: 0;
  left: 0;
  z-index: 2;
}

.voice-head h3 {
  position: relative;
  width: 60%;
  margin-left: 40%;
  padding-right: 1em;
  color: var(--color_blue);
  font-size: 1.35rem;
  line-height: 1.4;
  z-index: 1;
}

.voice-body {
  padding: 1.25em;
}

.voice-list dl {
  display: flex;
  flex-wrap: wrap;
  gap: .65em 1em;
  margin-bottom: 1.5em;
  padding: .5em .5em 1.5em;
  font-weight: 700;
  border-bottom: solid 2px #cbcbcb;
}

.voice-list dt {
  align-self: baseline;
  width: 20%;
  color: var(--color_red);
  border: solid 1px var(--color_red);
  border-radius: 50vw;
  font-size: .85rem;
  text-align: center;
}

.voice-list dd {
  width: calc(80% - 1em);
}

.voice-body .swell-block-button {
  margin: 1rem 0 0;
  font-size: .8rem;
}

.voice-body .swell-block-button a {
  width: 100%;
  border-radius: min(1.4vw, 5px);
}

/*////////// お知らせ //////////*/

.single-news .-type-card .p-postList__thumb {
  display: none;
}

.single-news .p-relatedPosts .p-postList__item {
  margin-bottom: .5em;
  padding: 0 .25em;
}

.single-news .p-postList__link {
  padding: 0 1em 1em;
  border: solid 1px #e2e2e2;
}

.-type-simple .p-postList__link {
  padding: 1em;
}

.p-postList.-type-simple {
  margin-top: 2em;
}

.c-postThumb__cat {
  background-color: var(--color_red);
  background-image: none;
  border-radius: 50vw;
}

/*////////// 診断 //////////*/

.card {
  width: 100%;
  max-width: 600px;
  background-color: white;
  border-radius: 8px;
  border: solid 2px white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: 0 auto;
}

.card-header {
  background-color: var(--color_red);
  color: white;
  padding: .5em 1em;
  text-align: center;
}

.card-header.has-meter {
  padding: 1em 1em .5em;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-title.last {
  margin-bottom: 0;
}

.progress-container {
  height: 8px;
  width: 100%;
  background-color: #fd9393;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: white;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.875rem;
  margin-top: 8px;
}

.card-content {
  padding: 1em;
  text-align: center;
}

.question-title {
  font-size: 1rem !important;
  font-weight: 600;
  margin: 0 0 1em !important;
  text-align: center;
}

.question-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 24px;
  text-align: center;
}

.options {
  display: flex;
  flex-direction: column;
  gap: .25em;
}

.option-button {
  width: 100%;
  padding: .5em;
  background-color: white;
  color: var(--color_red);
  border: 2px solid var(--color_red);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}

.option-button:hover {
  background-color: #ffeff3;
}

.result {
  text-align: center;
  margin-bottom: 32px;
}

.result-heading {
  font-size: 1.125rem;
}

.result-count {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color_red);
}

.result-assessment {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: .5em;
}

.advice-box {
  background-color: #fff7ef;
  padding: 1.5em;
  border-radius: 8px;
  text-align: left;
  margin-bottom: 1.2em;
}

.advice-title {
  font-size: 1rem !important;
  font-weight: 600;
  margin: 0 0 .5em !important;
}

.advice-list {
  font-size: 0.875rem;
  padding: 0 1em;
}

.advice-list li {
  margin-bottom: 8px;
  list-style-type: none;
}

.disclaimer {
  margin-bottom: 1em;
  font-size: 0.74rem;
  color: #6b7280;
  text-align: left;
}

.reset-button {
  margin-bottom: 1em;
  padding: 10px 1.5em;
  background-color: white;
  color: var(--color_blue);
  border: solid 2px var(--color_blue);
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: transform .25s,-webkit-transform .25s;
}

.reset-button:hover {
  transform: translateY(2px);
}

.ticket-box {
  padding: 1em;
  background-color: #fffbf1;
  border: solid 1px #ffe5c8;
  border-radius: 8px;
  margin-bottom: 1em;
}

.ticket-title {
  width: 65%;
  margin: 0 auto .85em !important;
  padding-bottom: .5rem;
  font-size: 1rem !important;
  border-bottom: solid 2px #ffe5c8;
}

.ticket-item {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  width: min(98%, 320px);
  margin: 0 auto;
  align-items: baseline;
  flex-wrap: wrap;
}

.ticket-price {
  color: var(--color_red);
}

.ticket-price .txt-price {
  font-size: 1.3rem !important;
}

.price-per-lesson .txt-price {
  font-size: 1rem !important;
}

.ticket-ctn {
  position: relative;
}

.recommended-badge {
  position: absolute;
  width: 2.8rem;
  padding: 0 .5em;
  background-color: var(--color_red);
  border-radius: 50vw;
  color: #fff;
  font-size: .5rem;
  font-weight: normal;
  bottom: 1.2rem;
  right: -2.5rem;
}

.cat-section-last .speech {
  padding-top: min(5vw, 40px);
}

.shindan-cta {
  margin: 0 0 1.5em;
}

.shindan-cta .speech.narrowly {
  margin-bottom: .25rem;
}

.shindan-cta .speech.narrowly h3 {
  font-size: 1rem;
}

.shindan-cta .speech.narrowly h3 span {
  padding: 0 .15rem;
  font-size: 1.5rem;
}

.shindan-cta .swell-block-button__link {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.shindan-cta .icon-line {
  font-size: 1.8rem;
  line-height: 1.8rem;
}

.cat-section-last {
  padding-top: min(5vw, 50px);
}

.cta-wrap {
  position: relative;
}

.cta-wrap::before {
  position: absolute;
  content: "";
  width: min(40vw, 800px);
  height: min(38vw, 766px);
  background-image: url(../images/bg_cta.png);
  background-size: 100%;
  opacity: .15;
  top: min(2vw, 100px);
  right: 5%;
}

.cta-tit {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding-bottom: 1em;
}

.cta-tit > * {
  position: relative;
  z-index: 1;
}

.cta-catch {
  padding: 0 0 1.5em;
  color: #fff;
  font-size: min(4.2vw, 20px);
  font-weight: 700;
  text-align: center;
  letter-spacing: .1em;
}

.cta-catch span {
  font-size: min(5.8vw, 30px);
}

.cta-wrap h2 {
  border: none;
  padding: 0;
  background-color: transparent;
}

/*////////// フッター //////////*/

#footer-list-wrap {
  width: 94%;
  margin: 0 auto;
  padding: min(9.804vw, 50px) 0;
}

#footer-list-wrap a {
  font-size: clamp(12px, 3vw, 14px);
}

a.footer-logo {
  display: block;
  width: min(27vw, 150px);
  margin: min(0vw, 50px) auto min(5vw, 50px);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
}

.footer-links > div {
  width: 100%;
}

.footer-links > div[class^="menu-"] {
  border-top: solid 2px #939393;
}

.footer-links a {
  position: relative;
  display: block;
  padding: min(2.941vw, 10px);
  border-bottom: solid  2px #939393;
}

.footer-links a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  margin: auto;
  clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
  background-color: white;
  top: 0;
  bottom: 0;
  right: min(0.98vw, 10px);
}

.footer-store-wrap > div a {
  border-bottom: solid 1px #424242;
}

.l-footer__nav a {
  padding: 0 min(2.745vw, 20px);
  border-right: solid 1px #939393;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1;
}

.l-footer__nav li:last-child a {
  border-right: none;
}

.l-footer .copyright {
  font-size: 10px;
  color: #a9a9a9;
}

/* エリア分け */

.footer-store-title {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #666;
  padding-bottom: 10px;
}

.footer-area {
  margin-bottom: 40px;
}

.footer-area-title {
  background-color: #555;
  color: #fff;
  padding: .5em .5em .5em 1em;
  margin-bottom: 20px;
}

.footer-region {
  margin-bottom: 25px;
}

.footer-region-title {
  margin-left: .5em;
  padding: 0 0 0 .8em;
  border-left: solid 3px white;
  color: white;
}

.footer-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1em;
  padding-left: 2.5em;
}

.footer-store-item a {
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
  padding: 5px 10px;
}

.footer-store-item a:hover {
  color: #bdbdbd;
}

.footer-store-item a::after {
  content: '>';
  margin-left: auto;
  color: #ff6b6b;
}


/*//////////////////////////////////////// タブレット用 ////////////////////////////////////////*/

@media (min-width: 800px) {

  .speech-big i {
    transform: translateY(8px);
  }

  /*////////// メインビジュアル //////////*/

  .fv-btn-wrap {
    background-color: transparent;
  }

  .post_content .fv-btn-wrap>:first-child.btn-area {
    margin-top: 20px !important;
  }

  .fv-btn-wrap .speech-min {
    color: #fff;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
  }

  .txt-top-main,
  .txt-store-main {
    margin: 0 auto;
  }

  .fv-btn-wrap .green_ {
    max-width: 800px;
  }

  .page-store .wp-block-cover, .wp-block-cover-image {
    height: calc(100vh - 200px);
    min-height: min(100vw, 716px);
  }

  .page-store .bnr-top {
    top: -29px;
  }

}

/*//////////////////////////////////////// PC用 ////////////////////////////////////////*/

@media (min-width: 960px) {

  .alignfull>.wp-block-cover__inner-container {
    padding: 0 35px;
  }

  .content-inner-wrap,
  .content-inner-wrap-margin {
    padding: 0;
  }

  .column {
    gap: 5%;
  }

  .plan-table {
    width: 45%;
  }

  .wide-l {
    width: 600px;
    margin-bottom: 40px;
  }

  .column > figure:last-of-type {
    margin-bottom: 0;
  }

  #price-tab {
    width: 90%;
    margin: 2em auto 0;
  }

  #bronze-tab.on:after,
  #silver-tab.on:after,
  #gold-tab.on:after {
    bottom: -16px;
  }

  .price-info {
    top: 8px;
    left: -40px;
  }

  .price-info::after {
    bottom: -10px;
    left: 40px;
  }

  .price-single .price-info {
    top: -10px;
  }

  .bg-left-top-round {
    margin-top: -90px !important;
  }

  .h2-two-lines + p::before {
    left: -90px;
  }
  
  .h2-two-lines + p::after {
    right: -90px;
  }

  .h2-red-circle {
    margin-left: 0
  }

  btn-icon-under a,
  .btn-icon-top a,
  .btn-icon-right a,
  .btn-icon-left a {
    min-width: 30%;
  }

  .br-sp {
    display: none;
  }

  .br-pc {
    display: block;
  }

  .solution {
    max-width: 100%;
    height: 200px;
    margin: -50px auto 0;
    left: 0;
    right: 0;
  }

  .solution p {
    top: 82px;
  }

  .solution-wrap {
    margin-bottom: 150px;
  }

  #about-concept.solution-wrap {
    margin-bottom: 170px;
    padding-bottom: 80px;
  }

  .solution::after,
  .solution::before {
    height: 200px;
  }

  .solution::after {
    top: 5px;
  }

  .solution.normal-type {
    bottom: -124px;
  }

  .solution.normal-type p {
    top: 50px;
  }

  .solution.normal-type::after {
    height: 200px;
  }

  .scroll-infinity-wrap {
    margin-bottom: -40px;
  }

  .scroll-infinity-item {
    width: calc(100vw / 3.5);
  }

  .content-inner-indent {
    flex-direction: row;
  }

  .point-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .point-list > li {
    justify-content: center;
    gap: 50px;
  }

  .point-list > li:nth-child(even) .content-inner-indent {
    flex-direction: row-reverse;
  }

  .point-list h3 {
    margin-left: 0;
    margin-bottom: -140px;
    padding: 0 0 50px;
  }

  .point-header i {
    padding-bottom: 30px;
  }

  .img-point {
    width: 50%;
  }

  .img-point + p {
    width: 50%;
    padding-top: 112px;
  }

  #tab-bg {
    top: 67px;
  }

  .fixed {
    top: 80px;
    width: 100%;
  }
  
  #price-tab.fixed {
    width: min(98vw, 800px);
  }

  .frame-balloon::before {
    top: -22px;
  }

  .cta-tit {
    margin-top: 0;
  }

  /* テーブル */
  .cell-green.arrow::after,
  .cell-tit-red.arrow::after {
    right: -10px;
  }

  /*////////// ヘッダー //////////*/

  .l-fixHeader__logo {
    padding: 0;
  }

  .-series .l-header__logo {
    margin-right: 0;
  }

  /*////////// メインビジュアル //////////*/

  .p-mainVisual {
    height: 100vh;
    min-height: 900px;
    max-height: inherit;
  }

  .page-store .wp-block-cover .wp-block-cover__background {
    background-size: cover;
    background-position: center;
    filter: blur(6px);
  }

  .wp-block-cover video.wp-block-cover__video-background {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    object-fit: none;
    height: 150%;
  }

  .stripe1 {
    width: min(30vw, 79px);
    bottom: 0;
    left: 14%;
  }

  .stripe2 {
    width: min(7vw, 25px);
    height: min(65vw, 373px);
    top: 20%;
    left: 24%;
  }

  .stripe3 {
    width: min(7vw, 23px);
    height: min(65vw, 385px);
    bottom: 6%;
    left: 6%;
  }

  .stripe4 {
    width: min(8vw, 74px);
    height: min(65vw, 600px);
    background-color: rgba(255, 238, 156, .5);
    top: 14%;
    right: 13%;
  }

  .stripe5 {
    width: min(7vw, 23px);
    height: min(65vw, 400px);
    background-color: rgba(255, 238, 156, .8);
    top: 34%;
    right: 9%;
  }

  .stripe6 {
    width: min(7vw, 23px);
    height: min(65vw, 385px);
    top: -7%;
    right: 0;
  }

  /* スクロール誘導 */

  .p-mainVisual__scroll {
    display: block;
  }

  /*////////// バクトレについて //////////*/

  #concept::before {
    bottom: -200px;
    left: 50%;
    transform: translateX(-150%);
  }

  #concept::after {
    margin: 0 auto;
  }

  #about-concept {
    display: flex;
    align-items: center;
    background-position: bottom 106px left 8vw, bottom 103px right 8vw;
  }

  .point-header h3 p::before,
  .point-header h3 p::after {
    clip-path: polygon(0 50%, 2% 0, 100% 0, 100% 100%, 2% 100%);
  }

  .point-list > li:nth-child(even) .point-header h3 p::before,
  .point-list > li:nth-child(even) .point-header h3 p::after {
    clip-path: polygon(0 100%, 0 0, 98% 0, 100% 50%, 98% 100%);
  }

  .dreams-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }

  .label-red {
    margin-left: 0;
    padding: 0.2em 1em;
  }

  .label-red + div {
    padding: 0 30px;
  }

  .person-about .speech-type2 {
    display: inline-block;
    width: auto;
  }

  /*////////// 技 //////////*/

  .is-style-default .c-tabBody {
    border-radius: 10px;
  }

  .technique-list {
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  }

  /*////////// 料金 //////////*/

  .label-circle {
    right: 100px;
  }

  /*////////// レッスンの流れ //////////*/

  .lesson-list li {
    padding-bottom: 0;
  }

  .lesson-list li:nth-child(4),
  .lesson-list li:nth-child(5) {
    margin-top: 0;
  }

  .lesson-list li::after,
  .lesson-list li:nth-child(odd):after {
    display: block;
    position: absolute;
    content: "";
    width: min(2.941vw, 15px);
    height: min(5.294vw, 27px);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background-color: var(--color_blue);
    top: 127px;
    left: -1.5em;
    z-index: 1;
  }

  .lesson-list li:nth-child(1)::after,
  .lesson-list li:nth-child(4)::after,
  .lesson-list li:nth-child(5)::after {
    display: none;
  }

  .lesson-img::before {
    width: calc(100% + 10px);
    top: 45px;
  }

  .lesson-tit {
    width: calc(100% + 10px);
    margin-left: -10px;
    padding: .8em .25em 1em;
  }

  .lesson-list li.flow-point-min {
    width: 50%;
    align-self: center;
    padding: 0;
  }

  .speech-bubble {
    padding: 2em;
  }

  .speech-bubble::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent var(--color_red) transparent transparent;
    translate: -100% -50%;
  }

  .speech-bubble::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 7.8px 15.5px 7.8px 0;
    border-color: transparent #ffffff transparent transparent;
    translate: -100% -50%;
  }

  .flow-point {
    margin-top: -170px;
    padding-top: 134px;
  }

  /*////////// 講師 //////////*/

  .instructors-list {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  /* モーダル */

  .modal-content {
    top: 110px;
    bottom: 30px;
  }

  .modal-close {
    top: -14px;
  }

  /* 講師詳細ページ */

  .instructor-movies-list {
    flex-wrap: nowrap;
  }

  .instructor-movies-list li {
    width: 100%;
  }

  /*////////// 店舗 //////////*/

  .prefecture-links a {
    width: calc(20% - 0.5em);
  }

  .stores-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }

  .store-photo {
    margin: 0 auto;
    border-radius: 10px;
  }

  dl.store-info {
    width: min(100%, 750px);
    margin: 3em auto 4em;
    padding-left: 0;
  }

  .root-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .voice-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /*////////// お問い合わせ //////////*/

  .recommend-line {
    align-items: center;
  }

  .stores-list-simple {
    padding: 0 30px 0 50px;
  }

  /*////////// フッター //////////*/

  .l-footer__foot {
    padding-bottom: 1em !important;
  }

  #body_wrap.single-store .l-footer__foot {
    padding-bottom: 6em !important;
  }

  .l-footer__nav a {
    padding: 0 min(2.745vw, 20px);
    border-right: solid 1px #939393;
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1;
  }

  .l-footer__nav li:first-child a {
    border-left: none;
  }

  .footer-store-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 20px;
  }

  .footer-area {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }

  .footer-links {
    flex-direction: row;
    gap: 50px;
  }

  .footer-links > div[class^="menu-"] {
    max-width: 280px;
  }

  .footer-stores {
    grid-template-columns: 1fr;
  }

  /* 画面下部・固定ボタン */

  #fix_bottom_menu {
    overflow: hidden;
    display: block;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 50px 0 0 50px;
    bottom: -80px;
    left: auto;
    right: 0;
  }

  #fix_bottom_menu.store-bottom-menu {
    overflow: hidden;
    display: block;
    max-width: 640px;
  }

  #fix_bottom_menu .menu_list {
    height: 60px;
  }

  #fix_bottom_menu .menu-item.bottom-other a {
    flex-direction: row;
  }

  #fix_bottom_menu .bottom-other a > span {
    margin-top: 0;
    margin-left: 0.6em;
    font-size: 16px;
  }

  #fix_bottom_menu.store-bottom-menu .menu-item.bottom-line span {
    font-size: 18px;
  }

  #fix_bottom_menu .menu-item.bottom-line {
    width: 42%;
  }

  #fix_bottom_menu .menu-item.bottom-line span.footer-btn-txt-min {
    font-size: 14px;
  }
  
}

@media (min-width: 1300px) {

  /*////////// フッター //////////*/

  .footer-area {
    width: calc(33% - 20px);
  }

}

@media (min-width: 1700px) {

  /*////////// フッター //////////*/

  .footer-stores {
    grid-template-columns: 1fr 1fr;
  }

}