@charset "UTF-8";
/* CSS Document */

/* ========================================
common
======================================== */
/* --------------------------------
pc_w50
----------------------------------*/
.pc_w50 + .pc_w50 {
  margin-top: 50px;
}
.pc_w50 {
  --gap: 30px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
ul.pc_w50 h3 {
  margin-block: 15px 8px;
  text-align: center;
}

@media (min-width: 992px) {
  .pc_w50 {
    --num: 2;
    --gap: 40px;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .pc_w50 > * {
    width: calc((100% - var(--gap) * calc(var(--num) - 1)) / var(--num));
  }
  ul.pc_w50 h3 {
    margin-block: 15px 7px;
  }
}

/* --------------------------------
double
----------------------------------*/
figure.double img {
  width: calc(50% - 4px);
}
figure.double img + img {
  margin-left: 8px;
}

/* --------------------------------
kome
----------------------------------*/
.kome {
  font-size: 11px;
}
@media (min-width: 768px) {
  .kome {
    font-size: 13px;
  }
}

/* --------------------------------
price
----------------------------------*/
.price {
  font-weight: bold;
}

/* --------------------------------
bdr
----------------------------------*/
i.bdr {
  display: inline-block;
  margin-right: 0.5em;
  padding: 0px 8px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  background: var(--c_point);
  border: 1px solid var(--c_point);
  border-radius: var(--radius_s);
}

/* --------------------------------
list
----------------------------------*/
.list li {
  text-indent: -1.6em;
  margin-left: 1.6em;
}

/* --------------------------------
slide
----------------------------------*/
.slide-wrap {
  padding-inline: 4%;
}
.splide__slide img {
  width: 100%;
}

@media (min-width: 768px) {
  .slide-wrap {
    padding-inline: 0;
  }
}

/* ========================================
ヘッダー・フッター
======================================== */
/* --------------------------------
header
----------------------------------*/
h1.logo {
  font-size: 0.7em;
  position: absolute;
  top: 5px;
  left: 16px;
  z-index: 3;
}
h1.logo a {
  display: block;
}
h1.logo img {
  width: 30vw;
  max-width: 180px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  h1.logo {
    font-size: 0.6em;
    top: 2px;
  }
  h1.logo img {
    margin-top: 5px;
  }
}

/* menu */
.menu {
  width: 320px;
  height: 100%;
  font-family: var(--font_sub);
  position: fixed;
  top: 0;
  right: -260px;
  z-index: 10;
}
.menu.menu-open {
  right: -10px;
}
.menu-wrap {
  width: 260px;
  height: 100%;
  padding: 40px 20px 40px;
  background: rgba(26, 26, 26, 0.95);
  background: var(--bg_main);
  position: absolute;
  top: 0;
  left: 60px;
  overflow-y: scroll;
}
.menu a:not(.fb) {
  display: block;
  padding: 16px 0;
  line-height: 1.25;
  border-bottom: 1px dotted var(--gray);
}
.menu a:hover {
  color: var(--c_main);
}
.menu .menu-wrap a:nth-last-child(3) {
  border-bottom: none;
}
.menu .menu-wrap a.mail {
  margin-top: 10px;
  padding-top: 10px;
  text-align: center;
  background: #fff;
  border-bottom: none;
}
.menu .menu-wrap a.mail:hover {
  background: #fff;
  color: var(--c_main);
}
.menu .menu-wrap a.mail i {
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
  position: relative;
  bottom: -5px;
}

.menu-close {
  display: block;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  font-size: 22px;
  color: var(--c_main);
  line-height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.menu-close:hover {
  color: #fff;
}
.menu,
.body-push {
  transition: all 0.3s ease;
}
#menuToggle {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  text-align: center;
  background: var(--gray_d);
  position: absolute;
  top: 20px;
  left: 0;
  cursor: pointer;
  z-index: 11;
  transition: all 0.1s ease-in-out;
}
#menuToggle:hover {
  background: rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .menu {
    width: 440px;
    right: -380px;
  }
  .menu.menu-open {
    right: 0;
  }
  .menu-wrap {
    width: 400px;
    padding: 40px 40px 20px;
  }
}

/* facebook */
a.fb {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: var(--gray_d);
  position: absolute;
  top: 74px;
  left: 0;
  vertical-align: middle;
}
a.fb:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

/* instagram */
a.insta {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: var(--gray_d);
  position: absolute;
  top: 126px;
  left: 0;
  vertical-align: middle;
  background-image: url("../images/ico-instagram.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-size: 55% auto;
}
a.insta:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  background-image: url("../images/ico-instagram.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-size: 55% auto;
}

/* --------------------------------
footer
----------------------------------*/
footer {
  padding: 30px 5% 14px;
  background: var(--gray_d);
}
footer > *,
footer a {
  font-size: 14px;
  color: #fff;
}
footer > *:not(.tit02) {
  font-size: 14px;
}
footer .tit02 {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 22px;
  line-height: 1.3;
  border-bottom: none;
  position: relative;
}
footer .tit02 span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 16px;
  position: relative;
  top: -4px;
}
/* 会社情報 */
footer .address address {
  margin-bottom: 10px;
  font-size: 20px;
}
footer .address dl {
  display: flex;
  margin: 4px auto;
}
footer .address dl dt {
  width: 5em;
}
footer .address dl dd {
  width: calc(100% - 5em);
}

/* googleマップ */
footer .gmap {
  width: 100%;
  margin: 20px 0 30px;
  height: 250px;
}

/* お知らせ */
ul.news li {
  display: flex;
  margin: 0 auto;
  padding: 12px 0 6px;
  border-bottom: 1px dotted #fff;
}
ul.news li time {
  width: 6em;
  margin-right: 20px;
}
ul.news li .newstxt {
  width: calc(100% - 5em - 20px);
}
ul.news li p a {
  text-decoration: underline;
  text-decoration-color: var(--gray);
}

/* f-mail */
footer .f-mail {
  display: block;
  margin: 20px auto 0;
  text-align: center;
}
footer .f-mail i {
  font-size: 30px;
  position: relative;
  bottom: -8px;
  margin-right: 10px;
}
footer .f-mail span {
  text-decoration: underline;
  text-decoration-color: #fff;
}
footer .f-mail:hover span {
  text-decoration: none;
}

/* コピーライト */
footer p small {
  display: block;
  margin-top: 40px;
  padding-top: 10px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #fff;
}

@media (min-width: 768px) {
  footer {
    padding: 50px 10% 20px;
  }
  footer .tit02 {
    font-size: 26px;
    line-height: 1.2;
  }
  footer .tit02 span {
    font-size: 20px;
  }

  /* googleマップ */
  footer .gmap {
    margin: 20px 0 40px;
  }
  footer .pc_w50 > * {
    margin-top: 30px;
  }

  /* f-mail */
  footer .f-mail {
    font-size: 18px;
    text-align: left;
  }
  footer .f-mail i {
    font-size: 34px;
    bottom: -8px;
    margin-right: 14px;
  }

  /* コピーライト */
  footer p small {
    margin-top: 60px;
    padding-top: 20px;
  }
}

/* --------------------------------
お問い合わせ （footer）
----------------------------------*/
.inq dl dt {
  margin: 14px auto 6px;
}
input,
textarea {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius_s);
}
input:focus,
textarea:focus {
  outline: none;
}
textarea {
  height: 100px;
}
#inq button {
  display: block;
  width: 100px;
  margin: 20px auto 0;
  padding: 6px 12px;
  font-size: 14px;
  color: var(--color);
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: var(--radius_s);
}
#inq button:hover {
  color: var(--c_main);
  text-decoration: none;
  box-shadow: inset 0 0 6px rgb(from var(--c_sub) r g b / 0.7);
}

@media (min-width: 768px) {
  #inq button {
    margin: 20px 0 0;
  }
}

/* ========================================
LPページ
======================================== */
/* --------------------------------
hero
----------------------------------*/
.hero {
  width: 100%;
  height: 340px;
  position: relative;
}
.hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero p {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
}
.hero p span {
  width: 100%;
  display: block;
  padding: 20px 10%;
  font-family: var(--font_sub);
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  background: var(--gray_d);
}
.hero p span strong {
  display: block;
  margin-bottom: 10px;
  font-size: 150%;
}
.hero p span small {
  font-size: 80%;
}

@media (min-width: 768px) {
  .hero {
    width: 100%;
    height: 640px;
  }
  .hero p span {
    padding: 40px 10%;
    font-size: 28px;
  }
}

/* --------------------------------
sec-intro
----------------------------------*/
.sec-intro p.lead {
  padding: 0 20px;
  font-family: var(--font_sub);
  text-align: center;
}
.sec-intro p.lead strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.5;
}
.sec-intro p.lead span {
  display: block;
  margin-bottom: 20px;
}
.sec-intro p.lead small {
  display: block;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .sec-intro p.lead strong {
    font-size: 36px;
  }
}

/* --------------------------------
sec-issue
----------------------------------*/
.fig-issue {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fig-issue img {
  width: 100%;
}

/* --------------------------------
sec-checklist
----------------------------------*/
/* .check01 */
.sec-checklist .check01 {
  padding: 25px 14px 20px;
  line-height: 1.4;
  border-radius: var(--radius);
}
.sec-checklist .check01 h3 {
  font-size: 18px;
  width: fit-content;
  margin: 0 auto 20px;
}
.sec-checklist .check01 p span {
  font-size: 14px;
  color: var(--c_main);
}
.sec-checklist .check01 .list {
  margin: 20px auto 0;
  padding: 24px 6% 20px 5%;
  background:
    url(../images/bg-checklist.png) left top,
    #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.sec-checklist .check01 .list li {
  margin-bottom: 16px;
  margin-left: 0;
  padding-left: 28px;
  text-indent: 0;
  font-family: var(--font_sub);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.sec-checklist .check01 .list li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/ico-check.svg) left top / 100% auto no-repeat;
  position: absolute;
  left: 0;
  top: 2px;
}

@media (min-width: 768px) {
  .sec-checklist .check01 {
    padding: 40px;
  }
  .sec-checklist .check01 h3 {
    font-size: 22px;
  }
  .sec-checklist .check01 p {
    text-align: center;
  }
  .sec-checklist .check01 p span {
    font-size: 16px;
  }
  .sec-checklist .check01 .list {
    padding: 40px 6%;
  }
  .sec-checklist .check01 .list .inner {
    --num: 2;
    --gap: 30px;
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
  }
  .sec-checklist .check01 .list .inner > * {
    width: calc((100% - var(--gap) * calc(var(--num) - 1)) / var(--num));
  }
  .sec-checklist .check01 .list li {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 16px;
  }
  .sec-checklist .check01 .list li::before {
    width: 22px;
    height: 22px;
    top: 0;
  }
  .sec-checklist .check01 .list li + li {
    margin-top: 24px;
  }
}

/* --------------------------------
asd-cv
----------------------------------*/
.asd-cv {
  margin-bottom: 60px;
}
.asd-cv .microcopy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--c_main);
  font-weight: bold;
  text-align: center;
}
.asd-cv .microcopy::before,
.asd-cv .microcopy::after {
  content: "";
  --size: 40px;
  width: var(--size);
  aspect-ratio: 1/1;
  translate: 0 12px;
}
.asd-cv .microcopy::before {
  rotate: -30deg;
  border-right: 2px solid var(--c_main);
}
.asd-cv .microcopy::after {
  rotate: 30deg;
  border-left: 2px solid var(--c_main);
}
.asd-cv .cv-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .asd-cv {
    margin-bottom: 100px;
  }
  .asd-cv .microcopy {
    font-size: 18px;
  }
  .asd-cv .microcopy::before,
  .asd-cv .microcopy::after {
    border-width: 3px;
  }
  .asd-cv .cv-wrap {
    flex-direction: row;
    justify-self: center;
    gap: 20px;
    margin-top: 10px;
  }
  .asd-cv .cv-wrap :is(.btn, [class^="btn_"]) {
    margin: 0;
  }
}

/* --------------------------------
sec-policy
----------------------------------*/
.policy-dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 50px;
}
.policy-dl dl {
  display: flex;
  align-items: stretch;
}
.policy-dl dl dt {
  width: 190px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font_sub);
  font-size: 18px;
  color: var(--c_main);
  line-height: 1;
  background: var(--bg_main);
}
.policy-dl dl dt i {
  --size: 40px;
  display: grid;
  place-content: center;
  width: var(--size);
  aspect-ratio: 2/3;
  color: #fff;
  font-size: 1.5em;
  background: var(--c_sub);
}
.policy-dl dl dd {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1em;
  font-size: 15px;
  border: 2px solid var(--bg_main);
}

/* hierarchy */
.hierarchy .tit02 span {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .policy-dl {
    width: 95%;
    margin: 0 auto 50px;
  }
  .policy-dl dl {
    gap: 20px;
    border: 4px solid var(--bg_main);
  }
  .policy-dl dl dt {
    flex-shrink: 0;
    gap: 30px;
    width: 270px;
    font-size: 20px;
  }
  .policy-dl dl dt i {
    --size: 50px;
    aspect-ratio: 1/1;
    font-size: 1.5em;
  }
  .policy-dl dl dd {
    font-size: 16px;
    border: none;
  }

  /* hierarchy */
  .hierarchy {
    flex-direction: row-reverse;
  }
  .hierarchy .text {
    width: unset;
    flex: 1;
  }
  .hierarchy figure {
    width: 60%;
  }
}

/* --------------------------------
sec-training
----------------------------------*/
.point-box {
  margin: 30px auto 40px;
  padding: 20px 14px 20px;
  font-size: 15px;
  border-radius: var(--radius);
}
.point-box h3 {
  font-size: 1.3em;
  text-align: center;
}

/* point-list */
.point-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 10px auto 0;
}
.point-list li {
  padding: 14px 20px;
  font-family: var(--font_sub);
  font-size: 16px;
  color: var(--c_main);
  line-height: 1.4;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .point-box {
    padding: 30px 40px;
  }
  .point-box h3 {
    font-size: 34px;
  }

  /* point-list */
  .point-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .point-list li {
    display: grid;
    place-content: center;
    padding: 20px 20px;
    font-size: 18px;
    text-align: center;
  }
}

/* --------------------------------
sec-about
----------------------------------*/
/* --------------------------------
sec-lesson
----------------------------------*/
.lesspn {
  margin-inline: 3%;
}
.sec-lesson dl {
  margin: 40px auto 0;
}
.sec-lesson dl dt {
  margin: 0 auto 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) {
  .lesspn {
    margin-inline: 0;
  }
  .sec-lesson dl dt {
    font-size: 22px;
  }
  .sec-lesson dl dd {
    text-align: center;
  }
}

/* --------------------------------
sec-voice
----------------------------------*/
/* sec-voice */
.sec-voice p {
  margin-block: -10px 30px;
  text-align: center;
}
ul.voice-list {
  gap: 30px;
  padding-bottom: 30px;
}
ul.voice-list li {
  padding: 30px;
  font-size: 15px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  filter: drop-shadow(0 0 6px rgb(from var(--c_sub) r g b / 0.7));
}
ul.voice-list li::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top-color: #fff;
}
ul.voice-list li strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font_sub);
  font-size: 18px;
  color: var(--c_main);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .sec-voice p {
    margin-block: -20px 40px;
    font-size: 18px;
  }
}

/* --------------------------------
sec-flow
----------------------------------*/
/* flow */
ul.flow-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px auto 0;
}
ul.flow-list > li {
  position: relative;
}
ul.flow-list > li b {
  display: block;
  font-family: var(--font_sub);
  font-size: 32px;
  color: var(--c_main);
  text-align: center;
}
ul.flow-list > li > a {
  display: inline-block;
  color: var(--c_main);
  text-indent: 0;
  text-decoration: underline;
  text-decoration-color: var(--c_sub);
}
ul.flow-list > li > a:hover {
  text-decoration: none;
}
ul.flow-list > li .box {
  display: block;
  margin: 10px auto 0;
  padding: 16px;
  text-indent: 0;
  text-align: center;
  line-height: 1.8;
  border-radius: var(--radius);
}
ul.flow-list > li p i.bdr {
  margin: 6px 0.5em 0 0;
}

@media (min-width: 768px) {
  ul.flow-list {
    gap: 40px;
  }
  ul.flow-list > li {
    padding-left: 60px;
  }
  ul.flow-list > li b {
    font-size: 42px;
    position: absolute;
    left: 0;
    top: 0;
  }
  ul.flow-list > li p span {
    font-size: 24px;
  }
}

/* check02 */
.check-block {
  margin-top: 30px;
}
.check-block h3 {
  margin-bottom: 10px;
}
.check-block .check02 {
  margin: 30px auto 0;
  padding: 20px 14px 20px;
  font-size: 15px;
  border-radius: var(--radius);
}
.check-block .check02 h3 {
  font-size: 1.3em;
  text-align: center;
}
.check-block .check02 h3 em {
  display: inline-block;
  padding: 0 40px 10px;
  font-family: var(--font);
  font-size: 14px;
}
.check-block .check02 h3 em i.bdr {
  display: inline-block;
  margin: 8px auto 15px;
  padding: 6px 20px 4px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: var(--c_main);
  border-color: var(--c_main);
}
.check-block .check02 .price {
  display: block;
  margin-top: 6px;
  font-size: 1.2em;
}
.check-block .check02 ul.list {
  margin: 20px auto 0;
  padding: 20px 5%;
  line-height: 1.4;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.check-block .check02 ul.list li {
  text-indent: 0;
  margin-left: 0;
}
.check-block .check02 ul.list li + li {
  margin-top: 10px;
}
.check-block .check02 ul.list li strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font_sub);
  font-size: 16px;
  color: var(--c_main);
}

@media (min-width: 768px) {
  .check-block .check02 {
    padding: 40px;
  }
  .check-block .check02 h3 {
    font-size: 34px;
  }
  .check-block .check02 p {
    text-align: center;
  }
  .check-block .check02 .price {
    margin-top: 8px;
    font-size: 1.2em;
  }
  .check-block .check02 ul.list {
    padding: 40px 6%;
  }
  .check-block .check02 ul.list li + li {
    margin-top: 24px;
  }
  .check-block .check02 ul.list li strong {
    margin-bottom: 7px;
    font-size: 20px;
  }
}

/* --------------------------------
sec-fee
----------------------------------*/
.sec-fee .price {
  color: var(--c_main);
}
.sec-fee table.tbl th + th {
  border-left: 1px solid #fff;
}
.sec-fee table.tbl tr + tr {
  border-top: 1px solid #ccc;
}

/* tblA */
.sec-fee .pc_w50 table.tbl.tblA {
  margin: 4px 0 0;
}
.sec-fee .pc_w50 table.tbl.tblA + .tblA {
  margin-top: 20px;
}
.sec-fee .pc_w50 table.tbl.tblA caption {
  margin-bottom: 6px;
  text-align: left;
}
.sec-fee .pc_w50 table.tbl.tblA th {
  width: 60%;
  text-align: left;
  background: var(--bg_gray);
}
.sec-fee .pc_w50 table.tbl.tblA td {
  width: 40%;
  font-size: 10px;
  color: var(--c_main);
  font-weight: bold;
  text-align: right;
}
.sec-fee .pc_w50 table.tbl.tblA td .price {
  font-size: 16px;
}

/* tblB */
.sec-fee table.tbl.tblB th {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: var(--c_point);
}
.sec-fee table.tbl.tblB td {
  color: #000;
  font-weight: normal;
  text-align: left;
}
.sec-fee table.tbl.tblB td + td {
  border-left: 1px solid #ccc;
}
.sec-fee table.tbl.tblB p.kome {
  margin-top: 6px;
  margin-left: 1em;
  text-indent: -1em;
}
.sec-fee .pc_w50 table.tbl.tblB th:first-of-type {
  width: 110px;
}
.sec-fee .pc_w50 table.tbl.tblB td:first-of-type {
  font-size: 28px;
  color: var(--c_main);
  font-weight: bold;
  text-align: center;
}
.sec-fee .pc_w50 table.tbl.tblB tr:last-of-type td:first-of-type {
  font-size: 24px;
}

/* priceList */
.sec-fee .priceList {
  margin: 30px 0 0;
}
.sec-fee .priceList table.tbl {
  margin: 30px 0 0;
}

.sec-fee .priceList table.tbl.tblB {
  width: 100%;
}
.sec-fee .priceList table.tbl.tblB th {
  color: #fff;
  text-align: center;
  background: var(--c_point);
}
.sec-fee .priceList table.tbl.tblB td {
  font-size: 15px;
  text-align: center;
}
.sec-fee .priceList table.tbl.tblB td .kome {
  margin-left: 10px;
}

/* tblC */
.sec-fee .priceList table.tbl.tblC th {
  color: #fff;
  font-weight: bold;
  background: var(--c_point);
}
.sec-fee .priceList table.tbl.tblC td:first-of-type {
  background: var(--bg_gray);
}
.sec-fee .priceList table.tbl.tblC td:nth-of-type(2) {
  font-size: 16px;
  text-align: center;
}
.sec-fee .priceList table.tbl.tblC td:last-of-type {
  text-align: center;
}
.sec-fee .priceList table.tbl.tblC td .kome {
  display: block;
}
.sec-fee .priceList table.tbl.tblC td:last-of-type {
  border-left: 1px solid #ccc;
}

@media (min-width: 992px) {
  .sec-fee .pc_w50 > * {
    width: 46%;
  }
}
@media (min-width: 768px) {
  /* tblA */
  .sec-fee .pc_w50 table.tbl.tblA + .tblA {
    margin-top: 40px;
  }
  .sec-fee .pc_w50 table.tbl.tblA td {
    font-size: 12px;
  }
  .sec-fee .pc_w50 table.tbl.tblA td .price {
    font-size: 20px;
  }

  /* tblB */
  .sec-fee .pc_w50 table.tbl.tblB th:first-of-type {
    width: 140px;
  }
  .sec-fee .pc_w50 table.tbl.tblB td:first-of-type {
    font-size: 34px;
  }
  .sec-fee .pc_w50 table.tbl.tblB tr:last-of-type td:first-of-type {
    font-size: 28px;
  }

  /* priceList */
  .sec-fee .priceList {
    margin-top: 50px;
  }
  .sec-fee .priceList table.tbl.tblB th {
    font-weight: bold;
  }
  .sec-fee .priceList table.tbl.tblB td {
    font-size: 20px;
  }

  /* tblC */
  .sec-fee .priceList table.tbl.tblC th:first-of-type {
    width: 42%;
  }
  .sec-fee .priceList table.tbl.tblC td:first-of-type {
    font-size: 18px;
  }
  .sec-fee .priceList table.tbl.tblC td:first-of-type .kome {
    display: inline-block;
  }
  .sec-fee .priceList table.tbl.tblC td:nth-of-type(2) {
    font-size: 20px;
  }
}

/* --------------------------------
sec-target
----------------------------------*/
/* sec-target */
.sec-target p {
  font-size: 20px;
  text-align: center;
}
.sec-target p .kome {
  display: block;
}
@media (min-width: 768px) {
  .sec-target p {
    font-size: 28px;
  }
}

/* --------------------------------
autoscroll02
----------------------------------*/
.autoscroll-slide_ltr {
  margin-block: 10px 20px;
}

/* ========================================
thanksページ
======================================== */
.thanks #theMenu {
  display: none;
}
.thanks section {
  margin: 140px auto 40px;
  text-align: center;
}
.thanks a.tel {
  display: block;
  margin-top: 30px;
  font-family: var(--font_sub);
  font-size: 30px;
}
.thanks a.tel i {
  display: inline-block;
  margin-right: 10px;
}
.thanks a.tel + p {
  font-size: 14px;
}
.thanks .btn-wrap {
  margin-block: 30px;
}

@media (min-width: 768px) {
  .thanks section {
    margin: 160px auto 100px;
  }
  .thanks a.tel {
    margin-top: 30px;
    font-size: 40px;
  }
  .thanks a.tel + p {
    font-size: 16px;
  }
}
