@charset "UTF-8";

:root{
    --primary-green:#197414;
    --primary-green-light:#D5EBA6;
    --primary-green-pale:#EBF5D2;
    --sub-yellow:#FDF572;
    --pink:#FDFBFE;
    --lightblue:#E1E9EE;
    --link-blue:#4CA1EB;
    --text-color:#191D25;
    --background-color: #FEFEFE;
    --lightgray:#EEEEEE;
    --kaitorei-color:#FF7BAC;
    --tag-color:#1a1a1a;

    --space-xs: 16px;
    --space-sm: 24px;
    --space-md: 40px;
    --space-lg: 64px;
    --space-xl: 96px;
    --space-2xl: 128px;
}
.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", sans-serif;
    font-style: normal;
}
.noto-sans-jp{
font-family: "Noto Sans JP", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}

*, *::before, *::after {
    box-sizing: border-box;

}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    scroll-behavior: smooth;
    font-size: 18px;
}

body, p, span{
    color: var(--text-color);
}
p{
    line-height: 2;
}
.bg{
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(-30deg, #E1E9EE 0%, #FCF6F6 20%, #FDFCFC 90%, #FCF6F6 100%);
    height: 100vh;
    width: 100%;
    z-index: -2;

}



header{
    padding: 0.8rem;
    background-color: var(--background-color);
}

header img{
    display: block;
    margin-right: auto;
    width: 229px;
}


.fixedmenu_wrap{
    position: fixed;
    right: 0;
    top: 2%;
    z-index: 100;
}
.bunner_wrap{
    transform: translateX(calc(100% - 30px));
    background: var(--kaitorei-color);
    box-shadow: 0 0px 5px 0px rgba(255, 123, 172, 0.6);
    border-radius: 8px  0 0 8px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px 0 0 1px;
    transition: 0.4s ease-in-out ;
    position: relative;
    z-index: 101;
    cursor: pointer;
    animation: fixedbunner 3s infinite ease-in-out;
}
.bunner_wrap::before{
content: "◀";
width: 20px;
height: 80px;
clip-path: ellipse();
background-color: var(--kaitorei-color);
display: flex;
justify-content: center;
align-items: center;
color: var(--background-color);
position: absolute;
left: -9px;
font-size: 8px;
z-index: 100;
}

/* @keyframes fixedbunner {
  0% {
    transform: translateX(calc(100% - 30px));
  }
  40% {
    transform: translateX(calc(98% - 30px));
  }
  80% {
    transform: translateX(calc(100% - 25px));
  }

  85% {
    transform: translateX(calc(100% - 30px));
  }
    90% {
    transform: translateX(calc(100% - 25px));
  }
  100% {
    transform: translateX(calc(100% - 30px));
  }
} */

.bunner_wrap.is-active{
        transform: translateX(0);
}
.bunner_wrap.is-active::before{
content: "▶";
}
.bunner_wrap p{
    display: block;
    width: 30px;
    margin: auto;
    color: var(--background-color);
    font-size: 14px;
    font-weight: 600;

    text-align: center;
}
.rl{
    display: block;
    margin: auto;
    color: var(--background-color);
}
.lr{
    display: block;
    margin: 0 auto;

    color: var(--background-color);
    writing-mode: vertical-lr;
}


.fixedSNSmenu_wrap {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

.fixedSNSmenu_wrap.is-show {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    visibility: visible;
}
.snsIcon_box{
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: end;
    background:rgba(255, 255, 255, 0.5
        );
        box-shadow: 0 0px 5px 0px rgba(218, 218, 218, 0.6);
    padding: 12px 8px 12px 8px;
    border-radius: 12px 0 0 12px;
        backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.snsIcon_wrap{
    position: relative;
    display: inline-block;
}
.IGIcon, .XIcon, .YTIcon{
    width: 2vw;
    min-width: 40px;
    height: 2vw;
    min-height: 40px;
    padding: 8px;
    clip-path: circle();
}
.IGIcon{
background: linear-gradient(
        30deg,
        #7638FA 10%,
        #D300C5 25%,
        #FF0069 50%,
        #FF7A00 75%,
        #FFD600 100%
    );
}

.XIcon{
    background-color: #000000;
}
.YTIcon {
    background-color: #FF0000;
}
.IGName, .XName, .YTName{
    position: absolute;
    top: 50%; 
    right: 100%;
    opacity: 0;
    transform: translateX(-2rem);
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;

    pointer-events: none;
    white-space: nowrap;
}
.snsIcon_wrap:hover .IGName,
.snsIcon_wrap:hover .XName,
.snsIcon_wrap:hover .YTName {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(-50%);

}
.snsIcon_wrap:hover .IGIcon,
.snsIcon_wrap:hover .XIcon,
.snsIcon_wrap:hover .YTIcon {
    opacity: 0.8;

}
.snsIcon_wrap span{
    display: block;
    margin: auto 20px auto auto;
    background: rgba(255,255, 255, 80%);
    padding: 0.4rem;
    border-radius: 8px;
}





.lg{
    color: var(--primary-green);
    font-size: 2.3vw;
    font-weight: 600;
}


.mainContent{
    width: 100%;
    position: relative;
    aspect-ratio: 5/2;
}

.title_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin: auto;
    padding: 2vw 4vw;
    border: var(--primary-green) solid 1px;
    backdrop-filter: blar(10px);
    box-shadow: 0 0 10px rgb(136 193 136);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background-color: rgba(255, 255, 255, 0.1);
    min-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    justify-content: center;
    align-items: center;
}
.subtitle,.maintitle,.title2026,.mainmessage{
width: fit-content;

}

.subtitle{
    background-color: var(--primary-green);
    color: var(--background-color);
    padding: var(--space-xs) var(--space-lg);
    font-size: 3vw;
    white-space: nowrap;
    border-radius: 8px;
}
.maintitle{
    font-size: 6vw;
}
.title2026{
    margin-left: 1rem;
    font-size: 3vw;
}
.mainmessage{
border-top: var(--primary-green) 1px solid;
    border-bottom: var(--primary-green) 1px solid;
    padding: 2vw 4vw;
    font-size: 1.6vw;
    font-weight: 400;
}
.mainmessage_first,.mainmessage_second{
    color: var(--primary-green);
}

.fv_scheduleDate{
    display: flex;
    gap: 0.1vw;
    align-items: end;
}


.fv_scheduleMonth{
    display: block;
    font-size: 1.3vw;
}
.fv_scheduleDay{
    display: block;
    font-size: 2vw;
}
.fv_scheduleDayOfWeek{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 1.2vw;
    height: 1vw;
    border-radius: 4px;
    background-color:#379B41;
    color: var(--background-color);
    font-size: 0.8vw;
}

.fv_scheduleDayOfWeek.sun{
    background-color:#E63838;
}

.fv_event{
    display: flex;
    gap: var(--space-lg);
    align-items: center;

}
.fv_event_wrap{
    display: flex;
    gap: 1.5vw;
}
.fv_event1,
.fv_event2{
    background: var(--primary-green-pale);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--background-color);
    width: 5.5vw;
    height: 5.5vw;
    padding: var(--space-xs);
    border-radius: 100vh;
    position: relative;
    
}
.fv_event1::before,
.fv_event2::before{
    content: "";
    width: 6vw;
    height: 6vw;
    position: absolute;
    border: var(--primary-green-light) dotted 5px;

    box-sizing: content-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 100vh;

}

.fv_event1-text,
.fv_event2-text{
    font-size: 2.3vw;
    font-weight: 600;

}
.titleDiscription{
    background-color: var(--primary-green-pale);
    margin:  0 auto var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    position: relative;
}

.titleDiscription-title{
    display: block;
    width: fit-content;
    margin: 0 auto var(--space-md);
    font: bold 24px / 2 Zen Maru Gothic;
    color: var(--primary-green);
    text-align: center;
    border: dotted var(--background-color) 8px;
    padding: var(--space-xs) var(--space-md);

}

.titleDiscription-text{
    border-top: solid 1px var(--primary-green);
    border-bottom: solid 1px var(--primary-green);
    padding: var(--space-sm) var(--space-xs);
    width: 500px;
    margin: 0 auto;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 2;
}

.publicationSchedule{
    width: 500px;
    max-width: 100%;
    margin: var(--space-sm) auto 0;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--background-color);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    box-shadow: 0 4px 0 var(--primary-green-light);
}
.publicationSchedule-title{
    margin-bottom: 12px;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}
.publicationSchedule-list{
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.publicationSchedule-list li{
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: .88rem;
    line-height: 1.6;
}
.publicationSchedule-date{
    flex: 0 0 52px;
    color: var(--primary-green);
    font-weight: 700;
}

.mainbgImage{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    transform-origin: center;
}
.mainbgStar{
    position: absolute;
    top: 20%;
    right: 10%;
    width: 14vw;
    z-index: -1;
    transform-origin: center;
    animation: spin 3.5s linear infinite;
}
.subgStar{
    position: absolute;
    bottom: 13%;
    left: 22%;
    width: 12vw;
    z-index: -2;
    transform-origin: center;
    animation: spin 3.5s linear infinite;
}
.mainbgGlass{
    position: absolute;
    top: 40%;
    right: 8%;
    width: 7vw;
    z-index: -1;
    transform-origin: center;
    animation: spin 4.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    /* 360度でちょうど1回転 */
    transform: rotate(360deg);
  }
}

/* 親要素 */
.bgAnime {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none; /* クリックやスクロールの邪魔をしない */
  z-index: -2;
}



/* 生成するランダムアイテムの基本スタイル */
.bg-random-item {
  position: absolute;
  will-change: transform;
  /* 上下左右にフワフワ揺れるアニメーション */
  animation: floatRandom var(--duration, 10s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}

/* アイコン自体の回転アニメーション */
.bg-random-item img {
  display: block;
  width: 100%;
  height: auto;
  /* その場で回転し続ける */
  animation: spinRandom var(--spin-duration, 8s) linear infinite;
  animation-direction: var(--spin-direction, normal);
}

/* フワフワと画面内を漂うキーフレーム */
@keyframes floatRandom {
  0% {
    transform: translate(0, 0) scale(var(--scale, 1));
  }
  50% {
    transform: translate(var(--move-x, 30px), var(--move-y, -50px)) scale(calc(var(--scale, 1) * 1.1));
  }
  100% {
    transform: translate(calc(var(--move-x, 30px) * -0.8), var(--move-y, 40px)) scale(var(--scale, 1));
  }
}

/* その場で回転するキーフレーム */
@keyframes spinRandom {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.nav{
    margin-top: var(--space-lg);
    width: fit-content;
    margin: 0 auto var(--space-xl);
}

.navList{
    display: flex;
    gap:2vw;
    justify-content: center;
}
.navmenu{
    list-style: none;
}
.navmenu a{
    background-color: var(--sub-yellow);
    box-shadow: 0 10px 20px rgba(210, 190, 50, 0.3);
    border-radius: 100vh;
    display: flex;
    max-width: 300px;
    width: 20vw;
    min-width: 170px;
    height: 47px;
    justify-content: center;
    align-items: center;
    border: var(--pink) solid 7px;
    position: relative;
}
.navmenu a::after,
.navmenu a::before{
    content: "\25BE";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: navArrow 1s infinite alternate ease-in-out;
}
.navmenu a::after{
    right: 5px;
}
.navmenu a::before{
    left: 5px;
}
@keyframes navArrow {
  0% { 
    transform: translateY(calc(-50% - 5px)); 
  }
  100% { 
    transform: translateY(calc(-50% + 5px)); 
  }
}

.nav ol li a:link{
    color: var(--text-color);
    font-weight: 500;
}
.nav ol li a:visited{
    color: var(--text-color);
}

.abs_summary{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    margin: var(--space-lg) auto;
    width: 767px;
}

.absMessage{
    display: block;
    color: var(--primary-green);
}

.absMessage .lgText{
    font-size: 24px;
    color: var(--primary-green);
}

.absSubMessage{
    color: var(--kaitorei-color);
}
.absSubMessage .lgText{
    font-size: 24px;
    color: var(--kaitorei-color);
}
.absImage{
    width: 767px;
}
.absButton{
    background-color: var(--kaitorei-color);
   box-shadow: 0 12px 25px -5px rgba(255, 123, 172, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vh;
    width: 263px;
    height: 43px;
    color: var(--background-color);
    position: relative;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}
.absButton:hover{
   filter: brightness(1.1);
   transform: translateY(5%);
}
.absButton::before {
content: "";
position: absolute;
top: -20px;
left: -50px;
width: 30px;
height: 150px;
background: rgba(255, 255, 255, 0.2);
transform: rotate(-25deg);
animation: shine 3s infinite ease-in-out;
}

@keyframes shine {
0% {
    left: -50px;
}
20% {
    left: 120%; 
}
100% {
    left: 120%; 
}
}




.Xsosenkyo{
    background-color: var(--primary-green-light);
    width: 1080px;
    margin: auto;
    border-radius: 20px;
    padding: 55px 80px;
    position: relative;
}
.Xsosenkyo::before,
.Xsosenkyo::after{
    content: "";
    height: 20px;
    width: 20px;
    background: var(--background-color);
    position: absolute;
    clip-path:circle();
    top: 12px;
    box-shadow: 0 0px 10px rgba(34, 139, 34, 1);
}
.Xsosenkyo::before{
    left: 12px;
}
.Xsosenkyo::after{
    right: 12px;
}



.sohyo::before,
.sohyo::after{
    content: "";
    height: 20px;
    width: 20px;
    background: var(--primary-green-light);
    position: absolute;
    clip-path:circle();
    top: 12px;
    box-shadow: 0 0px 10px rgba(34, 139, 34, 1);
}
.sohyo::before{
    left: 12px;
}
.sohyo::after{
    right: 12px;
}
.courseImage{
    width: 100%;
}
.recommendation::before,
.recommendation::after{
    content: "";
    height: 20px;
    width: 20px;
    background: var(--background-color);
    position: absolute;
    clip-path:circle();
    top: 12px;
        box-shadow: 0 0 10px rgba(34, 139, 34, 1);
}
.recommendation::before{
    left: 12px;
}
.recommendation::after{
    right: 12px;
}

h2{
    color: var(--primary-green);
    font-size: 32px;
    line-height: 1.5;
}
.h2_sub{
    background:var(--primary-green);
    color: var(--background-color);
    display: flex;
    width: fit-content;
    padding: 2px 16px;
    margin-right: 8px;
    margin-bottom: 16px;
    border-radius: 8px;
}
.readMoreWrapX{
    display: block;
    margin-top: 40px;
    width: auto;
    
}
.rankWrap{
    background-color: var(--background-color);
    border-radius: 20px;
    margin-top: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.rankWrap_cover{
    position: absolute;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(0, 0,0, 0.3); 

    z-index: 50;
    transform: translate(-40px,-40px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rankBody{
    display: block;
    margin-bottom: 16px;
}
.rankWrap_cover p{
    display: block;
    margin-bottom: 8px;
    color: var(--background-color);
    font-weight: bold;
}
.rankWrap_cover p a{
    display: block;
    padding: 2px 16px;
    border-radius: 3px;
    font-weight: bold;
    background: var(--background-color);
    color: var(--link-blue);
}

.Ranknumber{
    display: block;
    color: var(--link-blue);
    font-size: 28px;
    padding: 8px 2px;
    text-align: center;
    border: var(--link-blue) solid 2px;
}
.rankText{
    color: var(--link-blue);
    font-size: 16px;
}
.rankPercent{
    display: block;
    font-size: 16px;
    background-color: var(--link-blue);
    color: var(--background-color);
    padding: 6px;
}
.rankBox{
    display: flex;
    gap: 16px;
    width: auto;
}
.rankQuestion{
    color: var(--primary-green);
font-weight: bold;
}
.rankDetail{
    display: block;
    margin-bottom: 16px;
}
.rankFootPercent{
    display: block;
    text-align: right;
    color: var(--primary-green);
    margin-bottom: 8px;
}
.rankBarBace{
    background-color: var(--lightgray);
    border-radius: 100vh;
    height: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.rankBar{
    position: absolute;
    background-color: var(--primary-green-light);
    height: 8px;
    z-index: 2;
    border-radius: 100vh;
}

.sohyo{
        background-color: var(--background-color);
        border: var(--lightgray) solid 1px;
    width: 1080px;
    margin: 80px auto;
    border-radius: 20px;
    padding: 55px 80px;
    position: relative;
}

.sohyoWrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;

}

.sohyoBox{
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--sub-yellow);
    border: var(--lightgray) solid 1px;
    padding: 24px;
}

.sohyoBoxTitle{
    color: var(--primary-green);
}

.circledChar{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 1.35em;
    height: 1.35em;
    margin: 0 0.08em;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-size: 0.82em;
    line-height: 1;
    vertical-align: middle;
}

.sohyoLead{
    display: block;
    margin: 40px auto;
}


.subSection{
    background: rgba(255,255,255,0.6);
}

.schedule{
    width: 1190px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    
}

.scheduleItem{
    display: flex;
    justify-content: space-between;
    border-top: var(--lightgray) dotted 3px;
    padding: var(--space-sm);
}

.scheduleDateWrap{
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.scheduleDate{
    display: flex;
    gap: 3px;
    align-items: end;
}

.scheduleMonth{
    display: block;
    font-size: 21px;
}
.scheduleDay{
    display: block;
    font-size: 31px;
}
.scheduleDayOfWeek{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 17px;
    height: 15px;
    border-radius: 4px;
    background-color:#379B41;
    color: var(--background-color);
    font-size: 11px;
}

.scheduleDayOfWeek.sun{
    background-color:#E63838;
}
.scheduleTags{
    display: flex;
    flex-direction: column;
    gap: 8px;

}
.scheduleTag{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--tag-color);
    color: var(--background-color);
    width: 60px;
    height: 23px;
    font-size: 12px;
}
.scheduleMovieLink{
    color: var(--link-blue);
    display: block;
    width: fit-content;
    margin-top: 24px;
    margin-left: auto;
}
.scheduleMovieIcon{
    width: 34px;
    vertical-align: middle;
    margin-right: 8px;
}

.scheduleImage{
    max-height: 150px;
    aspect-ratio: 270 / 104;
}
.readMoreWrap{
    width: 566px;
}
.scheduleItem:last-of-type  .scheduleDate{
    flex-direction: column;

}
.schedulePeriod{
    display: block;
    font-size: 32px;
}
.schedulePeriodSub{
    display: block;
    font-size: 32px;
    color: var(--primary-green);
}

.scheduleLink{
    display: block;
    background-color: var(--link-blue);
    box-shadow: 0 10px 15px rgba(76, 161, 235, 0.4);
    border-radius: 100vh;
    color: var(--background-color);
    padding: 10px 27px;
    width: fit-content;
    text-align: right;
    margin-left: auto;
    font-weight: 600;
    margin-top: var(--space-sm);
    transition: 0.2s ease-in-out;
}
.scheduleLink:hover{
   filter: brightness(1.1);
   transform: translateY(5%);
}
.scheduleLink::after{
    content:" ☞";
}
.readMoreLabel{
    color: var(--link-blue);
}

.recommendation{
    background-color: var(--primary-green-pale);
    width: 1080px;
    margin: auto;
    border-radius: 20px;
    padding: 55px 80px;
    position: relative;
    margin-bottom: var(--space-lg);  
}
.recommendationTitle{
    margin-bottom:var(--space-lg);
}
.courseWrap{
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
}
.courseBox{
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 40%;
}
.courseTitle{
    display: block;
    position: relative;
    width: fit-content;
    padding: 0.4rem 0;
    color: var(--primary-green);
    border-bottom: var(--primary-green) 1px solid;
    transition: 0.2s ease-in-out;
}
.courseTitle:hover{
        filter: brightness(1.1);
    transform: translateY(5%);
}

.footer{
    
    background: var(--primary-green-light);
    padding: 24px;
}
.footer p {
    display: block;
    margin: auto;
    width: fit-content;
    font-size: 10px;
}
section{
    display: block;
    margin-bottom: var(--space-xl);
}
.to-top-arrow{

bottom: 15px;
right: 15px;
height: 36px;
width: 36px;
position: fixed;
border-radius: 100vh;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
}


.to-top-arrow::before{
content:"";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 2px;
height: 17px;
background: var(--primary-green);
}


.to-top-arrow::after{
content:"";position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%) rotate(45deg);
width: 15px;
height: 15px;
border-left: var(--primary-green) solid 2px;
border-top: var(--primary-green) solid 2px;
}


.note {
color: #E63838;
  font-size: small;
  display: block;
  padding-left: 1em;
font-weight: bold;
margin-top: 1em;
}

.hl{
    color: var(--kaitorei-color);
    font-weight: bold;
}














@media screen and (max-width: 767px){
    header img{
        margin: auto;
        width: 170px;
    }
.bunner_wrap .is-show{
    transform: translateX(0);
}

.mainContent{
        width: 100%;
        aspect-ratio: 12/16;
    
}

.mainbgStar{
    bottom:2%;
    right: 5%;
    width: 100px;
}
.subgStar{
    bottom: 13%;
    left: 2%;
    width: 150px;
}
.title_box{
        width: 92%;
        min-width: auto;
        padding: var(--space-md) var(--space-sm);
        top: 0%;
        transform: translate(-50%, 0%);
        text-align: center;
}
.fv_event{
    flex-direction: column;
    gap: var(--space-sm);
    align-items: end;
    width: 100%;
}
.fv_event_wrap{
    gap: 10vw;
    align-items: center;
}
.fv_event1-text, .fv_event2-text{
    font-size: 5vw;
    margin-right: var(--space-sm);
}
.fv_event1, .fv_event2 {
    width: 13vw;
    height: 13vw;
}
.fv_scheduleDate {
    gap: 1vw;
}
.fv_scheduleMonth{    font-size: 5vw;}
.fv_scheduleSlash{    font-size: 5vw;}
.fv_scheduleDay{    font-size: 8vw;}
.fv_scheduleDayOfWeek{    font-size: 3vw;
width: 6.2vw;
    height: 4.5vw;}



.fv_event1::before, .fv_event2::before {
    width: 14vw;
    height: 14vw;
    z-index: -1;
}
.subtitle{
padding: 8px 16px;
width: 100%;
    font-size: 6vw;
    font-weight: 400;
    margin-bottom: var(--space-sm);
white-space: nowrap;
}
.maintitle,.title2026{
    display: inline;
    font-weight: 400;
    white-space: nowrap;
    font-size: 16vw;
}
.title2026{
    font-size: 10vw;
}
.mainmessage{
    margin: var(--space-xs) auto;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    font-size: 5vw;
    width: 100%;
    justify-content: center;
    width: auto;
    padding: 4vw 8vw;
}
.lg{
    font-size: 8vw;
}
.mainmessage_first,.mainmessage_second{
    display: inline;
    color: var(--primary-green);
        white-space: nowrap;
        
}
.titleDiscription-title{
    padding: var(--space-xs);
    white-space: nowrap;
    font: bold 5vw / 2 Zen Maru Gothic;

}
.titleDiscription{
    text-align: left;
    width: auto;
    padding: var(--space-lg) var(--space-xs);

}
.titleDiscription-text{
width: auto;
}
.mainbgImage{
    position: absolute;
        bottom: 0;
        left: -2%;
        transform: translateX(0%);
        height: 44.5%;
        z-index: 1;     
}
.navList{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap:var(--space-xs);

}
.navmenu{
    margin: 0 auto;

}
.absImage{
    width: 100%;

}
.abs_summary{
    width: auto;
}
.Xsosenkyo{
    background-color: var(--primary-green-light);
        width: auto;
    margin: auto;
    border-radius: 20px;
   padding: 88px 24px 56px;
}

.sohyo{
        background-color: var(--background-color);
        border: var(--lightgray) solid 1px;
        width: auto;
    margin: 80px auto;
    border-radius: 20px;
    padding: 88px 24px 56px;
}
.sohyoWrap{
    grid-template-columns: 100%;
    grid-template-rows:auto;
}
.schedule{
        width: auto;
    margin: auto;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-sm);
}
.rankWrap{
    padding:var(--space-sm) var(--space-xs);
    position: relative;
}
.rankWrap_cover{
    transform: translate(0,0);
    position: absolute;
    top: 0;
    left: 0;

}
.readMoreWrap{
    width: auto;
}
.readMoreWrapX{
    width: 100%;
}
.scheduleItem{
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm) 0;
    width: auto;
    

}
.scheduleImage{
    max-height: none;
}
.scheduleDateWrap{
    flex-direction: row;
    align-items: end;
    
}
.scheduleItem:last-of-type .scheduleDate{
    flex-direction: row;
}
.scheduleTags{
    flex-direction: row;
}

.recommendation{
    width: auto;
    margin: auto;
    border-radius: 20px;
    padding: 88px 24px 56px;
    margin-bottom: var(--space-md);
}

.courseWrap{
    flex-direction: column;
    
}
.courseBox{
    width: auto;
}
}




@media screen and (max-width: 1080px) and (min-width: 768px) {
    /* header img{
        margin: auto;
        width: 170px;
    }
.bunner_wrap .is-show{
    transform: translateX(0);
}

.mainContent{
        width: 100%;
        aspect-ratio: 12/23;
    
}

.mainbgStar{
    bottom:2%;
    right: 5%;
    width: 100px;
}
.subgStar{
    bottom: 13%;
    left: 2%;
    width: 150px;
}
.title_box{
        width: 92%;
        min-width: auto;
        padding: var(--space-md) var(--space-sm);
        top: 0%;
        transform: translate(-50%, 0%);
        text-align: center;
}
.fv_event{
    flex-direction: column;
    gap: var(--space-sm);
}
.fv_event_wrap{
    gap: 10vw;
    align-items: center;
}
.fv_event1-text, .fv_event2-text{
    font-size: 5vw;
}
.fv_event1, .fv_event2 {
    width: 13vw;
    height: 13vw;
}
.fv_scheduleDate {
    gap: 1vw;
}
.fv_scheduleMonth{    font-size: 5vw;}
.fv_scheduleSlash{    font-size: 5vw;}
.fv_scheduleDay{    font-size: 8vw;}
.fv_scheduleDayOfWeek{    font-size: 3vw;
width: 6.2vw;
    height: 4.5vw;}



.fv_event1::before, .fv_event2::before {
    width: 14vw;
    height: 14vw;
    z-index: -1;
}
.subtitle{
padding: 8px 16px;
width: 100%;
    font-size: 6vw;
    font-weight: 400;
    margin-bottom: var(--space-sm);
white-space: nowrap;
}
.maintitle,.title2026{
    display: inline;
    font-weight: 400;
    white-space: nowrap;
    font-size: 16vw;
}
.title2026{
    font-size: 10vw;
}
.mainmessage{
    margin: var(--space-xs) auto;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    font-size: 5vw;
    width: 100%;
    justify-content: center;
    width: auto;
    padding: 4vw 8vw;
}
.lg{
    font-size: 8vw;
}
.mainmessage_first,.mainmessage_second{
    display: inline;
    color: var(--primary-green);
        white-space: nowrap;
        
}
.titleDiscription-title{
    padding: var(--space-xs);
    white-space: nowrap;
    font: bold 5vw / 2 Zen Maru Gothic;

}
.titleDiscription{
    text-align: left;
    width: auto;
    padding: var(--space-lg) var(--space-xs);

}
.titleDiscription-text{
width: auto;
}
.mainbgImage{
position: absolute;
        top: 60%;
        left: 50%;
        transform: translateX(-50%);
        height: 40%;
        z-index: 1;
} */
.navList{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap:var(--space-xs);

}
.navmenu{
    margin: 0 auto;

}
.absImage{
    width: 100%;

}
.abs_summary{
    width: auto;
}
.Xsosenkyo{
    background-color: var(--primary-green-light);
        width: auto;
    margin: auto;
    border-radius: 20px;
       padding: var(--space-xl) var(--space-lg);
}

.sohyo{
        background-color: var(--background-color);
        border: var(--lightgray) solid 1px;
        width: auto;
    margin: 80px auto;
    border-radius: 20px;
       padding: var(--space-xl) var(--space-lg);
}
.sohyoWrap{
    grid-template-columns: 100%;
    grid-template-rows:auto;
}
.schedule{
        width: auto;
    margin: auto;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg);
}
.rankWrap{
    padding:var(--space-md) var(--space-md);
}


.readMoreWrap{
    width: auto;
}
.readMoreWrapX{
    width: 100%;
}
.scheduleItem{
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm) 0;
    width: auto;
    

}
.scheduleImage{
    max-height: 500px;
    max-width: 500px;
}
.scheduleDateWrap{
    flex-direction: row;
    align-items: end;
    
}
.scheduleItem:last-of-type .scheduleDate{
    flex-direction: row;
}
.scheduleTags{
    flex-direction: row;
}

.recommendation{
    width: auto;
    margin: auto;
    border-radius: 20px;
    padding: var(--space-xl) var(--space-lg);
    margin-bottom: var(--space-md);
}

.courseWrap{
    flex-direction: column;
    
}
.courseBox{
    width: auto;
}
.courseImage{
    max-width: 500px;
}
}







/* 親要素や本文のベース設定 */
.readMoreText {
  position: relative;
  line-height: 1.6;
  max-height: 6.4em;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* 2行目のフェードアウト（疑似要素） */
.readMoreText::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.6em; /* 1行分の高さ */
  /* 下に向かって背景色へフェードアウト（※背景色に合わせて適宜調整してください） */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 90%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}



/* 「続きを読む」ボタンの設定 */
.readMoreLabel {
  display: inline-block;
  color: #4CA1EB;
  font-weight: bold;
  cursor: pointer;
  margin-top: 4px;
}

.readMoreLabel:hover {
  text-decoration: underline;
}

/* =========================================
   展開時の状態 (is-open)
========================================= */
/* 高さ制限を解除して全文表示 */
.readMoreText.is-open {
  max-height: 1000px; /* 十分に大きい値を指定 */
}

/* フェードアウトを消去 */
.readMoreText.is-open::after {
  opacity: 0;
}
.readMoreText.bg-yellow::after {
  /* 背景色の黄色(#FDF572)に向かってフェードアウトさせる */
  background: linear-gradient(to bottom, rgba(253, 245, 114, 0), #FDF572 90%);
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px); /* 下に30pxずらしておく */
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 画面に入った時の状態 */
.js-fadeUp.is-show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
}

.movie_title{
    display: block;
    text-align: center;
    margin: var(--space-sm) auto;

    font-size: 20px;
    color: var(--text-color);
position: relative;
width: fit-content;
}
.movie_title::before,
.movie_title::after{
    content: '';
    height: 1.5rem;
    width: 1px;
    background: var(--text-color);
    position: absolute;
}
.movie_title::before{

    transform: rotate(-45deg);
    bottom: 0;
   left: -1rem;
}
.movie_title::after{
    transform: rotate(45deg);
    bottom: 0;
    right: -1rem;
}
.movie_size{
    margin:  var(--space-xl) auto;

}

.movie_text{
    display: block;
    margin: var(--space-sm) auto;
    font-size: 20px;
}
.movie_textWrap{
    text-align: center;
}

.movie_scheduleMovieLink{
    background: var(--link-blue);
    border-radius: 100vh;
    display: block;
margin: auto;
    color: var(--background-color);
    width: fit-content;
    padding: 5px 1.5rem;

}
.sectionDest_X{
    display: block;
}
.rankHead{
    width: 60px;
}


.youtube-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* 最大幅を800pxに制限 */
  margin: 0 auto ;    /* 中央寄せ */
  aspect-ratio: 16 / 9; /* アスペクト比16:9を維持 */
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube_1{
    display: block;
    width: fit-content;
    margin: 0 auto;
    color: var(--kaitorei-color);
    margin-top: var(--space-md);
}
.youtube_2{
    display: block;
    width: fit-content;
    margin: 0 auto;
        margin-bottom: var(--space-lg);

}