@charset "utf-8";

/* =========================================
  RESET
========================================= */
.container{
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* =========================================
  HEADER
========================================= */
#header{
	background: #FFF;
}

/* =========================================
  HERO
========================================= */
.hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background:
    linear-gradient(
      #001555,
      #062c75,
      #001f63
    );
}

.hero-left{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 60px 60px 34px;
  position: relative;
  z-index: 2;
}
.hero-copy{
  width: min(520px, 100%);
  color: #fff;
}

.hero-copy h1{
  font-size: 42px;
  line-height: 1.40;
  font-weight: 500;
  font-family: var(--mincho);
  margin: 0 0 44px;
  letter-spacing: .06em;
}

.hero-copy h1 span{
  color: var(--gold);
}
.hero-copy h1 .line-text{
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
}
.hero-copy h1 .line-text::after{
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #f4cd72 0%,
      #d9a744 45%,
      #b9831f 100%
    );

  box-shadow:
    0 2px 10px
    rgba(217,167,68,.35);

  opacity: .95;
}
.hero-copy p{
  font-size: 16px;
  line-height: 2.3;
  color: #eef4ff;
}

.hero-right{
  position: relative;
  z-index: 1;
  background:
    url('/wp/wp-content/uploads/2026/05/slide_children.jpg?auto=format&fit=crop&w=1200&q=80')
    center/cover
    no-repeat;
  min-height: 600px;
}

.hero-right::before{
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,31,99,.55) 0%,
      rgba(0,31,99,.32) 12%,
      rgba(255,255,255,.08) 42%,
      rgba(255,255,255,.12) 100%
    );

  pointer-events: none;
}

.hero-links{
  position: absolute;
  top: 40px;
  right: 60px;
  width: min(410px, 70%);
  display: grid;
  gap: 14px;
}

.hero-link{
  background: rgba(22,52,108,.92);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-family: var(--mincho);
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
  transition: .3s ease;
}

.hero-link:hover{
  transform: translateX(6px);
  box-shadow:
    0 14px 28px
    rgba(0,0,0,.28);
}

.hero-link:nth-child(1):hover{
  background: #c7222c;
}

.hero-link:nth-child(2):hover{
  background: #c7222c;
}

.hero-link:nth-child(3):hover{
  background: #c7222c;
}

.hero-link:nth-child(4):hover{
  background: #c7222c;
}

.hero-link:hover .circle-btn{
  transform: rotate(45deg);
  background: #fff;
}

.hero-link small{
  display: block;
  color: #d9ae4b;
  font:
    700
    10px/1
    sans-serif;
  letter-spacing: .16em;
  margin-bottom: 6px;
}

.circle-btn{
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #d8a744;
  color: #08255e;

  display: grid;
  place-items: center;

  font:
    bold
    13px
    sans-serif;
}

.hero-message{
  position: absolute;
  right: 70px;
  bottom: 40px;
  color: #fff;
  font-size: 26px;
  font-family: var(--mincho);
  letter-spacing: .18em;
  line-height: 1.8;
  text-align: right;
}

.hero-message span{
  color: #d8a744;
}

/* =========================================
  SECTION
========================================= */

.section{
  padding: 80px 0;
}

/* =========================================
  ABOUT
========================================= */

.about-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.about-text h3{
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 28px;
}

.about-text p{
  font-size: 16px;
  color: #283c5e;
}

/* =========================================
  CARDS
========================================= */
.intro{
  display: grid;
  gap: 70px;
  align-items: start;
}
.introtext{
  display: grid;
  gap: 70px;
  align-items: start;
  margin-bottom: 55px;
	color: #283c5e;
}
.intro p{
  font-size: 16px;
  color: #344765;
}

.cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 940px;
  margin-inline: auto;
}

.card{
  background: #fff;
  border: 1px solid #dddfe7;
  padding: 0;
  min-height: 310px;
  position: relative;
  overflow: hidden;
  transition: .35s ease;
  box-shadow:
    0 8px 18px
    rgba(0,0,0,.04);
}

.card::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s ease;
}

.card::after{
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    rgba(201,154,53,.08);
  transition: .35s ease;
	
}
.card::before,
.card::after{
  pointer-events: none;
}

.card a{
  position: relative;
  z-index: 1;
  display: block;
  min-height: 310px;
  padding: 42px 32px 30px;
}

.card-footer{
  position: absolute;
  left: 34px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
}
.card:hover{
  transform: translateY(-8px);
  border-color:
    rgba(201,154,53,.55);
  box-shadow:
    0 22px 46px
    rgba(0,31,99,.14);
}

.card:hover::before{
  transform: scaleX(1);
}

.card:hover::after{
  right: -42px;
  bottom: -42px;

  background:
    rgba(201,154,53,.16);
}

.card:hover .num{
  color: var(--navy);
}

.card:hover .circle-btn{
  background: var(--gold);
  color: #fff;

  transform: rotate(45deg);
}

.num{
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  transition: .35s ease;
}

.num small{
  font:
    700
    10px
    sans-serif;
  color: #777;
  letter-spacing: .18em;
}

.card h3{
  color: var(--navy);
  font-size: 20px;
  font-family: var(--mincho);
  margin: 26px 0 10px;
}

.card .label{
  color: #bb7b22;
  font:
    700
    14px
    sans-serif;
  margin-bottom: 10px;
  letter-spacing: .18em;
}

.card p{
  font-size: 14px;
  color: #4d5e78;
}

.card-footer{
  position: absolute;
  left: 34px;
  right: 28px;
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font:
    700
    13px
    sans-serif;
  color: var(--navy);
}

.card-footer .circle-btn{
  background: var(--navy);
  color: #fff;

  transition: .35s ease;
}

/* =========================================
  STATS
========================================= */

.stats{
  background:
    radial-gradient(
      circle at 80% 15%,
      #001555,
      #001d61 42%,
      #001950
    );

  color: #fff;
  padding: 86px 0;
}

.stats .section-title{
  color: #fff;
}
.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.24);
  margin: 32px 0 4px;
}

.stat{
  padding: 34px;
  border-right:
    1px solid
    rgba(255,255,255,.18);
}

.stat:last-child{
  border-right: 0;
}
.stat{
  font-size: 14px;
  color: #FFF;
  display: block;
}

.stat span{
  color: #d7a846;
  font-size: 48px;
  line-height: 1;
  font-family: var(--mincho);
  padding-right: 6px;
}

.stats p{
  font-size: 16px;
  color: #dbe7ff;
	padding-top: 1rem;
	letter-spacing: 0.08em;
}

.statement{
  margin-top: 42px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.08);
  padding: 20px 28px;
  font-size: 16px;
  font-family: var(--mincho);
	letter-spacing: .08em;
}
.stat-grid-setumei{
  margin: 0 0 46px 0;
}
p.stat-grid-setumei{
	padding-top: 0;
	text-align: right;
	font-size: 12px;
}

/* =========================================
  NEWS
========================================= */

.news-layout{
  display:flex;
  gap:60px;
  align-items:flex-start;
}

.news-main{
  flex:1;
}
.news-cta-head{
  margin-bottom:30px;
}

.news-cta-label{
  margin-bottom:8px;
  color:#c59a2d;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
}
.note-box{
  width:420px;
  flex-shrink:0;
}
.news-wrap{
  display: grid;
  gap: 60px;
  align-items: start;
}

.news-list{
  display: grid;
  gap: 0;
}

.news-item{
  display: grid;
  grid-template-columns: 120px 120px 1fr;

  gap: 20px;
  align-items: center;

  border-bottom: 1px solid var(--line);

  padding: 18px 0;

  font-size: 13px;
}

.tag{
  border: 1px solid #16366f;

  color: #16366f;

  text-align: center;

  padding: 5px 10px;

  font:
    700
    12px
    sans-serif;
}
.tag.event{
  background: #001f63;
  color: #fff;
}

.tag.media{
  border-color: #d0a04b;
  color: #a27620;
}

.tag.news,
.tag.notice,
.tag.oshirase{
  border-color: #16366f;
  color: #16366f;
}
.news-more{
  display: inline-block;
  margin-top: 28px;
  color: var(--navy);
  font:
    700
    14px
    sans-serif;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
  transition: .25s ease;
}

.news-more:hover{
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(4px);
}
.note-box{
  background: var(--gray);
  color: #fff;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.note-box-inner{
  position: relative;
  z-index: 1;
  padding: 30px 40px 40px;
}

.note-label{
  margin: 0 0 70px;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  letter-spacing: .35em;
}

.note-box h3{
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
  font-family: var(--mincho);
}

.note-text{
  margin: 0 0 70px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.8;
}

.note-button{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #696969;
  padding: 16px 34px;
  font:
    700
    16px
    sans-serif;
}
.note-button{
  display:inline-flex;
  align-items:center;
  gap:14px;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
  will-change:transform;
}
a.note-button:hover{
  color: #696969 !important;
}
.note-button:hover{
  transform:translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.16);
}
.note-button span{
  font-size: 18px;
}
.note-button span{
  font-size:18px;
  transition:transform .25s ease;
}
.note-button:hover span{
  transform:translateX(4px);
}

.note-bg-text{
  position: absolute;
  right: -16px;
  bottom: -20px;
  color: rgba(255,255,255,.40);
  font-size: 150px;
  line-height: 1;
  font-family: var(--mincho);
  pointer-events: none;
}

/* =========================================
  INTERVIEW
========================================= */
.interview-cta{
  padding:70px 0;
  background:var(--cream);
}

.interview-cta-head{
  margin-bottom:30px;
}

.interview-cta-label{
  margin-bottom:8px;
  color:#c59a2d;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
}

.interview-cta-head h2{
  color:#00245f;
  font-size:32px;
  font-weight:500;
  letter-spacing:.08em;
}

.interview-cta-list{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.interview-cta-card{
  position:relative;
  display:block;
  padding:28px 58px 28px 28px;
  min-height:120px;
  color:#00245f;
  text-decoration:none;
  border:1px solid #d8deea;
  background:#fff;
  transition:.25s;
}
.interview-cta-card .arrow span{
  transition:transform .25s ease;
}
.interview-cta-card:hover .arrow span{
  transform:translateX(4px);
}
.interview-cta-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:5px;
  height:100%;
  background:#00245f;
  transition:.25s;
}

.interview-cta-card .jp{
  display:block;
  margin-bottom:8px;
  font-size:700
    10px/1
    sans-serif;
  font-weight:700;
  letter-spacing:.05em;
  font-family:var(--mincho);
}

.interview-cta-card .en{
  display:block;
  color:#c59a2d;
  font:
    700
    10px/1
    sans-serif;
  letter-spacing: .16em;
  font-weight:700;
}

.interview-cta-card .arrow{
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#00245f;
  color:#fff;
}

.interview-cta-card:hover{
  background:#00245f;
  color:#fff;
}

.interview-cta-card:hover::before{
  background:#c59a2d;
}

.interview-cta-card:hover .en{
  color:#d9b44a;
}

.interview-cta-card:hover .arrow{
  background:#c59a2d;
}

/* =========================================
  FOOTER
========================================= */

.footer-top{
  background: #f7f4ef;

  text-align: center;

  padding: 54px 0;
}

.sns{
  display: flex;
  justify-content: center;
  gap: 18px;

  margin-top: 20px;
}

.sns span{
  width: 28px;
  height: 28px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: #001f63;
  color: #fff;

  font:
    700
    12px
    sans-serif;
}

.footer{
  background: #001f63;
  color: #cbd7ee;

  padding: 70px 0 30px;

  font-size: 13px;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.footer a{
  display: block;

  margin-bottom: 14px;
}

.copyright{
  border-top:
    1px solid
    rgba(255,255,255,.3);

  text-align: center;

  margin-top: 50px;
  padding-top: 22px;

  font-size: 11px;
}

/* =========================================
  RESPONSIVE
========================================= */

@media (max-width: 760px){

  .container{
    width: calc(100% - 32px);
  }

  .logo-mark{
    width: 20px;
    height: 20px;

    border-width: 2px;
  }

  .nav{
    display: none;
  }

  .hamburger{
    display: block;
  }

  .hero{
    display: block;
    min-height: 0;
    background: var(--navy);
  }
	.home .hero{
		padding-top: 0;
	}
  .hero-left{
    display: block;
    padding: 34px 16px 26px;
  }

  .hero-copy h1{
    font-size: 28px;
    line-height: 1.55;

    margin-bottom: 22px;
  }

  .hero-copy p{
    font-size: 11px;
    line-height: 2;
  }

  .hero-right{
    min-height: 540px;
  }

  .hero-links{
    position: relative;
    top: 2rem;
    right: auto;
    width: calc(100% - 32px);
    margin: 0 auto;
    transform: translateY(-18px);
    gap: 8px;
  }

  .hero-link{
    padding: 12px 14px;
    font-size: 16px;
  }
  .hero-link small{
    font-size: 8px;
  }
  .circle-btn{
    width: 20px;
    height: 20px;
  }
  .hero-message{
    right: 18px;
    bottom: 22px;
    font-size: 16px;
  text-shadow:
    0 1px 2px rgba(0,0,0,.45),
    0 4px 12px rgba(0,0,0,.35),
    0 8px 24px rgba(0,0,0,.25);
  }

  .floating-tabs{
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    height: 46px;
    margin: 0;
    z-index: 50;
  }

  .floating-tabs a{
    font-size: 9px;
    padding: 10px 5px;
  }

  .section{
    padding: 54px 0;
  }

  .section-title{
    font-size: 22px;
    margin-bottom: 26px;
  }

  .about-grid,
  .intro,
  .news-wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .play{
    width: 62px;
    height: 62px;
  }

  .about-text h3{
    font-size: 13px;
  }

  .about-text p,
  .introtext p{
    font-size: 12px;
    line-height: 2;
  }

  .cards{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .card{
	  padding: 0;
	  min-height: 260px;
  }
  .card a{
	  min-height: 260px;
	  padding: 32px 26px;
  }

  .card-footer{
    left: 26px;
    right: 22px;
  }
  .card h3{
    font-size: 16px;
  }

  .card p{
    font-size: 12px;
  }

  .card-footer{
    left: 26px;
    right: 22px;
  }
  .stats{
    padding: 56px 0;
  }

  .stat-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .stat{
    padding: 26px 22px;
    border-bottom:
      1px solid
      rgba(255,255,255,.18);
  }

  .stat:nth-child(2){
    border-right: 0;
  }

  .stat strong{
    font-size: 34px;
  }

  .stats p{
    font-size: 12px;
  }

  .statement{
    font-size: 12px;
    padding: 16px 18px;
  }
	p.stat-grid-setumei{
		margin-bottom: 24px;
	}
  .news-item{
    grid-template-columns: 74px 82px 1fr;
    gap: 8px;
    font-size: 10px;
  }

  .tag{
    font-size: 9px;

    padding: 3px 5px;
  }

  .note-box{
    padding: 34px 24px;

    min-height: 220px;
  }

  .note-box h3{
    font-size: 17px;
  }

  .footer-top{
    padding: 42px 0;
  }

  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .footer{
    padding-bottom: 82px;
  }

  .note-box{
    min-height: 320px;
  }

  .note-box-inner{
    padding: 36px 26px 34px;
  }

  .note-label{
    margin-bottom: 42px;

    font-size: 10px;
  }

  .note-box h3{
    margin-bottom: 34px;
    font-size: 18px;
  }

  .note-text{
    margin-bottom: 36px;
    font-size: 12px;
  }

  .note-button{
    padding: 12px 22px;
    font-size: 13px;
  }

  .note-bg-text{
    right: -20px;
    bottom: -36px;
    font-size: 90px;
  }
  .news-layout{
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .note-box{
    width: 100%;
  }
  .interview-cta{
    padding:50px 0;
  }
  .interview-cta-head h2{
    font-size:24px;
  }

  .interview-cta-list{
    grid-template-columns:1fr;
  }

  .interview-cta-card{
    min-height:auto;
    padding:24px 56px 24px 24px;
  }
	.interview-cta-card .jp{
		font-size:16px;
	}
}