@charset "utf-8";
/* CSS Document */
html {
	font-size: 62.5%; /* 16px * 62.5% = 10px */
	width: 100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
body {
	color: #333333; /* RGB */
	font-family: "Zen Maru Gothic", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 2.8rem;
	background-color: #fff;
	overflow-x: hidden;
}
h1 {
	font-size: clamp(20px, 1.3vw, 30px);
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.6rem;
}
h2 {
	font-size: clamp(30px, 1.8vw, 40px);
	font-weight: 500;
}
@media (max-width: 1270px) {
	h2 {
		font-size: clamp(24px, 1.6vw, 30px);
	}
}
@media (max-width: 430px) {
	h2 {
		font-size: clamp(20px, 1.5vw, 28px);
	}
}
h3 {
	font-size: clamp(26px, 1.6vw, 36px);
}
@media (max-width: 430px) {
	h3 {
		font-size: clamp(24px, 1.3vw, 28px);
	}
}
p {
	font-size: clamp(15px, 1vw, 18px);
	line-height: 1.6em;
}
.none {
	display: none;
}
*,
*:before,
*:after {
	box-sizing: border-box;
}
a {
	color: inherit;
	text-decoration: none;
}
/*-----ここからヘッダーについて-----*/
#header {
	width: 100vw;
	height: 100px;
	background-color: #fff;
	position: fixed;
	z-index: 999;
}
.header_inner {
	display: flex;
	align-items: center;
	padding-top: 15px;
	max-width: 2000px;
	margin: 0 auto;
}
#header img {
	width: 70px;
	height: auto;
}
.logo1 {
	margin-left: 60px;
}
.logo2 {
	margin-left: 20px;
}
h1 {
	margin: 0 30px 20px 5px;
}
h1 span {
	font-size: 0.6em;
	font-weight: 400;
}
h1 br {
	display: block;
	content: "";
	height: 10px;
}
#g-nav {
	margin: 0 60px 0 auto;
}
nav ul {
	display: flex;
	font-size: clamp(14px, 1vw, 18px);
}
nav li {
	padding-right: 35px;
}
.gnavi li a {
	position: relative;
}
.gnavi li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #ffcb97;
	border-radius: 4px;
	transition: all 0.3s;
	transform: scale(0, 1);
	transform-origin: left top;
}
.gnavi li::after,
.gnavi li a:hover::after {
	transform: scale(1, 1);
}
.item {
	position: relative;
}
.child {
	display: none;
}
.item:hover .child {
	display: block;
	position: absolute;
	top: 32px;
	left: -20px;
	background-color: rgba(255, 255, 255, 0.88);
	width: 138%;
	padding: 17px 10px;
}
.child > li {
	padding: 5px;
}
.item_sp {
	display: none;
}
@media (max-width: 1270px) {
	#header {
		height: 80px;
	}
	#header img {
		width: 50px;
	}
	.logo1 {
		margin-left: 30px;
	}
	.logo2 {
		margin-left: 0;
	}
	nav ul {
		width: 100%;
		padding-top: 20%;
		font-size: clamp(24px, 1.4vw, 30px);
	}
	nav li {
		padding-right: 0;
	}
	#g-nav {
		position: fixed;
		z-index: 999;
		top: -120%;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #ffcb97;
		transition: all 0.8s;
	}
	#g-nav.panelactive {
		top: 0;
	}
	#g-nav ul {
		display: none;
		position: absolute;
		z-index: 999;
		top: 0;
		left: 60%;
		transform: translate(-50%, 0);
	}
	#g-nav.panelactive ul {
		display: block;
	}
	#g-nav li {
		list-style: none;
		text-align: left;
		width: 50%;
		margin: 0 auto;
		padding-bottom: 15px;
	}
	#g-nav li a {
		color: #fff;
		text-decoration: none;
		padding-bottom: 15px;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: bold;
	}
	.item {
		display: none;
	}
	.item_sp {
		display: block;
		font-size: clamp(18px, 1.4vw, 22px);
		padding-left: 5%;
		line-height: 1.6rem;
	}
	.item_sp1 {
		font-size: clamp(24px, 1.4vw, 30px);
		padding-left: 0;
		line-height: 2rem;
	}
	/*========= ボタンのためのCSS ===============*/
	.openbtn1 {
		position: fixed;
		z-index: 9999;
		top: 15px;
		right: 0;
		cursor: pointer;
		width: 80px;
		height: 80px;
	}
	.openbtn1 span {
		display: inline-block;
		transition: all 0.4s;
		position: absolute;
		left: 14px;
		height: 3px;
		border-radius: 2px;
		background-color: #ffcb97;
		width: 45%;
	}
	.openbtn1 span:nth-of-type(1) {
		top: 15px;
	}
	.openbtn1 span:nth-of-type(2) {
		top: 23px;
	}
	.openbtn1 span:nth-of-type(3) {
		top: 31px;
	}
	.openbtn1.active span:nth-of-type(1) {
		top: 18px;
		left: 12px;
		transform: translateY(6px) rotate(-45deg);
		width: 50%;
		background-color: #fff;
	}
	.openbtn1.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn1.active span:nth-of-type(3) {
		top: 30px;
		left: 12px;
		transform: translateY(-6px) rotate(45deg);
		width: 50%;
		background-color: #fff;
	}
}
@media (max-width: 550px) {
	#header {
		height: 60px;
	}
	#header img {
		width: 35px;
	}
	.header_inner {
		padding-top: 12px;
	}
	h1 {
		margin: 0 10px 10px 3px;
		font-size: clamp(14px, 1vw, 16px);
	}
	h1 span.header_span {
		font-size: 0.55em;
		font-weight: 400;
	}
	h1 br {
		display: block;
		content: "";
		height: 0;
	}
	.logo1 {
		margin-left: 8px;
	}
	.logo2 {
		margin-left: 3px;
	}
	nav ul {
		width: 100%;
		padding-top: 25%;
		font-size: clamp(22px, 1.4vw, 28px);
	}
	#g-nav ul {
		display: none;
		position: absolute;
		z-index: 999;
		top: 0;
		left: 50%;
		transform: translate(-50%, 0);
		width: 90%;
		margin: 0 auto;
	}
	#g-nav.panelactive ul {
		display: block;
	}
	#g-nav li {
		list-style: none;
		text-align: left;
		width: 90%;
	}
	#g-nav li:first-child {
		font-size: clamp(26px, 1.8vw, 28px);
	}
	#g-nav li a {
		color: #fff;
		text-decoration: none;
		padding: 10px;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: bold;
	}
	.item_list {
		font-size: clamp(18px, 1.2vw, 22px);
		padding-left: 8%;
		line-height: 1.2rem;
	}
	/*========= ボタンのためのCSS ===============*/
	.openbtn1 {
		top: 5px;
		right: -10px;
		width: 60px;
		height: 60px;
	}
}
/*-----ここからアップボタンについて-----*/
.up_btn {
	position: fixed;
	right: 30px;
	bottom: 10px;
	z-index: 99;
	pointer-events: auto;
}
.up_btn img {
	width: 6vw;
	height: auto;
}
@media (max-width: 1270px) {
	.up_btn {
		right: 20px;
		bottom: 5px;
	}
	.up_btn img {
		width: 10vw;
	}
}
@media (max-width: 430px) {
	.up_btn {
		right: 15px;
		bottom: 5px;
	}
	.up_btn img {
		width: 18vw;
	}
}
/*-----ここから波（ホワイト）の背景について-----*/
.wrapper {
	overflow: hidden;
	position: relative;
}
.wrapper::before {
	content: "";
	position: absolute;
	z-index: 2;
	pointer-events: none;
	background-repeat: no-repeat;
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw;
	background-size: 170% 170px;
	background-position: 60% 100%;
	transform: rotateY(180deg);
	background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23ffffff"/></svg>');
}
@media (min-width: 2100px) {
	.wrapper::before {
		background-size: 170% calc(2vw + 170px);
	}
}
@media (max-width: 1270px) {
	.wrapper::before {
		background-size: 180% 100px;
		background-position: 50% 100%;
		transform: rotateY(180deg);
		background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23ffffff"/></svg>');
	}
}
@media (max-width: 500px) {
	.wrapper::before {
		content: "";
		font-family: "shape divider from ShapeDividers.com";
		position: absolute;
		bottom: -1px;
		left: -1px;
		right: -1px;
		top: -1px;
		z-index: 2;
		pointer-events: none;
		background-repeat: no-repeat;
		background-size: 170% 50px;
		background-position: 50% 100%;
		transform: rotateY(180deg);
		background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23ffffff"/></svg>');
	}
}
/*-----ここから波（オレンジ）の背景について-----*/
.wrapper2 {
	overflow: hidden;
	position: relative;
}
.wrapper2::before {
	content: "";
	position: absolute;
	z-index: 3;
	pointer-events: none;
	background-repeat: no-repeat;
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw;
	background-size: 170% 170px;
	background-position: 60% 100%;
	transform: rotateY(180deg);
	background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23FFF7DB"/></svg>');
}
@media (min-width: 2100px) {
	.wrapper2::before {
		background-size: 170% calc(2vw + 170px);
	}
}
@media (max-width: 1270px) {
	.wrapper2::before {
		background-size: 180% 100px;
		background-position: 50% 100%;
		transform: rotateY(180deg);
		background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23FFF7DB"/></svg>');
	}
}
@media (max-width: 500px) {
	.wrapper2::before {
		content: "";
		font-family: "shape divider from ShapeDividers.com";
		position: absolute;
		bottom: -1px;
		left: -1px;
		right: -1px;
		top: -1px;
		z-index: 3;
		pointer-events: none;
		background-repeat: no-repeat;
		background-size: 170% 50px;
		background-position: 50% 100%;
		transform: rotateY(180deg);
		background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23FFF7DB"/></svg>');
	}
}
/*-----ここからフッターについて-----*/
.footer {
	background-color: #fff7db;
	width: 100vw;
	height: 60px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.footer small {
	position: absolute;
	bottom: 0;
	color: #f98f41;
	font-size: 13px;
}
@media (max-width: 1270px) {
	.footer {
		height: 40px;
	}
	.footer small {
		font-size: 10px;
	}
}
