@charset "UTF-8";

:root {
	--pink: #ee86b4;
	--green: #57b53c;
	--orange: #f5a100;
	--blue: #21b8ce;
	--text-color: #35290A;
	--bg-color: #54bfd0;
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

html {
	scroll-behavior: smooth;
}

html, body {
	margin: 0;
	padding: 0;
	background-color: var(--bg-color);
	background-image:
		radial-gradient(at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
		radial-gradient(at 80% 70%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
		repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.1) 0%, transparent 1%);
	background-blend-mode: soft-light; 
	background-size: 100% 100%, 100% 100%, 4px 4px;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1.9;
	word-break: normal;
	word-wrap: break-word;
	color: var(--text-color);
}

* {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	font-style: normal;
	list-style: none;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	border: 0;
}

a {
	color: var(--blue);
}

.tel {
	text-decoration: none;
	color: var(--text-color);
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
	padding-top: 60px;
}

.pc {
	display: none;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
	height: 1px;
	overflow: hidden;
}

.target {
	scroll-margin-top: 60px;
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 0 3vw 0 4vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.h_logo {
	width: 150px;
}

#main {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document switch
--------------------------------------------------------- */

#switch {
	width: 48px;
	height: 47px;
	border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
	background: #fff;
	position: relative;
}

#switch span {
	display: block;
	width: 24px;
	height: 3px;
	border-radius: 3px;
	background: var(--text-color);
	position: absolute;
	left: 12px;
	transition: all 0.3s;
}

#switch span:nth-child(1) {
	background: var(--pink);
	top: 14px;
}

#switch span:nth-child(2) {
	background: var(--orange);
	top: 22px;
}

#switch span:nth-child(3) {
	background: var(--green);
	bottom: 14px;
}

.active #switch span:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
}

.active #switch span:nth-of-type(2) {
	opacity: 0;
}

.active #switch span:nth-of-type(3) {
	transform: translateY(-7px) rotate(45deg);
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	display: flex !important;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	height: 100dvh;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-top: 70px;
	background-color: var(--bg-color);
	background-image:
		radial-gradient(at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
		radial-gradient(at 80% 70%, rgba(0, 0, 0, 0.05) 0%, transparent 60%),
		repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.1) 0%, transparent 1%);
	background-blend-mode: soft-light; 
	background-size: 100% 100%, 100% 100%, 4px 4px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;

	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#navi.active {
	opacity: 1;
	visibility: visible;
}

#navi .navi_top img {
	width: 100%;
	height: auto;
	aspect-ratio: 750 / 320;
	object-fit: cover;
}

#navi .h_navi {
	height: calc(100dvh - 72px + 42.66304347826087vw + 32.79734299516908vw);
	margin-top: -1px;
	padding: 1px 13vw;
	background: url(../images/navi_sp_middle.webp) repeat-y left / 100% auto;
	text-align: left;
}

#navi .h_navi li {
	margin: 10px 0;
}

#navi .h_navi li.this {
	margin: 20px 0;
}

#navi .h_navi li:first-of-type {
	margin-top: 0;
}

#navi .h_navi li a {
	display: flex;
	align-items: center;
	height: 44px;
	padding: 0 1em;
	border-radius: 44px;
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	color: var(--text-color);
	position: relative;
}

#navi .h_navi li.this a {
	background: var(--blue);
	color: #fff;
}

#navi .h_navi li a:before {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 18px;
	height: 18px;
	margin-right: 0.6em;
	border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
	background: var(--green);
}

#navi .h_navi li.this a:after {
	content: '';
	width: 46px;
	height: 100%;
	background: url(../images/btn.svg) no-repeat left / 100% auto;
	position: absolute;
	top: 0;
	right: 15px;
}

#navi .h_navi li.this a:before {
	background: var(--orange);
}

#navi .navi_bottom {
	margin-top: -1px;
	position: relative;
	z-index: 0;
}

#navi .navi_bottom:before {
	content: '';
	width: 84px;
	height: 180px;
	background: url(../images/navi_cloud.svg) no-repeat 0 0 / 100% auto;
	position: absolute;
	top: -250px;
	left: -36px;
	z-index: 1;
}

#navi .navi_bottom img {
	width: 100%;
	height: auto;
	aspect-ratio: 750 / 246;
	object-fit: cover;
}

/* ---------------------------------------------------------
	CSS Document btn
--------------------------------------------------------- */

.btn a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 46px;
	padding: 0 62px 0 35px;
	border-radius: 46px;
	border: solid 1px #fff;
	background: var(--blue);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	position: relative;
}

.btn a:after {
	content: '';
	width: 46px;
	height: 100%;
	background: url(../images/btn.svg) no-repeat left / 100% auto;
	position: absolute;
	top: 0;
	right: 15px;
}

/* ---------------------------------------------------------
	CSS Document h2
--------------------------------------------------------- */

.h2_blue {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 46px;
	margin-bottom: 30px;
	background: url(../images/h2_blue.png) no-repeat 0 0 / 100% 100%;
}

.h2_blue img {
	height: 24px;
}

.h2_white {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 46px;
	margin-bottom: 30px;
	background: url(../images/h2_white.png) no-repeat 0 0 / 100% 100%;
}

.h2_white img {
	height: 24px;
}

/* ---------------------------------------------------------
	CSS Document title
--------------------------------------------------------- */

#title {
	margin: 10px 4vw 50px;
}

#title img {
	aspect-ratio: 520 / 119;
	object-fit: cover;
}

#title p {
	margin: 30px 1vw 0;
	text-align: left;
	color: #fff;

}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	margin-bottom: 5vw;
	padding: 3vw 5vw;
}

#bread ol {
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	font-size: 2.8vw;
	letter-spacing: 0.05em;
	white-space: nowrap;
	line-height: 1;
}

#bread li {
	display: inline;
	margin-right: 1.8em;
	position: relative;
}

#bread li:not(:last-of-type):after {
	content: '';
	width: 0;
	height: 0;
	margin-top: -3px;
	border: solid 4px transparent;
	border-left: solid 6px #231815;
	position: absolute;
	top: 50%;
	right: -20px;
}

#bread a {
	text-decoration: none;
	color: #231815;
}

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 10vw;
	height: 10vw;
	margin: 0 4vw 3vw auto;
	font-size: 0;
	opacity: 1 !important;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footer {
	padding: 10vw 5vw;
	color: #fff;
}

#footer .f_logo {
	margin-bottom: 20px;
}

#footer .f_logo img {
	width: auto;
	height: 42.13333333333333vw;
	aspect-ratio: 360 / 316;
	object-fit: cover;
}

#footer .row {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
	text-align: left;
}

#footer .row a {
	text-decoration: none;
	color: #fff;
}

#footer .f_address {
	margin-bottom: 15px;
	line-height: 1.6;
}

#footer .f_phone {
	margin-bottom: 15px;
}

#footer .f_phone a {
	display: flex;
	align-items: center;
	gap: 0.3em;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}

#footer .f_email a {
	display: flex;
	align-items: center;
	gap: 0.5em;
	line-height: 1;
}

#footer .f_email img {
	margin-top: 6px;
}

#footer .f_sns {
	display: flex;
	justify-content: center;
	gap: 5vw;
	margin-bottom: 6vw;
}

#footer .f_sns a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
	background: #fff;
	font-size: 0;
}

#footer address {
	font-size: 14px;
	letter-spacing: 0.1em;
}
