@charset "UTF-8";
.loadingArea {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #ffffff;
  background-image: url(../images/loading/loading_bk.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loadingArea img {
  opacity: 0;
}
.loadingArea img.is-active {
  opacity: 1;
}
.loadingArea .img1, .loadingArea .img2, .loadingArea .img3, .loadingArea .img4 {
  transition: opacity 0.7s ease;
}
.loadingArea .img5 {
  transition: opacity 1.2s ease;
}
.loadingArea .loadingInner {
  width: 100%;
  height: 100%;
}
.loadingArea .loadingInner .imgArea {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 286px;
  height: auto;
  width: %;
}
.loadingArea .loadingInner .imgArea img {
  position: absolute;
  z-index: 1;
}
.loadingArea .loadingInner .txArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
/* ==========================================================================
   CTA
   ========================================================================== */
.floatingBanner {
  position: fixed;
  bottom: 40px;
  right: 0px;
  width: 400px;
  background-color: #002b40;
  /* 通常時：濃紺 */
  border-radius: 12px 0px 0px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}
.floatingBanner * {
  transition: all 0.3s ease;
}
.floatingBanner {
  /* --- 日付テキスト（通常時は非表示） --- */
}
.floatingBanner .limitDate {
  color: #5CCFCB;
}
.floatingBanner {
  /* --- ホバー時の挙動 --- */
}
.floatingBanner:hover {
  background-color: #6ccbbd;
  /* ホバー時：水色 */
  /* ホバー時に日付を表示する */
}
.floatingBanner:hover .infoSec .limitDate {
  color: #fff;
  /* 必要に応じてアニメーションを追加 */
}
.floatingBanner:hover .infoSec .statusBadge {
  border: 3px solid #fff;
  color: #fff;
}
.floatingBanner:hover .infoSec .ctaText {
  color: #fff;
}
.floatingBanner {
  /* --- 閉じるボタン --- */
}
.floatingBanner .btnClose {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
}
.floatingBanner .btnClose::before, .floatingBanner .btnClose::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: #fff;
}
.floatingBanner .btnClose::before {
  transform: rotate(45deg);
}
.floatingBanner .btnClose::after {
  transform: rotate(-45deg);
}
.floatingBanner {
  /* --- メインコンテンツ（リンク） --- */
}
.floatingBanner .bannerContent {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  padding: 24px 32px 24px 24px;
  width: 100%;
  height: 100%;
  position: relative;
}
.floatingBanner {
  /* --- 左側：ロゴエリア --- */
}
.floatingBanner .logoSec {
  flex-shrink: 0;
  margin-right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.floatingBanner {
  /* --- 右側：情報エリア --- */
}
.floatingBanner .infoSec {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* 上段：メタ情報 */
}
.floatingBanner .infoSec .metaRow {
  margin-bottom: 8px;
}
.floatingBanner .infoSec .metaRow * {
  color: #5CCFCB;
}
.floatingBanner .infoSec {
  /* バッジスタイル */
}
.floatingBanner .infoSec .statusBadge {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: 3px solid #5CCFCB;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.floatingBanner .infoSec {
  /* 日付テキスト（スタイル定義） */
}
.floatingBanner .infoSec .limitDate {
  font-size: 13px;
  font-weight: bold;
  /* 表示・非表示の切り替えは親の .floatingBanner 直下および &:hover 内で制御 */
}
.floatingBanner .infoSec {
  /* メインテキスト */
}
.floatingBanner .infoSec .ctaText {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
.floatingBanner .infoSec {
  /* 矢印オブジェクト全体 */
}
@media screen and (max-width: 767px) {
  .floatingBanner {
    width: 210px;
    bottom: 10px;
  }
  .floatingBanner .bannerContent {
    padding: 30px 20px;
  }
  .floatingBanner .bannerContent .ctaText {
    letter-spacing: 0;
    line-height: -0.05em;
  }
  .floatingBanner .bannerContent .infoSec .metaRow {
    margin-bottom: 1px;
  }
  .floatingBanner .bannerContent .infoSec .metaRow .statusBadge {
    margin-bottom: 4px;
  }
}
.secFv {
  margin: 30px 25px 0;
}
.secFv .fvImg {
  position: relative;
  border-radius: 20px;
}
.secFv .fvImg .txArea {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.secFv .fvImg .txArea h1 {
  padding: 8px 22px;
  margin-top: 40px;
  border-radius: 60px;
  border: 3px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.secFv .fvImg .txArea h1 span {
  color: #fff;
  font-size: clamp(0.938rem, 0.038rem + 1.88vw, 1.563rem);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .secFv {
    margin: 0px 16px 0;
  }
  .secFv .fvImg .txArea {
    padding: 0 4.5%;
    width: 100%;
    position: absolute;
    top: 41%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .secFv .fvImg .txArea img {
    width: 100%;
    max-width: initial;
  }
  .secFv .fvImg .txArea h1 span {
    letter-spacing: 0.05em;
  }
  .secFv .fvImg .txArea h1 span:first-child {
    font-size: 3.846vw;
  }
  .secFv .fvImg .txArea h1 span:last-child {
    font-size: 4.615vw;
  }
}
.ctaNews {
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: #fff;
  z-index: 10;
}
.ctaNews .secCtaIn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ctaNews .ctaItem {
  transition: all 0.3s;
  display: block;
  background-color: #fcfaf5;
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
  width: 100%;
  text-decoration: none;
  color: #00263e;
  width: 36.1111vw;
  height: 15.9722vw;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ctaNews .ctaItem .ctaHeader {
  padding-bottom: 15px;
  gap: 10px;
  display: flex;
  align-items: center;
  border-bottom: 5px solid;
  -o-border-image: linear-gradient(to right, #1dbb9c 0%, #d8e61a 100%) 1;
     border-image: linear-gradient(to right, #1dbb9c 0%, #d8e61a 100%) 1;
}
.ctaNews .ctaItem .ctaCat {
  height: 35px;
  min-width: 100px;
  padding: 0 20px;
  font-size: clamp(14px, 1.25vw, 15px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #002841;
  color: #ffffff;
  font-weight: bold;
  border-radius: 50px;
}
.ctaNews .ctaItem .ctaDate {
  font-weight: bold;
  color: #00263e;
  font-size: clamp(0.938rem, 0.128rem + 1.69vw, 1.5rem);
}
.ctaNews .ctaItem .ctaTitle {
  margin-top: 20px;
  font-size: clamp(0.938rem, 0.128rem + 1.69vw, 1.5rem);
}
.ctaNews .ctaItem .ctaTitle p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-weight: bold;
  font-size: clamp(0.938rem, 0.128rem + 1.69vw, 1.5rem);
}
.ctaNews .ctaItem * {
  transition: all 0.3s;
}
.ctaNews .ctaItem:hover {
  color: #fff;
  background-color: #002841;
}
.ctaNews .ctaItem:hover .ctaCat {
  background-color: #fff;
  color: #002841;
}
.ctaNews .ctaItem:hover .ctaDate {
  color: #fff;
}
.ctaNews .ctaItem:hover .ctaTitle p {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .ctaNews {
    background-color: initial;
    width: 100%;
    bottom: 1.2%;
  }
  .ctaNews .ctaItem {
    margin: 17px;
    width: 95%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 16px 24px;
  }
  .ctaNews .ctaItem .ctaHeader {
    padding-bottom: 10px;
  }
  .ctaNews .ctaItem .ctaDate {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .ctaNews .ctaItem .ctaCat {
    height: 25px;
    min-width: 70px;
    font-size: 13px;
  }
  .ctaNews .ctaItem .ctaTitle {
    margin-top: 13px;
  }
  .ctaNews .ctaItem .ctaTitle p {
    -webkit-line-clamp: 2;
    font-size: clamp(14px, 5.13vw, 20px);
  }
}
.secIntro {
  background-color: #ffffff;
  padding: 100px 0;
}
.secIntro .secGrowthIn {
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.secIntro .secGrowthTtl {
  color: #002841;
  font-weight: bold;
  font-size: clamp(38px, 3.33vw, 40px);
  margin-bottom: 50px;
}
.secIntro .secGrowthTtl .secGrowthTtlSub {
  color: #5CCFCB;
  font-weight: inherit;
  line-height: 1.2;
  font-size: clamp(50px, 5vw, 60px);
  margin: 0 5px;
}
.secIntro .secGrowthTxt {
  color: #000000;
  font-weight: 500;
  font-size: clamp(21px, 1.92vw, 23px);
}
.secIntro .secGrowthTxt br {
  display: block;
}
.secIntro .imgArea {
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
}

@media only screen and (max-width: 767px) {
  .secIntro {
    padding: 60px 0;
  }
  .secIntro .secGrowthIn .secGrowthTtl {
    font-size: clamp(16px, 6.67vw, 26px);
    margin-bottom: 30px;
  }
  .secIntro .secGrowthIn .secGrowthTtl .secGrowthTtlSub {
    font-size: clamp(20px, 8.72vw, 34px);
    margin: 0 2px;
  }
  .secIntro .secGrowthIn .secGrowthTxt {
    font-size: clamp(14px, 4.62vw, 18px);
  }
  .secIntro .secGrowthIn .imgArea {
    max-width: 270px;
  }
}
.secProgram {
  background-color: #002841;
  color: #ffffff;
  text-align: center;
}
.secProgram .comTitle {
  margin-bottom: 50px;
}
.secProgram .comTitle .line {
  background: #fff;
}
.secProgram * {
  color: #fff;
}
.secProgram .secProgramSub {
  position: relative;
  display: inline-block;
}
.secProgram .secProgramSub::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.secProgram .secProgramTitle {
  background-color: #F5F2E8;
}
.secProgram .secProgramTitle span {
  color: #002841;
  display: inline-block;
  font-weight: 900;
}
.secProgram .leadMain {
  font-weight: bold;
  letter-spacing: 0.1em;
}
.secProgram .secProgramContent {
  display: flex;
  justify-content: center;
}
.secProgram .programCard {
  border: 2px solid #ffffff;
  border-radius: 20px;
}
.secProgram .programCard .cardLabel {
  color: #4db3b3;
  font-weight: bold;
}
.secProgram .programCard .programNameEn {
  font-weight: bold;
  letter-spacing: 0.3em;
}
.secProgram .programCard .programNameJp {
  font-weight: bold;
  letter-spacing: 0.5em;
}
.secProgram .programCard .logoImg {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .secProgram {
    padding: 80px 0;
  }
  .secProgram .secProgramSub {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .secProgram .secProgramTitle {
    padding: 10px 15px;
  }
  .secProgram .secProgramTitle span {
    font-size: clamp(14px, 6.15vw, 24px);
  }
  .secProgram .secProgramLead {
    margin-top: 40px;
  }
  .secProgram .secProgramLead .leadMain {
    font-size: clamp(14px, 6.15vw, 24px);
    margin-bottom: 20px;
  }
  .secProgram .secProgramLead .leadSub,
  .secProgram .secProgramLead .leadText {
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .secProgram .secProgramContent {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .secProgram .programCard {
    margin: auto;
    width: 280px;
    height: 280px;
    padding: 30px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .secProgram .programCard .cardLabel {
    font-size: clamp(14px, 4.1vw, 16px);
    margin-bottom: 30px;
  }
  .secProgram .programCard .programNameEn {
    font-size: clamp(24px, 10.26vw, 40px);
  }
  .secProgram .programCard .programNameJp {
    font-size: clamp(14px, 6.15vw, 24px);
    margin-top: 10px;
  }
  .secProgram .programCard .programCatch {
    font-size: 14px;
    margin-top: 40px;
  }
  .secProgram .programCard .logoImg {
    width: initial;
    height: auto;
  }
  .secProgram .programCard .logoImg img {
    height: 80px;
    width: auto;
  }
  .secProgram .programCard .logoImg {
    margin-bottom: 20px;
  }
  .secProgram .programCard .conceptText {
    font-size: 14px;
    line-height: 1.6;
  }
  .secProgram .secProgramBtn {
    margin-top: 40px;
  }
  .secProgram .secProgramBtn .btnLink {
    font-size: 14px;
    padding: 15px 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .secProgram {
    padding: 110px 0;
  }
  .secProgram .secProgramSub {
    font-size: clamp(15px, 1.33vw, 16px);
    margin-bottom: 30px;
  }
  .secProgram .secProgramTitle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .secProgram .secProgramTitle span {
    color: #002841;
    font-size: clamp(38px, 3.5vw, 42px);
  }
  .secProgram .secProgramTitle {
    padding: 5px 20px;
  }
  .secProgram .secProgramLead {
    margin-top: 60px;
  }
  .secProgram .secProgramLead .leadMain {
    font-size: clamp(50px, 5vw, 60px);
    margin-bottom: 30px;
  }
  .secProgram .secProgramLead .leadSub,
  .secProgram .secProgramLead .leadText {
    font-size: clamp(24px, 2.17vw, 26px);
    line-height: 2;
    margin-bottom: 30px;
  }
  .secProgram .secProgramLead .leadSub span,
  .secProgram .secProgramLead .leadText span {
    display: block;
    height: 30px;
  }
  .secProgram .secProgramContent {
    gap: 30px;
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
  }
  .secProgram .programCard {
    flex: 1;
    padding: 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
  }
  .secProgram .programCard .cardLabel {
    font-size: clamp(33px, 2.92vw, 35px);
    margin-bottom: 40px;
  }
  .secProgram .programCard .cardBody {
    margin: auto 0;
  }
  .secProgram .programCard .cardBody .logoImg {
    justify-content: center;
    display: flex;
    align-items: center;
    height: 226px;
    margin-bottom: 30px;
  }
  .secProgram .programCard .programNameEn {
    font-size: clamp(50px, 4.67vw, 56px);
  }
  .secProgram .programCard .programNameJp {
    font-size: clamp(30px, 2.67vw, 32px);
    margin-top: 15px;
  }
  .secProgram .programCard .programCatch {
    font-size: clamp(16px, 1.5vw, 18px);
    margin-top: 30px;
  }
  .secProgram .programCard .conceptText {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
  }
  .secProgram .secProgramBtn {
    margin-top: 60px;
  }
  .secProgram .secProgramBtn .btnLink {
    font-size: clamp(15px, 1.33vw, 16px);
    padding: 20px 60px;
  }
}
.secFeatures {
  background-color: #e6f5f7;
}
.secFeatures .comTitle {
  margin-bottom: 30px;
}
.secFeatures .featureList {
  position: relative;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  aspect-ratio: 1240/1000;
}
.secFeatures .featureItem {
  position: absolute;
  cursor: pointer;
}
.secFeatures .featureItem .featureContent {
  position: relative;
  width: 100%;
  height: 100%;
}
.secFeatures .featureItem .featureContent .imgFit {
  width: 100%;
  height: auto;
  display: block;
}
.secFeatures .featureItem .btnPlus {
  position: absolute;
  background-color: #fff;
  border: 4px solid #00334e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  max-width: 55px;
  max-height: 55px;
  width: 3.82vw;
  height: 3.82vw;
  z-index: 2;
  border-radius: 5px;
}
.secFeatures .featureItem .btnPlus.btnPlus1 {
  right: 30%;
  bottom: 24%;
}
.secFeatures .featureItem .btnPlus.btnPlus2 {
  right: 17%;
  bottom: 29%;
}
.secFeatures .featureItem .btnPlus.btnPlus3 {
  right: 13%;
  bottom: 24%;
}
.secFeatures .featureItem .btnPlus.btnPlus4 {
  right: 12%;
  bottom: 26%;
}
.secFeatures .featureItem .btnPlus.btnPlus5 {
  right: 33%;
  bottom: 26%;
}
.secFeatures .featureItem .btnPlus.btnPlus6 {
  right: 13%;
  bottom: 24%;
}
.secFeatures .featureItem .btnPlus.btnPlus7 {
  right: 22%;
  bottom: 21%;
}
.secFeatures .featureItem .btnPlus::before, .secFeatures .featureItem .btnPlus::after {
  content: "";
  position: absolute;
  background-color: #00334e;
}
.secFeatures .featureItem .btnPlus::before {
  width: 55%;
  height: 4px;
}
.secFeatures .featureItem .btnPlus::after {
  width: 4px;
  height: 55%;
}
.secFeatures .featureItem:hover .btnPlus {
  background-color: #002841;
  border-color: #002841;
}
.secFeatures .featureItem:hover .btnPlus::before, .secFeatures .featureItem:hover .btnPlus::after {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .secFeatures {
    padding: 80px 0;
  }
  .secFeatures .featureList {
    width: 90%;
    display: flex;
    flex-direction: column;
  }
  .secFeatures .featureItem {
    position: static;
    width: 70%;
    max-width: 600px;
  }
  .secFeatures .featureItem:nth-child(odd) {
    margin-right: auto;
  }
  .secFeatures .featureItem:nth-child(even) {
    margin-left: auto;
    margin-bottom: 4%;
    margin-top: -4%;
  }
  .secFeatures .featureItem .btnPlus {
    width: 30px;
    height: 30px;
  }
  .secFeatures .featureItem .btnPlus.btnPlus1 {
    right: 20%;
  }
  .secFeatures .featureItem .btnPlus::before {
    width: 55%;
    height: 3px;
  }
  .secFeatures .featureItem .btnPlus::after {
    width: 3px;
    height: 55%;
  }
}
@media screen and (max-width: 500px) {
  .secFeatures .featureItem .btnPlus {
    width: 22px;
    height: 22px;
    border: 2px solid #002841;
  }
  .secFeatures .featureItem .btnPlus::before {
    height: 2px;
  }
  .secFeatures .featureItem .btnPlus::after {
    width: 2px;
  }
  .secFeatures .featureItem .btnPlus.btnPlus1 {
    right: 15%;
  }
  .secFeatures .featureItem .btnPlus.btnPlus5 {
    right: 20%;
    bottom: 20%;
  }
}
@media print, screen and (min-width: 768px) {
  .secFeatures {
    padding: 200px 0 230px;
  }
  .secFeatures .featureList {
    max-width: 1240px;
  }
  .secFeatures .featureItem:nth-child(1) {
    top: 1%;
    left: 2%;
    width: 47%;
  }
  .secFeatures .featureItem:nth-child(2) {
    top: 0%;
    left: 53%;
    width: 38%;
  }
  .secFeatures .featureItem:nth-child(3) {
    top: 49%;
    left: -1%;
    width: 38%;
  }
  .secFeatures .featureItem:nth-child(4) {
    top: 41.5%;
    left: 40.5%;
    width: 23.5%;
  }
  .secFeatures .featureItem:nth-child(5) {
    top: 38%;
    left: 67%;
    width: 32%;
  }
  .secFeatures .featureItem:nth-child(6) {
    top: 67%;
    left: 37%;
    width: 33%;
  }
  .secFeatures .featureItem:nth-child(7) {
    top: 70%;
    left: 71%;
    width: 30.5%;
  }
}
.modalLayer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalLayer.isActive {
  opacity: 1;
  pointer-events: auto;
}
.modalLayer .modalBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 51, 78, 0.8);
}
.modalLayer .modalWindow {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 520px;
  box-sizing: border-box;
  overflow: hidden;
}
.modalLayer .modalCloseBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 10;
  background-color: #002841;
  border-radius: 5px;
}
.modalLayer .modalCloseBtn span {
  display: block;
  position: absolute;
  width: 55%;
  height: 4px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.modalLayer .modalCloseBtn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modalLayer .modalCloseBtn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modalLayer .modalContent {
  text-align: center;
}
.modalLayer .modalIcon {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modalLayer .modalTitle {
  color: #00334e;
  font-weight: bold;
  line-height: 1.4;
}
.modalLayer .modalTitle span {
  font-weight: inherit;
  font-size: inherit;
}
.modalLayer .modalTitle .highlight {
  color: #70c9ce;
}
.modalLayer .modalText {
  color: #000;
  text-align: left;
  line-height: 1.8;
  border-top: 1px solid #002841;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .modalLayer .modalWindow {
    padding: 40px 20px;
  }
  .modalLayer .modalIcon {
    width: 60px;
    margin-bottom: 20px;
  }
  .modalLayer .modalTitle {
    font-size: clamp(14px, 5.13vw, 20px);
    margin-bottom: 20px;
  }
  .modalLayer .modalText {
    font-size: clamp(14px, 4.1vw, 16px);
    padding-top: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .modalLayer .modalWindow {
    padding: 50px 30px;
  }
  .modalLayer .modalIcon {
    width: 80px;
    margin-bottom: 25px;
  }
  .modalLayer .modalTitle {
    font-size: clamp(33px, 2.92vw, 35px);
    margin-bottom: 30px;
    font-weight: bold;
  }
  .modalLayer .modalText {
    padding-top: 32px;
    font-size: clamp(15px, 1.33vw, 16px);
  }
}
.secSpeaker {
  background-color: #ffffff;
}
.secSpeaker .secSpeakerTtl {
  text-align: center;
  font-weight: bold;
  color: #002841;
  position: relative;
}
.secSpeaker .secSpeakerTtl::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #002841;
}
.secSpeaker .speakerList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.secSpeaker .speakerImg {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 10px;
  background-color: #f0f0f0;
}
.secSpeaker .speakerImg .imgFit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 10px 20px;
}
.secSpeaker .speakerStatus {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #ffffff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 0 10px;
  z-index: 1;
}
.secSpeaker .speakerTxt {
  text-align: center;
}
.secSpeaker .speakerJobItem span {
  font-size: 11px;
}
.secSpeaker .speakerName {
  font-weight: bold;
  color: #002841;
  display: block;
}
.secSpeaker .speakerJob {
  color: #666666;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .secSpeaker {
    padding: 60px 0;
  }
  .secSpeaker .secSpeakerTtl {
    font-size: clamp(14px, 5.13vw, 20px);
    margin-bottom: 30px;
    padding-top: 15px;
  }
  .secSpeaker .secSpeakerTtl::before {
    top: 0;
    width: 30px;
    height: 2px;
  }
  .secSpeaker .speakerList {
    gap: 30px 4%;
  }
  .secSpeaker .speakerItem {
    width: 48%;
  }
  .secSpeaker .speakerStatus {
    font-size: 14px;
    padding: 2px 8px;
  }
  .secSpeaker .speakerName {
    font-size: clamp(14px, 3.85vw, 15px);
    margin-top: 10px;
  }
  .secSpeaker .speakerJob {
    font-size: 11px;
    margin-top: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .secSpeaker {
    padding: 40px 0 180px;
  }
  .secSpeaker .comTitle {
    padding-bottom: 64px;
  }
  .secSpeaker .secSpeakerTtl {
    font-size: clamp(26px, 2.33vw, 28px);
    margin-bottom: 60px;
    padding-top: 20px;
  }
  .secSpeaker .secSpeakerTtl::before {
    top: 0;
    width: 40px;
    height: 3px;
  }
  .secSpeaker .speakerList {
    gap: 50px 2.6%;
  }
  .secSpeaker .speakerItem {
    width: 23%;
  }
  .secSpeaker .speakerStatus {
    font-size: 12px;
    padding: 4px 12px;
  }
  .secSpeaker .speakerName {
    font-size: clamp(16px, 1.5vw, 18px);
    margin-top: 15px;
  }
  .secSpeaker .speakerJob {
    font-size: 13px;
    margin-top: 8px;
  }
}
.secNews .secNewsIn {
  padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .secNews {
    padding-bottom: 190px;
  }
  .secNews .comTitle {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .secNews {
    padding-bottom: 80px;
  }
}
.secSched .schedTabNav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  gap: 3px;
  margin-bottom: 3px;
}
.secSched .schedTabNav .tabItem {
  border-radius: 10px 10px 0 0;
  flex: 1;
  text-align: left;
  padding: 30px 20px;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: left;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.secSched .schedTabNav .tabItem:last-child {
  border-right: none;
}
.secSched .schedTabNav .tabItem.is-active {
  opacity: 1;
  font-weight: bold;
}
.secSched .schedTabNav .tabItem .tabStep {
  color: #fff;
  font-size: clamp(18px, 1.67vw, 20px);
  display: block;
  font-weight: bold;
  line-height: 1;
}
.secSched .schedTabNav .tabItem .tabName {
  color: #fff;
  font-size: clamp(24px, 2.17vw, 26px);
  font-weight: bold;
}
.secSched .schedGroup {
  display: none;
}
.secSched .schedGroup.is-active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .secSched {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .secSched .comBtnArea {
    margin-top: 40px;
  }
  .secSched .schedItem {
    padding: 0 0 40px;
  }
  .secSched .schedTabNav {
    flex-direction: column;
  }
  .secSched .schedTabNav .tabItem {
    padding: 10px 20px;
    gap: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .secSched .schedTabNav .tabItem.is-active {
    opacity: 0.4;
  }
  .secSched .schedTabNav .tabItem.is-active svg {
    rotate: 90deg;
  }
  .secSched .schedTabNav .tabItem svg {
    transition: 0.3s;
    width: 20px;
  }
  .secSched .schedTabNav .tabItem .tabName {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secSched .schedGroup {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .secSched {
    padding-top: 110px;
    padding-bottom: 80px;
  }
  .secSched .comBtnArea {
    margin-top: 80px;
  }
  .secSched .comTitle {
    padding-bottom: 80px;
  }
  .secSched .schedHead {
    padding: 20px;
  }
  .secSched .schedHead .schedCatDesc {
    font-size: clamp(23px, 2.08vw, 25px);
  }
  .secSched .schedItem:last-of-type {
    padding: 0px 0px 100px;
  }
  .secSched .schedTabNav .tabName {
    font-size: 12px;
  }
}
.secInfo {
  background-color: #F3F6F6;
}
.secInfo .secInfoHead {
  text-align: center;
  position: relative;
  padding: 40px 20px 20px;
}
.secInfo .secInfoHead::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #002841;
}
.secInfo .secInfoSub {
  display: block;
  color: #002841;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.secInfo .secInfoTtl {
  color: #002841;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.secInfo .infoReq,
.secInfo .infoCert,
.secInfo .infoMng {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.secInfo .infoReqLabel,
.secInfo .infoCertLabel,
.secInfo .infoMngLabel {
  line-height: 1;
  display: block;
  color: #4dc4c7;
  font-weight: 700;
}
.secInfo .infoReqTtl,
.secInfo .infoCertTtl,
.secInfo .infoMngTtl {
  color: #002841;
  line-height: 1;
  font-weight: 700;
}
.secInfo .downloadArea .inner {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.secInfo .downloadArea .inner a {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 210px;
  height: 35px;
  background: #002841;
  font-size: 15px;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  border: 3px solid #002841;
  transition: 0.3s;
}
.secInfo .downloadArea .inner a:hover {
  background: #fff;
  color: #002841;
}
.secInfo .infoReqItem {
  border-bottom: 2px solid #002841;
  display: flex;
  align-items: center;
  text-align: left;
}
.secInfo .infoReqCat span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #002841;
  border-radius: 50px;
  color: #002841;
  font-weight: bold;
}
.secInfo .infoReqMain {
  color: #002841;
  font-weight: 700;
  line-height: 1.6;
}
.secInfo .infoReqSub {
  color: #002841;
  line-height: 1.5;
}
.secInfo .infoCertLead {
  color: #002841;
  font-weight: 700;
}
.secInfo .infoCertBox {
  background-color: #ffffff;
  border-radius: 10px;
}
.secInfo .infoCertBoxList {
  padding-left: 1em;
}
.secInfo .infoCertBoxIn {
  text-align: left;
}
.secInfo .infoCertBoxTag {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #002841;
  border-radius: 50px;
  color: #002841;
  font-weight: 700;
  margin: auto;
}
.secInfo .infoCertBoxLead {
  color: #002841;
  font-weight: 700;
}
.secInfo .infoCertBoxList {
  color: #002841;
  font-weight: 700;
  line-height: 1.7;
}
.secInfo .infoMngList {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secInfo .infoMngItem {
  display: flex;
  width: 100%;
  text-align: left;
}
.secInfo .infoMngCat {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-weight: 700;
}
.secInfo .infoMngItem:nth-child(1) .infoMngCat {
  background-color: #002841;
  color: #ffffff;
}
.secInfo .infoMngItem:nth-child(2) .infoMngCat {
  border: 1px solid #002841;
  color: #002841;
}
.secInfo .infoMngTxt {
  color: #002841;
  font-weight: 700;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .secInfo {
    padding: 60px 0;
  }
  .secInfo .secInfoHead {
    margin-bottom: 40px;
  }
  .secInfo .secInfoHead::before {
    width: 30px;
    height: 3px;
    top: -15px;
  }
  .secInfo .secInfoSub {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .secInfo .secInfoTtl {
    font-size: clamp(14px, 6.15vw, 24px);
  }
  .secInfo .infoReq,
  .secInfo .infoCert,
  .secInfo .infoMng {
    margin-top: 50px;
  }
  .secInfo .infoReqLabel,
  .secInfo .infoCertLabel,
  .secInfo .infoMngLabel {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .secInfo .infoReqTtl,
  .secInfo .infoCertTtl,
  .secInfo .infoMngTtl {
    font-size: clamp(14px, 5.13vw, 20px);
    margin-bottom: 20px;
  }
  .secInfo .infoReqItem {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }
  .secInfo .infoReqCat {
    margin-bottom: 10px;
  }
  .secInfo .infoReqCat span {
    width: 100px;
    height: 30px;
    font-size: 16px;
  }
  .secInfo .infoReqMain {
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .secInfo .infoReqSub {
    font-size: 14px;
    margin-top: 5px;
  }
  .secInfo .infoCertLead {
    font-size: clamp(14px, 4.62vw, 18px);
    margin-bottom: 25px;
  }
  .secInfo .infoCertBox {
    padding: 30px 15px;
  }
  .secInfo .infoCertBoxTag {
    width: 140px;
    height: 30px;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .secInfo .infoCertBoxLead {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .secInfo .infoCertBoxItem {
    font-size: 13px;
  }
  .secInfo .infoMngItem {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .secInfo .infoMngCat {
    width: 100px;
    height: 30px;
    font-size: 16px;
  }
  .secInfo .infoMngTxt {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .secInfo {
    padding: 100px 0;
  }
  .secInfo .secInfoIn {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .secInfo .secInfoHead {
    margin-bottom: 80px;
  }
  .secInfo .secInfoHead::before {
    width: 40px;
    height: 4px;
    top: -20px;
  }
  .secInfo .secInfoSub {
    font-size: clamp(15px, 1.33vw, 16px);
    margin-bottom: 10px;
  }
  .secInfo .secInfoTtl {
    font-size: clamp(30px, 2.67vw, 32px);
  }
  .secInfo .infoReq,
  .secInfo .infoCert,
  .secInfo .infoMng {
    margin-top: 100px;
    max-width: 900px;
  }
  .secInfo .infoReqLabel,
  .secInfo .infoCertLabel,
  .secInfo .infoMngLabel {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .secInfo .infoReqTtl,
  .secInfo .infoCertTtl,
  .secInfo .infoMngTtl {
    font-size: clamp(26px, 2.33vw, 28px);
    margin-bottom: 40px;
  }
  .secInfo .infoReqItem {
    padding: 25px 0;
  }
  .secInfo .infoReqCat {
    width: 160px;
    flex-shrink: 0;
  }
  .secInfo .infoReqCat span {
    width: 100px;
    height: 34px;
    font-size: clamp(14px, 1.25vw, 15px);
  }
  .secInfo .infoReqMain {
    font-size: clamp(16px, 1.5vw, 18px);
  }
  .secInfo .infoReqSub {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.2;
    font-weight: bold;
  }
  .secInfo .infoCertLead {
    font-size: clamp(22px, 2vw, 24px);
    margin-bottom: 40px;
  }
  .secInfo .infoCertBox {
    padding: 60px 80px;
  }
  .secInfo .infoCertBoxTag {
    width: 140px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .secInfo .infoCertBoxLead {
    font-size: clamp(15px, 1.42vw, 17px);
    margin-bottom: 10px;
  }
  .secInfo .infoCertBoxItem {
    font-size: clamp(15px, 1.42vw, 17px);
    font-weight: bold;
  }
  .secInfo .infoMngItem {
    gap: 30px;
    margin-bottom: 25px;
  }
  .secInfo .infoMngCat {
    width: 100px;
    height: 34px;
    font-size: 14px;
    flex-shrink: 0;
  }
  .secInfo .infoMngTxt {
    font-size: clamp(16px, 1.5vw, 18px);
  }
}
.secEntry {
  background-image: url(../images/join_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.secEntry * {
  color: #fff;
}
.secEntry .comTitle .line {
  background: #fff;
}
.secEntry .comTitle * {
  text-align: center;
  color: #fff;
}
.secEntry .secEntryIn {
  display: flex;
  flex-direction: column;
}
.secEntry .entryMain {
  border-top: 1px solid #ffffff;
}
.secEntry .entryTtl {
  font-weight: bold;
}
.secEntry .entryNote {
  line-height: 1.6;
}
.secEntry .entryBtnWrap {
  width: 100%;
  max-width: 444px;
}
.secEntry .entryBtnWrap .entryBtnWrapIn {
  display: flex;
  gap: 14px;
  align-items: center;
}
.secEntry .entryBtn {
  display: block;
  background-color: #002841;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: all 0.3s;
}
.secEntry .entryBtn img {
  margin-top: -30px;
}
.secEntry .entryBtn:hover {
  background-color: #18CECB;
  color: #fff;
}
.secEntry .entryBtn:hover * {
  color: #fff;
}
.secEntry .entryBtn:hover .entryBtnLimit {
  border: 3px solid #fff;
}
.secEntry .entryBtnLimit {
  display: inline-block;
  background-color: transparent;
  border: 3px solid #18CECB;
  border-radius: 20px;
  color: #18CECB;
  font-weight: bold;
}
.secEntry .entryBtnDate {
  font-weight: bold;
  color: #5CCFCB;
}
.secEntry .entryBtnTxt {
  display: block;
  font-weight: bold;
}
.secEntry .entryContact {
  border-top: 1px solid #ffffff;
}
.secEntry .contactTtl {
  font-weight: bold;
}
.secEntry .contactInfo {
  line-height: 1.3;
}
.secEntry .contactInfo a {
  color: inherit;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .secEntry {
    padding: 60px 0;
  }
  .secEntry .entryMain {
    padding-top: 20px;
    margin-bottom: 40px;
  }
  .secEntry .entryTtl {
    font-size: clamp(14px, 6.15vw, 24px);
    margin-bottom: 20px;
  }
  .secEntry .entryTxt {
    font-size: clamp(14px, 4.1vw, 16px);
    margin-bottom: 15px;
  }
  .secEntry .entryNote {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .secEntry .entryBtn {
    padding: 20px;
  }
  .secEntry .entryBtnLimit {
    font-size: 13px;
    padding: 2px 12px;
    margin-bottom: 10px;
  }
  .secEntry .entryBtnTxt {
    font-size: clamp(14px, 4.62vw, 18px);
    padding-bottom: 15px;
  }
  .secEntry .entryContact {
    padding-top: 30px;
  }
  .secEntry .contactTtl {
    font-size: clamp(14px, 4.62vw, 18px);
    margin-bottom: 15px;
  }
  .secEntry .contactTxt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .secEntry .contactInfo {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media print, screen and (min-width: 768px) {
  .secEntry {
    padding: 100px 0;
  }
  .secEntry .comTitle .line {
    margin: 0 0 10px;
  }
  .secEntry .secEntryIn {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: clamp(5rem, -21.875rem + 35.83vw, 10.375rem);
  }
  .secEntry .entryMain {
    padding-top: 40px;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
  }
  .secEntry .entryTtl {
    font-size: clamp(38px, 3.33vw, 40px);
    width: 30%;
  }
  .secEntry .entryBody {
    width: 100%;
  }
  .secEntry .entryTxt {
    font-size: clamp(16px, 1.5vw, 18px);
    margin-bottom: 25px;
  }
  .secEntry .entryNote {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .secEntry .entryBtn {
    padding: 30px 20px 20px;
  }
  .secEntry .entryBtnLimit {
    font-size: clamp(15px, 1.33vw, 16px);
    padding: 4px 20px;
  }
  .secEntry .entryBtnDate {
    font-size: clamp(18px, 1.67vw, 20px);
  }
  .secEntry .entryBtnTxt {
    margin-top: 10px;
    font-size: clamp(28px, 2.5vw, 30px);
  }
  .secEntry .entryContact {
    padding-top: 40px;
  }
  .secEntry .contactTtl {
    font-size: clamp(18px, 1.67vw, 20px);
    margin-bottom: 20px;
  }
  .secEntry .contactTxt {
    font-size: clamp(15px, 1.33vw, 16px);
    margin-bottom: 10px;
  }
  .secEntry .contactInfo {
    font-size: clamp(15px, 1.33vw, 16px);
  }
}/*# sourceMappingURL=style.css.map */