@charset "UTF-8";
/*********************************
	RESET
*********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list],
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button {
  margin: 0;
  padding: 0;
  padding-inline: 0;
}

/*********************************
	LAYOUT
*********************************/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

.inner {
  max-width: 1260px;
  padding: 100px 20px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 60px 20px;
  }
}

a {
  color: #003d85;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.m_font {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.sec_title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: #003d85;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .sec_title {
    margin-bottom: 40px;
  }
}
.sec_title .en {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  display: block;
}
.sec_title.white {
  color: #fff;
}

.light_bg {
  background: #eefbff;
}

.taiken_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  border: 5px solid #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: bold;
  align-items: center;
  padding: 10px 30px;
  margin: 0 auto;
  gap: 10px;
  background: linear-gradient(90deg, #eff404 0%, #f4bf04 100%);
  border-radius: 50px;
  position: relative;
}
.taiken_btn:before {
  content: "";
  background-image: url(../img/btn_pc.svg);
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .taiken_btn {
    text-align: center;
    color: #003d85;
  }
}

.header {
  overflow-x: hidden;
  position: relative;
}
.header__wrap {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .header__wrap {
    height: 60px;
  }
}
.header__wrap-left {
  flex-basis: auto;
  padding: 15px 20px;
}
@media screen and (max-width: 1024px) {
  .header__wrap-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    position: relative;
    padding: 0 20px;
  }
}
.header__wrap-left.show {
  text-shadow: 0 0 10px #000;
}
.header__wrap-right {
  flex-basis: auto;
  z-index: 888;
  padding: 15px 20px;
}
@media screen and (max-width: 1024px) {
  .header__wrap-right {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    background-image: url(../img/nav_bg.jpg);
    background-size: cover;
    z-index: 3;
    width: 100%;
    padding: 20px;
    height: 100%;
    transition: all 0.3s;
  }
  .header__wrap-right.show {
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .header__wrap-right .header__contact-tel {
    display: block;
    text-align: center;
  }
}
.header__logo-catch {
  font-size: clamp(1rem, 2vw, 1.3rem);
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 1360px) {
  .header__logo {
    max-width: 230px;
  }
}
.header__link {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1360px) {
  .header__link {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link {
    flex-direction: column;
    padding: 0 10px 20px;
  }
}
.header__link-menu {
  position: relative;
}
.header__link-menu:last-of-type::after {
  content: none;
}
.header__link-menu--link {
  font-size: 1.4rem;
  line-height: 2;
  color: #003d85;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .header__link-menu--link {
    color: #fff;
    display: block;
    font-size: 1.6rem;
  }
}
.header__link-menu--link.contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  background: linear-gradient(90deg, #eff404 0%, #f4bf04 100%);
  border-radius: 30px;
  position: relative;
  border: 3px solid #fff;
}
.header__link-menu--link.contact:before {
  content: "";
  background-image: url(../img/btn_pc.svg);
  width: 23px;
  height: 23px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .header__link-menu--link.contact {
    text-align: center;
    color: #003d85;
  }
}
.header__menubtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__menubtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
  }
  .header__menubtn .border {
    display: block;
    width: 40px;
    height: 3px;
    background: #04a9f4;
    transition: all 0.3s;
    position: relative;
  }
  .header__menubtn.show .border {
    transform: rotate(20deg);
    top: 5px;
  }
  .header__menubtn.show .border:last-of-type {
    transform: rotate(-20deg);
    top: -5px;
  }
}

.mv {
  background-image: url(../img/main_bg.jpg);
  background-size: cover;
  padding: 80px 0px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #eefbff 30%, #eefbff 100%);
}
@media screen and (max-width: 1024px) {
  .mv {
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    text-align: center;
  }
}
.mv__wrap {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .mv__wrap {
    flex-direction: column;
  }
}
.mv__wrap-text {
  position: absolute;
  top: 20%;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .mv__wrap-text {
    top: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .mv__wrap-text {
    top: 4%;
    left: 2%;
    text-align: left;
  }
}
.mv__wrap-text-title {
  margin-bottom: 10px;
}
.mv__wrap-text-title .wrap {
  display: inline-block;
  background: #fff;
  font-size: 5.5rem;
  font-weight: 700;
  color: #003d85;
  line-height: 1.5;
  padding: 0 0.5em;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .mv__wrap-text-title .wrap {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 480px) {
  .mv__wrap-text-title .wrap {
    font-size: 2.8rem;
  }
}
.mv__wrap-text-title .wrap:first-of-type {
  margin-bottom: 15px;
}
.mv__wrap-text-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #04a9f4;
  padding-bottom: 40px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .mv__wrap-text-subtitle {
    padding-bottom: 20px;
  }
}
.mv__wrap-text-lead {
  color: #fff;
  font-size: 1.6rem;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .mv__wrap-text-lead {
    padding-bottom: 20px;
  }
}
.mv__wrap-img {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 1360px) {
  .mv__wrap-img {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .mv__wrap-img {
    width: 100%;
  }
  .mv__wrap-img img {
    width: 100%;
  }
}
@media screen and (max-width: 1201px) {
  .mv__wrap-img .pc {
    display: none;
  }
}
.mv__wrap-img .fv_1200 {
  display: none;
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .mv__wrap-img .fv_1200 {
    display: block;
  }
}
.mv__wrap-img .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .mv__wrap-img .sp {
    display: block;
  }
}
.mv__wrap-point {
  position: absolute;
  bottom: -20%;
  right: 8%;
}
@media screen and (max-width: 1360px) {
  .mv__wrap-point {
    right: 0;
    left: 0;
    text-align: center;
    margin: auto;
  }
}
@media screen and (max-width: 1200px) {
  .mv__wrap-point {
    position: unset;
    width: 90%;
    margin: 0 auto;
  }
}

.about {
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
  background: url(../img/cck_bg_pc.png);
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .about {
    background: url(../img/cck_bg_sp.png);
  }
}
.about__wrap {
  display: flex;
  gap: 60px;
  position: relative;
  align-items: center;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .about__wrap {
    flex-direction: column;
  }
}
.about__wrap .sec_title {
  text-align: left;
}
.about__wrap-info {
  width: 50%;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .about__wrap-info {
    width: 100%;
  }
}
.about__wrap-info-catch {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  font-weight: 700;
}
.about__wrap-img {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .about__wrap-img {
    width: 90%;
    margin: 0 auto;
  }
}

.skill {
  background: #ecf8ff;
}
.skill__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .skill__list {
    flex-wrap: wrap;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 480px) {
  .skill__list {
    flex-direction: column;
    gap: 40px;
  }
}
.skill__list-item {
  width: calc(33.3333333333% - 27px);
  background: #fff;
  box-shadow: 0 0 10px #eee;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .skill__list-item {
    width: calc(50% - 27px);
  }
}
@media screen and (max-width: 480px) {
  .skill__list-item {
    width: 100%;
    padding: 30px 20px;
  }
}
.skill__list-title {
  text-align: center;
  margin-bottom: 20px;
}
.skill__list-title--tag {
  font-size: clamp(1.8rem, 4vw, 1.8rem);
  display: block;
  color: #003d85;
  font-weight: 700;
  line-height: 2;
}
.skill__list-title--tag:before {
  content: "#";
  color: #04a9f4;
}
.skill__list-title--label {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  background: #1e7bd1;
  color: #fff;
  padding: 0 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 5px;
}
.skill__list-img {
  text-align: center;
}
.skill__contact {
  text-align: center;
}
.skill__contact-catch {
  font-size: clamp(1.8rem, 4vw, 2rem);
  line-height: 2;
  margin-bottom: 20px;
}
.skill__contact-catch span {
  font-size: clamp(2.3rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.skill__contact-catch span:before, .skill__contact-catch span::after {
  position: relative;
  display: inline-block;
  content: "";
  background: #333;
  width: 2px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.skill__contact-catch span:before {
  transform: rotate(-30deg);
}
.skill__contact-catch span:after {
  transform: rotate(30deg);
}

.company__about {
  background: #f4f7fa;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .company__about {
    flex-direction: column;
    padding: 40px 20px;
  }
}
.company__about:before {
  content: url(../img/company_pixel01.png);
  position: absolute;
  top: -160px;
  left: 40px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .company__about:before {
    content: none;
  }
}
.company__about::after {
  content: url(../img/company_pixel02.png);
  position: absolute;
  top: -110px;
  right: -40px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .company__about::after {
    content: none;
  }
}
.company__about-info-title {
  color: #003d85;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .company__about-info-title {
    text-align: center;
  }
}
.company__about-info-title span {
  font-size: clamp(1.6rem, 4vw, 2rem);
  display: block;
}
.company__about-info-lead {
  margin-bottom: 1em;
}
.company__about-info-lead span {
  font-weight: bold;
  display: block;
}
.company__future {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .company__future {
    flex-direction: column;
  }
}
.company__future:before {
  content: url(../img/company_pixel03.png);
  position: absolute;
  top: -60px;
  right: 110px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .company__future:before {
    content: none;
  }
}
.company__service-title {
  text-align: center;
  position: relative;
  color: #003d85;
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  margin-bottom: 30px;
}
.company__service-title span {
  display: inline-block;
  padding: 10px;
  background: #fff;
  position: relative;
  z-index: 2;
  font-weight: bold;
}
.company__service-title:before {
  content: "";
  width: 100%;
  border: 1px dashed #003d85;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.company__service-list {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .company__service-list {
    flex-direction: column;
  }
}
.company__service-list-item {
  width: calc(33.3333333333% - 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .company__service-list-item {
    width: 94%;
    margin: 0 auto;
  }
}
.company__service-list-item--label {
  font-size: 1.5rem;
  position: absolute;
  top: -20px;
  left: -20px;
  background: #003d85;
  color: #fff;
  text-align: center;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-weight: 600;
  border-radius: 50px;
}
.company__service-list-item--img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.company__service-list-item--title {
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #003d85;
}

.courses__title {
  background: #1e7bd1;
  padding: 20px 0;
  position: relative;
}
.courses__title:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #1e7bd1;
  border-bottom: 0;
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 480px) {
  .courses__title:after {
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
    border-top: 20px solid #1e7bd1;
    bottom: -20px;
  }
}
.courses__title .sec_title {
  margin-bottom: 0;
}
.courses__box {
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #faa31d;
  background: #fff;
  margin-bottom: 30px;
}
.courses__box.un {
  border-color: #3f5575;
}
.courses__box-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  padding: 5px;
  background: #faa31d;
  font-weight: 700;
}
.courses__box-title.un {
  background: #3f5575;
}
.courses__box-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  .courses__box-info {
    flex-direction: column;
    padding: 20px 15px;
  }
}
.courses__box-info-img {
  width: 300px;
}
.courses__box-info-wrap {
  flex: 1;
}
.courses__box-info-wrap--catch {
  background: #ffefd7;
  padding: 10px;
  font-weight: 700;
  font-size: 1.6rem;
  width: 100%;
  margin-bottom: 20px;
}
.courses__box-info-wrap--catch.un {
  background: #edf0f5;
}
.courses__box-info-wrap--type {
  margin-bottom: 20px;
}
.courses__box-info-wrap--type span {
  background: #faa31d;
  color: #fff;
  text-align: center;
  padding: 4px 15px;
  border-radius: 10px;
  margin-right: 10px;
}
.courses__box-info-wrap--type.un span {
  background: #3f5575;
}
.courses__box-info-wrap--point-item {
  position: relative;
  padding-left: 1.6em;
}
.courses__box-info-wrap--point-item:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1em;
  color: #f4bf04;
}
.courses__box-info-wrap--point-item.un:before {
  color: #3f5575;
}

.prices {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f1f5fb calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f1f5fb calc(100% - 1px));
  background-color: #fff;
  background-size: 23px 23px;
}
.prices .inner {
  max-width: 860px;
}
.prices__table {
  width: 100%;
  margin: 0 auto 10px;
  border-collapse: separate;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  text-align: center;
}
.prices__table th,
.prices__table td {
  padding: 15px;
}
.prices__table th.sc {
  background: #f4bf04;
  color: #fff;
}
.prices__table th.un {
  background: #3f5575;
  color: #fff;
}
.prices__table .title {
  background: #eaeff3;
}
.prices__table .price {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.prices__table .price.sc {
  background: #ffefd7;
}
.prices__table .price.un {
  background: #ebeff6;
}
.prices__caption {
  text-align: right;
  margin-bottom: 20px;
}
.prices__pay {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 3px solid #003d85;
  border-radius: 5px;
  overflow: hidden;
  font-size: 1.8rem;
  font-weight: 700;
}
.prices__pay-title {
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 224px;
  background: #003d85;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .prices__pay-title {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.trial {
  overflow: hidden;
  background: url(../img/cck_bg_pc.png);
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .trial {
    background: url(../img/cck_bg_sp.png);
  }
}
.trial__box {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .trial__box {
    padding: 30px 20px;
  }
}
.trial__box-intro {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .trial__box-intro {
    flex-direction: column;
  }
}
.trial__box-intro-img {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .trial__box-intro-img {
    order: 2;
    margin-top: -60px;
  }
}
.trial__box-intro-worry {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #003d85;
  font-weight: 700;
  margin-left: -40px;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .trial__box-intro-worry {
    margin: 0;
    padding-bottom: 60px;
    order: 1;
  }
}
@media screen and (max-width: 1024px) {
  .trial__box-intro-lesson {
    order: 3;
  }
}
@media screen and (max-width: 1024px) {
  .trial__box-intro-lesson--catch {
    text-align: center;
  }
}
.trial__box-intro-lesson--catch span {
  color: #003d85;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 10px;
  background: rgb(198, 237, 255);
  background: linear-gradient(0deg, rgb(198, 237, 255) 0%, rgb(198, 237, 255) 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
}
.trial__box-info {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 30px 0;
}
@media screen and (max-width: 1024px) {
  .trial__box-info {
    flex-direction: column;
    text-align: center;
  }
}
.trial__box-info.tp {
  border-bottom: 1px dashed #003d85;
}
.trial__box-info--title {
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003d85;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .trial__box-info--title {
    width: 100%;
    max-width: 100%;
  }
}
.trial__box-info--detail {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.trial__box-info--detail span {
  font-size: 3rem;
}

.faq {
  background: #f6f6f6;
}
.faq__wrap {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.faq__wrap-question {
  background: #1e7bd1;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1.4;
}
.faq__wrap-question-mark {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 45px;
  text-align: center;
  background: #fff;
  color: #1e7bd1;
  font-size: 2.4rem;
}
@media screen and (max-width: 480px) {
  .faq__wrap-question-mark {
    width: 40px;
    height: 40px;
    line-height: 35px;
  }
}
.faq__wrap-question-lead {
  flex: 1;
}
.faq__wrap-answer {
  padding: 30px 20px;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .faq__wrap-answer {
    padding: 20px 15px;
  }
}

.classes__box {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .classes__box {
    flex-direction: column;
  }
}
.classes__box-room {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media screen and (max-width: 1024px) {
  .classes__box-room {
    justify-content: center;
  }
  .classes__box-room-img {
    margin-bottom: 20px;
  }
  .classes__box-room--info-img {
    max-width: 200px;
  }
}
.classes__box-room--title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #003d85;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.classes__box-room--adrs-item {
  position: relative;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .classes__box-room--adrs-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.classes__box-room--adrs-item .title {
  background: #003d85;
  color: #fff;
  border-radius: 50px;
  width: 70px;
  text-align: center;
  font-size: 1.4rem;
}
.classes__box-tel {
  border-top: 1px dashed #003d85;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .classes__box-tel {
    text-align: center;
  }
}
.classes__box-tel--num {
  color: #003d85;
  font-size: clamp(3.2rem, 4vw, 4.4rem);
  line-height: 1.2;
  font-weight: 700;
  position: relative;
}
.classes__box-tel--num::before {
  content: "";
  background-image: url(../img/contact_tel.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (max-width: 1024px) {
  .classes__box-tel--time {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.classes__box-mail {
  color: #003d85;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  position: relative;
  padding-left: 30px;
}
.classes__box-mail:before {
  content: "";
  background-image: url(../img/contact_mail.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.classes__box-map {
  width: 100%;
  max-width: 460px;
}
@media screen and (max-width: 1024px) {
  .classes__box-map {
    max-width: 100%;
    height: 250px;
  }
}

.sns__box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 1024px) {
  .sns__box {
    padding: 20px;
  }
}
.sns__box-link {
  display: block;
  margin: 0 auto;
  color: #fff;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(90deg, #ff8e01 0%, #fa0e95 37.97%, #fa0e95 67.54%, #a812b2 100%);
  border-radius: 35px;
}
.sns__box-link i {
  padding-left: 10px;
}
.sns__box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.sns__box-list-item {
  position: relative;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 480px) {
  .sns__box-list-item {
    width: calc(50% - 10px);
  }
  .sns__box-list-item:last-of-type {
    display: none;
  }
}
.sns__box-list-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sns__box-list-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sns__box-list-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact {
  background: linear-gradient(90deg, #126ec2 0%, #19b2f7 100%);
}
.contact__box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .contact__box {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
}
.contact__box-title {
  width: 100%;
  text-align: center;
}
.contact__box-tel--num {
  color: #003d85;
  font-size: clamp(3rem, 4vw, 4.4rem);
  font-weight: 700;
  display: block;
  line-height: 1.2;
  position: relative;
}
.contact__box-tel--num::before {
  content: "";
  background-image: url(../img/contact_tel.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  display: inline-block;
}
.contact__box-mail--line {
  background: #00b900;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 365px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .contact__box-mail--line {
    margin-bottom: 20px;
  }
}
.contact__box-mail--link {
  color: #003d85;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  position: relative;
  padding-left: 30px;
}
.contact__box-mail--link::before {
  content: "";
  background-image: url(../img/contact_mail.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  background: #003d85;
  color: #fff;
  padding: 50px 20px 40px;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__wrap {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
  .footer__wrap {
    flex-direction: column;
    align-items: center;
  }
}
.footer__menu-list {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.footer__menu-list-title {
  font-size: 1.4rem;
}
.footer__menu-list--item a {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  text-decoration: none;
  color: #fff !important;
}
.footer__menu-list.menu2 li:first-of-type {
  border-right: 1px solid #fff;
  padding-right: 30px;
}
.footer__copy {
  font-size: 1.1rem;
  text-align: center;
}

.under_page {
  background: #eefbff;
  padding: 100px 0 0;
}
@media screen and (max-width: 480px) {
  .under_page {
    padding: 80px 0 0;
  }
}

.taiken_form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .taiken_form {
    padding: 30px 15px;
  }
}
.taiken_form-intro {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .taiken_form-intro {
    text-align: left;
  }
}
.taiken_form-title {
  background: #0062bc;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .taiken_form-title {
    text-align: center;
  }
}
.taiken_form-img {
  display: block;
  margin: 0 auto;
}
.taiken_form-wrap {
  margin-bottom: 50px;
}
.taiken_form-wrap .radio {
  width: 100%;
  display: block;
}
.taiken_form-input {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .taiken_form-input {
    flex-direction: column;
    gap: 5px;
  }
}
.taiken_form-input--title {
  width: 25%;
}
@media screen and (max-width: 480px) {
  .taiken_form-input--title {
    width: 100%;
  }
}
.taiken_form-input--title .en {
  font-size: 1.2rem;
  padding: 2px 10px;
  border-radius: 50px;
  background: #f4bf04;
  margin-left: 10px;
  font-weight: 700;
}
.taiken_form-input--detail {
  flex: 1;
}
.taiken_form-input--detail input,
.taiken_form-input--detail textarea,
.taiken_form-input--detail select {
  width: 100%;
  border: 1px solid #c7c7c7;
  padding: 5px;
}
.taiken_form-caution {
  margin-bottom: 40px;
}
.taiken_form-pp {
  text-align: center;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .taiken_form-pp {
    text-align: left;
  }
}
.taiken_form-pp--btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  font-size: clamp(1.7rem, 4vw, 1.8rem);
  font-weight: bold;
  align-items: center;
  padding: 10px 30px;
  margin: 0 auto;
  gap: 10px;
  background: linear-gradient(90deg, #eff404 0%, #f4bf04 100%);
  border-radius: 50px;
  position: relative;
  border: 0;
  color: #003d85;
}
.taiken_form-pp--btn:hover {
  cursor: pointer;
}
.taiken_form-pp a {
  text-decoration: underline;
  color: #333;
}

.kiyaku_wrap {
  padding: 40px 30px;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .kiyaku_wrap {
    padding: 20px 15px;
  }
}
.kiyaku_wrap:first-of-type {
  margin-bottom: 50px;
}
.kiyaku_wrap .sec_title {
  font-size: clamp(2.5rem, 4vw, 3rem);
}
@media screen and (max-width: 480px) {
  .kiyaku_wrap .sec_title {
    margin-bottom: 15px;
  }
}
.kiyaku_wrap-intro {
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .kiyaku_wrap-intro {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.kiyaku_wrap-title {
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 480px) {
  .kiyaku_wrap-title {
    font-size: 1.5rem;
  }
}
.kiyaku_wrap-list {
  margin: 0 0 25px 1.5em;
  list-style: decimal;
}
.kiyaku_wrap-list-item > p {
  margin-top: 1em;
}
@media screen and (max-width: 480px) {
  .kiyaku_wrap-list {
    font-size: 1.5rem;
  }
}

.pc_hide {
  display: none !important;
}

@media screen and (max-width: 480px) {
  .pc_hide {
    display: block !important;
  }
  .sp_hide {
    display: none !important;
  }
}
.taiken_form-input--title {
  display: flex;
  justify-content: space-between;
}
.taiken_form_time {
  justify-content: space-between;
}
.taiken_form_seat {
  text-align: right;
}
.taiken_form-input--title .en {
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (max-width: 480px) {
  .taiken_form_time {
    flex-direction: row;
  }
  .taiken_form_seat {
    width: 130px;
  }
}
/*********************************
	20241226授業時間追加
*********************************/
.date {
  background: #f6f6f6;
}
.date__wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.date__box {
  display: flex;
  align-items: stretch;
  margin: 0 auto 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.date__info-week {
  display: flex;
  align-items: center;
  background: #1e7bd1;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px 0 0 5px;
  font-size: clamp(1.5rem, 1.3rem + 0.67vw, 1.8rem);
}
.date__info-time {
  position: relative;
  background: #fff;
  padding: 15px 100px 15px 30px;
  border-radius: 0 5px 5px 0;
  font-size: clamp(2rem, 1.667rem + 1.11vw, 2.5rem);
  font-weight: bold;
}
.date__info-minute {
  font-size: 15px;
  font-weight: normal;
}
.date__info-illust {
  position: absolute;
  max-width: 90px;
  width: 100%;
  right: 5px;
  bottom: 0;
}

.mv {
  padding: 97px 0px 60px;
}

.classes__box-tel {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1024px) {
  .classes__box-tel {
    gap: 0;
    flex-direction: column;
  }
  .mv {
    padding: 60px 0px 30px;
  }
  .company__service-list-item {
    max-width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .date__info-week {
    padding: 15px;
  }
  .date__info-time {
    padding: 15px 80px 15px 15px;
  }
  .date__info-minute {
    display: block;
    margin-top: -5px;
  }
  .date__info-illust {
    max-width: 70px;
  }
  .company__service-list-item {
    max-width: unset;
  }
}/*# sourceMappingURL=common.css.map */