@charset "utf-8";
/* CSS初期化のスタイルを記載 */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,section,article,aside,hgroup,header,footer,nav,dialog,figure,menu,video,audio,mark,time,canvas,details {    margin: 0;    padding: 0;    border: 0;    font-size: 100%;    background: transparent;    -webkit-box-sizing: border-box;    box-sizing: border-box;}a {    color: #000;    -webkit-transition: opacity 0.3s ease-in-out;    transition: opacity 0.3s ease-in-out;    text-decoration: none;}section,article,aside,hgroup,header,footer,nav,dialog,figure,figcaption {    display: block;}input,select {    vertical-align: middle;}body {    line-height: 1;    font-family: 'Noto Sans JP', sans-serif;    color: #000;    width: 1100px;    overflow-x: scroll;    font-size: 16px;    line-height: 1.6em;    letter-spacing: .075em;    margin: auto;}img {    vertical-align: bottom;}ul,li,dl,dt,dd,form {    margin: 0px;    padding: 0px;    border: 0px;    list-style: none;    letter-spacing: normal;    /* For IE 6/7 */    *display: inline;    *zoom: 1;}li::marker {    margin: 0;    padding: 0;}blockquote,q {    quotes: none;}blockquote:before,blockquote:after,q:before,q:after {    content: '';    content: none;}ins {    /* remember to highlight inserts somehow! */    text-decoration: none;}del {    text-decoration: line-through;}table {    /* markup tables with 'cellspacing="0"' */    border-collapse: collapse;    border-spacing: 0;}.bold {    font-weight: 700;}main {    width: 100%;    max-width: 1100px;    overflow-x: scroll;    margin: auto;}section {    margin: auto;}
/*================================
表示・非表示
================================*/
.pc {
    display: block;
}
.sp {
    display: none;
}

body {
    width: 100%;
    margin: auto;
    overflow-x: scroll;
    background: url(../img/school/bgMain.jpg) repeat-x center top ;
}
main.pcContent {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 15px 0 35px;
}
main.spContent {
    display: none;
}
main.pcContent img {
    width: 100%;
    height: auto;
}
.pcContent  a:hover {
    opacity: 0.5;
}
.pcContent .mvArea {}
.pcContent .mvArea .mvTtl {
    width: 651px;
    margin:40px auto 100px
    
}
.pcContent .mvArea .introduction {
    width: 1100px;
    margin: 80px auto 0;
}
.pcContent .school{
    padding: 50px 30px;
    width: 1050px;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 100px;
}

.pcContent .schoolBox h3{width: 472px;
    margin: 0 auto 20px;}
.pcContent .schoolBox ul{ width: 100%; margin:50px auto 0;  display: flex;
  justify-content: space-between;}
.pcContent .schoolBox ul li{ width: 50%;}
.pcContent .schoolBox ul li p{ width: 90%; text-align: left; margin-bottom: 20px;}
.pcContent .schoolBox ul li p img{ width: 100%; height: auto;}
.pcContent .schoolBox ul li:last-child{padding-top: 80px;}


.pcContent .pageTop {
    width: 120px;
    height: 120px;
    position: fixed;
    right: 60px;
    bottom: 60px;
}
.pageTop a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-animation-duration: 1.0s;
    animation-duration: 1.0s
}
.pageTop a:hover {
    -webkit-animation: waving 0.6s;
    animation: waving 0.6s;
}
.mizuicon {
    -webkit-animation: vertical 1s ease-in-out infinite alternate;
    animation: vertical 1s ease-in-out infinite alternate;
}
.pageTop img {}
.footouter{ width: 100%; background: #fff; padding: 50px 0;}
footer {
    max-width: 1200px;
    margin: auto;
    background: #fff;
}
footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
footer .logoArea {
    width: 50%;
}
footer img {
    width: 180px;
}
footer .detailArea {
    width: 50%;
}
footer p {
    font-size: 12px;
}
footer a {}
footer a:hover {
    cursor: pointer;
    opacity: .5;
}
footer a + a::before {
    content: "/";
    display: inline-block;
    margin: 0 10px;
}
@-webkit-keyframes horizontal {
    0% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}
@keyframes horizontal {
    0% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}
@-webkit-keyframes vertical {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes vertical {
    0% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@media only screen and (max-width: 640px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    body {
        width: 100%;
        margin: auto;
        overflow-x: scroll;
        background:  url("../img/school/sp/bgMain.jpg") no-repeat center top / cover;
		
    }
    main.pcContent {
        display: none;
    }
    main.spContent {
        display: block;
        width: 100%;
		
		
    }
    main.spContent img {
        width: 100%;
    }
    .mvArea {
        width: 100%;
        margin: 9.5vw auto 0;
    }
    .mvArea .mvTtl {
        width: 78vw;
        margin: auto;
    }
    .mvArea .introduction {
        width: 90vw;
        margin: 1vw auto 0;
    }
    
  
    .movieContents {
        position: relative;
        margin: 0 auto 0;
    }
    .movieTtl {
        width: 73.8vw;
        margin: auto 30px;
    }
    .school{
    padding: 30px 20px;
    width: 95%;
    border-radius: 30px;
    background-color: rgba(255,255,255,0.8);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.schoolBox h3{width: 100%;
    margin: 0 auto 20px;}
.schoolBox ul{ width: 100%; margin:20px auto 0;  display: block;
 }
.schoolBox ul li{ width: 100%;}
 .schoolBox ul li p{ width: 100%; text-align: center; margin-bottom: 20px;}
.schoolBox ul li p img{ width: 100%; height: auto;}
.schoolBox ul li:last-child{padding-top: 20px;}

    
    
    
    
    
    
    
    .pageTop {
        width: 17.3vw;
        height: 17.3vw;
        position: fixed;
        right: 5.7vw;
        bottom: 10vw;
    }
   .footouter{ padding: 0;}
    footer {
        margin: 0 auto 0;
        width: 100%;
        padding: 5vw 3vw;
        background: #fff;
    }
    footer .logoArea {
        width: 27%;
    }
    footer .logoArea img {
        width: 100%;
    }
    footer .detailArea {
        width: 73%;
        margin: auto;
    }
    footer .detailArea p {
        font-size: 5px;
        letter-spacing: 0;
        line-height: 10px;
    }
    footer a + a::before {
        margin: 0 3px;
    }
}
