@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Muli:wght@400;700&display=swap");
html {
  font-family: "Muli", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

body {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  font-family: "Muli", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  min-height: 100%;
  min-width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  margin: 0px;
  padding: 0px;
}

main {
  margin-top: 80px;
  /* 固定ヘッダーが適用された時の調整 */
}
@media (min-width: 768px) {
  main {
    margin-top: 101px;
  }
}
.fixed-header ~ main {
  margin-top: 120px; /* ヘッダーの高さに応じて調整 */
}
@media (min-width: 768px) {
  .fixed-header ~ main {
    margin-top: 140px;
  }
}

p {
  line-height: 1.8;
}

.container-wrap {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.container-wrap.full {
  max-width: 100%;
}

/*------------------
 setting
------------------*/
.section-wrap {
  position: relative;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .section-wrap {
    padding: 80px 0;
  }
}

a {
  transition: all 0.2s ease-in;
}
a:hover, a:focus, a:hover img, a:focus img {
  opacity: 0.8;
  transition: all ease 0.25;
}

.section-ttl {
  position: relative;
  text-align: center;
  font-size: 24px;
  margin-bottom: 28px;
  font-weight: bold;
}
.section-ttl::after {
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  background-image: url("../img/section_ttl_bg_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 8px auto 0;
}
@media (min-width: 768px) {
  .section-ttl::after {
    width: 150px;
    height: 8px;
    background-image: url("../img/section_ttl_bg.svg");
    background-size: contain;
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.btn {
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: bold;
  width: 100%;
  max-width: 100%;
  padding: 24px 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #FDA358 0%, #FF8702 100%);
  box-shadow: 0 3px 0 0 #F0721D;
}
@media (min-width: 768px) {
  .btn {
    font-size: 18px;
    padding: 16px 0;
  }
}
.btn::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}
.btn.btn-reserve {
  background: #137EC5;
  border: solid 2px #137EC5;
  box-shadow: 0 3px 0 0 #05456f;
}
.btn.btn-tel {
  background: #12559C;
  border: solid 2px #12559C;
  box-shadow: 0 3px 0 0 #032e4b;
}
.btn.btn-access {
  background: #fafafa;
  color: #12559C;
  border: solid 2px #12559C;
  box-shadow: 0 3px 0 0 #032e4b;
}
.btn.btn-float {
  width: 100%;
  padding: 4px 0;
}
@media (min-width: 768px) {
  .btn.btn-float {
    width: 100%;
    max-width: 240px;
    min-width: 240px;
    height: 64px;
    padding: 8px 0;
  }
}
.btn.btn-float::before {
  display: none;
}

.marker {
  background: linear-gradient(transparent 70%, #FCF101 70%);
}

/*------------------
 header
------------------*/
.header {
  transition: padding 0.2s ease, background-color 0.3s ease;
  color: #333;
  background-color: #fff;
}
.header.fixed-header .header-ttl {
  position: absolute;
  top: -100%; /* ヘッダーが固定された時に非表示にする */
  left: 0;
  width: 100%;
  z-index: -1;
}
.header.fixed-header .header-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  background-color: #fff;
  animation: slideDown 0.3s ease-out forwards;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 50;
}
.header .header-logo img {
  height: 40px;
}
@media (min-width: 1024px) {
  .header .header-logo img {
    height: 56px;
  }
}
.header .menu {
  display: block;
}
.header .header-btn {
  font-size: 16px;
  padding: 10px 16px;
  min-width: 180px;
  max-width: 180px;
}

@media (max-width: 1023.98px) {
  .header .menu {
    display: none;
  }
  .header .menu .container-wrap.full {
    padding: 0;
  }
  .header .menu.active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 100vh;
    padding: 12px 16px;
    display: block;
    background: #137EC5;
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: scroll;
  }
  .header .menu.active ul {
    height: 100%;
  }
  .header .menu.active ul li a {
    color: #fff;
  }
  .header .menu.active ul li a.header-btn {
    font-size: 18px;
    width: 100%;
    max-width: 280px;
    min-width: 280px;
    margin: 0 auto;
    padding: 14px 0;
  }
  .hamburger {
    position: relative;
    background: #137EC5;
    border-radius: 100px;
    width: 44px;
    height: 44px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
  }
  .line {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 100px;
  }
  .line:nth-child(2), .line:nth-child(3) {
    margin-top: 6px;
  }
  .hamburger.clicked .line:nth-child(2) {
    transform: scaleX(0);
  }
  .hamburger.clicked .line:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  .hamburger.clicked .line:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg);
    bottom: 8px;
  }
}
@media (max-width: 767.98px) {
  .header .header-ttl {
    font-size: 2.4vw;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
/*------------------
 mainkv
------------------*/
.section-mainkv {
  background-image: url("../img/mainkv_bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .section-mainkv {
    background-image: url("../img/mainkv_bg.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    padding: 56px 0;
  }
}
.section-mainkv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.section-mainkv .mainkv-lead {
  position: relative;
  display: inline-block;
  padding: 0 48px;
  font-size: 20px;
}
@media (min-width: 768px) {
  .section-mainkv .mainkv-lead {
    font-size: 28px;
    padding: 0 124px;
  }
}
.section-mainkv .mainkv-lead::before, .section-mainkv .mainkv-lead::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .section-mainkv .mainkv-lead::before, .section-mainkv .mainkv-lead::after {
    width: 100px;
  }
}
.section-mainkv .mainkv-lead::before {
  left: 0;
}
.section-mainkv .mainkv-lead::after {
  right: 0;
}
.section-mainkv .mainkv-catch {
  font-size: 6vw;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section-mainkv .mainkv-catch {
    font-size: 36px;
  }
}
.section-mainkv .mainkv-tags li {
  min-width: 6.4rem;
}
@media (min-width: 768px) {
  .section-mainkv .mainkv-tags li {
    min-width: 8rem;
  }
}

/*------------------
 staff
------------------*/
/*------------------
 feature
------------------*/
.section-feature {
  background-image: url("../img/feature_bg_sp.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media (min-width: 768px) {
  .section-feature {
    background-image: url("../img/feature_bg.jpg");
    background-size: cover;
  }
}
.section-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(96deg, #06284B 0%, #0B4B75 100%);
  mix-blend-mode: multiply;
}
.section-feature .feature-lists .feature-block {
  padding: 24px 20px;
  outline: 1px solid #B1883A;
  outline-offset: -8px;
  background: linear-gradient(133deg, #F7EFEB 0%, #FFF 50.48%, #F7EFEB 100%);
}
@media (min-width: 768px) {
  .section-feature .feature-lists .feature-block {
    padding: 32px 24px;
  }
}

/*------------------
 problem
------------------*/
.section-problem {
  padding-bottom: 0;
}

/*------------------
 about
------------------*/
.bubble-txt {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 20px;
  border-radius: 100px;
  background-color: #137EC5;
  text-align: center;
  line-height: 1.5;
  color: #fff;
}
@media (min-width: 768px) {
  .bubble-txt {
    margin-bottom: 20px;
    padding: 12px 24px;
  }
}
.bubble-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 12px 8px 0 8px;
  border-color: #137EC5 transparent transparent;
  translate: -50% 100%;
}

@media (max-width: 767.98px) {
  .section-about {
    padding-bottom: 0;
  }
}
/*------------------
 course
------------------*/
.section-course .menu-wrap .menu-inner + .menu-inner {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner + .menu-inner {
    margin-top: 80px;
  }
}
.section-course .menu-wrap .menu-inner .menu-ttl {
  font-size: 18px;
  padding: 8px 12px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
  background-color: #137EC5;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner .menu-ttl {
    font-size: 20px;
    padding: 12px 16px;
    margin-bottom: 18px;
  }
}
.section-course .menu-wrap .menu-inner__elm + .menu-block__elm {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner__elm + .menu-block__elm {
    margin-top: 64px;
  }
}
.section-course .menu-wrap .menu-inner__elm h4 {
  font-size: 16px;
  background-color: #F0F0F0;
  padding: 8px 12px;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner__elm h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.section-course .menu-wrap .menu-inner__elm .menu-lists {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner__elm .menu-lists {
    margin-top: 32px;
  }
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block {
  padding-top: 16px;
  border-top: solid 1px #E1E1E1;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block {
    padding-top: 20px;
  }
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block + .menu-block {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block + .menu-block {
    margin-top: 20px;
  }
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block:last-of-type {
  padding-bottom: 24px;
  border-bottom: solid 1px #E1E1E1;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block:last-of-type {
    padding-bottom: 20px;
  }
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block .menu-comment {
  line-height: 1.5;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block .menu-comment {
    margin-top: 0;
  }
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block__main h3 {
  font-size: 16px;
  margin: 0;
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block__main .menu-price {
  font-size: 18px;
  font-weight: bold;
  color: #137EC5;
}
.section-course .menu-wrap .menu-inner__elm .menu-lists .menu-block__main .menu-comment {
  line-height: 1.35;
}

/*------------------
 voice
------------------*/
.section-voice .voice-lists .voice-card__thumb {
  width: 100px;
}
.section-voice .voice-lists .voice-card__col {
  padding-left: 12px;
  width: calc(100% - 100px);
}

/*------------------
 faq
------------------*/
.section-faq {
  padding-top: 0;
}
.section-faq .faq-wrap .faq-header span,
.section-faq .faq-wrap .faq-content span {
  display: inline-block;
  text-indent: 0;
  position: relative;
}
.section-faq .faq-wrap .faq-header {
  background-color: #fff;
  color: #137EC5;
  border-radius: 8px;
  padding: 16px 44px 16px 16px;
  margin: 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-header {
    padding: 20px 48px 20px 24px;
  }
}
.section-faq .faq-wrap .faq-header span {
  font-size: 16px;
  padding-left: 24px;
  font-weight: bold;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-header span {
    font-size: 18px;
    padding-left: 32px;
  }
}
.section-faq .faq-wrap .faq-header::before, .section-faq .faq-wrap .faq-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 16px;
  height: 2px;
  margin: auto;
  background: #137EC5;
}
.section-faq .faq-wrap .faq-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.section-faq .faq-wrap .faq-header:not(:first-of-type) {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-header:not(:first-of-type) {
    margin-top: 24px;
  }
}
.section-faq .faq-wrap .faq-header span::before {
  position: absolute;
  content: "Q.";
  top: 2px;
  left: 0;
  color: #137EC5;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-header span::before {
    font-size: 20px;
  }
}
.section-faq .faq-wrap .faq-header.active {
  padding-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.section-faq .faq-wrap .faq-header.active::after {
  transform: rotate(0deg);
}
.section-faq .faq-wrap .faq-content {
  display: none;
  padding: 8px 16px 12px;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #333;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-content {
    padding: 12px 24px 20px;
  }
}
.section-faq .faq-wrap .faq-content span {
  font-size: 14px;
}
@media (min-width: 768px) {
  .section-faq .faq-wrap .faq-content span {
    font-size: 16px;
  }
}

/*------------------
 access
------------------*/
.section-access .ggmap {
  position: relative;
  width: 100%;
  padding-top: 65%;
  height: 0;
}
@media (min-width: 768px) {
  .section-access .ggmap {
    padding-top: 40%;
  }
}
.section-access .ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-access .access-info dt {
  position: relative;
  color: #137EC5;
  width: 6.4rem;
  padding: 16px 0;
  border-top: solid 1px #eaeaea;
  line-height: 1.5;
  font-size: 14px;
}
@media (min-width: 768px) {
  .section-access .access-info dt {
    font-size: 16px;
    width: 10rem;
    padding: 20px 0;
  }
}
.section-access .access-info dt:last-of-type {
  border-bottom: solid 1px #eaeaea;
}
.section-access .access-info dt:last-of-type::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 64px;
  height: 1px;
  background-color: #137EC5;
}
@media (min-width: 768px) {
  .section-access .access-info dt:last-of-type::after {
    width: 80px;
  }
}
.section-access .access-info dt::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #137EC5;
}
.section-access .access-info dd {
  width: calc(100% - 6.4rem);
  padding: 16px 0;
  border-top: solid 1px #eaeaea;
  line-height: 1.5;
  font-size: 14px;
}
@media (min-width: 768px) {
  .section-access .access-info dd {
    width: calc(100% - 10rem);
    font-size: 16px;
    padding: 20px 0;
  }
}
.section-access .access-info dd:last-of-type {
  border-bottom: solid 1px #eaeaea;
}

/*------------------
 footer
------------------*/
.footer {
  background-color: #fcfcfc;
}
.footer .footer-inner {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .footer .footer-inner {
    padding: 64px 0;
  }
}
.footer .footer-inner__nav .footer-nav li::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #137EC5;
  border-radius: 50%;
  position: relative;
  top: -1px;
  margin-right: 8px;
}
.footer .footer-inner__nav .btn {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .footer .footer-inner__nav .btn {
    padding: 24px 0;
  }
}
.footer .footer-inner__nav .btn::before {
  font-size: 14px;
  width: 8px;
  height: 8px;
  right: 12px;
  padding: 4px 0;
}
@media (min-width: 768px) {
  .footer .footer-inner__nav .btn::before {
    width: 10px;
    height: 10px;
    right: 16px;
    padding: 5px 0;
  }
}

/*------------------
 fixed
------------------*/
.fixed-btn {
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: -1px;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .fixed-btn {
    padding: 12px;
  }
}

/*------------------
 animation
------------------*/
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
@media (min-width: 768px) {
  .fadein {
    transform: translateY(30px);
  }
}
.fadein.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}