@charset "UTF-8";
/*-------------------------------
色設定
-------------------------------*/
/*-------------------------------
文字太さ設定
-------------------------------*/
/*-------------------------------
mixin
-------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 開始時はマイナス指定 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 終了時の位置をデフォルトに */
  }
}
.fade {
  opacity: 0;
  transform: translateY(20px);
}
.fade.-in {
  -webkit-animation: fadeIn 0.5s ease-out forwards;
  -moz-animation: fadeIn 0.5s ease-out forwards;
  animation: fadeIn 0.5s ease-out forwards;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*-------------------------------
Utility
-------------------------------*/
.u-mtA {
  margin-top: auto !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mb30-20 {
  margin-bottom: 30px !important;
}
@media (max-width: 767px) {
  .u-mb30-20 {
    margin-bottom: 20px !important;
  }
}

.u-mb40-30 {
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .u-mb40-30 {
    margin-bottom: 30px !important;
  }
}

.u-mb40-20 {
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .u-mb40-20 {
    margin-bottom: 20px !important;
  }
}

.u-mb50-30 {
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .u-mb50-30 {
    margin-bottom: 30px !important;
  }
}

.u-mb50-20 {
  margin-bottom: 50px !important;
}
@media (max-width: 767px) {
  .u-mb50-20 {
    margin-bottom: 20px !important;
  }
}

.u-mb60-20 {
  margin-bottom: 60px !important;
}
@media (max-width: 767px) {
  .u-mb60-20 {
    margin-bottom: 20px !important;
  }
}

.u-textLink {
  color: #273896;
  text-decoration: underline;
  word-break: break-all;
}

.u-pc {
  display: inline-block;
}
@media (max-width: 1024px) {
  .u-pc {
    display: none;
  }
}

.u-pcTab {
  display: none;
}
@media (min-width: 768px) {
  .u-pcTab {
    display: block;
  }
}

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

/*-------------------------------
全体設定
-------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Yu Gothic Medium", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  opacity: 0.6;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #000;
}

.bg {
  position: relative;
  background-image: url(../image/background_pc.png);
  background-size: 1400px 1013px;
}
@media (max-width: 767px) {
  .bg {
    background-image: url(../image/background_sp.png);
    background-size: 700px 507px;
  }
}
.bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, #273896, #F47221);
}

/*-------------------------------
grecaptcha-badge
-------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}

/*-------------------------------
ヘッダー
-------------------------------*/
.header {
  height: 60px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #273896, #F47221);
  z-index: 10;
}
.header_inner {
  height: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .header_inner {
    padding: 0 12px 0 0;
  }
}

.headerLogo {
  height: 100%;
  max-width: 190px;
}
@media (max-width: 1090px) {
  .headerLogo {
    max-width: 120px;
  }
}
.headerLogo_link {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 27px;
  background-color: #fff;
  transition: 0.2s;
}
@media (max-width: 1090px) {
  .headerLogo_link {
    padding: 0px 15px;
  }
}
.headerLogo_link:hover {
  opacity: 1;
  background-color: #222;
}
.headerLogo_image {
  transition: 0.2s;
}
.headerLogo_link:hover .headerLogo_image {
  filter: invert(100%);
}

@media (max-width: 1024px) {
  .gnav {
    height: 100%;
    width: 100%;
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 10;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .gnav.-active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .gnav::before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #FDEADE, #E2E4F0);
  }
  .gnav::after {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../image/background_sp.png);
    background-size: 700px 507px;
    background-position: 50% 0%;
  }
}

.gnavList {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .gnavList {
    display: block;
    position: relative;
    z-index: 11;
    padding: 40px 30px;
  }
}

.gnavItem {
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) {
  .gnavItem:not(:nth-last-child(2))::after {
    content: "/";
    display: block;
    margin: 0 5px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media (max-width: 1024px) {
  .gnavItem {
    position: relative;
    border-bottom: 1px solid #273896;
  }
}
.gnavItem.-spOnly {
  display: none;
}
@media (max-width: 1024px) {
  .gnavItem.-spOnly {
    display: block;
  }
}
.gnavItem_link {
  display: block;
  position: relative;
  padding: 0 5px 2px;
}
@media (min-width: 1025px) {
  .gnavItem_link:hover {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .gnavItem_link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 20px 0;
  }
  .gnavItem:first-child .gnavItem_link {
    padding: 0 10px 20px 0;
  }
}
@media (min-width: 1025px) {
  .gnavItem_link::before {
    content: "";
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.2s;
  }
}
@media (min-width: 1025px) {
  .gnavItem_link:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.gnavItem_text {
  position: relative;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  transition: 0.2s;
}
@media (min-width: 1025px) {
  .gnavItem_link:hover .gnavItem_text {
    color: #000;
  }
}
@media (max-width: 1024px) {
  .gnavItem_text {
    color: #222;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.gnavItem_icon {
  display: none !important;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0em;
}
@media (max-width: 1024px) {
  .gnavItem_icon {
    display: inline-block !important;
  }
}

.navBtn {
  display: none;
}
@media (max-width: 1024px) {
  .navBtn {
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff;
    border-radius: 50%;
  }
}
.navBtn_line {
  height: 2px;
  width: 20px;
  position: absolute;
  background-color: #000;
  transition: 0.4s;
}
.navBtn_line:nth-child(1) {
  top: 12px;
}
.navBtn.-active .navBtn_line:nth-child(1) {
  transform: translateY(5px) rotate(-315deg);
}
.navBtn.-active .navBtn_line:nth-child(2) {
  opacity: 0;
}
.navBtn_line:nth-child(3) {
  top: 22px;
}
.navBtn.-active .navBtn_line:nth-child(3) {
  transform: translateY(-5px) rotate(315deg);
}

/*-------------------------------
フッター
-------------------------------*/
.footer {
  width: 100%;
  background-color: transparent;
}

.footerSubLink {
  padding: 10px 0;
  background-color: #273896;
}
.footerSubLink_inner {
  max-width: 1240px;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}

.footerSubLinkList {
  display: flex;
}
@media (max-width: 767px) {
  .footerSubLinkList {
    display: block;
  }
}

.footerSubLinkItem_link {
  display: flex;
  align-items: center;
  color: #fff;
}
.footerSubLinkItem_text {
  margin-right: 10px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}

.footerLink_inner {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  padding: 50px 20px 30px;
}
@media (max-width: 767px) {
  .footerLink_inner {
    padding: 50px 20px 100px;
  }
}

.footerLinkList {
  display: flex;
}
@media (max-width: 767px) {
  .footerLinkList {
    justify-content: center;
  }
}

.footerLinkItem {
  max-width: 127px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .footerLinkItem {
    max-width: 90px;
  }
}
.footerLinkItem:not(:last-child) {
  margin-right: 20px;
}
.footerLinkItem_link {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}
.footerLinkItem:nth-child(1) .footerLinkItem_image {
  padding: 0 7px;
}
.footerLinkItem_text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
}

.footerChara {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}
.footerChara_text {
  display: inline-block;
  padding: 2px 5px;
  margin: 0 10px 3px 0;
  background-color: #fff;
  color: #273896;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.footerChara_imageWrap {
  display: flex;
  align-items: flex-end;
}
.footerChara_image.-kobaton {
  max-width: 36px;
  margin-right: 10px;
}
.footerChara_image.-saitamacchi {
  max-width: 110px;
}

.footerCopy {
  width: 100%;
  background-color: #fff;
}
.footerCopy_inner {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  padding: 15px 0;
}
.footerCopy_text {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .footerCopy_text {
    margin-left: 10px;
    text-align: left;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.footerCopyTopBtn {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.footerCopyTopBtn_link {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background-color: #F47221;
}
@media (max-width: 767px) {
  .footerCopyTopBtn_link {
    align-items: center;
    padding: 0 10px;
  }
}
.footerCopyTopBtn_text {
  margin-right: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .footerCopyTopBtn_text {
    margin-right: 5px;
  }
}
.footerCopyTopBtn_icon {
  color: #fff;
  font-size: 20px;
}

/*-------------------------------
共通コンポーネント
-------------------------------*/
.pageMain {
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.95);
}

.section {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
}
.section.-white {
  background-color: rgba(255, 255, 255, 0.85);
}
.section.-pb0 {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .section.-spPt120 {
    padding-top: 120px;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.contentGrid {
  display: grid;
}
@media (max-width: 1024px) {
  .contentGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-gap40 {
  gap: 40px;
}
.contentGrid.-gap40-22 {
  gap: 40px;
}
@media (max-width: 767px) {
  .contentGrid.-gap40-22 {
    gap: 22px;
  }
}
.contentGrid.-gap40-20 {
  gap: 40px;
}
@media (max-width: 767px) {
  .contentGrid.-gap40-20 {
    gap: 20px;
  }
}
.contentGrid.-gap26 {
  gap: 26px;
}

.box {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
}
@media (max-width: 767px) {
  .box {
    padding: 20px;
    border-radius: 20px;
  }
}

.leftBox {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-radius: 20px;
  background-color: #273896;
  overflow: hidden;
  padding: 4px;
}
@media (max-width: 767px) {
  .leftBox {
    grid-template-columns: 100px 1fr;
  }
}
.leftBox_left {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  background-color: #273896;
}
.leftBox_en {
  color: #fff;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 900;
  text-shadow: 3px 3px 0px #172367;
}
@media (max-width: 767px) {
  .leftBox_en {
    font-size: 34px;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.leftBox_num {
  color: #fff;
  font-size: 84px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 900;
  text-shadow: 3px 3px 0px #172367;
}
@media (max-width: 767px) {
  .leftBox_num {
    font-size: 64px;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.leftBox_content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 16px 16px 0;
}
@media (max-width: 767px) {
  .leftBox_content {
    padding: 16px;
  }
}
.leftBox_content.-noTitle {
  border-radius: 16px;
}
.leftBox_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #273896;
}
@media (max-width: 767px) {
  .leftBox_wrap {
    flex-direction: column-reverse;
    padding-bottom: 10px;
  }
}
.leftBox_leftWrap {
  width: 59%;
}
@media (max-width: 767px) {
  .leftBox_leftWrap {
    width: 100%;
  }
}
.leftBox_date {
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 10px;
  background-color: #FFE2D1;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
}
@media (max-width: 767px) {
  .leftBox_date {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.leftBox_title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
}
@media (max-width: 767px) {
  .leftBox_title {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.leftBox_subTitle {
  padding-left: 10px;
  margin-bottom: 10px;
  border-left: 10px solid #172367;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .leftBox_subTitle {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
@media (max-width: 767px) {
  .leftBox_lecturer {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.leftBox_imageWrap {
  width: 40%;
  max-width: 150px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .leftBox_imageWrap {
    width: 100%;
    max-width: 80px;
    margin-bottom: 10px;
  }
}
.leftBox_text {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .leftBox_text {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.leftBox_text.-middle {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .leftBox_text.-middle {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.leftBox_text.-large {
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0em;
}

.title.-sizeL {
  padding: 10px 20px;
  background-image: linear-gradient(180deg, #F47221, #EC4040);
  border-radius: 20px;
}
.title.-sizeL .title_text {
  color: #fff;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
}
@media (max-width: 767px) {
  .title.-sizeL .title_text {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.title.-sizeM {
  position: relative;
  padding: 8px 8px 8px 20px;
  border-bottom: 1px solid #222;
}
.title.-sizeM::before {
  content: "";
  height: 26px;
  width: 10px;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #273896;
}
.title.-sizeM.-orange {
  border-bottom: 1px solid #F47221;
}
.title.-sizeM.-orange::before {
  background-color: #F47221;
}
.title.-sizeM .title_text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .title.-sizeM .title_text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.title.-sizeS .title_text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .title.-sizeS .title_text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.text.-medium {
  font-weight: 500;
}
.text.-bold {
  font-weight: 700;
}
.text.-center {
  text-align: center;
}
.text.-small {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.text.-middle {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-middle {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-large {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-large {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.list {
  counter-reset: number 0;
}
.list_item {
  position: relative;
  text-align: left;
  font-weight: 500;
}
.list_item:not(:last-child) {
  margin-bottom: 10px;
}
.list_item.-marker {
  padding: 20px 20px 20px 40px;
  background-color: #fff;
  border: 4px solid #273896;
  border-radius: 16px;
  font-weight: 900;
}
@media (max-width: 767px) {
  .list_item.-marker {
    padding: 14px 14px 14px 34px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.list_item.-marker::before {
  content: "";
  height: 10px;
  width: 10px;
  display: block;
  position: absolute;
  top: 28px;
  left: 16px;
  background-color: #273896;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .list_item.-marker::before {
    top: 22px;
    left: 14px;
  }
}
.list_item.-number {
  padding-left: 12px;
  font-weight: 700;
}
.list_item.-number::before {
  content: counter(number) ".";
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number 1;
}

.btn {
  width: 100%;
  max-width: 300px;
  display: block;
  position: relative;
  border: 4px solid #F47221;
  padding: 20px 50px 20px 20px;
  background-color: #fff;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .btn {
    max-width: none;
  }
}
.btn:hover {
  opacity: 1;
  background-color: #F47221;
}
.btn.-center {
  margin: 0 auto;
}
.btn_text {
  position: relative;
  color: #000;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  transition: 0.2s;
}
.btn:hover .btn_text {
  color: #fff;
}
.btn_icon {
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  background-color: #F47221;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .btn_icon {
    width: 30px;
  }
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
@media (max-width: 767px) {
  .table {
    border-spacing: 0 6px;
  }
}
.table_title {
  width: 20%;
  padding: 8px;
  text-align: center;
  background-color: #273896;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 767px) {
  .table_title {
    width: 100%;
    display: block;
    padding: 6px;
  }
}
.table_data {
  padding: 8px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .table_data {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/*-------------------------------
KV
-------------------------------*/
.indexKv {
  position: relative;
  margin-top: 60px;
  background-image: url(../image/kv_bg_pc.jpg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.indexKv_inner {
  height: 100%;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 150px;
}
@media (max-width: 767px) {
  .indexKv_inner {
    padding: 0;
  }
}
@keyframes slide-skew {
  0% {
    transform: translate(180px, -70px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.indexKv_image.-pc {
  opacity: 0;
}
.-show .indexKv_image.-pc {
  animation: slide-skew 1s 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@media (max-width: 767px) {
  .indexKv_image.-pc {
    display: none;
  }
}
.indexKv_image.-sp {
  display: none;
}
@media (max-width: 767px) {
  .indexKv_image.-sp {
    display: block;
  }
}

.badge {
  height: 100%;
  width: 100%;
}
.badge_inner {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .badge_inner {
    margin-bottom: 100px;
  }
}
.badge_link {
  height: 240px;
  width: 240px;
  display: block;
  position: absolute;
  bottom: -120px;
  right: 20px;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.2s;
}
@media (min-width: 768px) {
  .badge_link:hover {
    opacity: 1;
    transform: scale(1.1);
  }
}
@media (max-width: 767px) {
  .badge_link {
    height: 200px;
    width: 200px;
    bottom: 0px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .badge_link:hover {
    opacity: 1;
  }
}

/*-------------------------------
TOPページ
-------------------------------*/
/*lecturer---------------------*/
.mentorBox {
  position: relative;
  overflow: hidden;
  padding: 20px 10px 30px 20px;
  background-color: #fff;
  border: 4px solid #273896;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .mentorBox {
    padding: 10px 10px 30px;
  }
}

.mentorProfile {
  display: flex;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .mentorProfile {
    margin-bottom: 10px;
  }
}
.mentorProfile_imageWrap {
  max-width: 100px;
  margin-right: 10px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mentorProfile_imageWrap {
    width: 35%;
  }
}
.mentorProfile_textWrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .mentorProfile_textWrap {
    width: 65%;
  }
}
.mentorProfile_date {
  text-shadow: 1px 1px 0px #FDE917;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
}
.mentorProfile_pos {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.mentorProfile_name {
  margin-top: auto;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.mentorProfile_nameText {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}

.mentorBtn {
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 6px 15px;
  background-color: #273896;
  border-top-left-radius: 8px;
  color: #fff;
}
.mentorBtn:hover {
  cursor: pointer;
}
@media (max-width: 767px) {
  .mentorBtn {
    width: 100px;
    padding: 6px 10px;
  }
}
.mentorBtn_text {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .mentorBtn_text {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.modalItem {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.modalItem.-active {
  opacity: 1;
  visibility: visible;
}
.modalItem_bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.modalItem_contentsWrap {
  width: 90%;
  height: 80vh;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 50px;
  transform: translate(-50%, -50%);
  background: #fff;
}
@media (max-width: 767px) {
  .modalItem_contentsWrap {
    padding: 50px 16px;
  }
}
.modalItem_contents {
  height: 100%;
  padding: 0 20px 0 0;
  overflow: auto;
}
@media (max-width: 767px) {
  .modalItem_contents {
    padding: 0 10px 0 0;
  }
}
.modalItem_profile {
  display: flex;
}
.modalItem_imageWrap {
  max-width: 120px;
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.modalItem_position {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.modalItem_name {
  color: #222;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .modalItem_name {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.modalItem_text {
  color: #222;
}
.modalItem_dlWrap {
  border: 1px solid #273896;
}
.modalItem_dl {
  display: flex;
  align-items: stretch;
  color: #222;
}
.modalItem_dl:not(:last-child) {
  border-bottom: 1px solid #273896;
}
@media (max-width: 767px) {
  .modalItem_dl {
    display: block;
  }
}
.modalItem_dt {
  width: 25%;
  position: relative;
  padding: 20px 0 20px 36px;
  border-right: 1px solid #273896;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .modalItem_dt {
    width: 100%;
    padding: 16px 0 16px 30px;
    border-right: none;
    border-bottom: 1px solid #273896;
  }
}
.modalItem_dt::before {
  content: "";
  height: 20px;
  width: 6px;
  display: block;
  position: absolute;
  top: 19px;
  left: 20px;
  background-color: #273896;
}
@media (max-width: 767px) {
  .modalItem_dt::before {
    height: 18px;
    top: 15px;
    left: 17px;
  }
}
.modalItem_dd {
  width: 75%;
  padding: 20px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .modalItem_dd {
    width: 100%;
    padding: 16px;
  }
}
.modalItem_link {
  max-width: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 10px;
  background-color: #273896;
  border: 2px solid #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.modalItem_linkText {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.modalItem_linkIcon {
  font-size: 12px;
}
.modalItem_close {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  padding: 13px;
  background-color: #273896;
  cursor: pointer;
}
@media (max-width: 767px) {
  .modalItem_close {
    padding: 10px;
  }
}
.modalItem_closeText {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.modalItem_closeIcon {
  color: #fff;
  font-size: 24px;
}

/*-------------------------------
CONTACTページ
-------------------------------*/
.formWrap {
  max-width: 800px;
  margin: 0 auto;
}

.formItem_title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .formItem_title {
    font-size: 1.4rem;
  }
}
.formItem_label {
  margin-right: 20px;
  padding: 0 15px;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .formItem_label {
    font-size: 1.2rem;
  }
}
.formItem_label.-required {
  background-color: #CC0000;
  color: #fff;
}
.formItem_label.-any {
  background-color: #fff;
  border: 1px solid #222;
  color: #222;
}
.formItem_desc input[type=text],
.formItem_desc input[type=email],
.formItem_desc input[type=tel] {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #222;
}
.formItem_desc input[type=text]::placeholder,
.formItem_desc input[type=email]::placeholder,
.formItem_desc input[type=tel]::placeholder {
  color: #aaa;
}
.formItem_desc textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #222;
}
.formItem_desc textarea::placeholder {
  color: #aaa;
}

.formConsent {
  text-align: center;
  font-size: 1.4rem;
}
.formConsent_check {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .formConsent_check {
    font-size: 1.4rem;
  }
}
.formConsent_check .wpcf7-list-item {
  margin: 0;
}
.formConsent_link {
  color: #222;
  text-decoration: underline;
}

.formBtn_wrap {
  width: 100%;
  max-width: 300px;
  position: relative;
  margin: 0 auto;
  border: 4px solid #F47221;
}
.formBtn_wrap:hover {
  cursor: pointer;
}
.formBtn_wrap.-previous {
  border: 4px solid #222;
  background-color: #fff;
}
.formBtn_btn {
  width: 100%;
  display: block;
  position: relative;
  padding: 20px 50px 20px 20px;
  background-color: #fff;
  color: #222;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.formBtn_btn:hover {
  background-color: #F47221;
  color: #fff;
}
.-previous .formBtn_btn {
  padding: 20px 20px 20px 50px;
}
.-previous .formBtn_btn:hover {
  background-color: #222;
}
.formBtn .wpcf7-spinner {
  position: absolute;
}
.formBtn_icon {
  height: 100%;
  width: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #F47221;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.-previous .formBtn_icon {
  right: auto;
  left: 0;
  background-color: #222;
}
.formBtn_text {
  text-align: center;
  font-size: 1.4rem;
}
.formBtn_text a {
  text-decoration: underline;
  color: #222;
}

.confirmBox {
  padding: 40px;
  margin-bottom: 40px;
  border: 5px solid #273896;
  box-shadow: 0px 3px 6px rgba(49, 55, 71, 0.1);
  text-align: center;
}
@media (max-width: 767px) {
  .confirmBox {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.thanksBox {
  padding: 40px;
  margin-bottom: 60px;
  border: 3px solid #222;
}
@media (max-width: 767px) {
  .thanksBox {
    padding: 20px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=layout.css.map */