/*===========================================================*/
/*ナビゲーションCSS*/
/*===========================================================*/
 @media screen and (max-width:1365px) {
    /* ▼スマホサイズ（ハンバーガーメニュー） */
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top:0;
        right: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        /*動き*/
        transition: all 0.6s;
        -webkit-backdrop-filter: blur(100px);
		backdrop-filter: blur(100px);
		background-color: rgba(214, 214, 214, 0.8); /* ★or #fff */
    }
    #g-nav h1{
		margin-top: 64px;
		text-align: center;
		filter: drop-shadow(#fff 0px 0px 4px);
	}
	#g-nav ul li a{
		color: #333;
		filter: drop-shadow(#fff 0px 0px 4px);
	}
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 0;
    }
    /*ナビゲーションの縦スクロール*/
    #g-nav-list{
        display: none;/*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    /*ナビゲーション*/
    #g-nav .nav_list {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top:62%;
        left:50%;
        transform: translate(-50%,-50%);
        width: 100%;
    }
    /*リストのレイアウト設定*/
    #g-nav .nav_list_pr{
        text-align: center; 
        list-style: none;
        text-transform: uppercase;
        font-size: 18px;
        width: 100%;
    }
    #g-nav li a{
        padding: 6px;
        font-size: 18px;
    }
    .nav_list_ch li{
        display: none;
    }
    #g-nav .nav_list_ch li{
        /* padding:20px; */
        display: block;
        text-transform: uppercase;
        font-size: 18px;
    }
    .nav_list_ch li a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 66px;
    }
    .nav_list_ch li a span{
        display: block;
    }
 }
 /* ――――――――――タブレット――――――――――― */
@media screen and (min-width:431px) and (max-width:1365px){
    /*ナビゲーション*/
    #g-nav .nav_list {
        top:50%;
    }
    #g-nav li a{
        padding: 10px;
        font-size: 20px;
    }
}
 @media screen and (min-width:1366px) {
    /* ▼PCサイズ（ノートPC） */
    .nav_list li {
        width: 220px;
        font-size:18px;
        text-align: center;
    }
    .nav_list li a{
        width: 220px;
    }
    .nav_list{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
    }
    .nav_list_pr {
        display: inline-block;
        text-align: center;
        width: 220px;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        transition: all 0.3s ease 0s;
    }
    .nav_list_pr:hover{
        font-weight: 700; 
        height: 50px;
    }
    .nav_list2 li {
        text-align: center;
        font-size: 18px;
        height: 50px;
        font-weight: 500;
        position:relative;
        z-index: 40;
        background-color: #AEB2B4;
    }
    .nav_list2 li a{
        display: inline-block;
        line-height: 1.4;
        height: 50px;
    }
    .nav_list2 li:hover{
        font-weight: 700;
    }
 }
 @media screen and (min-width:1440px)  {
    /* ▼デスクトップサイズ */
    .nav_list_pr{
        /* width: 176px; */
        font-size: 16px;
    }
    .nav_list2 li a{
        font-size: 18px;
    }
    .nav_list{
        margin-right: 4px;
    }
 }
/*===========================================================*/
/*3本線が×に*/
/*===========================================================*/
    .openbtn{
        display: none;
    }
@media screen and (max-width:1365px) {
    .openbtn{
        display: block;
        position:fixed;
        top: 6px;
        right: 20px;
        z-index: 9999;/*ボタンを最前面に*/
        cursor: pointer;
        width: 64px;
        height:64px;
        background:#AEB2B4;
    }
    .openbtn .active{
        z-index: 9999;/*ボタンを最前面に*/
    }   
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 18px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }
    .openbtn span:nth-of-type(1) {
        top:19px;	
    }
    .openbtn span:nth-of-type(2) {
        top:32px;
    }
    .openbtn span:nth-of-type(3) {
        top:44px;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 22px;
        left: 22px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3){
        top: 34px;
        left: 22px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
 }
 @media screen and (max-width:768px) {
    .openbtn{
        width: 44px;
        height: 44px;
        top: 18px;
        right: 20px;
    }
    /*×に変化*/	
    .openbtn span{
        left: 6px;
        height: 3px;
        width: 32px;
     }
    .openbtn span:nth-of-type(1) {
        top:10px;	
    }
    .openbtn span:nth-of-type(2) {
        top:20px;
    }
    .openbtn span:nth-of-type(3) {
        top:30px;
    }
    .openbtn.active span:nth-of-type(1) {
        top: 16px;
        left: 6px;
        width: 32px;
    }
    .openbtn.active span:nth-of-type(3){
        top: 28px;
        left: 6px;
        width: 32px;
    }   
 }
/*===========================================================*/
/*スライダー*/
/*===========================================================*/
    .container {
        margin: 30px auto 0;
        max-width: 800px;
        width: 100%;
    }
    .slick-img img, .thumbnail-img img {
        height: auto;
        width: 100%;
    }
    .thumbnail .slick-track {
        transform: unset !important;
    }
    .thumbnail-img {
        opacity: 0.3;
        transition: opacity .3s linear;
    }
    .thumbnail .slick-current {/*アクティブなスライド*/
        opacity: 1;
    }
    .slick-prev:before, .slick-next:before {
        color: #595757;/*黒にする*/
        opacity: 1;/*デフォルトは.75が指定されている*/
        font-size: 24px;
    }
    @media screen and (max-width:425px) {
        .container {
            max-width: 350px;
        }
        .slick-prev:before, .slick-next:before {
            display: none;
        }
    }
/*===========================================================*/
/*読み込み時フェードイン*/
/*===========================================================*/
 html{
    animation: fadein 1s ease 0s 1 normal;
    -webkit-animation: fadein 1s ease 0s 1 normal;
 }
 @keyframes fadein {
    from {
    opacity: 0;
    /* transform: translateY(20px); */
 }
 to {
    opacity: 1;
    /* transform: translateY(0); */
 }
 }
 @-webkit-keyframes fadein {
    from {
    opacity: 0;
    /* transform: translateY(20px); */
 }
 to {
    opacity: 1;
    /* transform: translateY(0); */
 }
}