@charset "utf-8";


*{
	font-size: 100%;
	font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "黎ミン L","Reimin Light", "ヒラギノ明朝 ProN W6","HiraMinProN-W6","HG明朝E","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
}

.minchou,
.minchou * {
	font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "黎ミン L","Reimin Light", "ヒラギノ明朝 ProN W6","HiraMinProN-W6","HG明朝E","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
	font-weight:500;
}

.gothic,
.gothic * {
	font-family:  "游ゴシック", YuGothic, "メイリオ", Meiryo,"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

html{
	word-break:break-all;
	color: #333333;
	scroll-behavior: smooth;
}

body{
	backface-visibility: hidden;
}

a{
	color:#38a59b;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

::selection {
	background: rgba(56,165,155,0.6);
	color: #fff;
}

html,
section,
header,
body,
footer {
	display: block;
}

.tategaki {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
header
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

header {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
	background-image: url('../img/header_bg.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 100vh;
	box-sizing: border-box;
	padding: 25px 0 0;
	position: relative;
}

	header > div.header_menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items:center;
		width: calc(100% - 20px);
		max-width: 1195px;
		margin: 0 auto;
	}

		header > div.header_menu > a {
			display: block;
			width: 100%;
			max-width: 168px;
		}
		
			header > div.header_menu > a > img {
				width: 100%;
			}
		
		header > div.header_menu > nav {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items:center;
			width: calc(100% - 200px);
			max-width: 540px;
		}
		
			header > div.header_menu > nav > a {
				display: inline-block;
				color: #fff;
				font-size: 1.05em;
				letter-spacing: 0.05em;
			}
		
	header > h1 {
		display: block;
		width: calc(100% - 20px);
		max-width: 1200px;
		margin: auto;
	}
	
		header > h1 > img {
			display: block;
			width: 100%;
			max-width: 475px;
			margin: 0 0 80px;
		}
	



@media screen and (max-width:750px){
		header > div.header_menu > a {
			margin: 0 0 0 20px;
		}
		
		header > div.header_menu > nav {
			width: 100%;
			max-width: 400px;
		}
		
		header > h1 > img {
			margin: 0 auto 80px;
		}
}

@media screen and (max-width:500px){
		header > h1 > img {
			width: calc(100% - 40px);
			margin: 0 40px 40px 0;
		}
}




.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	display: none;
	position: absolute;
	width: 52px;
	height: 60px;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
	top: 20px;
	right: 20px;
	z-index: 100;
	background-color: rgba(0,0,0,0.4);
}
.menu-trigger::after {
	content: 'MENU';
	display: block;
	width: 100%;
	font-size: 0.75em;
	letter-spacing: 0.1em;
	color: #fff;
	margin: 35px 0 0;
	font-weight: 300;
	white-space: nowrap;
}


.menu-trigger span {
	position: absolute;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	background-color: #fff;
	border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
	top: 10px;
}
.menu-trigger span:nth-of-type(2) {
	top: 21px;
}
.menu-trigger span:nth-of-type(3) {
	width: 24px;
	left: 18px;
	top: 32px;
}

.menu-trigger.active span:nth-of-type(1) {
	top: 8px;
	transform: translateY(12px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	width: 32px;
	bottom: 8px;
	left: 10px;
	transform: translateY(-12px) rotate(45deg);
}

@media screen and (max-width:750px){
.menu-trigger {
	display: inline-block;
}

header nav {
	position: fixed;
	top: -20px;
	right: -400px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 100%;
	max-width: 350px;
	height: calc(100vh + 40px);
	box-sizing: border-box;
	z-index: 7;
	background-color: rgba(0,0,0,0.75);
	//background-color: #c1b09d;
	margin: 0;
	padding: 150px 0;
}

	header nav > a {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		//color: #fff;
		padding: 10px 0;
		margin: 0;
		font-size: 1.1em;
	}
	
	header nav > a.title {
		display: none;
	}
	
	
	header nav > a.tel {
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
	}
	
	header nav > a.facebook {
		position: relative;
		top: 0;
		right: 0;
	}
	
	
		header nav > a > br {
			display: none;
		}

header nav.active {
	animation: nav_open 1.2s ;
	animation-timing-function: ease;
	animation-iteration-count: 1;
	right: 0;
}

header nav.close {
	animation: nav_close 1.2s ;
	animation-timing-function: ease;
	animation-iteration-count: 1;
	right: -400px;
}

@keyframes nav_close {
	0% {
		right: 0;
	}
	100% {
		right: -400px;
	}
}
}

@keyframes nav_open {
	0% {
		right: -400px;
	}
	100% {
		right: 0;
	}
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
footer
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

footer {
	background: rgb(255,157,83);
	background: linear-gradient(90deg, rgba(255,157,83,1) 0%, rgba(87,204,203,1) 100%);
	padding: 100px 0;
	color: #fff;
}

	footer > div {
		width: calc(100% - 20px);
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}

div.footer_tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 0 100px;
	border-bottom: 1px #fff solid;
}

	div.footer_tel > p {
		font-size: 1.4em;
		font-weight: 300;
		letter-spacing: 0.07em;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		width: calc(100% - 369px);
	}
	
	div.footer_tel > p::after {
		content: '';
		display: block;
		width: calc(100% - 425px);
		border-top: 1px #fff solid;
	}
	
		div.footer_tel > p > span {
			display: inline-block;
			width: 390px;
		}
	
	div.footer_tel > a {
		display: block;
		width: 100%;
		max-width: 334px;
	}
	
	div.footer_tel > a:hover {
		opacity: 0.5;
	}
	
	
		div.footer_tel > a > img {
			width: 100%;
		}

div.footer_address {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 40%;
	max-width: 455px;
	margin: 55px 0 0;
}

	div.footer_address > a {
		display: block;
		width: 100%;
		max-width: 217px;
	}
	
		div.footer_address > a > img {
			width: 100%;
		}
	
	div.footer_address > div {
		width: 100%;
		max-width: 175px;
	}


		div.footer_address > div > p {
			font-size: 1.05em;
			font-weight: 300;
			letter-spacing: 0.07em;
			line-height: 1.9em;
		}
		
div.footer_nav {
	width: 60%;
	max-width: 535px;
	margin: 55px 0 0;
}

	div.footer_nav > nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	
		div.footer_nav > nav > a {
			display: inline-block;
			color: #fff;
			font-size: 1.05em;
			font-weight: 300;
			letter-spacing: 0.07em;
			line-height: 1.9em;
		}
	
	div.footer_nav > img {
		display: block;
		width: 100%;
		max-width: 104px;
		margin: 40px 0 0 auto;
	}
	
@media screen and (max-width:1080px){
div.footer_tel {
	display: block;
}

	div.footer_tel > p {
		width: 100%;
		margin: 0 auto;
	}
	
		div.footer_tel > p > span {
			width: 100%;
			text-align: center;
		}
	
	div.footer_tel > p::after {
		display: none;
	}
	
	div.footer_tel > a {
		margin: 20px auto 0;
	}

div.footer_address {
	width: 100%;
	margin: 55px auto 0;
}

div.footer_nav {
	width: 100%;
	max-width: 800px;
	margin: 55px auto 0;
}
}

@media screen and (max-width:750px){
footer {
	padding: 100px 0 10px;
}

	div.footer_nav > nav {
		flex-direction: column;
		justify-content: center;
		align-items:center;
	}
	
		div.footer_nav > nav > a {
			margin: 10px 0;
		}
}

@media screen and (max-width:500px){
	div.footer_tel > p {
		font-size: 1.0em;
	}
	
div.footer_address {
	flex-direction: column;
	align-items: center;
}

	div.footer_address > div {
		margin: 20px 0 0;
	}
}