@charset "UTF-8";
/*------------------------------------------
 *  リセット  
 *----------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent; }
body {
    line-height: 1; }
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block; }
nav ul {
    list-style: none; }
blockquote, q {
    quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none; }
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent; }
iframe {
    display: block;
}

/*------------------------------------------
 *  全体  
 *----------------------------------------*/
html {
    box-sizing: border-box;
    overflow-y: scroll; 
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
a{
    transition: opacity .2s ease;
    font-size: 16px;
}
a:hover {
    opacity: .4;
}
img {
    max-width: 100%;
    vertical-align:top;
}


.pc_hide { /*sp用の画像、コンテンツブロックに使用*/
    display: none !important;
}
@media only screen and (max-width: 640px) {
    .pc_hide {
        display: block !important;
    }
    .sp_hide { /*pc用の画像、コンテンツブロックに使用*/
        display: none !important;
    }
}

.ma-w_1200 {
    max-width: 1200px;
}


/*------------------------------------------
 *  ボタン  
 *----------------------------------------*/
/* --- ヘッダーボタン --- */
.btn_header{
	position: relative;
	display: inline-block;
	border-radius: 50px;
	min-width: 300px;
	max-width: 100%;
	font-size: 1.125em;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	cursor:pointer;
	padding: 1em;
	transition: all 0.2s;
    margin-left: 30px;
    box-sizing: border-box; }
.btn_header:hover{
	text-decoration: none;
	opacity: 1; }
.btn_header::after {
    position: absolute !important;
    top: 50% !important;
    right: 1.5em !important;
    width: 0.4em !important;
    height: 0.4em !important;
    transform: translateY(-50%) rotate(45deg) !important;
    border-right: 3px solid currentColor !important;
    border-top: 3px solid currentColor !important;
    content: "" !important; }
.btn_request {
    background: #fff;
	color: #1e78c8;
    border: 5px solid #1e78c8; }
.btn_request:hover {
	background: #1e78c8;
	color: #fafafa;
	border: 5px solid #1e78c8; }
.btn_application {
    background: #be1e46;
	color: #fafafa;
    border: 5px solid #be1e46; }
.btn_application:hover {
	background: #fafafa;
	color: #be1e46;
	border: 5px solid #be1e46; }

.btn_contents {
    position: relative;
	display: inline-block;
	border-radius: 100vh;
	min-width: 100%;
	max-width: 100%;
	font-size: 1.125em;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	cursor:pointer;
	transition: all 0.2s;
    box-sizing: border-box;
    background: #fff;
	color: #1e78c8;
    border: 5px solid #1e78c8; }
.btn_contents:hover{
    text-decoration: none;
    opacity: 1;
    background: #1e78c8;
	color: #fafafa;
	border: 5px solid #1e78c8; }
.btn_contents::after {
    position: absolute !important;
    top: 50% !important;
    right: 1.5em !important;
    width: 0.4em !important;
    height: 0.4em !important;
    transform: translateY(-50%) rotate(45deg) !important;
    border-right: 3px solid currentColor !important;
    border-top: 3px solid currentColor !important;
    content: "" !important; }
.btn_flow { 
    padding: 1.8em; }
.btn_choicam,
.btn_information {
    padding: 1.2em; }
.btn_footer {
    min-width: 400px !important;
    padding: 1em;
}
@media only screen and (max-width: 640px) {
    .btn_contents::after {
        right: 1em !important;
    }
    .btn_footer {
        min-width: 100% !important;
        border: 3px solid #1e78c8;
        font-size: 1em;
    }

    .bottom_fixed_wrapper {
        display: flex !important; /* フレックスボックスを有効化 */
        justify-content: space-between; /* ボタンの間隔を調整 */
        align-items: center; /* 縦方向の位置を中央揃え */
        position: fixed; /* 固定表示 */
        bottom: 0; /* 画面の一番下に配置 */
        left: 0; /* 左端に配置 */
        width: 100%; /* 幅を画面全体に */
        z-index: 1000; /* 他の要素より前面に */
    }
    .btn_bottom_request {
        position: relative;
        display: inline-block;
        border-radius: 20px 20px 0 0;
        width: 50%;
        max-width: 100%;
        font-size: 0.7em;
        font-weight: bold;
        line-height: 1.9;
        text-align: center;
        text-decoration: none;
        cursor:pointer;
        padding: 1em;
        transition: all 0.2s;
        box-sizing: border-box;
        background: #fff;
        color: #1e78c8;
        border: 3px solid #1e78c8;
    }
    .btn_bottom_application {
        position: relative;
        display: inline-block;
        border-radius: 20px 20px 0 0;
        width: 50%;
        max-width: 100%;
        font-size: 0.7em;
        font-weight: bold;
        line-height: 1.9;
        text-align: center;
        text-decoration: none;
        cursor:pointer;
        padding: 1em;
        transition: all 0.2s;
        box-sizing: border-box;
        background: #be1e46;
        color: #fafafa;
        border: 3px solid #be1e46;
    }

}

/*------------------------------------------
 *  ヘッダー  
 *----------------------------------------*/
header {
    position: fixed; /*← fixedで固定 */
    width: 100%; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    z-index: 100;
}
.header_wrapper {
    position: absolute;
    background-color: transparent;
    padding: 30px 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 100;
    box-sizing: border-box; }
.header_logo {
    width: 350px;
}


/*------------------------------------------
 *  fv  
 *----------------------------------------*/
.fv_wrapper.sp_hide {
    position: relative;
    height: 100vh;
    background-image: url(../../images/oclp/pc/FV-pic_pc.png);
    background-position: center center;
    background-size: cover;
    z-index: 1;
}
.fv_wrapper.sp_hide a,
.fv_wrapper.sp_hide a img {
    position: absolute;
    width: 250px;
    right: 1em;
    bottom: 1.5em;
}
@media only screen and (max-width: 640px) {
    .fv_wrapper.pc_hide {
        position: relative;
        height: 100vh;
        background-image: url(../../images/oclp/sp/FV-pic_sp.png);
        background-position: center center;
        background-size: cover;
        z-index: 1;
    }
    .fv_wrapper.pc_hide a,
    .fv_wrapper.pc_hide a img {
        position: absolute;
        width: 300px;
        right: 50%;
        transform: translateX(50%);
        bottom: 1em;
    }
}

/*------------------------------------------
 *  スケジュール  
 *----------------------------------------*/
.schedule_wrapper{
    text-align: center;
    padding: 50px 30px 0;
}
.article_bnr_wrap img {
    width: 50%;
}
.schedule_title .sp_hide {
    width: 352px;
    margin-bottom: 20px;
    padding-top: 50px;
}
.schedule_title p {
    font-weight: bold;
}
.article_content_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    max-width: 1000px;
    padding: 50px 100px 100px;
    margin: 0 auto;
}
.article_content_li {
    list-style: none;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137254902);
}
.article_content_li img {
    width: 260px;
    height: auto;
}

@media only screen and (max-width: 640px) {
    .schedule_wrapper {
        padding: 15px
    }
    .article_bnr_wrap img {
        width: 90%;
    }
    .schedule_title .pc_hide  {
        width: 292px;
        margin: 0 auto 20px;
        padding-top: 50px;
    }
    .schedule_contents {
        flex-direction: column;
    }
    .article_content_ul {
        flex-direction:column;
        padding: 30px 0 80px;
    }
    .article_content_li {
        margin: auto 2em;
    } 
    .schedule_title p {
        font-size: 14px;
    }
}

/*------------------------------------------
 *  コンセプト  
 *----------------------------------------*/
.concept_wrapper {
    background-color: #f0e664;
    display: block;
    text-align: center;
}
.concept_content.sp_hide {
    max-width: 1320px;
    margin: 0 auto;
}
.concept_wrapper img {
    vertical-align: middle;
}

/*------------------------------------------
 *  プログラム  
 *----------------------------------------*/
.program_wrapper {
    background-color: #FDFCED;
    text-align: center;
    padding: 100px 50px 20px;

}
.program_title {
    line-height: 1.9;
}
.program_title img {
    width: 338px;
}
.program_title p:first-of-type {
    font-weight: bold;
    margin: 20px 0;
}
.program_contents {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px 20px;
}
.program_contents img {
    margin-bottom: 80px;
}
@media only screen and (max-width: 640px) {
    .program_wrapper {
        padding: 50px 0 80px;
    }
    .program_contents {
        padding: 20px 0 0;
    }
    .program_title img {
        width: 75%;
    }
    .program_contents img {
        margin-bottom: 30px;
    }
}

/*------------------------------------------
 *  概要  
 *----------------------------------------*/
.overview_wrapper {
    background-color: #F0E664;
    text-align: center;
    padding: 50px 50px 100px;
}
.overview_content_txt {
    max-width: 1000px;
    margin: 0 auto;
}
.overview_content_txt img:first-child {
	width: 750px;
}
.overview_column {
    display: flex;
    gap: 7em;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px 100px;
}
.overview_left,
.overview_right {
    width: calc(50% - 50px);
}
.overview_left p,
.overview_right p {
    font-weight: bold;
    line-height: 1.8;
    margin: 30px 0;
}
@media only screen and (max-width: 640px) {
    .overview_wrapper {
        padding: 30px 0 50px;
    }
    .overview_column {
        display: block;
        padding: 50px 30px 100px;
    }
    .overview_left,
    .overview_right {
        width: 100%;
    }
    .overview_left {
        margin-bottom: 50px;
    }
}

/*------------------------------------------
 *  当日の流れ  
 *----------------------------------------*/
.overview_timeschedule_pc {
    
}
.overview_timeschedule_pc_content {
    background-color: #fff;
    max-width: 1200px;
    border-radius: 40px 40px 0 0;
    margin: 0 auto;
}
.overview_timeschedule_pc_content_img {
    padding-top: 80px;
    max-width: 660px;
}
.overview_timeschedule_item{
    padding: 80px 100px 100px;
    
}


/*------------------------------------------
 *  在校生からのメッセージ  
 *----------------------------------------*/
.voice_wrapper {
    text-align: center;
}
.voice_title {
    padding: 100px 50px;
}
.voice_title img {
    width: 200px;
}
.voice_title p:first-of-type {
    font-weight: bold;
    margin: 20px 0;
}

.current_student_ttl {
    max-width: 658px;
}
.current_student_pc {
    max-width: 1000px;
    padding: 80px 50px 0;
    margin: 0 auto;
}
.current_student_pc img {
    margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
    .voice_title {
        padding: 50px 30px 0;
    }
    .current_student.pc_hide > .current_student_ttl {
        width: 47%;
        margin-top: 50px;
    }
    .current_student_sp {
        padding: 0 30px;
    }
    .current_student_sp img {
        margin-bottom: 50px;
    }
}
/*------------------------------------------
 *  高校生からの声  
 *----------------------------------------*/
.high_school_student_ttl {
    max-width: 660px;
    padding: 110px 50px 0;
}
.high_school_student_pc {
    max-width: 1000px;
    padding: 80px 50px 0;
    margin: 0 auto;
}
.high_school_student_pc img{
    margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
    .high_school_student.pc_hide > .high_school_student_ttl {
        max-width: 80%;
        margin-top: 50px;
        padding: 50px 30px 0;
    }
    .high_school_student_sp {
        padding: 0 30px 30px;
    }
    .high_school_student_sp img {
        margin-bottom: 50px;
    }
}
/*------------------------------------------
 *  画像ぐるぐる  
 *----------------------------------------*/
@keyframes infinity-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
    }
    .scroll-infinity__wrap {
        display: flex;
        overflow: hidden;
    }
    .scroll-infinity__list {
        display: flex;
        list-style: none;
        padding: 0;

    }
    .scroll-infinity__list--left {
        animation: infinity-scroll-left 18s infinite linear 0s;
    }
    .scroll-infinity__item {
        width: calc(100% / 5);
    }
    .scroll-infinity__item img {
        max-width: 300px;
        max-height: 200px ;
    }

/*------------------------------------------
 *  予約  
 *----------------------------------------*/
.reserve_wrapper {
    background-image: linear-gradient(180deg, #fafafa 50%, #f0e664 50%);
    padding-bottom: 130px;
}

.reserve_contents {
    margin: 100px auto 0;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0px 3px 6px 0 rgba(0, 0, 0, 0.1607843137254902);
    display: flex;
}
.reserve_left {
    width: calc(50% - 55px);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 100px;
    text-align: center;
    margin-right: 55px;
}
.reserve_left img {
    width: 200px;
}
.reserve_left h3 {
    font-size: 40px;
    line-height: 1.6;
    margin: 20px 0 50px;
}
.reserve_left p {
    color: #333;
    font-weight: bold;
    line-height: 1.9;
}

.reserve_right {
    width: calc(50% - 55px);
    padding-top: 85px;
    padding-bottom: 85px;
    padding-right: 50px;
    text-align: center;
    margin-left: 55px;
}
.reserve_right img {
    max-width: 500px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 640px) {
    .reserve_wrapper {
        padding: 80px 0 50px;
    }
    .reserve_contents {
        display: block;
        max-width: 75%;
        padding: 50px 25px 30px;
        margin-top: 0;
    }
    .reserve_left,
    .reserve_right {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .reserve_left img{
        width: 77%;
    }
    .reserve_left h3 {
        font-size: 20px;
    }
    .reserve_left p {
        margin: 0 0 50px;
    }
    .reserve_right img {
        width: 100%;
    }
}

/*------------------------------------------
 *  資料請求 
 *----------------------------------------*/
.document_wrapper {
    background-color: #f0e664;
}
.document_contents {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px 100px;
    display: flex;
    align-items: center;
}
.document_left,
.document_right {
    width: 47%;
    margin-right: 3%;
}
.document_left img {
    margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
    .document_contents {
        padding: 0 30px 80px;
    }
    .document_contents.pc_hide img {
        margin-bottom: 20px;
    }
    .document_contents.pc_hide a {
        margin-top: 30px;
    }
}


/*------------------------------------------
 *  フッター 
 *----------------------------------------*/
@media only screen and (max-width: 640px) {
    .map_wrapper iframe {
        height: 200px;
    }
}

.footer_wrapper {
    background-color: #fff;
    padding: 50px 50px 30px;
    text-align: center;
    margin: 0 auto;
}
.footer_wrapper img {
    max-width: 300px;
}
.footer_wrapper p {
    margin: 30px 0 50px;
    line-height: 1.9;
}
.link_area {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 50px auto 0;
}
.link_area a{
    color: #1e78c8;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.2s !important;
    width: 32%;
    display: inline-block;
    font-size: 18px;
    line-height: 1.1;
}
.link_area a:first-child {
    text-align: right;
}
.link_area a:last-child {
    text-align: left;
}
.copyright {
    color: #999;
    font-size: 12px;
    margin: 30px 50px 0;
    display: block;
}
@media only screen and (max-width: 640px) {
    .footer_wrapper {
        padding: 50px 30px;
    }
    .footer_wrapper img {
        max-width: 100%;
    }
    .footer_wrapper p {
        font-weight: 700;
    }
    .link_area {
        flex-direction: column;
        margin-top: 20px;
    }
    .link_area a {
        width: 100%;
        text-align: left !important;
        margin-top: 30px;
    }
    .copyright {
        font-size: 10px;
        margin: 30px 0 90px;
    }
}