@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP";
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.note-show {
  display: none;
}
@media (max-width: 1280px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1280px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (max-width: 767px) {
  .sp-show {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  width: 100%;
  transition: all 0.4s;
}
@media (max-width: 1024px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
header.active {
  background-color: rgba(0, 0, 0, 0.25);
}
header .header-inner {
  display: flex;
  height: 80px;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .logo {
  width: 78px;
  height: auto;
}
header .header-inner .logo img {
  width: 100%;
}
header .header-inner .burger {
  width: 20px;
  background-color: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
  cursor: pointer;
}
@media (max-width: 1024px) {
  header .header-inner .burger {
    display: flex;
  }
}
header .header-inner .burger span {
  width: 100%;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s;
}
header .header-inner .burger span.sp2 {
  margin-top: 4px;
  margin-bottom: 4px;
}
header .header-inner .burger.active span.sp1 {
  transform: rotate(30deg);
}
header .header-inner .burger.active span.sp2 {
  margin-top: -1.5px;
  margin-bottom: -1.5px;
  opacity: 0;
}
header .header-inner .burger.active span.sp3 {
  transform: rotate(-30deg);
}
header .header-inner .header-right {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  header .header-inner .header-right {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    right: -101%;
    top: 0;
    flex-direction: column;
    transition: all 0.4s;
  }
  header .header-inner .header-right.active {
    right: 0;
  }
}
header .header-inner ul {
  display: flex;
  margin-right: 85px;
}
@media (max-width: 1280px) {
  header .header-inner ul {
    margin-right: 20px;
  }
}
@media (max-width: 1024px) {
  header .header-inner ul {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    padding-top: 100px;
  }
}
header .header-inner ul li {
  margin-right: 40px;
  font-size: 15px;
}
header .header-inner ul li:last-child {
  margin-right: 0;
}
header .header-inner ul li a {
  color: white;
  font-weight: bold;
}
@media (max-width: 1280px) {
  header .header-inner ul li {
    margin-right: 15px;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  header .header-inner ul li {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
header .header-inner .btn {
  line-height: 50px;
  display: block;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  width: 246px;
  background-color: #FDDB00;
  border: 1px solid #fdd800;
  color: #1e1e1e;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  header .header-inner .btn {
    display: none;
  }
}

.fv {
  width: 100%;
  position: relative;
}
.fv .btn {
  position: absolute;
  bottom: 20.8vw;
  right: 2.9333333333vw;
  z-index: 10;
  width: 51.7333333333vw;
  line-height: 13.3333333333vw;
  background-color: #fdd800;
  text-align: center;
  color: black;
  font-size: 3.4666666667vw;
  font-weight: bold;
  border-radius: 4px;
}
.fv .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 45.8333333333vw;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .fv .swiper .swiper-wrapper .swiper-slide img {
    height: 176vw;
  }
}
.fv .swiper .swiper-buttons {
  width: 56px;
  height: 56px;
  background-color: #E5E6EA;
  border-radius: 50%;
}
.fv .swiper .swiper-buttons::after {
  display: none;
}
@media (max-width: 767px) {
  .fv .swiper .swiper-buttons {
    display: none;
  }
}
.fv .swiper .swiper-button-prev {
  left: 48px;
}
.fv .swiper .swiper-button-prev img {
  position: relative;
  left: -2px;
}
.fv .swiper .swiper-button-next {
  right: 48px;
}
.fv .swiper .swiper-button-next img {
  position: relative;
  right: -2px;
}

.topics {
  padding-left: 40px;
  padding-right: 40px;
  margin-top: -66px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .topics {
    margin-top: -42px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 56px;
  }
}
.topics .section-inner {
  display: flex;
  margin: auto;
  max-width: 1130px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.25);
  padding-left: 64px;
  padding-right: 48px;
  padding-top: 64px;
  padding-bottom: 74px;
}
@media (max-width: 767px) {
  .topics .section-inner {
    flex-direction: column;
    padding-top: 44px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 42px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  }
}
.topics .section-inner .left {
  padding-right: 77px;
}
.topics .section-inner .left h2 {
  font-size: 40px;
  font-weight: bold;
  font-family: "Inter";
}
@media (max-width: 767px) {
  .topics .section-inner .left {
    padding-right: unset;
  }
  .topics .section-inner .left h2 {
    text-align: center;
    font-size: 24px;
  }
}
.topics .section-inner .right ul {
  padding-top: 24px;
}
@media (max-width: 767px) {
  .topics .section-inner .right ul {
    padding-top: 22px;
  }
}
.topics .section-inner .right ul li {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5em;
}
.topics .section-inner .right ul li a {
  color: #1e1e1e;
}
.topics .section-inner .right ul li:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .topics .section-inner .right ul li {
    border-bottom: none;
    font-size: 14px;
    padding-bottom: 11px;
    margin-bottom: 11px;
  }
  .topics .section-inner .right ul li:nth-child(3) {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .topics .section-inner .right ul li:nth-child(n+4) {
    display: none;
  }
}

.pl40 {
  padding-left: 40px;
}
@media (max-width: 767px) {
  .pl40 {
    padding-left: 30px;
  }
}

.pr40 {
  padding-right: 40px;
}
@media (max-width: 767px) {
  .pr40 {
    padding-right: 30px;
  }
}

.inter {
  font-family: "Inter";
  font-weight: bold;
}

.sp-event {
  padding-top: 70px;
}
@media (max-width: 767px) {
  .sp-event {
    padding-top: 0;
  }
}
.sp-event .section-inner {
  max-width: 1360px;
  margin: auto;
  display: flex;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .sp-event .section-inner {
    flex-direction: column;
    padding-bottom: 80px;
  }
}
.sp-event .section-inner .left {
  width: 440px;
}
.sp-event .section-inner .left h2 {
  font-weight: bold;
  font-size: 96px;
  font-weight: bold;
  margin-bottom: 85px;
}
.sp-event .section-inner .left img {
  width: 100%;
}
@media (max-width: 1280px) {
  .sp-event .section-inner .left {
    width: 300px;
  }
  .sp-event .section-inner .left h2 {
    font-size: 70px;
  }
}
@media (max-width: 1024px) {
  .sp-event .section-inner .left h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .sp-event .section-inner .left {
    width: auto;
  }
  .sp-event .section-inner .left h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.sp-event .section-inner .right {
  padding-right: 110px;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 440px);
}
@media (max-width: 1280px) {
  .sp-event .section-inner .right {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1340px) {
  .sp-event .section-inner .right {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .sp-event .section-inner .right {
    width: auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 27.5px;
  }
}
.sp-event .section-inner .right .right-top h3 {
  font-size: 50px;
  font-family: "Zen Old Mincho";
  font-weight: bold;
  color: #1e1e1e;
  line-height: 1.26em;
  margin-bottom: 16px;
}
@media (max-width: 1280px) {
  .sp-event .section-inner .right .right-top h3 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .sp-event .section-inner .right .right-top h3 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .sp-event .section-inner .right .right-top h3 {
    font-size: 5.8666666667vw;
    margin-bottom: 20px;
  }
}
.sp-event .section-inner .right .right-top p {
  color: #1e1e1e;
  line-height: 1.4em;
  font-size: 19px;
}
@media (max-width: 1280px) {
  .sp-event .section-inner .right .right-top p {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .sp-event .section-inner .right .right-top p {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.sp-event .section-inner .right .events h6 {
  font-size: 15px;
  color: #1e1e1e;
  line-height: 1.5em;
  margin-bottom: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .sp-event .section-inner .right .events h6 {
    margin-bottom: 24px;
  }
}
.sp-event .section-inner .right .events ul li {
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .sp-event .section-inner .right .events ul li {
    margin-bottom: 24px;
  }
}
.sp-event .section-inner .right .events ul li a {
  display: block;
  color: #1e1e1e;
  font-weight: bold;
  line-height: 1.5em;
  padding-bottom: 16px;
  position: relative;
  padding-right: 50px;
}
.sp-event .section-inner .right .events ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  width: 40px;
  height: 40px;
  background-image: url(../img/yellow-arrow.svg);
}
@media (max-width: 767px) {
  .sp-event .section-inner .right .events ul li a::after {
    top: calc(50% - 30px);
    bottom: unset;
  }
}
@media (max-width: 767px) {
  .sp-event .section-inner .right .events ul li a {
    padding-bottom: 24px;
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .sp-event .section-inner .right .events ul li a .time {
    display: block;
  }
}
.sp-event .section-inner .right .events ul li:last-child {
  margin-bottom: 0;
}

.zen {
  font-family: "Zen Old Mincho";
  font-weight: bold;
}

.school .section-inner {
  max-width: 1360px;
  margin: auto;
}
.school .section-inner > h2 {
  font-size: 72px;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 56px;
  position: relative;
}
@media (max-width: 767px) {
  .school .section-inner > h2 {
    font-size: 36px;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
}
.school .section-inner > h2::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #1e1e1e;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .school .section-inner > h2::after {
    box-shadow: unset;
    width: calc(100% + 30px);
  }
}
.school .section-inner .flex1 {
  display: flex;
  align-items: flex-end;
  margin-bottom: 190px;
}
@media (max-width: 767px) {
  .school .section-inner .flex1 {
    flex-direction: column;
    margin-bottom: 44px;
  }
}
.school .section-inner .flex1 .left {
  width: 51%;
  padding-right: 115px;
}
@media (max-width: 1280px) {
  .school .section-inner .flex1 .left {
    padding-right: 30px;
  }
}
@media (max-width: 1024px) {
  .school .section-inner .flex1 .left {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .school .section-inner .flex1 .left {
    width: 100%;
    padding-right: unset;
    margin-bottom: 40px;
  }
}
.school .section-inner .flex1 .left p {
  font-size: 19px;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .school .section-inner .flex1 .left p {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.school .section-inner .flex1 .left ul li {
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(31, 31, 31, 0.5);
}
.school .section-inner .flex1 .left ul li:first-child {
  border-top: 1px solid rgba(31, 31, 31, 0.5);
}
@media (max-width: 1024px) {
  .school .section-inner .flex1 .left ul li {
    align-items: flex-start;
    padding-top: 14px;
    height: auto;
    padding-bottom: 12px;
  }
}
.school .section-inner .flex1 .left ul li .btn-wrapper {
  width: 170px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .school .section-inner .flex1 .left ul li .btn-wrapper {
    width: 111px;
  }
}
.school .section-inner .flex1 .left ul li .btn {
  display: inline-block;
  line-height: 24px;
  padding-left: 13px;
  padding-right: 13px;
  background-color: #fdd800;
  text-align: center;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}
.school .section-inner .flex1 .left ul li .txt-a {
  color: #1e1e1e;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5em;
}
.school .section-inner .flex1 .right {
  width: 49%;
}
.school .section-inner .flex1 .right img {
  width: 100%;
}
@media (max-width: 767px) {
  .school .section-inner .flex1 .right {
    width: 100%;
  }
}
.school .section-inner .flex2 {
  display: flex;
  padding-bottom: 190px;
}
@media (max-width: 767px) {
  .school .section-inner .flex2 {
    flex-direction: column-reverse;
    padding-bottom: 100px;
  }
}
.school .section-inner .flex2 .btn {
  width: 250px;
  text-align: center;
  line-height: 67px;
  border-radius: 99px;
  background-color: #333;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .school .section-inner .flex2 .btn:not(.sp-show) {
    display: block;
  }
}
.school .section-inner .flex2 .btn span {
  color: white;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .school .section-inner .flex2 .btn {
    margin: auto;
    margin-top: 45px;
  }
  .school .section-inner .flex2 .btn.sp-show {
    display: none;
  }
}
.school .section-inner .flex2 .left {
  width: 440px;
}
.school .section-inner .flex2 .left img {
  width: 100%;
}
@media (max-width: 1280px) {
  .school .section-inner .flex2 .left {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .school .section-inner .flex2 .left {
    width: 100%;
  }
}
.school .section-inner .flex2 .right {
  padding-left: 50px;
  padding-top: 94px;
  width: calc(100% - 440px);
}
@media (max-width: 1280px) {
  .school .section-inner .flex2 .right {
    width: calc(100% - 300px);
    padding-top: 30px;
  }
}
@media (max-width: 1024px) {
  .school .section-inner .flex2 .right {
    width: 57.73%;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .school .section-inner .flex2 .right {
    width: 100%;
    padding-top: unset;
    padding-left: unset;
    max-width: unset;
  }
}
.school .section-inner .flex2 .right h2 {
  font-size: 64px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .school .section-inner .flex2 .right h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.school .section-inner .flex2 .right p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.8em;
  margin-bottom: 75px;
}
@media (max-width: 767px) {
  .school .section-inner .flex2 .right p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.aeon {
  padding-bottom: 130px;
}
@media (max-width: 767px) {
  .aeon {
    padding-bottom: 100px;
  }
}
.aeon .section-inner {
  max-width: 1360px;
  margin: auto;
}
.aeon .section-inner .flex1 {
  display: flex;
}
@media (max-width: 767px) {
  .aeon .section-inner .flex1 {
    flex-direction: column;
  }
}
.aeon .section-inner .flex1 .left {
  width: 50.8%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .aeon .section-inner .flex1 .left {
    width: 100%;
    padding-right: unset;
    margin-bottom: 32px;
  }
}
.aeon .section-inner .flex1 .left h2 {
  font-size: 72px;
  margin-bottom: 20px;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  .aeon .section-inner .flex1 .left h2 {
    font-size: 36px;
  }
}
.aeon .section-inner .flex1 .left p {
  font-size: 15px;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  color: #1e1e1e;
}
.aeon .section-inner .flex1 .right {
  width: 49.2%;
}
@media (max-width: 767px) {
  .aeon .section-inner .flex1 .right {
    width: 100%;
  }
}
.aeon .section-inner .flex1 .right img {
  width: 100%;
}
@media (max-width: 767px) {
  .aeon .section-inner .flex2 {
    padding-top: 50px;
  }
}
.aeon .section-inner .flex2 h6 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8em;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .aeon .section-inner .flex2 h6 {
    margin-bottom: 26px;
  }
}
.aeon .section-inner .flex2 ul {
  display: flex;
  flex-wrap: wrap;
}
.aeon .section-inner .flex2 ul li {
  width: calc(50% - 10px);
  margin-right: 20px;
  padding-left: 24px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.5);
}
.aeon .section-inner .flex2 ul li:nth-child(1), .aeon .section-inner .flex2 ul li:nth-child(2) {
  border-top: 1px solid rgba(31, 31, 31, 0.5);
}
.aeon .section-inner .flex2 ul li:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .aeon .section-inner .flex2 ul li {
    width: 100%;
    margin-right: 0;
    padding-left: 0;
  }
  .aeon .section-inner .flex2 ul li:nth-child(2) {
    border-top: none;
  }
  .aeon .section-inner .flex2 ul li:last-child {
    border-bottom: none;
  }
}
.aeon .section-inner .flex2 ul li a {
  display: flex;
  align-items: center;
  height: 51px;
  color: #1e1e1e;
  font-weight: 500;
}
.aeon .section-inner .flex2 ul li a p {
  line-height: 1.4em;
}
.aeon .section-inner .flex2 ul li .btn {
  background-color: #FDDB00;
  padding-left: 13px;
  padding-right: 13px;
  line-height: 24px;
  margin-right: 24px;
  flex-shrink: 0;
}

.training .section-inner {
  max-width: 1360px;
  margin: auto;
}
.training .section-inner h2 {
  font-size: 72px;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .training .section-inner h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
.training .section-inner .flex {
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding-top: 32px;
  padding-bottom: 25px;
  display: flex;
}
@media (max-width: 767px) {
  .training .section-inner .flex {
    flex-direction: column;
    padding-bottom: 50px;
  }
}
.training .section-inner .flex .left {
  width: 50.8%;
  padding-left: 115px;
  padding-right: 110px;
}
@media (max-width: 1024px) {
  .training .section-inner .flex .left {
    padding-left: 0;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .training .section-inner .flex .left {
    width: 100%;
    padding-left: unset;
    padding-right: unset;
  }
}
.training .section-inner .flex .left p {
  font-size: 16px;
  line-height: 1.8em;
  color: #1e1e1e;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .training .section-inner .flex .left p {
    margin-bottom: 30px;
  }
}
.training .section-inner .flex .btn {
  width: 250px;
  text-align: center;
  line-height: 67px;
  background-color: #1e1e1e;
  border-radius: 99px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .training .section-inner .flex .btn:not(.sp-show) {
    display: block;
  }
}
@media (max-width: 767px) {
  .training .section-inner .flex .btn {
    margin: auto;
    margin-top: 50px;
  }
}
.training .section-inner .flex .btn span {
  color: white;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.training .section-inner .flex .right {
  width: 49.2%;
}
@media (max-width: 767px) {
  .training .section-inner .flex .right {
    width: 100%;
  }
}
.training .section-inner .flex .right img {
  width: 100%;
}

.recommend {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .recommend {
    padding-top: 60px;
  }
}
.recommend .section-inner {
  max-width: 1360px;
  margin: auto;
}
.recommend .section-inner h2 {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .recommend .section-inner h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.recommend .section-inner .flex {
  display: flex;
}
@media (max-width: 767px) {
  .recommend .section-inner .flex {
    flex-direction: column;
  }
}
.recommend .section-inner .flex .left {
  width: 49%;
}
.recommend .section-inner .flex .left img {
  width: 100%;
}
@media (max-width: 767px) {
  .recommend .section-inner .flex .left {
    width: 100%;
  }
  .recommend .section-inner .flex .left img {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
  }
}
.recommend .section-inner .flex .right {
  width: 51%;
}
@media (max-width: 767px) {
  .recommend .section-inner .flex .right {
    width: 100%;
  }
}
.recommend .section-inner .flex .right h4 {
  font-size: 19px;
  line-height: 1.8em;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .recommend .section-inner .flex .right h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .recommend .section-inner .flex .right h4 {
    font-size: 4.2666666667vw;
  }
}
.recommend .section-inner .flex .right .btn {
  width: 250px;
  display: block;
  text-align: center;
  line-height: 67px;
  background-color: #333;
  border-radius: 99px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.recommend .section-inner .flex .right .btn span {
  color: white;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .recommend .section-inner .flex .right .btn span {
    letter-spacing: 0.1em;
  }
}
@media (max-width: 767px) {
  .recommend .section-inner .flex .right .btn {
    margin: auto;
  }
}
.recommend .section-inner .flex1 {
  align-items: center;
  margin-bottom: 88px;
}
@media (max-width: 767px) {
  .recommend .section-inner .flex1 {
    margin-bottom: 80px;
  }
}
.recommend .section-inner .flex1 .right {
  padding-left: 48px;
}
@media (max-width: 767px) {
  .recommend .section-inner .flex1 .right {
    padding-top: 35px;
    padding-left: 0;
  }
}
.recommend .section-inner .flex1 .right h4 {
  padding-bottom: 36px;
}
@media (max-width: 767px) {
  .recommend .section-inner .flex1 .right h4 {
    padding-bottom: 56px;
  }
}
.recommend .section-inner .flex1 .right h4 span {
  background: linear-gradient(transparent 70%, #FCDEA1 0%);
}
.recommend .section-inner .rev {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .recommend .section-inner .rev {
    flex-direction: column;
  }
}
.recommend .section-inner .rev .left {
  width: 51%;
}
@media (max-width: 767px) {
  .recommend .section-inner .rev .left {
    width: 100%;
  }
  .recommend .section-inner .rev .left img {
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
  }
}
.recommend .section-inner .rev .right {
  width: 49%;
  padding-top: 34px;
}
.recommend .section-inner .rev .right h4 {
  margin-bottom: 36px;
}
.recommend .section-inner .rev .right h4 span {
  background: linear-gradient(transparent 70%, #FDDFF1 0%);
}
@media (max-width: 767px) {
  .recommend .section-inner .rev .right {
    width: 100%;
  }
  .recommend .section-inner .rev .right h4 {
    margin-bottom: 56px;
  }
}

.banner {
  display: flex;
}
@media (max-width: 767px) {
  .banner {
    flex-direction: column;
  }
}
.banner > div {
  width: 50%;
  background-size: cover;
}
@media (max-width: 767px) {
  .banner > div {
    width: 100%;
  }
}
.banner .left {
  background-image: url(../img/banner1.webp);
}
.banner .left .inner {
  margin-left: auto;
  margin-right: 72px;
  max-width: 280px;
  padding-top: 35px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .banner .left .inner {
    margin-right: auto;
  }
}
.banner .left .inner h5, .banner .left .inner p {
  color: white;
}
.banner .left .inner h5 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 26px;
}
@media (max-width: 767px) {
  .banner .left .inner h5 {
    text-align: center;
  }
}
.banner .left .inner p {
  font-size: 16px;
  line-height: 1.8em;
  padding-bottom: 26px;
}
.banner .left .inner .flex {
  display: flex;
}
@media (max-width: 767px) {
  .banner .left .inner .flex {
    justify-content: space-between;
  }
}
.banner .left .inner .flex .btn {
  width: 127px;
  line-height: 48px;
  display: block;
  background-color: #F2F2F2;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 99px;
  border: 1px solid black;
}
.banner .left .inner .flex .btn span {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.banner .left .inner .flex .btn1 {
  margin-right: 4px;
}
.banner .left .inner .flex .btn2 span {
  color: #fd0000;
}
@media (max-width: 767px) {
  .banner .left {
    background-image: url(../img/banner1-sp.webp);
  }
}
.banner .right {
  background-image: url(../img/banner2.webp);
}
@media (max-width: 767px) {
  .banner .right {
    background-image: url(../img/banner2-sp.webp);
  }
}
.banner .right .inner {
  margin-left: 72px;
  max-width: 280px;
  padding-top: 35px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .banner .right .inner {
    margin-left: auto;
    margin-right: auto;
  }
}
.banner .right .inner h5, .banner .right .inner p {
  color: white;
}
.banner .right .inner h5 {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 26px;
}
@media (max-width: 767px) {
  .banner .right .inner h5 {
    text-align: center;
  }
}
.banner .right .inner p {
  font-size: 16px;
  line-height: 1.8em;
  padding-bottom: 26px;
}
.banner .right .inner .flex {
  display: flex;
}
@media (max-width: 767px) {
  .banner .right .inner .flex {
    justify-content: center;
  }
}
.banner .right .inner .flex .btn {
  width: 200px;
  line-height: 48px;
  display: block;
  background-color: #F2F2F2;
  text-align: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 99px;
}
.banner .right .inner .flex .btn span {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.banner .right .inner .flex .btn1 {
  margin-right: 4px;
}
.banner .right .inner .flex .btn2 span {
  color: #fd0000;
}

footer {
  padding-left: 190px;
  padding-top: 40px;
  padding-bottom: 65px;
  padding-right: 94px;
}
@media (max-width: 1280px) {
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  footer {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
  }
}
footer .footer-inner {
  max-width: 1076px;
  margin: auto;
}
footer .sns-ul {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  footer .sns-ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
footer .sns-ul li {
  margin-right: 16px;
}
@media (max-width: 767px) {
  footer .sns-ul li {
    width: 25%;
    margin-right: unset;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  footer .sns-ul {
    justify-content: center;
    margin-bottom: 35px;
  }
  footer .sns-ul li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  footer .sns-ul {
    margin-bottom: 15px;
  }
}
footer .pj {
  width: 322px;
  display: block;
  margin-bottom: 15px;
}
footer .pj img {
  width: 100%;
}
@media (max-width: 1024px) {
  footer .pj {
    width: 316px;
    margin-bottom: 36px;
  }
}
footer small {
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  footer small {
    text-align: center;
    margin-top: 20px;
  }
}
footer .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .flex {
    flex-direction: column;
    align-items: center;
  }
}
footer .right {
  display: flex;
}
@media (max-width: 767px) {
  footer .right {
    flex-direction: column;
    width: 100%;
  }
}
footer .right .col {
  width: 210px;
}
@media (max-width: 767px) {
  footer .right .col {
    width: auto;
  }
}
footer .right .col ul li {
  line-height: 1.8em;
  margin-bottom: 8.5px;
  font-size: 16px;
}
footer .right .col ul li a {
  color: #333;
}
footer .right .col ul .parent a {
  font-weight: 700;
  pointer-events: none;
}
footer .right .col ul:nth-child(n+2) {
  margin-top: 12px;
}

a {
  transition: all 0.4s;
}
a:hover {
  opacity: 0.7;
}

header a.btn {
  position: relative;
  top: 0;
}
header a.btn:hover {
  opacity: 1;
  top: -1px;
  box-shadow: 0px 1px 3px gray;
}