@charset "UTF-8";

/* CSS Document */

/*-----------------------

　　リセット

-----------------------*/
*{ margin:0; padding:0; box-sizing: border-box; }
ul ,li{ list-style-type:none; }
img{ width:100%; border:none; height: auto; }

/*スマホの文字大きさ制御*/
p{ max-height: 100%; }

:root {
    --main-light-color: #e8f1f3;
    --main-color: #007a88;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Slackside+One&display=swap');


/*-----------------------

　　全体

-----------------------*/
html{
    font-size: 62.5%;
}
body{
    background-color: var(--main-light-color);
    color: #1a1a1a;
    font-size: 10px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    position: relative;
}
html.noScroll
body.noScroll{
    overflow: hidden;
}

header,
main,
footer{
    font-size: 1.5rem;
}

p{
    text-align: justify;
    word-break: break-all;
}


/*-----------------------

　　ヘッダー・メインビジュアル

-----------------------*/
header{
    position: relative;
    min-height: 80px;
}

.mainImg img{
    height: auto;
}

/* header .mainImg {
    overflow: hidden;
    margin-bottom: 5px;
    padding-top: calc( 100vh - 12px);
    margin: 5px 5px 0;
    position: relative;
} */
/* header .mainImg::before {
    content: '';
    display: block;
    background-image: url(../img/top/main_sp.jpg);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
} */

/* header .mainImg .copy{
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    padding-top: 50%;
    width: 100%;
    z-index: 1;
    animation: fadeIn 4s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

header .mainImg .copy::before {
    content: '';
    display: block;
    background-image: url(../img/top/main_copy_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    width: 96%;
    height: 100%;
} */

header .naviWrap{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    padding: 10px 10px 0;
}

header .naviWrap .navi{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .naviWrap .navi .logo{
    font-size: 0;
    width: 200px;
}
header .naviWrap .navi .logo a{
    display: block;
}

/*------▼ハンバーガーメニュー関連（SP）▼------*/
@media screen and (max-width: 1000px) {
    
    .wrapper {
        height: 100%;
        overflow-x: hidden;
        position: relative;
        display: block;
    }
    .overlay {
        content: '';
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.7)!important;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 99;
        opacity: 0;
        transition: opacity .5s;
    }
    .overlay.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    
    header .sp_menu_btn {
        cursor: pointer;
        position: relative;
        width: 60px;
        height: 30px;
    }
    header .menu_trigger {
        display: inline-block;
        width: 38px;
        height: 28px;
        vertical-align: middle;
        position: absolute;
        top: -2px;
        right: 5px;
        z-index: 100;
    }
    header .menu_trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 80%;
        height: 2px;
        background-color: var(--main-light-color);
    }
    header .menu_trigger.active span {
        background-color: var(--main-light-color);
    }
    header .menu_trigger span:nth-of-type(1) { top: 5px; }
    header .menu_trigger span:nth-of-type(2) { top: 16px; }
    header .menu_trigger.active span:nth-of-type(2) { opacity: 0; }
    header .menu_trigger span:nth-of-type(3) { bottom: 0; }
    header .menu_trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        top: 3px;
    }
    header .menu_trigger.active span:nth-of-type(3) {
        transform: translateY(-4px) rotate(45deg);
        bottom: 6px;
    }
    header #menu {
        width: 80vw;
        height: 100%;
        background-color: var(--main-light-color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        transform: translate(80vw);
        padding: 20px 0;
    }    
    header #menu.open {
        transform: translate(0,0);
        overflow-x: hidden;
        height: 100%;
        display: block;
        transition: all .5s;
    }
    header #menu.close {
        transition: all .5s;
    }
    
    header #menu .sp_menu_btn{
        width: 100%;
    }
    header #menu .menu_trigger span {
        background-color: #1a1a1a;
    }
    header #menu .menu_trigger.active span {
        background-color: #1a1a1a;
    }
    
    
    header .naviListWrap{
        padding: 5px 10px 0;
    }
    
    header .naviMain li a{
        background-color: #fff;
        color: #1a1a1a;
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        padding: 10px 10px;
        text-decoration: none;
    }

    header .naviSub li a{
        border-bottom: 1px solid #1a1a1a;
        color: #1a1a1a;
        display: block;
        font-size:90%;
        padding: 10px 5px;
        text-decoration: none;
    }

}
/*------▲ハンバーガーメニュー関連（SP）▲------*/



@media screen and (min-width: 600px) {
    header .mainImg::before {
        background-image: url(../img/top/main_pc.jpg)
    }
    header .mainImg .copy{
        padding-top: 180px;
        width: 540px;
        right: 2%;
        bottom: 20px;
    }
    header .mainImg .copy::before {
        background-image: url(../img/top/main_copy_pc.png);
        width: 100%;
    }
}

@media screen and (min-width: 1001px) {
    header .mainImg{
        margin: 0;
    }    
    /* header .mainImg::after{
        content: '';
        background: linear-gradient(to bottom, rgba(128,198,209,1) 0%, rgba(128,198,209,1) 5%, rgba(128,198,209,0) 20%); 
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;        
        mix-blend-mode: multiply;
    } */
    header .mainImg .copy{
        padding-top: 210px;
        width: 630px;
    }
    header .naviWrap{
        display: flex;
        justify-content: space-between;
        padding: 10px 2% 0;
    }    
    header .naviWrap .navi{
        width: 300px;
    }
    header #menu{
        width: calc( 100% - 300px);
        margin-top:10px;
    }
    
    header .naviMain li{
        display: inline-block;
        font-weight: bold;     
        border-right: 2px solid #fff;
        padding: 0 14px 0 16px;
        margin-left:-1px;
        margin-top: 10px;
    }
    header .naviMain li a{
        color:#fff;
        text-decoration: none;
    }
    
    
    header .naviListWrap{
        text-align: right;
    }
    header .naviMain li{
        margin-top:0;
        padding: 0 12px 0 12px;
    }
    header .naviMain li:last-child{
        border-right: none;
        padding-right: 0;
    }
    header .naviSub {
        margin-top: 2px;
    }
    header .naviSub li{
        display: inline-block;
        font-size: 90%;
        padding-left: 4px;
        line-height: 1.0;
    }
    header .naviSub li a{
        color:#fff;
        text-decoration: none;
    }
    header .naviSub li a::before{
        content:"▶︎";
        color: var(--main-light-color);
        font-size:90%;
        margin-right: 2px;
    }
}
/*------▲ナビゲーション（PC）▲------*/


/*----------- クローン -----------*/
#cloneHeader{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    display: none;
}
#cloneHeader .naviWrap{
    background-color: #333c75;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);
    padding-top: 8px;
    padding-bottom: 10px;
}


/*------ ヘッダー用（2024.04.22中ページだけではなく全ページ調整に変更） ------*/
 header .naviWrap .navi .logo > a.logo_w{
    display: none;
}
 header #cloneHeader .logo > a.logo_w{
    display: block;
}
 header #cloneHeader .logo > a.logo_b{
    display: none;
}
@media screen and (max-width: 1000px) {
     header > #cloneOrigin .menu_trigger span {
        background-color: #000;
    }
    #cloneOrigin .menu_trigger.active span {
        background-color: #000;
    }
}

@media screen and (min-width: 1001px) {    
     header > #cloneOrigin .naviMain  li{
        border-right-color: #000;
    }
     header > #cloneOrigin .naviMain li a{
        color:#000;
    }
     header > #cloneOrigin .naviSub li a{
        color:#000;
    }
     header > #cloneOrigin .naviSub li a::before{
        color: #000;
    }
}





/*-----------------------

　　メイン・全ページ共通

-----------------------*/

.btnWrap{
    margin: 20px auto 10px;
    text-align: center;
}
.btn{
    background-color: #1a1a1a;
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    line-height: 1.0;
    padding: 14px 30px;
    text-align: center;
    text-decoration: none;
    min-width: 200px;
    margin: 0 5px 10px;
}
.btnB{
    background-color: var(--main-color);
}
.arrow{
    padding-right: 40px;
    position: relative;
}
.arrow::after{
    content:'';
    position: absolute;
    right: 15px;
    top: calc( 50% - 8px);
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}

.inr{
    max-width: 1200px;
    margin: 0 auto;        
    padding: 0 4%;
}
.inrS{       
    padding: 0 8%;
}

.sec_ttl{
    display: flex;
    align-items: center;
    font-size: 200%;
    margin: 40px 0 20px;
}
#top #news .sec_ttl{
    margin-top: 40px;
}
.sec_ttl:before,
.sec_ttl:after {
    content: '';
    height: 1em;
    flex-grow: 1;
    z-index: 0;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 8px, #fff 8px, #fff 10px );
}
.sec_ttl:before {
    margin-right: 0.5em;
}
.sec_ttl:after {
    margin-left: 0.5em;
}

.boxW{
    border: 4px solid #fff;
    margin: 20px 0;
    padding: 20px 8%;
}
.bakW{
    background-color: #fff;
    margin: 20px 0;
    padding: 30px 8%;
}
.uLineW{
    border-bottom: 2px solid #fff;
}
.listMaru > li{
    margin-top: 5px;
    padding-left: 16px;
    position: relative;
}
.listMaru > li::before{
    content: '';
    background-color: #000;
    border-radius: 50%;
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 7px;
    left: 0;
}
.listMaru > li.maruW::before{
    box-sizing: border-box;
    background-color: inherit;
    border: 1px solid #000;
}

.dropShadow {
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, .15));
}


/*------ レスポンシブ ------*/
@media screen and (max-width: 599px) {
    .bakW > .inrS{       
        padding: 0;
    }
}
@media screen and (min-width: 600px) {
    .sec_ttl{
        margin: 100px 0 60px;
    }
}
@media screen and (min-width: 1000px) {
    .btnWrap {
        margin-bottom: 20px;
    }
}

/*-----------------------

　　トップページ

-----------------------*/

/*------ 心コミについて ------*/
#top #about > .inr > h2{
    padding: 0 5px;
    text-align: justify;
}
#top #about .boxW > h3{
    margin-bottom: 10px;
}

#top #about .aboutList > dl:not(:last-child){
    border-bottom: 2px solid #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
#top #about .aboutList > dl > dt{
    display: flex;
    font-size: 140%;
    font-weight: bold;
    line-height: 1.4;
}
#top #about .aboutList > dl > dt > .num{
    font-size: 250%;
    line-height: 1.0;
    font-family: "Slackside One", cursive;
    font-weight: 400;
    font-style: normal;
    color: #de7652;
}
#top #about .aboutList > dl > dt > .aboutTtl{
    padding: 18px 0 0 10px;
}
#top #about .aboutList > dl > dd{
    margin: 10px 0 20px;
    padding: 0 8%;
}
#top #about .aboutList > dl > dd figure{
    margin: 0 auto;
    max-width: 320px;
}
#top #about .message{
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 20px 0;
}
#top #about .nameWrap{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
#top #about .nameWrap figure{
    width: 100px;
}
#top #about .nameWrap .name{
    line-height: 1.2;
    padding-left: 10px;
    width: calc( 100% - 100px);
}
#top #about .nameWrap .name > p{
    margin-top: 10px;
}

#top #about {
    padding-top: 70px;
    margin-top: -70px;
}

/*------ CONTENTS ------*/
#top .contentsLink .contentsSlider{
    margin: 0 auto 80px;
}
#top .contentsLink .contentsSlider li a{
    border: 6px solid #fff;
    color: #fff;
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    text-decoration: none;
}
#top .contentsLink .contentsSlider li a > div{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
#top .contentsLink .contentsSlider li .ttl{
    font-weight: bold;
}
#top .contentsLink .contentsSlider img{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}
#top .contentsLink .contentsSlider li.slick-slide{
    padding: 0 5px;
    width: 240px;
}
#top .contentsLink .contentsSlider .slick-dots{
    bottom: -40px;
}
#top .contentsLink .contentsSlider .slick-dots li button:before{
    color: #1a1a1a;
    font-size: 60px;
    line-height: 0;
    opacity: 1;
}
#top .contentsLink .contentsSlider .slick-dots li.slick-active button:before{
    color: #fdbd8d ;
}


/*------ レスポンシブ ------*/
@media screen and (min-width: 600px) {
    #top .contentsLink .contentsSlider li .ttl{
        font-size: 180%;
    }
}


/*------ shincomiNews ------*/
#shincomiNews{
    background-image: url(../img/top/bg_news.png);
    margin: 80px 0 -60px;
    padding: 40px 0 60px;
}
#shincomiNews h1{
    text-align: center;
    margin-bottom: 20px;
}
#shincomiNews .intro{
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-weight: bold;
    margin: 10px 0 30px;
    padding: 20px 4%;
}


#shincomiNews .bakW{
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
#shincomiNews article.onAdd .bakW{
    margin: 0;
}
#shincomiNews article.add{
    background-color: #e8e7de;
    color: #4d4d4d;
    margin-top: 20px;
}


#shincomiNews .articleContentWrap{
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

#shincomiNews article.add ul > li::before{
    background-color: #4d4d4d;
}

#shincomiNews article.onPhoto{
    margin-bottom: 0;
}

#shincomiNews .articleContent:not(:last-child){
    margin-bottom: 20px;
}

#shincomiNews article h4.articleSubTtl{
    border-bottom: 2px solid #cacaca;
    margin-bottom: 8px;
    position: relative;
}
#shincomiNews article h4.articleSubTtl:after {
  content: '';
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 1em;
  border-bottom: 2px solid #fdbd8d ;
}
#shincomiNews article p.subttlBox {
    text-align: center;
    width: 100%;
}
#shincomiNews article h3:not(class) {
    font-size: 150%;
    line-height: 1.2;
    text-align: center;
    margin: 10px 0 30px;
    width: 100%;
}
#shincomiNews article p.subttlBox span{
    background-color: #1a1a1a;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    padding: 2px 10px;
}
#shincomiNews article .articleTtl{
    font-size: 180%;
    line-height: 1.2;
    margin-bottom: 10px;
}
#shincomiNews article .articleTtl span{
    background:linear-gradient(transparent 40%, #fdbd8d 40%);
}
#shincomiNews article .articleTtl .red{
    color: #ff003c;
}
#shincomiNews article .txt:not(:last-child){
    margin-bottom: 20px;
}
#shincomiNews article .hukidashi{
    background-color: #edede7;
    font-size: 110%;
    font-weight: bold;
    text-align: center;
    margin: 20px 0 30px;
    padding: 5px 0;
    position: relative;
    max-width: 320px;
}
#shincomiNews article .hukidashi:after{
    content: '';
    display: block;
    border-top: 20px solid #edede7;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: -20px;
    left: 40px;
}



/*------ レスポンシブ ------*/
@media screen and (max-width: 599px) {

    #shincomiNews article.bakW.onPhoto{
        background-color: transparent;
        padding: 0;
    }

    #shincomiNews article.onPhoto .txt{
        background-color: #fff;
        padding: 70px 8% 40px;
    }
    #shincomiNews article.onPhoto .mainPhoto{
        margin-bottom: -60px;
        padding: 0 8%;
    }
    
}
@media screen and (min-width: 600px) {
    
    #top #about .aboutList{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #top #about .aboutList > dl{
        width: 48%;
    }
    #top #about .aboutList > dl:nth-child(2n-1){
        margin-right: 4%;
    }  
    #top #about .aboutList > dl:nth-child(3){
        border-bottom: none;
    }
    
    #top .contentsLink .contentsSlider li.slick-slide{
        padding: 0 5px;
        width: 320px;
    }
    
    /*------ shincomiNews ------*/
    #shincomiNews .intro{
        text-align: center;
    }

    #shincomiNews article.onPhoto{
        background-color: #fff;
    }

    #shincomiNews .articleContent{
        display: flex;
        flex-wrap: wrap;
    }

    #shincomiNews .articleContent > figure,
    #shincomiNews article.onPhoto .mainPhoto{
        margin: 0 auto;
        padding: 0;
        width: 40%;
        max-width: 300px;
    }

    #shincomiNews .articleContent > .txt{
        padding-left: 20px;
        width: calc( 100% - 300px);
        min-width: 60%;
    }
    #shincomiNews .articleContent > .txt:nth-child(2n-1){
        padding-left: 0;
        padding-right: 20px;
    }

    #shincomiNews .articleContentWrap{
        grid-template-columns: 1fr 1fr;
    }
}



/*-----------------------

　　中ページ共通

-----------------------*/
.subpage .pageTtl{
    font-size: 150%;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inr > .pageTtl{
    margin-top: 30px;
}

.subpage .pageTtl:before,
.subpage .pageTtl:after {
    content: '';
    top: 50%;
    display: inline-block;
    width: 10px;
    height: 3px;
    background-color: #000;
    margin: 0 5px;
}

.subpage .resume{
    font-size: 120%;
}

/*------ レスポンシブ ------*/
@media screen and (max-width: 599px) {
    .subpage .resume .btn{
        width: 100%;
    }
}
@media screen and (min-width: 600px) {
    .subpage .pageTtl{
        font-size: 180%;
    }
    .subpage .resume .btn{
        min-width: 300px;
    }
}
@media screen and (min-width: 1000px) {
    .subpage .pageTtl{
        font-size: 200%;
        padding-top: 20px;
    }
    .subpage .pageLink .bakW{
        margin-top: 50px;
    }
}


/*-----------------------
　　カリキュラム
-----------------------*/
#curriculum .course_class h3{
    border-left-width: 10px;
    border-left-style: solid;
    font-size: 120%;
    line-height: 1.5;
    margin: 25px 0 5px;
    padding-left: 5px;
}
#curriculum .course_class h3{
    border-left-width: 10px;
    border-left-style: solid;
    font-size: 120%;
    line-height: 1.5;
    margin: 25px 0 5px;
    padding-left: 5px;
}
#curriculum .course_class h3:first-child{
    margin-top: 15px;
}
#curriculum .course_class .course_c{
    border-left-color: #000000;
}
#curriculum .course_class .course_ch{
    border-left-color: #7cbb25;
}
#curriculum .course_class .course_ch + .listMaru li::before{
    background-color: #7cbb25;
}
#curriculum .course_class .course_ch + .listMaru li.maruW::before{
    background-color: inherit;
    border-color: #7cbb25;
}
#curriculum .course_class .course_g{
    border-left-color: #eb6676;
}
#curriculum .course_class .course_g + .listMaru li::before{
    background-color: #eb6676;
}
#curriculum .course_class .course_g + .listMaru li.maruW::before{
    background-color: inherit;
    border-color: #eb6676;
}
#curriculum .course_class p,
#curriculum .course_class ul,
#curriculum .course_class .photo{
    margin-left: 15px;
}
#curriculum .course_class ul{
    margin-top: 10px;
}

#curriculum .course_class ul > li{
    margin-top: 0;
}

#curriculum .course_class .kamoku{
    margin: 20px 0 10px;
}


#curriculum .grade article{
    border-radius: 12px;
    margin-top: 30px;
    padding-bottom: 40px;
}
#curriculum .grade .title{
    display: flex;
    align-items: center;
}
#curriculum .grade .title h2{
    color: var(--main-color);
    font-size: 250%;
    padding-right: 10px;
}
#curriculum .grade .title h3{
    color: var(--main-color);
    font-size: 120%;
    margin-top: 5px;
}
#curriculum .grade h1{
    font-size: 120%;
    margin: 5px 0 5px;
}
#curriculum .grade .course_class{
    margin-top: 20px;
}
#curriculum .grade figure{
    margin-top: 10px;
}
#curriculum .class_image{
    background-color: #fff5d7;
    margin-top: 20px;
    padding: 10px 20px 20px;
}


/*------ フィールド実習 ------*/

#curriculum .field .title{
    text-align: center;
    line-height: 1.0;
    font-weight: bold;
    margin-bottom: 30px;
}
#curriculum .field .title h4{
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    margin: 30px 0 10px;
    padding: 5px 20px;
}
#curriculum .field .title h3{
    font-size: 180%;
}

#curriculum .field article{
    margin-bottom: 40px;
}

#curriculum .field .clmn2 .articleContent{
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 20px;
}

#curriculum .field .icon{
    margin: 20px auto 0;
    max-width: 150px;
}
#curriculum .field .year{
    text-align: center;
}
#curriculum .field .name{
    font-size: 140%;
    font-weight: bold;
    text-align: center;
}


#curriculum .field .articleTtl{
    font-size: 150%;
    line-height: 1.4;
    margin-bottom: 10px;
}

#curriculum .field .interview{
    padding-top: 0;
    padding-bottom: 50px;
    margin-top: 0;
}
#curriculum .field .interview dt{
    background-color: #fff9e8;
    color: var(--main-color);
    font-weight: bold;
    margin: 30px 0 10px;
    padding: 5px 10px;
}
#curriculum .field .interview dt:first-child{
    margin-top: 0;
}

/*------ 色分け ------*/
#curriculum .field .environment .title h4{
    background-color: #33b8d2;
}
#curriculum .field .environment .articleTtl{
    color: #33b8d2;
}
#curriculum .field .area .title h4{
    background-color: #8f8bb6;
}
#curriculum .field .area .articleTtl{
    color: #8f8bb6;
}
#curriculum .field .edu .title h4{
    background-color: #ed798e;
}
#curriculum .field .edu .articleTtl{
    color: #ed798e;
}
#curriculum .field .out .title h4{
    background-color: #de7652;
}
#curriculum .field .out .articleTtl{
    color: #de7652;
}
#curriculum .field .agri .title h4{
    background-color: #8ec43e;
}
#curriculum .field .agri .articleTtl{
    color: #8ec43e;
}


/*------ レスポンシブ ------*/
@media screen and (max-width: 768px) {
    /*768pxまで*/
    #curriculum .field article .mainPhoto{
        margin-bottom: -60px;
        padding: 0 8%;
        width: 100%;
    }    
}

@media screen and (min-width: 600px) {
    #curriculum .course_class ul{
        display: flex;
        flex-wrap: wrap;
    }
    #curriculum .course_class ul > li{
        width: 50%;
        padding-right: 3em;
    }
    #curriculum .course_class .photo{
        display: flex;
        justify-content: center;
    }
    #curriculum .grade figure{
        margin-right: 1%;
        margin-left: 1%;
        width: 48%;
    }
}

@media screen and (min-width: 769px) {
    #curriculum .field article .clmn2{
        background-color: #fff;
        display: flex;
        padding: 50px 8% 15px;
    }        
    #curriculum .field article .clmn2 > figure{
        width: 45%;
    }
    #curriculum .field article .clmn2 > .articleContent{
        margin: 0;
        padding: 0 0 0 15px;
        width: 55%;
    }
    
    #curriculum .field .personContent{
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
    #curriculum .field .personContent > figure{
        margin-top: 0;
        width: 30%;
    }
    #curriculum .field .personContent .txt{
        padding-left: 10px;
        width: 70%;
    }
    #curriculum .field .name{
        font-size: 90%;
        text-align: left;
    }
    #curriculum .field .year{
        text-align: left;
    }    
    
}




/*-----------------------
       制度・研修
-----------------------*/

#system .flex .title,
#system .training .title{
    text-align: center;
    line-height: 1.0;
    font-weight: bold;
    margin-bottom: -6vw;
}
#system .flex .title h4,
#system .training .title h4{
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    margin: 30px 0 10px;
    padding: 5px 20px;
}
#system .flex .title h3,
#system .training .title h3{
    font-size: 180%;
}

#system .flex article,
#system .training article{
    margin-bottom: 40px;
    padding-bottom: 40px;
}
#system .flex .photo,
#system .training .photo{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
#system .flex article.onPhoto .mainPhoto,
#system .training article.onPhoto .mainPhoto{
    width: fit-content;
}

#system .flex .articleTtl,
#system .training .articleTtl{
    font-size: 150%;
}
#system .flex .faq dt,
#system .training .faq dt{
    color: var(--main-color);
    font-weight: bold;
    margin: 30px 0 10px;
}
#system .flex .faq dt,
#system .flex .faq dd,
#system .training .faq dt,
#system .training .faq dd{
    padding: 10px 10px 10px 30px;
}
#system .flex .faq dt,
#system .training .faq dt{
    background-image: url(../img/system/q.png);
    background-repeat: no-repeat;
    background-size: 20px auto;    
}
#system .flex .faq dd,
#system .training .faq dd{
    background-image: url(../img/system/a.png);
    background-repeat: no-repeat;
    background-size: 20px auto;    
}

#system .flex .area .articleTtl,
#system .training .area .articleTtl{
    color: #33b8d2;
}

/*------ レスポンシブ ------*/
@media screen and (min-width: 600px) {

    #system .clmn2{
        display: grid;
        grid-template-columns: 240px 1fr;
        align-items: flex-end;
    }
    #system .flex article.onPhoto .mainPhoto img,
    #system .training article.onPhoto .mainPhoto img{
        max-height: 600px;
        max-width: 800px;
    }

    #system .flex .photo,
    #system .training .photo{
        grid-template-columns: 1fr 1fr;
    }

}

/*-----------------------
       スタッフ紹介
-----------------------*/
#staff .inrS p{
    padding: 20px 0;
}
#staff .columnWrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 100px;
}
 #staff .columnWrap:nth-child(2){
    margin-top: 100px;
}
#staff .staffWrap .staff_name,
#staff .staffWrap .txt01,
#staff .staff_coment h4{
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
}
#staff .staffWrap .top{
    line-height: 1.2;
    padding: 0 0 5px 0;
}
#staff .staffWrap .photo{
    line-height: 1.2;
    padding: 0 20px 20px 0;
}
#staff .staffWrap .photo img{
    position: relative;
    z-index: 1;
}
#staff .staffWrap .photo figure{
    position: relative;
}
#staff .staffWrap .photo figure:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-image: radial-gradient(circle, var(--main-color) 2px, transparent 2px), radial-gradient(circle, var(--main-color) 2px, transparent 2px);
    background-position: 0 0, 0 0;
    background-size: 8px 10px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 0;
}
#staff .staffWrap .staff_name{
    font-size: 130%;
}
#staff .staffWrap .staff_name span{
    font-size: 1.3rem;
}
#staff .staffWrap dd:before {
    content: "\025c6";
    color: var(--main-color);
}
#staff .staffWrap dl dt{
    padding: 10px 0 0;
    font-weight: bold;
    text-align: center;
    font-size: 110%;
}
#staff .staffWrap dl{
    padding: 0 0 10px 0;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}
#staff .staff_coment h4{
    font-size: 140%;
    font-weight: bold;
}
#staff .roomWarp {
    margin: 30px 0;
    position: relative;
}
#staff .roomWarp:before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 60px;
    display: block;
}
#staff .roomWarp:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 75px;
    background-image: url(../img/staff/bg_room.png);
    background-repeat: no-repeat;
    background-size: 140px auto;
    background-position: center;
}

#staff .roomWarp h1{
    margin: 5px 0 20px 0;
    text-align: center;
    font-size: 180%;
}
#staff .roomWarp h1 span{
    background:linear-gradient(transparent 50%, #fff 60%);
    padding: 0 10px;
}

/*------ レスポンシブ ------*/
@media screen and (min-width: 600px) {
    #staff .staffWrap{
        width: 46%;
    }
    #staff .staffWrap .photo{
        margin: 0 auto;
    }

        #staff .roomWarp .photo{
        width: 448px;
        margin: 0 auto;
    }    
}


/*-----------------------
    キャンパスライフ
-----------------------*/
#life .inrS p{
    text-align: center;
}


#life .comment{
    color: var(--main-color);
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 5px;
}

#life .marker{
    background: linear-gradient(transparent 40%, var(--main-light-color) 40%);
}


#life .clmn2{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 10px;
}

#life .photoTtl{
    color: var(--main-color);
    font-size: 120%;
    font-weight: bold;
}
#life .profile .photoTtl{
    margin-top: 20px;
}

#life .message{
    background-color: #eef5e1;
    margin-top: 10px;
    padding: 14px 20px;
}
#life .message h2{
    font-size: 100%;
}

#life .timetable{
    background-color: var(--main-light-color);
    margin-top: 20px;
    padding: 20px 8%;
}
#life .timetable h2{
    color: var(--main-color);
    font-size: 120%;
}

/*------ レスポンシブ ------*/

@media screen and (min-width: 600px) {

    #life .columnWrap{
        display: grid;
        grid-template-columns: 1fr 200px;
        gap: 40px;
    }

}


@media screen and (min-width: 769px) {

    #life .profile{
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px;
    }

    #life .clmn2{
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}


/*-----------------------
    卒業生インタビュー
-----------------------*/
#interview .intro{
    margin-top:20px;
}
#interview .small{
    font-size: 80%;
}


#interview .interview_list *{
    text-align: justify;
}

#interview .interview_list > article{
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}
#interview .interview_list figure{
    margin: 0 auto;
    max-width: 480px;
}
#interview .interview_list .articleTtl{
    font-size: 170%;
    margin-bottom: 20px;
    line-height: 1.4;
}
#interview .interview_list .articleTtl span{
    background:linear-gradient(transparent 40%, var(--main-light-color) 40%);
}

#interview .interview_list .company{
    font-weight: bold;
}
#interview .interview_list .name{
    font-size: 160%;
    font-weight: bold;
}

#interview .interview_list .work{
    border: 4px solid var(--main-light-color);
    margin-top: 10px;
    padding: 15px 4%;
}


#interview .interview_list .interview{
    margin-top: 20px;
}
#interview .interview_list .interview h2{
    color: var(--main-color);
    font-size: 120%;
    line-height: 1.4;
    margin-bottom: 5px;
}
#interview .interview_list .interview h2:not(:first-child){
    margin-top: 20px;
}
#interview .interview_list .interview .intv_clmn2 .txt{
    margin-bottom: 10px;
}

#interview .interview_list .message{
    margin-top: 20px;
}
#interview .interview_list .message h2{
    color: var(--main-color);
    font-size: 120%;
    line-height: 1.4;
    margin-bottom: 5px;
}


#interview .interview_list .recruit_wrap{
    padding-top: 20px;
}
#interview .interview_list .recruit_wrap h2{
    margin-bottom: -45px;
    padding-left: 10px;
    width: 90%;
    max-width: 280px;
}
#interview .interview_list .recruit_wrap .bakW{
    background-color: #fffdd3;
    margin-bottom: 0;
}
#interview .interview_list .recruit_wrap ul li{
    list-style: disc;
    margin-left: 1.5em;
    padding-left: -1.5em;
}
    


/*------ レスポンシブ ------*/
@media screen and (min-width: 600px) {
    #interview .intro{
        text-align: center;
    }
    
    #interview .interview_list .recruit_wrap ul{
        display: flex;
        flex-wrap: wrap;
    }
    #interview .interview_list .recruit_wrap ul li{
        margin-right: 15px;
    }
    #interview .interview_list .interview h2 {
        font-size: 150%;
    }
}
@media screen and (min-width: 769px) {
    #interview .interview_list > article .clmn2{
        display: flex;
        align-items: center;
    }
    #interview .interview_list > article .clmn2 > figure{
        width: 50%;
    }
    #interview .interview_list > article .clmn2 > .txt{
        padding-left: 20px;
        width: 50%;
    }
    #interview .interview_list .interview .intv_clmn2{
        display: flex;
    }
    #interview .interview_list .interview .intv_clmn2 .txt{
        margin-bottom: 0;
        padding-right: 15px;
        width: 60%;
    }
    #interview .interview_list .interview .intv_clmn2 figure{
        width: 40%;
    }
}

/*-----------------------
　　心コミラウンドテーブル
-----------------------*/
#roundtable .intro {
    margin-top: 20px;
}
#roundtable .date span{
    display: block;
    font-size: 110%;
    font-weight: bold;
}

#roundtable .accordion .detail table,
#roundtable .accordion .detail table *{
    display: block;
    width:100%;
}

#roundtable .accordion .detail table tr:not(:first-child){
    margin-top: 20px;
}
#roundtable .accordion .detail table th{
    border-bottom: 1px solid #d6d6d6;
    color: #33b8d2;
    text-align: left;
    font-size: 110%;
    margin-bottom: 10px;
}
#roundtable .accordion .detail table td{
    margin-bottom: 20px;
    padding-left: 1em;
}

#roundtable .accordion .detail table td .name{
    display: block;
    margin-top:5px;
    font-weight: bold;
}
#roundtable .accordion .detail table td .name:first-child{
    margin-top:0;
}

#roundtable .accordion .detail table td .namePast span{
    display: block;
    margin-top:5px;
    font-weight: bold;
}

#roundtable .accordion .detail table td .namePast:first-child span{
    margin-top:0px;
}

#roundtable .accordion a{
    color:#00419f;
}

/*-----------------------
　　　よくあるご質問
-----------------------*/
#faq .accordion{
    padding-top: 20px;
}

#faq .accordion dt{
    font-weight: bold;
    font-size: 120%;
}

#faq .accordion .detail p{
    padding: 0 4% 10px;
}



/*-----------------------
       NEWS&TOPICS
-----------------------*/
#top #news,
.newsiframe #news{
    padding-bottom: 0;
}


#news .newsListWrap{
    border:none;
    height:210px;
    width:100%;  
    overflow:auto;
    -webkit-overflow-scrolling:touch;
}
.subpage #news .newsListWrap{
    height:500px;
}
#news iframe{
    border: none;
    padding: 0;
    vertical-align:bottom;
    width:100%;
    height:100%;
    display:block;
}
body.newsiframe{
    background-color: #fff
}

#news .newsWrap{
    background-color: #fff;
    margin-bottom: 40px;
    padding: 30px 6%;
}

#news .newsList dt{
    color: #808080;
    display: flex;
    align-items: center;
}
#news .new {
    background-color: #ff003c;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 80%;
    line-height: 1.0;
    margin-left: 5px;
    padding: 2px 10px;
}
#news .newsList dd:not(:last-child){
    margin-bottom: 20px;
    border-bottom:1px solid #e4e4e4;
    padding-bottom: 10px;
}
#news .newsList dd a{
    color:#00419f;
}

.archivesTitle{
    margin:0 0 30px;
    border-bottom:1px solid #cacaca;
    padding-bottom:10px;
}

.archivesTitle h2{
    margin:0;
    color:#57B5B3;
}

.archivesTitle p{
    font-size: 90%;
}

.unit img{
    width:40%;
}

/*.newsTopics #back{
    display: inline-block;
    margin:50px 0 50px;
    padding:10px 20px;
    background:#57B5B3;
}

.newsTopics #back a{
    color:white;
    text-decoration: none;
}*/

#news .bakW.columnWrap{
    padding-top: 40px;
    padding-bottom: 40px;
}

.newsTopics p,
.newsTopics em{
    font-feature-settings: "pkna" 1;
}

/*------ レスポンシブ ------*/
@media screen and (min-width: 600px) {
    #news .newsList{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #news .newsList > dt:not(:nth-last-child(2)),
    #news .newsList > dd:not(:last-child){
        border-bottom: 1px solid #e4e4e4;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    #news .newsList > dt{
        display: flex;
        width: 10em;
    }
    #news .newsList > dd{
        display: flex;
        width: calc( 100% - 10em);
    }
}

    
/*-----------------------

       フッター

-----------------------*/
footer{
    background-color: #fff;
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.footerContents{
    font-size: 75%;
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .logoShinkomi{
    margin: 5px 5px 0;
}

footer img{
    max-width:240px;
    margin:0 auto;
}

footer .logoExam img{
    max-width:180px;
}

footer p.access{
    display:inline-block;
    text-align: left;
    vertical-align: top;
    margin: 10px 0;
    padding: 0 10px;
}

.copyright{
    font-size: 60%;
    padding:20px 0 10px;
    text-align: center;
}

@media screen and (min-width: 1001px) {
    .footerContents{
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    
    footer p.access{
        margin: 0;
        padding: 0;
    }
    
    .logoShinkomi{
        border-left:1px solid #C1C1C1;
        padding-left: 20px;
        display: grid;
        grid-template-columns: 4fr 3fr;
        gap: 20px;
    }
}


/*-----------------------
　　上へ戻るボタン
-----------------------*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
}
.pagetop a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: rgba(26,26,26,0.5);
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    text-align: center;
    padding-top:8px;
}

/*-----------------------
    スクロールでふわっと
-----------------------*/
.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:2s;
 -ms-animation-duration:2s;
 animation-duration:2s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(30px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(30px); -ms-transform: translateY(30px); transform: translateY(30px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

/*-----------------------
　　アコーディオン
-----------------------*/
.accordion .displayNone {
    display: none;
}
.accordion dt {
    padding:20px 8% 20px 5%;
    background: #fff;
    margin-top:20px;
}
.accordion .switch {
    cursor:pointer;
    padding:20px 8% 20px 5%;
    background: #fff;
    margin-top:20px;
    position: relative;
}

.accordion .switch:after {
    position: absolute;
    top: calc( 50% - 15px);
    right: 4%;
    content: '>';
    font-size: 18px;
    font-weight: bold;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transition: all, 0.25s, linear;
    -o-transition: all, 0.25s, linear;
    -webkit-transition: all, 0.25s, linear;
    transition: all, 0.25s, linear;
    color: #33b8d2;
}
.accordion .switch.open:after {
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.accordion .detail{
    padding:20px 5% 20px;
    background: #f9f9f6;
}