@charset"UTF-8";

/*基本*/

body {
	margin:0;
	line-height: 1;
	font-family:"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	
	}
	
footer,header,nav{
	display: block;
	
	}

p{
	line-height:1.8;
	
	}
	
img{
	display:block;
	max-width:100%;
	height:auto;
	
	}

/*ヒーローヘッダー*/
.header {
	position: relative;
	
	}
	
.hero {
	height:530px;
	background-image: url(img/hero.svg);
	background-position:left;
	background-size: cover;
	background-repeat: no-repeat;
	
	}

.hero a{
	position:relative;
	display:flex;
	top:100px;
	left:65px;
	padding:5px;
	font-family:"Montserrat",sans-serif;
	color:#000;
	font-size:30px;
	text-decoration:none;
	
	}

.hero a:hover {
	color: #c0c0c0;
	
	}

/*ナビ*/
.head-nav-box {
	justify-content: space-between;
	align-items: center;
	background-color: #ffff80;
	padding: 0 4%;
	box-shadow: 3px 3px 6px -2px #555,
		3px 3px 8px rgba(255,255,255,0.8) inset;
	display: flex;
	flex-wrap:wrap;

	}
	

.head-logo {
	margin:0;
	padding:10px;
	width:25 %;
	text-align: center;
	background-color: #0080ff;
	color:#ffff80;
	font-size:35px;
	font-weight:bold;
	font-family:sans-serif;
	
	}
	
.head-nav-list {
	justify-content: space-around;
	align-items: center;
	width: 75%;
	list-style:none;
	display: flex;
	flex-wrap:wrap;
	gap:20px;

	}
	
.head-nav-list-item{
	text-decoration: none;
	color:#0080ff;
	font-size:30px;
	font-family:"Montserrat",sans-serif;
	
	}
	
.head-nav-list-item:hover {
	background-color:#0080ff;
	color:#ffff80;
	}
	

/*画像とテキスト*/
.imgtext{
	padding:var(--v-space)0;
	margin:90px 10px;
	background-color:#fff;
	
	}

.imgtext + .imgtext{
	padding-top:0;
	
	}

.imgtext-container{
	display:flex;
	flex-direction:column;
	gap:clamp(35px,6vw,60px);
	
	}

	
/*フッター*/
footer {
	background-color: #505050;
	width: 100%;
	
	}
	
.copy-right {
	text-align: center;
	color:#fff;
	padding: 20px 5%;
	
	
	}
	
/*768px以上のディスプレイ表示（横並び）*/
@media(min-width:768px){
	.hero{
		height:100vh;
		}
		
	.hero a{
		top:185px;
		left:120px;
		font-size:50px;
		
		}


	.imgtext-container{
		padding:30px;
		flex-direction:row-reverse;
		align-items:center;
		
		}
		
	.imgtext-container > .text{
		flex:1;
		min-width:17em;
		
		}
	.imgtext-container > .img{
		flex:2;
		
		}

	}/*768px以上のディスプレイ表示（横並び）
	ここで終了*/

