@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 1s !important;
}

.anim--delay {
  animation-delay: 0.6s !important;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 1s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 1s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft {
  opacity: 0;
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 1s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight {
  opacity: 0;
}
.anim-fadeRight.onAnim {
  animation: fadeRight 1s ease 0s 1 alternate forwards;
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:-moz-placeholder-shown {
  color: #ccc;
}

:placeholder-shown {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
}

a {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

html {
  font-size: 14px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body {
  font-size: 16px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  line-height: 2;
  color: #262626;
  overscroll-behavior: none;
  letter-spacing: 0.1em;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}

button,
select {
  color: #000;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

.textRight {
  text-align: right;
}

@media all and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 1024px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 640px) {
  body {
    font-size: 3.7324vw;
  }
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.fz-small {
  font-size: 12px;
}
@media all and (max-width: 640px) {
  .fz-small {
    font-size: 3.1992vw;
  }
}

.colorBlue {
  color: #42A5FF;
}

.font-h2 {
  color: #42A5FF;
  font-size: 1.5em;
  font-weight: bold;
}
@media all and (max-width: 640px) {
  .font-h2 {
    font-size: 1.125em;
  }
}

.font-lead {
  font-size: 1.125em;
}
@media all and (max-width: 640px) {
  .font-lead {
    font-size: 0.875em;
  }
}

.font-caption {
  font-size: 0.75em;
}
@media all and (max-width: 640px) {
  .font-caption {
    font-size: 0.625em;
  }
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.mb60 {
  margin-bottom: 60px;
}
@media all and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 60px;
  }
}
@media all and (max-width: 640px) {
  .mb60 {
    margin-bottom: 10.664vw;
  }
}

.mb100 {
  margin-bottom: 100px;
}
@media all and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 60px;
  }
}
@media all and (max-width: 640px) {
  .mb100 {
    margin-bottom: 13.33vw;
  }
}

.mb160 {
  margin-bottom: 160px;
}
@media all and (max-width: 1024px) {
  .mb160 {
    margin-bottom: 100px;
  }
}
@media all and (max-width: 640px) {
  .mb160 {
    margin-bottom: 21.328vw;
  }
}

.pt160 {
  padding-top: 160px;
}
@media all and (max-width: 1024px) {
  .pt160 {
    padding-top: 100px;
  }
}
@media all and (max-width: 640px) {
  .pt160 {
    padding-top: 21.328vw;
  }
}

.pb160 {
  padding-bottom: 160px;
}
@media all and (max-width: 1024px) {
  .pb160 {
    padding-bottom: 100px;
  }
}
@media all and (max-width: 640px) {
  .pb160 {
    padding-bottom: 21.328vw;
  }
}

.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
}
.mainHeader__inner {
  padding: 0 30px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .mainHeader__inner {
    padding: 0 15px 0 20px;
    height: 60px;
  }
}
.mainHeader__right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media all and (max-width: 1024px) {
  .mainHeader__right {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #42A5FF;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.4s ease 0s, translate 0s ease 0.4s;
    translate: 0 110%;
  }
  .mainHeader__right.active {
    opacity: 1;
    translate: 0;
    transition: opacity 0.4s ease 0s, translate 0s ease 0s;
  }
}
.mainHeader__logo {
  max-width: 156px;
}
@media all and (max-width: 1024px) {
  .mainHeader__logo {
    flex-shrink: 0;
    max-width: 112px;
  }
}

.spBT {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: #42A5FF;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 20px;
  top: 18px;
  gap: 6px;
  cursor: pointer;
  z-index: 50;
}
@media all and (min-width: 1025px) {
  .spBT {
    display: none;
  }
}
.spBT .bar {
  width: 45%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease 0s;
}
.spBT .bar:hover {
  text-decoration: none;
}
.spBT.active .bar:nth-child(1) {
  rotate: 45deg;
  translate: 0 7px;
}
.spBT.active .bar:nth-child(2) {
  scale: 0 1;
}
.spBT.active .bar:nth-child(3) {
  rotate: -45deg;
  translate: 0 -7px;
}
@media all and (max-width: 640px) {
  .spBT {
    right: 10px;
    top: 6px;
    width: 35px;
    height: 35px;
  }
}

.gNav {
  letter-spacing: 0;
}
@media all and (max-width: 1280px) {
  .gNav {
    font-size: 15px;
  }
}
@media all and (max-width: 1024px) {
  .gNav {
    padding: 75px 25px;
    font-size: 16px;
  }
}
.gNav__list {
  display: flex;
  align-items: center;
  gap: 25px;
  font-weight: bold;
}
@media all and (max-width: 1280px) {
  .gNav__list {
    gap: 0.7em;
  }
}
@media all and (max-width: 1024px) {
  .gNav__list {
    flex-direction: column;
    gap: 0;
  }
}
@media all and (max-width: 1024px) {
  .gNav__item {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .gNav__item:first-child {
    border-top: 1px solid #fff;
  }
  .gNav__item--hascontact {
    border: none;
    margin-top: 40px;
  }
}
.gNav__link {
  color: #42A5FF;
  padding: 0.5em;
  line-height: 1.4;
  transition: all 0.3s ease 0s;
  position: relative;
  display: flex;
}
.gNav__link:hover {
  text-decoration: none;
}
.gNav__link:after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #42A5FF;
  transition: all 0.3s ease 0s;
  transform-origin: left;
  scale: 0 1;
}
.gNav__link:after:hover {
  text-decoration: none;
}
.gNav__link:hover:after {
  scale: 1;
}
@media all and (max-width: 1024px) {
  .gNav__link {
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 1em;
  }
  .gNav__link:after {
    display: none;
  }
}
.gNav__contactlink {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #42A5FF;
  padding: 0.75em 1.5em;
  border-radius: 3em;
  line-height: 1.4;
  border: 1px solid #42A5FF;
  transition: all 0.3s ease 0s;
}
.gNav__contactlink:hover {
  text-decoration: none;
}
.gNav__contactlink .ic {
  width: 28px;
  margin-right: 10px;
}
.gNav__contactlink .ic svg {
  display: block;
  width: 100%;
}
.gNav__contactlink .ic path {
  transition: all 0.3s ease 0s;
}
.gNav__contactlink .ic path:hover {
  text-decoration: none;
}
.gNav__contactlink:hover {
  background-color: #fff;
  color: #42A5FF;
}
.gNav__contactlink:hover path {
  fill: #42A5FF;
}
@media all and (max-width: 1024px) {
  .gNav__contactlink {
    background-color: #fff;
    color: #42A5FF;
  }
  .gNav__contactlink path {
    fill: #42A5FF;
  }
}

.mainContent {
  margin-top: 100px;
}
@media all and (max-width: 1024px) {
  .mainContent {
    margin-top: 60px;
  }
}

.barWrap .bar_tl:before {
  content: "";
  position: fixed;
  z-index: 10200;
  height: 5px;
  width: 100%;
  background-color: #42A5FF;
  top: 0;
  left: 0;
}
.barWrap .bar_tl:after {
  content: "";
  position: fixed;
  z-index: 10200;
  width: 5px;
  height: 100%;
  background-color: #42A5FF;
  bottom: 0;
  right: 0;
}
.barWrap .bar_br:before {
  content: "";
  position: fixed;
  z-index: 10200;
  height: 5px;
  width: 100%;
  background-color: #42A5FF;
  bottom: 0;
  right: 0;
}
.barWrap .bar_br:after {
  content: "";
  position: fixed;
  z-index: 10200;
  width: 5px;
  height: 100%;
  background-color: #42A5FF;
  top: 0;
  left: 0;
}

.inner {
  width: 100%;
  max-width: 1280px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}
.inner--large {
  max-width: 1266px;
}
@media all and (max-width: 1024px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media all and (max-width: 640px) {
  .inner {
    padding-left: 6.665vw;
    padding-right: 6.665vw;
  }
}

.commonBTWrap {
  max-width: 350px;
  width: 100%;
}
.commonBTWrap .commonBT {
  width: 100%;
}
@media all and (max-width: 640px) {
  .commonBTWrap {
    max-width: 100%;
  }
}

.commonBT {
  background-color: #42A5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  border: 1px solid #42A5FF;
  border-radius: 3em;
  padding: 0.3em;
  line-height: 1.6;
  font-size: 1.375em;
  font-weight: bold;
  min-height: 3.5em;
  transition: all 0.3s ease 0s;
}
.commonBT:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .commonBT {
    min-height: 3em;
  }
}
.commonBT:after {
  content: "";
  border: 0.8em solid transparent;
  border-top-width: 0.5em;
  border-bottom-width: 0.5em;
  border-left-color: #fff;
  position: absolute;
  top: 50%;
  right: 0.4em;
  translate: 0 -50%;
  transition: all 0.3s ease 0s;
}
.commonBT:after:hover {
  text-decoration: none;
}
.commonBT .ic {
  width: 1.8em;
  margin-right: 0.5em;
}
.commonBT .ic svg {
  display: block;
  width: 100%;
}
.commonBT .ic svg path {
  transition: all 0.3s ease 0s;
}
.commonBT .ic svg path:hover {
  text-decoration: none;
}
.commonBT:hover {
  background-color: #fff;
  color: #42A5FF;
}
.commonBT:hover:after {
  border-left-color: #42A5FF;
}
.commonBT:hover path {
  fill: #42A5FF;
}
.commonBT--white {
  background-color: #fff;
  color: #42A5FF;
  border-color: #fff;
}
.commonBT--white:after {
  border-left-color: #42A5FF;
}
.commonBT--white:hover {
  background-color: #42A5FF;
  color: #fff;
}
.commonBT--white:hover:after {
  border-left-color: #fff;
}
.commonBT--white:hover path {
  fill: #fff;
}

.commonHeading {
  font-size: 1.75em;
  color: #42A5FF;
  font-weight: bold;
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  line-height: 1.6;
}
.commonHeading:before {
  content: "";
  width: 0.3em;
  height: 2.25em;
  background-color: #42A5FF;
  margin-right: 0.7em;
}
@media all and (max-width: 640px) {
  .commonHeading {
    font-size: 1.5em;
    margin-bottom: 10.664vw;
  }
}

.commonHeading2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: bold;
  color: #42A5FF;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 1.5em;
}
@media all and (max-width: 640px) {
  .commonHeading2 {
    margin-bottom: 10.664vw;
  }
}
.commonHeading2:after {
  content: "";
  width: 5em;
  height: 3px;
  background-color: #42A5FF;
  margin-top: 0.5em;
}

.linkText {
  text-decoration: underline;
  color: #42A5FF;
}
.linkText:hover {
  text-decoration: none;
}

@media all and (max-width: 640px) {
  .sp-textLeft {
    text-align: left;
  }
}

.bg-blue {
  background-color: #EFF8FF;
}

.pageWrap {
  padding: 100px 0 150px;
}
@media all and (max-width: 640px) {
  .pageWrap {
    padding: 18.662vw 0 23.994vw;
  }
}

.commonBox {
  padding: 100px 60px;
  position: relative;
}
.commonBox > * {
  position: relative;
  z-index: 10;
}
.commonBox.pt60 {
  padding-top: 60px;
}
.commonBox.pb60 {
  padding-bottom: 60px;
}
.commonBox.p-small {
  padding: 46px 60px;
}
.commonBox:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.4s;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.16);
  opacity: 0;
}
.commonBox.onAnim:before {
  opacity: 1;
}
@media all and (max-width: 1024px) {
  .commonBox {
    padding: 80px 40px;
  }
  .commonBox.pt60 {
    padding-top: 60px;
  }
  .commonBox.pb60 {
    padding-bottom: 60px;
  }
  .commonBox.p-small {
    padding: 40px;
  }
}
@media all and (max-width: 640px) {
  .commonBox {
    padding: 15.996vw 7.998vw;
  }
  .commonBox.pt60 {
    padding-top: 10.664vw;
  }
  .commonBox.pb60 {
    padding-bottom: 10.664vw;
  }
  .commonBox.p-small {
    padding: 7.998vw 7.998vw;
  }
}

.top-firstView {
  padding-left: 70px;
}
.top-firstView__img {
  overflow: hidden;
  border-radius: 30px 0 0 30px;
}
@media all and (max-width: 640px) {
  .top-firstView__img {
    border-radius: 0;
  }
}
@media all and (max-width: 1024px) {
  .top-firstView {
    padding-left: 50px;
  }
}
@media all and (max-width: 640px) {
  .top-firstView {
    padding-left: 0;
  }
}

.topLead {
  text-align: center;
  padding: 100px 0;
}
@media all and (max-width: 640px) {
  .topLead {
    text-align: left;
    padding: 13.33vw 0;
  }
}
.topLead__main {
  margin-bottom: 50px;
}
@media all and (max-width: 640px) {
  .topLead__main {
    margin-bottom: 10.664vw;
    font-size: 3.999vw;
  }
}
.topLead__text {
  margin-bottom: 1em;
}

.topFeature {
  padding: 80px 0 100px;
}
@media all and (max-width: 640px) {
  .topFeature {
    padding: 21.328vw 0 26.66vw;
  }
}
.topFeature__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
@media all and (max-width: 640px) {
  .topFeature__heading {
    margin-bottom: 15.996vw;
  }
}
.topFeature__heading .ic {
  width: 62px;
  margin-bottom: 1em;
  transition: opacity 0.5s;
  opacity: 0;
}
@media all and (max-width: 640px) {
  .topFeature__heading .ic {
    width: 14.9296vw;
    margin-bottom: 0.5em;
  }
}
.topFeature__heading strong {
  font-weight: bold;
  font-size: 2em;
  position: relative;
  transition: all 0.5s;
  translate: 0 1em;
  opacity: 0;
}
.topFeature__heading strong:after {
  content: "";
  height: 2px;
  background-color: #42A5FF;
  width: 3.5em;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  transition: scale 0.5s 0.5s;
  scale: 0 1;
}
.topFeature__heading em {
  color: #42A5FF;
  font-size: 1.25em;
  margin-top: 0.4em;
  transition: opacity 0.5s 0.5s;
  opacity: 0;
}
.topFeature__heading.onAnim .ic {
  opacity: 2;
}
.topFeature__heading.onAnim strong {
  opacity: 1;
  translate: 0 0;
}
.topFeature__heading.onAnim strong:after {
  scale: 1;
}
.topFeature__heading.onAnim em {
  opacity: 1;
}
.topFeature__list {
  display: grid;
  gap: 50px 35px;
  grid-template-columns: 1fr 1fr;
}
@media all and (max-width: 640px) {
  .topFeature__list {
    grid-template-columns: 1fr;
    gap: 13.33vw;
  }
}
.topFeature__list__item {
  background-color: #fff;
  position: relative;
}
@media all and (min-width: 1025px) {
  .topFeature__list__item {
    padding-left: 35px;
  }
}
.topFeature__list__header {
  color: #fff;
  background-color: #42A5FF;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media all and (min-width: 1025px) {
  .topFeature__list__header {
    padding-top: 0.4em;
    position: absolute;
    font-size: 1.25em;
    line-height: 1;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
    writing-mode: vertical-rl;
  }
}
@media all and (max-width: 1024px) {
  .topFeature__list__header {
    padding-left: 0.4em;
  }
}
.topFeature__list__content {
  padding: 1.8em 1.6em;
}
.topFeature__list__heading {
  line-height: 1.6;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}
.topFeature__list__text strong {
  font-weight: bold;
  color: #ff9d17;
}

.courseList {
  margin: 15.996vw 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10.664vw;
}
@media all and (min-width: 641px) {
  .courseList {
    margin: 60px 0;
    gap: 40px;
  }
}
@media all and (min-width: 1025px) {
  .courseList {
    grid-template-columns: 1fr 1fr;
  }
}
.courseList__item {
  background-color: #EFF8FF;
  padding: 2.2em 2em;
}
@media all and (max-width: 640px) {
  .courseList__item {
    font-size: 0.875em;
    padding: 2em 1.5em;
  }
}
.courseList__name {
  color: #42A5FF;
  font-size: 1.375em;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 0.8em;
}
.courseList__name:before {
  content: "";
  width: 6px;
  height: 1.6em;
  background-color: #42A5FF;
  margin-right: 0.5em;
}
.courseList__info__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1em;
}
.courseList__info__row:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 640px) {
  .courseList__info__row {
    display: block;
  }
}
.courseList__info__dt {
  width: 4em;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  padding: 0.2em 0.3em;
  background-color: #42A5FF;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 1.4em;
}
@media all and (max-width: 640px) {
  .courseList__info__dt {
    margin-bottom: 0.4em;
  }
}
.courseList__info__dd {
  width: 100%;
}
.courseList__cost__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.4em;
  justify-content: space-between;
  width: 100%;
}
.courseList__cost__row:last-child {
  margin-bottom: 0;
}
.courseList__cost__dt {
  width: 6em;
  padding-right: 1em;
  position: relative;
}
.courseList__cost__dt:after {
  content: ":";
  position: absolute;
  right: 0;
}
.courseList__cost__dd {
  width: calc(100% - 7em);
}

.courseCaption {
  text-align: center;
}

.flowContent1 {
  max-width: 580px;
  margin: 80px auto;
}
@media all and (max-width: 640px) {
  .flowContent1 {
    max-width: 100%;
    max-width: 21.328vw 0;
  }
}
.flowContent1__box {
  margin-top: 70px;
  padding: 1.5em;
  background-color: #EFF8FF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media all and (max-width: 640px) {
  .flowContent1__box {
    margin-top: 13.33vw;
  }
}
.flowContent1__box__heading {
  font-size: 1.25em;
  font-weight: bold;
  color: #42A5FF;
  margin-bottom: 0.4em;
}
.flowContent1__box__schedule {
  margin-bottom: 1em;
}
.flowContent1__box__schedule .row {
  display: flex;
  gap: 1em;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125em;
}
.flowContent1__box__schedule .row dt {
  width: 4em;
}
.flowContent1__box__caption {
  font-size: 0.875em;
  letter-spacing: 0;
}

.flowContent2__heading {
  font-size: 1.125em;
  font-weight: bold;
  color: #42A5FF;
  margin-bottom: 2em;
  text-align: center;
}
.flowContent2__box {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3em;
}
@media all and (min-width: 1025px) {
  .flowContent2__box {
    grid-template-columns: 1fr 1fr;
  }
}
.flowContent2__box__item {
  border: 5px solid #42A5FF;
  padding: 2.2em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flowContent2__box__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #42A5FF;
  font-weight: bold;
  line-height: 1.6;
  font-size: 1.375em;
  margin-bottom: 2.4em;
}
.flowContent2__box__heading .ic {
  margin-right: 0.5em;
}
.flowContent2__box__heading .ic svg {
  display: block;
  width: 100%;
}
.flowContent2__box__heading .ic1 {
  width: 1.8em;
}
.flowContent2__box__heading .ic2 {
  width: 1.6em;
}
.flowContent2__box .commonBT {
  width: 90%;
  font-size: 1.3em;
}
@media all and (max-width: 1024px) {
  .flowContent2__box .commonBT {
    width: 100%;
    font-size: 1em;
  }
}
.flowContent2__box__number {
  font-weight: bold;
  line-height: 1;
  font-size: 2em;
  margin-bottom: 0.5em;
}
.flowContent2__box__caption {
  text-align: right;
}

.aboutStudy {
  max-width: 740px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media all and (max-width: 640px) {
  .aboutStudy {
    margin-top: 13.33vw;
    gap: 10.664vw;
  }
}
.aboutStudy .row {
  padding: 2em;
  text-align: center;
}
@media all and (max-width: 1024px) {
  .aboutStudy .row {
    text-align: left;
  }
}
.aboutStudy dt {
  font-weight: bold;
  font-size: 1.25em;
  color: #42A5FF;
  margin-bottom: 1em;
}

.greeting {
  max-width: 740px;
  font-family: serif;
  margin: 0 auto;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.06);
}
.greeting-text {
  float: left;
}
.greeting-photo {
  float: right;
  display: flex;
  align-items: baseline;
  flex-direction: row-reverse;
  font-size: 1.125em;
}
@media all and (max-width: 640px) {
  .greeting-photo {
    flex-direction: column;
    text-align: center;
    align-items: flex-end;
    width: 39.99vw;
    margin-left: auto;
    float: none;
    clear: both;
    margin-top: 7.998vw;
  }
}
.greeting-photo img {
  width: 175px;
  margin-left: 20px;
}
@media all and (max-width: 640px) {
  .greeting-photo img {
    margin-left: 0;
  }
}

.faqList {
  max-width: 766px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5em;
}
.faqList__item {
  border: 2px solid #42A5FF;
}
.faqList dt {
  padding: 0.7rem 2rem 1rem;
  background-color: #42A5FF;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
  font-size: 1.375em;
  display: flex;
  align-items: baseline;
}
@media all and (max-width: 640px) {
  .faqList dt {
    padding: 0.7rem 1rem 1rem;
  }
}
.faqList dt:before {
  content: "Q.";
  font-family: "montserrat", sans-serif;
  font-size: 1.8rem;
  margin-right: 0.4em;
}
.faqList dd {
  padding: 1rem 2rem 1.5rem;
  display: flex;
  align-items: baseline;
}
@media all and (max-width: 640px) {
  .faqList dd {
    padding: 1rem 1rem 1.5rem;
  }
}
.faqList dd:before {
  content: "A.";
  font-family: "montserrat", sans-serif;
  font-size: 1.8rem;
  margin-right: 0.4em;
  font-weight: bold;
  color: #42A5FF;
}

.formWrap {
  max-width: 826px;
  margin: 0 auto;
}
.formWrap__row {
  padding: 30px 0;
  border-bottom: 1px dotted #A0A0A0;
}
@media all and (max-width: 640px) {
  .formWrap__row {
    padding: 7.998vw 0;
  }
}
.formWrap__item {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .formWrap__item {
    display: block;
  }
}
.formWrap__label {
  line-height: 1.6;
  width: 210px;
  letter-spacing: 0.02em;
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .formWrap__label {
    width: 100%;
    margin-bottom: 1em;
  }
}
.formWrap__label .req_label {
  color: #f00;
  font-size: 0.75em;
}
.formWrap__parts {
  width: calc(100% - 240px);
}
@media all and (max-width: 1024px) {
  .formWrap__parts {
    width: 100%;
  }
}
.formWrap__caption {
  font-size: 0.75em;
  margin-bottom: 1em;
  padding: 1em 1.5em;
  background-color: #f5f5f5;
}
.formWrap__child dt {
  font-weight: bold;
  font-size: 0.875em;
  margin-bottom: 0.2em;
}
.formWrap__child__row {
  margin-bottom: 1.4em;
}
.formWrap__child__row:last-child {
  margin-bottom: 0;
}
.formWrap input[type=text],
.formWrap input[type=email],
.formWrap input[type=tel],
.formWrap textarea,
.formWrap select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0.75em 1.5em;
  border: 1px solid #bbb;
  border-radius: 6px;
  width: 100%;
  display: block;
}
@media all and (max-width: 640px) {
  .formWrap input[type=text],
  .formWrap input[type=email],
  .formWrap input[type=tel],
  .formWrap textarea,
  .formWrap select {
    font-size: 15px;
    border-radius: 2.666vw;
  }
}
.formWrap select {
  background-image: url(../images/common/select_arrow.svg);
  background-position: right 1.5em center;
  background-size: 14px;
  background-repeat: no-repeat;
  padding-right: 2.5em;
}
.formWrap textarea {
  padding: 1em 1.5em;
}
.formWrap textarea.short {
  height: 6.6em;
}
@media all and (max-width: 640px) {
  .formWrap textarea.short {
    height: 9em;
  }
}
.formWrap__btWrap {
  display: flex;
  justify-content: center;
  padding-top: 60px;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.formWrap__btWrap .commonBT {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  max-width: 350px;
}
.formWrap .wpcf7-not-valid-tip {
  color: #f00;
  font-weight: bold;
  text-align: right;
}
.formWrap .wpcf7-list-item {
  margin: 0;
}

.wpcf7-response-output {
  border: 0 !important;
  background-color: #efefef;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.5em !important;
}
@media all and (max-width: 640px) {
  .wpcf7-response-output {
    font-size: 3.1992vw;
  }
}

.confirm-hidden {
  display: none !important;
}

.footNav {
  background-color: #42A5FF;
  padding: 60px 0;
}
@media all and (max-width: 640px) {
  .footNav {
    padding: 15.996vw 0;
  }
}
.footNav__inner {
  display: flex;
  gap: 2em;
}
@media all and (max-width: 1024px) {
  .footNav__inner {
    gap: 4em;
    flex-direction: column;
  }
}
.footNav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  letter-spacing: 0.02em;
}
@media all and (min-width: 1025px) {
  .footNav__item {
    width: 50%;
  }
}
@media all and (max-width: 1024px) {
  .footNav__item:first-child {
    padding-bottom: 4em;
    border-bottom: 1px solid #fff;
  }
}
.footNav__text {
  text-align: center;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 1.2em;
}
@media all and (max-width: 640px) {
  .footNav__text {
    font-size: 1.125em;
    margin-bottom: 2em;
  }
}

.footAccess {
  padding: 100px 0;
}
@media all and (max-width: 640px) {
  .footAccess {
    padding: 21.328vw 0;
  }
}
.footAccess__inner {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .footAccess__inner {
    display: block;
    position: relative;
    padding-bottom: 21.328vw;
  }
}
.footAccess__main {
  width: 45%;
}
@media all and (max-width: 640px) {
  .footAccess__main {
    width: 100%;
    margin-bottom: 10.664vw;
  }
}
.footAccess__mapWrap {
  width: 50%;
}
.footAccess__mapWrap__in {
  padding-top: 70%;
  position: relative;
}
.footAccess__mapWrap__in iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 640px) {
  .footAccess__mapWrap {
    width: calc(100% + 13.30334vw);
    position: relative;
    left: -6.665vw;
  }
}
.footAccess__btWrap {
  max-width: 300px;
  margin-top: 40px;
}
@media all and (max-width: 640px) {
  .footAccess__btWrap {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 6.665vw;
  }
}
.footAccess__btWrap a {
  font-size: 1.125em;
}
.footAccess__btWrap a:after {
  display: none;
}
@media all and (max-width: 640px) {
  .footAccess__btWrap a {
    width: 58.652vw;
    margin: 0 auto;
  }
}

.mainFooter {
  border-top: 5px solid #42A5FF;
  padding: 80px 0;
  color: #666;
}
@media all and (max-width: 640px) {
  .mainFooter {
    padding: 21.328vw 0;
  }
}
.mainFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mainFooter__logo {
  max-width: 280px;
}
@media all and (max-width: 640px) {
  .mainFooter__logo {
    max-width: 53.32vw;
  }
}
.mainFooter__address {
  color: #666;
  margin-top: 2em;
  text-align: center;
}
.mainFooter__tel {
  display: flex;
  align-items: center;
  margin: 0.7em 0;
  font-size: 1.75em;
  font-weight: bold;
  color: #42A5FF;
}
.mainFooter__tel .ic {
  width: 1.2em;
  margin-right: 0.5em;
}
.mainFooter__tel .ic svg {
  display: block;
  width: 100%;
}
.mainFooter__telCaption {
  text-align: right;
  font-weight: bold;
  color: #42A5FF;
}