@charset "utf-8";

/*--------------------------------
 共通部分
---------------------------------*/
html {
	font-size: 100%;
}
body {
	font-family: 'Noto Serif JP', Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	box-sizing: content-box;
}
a {
	text-decoration: none;
	display: block;
	color: #323232;
}
p {
	text-align: justify;
	color: #323232;
}
img {
	max-width: 100%;
	border: none;
	vertical-align: top;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/*--------------------------------
 レイアウト
---------------------------------*/
.inner {
	max-width: calc(700px + 260 * (100vw - 780px) / 660);
	margin: 0 auto;
}
main {
	background: url("../images/main_bg.jpg");
	background-repeat: repeat;
}
#navbtn,
.footer_sp_tel {
	display: none;
}
/*--------------------------------
 ヘッダー
---------------------------------*/
header {
	width: 20%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9999;
}
.header_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
h1 {
	padding: 35px 0;
	z-index: 900;
	color: #323232;
}
	
.logo {
	width: calc(90px + 40 * (100vw - 320px) / 1120);
}
.global_nav {
	z-index: 400;
	line-height: 2.2;
	margin-left: -5px;
}
.global_nav_list {
	writing-mode: vertical-rl;
}
.global_nav_item>a {
	transition: all 0.3s;
}
.global_nav_item>a:hover {
	color: #72905e;
}
/*--------------------------------
 メインビジュアル
---------------------------------*/
.first_view {
	position: relative;
}
.first_view_message {
	width: 20%;
	display: flex;
	flex-direction: column;	
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 50px;
	left: 0;
	font-size: 24px;
	font-weight: 300;
	line-height: 2.0;
	letter-spacing: 0.6rem;
	z-index: 300;
	writing-mode: vertical-rl;
}
.first_view_img {
	background: url("../images/hero_pc.jpg") no-repeat;
  width: 60%;
	height: 88vh;
	background-size: cover;
	background-position: center top;
	margin: 0 auto;
}
.first_view_pattern_right,
.first_view_pattern_left {
	position: absolute;
	z-index: 300;
	mix-blend-mode: multiply;
	filter: brightness(105%);
}
.first_view_pattern_right {
	bottom: 0;
	right: 0;	
	width: 40%;
}
.first_view_pattern_left {
	top: 0;
	left: 0;
	width: 22%;
}
/*--------------------------------
 トップページ
---------------------------------*/
.home_section {
	display: flex;
	position: relative;
	margin-top: 60px;
}
.home_section:nth-child(3) {
	flex-direction: row-reverse;
	margin: 100px auto;
}
.home_section:nth-child(4) {
	padding-bottom: 100px;
}
.home_section_img {
	margin-top: 85px;
	width: calc(500px + 140 * (100vw - 780px) / 660);
}
.home_section_title {
	font-size: calc(25px + 15 * (100vw - 780px) / 660);
	font-weight: 300;
	color: #323232;
}
.home_section_title::before {
	content: "";
	background: url("../images/section_pattern.png") no-repeat;
	background-position: center;
	background-size: contain;
	display: block;
	margin: 0 0 12px;
	width: calc(40px + 10 * (100vw - 780px) / 660);
	height: calc(34px + 9 * (100vw - 780px) / 660);
}
.home_section_text {
	font-size: calc(12px + 2 * (100vw - 780px) / 660);
	padding: 25px 0;
	line-height: 2.5;
	letter-spacing: 0.15rem;
}
.home_section_message {
	padding: calc(30px + 30 * (100vw - 780px) / 660);
	z-index: 500;
	background-color: rgba(255,255,255,0.85);
	position: absolute;
	top: 0;
	right: 0;
}
.home_section:nth-child(3) .home_section_message {
	right: auto;
	left: 0;
}
.home_section_btn {
	width: 250px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border: 1px solid #323232;
	transition: all 0.3s;
	/*margin: 0 auto;*/
	font-size: calc(12px + 2 * (100vw - 780px) / 660);

}
.home_section_btn:hover {
	background: #72905e;
	border: 1px solid #72905e;
	color: #fff;
}
/*--------------------------------
 フッター
---------------------------------*/
.footer_info {
	background: #bcdda7;
	padding: calc(30px + 30 * (100vw - 320px) / 1120);
	font-size: calc(12px + 2 * (100vw - 320px) / 1120);
}
.footer_info_inner {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_logo {
	width: calc(120px + 30 * (100vw - 320px) / 1120);
	height: fit-content;
	padding-right: 30px;
}
.footer_pc_tel,
.footer_sp_tel {
	font-size: calc(25px + 3 * (100vw - 320px) / 1120);
	padding-left: 40px;
	position: relative;
}
.footer_pc_tel::before,
.footer_sp_tel::before {
	content: "";
	background: url("../images/telephone.svg") no-repeat;
	background-size: contain;
	background-position: center;
	display: inline-block;
	width: calc(30px + 3 * (100vw - 320px) / 1120);
	height: calc(30px + 3 * (100vw - 320px) / 1120);
	margin-top: 4px;
	position: absolute;
	top: 0;
	left: 0;
}
.footer_business_hour {
	display: flex;	
}
.footer_business_hour>dt {
	width: 30%;
	padding-right: 15px;
	text-align-last: justify;
}
.footer_business_hour>dd {
	width: 70%;
}
.copyright {
	background: #7bcf9d;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright>small {
	color: #fff;
	font-size: calc(10px + 2 * (100vw - 320px) / 1120);
}
/*media Queries 1440
----------------------------------------------------*/
@media screen and (min-width: 1441px) {
	.home_section_title {
		font-size: 40px;
	}
}

/*media Queries 760
----------------------------------------------------*/
@media screen and (max-width: 760px) {
	header {
		width: 100%;
		height: calc(55px + 13 * (100vw - 320px) / 440);
		background: url("../images/main_bg.jpg");
		flex-direction: unset;
		position: unset;
	}
	.header_inner {
		height: inherit;
		padding: 0 4%;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	h1 {
		padding: 0;
	}
	#navbtn {
		display: grid;
		grid-template-rows: repeat(3, 8px);
		justify-content: center;
		align-items: center;
		z-index: 1000;
	}
	#navbtn span:nth-child(1),
	#navbtn span:nth-child(2),
	#navbtn span:nth-child(3) {
		width: 25px;
		height: 3px;
		margin: 0 auto;
		border-radius: 3px;
		background: #80b267;
		transition: all 0.3s;
	}
	.opennav {
		transform: translateX(-100%);
	}
	.fixed_body {
		position: fixed;
		width: 100vw;
	}
	.open span:nth-child(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	.open span:nth-child(2) {
		top: 17px;
		opacity: 0;
		transform: translateX(20px);
	}
	.open span:nth-child(3) {
		transform: translateY(-8px) rotate(45deg);
	}
	.global_nav {
		width: 100%;
		height: 100%;
		line-height: 3.5;
		letter-spacing: 0.35rem;
		padding-top: calc(65px + 13 * (100vw - 320px) / 440);
		margin-left: 0;
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 900;
		background-color: #faf7ee;
		transition: all 0.8s;
	}
	.global_nav_list {
		margin: 0 auto;
	}
	.global_nav_item {
		height: auto;
		margin-top: 0;
		border-right: none;
	}
	.global_nav_item>a {
		width: auto;
		font-size: 15px;
	}
	.first_view_img {
		width: 100%;
		height: calc(100vh - calc(55px + 13 * (100vw - 320px) / 440));
	}
	.first_view_message {
		width: unset;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.home_section {
		flex-direction: column;
		padding: 0 calc(47px + 102 * (100vw - 500px) / 260);
		margin-top: 60px;
	}
	.home_section:nth-child(3) {
		flex-direction: column;
		margin: 60px auto;
	}
	.home_section:nth-child(4) {
		padding-bottom: 60px;
	}
	.home_section_img {
		margin-top: 0;
		width: auto;
	}
	.home_section_message {
		position: unset;
		padding: 50px calc(50px + 25 * (100vw - 500px) / 260);
		margin-top: 15px;
	}
	.home_section_title {
		font-size: 25px;
	}
	.home_section_text {
		font-size: 12px;
	}
	.home_section_btn {
		font-size: 12px;
	}
	.footer_pc_tel {
		display: none;
	}
	.footer_sp_tel {
		display: block;
	}

}
/*media Queries 500
----------------------------------------------------*/
@media screen and (max-width: 500px) {
	.pc_only {
		display: none;
	}
	.home_section {
		padding: 0 4%;
	}
	.home_section_message {
		padding: 40px 17px;
	}
	.footer_info_inner {
		flex-direction: column;
	}
	.footer_logo {
		width: 120px;
		padding-right: 0;
		padding-bottom: 15px;
	}
	.footer_store_info {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.footer_sp_tel::before {
		margin-left: 2px;
	}
	.footer_business_hour>dt {
		width: 53px;
	}
	.footer_business_hour>dd {
		width: 87px;
	}

}
