
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }
/*------------------------------------------ css reset ------------------------------------*/
    /*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, 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,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
	    margin: 0;
	    padding: 0;
	    border: 0;
	    font-size: 100%;
	    font: inherit;
	    vertical-align: baseline;
}*/

/*------------------------------------------ all ------------------------------------------*/
   

    body{
        font-family: "メイリオ","hiragino",sans-serif ;
    }

 
    .container{
        max-width: 950px;
        padding: 0 0;
        border: 0;
        margin: 0 auto;
    }

    @media screen and (max-width: 800px){
        .container{
            max-width: fit-content;
            padding: 0 0;
            margin: 0 auto;
        }
    }
 
    .head_home{
        z-index: 2;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 10px;
        
    }

    @media screen and (max-width: 800px){
        .head_home{
            z-index: 2;
            justify-content: center;
            align-items: center;
            text-align: center;
            
        }
    }
    .head_home h2{
        font-size: 40px;
        color: #333;
        text-shadow: -1px -1px 0 #000;
        
    }

    .head_home p{
        font-size: 18px;
        color: #333;
    }

    .body_home{
        height: 550px;
        
    }

    @media screen and (max-width: 800px){
        .body_home{
            height: auto;
        }
    }

    /*--parallax設定--*/
    .parallax {
        position:relative;
        height:550px;
        overflow:hidden;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: flex;
        
    }
    .background {
        position:absolute;
        background-repeat:no-repeat;
        background-size:cover;
        top: 0;
        min-height: 550px;
        min-width: 100%;
        width: auto;
        z-index: -50;
        

    }

    /* 2分割レイアウト　*/
    .list{
        display: flex;
        flex-wrap: wrap;
        margin-top: 80px;
    }

    .list > li{
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .list img{
        width: 100px;
        height: 100px;
        transform: scale(1.2);
        filter: drop-shadow(-1px -1px 0 #333);
        
    }

    .list p{
        width: 360px;
        height: 300px;
        background-color:#fff;
        box-shadow: -1px -1px 0 #333;
        border-radius: 10px;
        color: #333;
        font-size: 16px;
        font-weight: bold;
        margin-top: 100px;
        padding:12px 12px;
    }

    .list p #movie{
        width: 250px;
        border: 1px solid rgb(114, 114, 114);
        margin-left: 3em;
    }

    @media screen and (max-width: 800px){

        .list{
            display: block;
            width: auto;
            align-content: center;            
            margin-top: 100px;
        }

        .list > li{
            width: auto;
            display:flex;
            flex-direction: column;
            align-items: center;
            margin-top: 50px;
            
        }

        .list p{
            width: 390px;
            font-size: 14px;
            margin-top: 50px;
            margin-bottom: 20px;
        }

        .list p #movie{
            width:270px;
        }
    }

    footer{
        height: 100px;
    }
 
/* ----------------------------------------- navi -----------------------------------------*/
    nav{
        position: fixed;
        display: table;
        justify-content: center;
        align-items: flex-start;
        height: 65px;
        width: 100%;
        background-color: rgba(153,153,153,0.4);
        z-index: 20;
    }
    .logo{
        position: absolute;
        margin-top: 23px;
        margin-left: 20px;
        
    }
    .logo:hover{
        cursor: pointer;
    }
    nav ul{
        float: right;
        margin-right: 20px;
    }
    nav ul li{
        display: inline-block;
        line-height: 65px;
        margin: 0 5px;
    }
    nav ul li a{
        color: #333333;
        font-size: 14px;
        font-weight: bolder;
        padding: 7px 13px;
        border-radius: 3px;
        text-transform: uppercase;
    }
    a.active,a:hover{
        color:#172A87;
        
    }
    
    .btn{
        display: none;
    }
    
    @media screen and (max-width: 800px){
        
        button {
            -webkit-appearance: none;
            appearance: none;
            vertical-align: middle;
            border: 0;
            background: transparent;
            outline: 0;
            border-radius: 0;
            text-align: inherit;
          }
          
          button:hover {
            cursor: pointer;
          }
          
          /**************** 以下、ハンバーガーボタンのスタイリング ****************/
          .btn {
            /* ボタンの配置位置  */
            position: fixed;
            top: 16px;
            right: 20px;
            /* ボタンの大きさ  */
            width: 40px;
            height: 40px;
            /* バーガーの線をボタン範囲の中心に配置 */
            display: flex;
            justify-content: center;
            align-items: center;
            /* 最前面に */
            z-index: 20;
          }
          
          /***** 真ん中のバーガー線 *****/
          .btn-line {
            /* 線の長さと高さ */
            width: 100%;
            height: 4px;
            /* バーガー線の色 */
            background-color: #333;
            /* バーガー線の位置基準として設定 */
            position: relative;
            transition: .2s;
          }
          
          /***** 上下のバーガー線 *****/
          .btn-line::before,
          .btn-line::after {
            /* 基準線と同じ大きさと色 */
            position: absolute;
            transition: .5s;
          }
          
          
          .btn-line::before {
            content: "";
            width: 100%;
            height: 100%;
            background-color: #333;
            /* 上の線の位置 */
            transform: translateY(-16px);
          }
          
          
          .btn-line::after {
            content: "menu";
            /* 下の線の位置 */
            display: block;
            width: 100%;
            text-align: center;
            transform: translateY(8px);
          }
          
          /***** メニューオープン時 *****/
          .btn-line.open {
            transition: .5s;
          }
          
          .btn-line.open::before {
            content: "";
            transform: translateY(0);
          }
          
          .btn-line.open::after {
            content: "close";
          }
        
        .logo{
            transform: scale(0.8);
            margin-left: 10px;
        }
        
        nav{
            top: 0;
        }
        nav ul{
            position: fixed;
            width: 100%;
            height: 80vh;
            background: rgba(153,153,153,0.4);
            top: 80px;
            left: -100%;
            text-align: center;
            transition: all .5s;
            z-index: 20;
        }
        nav ul li{
            display: block;
            margin: 50px 0;
            line-height: 30px;
        }
        nav ul li a{
            font-size: 22px;
        }
        a:hover,a.active{
            background: none;
            color: #172A87;
        }
        .menu.open{
            left: 0;
        }
    }

/*------------------------------------------------- top -----------------------------------*/
   
    .top_list{
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 5;
        
    }

    .top_list > li{
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto 0;
        padding: 0 30px 0;
        z-index: 5;   
    }
    
    @media screen and (max-width: 800px){
        .top_list{
            display: block;
            width: auto;
            align-content: center;            
            margin-top: 10px;
        }

        .top_list > li{
            width: auto;
            display:flex;
            flex-direction: column;
            align-items: center;
            margin-top: 10px;
            transform: scale(0.7);
        }
    }

/*-------------------------------------------------- news -----------------------------------*/
    .body_home .news{
        padding-top: 10px;
        padding-left: 10px;
        font-size: 20px;
    }
    .iframe-wrap{
        position: relative;
        width: 100%;
        height: 50%;
        margin-top: 20px;
    }
    .iframe-wrap iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;   
    }

    .news_sns{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .news_sns li{
        width: 50%;
        height: 180px;
        margin-top: 20px;
        margin-left: 10px;
    }

    .news_sns li a:hover{
        cursor: pointer;
    }

    .news_sns li a{
       
        width: 180px;
        height: 48px;
    
    }

    .news_hr1{
        border: solid 6px #ff9933;
        text-align: left;
        margin-left: 0;
        }


     .news_hr2{
        border: solid 6px #9933ff;
        text-align: left;
        margin-left: 0;
        }
    
    .news_hr3{
        border: solid 6px hsl(108, 100%, 60%);
        text-align: left;
        margin-left: 0;
        }
        
    .news_p{
        font-size: 18px;
        margin-top: 10px;
    }

    .news_p2{
        font-size: 15px;
        margin-top: 3px;
    }

    @media screen and (max-width: 960px){
        .iframe-wrap{
            position: relative;
            width: 90%;
            margin: 20px auto;
            padding-top: 45%;
    }
        
    }

    @media screen and (max-width: 800px){
        .body_home .news{
            font-size: 16px;
        }
        .iframe-wrap{
            position: relative;
            width: 100%;
            margin-top: 40px;
            padding-top: 100%;
        }

        .news_sns{
            display: block;
            width: 100%;
            align-content: center;          
            margin-top: 20px;
        }

        .news_sns li{
            display: block;
            width: 280px;
            justify-content: space-between;
            align-content: center;
            margin: 20px auto 20px;
            
        }
    }
/*-------------------------------------------------- about ----------------------------------*/
    .area_home_about{
        background-color: #EEA0C0;
        margin: 0;
        padding: 0;

        
    }

    
    
/*-------------------------------------------------- price ----------------------------------*/
    .area_home_price{
        background-color: #7ECDF7;
        margin: 0;
        padding: 0;
        
        
    }

    .apply{
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 8px 10px;
        background: #EEA0C0;
        color: #333;
        border-radius: 50rem;
        text-align: center;
        
        }

    
    .apply:hover{
        appearance: none;
        cursor: pointer;
    }  
    
  
 
/*-------------------------------------------------- staff ----------------------------------*/
    .body_home2{
        height: 700px;
    
    }

    @media screen and (max-width: 800px){
        .body_home2{
            height: auto;
        }
    }

    .list_staff{
        display: flex;
        flex-wrap: wrap;
        margin-top: 100px;
    
        
    }

    .list_staff > li{
        width: 50%;
        display: flex;
        flex-direction:column;
        justify-content: space-between;
        align-items: center;
    
    }
    
    .list_staff img{
        width: 190px;
        height: 190px;
        box-shadow: 2px 2px 0 #333;    
    }

    .list_staff p{
        width: 420px;
        height: 240px;
        color: #333;
        font-size: 19px;
        font-weight: bold;
        line-height: 2em;
        margin-top: 20px;
    }

    .mgl{
        margin-left: 5em;
    }

    .mgl2{
        margin-left: 4.5em;
    }

    .staff{
        width: auto;
        margin-top: 20px;
    }
    .staff p{
        color: #333;
        font-size: 19px;
        font-weight: bold;
        line-height: 2em;
        margin-left: 2em;    
    }
    @media screen and (min-width: 800px){
    .staff2{
        display: none;
        }
    }

    @media screen and (max-width: 800px){
        .list_staff{
            display: block;
            width: auto;
            align-content: center;            
            margin-top: 30px;
        }

        .list_staff > li{
            width: auto;
            display: flex;
            flex-direction:column;
            justify-content: space-between;
            align-items: center;
        } 
        
        .list_staff p{
            width: auto;
            height: auto;
            color: #333;
            font-size: 16px;
            line-height: 2em;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .staff{
            display: none;
        }

        .staff2{
            width: 330px;
            height: 200px;    
        }
        .staff2 p{
            width: auto;
            color: #333;
            font-size: 16px;
            font-weight: bold;
            line-height: 2em;
            margin-bottom: 60px;
            margin-top:20px;
            
        }
    }
/*-------------------------------------------------- footer ----------------------------------*/
    .list_sns{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .list_sns img{
        transform: scale(1.5);
        
    }

    .line{
        width: 34px;
        height: 34px;
        margin-right: 30px;
           
    }

    .mail{
        width: 34px;
        height: 34px;
        /*margin-left: 30px;*/
           
    }

    .insta{
        width: 34px;
        height: 34px;
        margin-left: 30px;
        
    }

    .copyright{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        color: slategray;
        margin-top: 20px;
        margin-bottom: 20px;
    }