*{
    margin:0;
    padding:0;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
::after,::before{
    box-sizing:border-box;
}
:root{
    --primary-color:#1F1F1F;
    --secondary-color:#FFFFFF;
    --hightlight-color:#004DA9;
    --orange:#FF6F1C;
    --orange-sub:#FF9145;
    --orange-light:#FFF1DE;
    --gray:#F5F5F5;
    --deco-color:#F1F5F9;
    --error-color:#FF4B4B;
    --success-color:#16a34a;
    --gray-dark:#d1d5db;
    --overlay-bg:rgba(31,31,31,.2);
    --noto-sans-jp:"Noto Sans JP",sans-serif;
    --dela-gothic-one-regular:"Dela Gothic One",sans-serif;
    --font-w-regular:400;
    --font-w-medium:500;
    --font-w-bold:700;
    --font-w-black:900;
    --font-style:normal;
    --originalScale: 0.8888888888888888;
}
body {
    font-family:var(--noto-sans-jp);
    font-weight:var(--font-w-medium);
    font-size:.875rem;
    background-color:var(--orange);
    color:var(--primary-color);
    letter-spacing:.05em;
}
ul,ol{
    list-style:none;
}
li{
    list-style:none;
}
nav ul{
    list-style:none;
}
figure{
    position:relative;
    display:block;
    line-height:0;
}
p{
    line-height:1.8;
}
a{
    display:inline-block;
    color:inherit;
}
a,a:focus,a:hover{
    outline:none;
    text-decoration:none;
}
img{
    width:100%;
    height:auto;
}
svg{
    width:100%;
    height:auto;
}
input,textarea,select,button{
    font-size:var(--font-base);
    appearance:none;
    width:auto;
    padding:0;
    border:none;
    border-radius:0;
    line-height:1.6;
    color:var(--jpp-primary);
    background:var(--jpp-white);
    letter-spacing:.05em;
    -webkit-appearance:none;
    -moz-appearance:none;
    -webkit-text-size-adjust:100%;
}
.p-layout{
    display:flex;
    flex-direction:column;
    width:100vw;
    min-height:100dvh;
    overflow-x:hidden;
}
.fixed-background{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.marquee-text{
    position:relative;
    display:flex;
    align-items:center;
    width:100%;
    overflow:hidden;
}
.marquee-content{
    position:relative;
    display:flex;
    align-items:center;
    white-space:nowrap;
}
.text-wrap{
    display:flex;
    position:relative;
}
.text-wrap h1{
    font-family:var(--dela-gothic-one-regular);
    font-weight:var(--font-w-regular);
    font-style:var(--font-style);
    font-size:10vw;
    color:var(--orange-sub);
    line-height:0;
    padding-right:2vw;
    margin:.625em 0;
    letter-spacing:.515rem;
}
.marquee-opposite{
    display:flex;
    align-items:center;
    position:relative;
    width:100%;
    overflow:hidden;
}
.animate-once{
    transition:transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-once-delay{
    transition-delay: 0.1s;
}
.no-select{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.p-navi{
    position:fixed;
    display:none;
    width:100%;
    height:100vh;
    z-index:1;
}
.aside-grid{
    display:grid;
    grid-template-columns:1fr 28.75rem 1fr;
    width:100%;
    height:100%;
    margin:0 auto;
}
.column{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:2.5rem;
    grid-column:1 / 2;
}
.aside-grid > div:nth-child(2){
    grid-column:2 / 3;
    width:28.75rem;
}
.column-last{
    justify-content:center;
    grid-column:3 / 4;
}
.p-navi .logo{
    width:250px;
}
.recruit-link{
    margin-top:3.75rem;
}
.recruit-link a{
    font-size:1rem;
    font-weight:var(--font-w-bold);
    position:relative;
    display:block;
    width:250px;
    height:5rem;
    line-height:5rem;
    background-color:var(--secondary-color);
    color:var(--hightlight-color);
    text-align:center;
    border-radius:3.125rem;
    transition:background-color 0.3s ease-in-out;
}
.recruit-link a::after{
    content:'';
    position:relative;
    display:inline-block;
    width:.938rem;
    height:.938rem;
    margin-left:.515rem;
    background:url(../img/arrow-top-right-icon.svg) no-repeat;
    background-size:contain;
}
.recruit-link a:hover{
    background-color:var(--hightlight-color);
    color:var(--secondary-color);
}
.recruit-link a:hover::after{
    background:url(../img/arrow-top-right-whticon.svg) no-repeat;
    background-size:contain;
}
.aside-links{
    width:250px;
    padding:1.25rem;
    border-radius:1.25rem;
    background:var(--secondary-color);
}
.aside-links li+li{
    margin-top:1.25rem;
}
.aside-links li a{
    font-size:1rem;
    font-weight:var(--font-w-bold);
    position:relative;
    color:var(--hightlight-color);
    letter-spacing:.055em;
    transition:color .3s ease-in-out;
}
.aside-links li a::after{
    content:'';
    position:relative;
    display:inline-block;
    width:1.875rem;
    height:1.875rem;
    top:.515rem;
    margin-left:.215rem;
    background:url(../img/arrow-right-circle-icon.svg) no-repeat;
    background-size:contain;
    transform:rotate(-45deg);
}
.aside-links li a:hover{
    color:var(--primary-color);
}
.aside-links li a:hover::after{
    background:url(../img/arrow-top-right-circle-blkicon.svg) no-repeat;
    background-size:contain;
}
.p-content{
    position: relative;
    max-width:100%;
    width:28.75rem;
    height:100%;
    min-height:100dvh;
    margin:0 auto;
    background-color:var(--secondary-color);
    z-index:2;
}
header{
    padding:.938rem 0 0;
}
header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
header .logo{
    display:inline-block;
    width:140px;
}
header .header-link{
    position:relative;
    display:inline-block;
    width:180px;
    height:40px;
    line-height:40px;
    background-color:var(--primary-color);
    color:var(--secondary-color);
    padding:0 .938rem;
    border-radius:3.125rem;
    text-align:center;
}
header .header-link::after{
    content:'';
    position:relative;
    display:inline-block;
    width:.75rem;
    height:.75rem;
    margin-left:.515rem;
    background:url(../img/arrow-top-right-whticon.svg) no-repeat;
    background-size:contain;
    transition:background-color .3s ease-in-out;
}
header .header-link:hover{
    background-color:var(--orange);
}
section{
    padding:3.75rem 0;
}
.container{
    position:relative;
    padding:0 .938rem;
}
.clip-top-corners{
    --corner-cut:1.25rem;
    -webkit-clip-path: polygon(var(--corner-cut) 0,calc(100% - var(--corner-cut)) 0,100% var(--corner-cut),100% 100%,0 100%,0 var(--corner-cut));
    clip-path: polygon(var(--corner-cut) 0,calc(100% - var(--corner-cut)) 0,100% var(--corner-cut),100% 100%,0 100%,0 var(--corner-cut));
}
.clip-top-corners--sm{
    --corner-cut:.625rem;
    -webkit-clip-path: polygon(var(--corner-cut) 0,calc(100% - var(--corner-cut)) 0,100% var(--corner-cut),100% 100%,0 100%,0 var(--corner-cut));
    clip-path: polygon(var(--corner-cut) 0,calc(100% - var(--corner-cut)) 0,100% var(--corner-cut),100% 100%,0 100%,0 var(--corner-cut));
}
.s-main--visual{
    padding:2.5rem 0;
}
.main-txt{
    font-size:1.125rem;
    font-weight:var(--font-w-bold);
    display:block;
    background:var(--hightlight-color);
    color:var(--secondary-color);
    margin-top:2.5rem;
    padding:.625rem 0;
    text-align:center;
    letter-spacing:.215em;
    white-space:nowrap;
}
.s-content{
    padding:0;
}
.courses-link{
    display:flex;
    align-items:flex-end;
    gap:.515rem;
}
.courses-link li{
    width:30%;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
}
.courses-link li.active{
    width:40%;
    transition:width 0.3s ease-in-out;
}
.courses-link li .--inner{
    font-weight:var(--font-w-bold);
    display:flex;
    width:100%;
    height:3.125rem;
    align-items:center;
    justify-content:center;
    background:var(--hightlight-color);
    color:var(--secondary-color);
    letter-spacing:.105em;
    transition:height 0.3s ease-in-out,background-color 0.3s ease-in-out,color 0.3s ease-in-out;
}
.courses-link li.active .--inner{
    height:4.375rem;
    background:var(--gray);
    color:var(--hightlight-color);
    transition:height 0.3s ease-in-out,background-color 0.3s ease-in-out,color 0.3s ease-in-out;
}
.courses-link li a{
    font-size:.625rem;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    line-height:3.125rem;
    transition:font-size 0.3s ease-in-out, line-height 0.3s ease-in-out;
    white-space:nowrap;
}
.courses-link li.active span{
    font-size:.875rem;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    line-height:4.375rem;
    transition:font-size 0.3s ease-in-out, line-height 0.3s ease-in-out;
    white-space:nowrap;
}
.courses-link:hover li{
    width:30%;
}
.courses-link:hover li .--inner{
    height:3.125rem;
}
.courses-link:hover li a,.courses-link:hover li span{
    font-size:.625rem;
    line-height:3.125rem;
}
.courses-link li:hover{
    width:40%; 
}
.courses-link li:hover .--inner{
    height:4.375rem;
}
.courses-link li:hover a{
    font-size:.875rem;
    line-height:4.375rem;
}
.courses{
    padding:1.875rem 0 3.75rem 0;
    background:var(--gray);
}
.courses .intro-content ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin-top:1.875rem;
}
.courses .intro-content ul li a{
    font-size:.875rem;
    font-weight:var(--font-w-black);
    color:var(--hightlight-color);
}
.courses .intro-content ul li a::after{
    content:'';
    position:relative;
    display:inline-block;
    width:1.25rem;
    height:1.25rem;
    top:.25rem;
    background:url(../img/arrow-right-circle-icon.svg) no-repeat;
    background-size:contain;
    transform:rotate(90deg);
}
.course-content{
    margin-top:3.75rem;
}
.h2-ttl{
    position:relative;
    text-align:center;
    padding:2.5rem 0;
    margin-bottom:1.875rem;
}
.h2-ttl h2{
    font-size:1.5rem;
    font-weight:var(--font-w-bold);
    position:relative;
    color:var(--orange);
    z-index:2;
}
.h2-ttl span{
    font-size:150px;
    font-weight:var(--font-w-black);
    position:absolute;
    top:-2.5rem;
    right:0;
    left:0;
    margin:auto;
    color:var(--secondary-color);
    z-index:1;
    letter-spacing:-.938rem;
}
.course-content > div+div{
    margin-top:3.75rem;
}
.course-content ol{
    margin:.938rem 0;
    line-height:1.8;
}
.course-slider{
    margin:3.75rem -.938rem 6.25rem -.938rem;
    padding-bottom:3.75rem;
}
.course-slider .swiper-slide{
    transition:transform 0.3s;
    border-radius:1.875rem;
    overflow:hidden;
    width:250px!important;
}
.course-slider .swiper-slide-active{
    z-index:10;
}
.course-slider .swiper-slide-prev,
.course-slider .swiper-slide-next{
    opacity:1;
}
.course-slider .swiper-slide-prev{
    transform:scale(.85) rotate(-8deg)!important;
}
.course-slider .swiper-slide-next{
    transform:scale(.85) rotate(8deg)!important;
}
.course-slider .swiper-slide figure{
    height:250px;
    border-radius:1.875rem;
    overflow:hidden;
}
.course-slider .swiper-slide figure img{
    height:100%;
    width:100%;
    object-fit:cover;
    object-position:center;
}
.course-slider .swiper-pagination{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    display:flex;
    justify-content:center;
    gap:.5rem;
}
.course-slider .swiper-pagination-bullet{
    width:.5rem;
    height:.5rem;
    background:transparent;
    border:1px solid var(--hightlight-color);
    opacity:1;
}
.course-slider .swiper-pagination-bullet-active{
    background:var(--hightlight-color);
}
.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right{
    background-image:none;
}
.course-details{
    padding:3.75rem 0 1.875rem;
    background:var(--orange-light);
}
.course-details h3{
    margin-top:-5rem;
    margin-bottom:1.875rem;
    text-align:center;
}
.course-details h3 img{
    width:18.75rem;
}
.course-details dl{
    display:flex;
    flex-direction:column;
}
.course-details dl+dl{
    margin-top:1.875rem;
}
.course-details dl dt{
    font-weight:var(--font-w-bold);
    flex-shrink:0;
    width:10rem;
    background:var(--secondary-color);
    padding:.515rem .625rem;
    text-align:center;
    letter-spacing:.055em;
}
.course-details dl dd{
    margin-top:.935rem;
    line-height:1.8;
}
.course-details dl dd p+p{
    margin-top:.938rem;
}
.course-details dl dd p span{
    font-size:1rem;
    font-weight:var(--font-w-bold);
}
.course-details dl dd .notice{
    font-size:.75rem;
    margin-top:.625rem;
}
.course-cta{
    margin-top:1.875rem;
}
.course-cta a{
    font-size:1rem;
    font-weight:var(--font-w-bold);
    display:flex;
    gap:.515rem;
    height:3.75rem;
    color:var(--secondary-color);
    letter-spacing:.055em;
}
.course-cta a span{
    width:calc(100% - 4.375rem);
    background-color:var(--hightlight-color);
    text-align:center;
    height:100%;
    line-height:3.75rem;
    transition:background-color .3s ease-in-out;
}
.course-cta a span.icon{
    display:flex;
    justify-content:center;
    width:3.75rem;
    line-height:3.75rem;
    background-color:var(--hightlight-color);
}
.course-cta a:hover span,.course-cta a:hover span.icon{
    background-color:var(--primary-color);
}
.course-cta a span.icon svg{
    width:2.188rem;
}
#s-form .h2-ttl h2{
    color:var(--hightlight-color);
}
#s-form .h2-ttl span{
    color:var(--gray);
}
.application-form{
    position:relative;
    margin:1.875rem .938rem 0;
    z-index:2;
}
.form-content > dl+dl{
    margin-top:1.875rem;
}
.form-content > dl dd{
    margin-top:.938rem;
}
.form-content > dl dt span{
    font-size:.515rem;
    color:var(--secondary-color);
    background:var(--error-color);
    margin-left:.625rem;
    padding:.125rem .515em;
}
.form-content .notice{
    font-size:.75rem;
    display:block;
    margin-top:.625rem;
}
.form-txt,.form-textarea,.form-zip input,.form-select select{
    font-size:1rem;
    height:3.125rem;
    padding:.75rem .938rem;
    background:var(--secondary-color);
    color:var(--primary-color);
    border-radius:.515rem;
    border:1px solid var(--primary-color);
    width:100%;
}
.form-txt:placeholder-shown,.form-textarea:placeholder-shown,.form-zip input:placeholder-shown,.form-select select:placeholder-shown{
    color:var(--gray-dark);
}
.form-txt::-webkit-input-placeholder,.form-textarea::-webkit-input-placeholder,.form-zip input::-webkit-input-placeholder,.form-select select::-webkit-input-placeholder{
    color:var(--gray-dark);
}
.form-txt:-moz-placeholder,.form-textarea:-moz-placeholder,.form-zip input:-moz-placeholder,.form-select select:-moz-placeholder{
    color:var(--gray-dark);
}
.form-txt::-moz-placeholder,.form-textarea::-moz-placeholder,.form-zip input::-moz-placeholder,.form-select select::-moz-placeholder{
    color:var(--gray-dark);
}
.form-txt:-ms-input-placeholder,.form-textarea:-ms-input-placeholder,.form-zip input:-ms-input-placeholder,.form-select select:-ms-input-placeholder{
    color:var(--gray-dark);
}
.form-textarea{
    height:10rem;
}
.form-select{
    position:relative;
}
.form-select:after{
    content:'';
    position:absolute;
    top:0;
    bottom:0;
    right:1.25rem;
    height:0;
    margin:auto;
    border-style:solid;
    border-width:.5rem .313rem 0 .313rem;
    border-color:var(--primary-color) transparent transparent transparent;
}
.form-select select{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
    padding-right:2.5rem;
}
.form-select select::-ms-expand{
    display:none;
}
.form-btn{
    display:flex;
    justify-content:center;
    gap:.938rem;
    margin-top:clamp(1.875rem,1.29vi + 1.57rem,3.125rem);
    text-align:center;
}
.form-btn button{
    font-size:1rem;
    position:relative;
    text-align:center;
    width:12.5rem;
    height:3.75rem;
    line-height:3.75rem;
    letter-spacing:.105em;
    background:var(--hightlight-color);
    color:var(--secondary-color);
    cursor:pointer;
}
.form-agree{
    font-size:.75rem;
    line-height:1.6;
    margin-top:3.125rem;
}
.form-agree .form-agree--content{
    display:flex;
}
.form-agree .form-agree--content span{
    position:relative;
    top:.125rem;
    display:inline-block;
    width:1.25rem;
    height:1.25rem;
    margin-right:.625rem;
}
.form-agree .form-agree--content span label{
    display:inline-block;
    width:1.25rem;
    height:1.25rem;
    cursor:pointer;
}
.form-agree .form-agree--content span label input{
    display:none;
}
.form-agree .form-agree--content span label input:checked + span{
    background:var(--hightlight-color);
    border:.25rem solid var(--secondary-color);
}
.form-agree .form-agree--content span label span{
    background:var(--secondary-color);
    text-indent:-62.438rem;
    overflow:hidden;
    border:2px solid var(--primary-color);
    margin:0;
}
.form-agree .form-agree--content a{
    display:contents;
    margin:0 .313rem;
    color:var(--error-color);
}
.form-select select:focus-visible{
    outline-color:var(--primary-color);
}
.error{
    font-size:.75rem;
    margin-top:.625rem;
    color:var(--error-color);
}
footer{
    font-size:.75rem;
    position: relative;
    max-width:100%;
    width:28.75rem;
    margin:0 auto;
    padding:.938rem 0;
    background-color:var(--secondary-color);
    z-index:2;
    text-align:center;
    letter-spacing:.215em;
}
/*-- Email popup --*/
.form-popup {
    position:fixed;
    /* top:50%;
    left:50%;
    transform:translate(-50%, -50%); */
    right:1.25rem;
    bottom:1.25rem;
    background-color: var(--secondary-color);
    border-radius:.5rem;
    padding:1.5rem;
    z-index:1000;
    width:90%;
    max-width:25rem;
    box-shadow:0 5px 15px var(--overlay-bg);
    display:none;
}
.form-popup-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:1rem;
}
.form-popup-header h3{
    font-size:1.125rem;
    margin:0;
    color:var(--success-color);
    letter-spacing:.215em;
}
.form-popup-close{
    font-size:1.25rem;
    background:transparent;
    border:none;
    cursor:pointer;
    line-height:1;
    padding:0;
    color:var(--error-color);
}
.form-popup-body{
    margin-bottom:1.875rem;
}
.form-popup-footer{
    text-align:center;
}
.form-popup-footer button{
    background-color:var(--hightlight-color);
    color:var(--secondary-color);
    border:none;
    border-radius:0;
    padding:.5rem 1.5rem;
    letter-spacing:.215em;
    cursor:pointer;
}
.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:var(--overlay-bg);
    z-index:999;
    display:none;
}
/*-- 2025/06/18 --*/
.application-form .form_radio-group{
    display:flex;
    flex-direction:column;
    gap:1.25rem;
}
.application-form .form_radio-group>div label{
    display:flex;
    align-items:center;
    width:100%;
}
.application-form .form_radio-group label input{
    display:none;
}
.application-form .form_radio-group>div label span{
    font-size:.875rem;
    position:relative;
    padding-left:1.5rem;
    cursor:pointer;
}
.application-form .form_radio-group>div label span::before{
    content:'';
    position:absolute;
    width:1.25rem;
    height:1.25rem;
    top:0;
    bottom:0;
    left:0;
    margin:auto;
    background:var(--secondary-color);
    border-radius:50%;
}
.application-form .form_radio-group>div label span::after{
    content:'';
    position:absolute;
    width:1.25rem;
    height:1.25rem;
    top:0;
    bottom:0;
    left:0;
    margin:auto;
    background:transparent;
    border:1px solid var(--gray-dark);
    border-radius:50%;
}
.application-form .form_radio-group label input:checked +span::before{
    background:var(--hightlight-color);
    border:3px solid var(--secondary-color);
}
.course-details dl > dd > dl{
    display:flex;
    align-items:flex-start;
    flex-direction:row;
    gap:1.25rem;
}
.course-details dl > dd > dl dt{
    flex-shrink:0;
    width:5.5rem;
    background:var(--secondary-color);
    padding:0;
    border:1px dashed var(--orange);
    text-align:center;
    letter-spacing:.055em;
}
.course-details dl > dd > dl dd{
    font-size:1rem;
    font-weight:var(--font-w-bold);
    display:flex;
    flex-direction:column;
    margin-top:0;
    line-height:1.8;
}
.course-details dl > dd > dl dd span+span{
    margin-top:.625rem;
}
/*-- 2025-06-30 --*/
.g-recaptcha{
    margin-top:1.875rem;
}
/*-- media query 64rem --*/
@media screen and (min-width:48rem){
    .clip-top-corners{
        --corner-cut:calc(2rem * var(--originalScale));
    }
    .clip-top-corners--sm{
        --corner-cut:calc(1.25rem * var(--originalScale));
    }
}
@media screen and (min-width:68rem){
    .p-navi{
        display:block;
    }
    .p-content{
        margin-top:2.5rem;
    }
    /*-- 2025/06/18 --*/
    .application-form .form_radio-group>div label span{
        font-size:1rem;
        padding-left:1.875rem;
    }
    .application-form .form_radio-group>div label span::before,
    .application-form .form_radio-group>div label span::after{
        width:1.25rem;
        height:1.25rem;
    }
}
@media screen and (max-width:64rem){
    .text-wrap h1{
        font-size:20vw;
    }
    .courses{
        padding-bottom:0;
    }
    .courses .intro-content ul{
        gap:1.25rem;
    }
    .course-details{
        margin-right:-.938rem;
        margin-left:-.938rem;
    }
}