@charset "UTF-8";
/* CSS Document */

/*reset
------------------------------------------------------------------------------*/
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
	margin: 0;
	padding: 0;
	font-size: unset;
	font-weight: normal;
}
html{
	font-size: 62.5%;/* font-sizeを10px標準に */
}
body{
	font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", Yu Gothic, "游ゴシック体", "YuGothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-style: normal;
	width:100%;
	font-size: 1.6rem;
	line-height: 1.75;
	letter-spacing: 0.05rem;
	overflow-x: hidden;
	/* background-color: #fcfbf5; */
	position: relative;
}

:root{
	--text-color: #000000;
	--red: #C8000A;
	--gold:#b0974b;
	--thin-red: #F2E6E6;
	--thin-blue: #E6F2F1;
	--gray: #696969;
	--thin-gray: #E9E9E9;
	--bigtitle: 3.2rem;
	--smalltitle: 2.2rem;
	--bigtext: 1.8rem;
	--smalltext: 1.2rem;
}

.mincho{
	font-family: "Zen Old Mincho", serif;
}

img {
	border:0;
	max-width:100%;
	vertical-align: middle;
}

*{
	box-sizing: border-box;
}


/*PC・スマフォで非表示
------------------------------------------------------------------------------*/
.pc_none {
	display: none;
}
.sp_none {
	display: block;
}



/*ここからcss設定
------------------------------------------------------------------------------*/

.flex{
	display: flex;
	justify-content: space-between;
}
.section_wrap{
	width: calc(100% / 3);
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section_wrap:before{
	content: "";
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.section_wrap:first-child{
	background-image: url(../img/pc01A.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.section_wrap:nth-child(2){
	background-image: url(../img/pc02A.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.section_wrap:last-child{
	background-image: url(../img/pc03A.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.section_text{
	position: relative;
	z-index: 999;
	color:#fff;
	padding: 3rem;
	text-align: center;
}
.section_title{
	font-size: 2.2rem;
	line-height: 1.2;
	letter-spacing: 0.2rem;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}
.section_title span{
	font-size: 1.4rem;
	letter-spacing: 0;
	font-family: "Noto Sans JP";
}
.section_link{
	text-decoration: none;
	background-color: #fff;
	color: #000;
	font-size: 1.4rem;
	margin-top: 2rem;
	display: inline-block;
	padding: 1rem 2.5rem;
}
.section_link:after{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 0.4rem solid transparent;
	border-bottom: 0.4rem solid transparent;
	border-left: 1.2rem solid var(--gold);
	border-right: 0;
	margin-left: 1.2rem;
	margin-bottom: 0.1rem;
}


@media screen and (max-width:1024px) {
	.pc_none {
		display: block;
	}
	.sp_none {
		display: none;
	}
	
	
	/* デフォルトのbuttonスタイルをリセット */
	button {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background: transparent;
		border: 0;
		border-radius: 0;
		color: inherit;
		cursor: pointer;
		font: inherit;
		margin: 0;
		outline: none;
		padding: 0;
		vertical-align: middle;
	}
	
	
	main > .flex{
		flex-direction: column;
	}
	.section_wrap{
		width: 100%;
		height: calc(100vh / 3);
	}
	
	
	.section_wrap:first-child{
		background-image: url(../img/sp01A.jpg);
	}
	.section_wrap:nth-child(2){
		background-image: url(../img/sp02A.jpg);
	}
	.section_wrap:last-child{
		background-image: url(../img/sp03A.jpg);
	}
	
	.section_title{
		font-size: 1.8rem;
	}
	.section_title span{
		font-size: 1.2rem;
	}
	.section_link{
		margin-top: 1.5rem;
		font-size: 1.2rem;
		padding: 0.5rem 2rem;
	}
	
	
}







