@charset "UTF-8";




/*========= body背景色の変化CSS ===============*/

.bg-gradation {
	width: 100%;
	height: 100vh;
	background:linear-gradient(45deg,#b05151,#eb6c6c,#ef8989);/*グラデーションを定義*/
	background-size: 200% 200%;/*サイズを大きくひきのばす*/
	animation: bggradient 20s ease infinite;
}

@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.bg-gradation-red {
	width: 100%;
	background:linear-gradient(45deg,#b05151,#eb6c6c,#ef8989);/*グラデーションを定義*/
	background-size: 200% 200%;/*サイズを大きくひきのばす*/
	animation: bggradient 20s ease infinite;
}

@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.bg-gradation-black {
	width: 100%;
	height: ;
	background:linear-gradient(45deg,#4c4b4b,#000000,#3b3b3b);/*グラデーションを定義*/
	background-size: 200% 200%;/*サイズを大きくひきのばす*/
	animation: bggradient-black 20s ease infinite;
}

@keyframes bggradient-black{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.bg-gradation-white {
	width: 100%;
	height: ;
	background:linear-gradient(65deg,#e6e6e6,#ffffff,#fafefc,#f7fffb);/*グラデーションを定義*/
	background-size: 600% 600%;/*サイズを大きくひきのばす*/
	animation: bggradient-white 30s ease infinite;
}

@keyframes bggradient-white{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}



.animated-gradient-text {
    background: linear-gradient(270deg, #000000, #7873f5, #4ade80, #f2ffaa); /* 多色グラデーション */
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientMove 100s ease infinite;
  }
  
  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }





/*========= 背景動画設定のCSS ===============*/

/*header設定*/
#header{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}




/*========= ページネーションCSS ===============*/

.pagination {
	position:fixed;
	left:20px;
	bottom: 0%;
  	transform: translateY(-50%);
	font-size:1em;
	z-index: 10;
	list-style: none;
    font-family: "Noto Sans JP", sans-serif;
}

.pagination a {
	display:block;
	height:40px;
	margin-bottom:;
	color:#000;
	position:relative;
	padding:10px;
}

.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}

/*現在地表示のテキストの設定*/
.pagination a .hover-text {
	position:absolute;
	left:32px;
	top:8px;
	opacity:;
	padding-left: 0;
}

.pagination a:hover .hover-text {
	opacity: 0.4;
}

.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:;
	content:"";
	position: absolute;
	margin:auto;
	top:0;
	right:0px;
	bottom:0;
}


@media screen and (max-width:1025px) { 
    .pagination a .hover-text{
		display: none;
    }

    .pagination {
        position:fixed;
        left:10px;
        bottom: 0%;
    }

    .pagination a {
        display:block;
        height:25px;
    }

}


/*600px以下は現在地表示のテキストを非表示*/
@media screen and (max-width:600px) { 

    .pagination {
        position:fixed;
        right:20px;
        bottom: 0%;
          transform: translateY(-50%);
        font-size:1em;
        z-index: 10;
        list-style: none;
        font-family: "Noto Sans JP", sans-serif;
    }



	.pagination a .hover-text{
		display: none;
	}	

    .pagination a{
        display: block;
        height: 15px;
        margin-bottom: ;
        color: #000;
        position: relative;
        padding: 10px;
    }
}





/* 動き
-------------------------------------------------------------- */




/*====== スクロール =======*/


    .blur{
        animation-name:blurAnime;
        animation-duration:1.1s;
        animation-fill-mode:forwards;
    }

    .blur02{
        animation-name:blurAnime02;
        animation-duration:2s;
        animation-fill-mode:forwards;
    }

    @keyframes blurAnime{
    from {
        filter: blur(15px);
        transform: scale(1);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
    }

    @keyframes blurAnime02{
        from {
            filter: blur(20px);
            transform: scale(1);
            opacity: 0;
        }
    
        to {
            filter: blur(0);
            transform: scale(1);
            opacity: 1;
        }
        }
    
    .blurTrigger{
        opacity: 0;
    }

    .blurTrigger02{
        opacity: 0;
    }





/*========= ナビゲーションドロップダウンのためのCSS ===============*/

    /*==ナビゲーション全体の設定*/

    .nav{
        /*
        position:absolute;
        top: 5%;
        left: 3%;
        */
    }


    .nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .nav li {
        margin-bottom: ;
      }
      
      .nav a {
        width: 200px;
        position: relative;
        display: inline-block;
        padding-left: 5em; /* 左側にスペース確保 */
        text-decoration: none;
        color: #ffffff;
        font-weight: bold;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 20px;
        line-height: 2.5rem;
        letter-spacing: 4px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }
      
      /* 横線を左側に追加 */
      .nav a::after {
        content: "";
        position: absolute;
        right: -130px;
        top: 50%;
        transform: translateY(-50%);
        height: 2px;
        width: 0;
        background-color: #ffffff; /* 線の色 */
        transition: width 0.3s ease;
      }
      
      /* hoverで線が左から右へ伸びる */
      .nav a:hover::after {
        width: 4em; /* 好きな長さに調整可能 */
      }

      /* テキストだけ半透明 */
        .nav a span {
            transition: opacity 0.3s ease;
        }
        
        .nav a:hover span {
            opacity: 0.5;
        }


/*==1025px以下の形状*/

@media screen and (max-width:1025px){
    .nav{
        /*
        position:absolute;
        top: 5%;
        left: 0%;
        */
    }


    .nav a {
    width:255px;
    position: relative;
    display: inline-block;
    padding-left: 3em;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7)
      }

      .nav a::after {
    content: "";
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}





}


/*==600px以下の形状*/

@media screen and (max-width:600px){
	nav{
		padding: 0;
	}
	
	nav ul{
		display: block;
	}

    
	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
	
nav ul li a{
	border-bottom:;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}


.nav a {
    width:255px;
    position: relative;
    display: inline-block;
    padding-left: 1em;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    line-height: 1rem;
    letter-spacing: 4px;
}


      .nav a::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}





}



/*==================================================
スライダーのためのcss
===================================*/
    /*画像の横幅を100%にしてレスポンシブ化*/
    img{
        width: 100%;
        height: auto;
        vertical-align: ;/*画像の下にできる余白を削除*/
    }

    /*メイン画像下に余白をつける*/

    .gallery{
        margin:0 0 5px 0;
    }

    .gallery li{
    list-style:none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev, 
    .slick-next {
        position: absolute;/*絶対配置にする*/
        z-index: 3;
        top: 50%;
        cursor: pointer;/*マウスカーソルを指マークに*/
        outline: none;/*クリックをしたら出てくる枠線を消す*/
        border-top: 1px solid #ccc;/*矢印の色*/
        border-right: 1px solid #ccc;/*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {/*戻る矢印の位置と形状*/
        left:2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {/*次へ矢印の位置と形状*/
        right:2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn li{
        cursor: pointer;
        outline: none;
        background:;
        width: 25%!important;
        list-style: none;
    }


    .choice-btn li img{
        opacity: 0.4;/*選択されていないものは透過40%*/
    }

    .choice-btn li.slick-current img{
        opacity: 1;/*選択されているものは透過しない*/
    }




/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown{
    /*描画位置※位置は適宜調整してください*/
	position:fixed;
	bottom:3%;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown span{
    /*描画位置*/
	position: absolute;
	left:15px;
	bottom:5px;
    /*テキストの形状*/
	color: #fff;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: ;
    -webkit-writing-mode:;
    writing-mode: ;
}

/* 丸の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:9px;
	height:9px;
	border-radius: 50%;
	background:#fff;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:25px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:1px;
	height: 30px;
	background:#eee;
}





/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
	display: flex;
}

.sort-btn li{
	color: #ffffff65;
    list-style:none;
	cursor: pointer;
	margin-right:25px;
    transition:0.4s ease-out;
}

.sort-btn li:hover{
	color: #ffffff;
    transition:0.4s ease-out;
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
	color:rgb(255, 255, 255);
}

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {
.sort-btn{
	justify-content: space-between;
}
	
.sort-btn li{
	width:48%;
	margin:0 0 10px 0;
	text-align:center;
	}	
}

/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
  width: 48%;/*横並びで3つ表示*/
  z-index: 1;
  padding:2%;
list-style:none;
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 450px;
  text-align: left;
}

/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
    width: 100%;
    height: 300px;
    vertical-align: bottom;
    object-fit: cover;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
.item {
  width: 49.5%;/*横並びで2つ表示*/
}
}





/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
    columns: 3;/*段組みの数*/
    padding:0px;/*ギャラリー左右に余白をつける*/
    margin:0;
    }
    
    .gallery li {
        margin-bottom: 15px;/*各画像下に余白をつける*/
    list-style:none;
    }
    
    /*ギャラリー内のイメージは横幅100%にする*/
    .gallery img{
        width:100%;
        height:auto;
        vertical-align: bottom;/*画像の下にできる余白を削除*/}
    
    /*　横幅900px以下の段組み設定　*/
    @media only screen and (max-width: 900px) {
        .gallery{
        columns:3;
        }	
    }
    
    @media only screen and (max-width: 768px) {
        .gallery{
        columns: 2;
        }	
    }







/*========= ナビゲーションのためのCSS ===============*/


#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgb(255, 255, 255);
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: ;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5% 5%;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    */

    margin-left:;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: left;

}

.sub-menu01 li{
    margin-bottom: 5%;
}

.sub-menu02 li{
    margin-bottom: 2%;
}

.sub-menu01 span{
    color: #333;
    /* text-decoration: none; */
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1rem;
    /* margin: 10px 0 10px; */
    top: 80px;
    position: absolute;
}

.sub-menu01 a{
    font-size:3.5rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:5%;
	right: 2%;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 10px;
    height: 2px;
    border-radius: 2px;
    width: 70%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 55%;
    background-color: #000;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 55%;
    background-color: #000;
}

/*==768px以下の形状*/

@media screen and (max-width:768px){
	.m-nav{
        display: none;
    }

    .m-sns{
        display: none;
    }

    .openbtn{
        display:block;
    }

    .location-map iframe{
        width:100%;
        height:400px;
        margin:0 auto;
    }

    .title {
        font-size:0.8rem;
    }

    .title::after, .title::before {
        content: "";
        position: absolute;
        right: 0.25em;
        top: 1.75em;
        width: 2px;
        height: 0.75em;
        background-color: rgb(56, 56, 56);
        transition: all 0.3s;
    }

    .breadcrumbs_area {
        width: 50%;
    }


    .main{
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 45px;
        color: #fff;
        font-weight:800;
    }


    .flex{
        display:block;
        list-style:none;
    }
}
