@charset "utf-8";

/* 共通部分
---------------------- */
html{
	font-size: 100%;
}
body{
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
	line-height: 1.7;
	color: #432;
	background: #fff;
}

a{
	text-decoration: none;
}
img{
	width: 100%; /* 横幅：レスポンシブの設定 */
	height: auto; /* 高さ：横幅の比率に合わせる */
    vertical-align: bottom; /*画像の下にできる余白を削除*/
}

*{
    box-sizing: border-box;
}
/*===========================================================*/
/* ヘッダーまわり */
/*===========================================================*/
#splash-logo{
    font-size: 2rem;
	font-family: 'Arima Madurai', cursive;
    letter-spacing: 0.1em;
	color: royalblue;
}
#wrapper{
    padding: 0px 80px;
	
}

#header{
	width:100%;
	padding: 40px 80px 20px;
}

h1,
h1 a{
	font-size: 2rem;
	font-family: 'Arima Madurai', cursive;
    letter-spacing: 0.1em;
	font-size: 28px;
    line-height: 1;
    color:royalblue;
}

.button_box{
	display:flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin: 50px 0;
	font-size: 18px;
}
.menu_button {
	padding: 10px 15px;
	background:#fff;
	border: 1px solid #483d8b;
	border-radius: 8px;
	color:#483d8b;
	background:#e6e6fa;
}

.menu_button:hover{
	background:#c8c8fa;
}


/*==================================================
   ギャラリー写真 ホバーすると背景色と説明が出る
====================================================*/

/* 背景が出現＋テキスト（上から） */

.bgDU,
.bgDU .mask{
    display: block;
	position:relative;/*背景色とテキストの基点となる位置を定義*/
    overflow: hidden;
}

.bgDU .mask::before{
	content:'';
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;/*透過0*/
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
    transform: translateY(100%);
	background:royalblue;/*背景色*/
	width:100%;
	height: 100%;	
}

.bgDU:hover .mask::before{/*hoverした時の変化*/
	opacity:1;/*透過なしに変化*/
	transform: translateY(0);
}

.cap_box{
	display: block;
	width: 100%;
}
.bgDU .cap{
	position: absolute;
	opacity:0;
	transition: .5s ease-in-out;
	z-index:3;
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
}

.bgDU:hover .cap{/*hoverした時の変化*/
	opacity:1;/*透過なしに変化*/
}



/*==================================================
	ギャラリー写真のレイアウト
====================================================*/
#blog{
    margin:0;
	padding-top:30px;
}
.blog-area{
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    overflow: hidden;
}

.blog-area article:nth-of-type(1){ 
    width:30%;
}

.blog-area .blog-block{
    width:68%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-area .blog-block article{
     margin:0 0 3vh 0;   
}

.blog-area .blog-block article:nth-of-type(1){ 
    width:42%;
    animation-delay: 0.5s;
}
.blog-area .blog-block article:nth-of-type(2){ 
    width:20%;
    animation-delay: 1.5s;
}
.blog-area .blog-block article:nth-of-type(3){
    width:32%;
    animation-delay: 1s;
}

.blog-area .blog-block article:nth-of-type(4){ 
    width:32%;
    animation-delay: .8s;
}
.blog-area .blog-block article:nth-of-type(5){
    width:20%; 
    animation-delay: 1.8s;
}
.blog-area .blog-block article:nth-of-type(6){
    width:42%;
    animation-delay: 1.5s;
}

.blog-area h2{
     font-size: 18px;
	 font-weight: normal;
}

.blog-area h3{
	display: inline-block;
	width: 200px;
    font-size: 18px;
	font-weight: normal;
    margin: 0 0 10px 0;
}


/*.blog-area article:nth-of-type(1) img{
    height:67vh;
}*/
#blog_image01{
	width: auto;
    height:67vh;
	background:url(../images/grap1.jpg) no-repeat center/cover;
}
/*.blog-area img{
    width: auto;
    height:32vh;   
}*/
#blog_image02,
#blog_image03,
#blog_image04,
#blog_image05,
#blog_image06,
#blog_image07{
	width: auto;
    height:32vh;
}
#blog_image02{
	background:url(../images/grap2.jpg) no-repeat center/cover;
}
#blog_image03{
	background:url(../images/grap3.jpg) no-repeat center/cover;
}
#blog_image04{
	background:url(../images/grap4.jpg) no-repeat center/cover;
}
#blog_image05{
	background:url(../images/grap5.jpg) no-repeat center/cover;
}
#blog_image06{
	background:url(../images/grap6.jpg) no-repeat center/cover;
}
#blog_image07{
	background:url(../images/grap7.jpg) no-repeat center/cover;
}

.blog-area figure h2{
    position: absolute;
    bottom:0;
    left:0;
    background:rgba(65,105,225,0.8);
    display: block;
    width:100%;
    padding: 10px;
    color: #fff;
}

.blog-area p{
    margin:0 0 20px 0; 
    text-align: center;
    font-size: 15px;
}

.blog-area span{
    border:1px solid rgba(255,255,255,0.7);
	border-radius: 8px;
    display: inline-block;
    padding:5px 10px;
    text-align: center;
    font-size: 18px;
    white-space: nowrap;
}

@media screen and (max-width:1200px) {
    .blog-area .blog-block article:nth-of-type(n+1){ 
        width:48%;
    }
}

@media screen and (max-width:768px){
	.blog-area article:nth-of-type(1){
        width:50%;
        margin:0 auto 3vh auto;
    }

    .blog-area .blog-block article:nth-of-type(1){
         margin: 0 0 3vh 0;
    }

    .blog-area .blog-block{
            width:100%;
    }
    .blog-area .blog-block article:nth-of-type(n+1){ 
        animation-delay: .5s;
    }

    .blog-area article:nth-of-type(1){
        width:100%;
    }
}

@media screen and (max-width:820px) {
.blog-area article:nth-of-type(1) img{
    width:100%;
    height:auto;
} 
.blog-area .blog-block article:nth-of-type(1) img{
    width:auto;
    height:32vh;
    }
}
  
@media screen and (max-width:450px){
.blog-area img,
.blog-area .blog-block article:nth-of-type(1) img{
    width:100%;
    height:auto;
}
}

/*==================================
    「datail」slickスライダー
===================================*/
/*矢印の設定*/

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

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

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

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

.choice-btn {
	width: 100%;
}

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
	width: 12.5%;
}

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

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

.choice-btn_name{
	width: 100%;
	list-style:none;
	display: flex;
}
.choice-btn_name li{
	padding-top: 6px;
	display: inline-block;
	text-align: center;
	font-size: 12px;
	outline: none;
	width: 12.5%;
}

/*レスポンシブ時にサムネイルが消えるのを防ぐ*/
.choice-btn .slick-track {
  transform: unset !important;
}

/*========= レイアウトのためのCSS ===============*/
#detail_wrap {
	display: flex;
	flex-direction:column;
	margin-top: -40px;
	margin-left:400px;
	margin-right:80px;
}
#detail_left{
	width: 230px;
	margin-left: 80px;
	position:absolute;
	top: 110px;
}

#detail_left h2{
	font-size: 18px;
	font-weight: normal;
	background:rgba(65,105,225,0.8);
	padding: 10px 15px;
    color: #fff;
}

#main_visual{
	max-width: 1300px;
}
.gallery{
	margin-bottom: 50px;
}

#info_text{
	font-size: 15px;
	margin-top: 10px;
	height: 180px;
}
.another_list ul{
	margin:0;
	padding: 0;
	list-style: none;
	border-collapse:collapse;
}
.another_list ul li {
	padding: 3px 0;
}
.another_list ul li a{
	display: block;
	width: 100%;
	border: 1px solid rgba(65,105,225,0.8);
	line-height: 46px;
	padding: 0px 15px;
	color: royalblue;
}
.another_list ul li a:hover{
	color: #fff;
	background: rgba(65,105,225,0.8);
}

.another_list ul #current {
	border: 1px dotted #a9a9a9;
	color: #a9a9a9;
}
.another_list ul #current:hover{
	color: #a9a9a9;
	background:#fff;
}

@media (max-width: 1200px) {
#wrapper{
    padding: 0px 5%;
	
}

#header{
	width:100%;
	padding: 40px 5% 20px;
}

#detail_wrap {
	display: flex;
	flex-direction:column;
	margin-top: 0px;
	margin-left:5%;
	margin-right:5%;
}

.gallery{
	margin-bottom: 30px;
}

#detail_left_box{
	margin: 30px 5%;
}

#detail_left{
	position: initial;
	width: 100%;
	margin: 0;
}

#detail_left h2{
	font-size: 15px;
	font-weight: normal;
	background:rgba(65,105,225,0.8);
	padding: 1px 10px;
    color: #fff;
}
#info_text{
	font-size: 14px;
	margin-top: 10px;
	height: auto;
	margin-bottom: 20px;
}

.another_list ul{
	list-style: none;
	border-collapse:collapse;
}
.another_list ul li {
	padding: 5px 0;
	float: left;
	padding-right: 10px;
}
.another_list ul #current,
.another_list ul li a{
	font-size: 14px;
	display: inline-block;
	width: 168px;
	border: 1px solid rgba(65,105,225,0.8);
	line-height: 30px;
	padding: 0px 15px;
	color: royalblue;
}
.another_list ul li a:hover{
	color: #fff;
	background: rgba(65,105,225,0.8);
}

.another_list ul #current {
	border: 1px dotted #a9a9a9;
	color: #a9a9a9;
}

.choice-btn_name li{
	padding-top: 6px;
	display: inline-block;
	text-align: center;
	font-size: 11px;
	outline: none;
	width: 12.5%;
}
}

@media (max-width: 798px) {
.cut_caption{
	display:none;
}
}