@charset "UTF-8";

:root {
   --color-txt:#161616;
   --color-bl: #0B5CFF;
   --color-wh:#FFFFFF;
   --color-gl:#E0C878;
   --color-gr:#2FBFB8;
   --color-gl-grade:linear-gradient(167deg, rgba(242, 240, 220, 1), rgba(242, 240, 220, 0.2));
   --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
   --font-inter: "Inter", sans-serif;
   --font-inter-t:"Inter Tight", sans-serif;
   --font-shippori:"Shippori Mincho", serif;
   --font-cormorant:"Cormorant", serif;
  }

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}


html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--txt);
  background-color: #fff;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  text-rendering: optimizeLegibility;
  position: relative;
}

/*font*/

.l-container{
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.l-container.g02{
    contain: paint;
}


@media  screen and (min-width:1024px) {
    .l-container {
        width: 100%;
        min-width: 402px;
    }
}

.sec-ttl span {
  display: flex;
  color: var(--color-bl);
  font-family: "Inter Tight", sans-serif;
  font-weight: 300;
  font-size: 2.0rem;
  align-items: center;
  gap: 8px;
  padding-top: 14.45px;
}

.sec-ttl span::before {
  content: "";
  display: inline-block;
  width: 48px;
  aspect-ratio: 1 / 1;
}

.l-inner_l {
  max-width: 402px;
  margin: 0 auto;
}

.l-inner_s /*左右の余白が32px*/ {
  padding: 0 32px;
  max-width: 402px;
  margin: 0 auto;
}

.l-inner_m /*左右の余白が16px*/ {
  padding: 0 16px;
  max-width: 402px;
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }
}
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
/****************************
ヘッダー
*****************************/
.header {
  position: sticky;
  height: 70px;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  left: 0;
  top: 0;
  border-bottom: 1px solid #DDE5EB;
}

.header_wrap {
  display: flex;
  justify-content: space-between;
  padding: 8px 21px 8px 16px;
  position: relative;
}

.header_logo {
  width: 168px;
}

/****************************
ハンバーガー
*****************************/

.header_nav {
  position: absolute;
  right: -100%;
  top: 70px;
  width: 100%;
  height: 100svh;
  max-height: 100dvh;
  overflow-y: auto;           /* ← 縦スクロールを出す */
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール */
  background-color: #fff;
  transition:  all .4s ease;
  padding-bottom: calc(30px + env(safe-area-inset-bottom));
}
@supports (height: 100dvh) {
  .header_nav { height: 100dvh; }
}


.header_hamberger {
  width: 34px;
  height: 100%;
  cursor: pointer;
}

.hamburger span {
  width: 34px;
  height: 1px;
  background-color: var(--color-bl);
  position: relative;
  transition: all .4s ease;
  display: block;
}

.humberger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 9px;
}

.header_nav.active {
  right: 0;
  z-index: 999;
}

.nav_items {
  display: flex;
  flex-direction: column;
  padding: 24px 36px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
}
.nav_items a {
  transition: all .2s ease;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #d9d9d9;
}

.nav_items a::before,
.nav_items a::after {
  content: "";
  display: block;
}
.nav_items a::after {
  background: url(../img/ico_arrow.svg) no-repeat center / contain;
  width: 10px;
  aspect-ratio: 5/ 3;
  transform: rotate(-90deg);
  margin-left: auto;
  transition: all 0.2s ease;
}
.nav_items a:hover:after {
  transform: rotate(-90deg) translateY(6px);
}

.nav_items li > a::before{
  width: 32px;
  aspect-ratio: 1 /1 ;
  margin-right: 19px;
}

.nav_items li:nth-child(1) > a::before { 
  background: url(../img/ico_top.svg) no-repeat center / contain;
 }
.nav_items li:nth-child(2) > a::before { 
  background: url(../img/emj_rocket.png) no-repeat center / contain;
}
.nav_items li:nth-child(3) > a::before{ 
  background: url(../img/emj_star.png) no-repeat center / contain;
}
.nav_items li:nth-child(4) > a::before{ 
  background: url(../img/emj_run.png) no-repeat center / contain;
}
.nav_items li:nth-child(5) > a::before{ 
  background: url(../img/emj_mega.png) no-repeat center / contain;
}
.nav_items li:nth-child(6) > a::before{ 
  background: url(../img/emj_scl.png) no-repeat center / contain;
}
.nav_items li:nth-child(7) > a::before{ 
  background: url(../img/emj_bag.png) no-repeat center / contain;
}
.nav_items li:nth-child(8) > a::before{ 
  background: url(../img/emj_kira.png) no-repeat center / contain;
}
.nav_items li:nth-child(9) > a::before{ 
  background: url(../img/emj_u-n.png) no-repeat center / contain;
}
.nav_items li:nth-child(10) > a::before{ 
  background: url(../img/emj_info.png) no-repeat center / contain;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0px, 0px);
}

.hamburger.active span:nth-child(2) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/****************************
mv
*****************************/
.mv {
 padding-top: 28px;
 text-align: right;
 position:relative;
}

.mv_ttl_wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  text-align: right;
  margin: 0 3.9% 0 auto; 
  z-index: 10;
}
.mv_ttl {
  width: 93%;
}
.mv_movie-wrap {
  margin-left:auto;
  width: 84.079%;
  margin-top: -31px;
  aspect-ratio: 9 / 16;
  overflow-y: hidden;
}

.mv_movie {
  width: 100%;
}

.btn01 {
  display: block;
  width: 154px;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 auto;
  padding: 11px 20px;
  border: 1px solid #B9B9B9;
  border-radius: 99px;
  font-family: var(--font-zenkaku);
}

.btn01 a::after {
  content: url(../img/ico_arrow.svg);
  display: inline-block;
  width: 8px;
  aspect-ratio: 5/3;
  margin-left: 16px;
  transition: all .2s ease;
}
.btn01:hover a::after {
transform: translateY(4px);
}
.scroll-down-wrap {
  position: absolute;
  width: 22px;
  height: calc(100dvh - 70px);
  left: 6.727%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media  screen and (min-width:768px) and (max-width:1024px) {
  .scroll-down-wrap {
  height: 100%;
}
}
@media screen and (min-height: 950px){
  .scroll-down-wrap {
  height: 100%;
}
}
@media screen and (max-width:350px) and (min-height: 620px){
  .scroll-down-wrap {
  height: 100%;
}
}

.scroll-down {
  display: block;
  overflow: hidden;
  width: 22px;
  position: relative;
  padding-bottom: 23px;
}

.scroll-down img {
  width: 16px;
  height: 200px;
  display: block;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  animation: revealAndFade 4000ms infinite;
  animation-fill-mode: both;
  will-change: clip-path, opacity;
}

.scroll-down::after {
  content: "";
  display: block;
  background: url(../img/scl_star.svg) no-repeat center / contain;
  width: 22px;
  aspect-ratio: 1 / 1 ;
  position: absolute;
  bottom: 23px;
  left: 50%;
  animation: rotateAndFadeIn 4000ms infinite;
  will-change: transform, top, opacity;
}

@keyframes revealAndFade {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  45% {
    clip-path: inset(0 0 0 0 );
    opacity: 1;
  }
  50% {
    clip-path: inset(0 0 0 0 );
    opacity: 1;
  }
  70% {
    clip-path: inset(0 0 0 0 );
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 100% 0 );
    opacity: 0;
  }
}

@keyframes rotateAndFadeIn {
  0% {
    top: 0;
    opacity: 0;
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  30% {
    top: 0;
    opacity: 0;
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  50% {
    top: 180px;
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  60% {
    opacity: 1;
    transform: translateX(-50%) rotate(-180deg) scale(1);
  }
  100% {
    top: 180px;
    opacity: 0;
    transform: translateX(-50%) rotate(-320deg) scale(.4);
  }
}
/****************************
進学実績
*****************************/

#accepted .sec-ttl {
  width: 94.064%;
  padding-left: 5.97%;
}
#accepted .sec-ttl span{
  padding-left: 6.19%;
}
#accepted .sec-ttl span::before{
  background: url(../img/emj_rocket.png) no-repeat center / contain;
}

.accepted_wrap {
  margin-top: 48px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
  
}
.accepted_wrap .bg {
  position: absolute;
  background: url(../img/acc_bg.jpg) no-repeat right / cover ;
  width: 100%;
  height: 100%;
  top: 58px;
  left: 0;
  z-index: -2;
}

.accepted_list {
  text-align: center;
  padding-top: 36px;
  display: grid;
  grid-template-columns: 3fr 4fr;
  padding: 28px 7% 30px;
  gap: 48px 50px;
}

.accepted_list > *:nth-child(3) {
  grid-column: 1 / -1;
}

.accepted_list h3{
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 25%; /* 4px */
}

.accepted_list ul {
  padding-top: 20px;
}
.accepted_list li {
  font-family: var(--font-shippori);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
}

#accepted .note {
  text-align: center;
  font-size: 1.2rem;
  font-family: var(--font-shippori);
}

#accepted .img_box {
  width: 100%;
  aspect-ratio: 402 / 592;
  position: relative;
}

.accepted_img01 {
  position: absolute;
  width: 60.199%;
  top: -96px;
  right: 3.98%;
}
.accepted_img02 {
  position: absolute;
  width: 84.079%;
  bottom: 84px;
  left: 3.98%;
}

/****************************
ピックアップ
*****************************/

.pu_menu {
  border-top: 1px solid var(--color-gl);
  padding: 12px 0 0;
}

.pu_menu_wrap {
  background: url(../img/bg_gl_grade.svg) no-repeat center / cover;
  position: relative;
}

.pu_menu_wrap::before {
  content: "";
  background: url(../img/emj_fever.png) no-repeat center / contain;
  width: 64px;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}

.pu_menu_wrap h2 {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-weight: 500;
  color: #D19029;
  font-size: 3.8rem;
  text-align: center;
  padding: 33px 0 11px;
}

.pu_menu_box {
  display: grid;
  grid-template-columns: 121fr 130fr 121fr;
  gap: 4px;
  padding: 0 3.98% 45px;
}

.pu_card {
  background: #fff;
  border: 1px solid var(--color-gl);
  font-family: var(--font-zenkaku);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.pu_card::after {
  content: "";
  background: url(../img/ico_hand.svg) no-repeat center / contain;
  width: 20px;
  aspect-ratio: 21 / 23;
  display: block;
  transition: all .2s ease;
}

.pu_menu .arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 12px;
}

.pu_menu .arrow img {
    width: 26px;
}

.pu_menu .arrow::before,
.pu_menu .arrow::after {
  content: "";
  background-color: var(--color-gl);
  border-radius: 5px;
  flex-grow: 1;
  height: 1px;
}

.pu_menu .arrow::before {
  margin-right: 11px;
}
.pu_menu .arrow::after {
  margin-left: 11px;
}

.pu_card:hover::after {
  transform: translateY(6px);
}

/****************************
３つの特徴
*****************************/

#feature .img_box {
  width: 100%;
  aspect-ratio: 402 / 1116;
  position: relative;
}

.feature_img01 {
  width: 71.144%;
  position: absolute;
  top: 0;
  left: 0;
}
.feature_img02 {
  width: 80.099%;
  position: absolute;
  top: 42.652%;
  right: 0;
}
.feature_img03 {
  width: 100%;
  position: absolute;
  bottom: 48px;
  right: 0;
}


#feature .sec-ttl {
  width: 75.781%;
  padding-left: 2.238%;
}
#feature .sec-ttl span{
  padding-left: 8.383%;
}
#feature .sec-ttl span::before{
  background: url(../img/emj_star.png) no-repeat center / contain;
}

.feature_wrap {
  padding-bottom: 125px;
  position: relative;
}

.feature_wrap::before {
  content: "";
  position: absolute;
  background: url(../img/bg_gr_grade.jpg) no-repeat center / cover;
  inset:112px 0 0 0;
  z-index: -1;
}

.feature_card_wrap {
  display: flex;
  flex-direction: column;
  gap: 68px;
  margin-top: 48px;
}

.feature_card{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature_card h3 {
  color: var(--color-bl);
  font-family: var(--font-zenkaku);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  background-color: #fff;
  border: 3px solid var(--color-bl);
  padding: 16px 0;
  position: relative;
}

.feature_card h3::after {
  content: "";
  position: absolute;
  background-color: var(--color-bl);
  width: 3px;
  height: 45px;
  transform: rotate(45deg);
  bottom: -32px;
  right: 49.67%;
}

.feature_card img {
  padding: 44px 0 45px;
  margin: 0 auto;
}
.feature_card.--01 img {
    width: 32.352%;
}
.feature_card.--02 img {
    width: 33.823%;
}
.feature_card.--03 img {
    width: 32.647%;
}

/****************************
course
*****************************/
#course .img_box {
  width: 100%;
  aspect-ratio: 402 / 606;
  position: relative;
}

.course_img01 {
  width: 70.149%;
  position: absolute;
  top: 7.92%;
  right: 3.98%;
}
.course_img02 {
  width: 70.646%;
  position: absolute;
  bottom: 7.92%;
  left: 3.98%;
  z-index: -1;
}
#course .sec-ttl {
  width: 88%;
  padding-left: 1.99%;
}
#course .sec-ttl span{
  padding-left: 6.954%;
  color: var(--color-gl);
}
#course .sec-ttl span::before{
  background: url(../img/emj_run.png) no-repeat center / contain;
}

.slide_general {
  padding: 46px 0 79px;
}
.course_wrap{
  position: relative;
  padding-bottom: 88px;
  overflow: hidden;
}

.course_wrap::before{
  content: "";
  position: absolute;
  background: url(../img/bg_gl_l.svg) no-repeat center / cover;
  inset:115px 0 0 0;
  z-index: -1;
}

.course_wrap h3 {
  color: var(--color-bl);
  font-family: var(--font-zenkaku);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  background-color: #fff;
  border: 2px solid var(--color-bl);
  padding: 20px 0;
  margin: 0 7.96%;
  margin-bottom: 40px;
}

.course-slide {
  width: 84.07%;
  background-color: #fff;
  border: 1px solid var(--color-bl);
  border-radius: 8px;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.20);
  height: auto;
}

.course-slide h4 {
  font-size: 2.4rem;
  text-align: center;
  font-family: var(--font-shippori);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-bl);
}

.course-slide p {
  padding: 0 32px;
}
.course-slide.--nr {
  border: 1px solid var(--color-gr);
}
.course-slide.--nr h4 {
  color: var(--color-gr);
}

.slide_nursing h3 {
 color: var(--color-gr);
   border: 2px solid var(--color-gr);
}

/****************************
生徒の声
*****************************/

#voices .img_box {
  width: 100%;
  aspect-ratio: 402 / 552;
  position: relative;
}

.voices_img01 {
  width: 47.512%;
  position: absolute;
  top: 8.695%;
  left: 3.98%;
}
.voices_img02 {
  width: 57.462%;
  position: absolute;
  top: 43.659%;
  right: 3.98%;
  z-index: -1;
}

.voices_wrap{
  position: relative;
  padding-bottom: 104px;
}

.voices_wrap::before{
  content: "";
  position: absolute;
  background: url(../img/bg_gr_grade.svg) no-repeat center / cover;
  inset:112px 0 0 0;
  z-index: -1;
}

.voices_wrap::after {
  content: "";
  position: absolute;
  background: url(../img/frame_b.png) no-repeat center / 100%;
  width: 100%;
  aspect-ratio: 804 / 104;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#voices .sec-ttl {
  width: 63.681%;
  margin-left: 3.98%;
}
#voices .sec-ttl span{
  padding-left: 8.19%;
}
#voices .sec-ttl span::before{
  background: url(../img/emj_mega.png) no-repeat center / contain;
}

.voice-card {
  margin: 90px 0 0 ;
  border: 1px solid var(--color-bl);
  border-radius: 8px;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.20);
  padding: 32px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.voice-illust {
  width: 116px;
  margin: -80px auto 19px;
}

.voice-name {
  margin-bottom: 20px;
}

/****************************
青春の一コマ
*****************************/
#scene {
  background: url(../img/bg_grade.webp) no-repeat center / cover;
  padding-bottom: 106px;
  position: relative;
}

#scene::after {
  content: "";
  position: absolute;
  background: url(../img/frame_w.svg) no-repeat center / 100%;
  width: 100%;
  aspect-ratio: 201 / 26;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#scene .sec-ttl {
  width: 65.671%;
  margin: 0 auto;
}

#scene .sec-ttl span{
  color: #fff;
  text-align: center;
  padding-bottom: 12px;
  justify-content: center;
}
#scene .sec-ttl span::before{
  content: none;
}

#scene .sec-ttl-wrap {
  position: relative;
  padding-top: 30px;
}

#scene .sec-ttl-wrap::before {
  content: "";
  display: inline-block;
  background:url(../img/emj_scl.png) no-repeat center / contain;
  width: 48px;
  aspect-ratio: 1 /1 ;
  position: absolute;
  left: -57px;
  bottom: 12px;
}
#scene .sec-ttl-wrap::after {
  content: "";
  display: inline-block;
  background:url(../img/emj_smile.png) no-repeat center / contain;
  width: 48px;
  aspect-ratio: 1 /1 ;
  position: absolute;
  right: -57px;
  bottom: 12px;
}

.scene_img_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  padding-bottom: 64px;
}

.scene_img_wrap .img_box.--01{
  width: 100%;
  margin: -23px auto 0;
}

.scene_img_wrap .img_box.--02 {
  width: 92.039%;
  left: 0;
}

.scene_img_wrap .img_box.--03 {
  width: 100%;
  position: relative;
  aspect-ratio: 402 / 542;
}

.scene_img_wrap .img_box.--03 img:nth-child(1) {
  position: absolute;
  width: 48.258%;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.scene_img_wrap .img_box.--03 img:nth-child(2) {
  position: absolute;
  width: 79.601%;
  right: 0;
  top: 0;
}

.btn02 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  width: 217px;
  background-color: var(--color-bl);
  color: #fff;
 font-size: 1.3rem;
  font-weight: 500;
  margin: 0 auto;
  padding: 0 28px;
  border: 1px solid #fff;
  border-radius: 99px;
  font-family: var(--font-inter-t);
}

.btn02::after {
  content: "";
  display: inline-block;  
  mask: url(../img/ico_arrow.svg) no-repeat center / contain;
  -webkit-mask: url(../img/ico_arrow.svg) no-repeat center / contain;
  background-color: #fff;
  width: 10px;
  aspect-ratio: 5 / 3;
  transform: rotate(-90deg);
  transition: all .2s ease;
}

.btn02:hover::after {
  transform:  rotate(-90deg) translateY(6px);
}

/****************************
スクールライフのリアル
*****************************/
#life .bg_wrap {
  position: relative;
  padding-bottom: 122px;
}
#life .bg_wrap::after {
  content: "";
  position: absolute;
  background: url(../img/bg_gl_l.svg) no-repeat center / cover;
  inset:116px 0 0 0;
  z-index: -2;
}

#life .sec-ttl {
  margin-top: 46px;
  width: 86.89%;
  margin-left: 1.99%;
}

#life .sec-ttl span{
  padding-left: 6.876%;
  color: var(--color-gl);
}
#life .sec-ttl span::before{
  background: url(../img/emj_bag.png) no-repeat center / contain;
}

.life_box {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3 ,auto);
  max-width: 100%;
}

.life_box.--01 {
  margin-top: 20px;
}
.life_box:nth-child(n+2) {
  margin-top: 64px;
}

.life_box.--left .item01 {
  grid-row: 1;
  grid-column: 1 / 2;
}
.life_box.--left .item02 {
  grid-row: 1;
  grid-column: 2 / 4;
  
}
.life_box.--left .item03 {
  grid-row: 2;
  grid-column: 1 / 3;
  position: relative;
  z-index: -1;
}
.life_box.--left .item04 {
  grid-row: 2;
  grid-column: 2 / 4;
}
.life_box.--left .item05 {
  grid-row: 3;
  grid-column: 2 / 4;
}

.life_box.--right .item01 {
  grid-row: 1;
  grid-column: 3 / 4;
  justify-self: end;
}
.life_box.--right .item02 {
  grid-row: 1;
  grid-column: 1 / 3;
  
}
.life_box.--right .item03 {
  grid-row: 2;
  grid-column: 2 / 4;
  position: relative;
  z-index: -1;
}
.life_box.--right .item04 {
  grid-row: 2;
  grid-column: 1 / 3;
}
.life_box.--right .item05 {
  grid-row: 3;
  grid-column: 1 / 4;
}

.time_txt {
  display: inline-flex;
  align-items: center;
  height: 40px;
  font-weight: 700;
  line-height: 1.5;
  padding: 14px 22px;
  border: 2px solid var(--color-txt);
  border-radius: 99px;
  margin-top: 18px;
  background:#fff;
  margin-left: 78px;
}

.--right .time_txt {
  margin-left: 0;
}
.--right .time_txt {
  margin-top: 74px;
}

.time_img {
  width: 76px;
}

.life_box .main_img {
  width: 217px;
  margin-top: -43px;
  z-index: -1;
}
.--right .main_img {
  margin-top: -82px;
  justify-self: end;
}

.--right .item04 {
  margin-left: 0;
  margin-top: 21px;
  justify-self: start;
}
.--left .item04 {
  margin-left: 0;
  margin-top: 61px;
  justify-self: start;
}

.life_box:nth-child(1).--left > .item04 {
  width: 163px;
  margin: 61px 20px 0 auto;
}

.life_box:nth-child(2).--right > .item04 {
  width: 209px;
}

.life_box:nth-child(3).--left > .item04 {
  width: 216px;
  margin: 61px 10px 0 auto;
}
.life_box:nth-child(4).--right > .item04 {
  width: 248px;
}
.life_box:nth-child(5).--left > .item04 {
  width: 195px;
  margin: 61px 31px 0 auto;
}

.item05 {
  width: 262px;
  justify-self: end;
  margin-top: -26px;
}
.--right .item05 {
  justify-self: start;
}
.life_box:nth-child(2) .item05 {
  width: 326px;
}
.life_box:nth-child(4) .item05 {
  margin-top: -15px;
}

#life .img_box {
  width: 100%;
  aspect-ratio: 402 / 586;
  position: relative;
}

.lf_img01 {
  width: 262px;
  position: absolute;
  top: 24px;
  left: 0;
}
.lf_img02 {
  width: 217px;
  position: absolute;
  top: 174px;
  right: 0;
  z-index: -1;
}

/****************************
インタビュー
*****************************/

.interview .bg_wrap {
  background: url(../img/bg.webp) no-repeat center / cover;
  padding: 10px;
  border-radius: 80px;
  margin-top: -69px;
  position: relative;
  margin-bottom: 64px;
}
.interview .bg_wrap::before {
 content: "";
 background: url(../img/int_img01.png) no-repeat center /contain;
 width: 122px;
 aspect-ratio: 1 /1 ;
 position: absolute;
 right: 43px;
 top: -26px;
}

.interview .bg_inner {
  background: #fff;
  border-radius: 70px;
  padding: 45px 0 56px;
    text-align: center;
}

#interview .sec-ttl {
  width: 290px;
  aspect-ratio: 290 / 218;
  margin: 0 auto;
  background: url(../img/int_star01.png) no-repeat center / 100%;
  padding: 46px 0 0 ;
  position: relative;
}

#interview .sec-ttl::before {
  content: "";
  background: url(../img/int_img02.png) no-repeat center / contain;
  position: absolute;
  width: 68px;
  aspect-ratio: 1 / 1;
  left: -58px;
  bottom: 52px;
}
#interview .sec-ttl::after {
  content: "";
  background: url(../img/int_img03.png) no-repeat center / contain;
  position: absolute;
  width: 68px;
  aspect-ratio: 1 / 1;
  right: -28px;
  bottom: -5px;
}

#interview .sec-ttl-wrap {
    transform: translateX(10px);
    width: 252px;
}

#interview .sec-ttl span{
  text-align: center;
  padding-bottom: 12px;
  justify-content: center;
}
#interview .sec-ttl span::before{
  content: none;
}

.interview_inner {
  max-width: 402px;
  margin: 0 auto 20px;
} 

.intro p{
  font-size: 1.8rem;
  line-height: 1.5;
  color: #000;
  margin: 16px 0 18px;
}

.int_main:nth-child(n+3) {
  margin-top: 40px;
}

.member-wrap {
  display: flex;
  gap: 15px;
  margin: 0 11px;
}

.member-wrap img:nth-child(2) {
  width: 60px;
  padding-top: 12px;
}

.writer_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 28px 11px 0;
}

.interview .writer_wrap p {
  color: var(--color-bl);
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid var(--color-bl);
  border-radius: 99px 0 0 99px;
  padding: 18px 0 18px 22px;
  border-right: none;
  position: relative;
  margin-top: 18px;
}
.interview .writer_wrap p::after {
  content: "";
  position: absolute;
  background:url(../img/int_frame.svg) no-repeat center / contain;
  width: 26px;
  right: -25px;
  top: -1px;
  bottom: -1px;
}

.writer_box {
  width: 110px;
}
.writer_wrap img:nth-child(2) {
  width: 40px;
  padding-top: 8px;
}

.int_q_ttl {
  font-family: var(--font-shippori);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.int_q_ttl span {
  display: block;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  font-family: var(--font-cormorant);
  font-size: 3.2rem;
  font-weight: 400;
}

.int_q_ttl span::before {
  content: "";
  background: url(../img/int_star02.png) no-repeat center / contain;
  position: absolute;
  width: 105px;
  aspect-ratio: 212 / 201;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  z-index: -1;
}

.comment_box {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  text-align: left;
  margin: 0 6px;
  display: flex;
}

.comment_box .bold {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}

.comment_box:nth-child(n+2) {
  margin-top: 23px;
}

.comment_img {
  display: block;
  width: 56px;
  margin-right: 14px;
  flex-shrink: 0;
  padding-top: 6px;
}

.int_imgbox {
  padding: 20px 0;
}
.int_imgbox.--01,
.int_imgbox.--03,
.int_imgbox.--05,
.int_imgbox.--06,
.int_imgbox.--07,
.int_imgbox.--08,
.int_imgbox.--09,
.int_imgbox.--10,
.int_imgbox.--11,
.int_imgbox.--12,
.int_imgbox.--13{
  width: 100%;
  padding: 20px 16px;
}

.int_imgbox.--02,
.int_imgbox.--08 {
  display: grid;
  grid-template-columns: repeat(2 , 1fr);
  padding: 20px 3px;
  gap: 16px;
}

.int_imgbox.--02 .img01,
.int_imgbox.--08 .img02 {
  width: 180px;
  margin-bottom: 68px;
}
.int_imgbox.--02 .img02,
.int_imgbox.--08 .img01 {
  width: 180px;
  margin-top: 68px;
}
.int_imgbox.--04{
  width: 180px;
  margin: 0 auto;
}

.int_hide {
  display: none;
  padding-top: 20px;
}
.int_hide.show {
  display: block;
}

#interview .btn02::after {
  transform: rotate(0deg);
}

#interview .btn02.show {
  background-color: #fff;
  color: var(--color-bl);
  border: solid 1px var(--color-bl);
}

#interview .btn02.show::after {
  background-color: var(--color-bl);
  transform: rotate(-180deg);
}

#interview .btn02:hover.show::after {
  transform:  rotate(-180deg) translateY(6px);
}
.int_imgbox + .comment_box {
  margin-top: 0;
}


/****************************
よくある質問
*****************************/
#faq .sec-ttl {
  width: 63.184%;
  margin-left: 2.73%;
  padding: 0 0 33px;
}
#faq .sec-ttl span{
  padding-left: 21PX;
}
#faq .sec-ttl span::before{
  background: url(../img/emj_u-n.png) no-repeat center / contain;
}
summary {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  gap: 12px;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 18px;
  border: 1px solid var(--color-bl);
  border-radius: 10px;
  transition: all 0.4s;
}

details[open] summary {
  border-radius: 10px 10px 0 0 ;
}

summary::before {
  display: block;
  content: "Q";
  font-size: 3.2rem;
  font-family: var(--font-inter-t);
  font-weight: 500;
  color: var(--color-bl);
}

details:nth-child(n+2) {
  margin-top: 16px;
}
.content {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  padding: 18px 17px 18px 18px;
  letter-spacing: 0.05em;
  gap: 20px;
  border: 1px solid #cacaca;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background:#f9f9f9;
}
.content::before{
  display: block;
  content: "A";
  font-size: 3.2rem;
  font-family: var(--font-inter-t);
  font-weight: 500;
  color: var(--color-gl);
}

.toggle {
position: relative;
display: block;
width: 20px;
aspect-ratio: 1 / 1;
transition: transform 0.4s;
}

.toggle::before,
.toggle::after {
content: "";
background-color: #000;
position: absolute;
width: 20px;
height: 2px;
top: 50%;
right: 0px;
transition: transform .4s
}

.toggle::before {
transform: translateY(-50%) rotate(90deg);
top: 50%;
}

details[open] .toggle::before {
transform: rotate(180deg);
transition: .2s
}
details[open] .toggle::after {
transform: rotate(180deg);
opacity: 0;
transition: .1s
}

/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

/****************************
学校案内
*****************************/

#about .sec-ttl {
  width: 56.965%;
  min-width: 240px;
  margin-left: 2.73%;
  padding: 0 0 36px;
}
#about .sec-ttl-wrap img{
  width: 90.39%;
}
#about .sec-ttl span{
  padding-left: 21PX;
}
#about .sec-ttl span::before{
  background: url(../img/emj_info.png) no-repeat center / contain;
}
.about_wrap {
  position: relative;
  padding-bottom: 40px;
}
.about_wrap::before{
  content: "";
  position: absolute;
  background: url(../img/bg_gr_grade.svg) no-repeat center / cover;
  inset:169px 0 0 0;
  z-index: -1;
}

.scl_info {
  margin: 45px auto;
  table-layout: fixed;
  max-width: 100%;
}

.scl_info th {
  width: 80px;
  padding-right: 16px;
}

.scl_info th,
.scl_info td {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.3;
}
 .scl_info td {
  font-weight: 400;
}

.map_wrap {
    position: relative;
    width: 100%;
    padding-top: 75%;
    height: 0;
}

.map_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/****************************
footer
*****************************/
.footer_nav .nav_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px 29px;
  font-size: 1.5rem;
  padding: 37px 31px 25px;
}

.footer_nav .nav_items a {
  border-bottom: none;
  padding: 0;
}

.footer_nav .nav_items li > a::before {
  width: 24px;
  margin-right: 8px;
}
.footer_logo {
  width: 222px;
  margin: 0 auto 13px;
}
.copy-right {
  font-size: 1.1rem;
  font-family: var(--font-inter-t);
  text-align: center;
  margin-bottom: 25px;
}

/****************************
CTAボタン
*****************************/
.cta-btn_wrap {
  width: 100%;
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 50;
}

.fixed.cta-btn_wrap {
  position: fixed;
  left: 0;
  bottom: calc(23px + env(safe-area-inset-bottom)); /* iOS安全域 */
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
/* 表示状態 */
.fixed.cta-btn_wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .fixed.cta-btn_wrap { transition: none; }
}

.cta-btn {
  width: 190px;
  border-radius: 99px;
  padding: 16px;
  background: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-bl);
  border: 2px solid var(--color-bl);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
}

.cta-btn:hover {
  transform: translateY(-6px);
}

.cta-btn.--02 {
  background-color: var(--color-bl);
  color: #fff;
}

.cta-btn.--01::before,
.cta-btn.--02::before {
  content: "";
  background: url(../img/ico_cta01.svg) no-repeat center / contain;
  width: 20px;
  aspect-ratio: 1 / 1;
  display: block;
}

.cta-btn.--02::before {
  background-image: url(../img/ico_cta02.svg);
}
/*************************
pcレイアウト
**************************/

.lp-wrap {
  display: block;
}
.lp-wrap> .g02 {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .lp-wrap {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr  550px 1fr;
    grid-template-rows: auto;
    gap: 0px 0px;
    grid-template-areas: "g01 g02 g03";
  }
  .lp-wrap > .g01 {
    grid-area: g01;
    z-index: 1;
  }
   .lp-wrap > .g02 {
    grid-area: g02;
    z-index: 2;
    border-left:4px solid #fff ;
    border-right: 4px solid #fff;
    width: 100%;
  }
  .lp-wrap > .g03 {
    grid-area: g03;
    position: relative;
    z-index: 1;
  }
  .lp-container.g01,
  .lp-container.g03 {
    opacity: 1;
  }
}
@media screen and (max-width:1024px) {
  .lp-container.g03 {
    display: none;
  }
   .lp-wrap {
    grid-template-columns: 1fr 60vw;
    grid-template-areas: "g01 g02";
  }
}

/****************************
pc-左
*****************************/
.lp-container.g01 {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: block;
  overflow-y: auto;
}

@media screen and (max-width:767px) {
  .lp-container.g01{
    display: none;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: calc((100vw - 550px) / 2);
  height: 100vh;
  background: url(../img/pc_bg-l.jpg) no-repeat center/ cover;
  z-index: -1;
}

.g03 .lp-fixnav-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pc_bg-l.jpg) no-repeat center/ cover;
}
.g03 .lp-fixnav-bg::before {
  background: url(../img/pc_bg-r.jpg) no-repeat center/ cover;
}
.g01 .lp-fixnav-inner {
  aspect-ratio: 368 / 930;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 2.4%;
  padding: clamp(16px, 3vh, 75px) 16px;
  max-width: 368px;
  position: sticky;
  top: 0;
  right: 0;
}
.pc_nav {
  background: rgba(255, 255, 255, 0.4);
  padding: 32px 13.858% 32px 10.869% ;
  width: 100%;
}

.pc_nav .nav_items {
  padding: 0;
  font-size: max(1.2rem, 0.88vw);
}

@media screen and (max-width:1024px) {
  .pc_nav .nav_items {
  font-size: 1.5rem;
}
}

@media screen and (min-width:768px) and (max-width:1024px) {
  .header {
  max-width: 60vw;
}
body::before {
  width: 40vw;
}
}

.pc_nav .nav_items a {
  padding: 3% 0;
}

.pc-cta.cta-btn_wrap {
  width: 100%;
  flex-direction: column;
  gap: 16px;
}
.pc-cta_button {
  transition: all .2s ease;
}
.pc-cta_button:hover {
  transform: translateY(-6px);
}



/****************************
pc-右
*****************************/
.lp-container.g03 {
  position: sticky;
  width: 100%;
  display: block;
  top: 0;
  right: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:1024px) {
  .lp-container.g03{
    display: none;
  }
}

.g03 .lp-content-inner {
  width: calc(100% * 600 / 681);
  aspect-ratio: 613 / 1027;
  padding: 2.9% 4.4% 3.1% 6.5%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/****************************
Swiper
*****************************/

/* バナーエリア */
.swiper_bn01,
.swiper_bn02 {
  max-width: 100%;
  margin-top: 40px;
}

.swiper_bn02 {
  margin-bottom: 48px;
}
.swiper_bn01 .swiper-slide,
.swiper_bn02 .swiper-slide {
height: auto;
}
.swiper_bn01 .swiper-slide  img,
.swiper_bn02 .swiper-slide  img{
  height: 100%;
}

.swiper01-pagination,
.swiper02-pagination{
  position: static !important;
  margin:23px auto;
  padding: 0;  
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.swiper01-pagination .swiper-pagination-bullet,
.swiper02-pagination .swiper-pagination-bullet {
  height: 3px;
  width: 3.2rem;
  border-radius: 0;
  background-color: #D3D3D3;
  opacity: 1;
  margin:0!important;
  bottom: 0 !important;
  transition: all .2s ease;
}
.swiper01-pagination .swiper-pagination-bullet-active,
.swiper02-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-bl);
}

.swiper-button-prev {
  left: 21px;
}
.swiper-button-next {
  right: 21px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background: url(../img/ico_sw_arrow.svg) no-repeat center / contain;
  width: 25px;
  height: 40px;
  -webkit-filter: drop-shadow(0 0 13px rgba(0, 0, 0, 1));
  filter: drop-shadow(0 0 13px rgba(0, 0, 0, 1));
}

.swiper-button-prev:after {
  transform: rotate(180deg);
}

.swiper_ge-pagination,
.swiper_nr-pagination{
  position: static !important;
  margin:35px auto;
  padding: 0;  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.swiper_ge-pagination .swiper-pagination-bullet,
.swiper_nr-pagination .swiper-pagination-bullet{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;     
  margin: 0;                
  opacity: 0.3;                
  font-size: 1.4rem;
  line-height: 1.4;             
  cursor: pointer;
  font-family: var(--font-zenkaku);
  font-weight: 500;
}

.swiper_ge-pagination .swiper-pagination-bullet-active {
  color: var(--color-bl);
  opacity: 1;
}
.swiper_nr-pagination .swiper-pagination-bullet-active {
  color: var(--color-gr);
  opacity: 1;
}

.swiper-nursing,
.swiper-general,
.swiper-nursing .swiper-wrapper,
.swiper-general .swiper-wrapper,
.swiper-nursing .swiper-slide,
.swiper-general .swiper-slide{
  overflow: visible;
}

.swiper_scene .swiper-wrapper {
  transition-timing-function: linear;
  height: 318px;
}
.swiper_scene .swiper-slide img {
  height: auto;
  width:100%;
}


 
