﻿@charset "UTF-8";

/***** デフォルトはスマートフォン *****/
/* ｰｰｰｰｰｰｰｰｰｰｰ 共通エリア ｰｰｰｰｰｰｰｰｰｰ */
:root {
/* グリーン　*/
	--head-color: #65b35b;
	--text-color: #555;
	--btn-color: #329125;
	--bg-color:  #fffff0;
	--footer-bg: #bbeeb5;
/* ピンク */
	--head-color-p: #d96f8f;
	--btn-color-p: #ff88eb;
	--bg-color-p:  #f8f6fa;
}
.inner{
	width: 98%;
	margin: 0 auto;
}
.header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	padding: 1rem;
}
.logo img {
	width: 150px;
}
.nav ul {
	list-style: none;
	margin-top: 1rem;
}
.nav li {
	margin-bottom: 0.5rem;
}
.nav a {
	color: var(--text-color);
	font-weight: bold;
}
.header-contact {
	margin-top: 1rem;
	font-size: 0.9rem;
}
/* ハンバーガー */
.hamburger {
	width: 48px;
	height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 150;
}
.hamburger span {
	width: 32px;
	height: 3px;
	margin: auto;
	background: #d97a1d;
	border-radius: 3px;
	transition: .3s;
}
/* ×変形 */
.hamburger.active span:nth-child(1) {
	transform:
		translateY(13px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform:
		translateY(-13px) rotate(-45deg);
}
/* メニュー */
.nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	max-width: 85%;
	height: 100vh;
	background:
		linear-gradient(135deg,
			#fff4e8 0%,
			#ffe3c2 100%);
	transition: .4s;
	z-index: 999;
	padding-top: 90px;
}
.nav.active {
	right: 0;
}
.nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}
.nav li {
	display: block;
	width: 100%;
}
.nav a {
	display: block;
	padding: 18px 30px;
	text-decoration: none;
	color: #555;
	font-size: 1rem;
	font-weight: 600;
	writing-mode: horizontal-tb;
	text-orientation: mixed;
	transition: .3s;
}
.nav a:hover {
	background: rgba(255, 255, 255, .5);
	color: #d97a1d;
	padding-left: 40px;
}
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .4);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 998;
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}
/* header end */
.c{
	text-align: center;
}
.footer {
	background: var(--footer-bg);	
}
.footer-nav a {
	color: #555;
}
.footer_h3{
	font-size: 1.5rem;
	margin-bottom: 1rem; 
}
.footer_text{
	padding-left: 1rem;
}
.foot_inner{
	width: 98%;
	margin: 0 auto;
	padding: 2rem 1rem;
	display:flex;
	justify-content: space-evenly;
	align-items: flex-start;
}
.footer-nav{
	margin-top: 4rem;
}
.footer-nav a{
	display: block;
}
.foot_copyright{
	font-size: 14px;
	padding: 2rem 0;
}
/**==================================================**/
/**=          画面サイズ768px以上の指定              **/
/**==================================================**/
@media screen and (min-width:768px) {
	.header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.nav ul {
		display: flex;
		gap: 1rem;
		margin-top: 0;
	}
	/* header start */
	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		max-width: 85%;
		height: 100vh;
		background:
			linear-gradient(135deg,
				#fff4e8 0%,
				#ffe3c2 100%);
		transition: .4s;
		z-index: 999;
		padding-top: 90px;
	}
	.nav.active {
		right: 0;
	}
	.nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: block;
	}
	.nav li {
		display: block;
		width: 100%;
	}
	.nav a {
		display: block;
		padding: 18px 30px;
		text-decoration: none;
		color: #555;
		font-size: 1rem;
		font-weight: 600;
		writing-mode: horizontal-tb;
		text-orientation: mixed;
		transition: .3s;
	}
	.nav a:hover {
		background: rgba(255, 255, 255, .5);
		color: #d97a1d;
		padding-left: 40px;
	}
	/* header end */
}
/**==================================================**/
/**=          画面サイズ960px以上の指定              **/
/**==================================================**/
@media screen and (min-width:960px) {
	.inner{
		width: 1200px;
	}
	.foot_inner{
		width: 90vw;
	}
}