:root {
	--color-gre: #30AC41;
	--color-gre-str: #2C9E3C;

	--color-yel: #F4AB20;
	--color-yel-str: #F29F00;

	--color-red: #ED574C;
	--color-red-str: #EF4639;

	--color-gra: #F6F6F6;
	--color-gra-str: #EFEFEF;

	--color-dark: #707070;
	--color-dark-str: #000000;

	--color-whi: #FFF;
}

/*スクロールバー全体*/
::-webkit-scrollbar {
	width: 10px;
	height: 8px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 50, .5);
	border-radius: 10px;
	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
* {
	-webkit-appearance: none;
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 20px;
	line-height: 1.2em;
	position: relative;
	color: #707070;
	z-index: 1;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background: #FFF;
}
a {
	text-decoration: none;
}
img {
	width: 100%;
	vertical-align: bottom;
}

/*=====header*/
header {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 70px;
	box-shadow: 0 0 0 10px rgb(0 0 0 / 10%);
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .header-logo {
	margin-left: 50px;
	display: block;
	height: 50%;
}
header .header-logo img {
	width: auto;
	height: 100%;
}
header .header-list {
	margin-right: 50px;
	display: flex;
}
header .header-list li {
	display: flex;
	margin-left: 30px;
}
header .header-list li a {
	font-size: 0.8em;
}


.menu-btn {
	width: 30px;
	height: 20px;
	cursor: pointer;
	margin-right: 30px;
}
.menu-btn:before,
.menu-btn:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	border-radius: 2px;
	margin: auto;
}
.menu-btn:before {
	width: 100%;
	top: 0;
	left: 0;
	background: var(--color-gre);
}
.menu-btn:after {
	bottom: 0;
	left: 0;
	background: var(--color-yel);
	width: 60%;
}
.menu-btn hr {
	display: block;
	border: 0;
	width: 100%;
	height: 4px;
	background: var(--color-red);
	border-radius: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}


#menu {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 100%;
	right: 0;
	margin: auto;
	display: block;
	z-index: 2000;
	transition: 0.1s;
}
#menu.active {
	left: 0%;
}
#menu .menu-bg--bar {
	position: absolute;
	height: calc(100% / 3);
	width: 100%;
	display: block;
	border: 0;
	margin: auto;
	left: 100%;
	transition: 0.5s;
}

#menu .menu-bg--bar:nth-child(1) {
	background: var(--color-gre);
	top: 0;
	transition: all 0.3s 0.2s ease;
}
#menu .menu-bg--bar:nth-child(2) {
	background: var(--color-red);
	top: 0;
	bottom: 0;
	transition: all 0.3s 0.4s ease;
}
#menu .menu-bg--bar:nth-child(3) {
	background: var(--color-yel);
	bottom: 0;
	transition: all 0.3s 0.6s ease;
}

#menu.active .menu-bg--bar:nth-child(1) {
	left: 0%;
}
#menu.active .menu-bg--bar:nth-child(2) {
	left: 0%;
}
#menu.active .menu-bg--bar:nth-child(3) {
	left: 0%;
}

#menu .menu-bg--filter {
	display: block;
	border: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: rgba( 255, 255, 255, 0.5 );
	backdrop-filter: blur( 10px );
	opacity: 0;
	transition: all 0.3s 0.8s ease;
}
#menu.active .menu-bg--filter {
	opacity: 1;
}
#menu .menu-contents {
	width: 100%;
	max-height: 100vh;
	max-height: 100dvh;
	overflow: auto;
	padding: 50px;
	opacity: 0;
	filter: blur(10px);
	transition: all 0.3s 1s ease;
}
#menu.active .menu-contents {
	opacity: 1;
	filter: blur(0px);
}
#menu .menu-contents .menu-logo {
	display: block;
	width: 50%;
	max-width: 200px;
	margin: auto auto 50px;
}
#menu .menu-contents .menu-logo img {}
#menu .menu-contents nav {
	max-width: 500px;
	width: 90%;
	margin: auto;
}
#menu .menu-contents nav ul {
	list-style: none;
	width: 100%;
}
#menu .menu-contents nav ul li {
	color: #000;
	font-size: 14px;
	border-bottom: 1px solid #000;
}
#menu .menu-contents nav ul li a {
	font-size: 1em;
	color: #000;
	padding: 20px;
	display: block;
}
#menu .menu-close {
	position: absolute;
	bottom: -100px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: var(--color-red);
	border: 10px solid var(--color-red-str);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	z-index: 10;
	cursor: pointer;
	transition: all 0.3s 0.1s ease;
}
#menu.active .menu-close {
	bottom: 20px;
	transition: all 0.3s 1s ease;
}
#menu .menu-close:before,
#menu .menu-close:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 50%;
	height: 4px;
	background: #000;
	border-radius: 4px;
}
#menu .menu-close:before {
	transform: rotate(45deg);
}
#menu .menu-close:after {
	transform: rotate(-45deg);
}




/*=====contents*/
#breadcrumb {
	padding-top: 100px;
	max-width: 1000px;
	width: 90%;
	margin: auto;
}
#breadcrumb .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
#breadcrumb .breadcrumb li {
	font-size: 0.7em;
}
#breadcrumb .breadcrumb li a {
	font-size: 1em;
	text-decoration: underline;
}
#breadcrumb .breadcrumb li:not(:last-of-type)::after {
	content: "›";
	margin: 0.6em; /* 記号の左右の余白 */
	color: #777; /* 記号の色 */
}


#pagetop {
	position: fixed;
	bottom: 50px;
	right: 50px;
	width: 50px;
	height: 50px;
	background: var(--color-yel);
	border: 10px solid var(--color-yel-str);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}
#pagetop img {
	width: 50%;
}


.title_under_type1 {
	width: fit-content;
	margin: 30px auto;
	padding: 20px 20px 20px 10px;
	border-bottom: 3px solid #f4ab20;
	max-width: 85%;
}
.title_under_type1:before {
	content: '';
	display: block;
	position: absolute;
	bottom: -3px;
	left: -20px;
	margin: auto;
	height: 20px;
	width: 20px;
	border-left: 3px solid #f4ab20;
	border-bottom: 3px solid #f4ab20;
	border-radius: 0 0 0 50px;
}
.title_under_type1:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 20px;
	left: -36px;
	margin: auto;
	height: 30px;
	width: 30px;
	border-radius: 100%;
	border: 3px solid #f4ab20;
}


.title_under_type2 {
	width: fit-content;
	margin: 30px auto;
	padding: 10px 10px 10px 0px;
	border-bottom: 3px solid #38A442;
}
.title_under_type2:before {
	content: '';
	display: block;
	position: absolute;
	bottom: -3px;
	right: -20px;
	margin: auto;
	height: 20px;
	width: 20px;
	border-right: 3px solid #38A442;
	border-bottom: 3px solid #38A442;
	border-radius: 0 0 50px 0;
}
.title_under_type2:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 20px;
	right: -36px;
	margin: auto;
	height: 30px;
	width: 30px;
	border-radius: 100%;
	border: 3px solid #38A442;
}


.btn {
	display: block;
	cursor: pointer;
	border: 1px solid #000;
	text-align: center;
	padding: 20px;
	max-width: 500px;
	width: 90%;
	margin: auto;
	box-shadow: 0px 10px 0 0px rgb(0 0 0 / 40%);
	border-radius: 10px;
	transition: 0.3s;
	top: 0px;
	font-weight: bold;
	color: #000;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
}
.btn.btn-gra {
	background: #D1D1D1;
}
.btn.btn-red {
	background: var(--color-red);
}
.btn.btn-gre {
	background: var(--color-gre);
}
.btn.btn-yel {
	background: var(--color-yel);
}
.btn.arrow-top:after,
.btn.arrow-right:after,
.btn.arrow-bottom:after,
.btn.arrow-left:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 20px;
	height: 20px;
	margin: auto;
	background-image: url(/common/img/arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.btn.arrow-top:after {
	transform: rotate(0deg);
}
.btn.arrow-right:after {
	transform: rotate(90deg);
}
.btn.arrow-bottom:after {
	transform: rotate(180deg);
}
.btn.arrow-left:after {
	transform: rotate(270deg);
}
.btn:active {
	transition: 0.3s;
	top: 10px;
	box-shadow: 0px 0px 0 0px rgb(0 0 0 / 40%);
}

.graybgsection {
	border-radius: 50px;
	background: var(--color-gra);
	padding: 100px 0;
	margin: 100px auto;
	width: 100%;
}
.graybgsection:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border-radius: 50px 0 0 50px;
	height: 100%;
	width: 60%;
	background: var(--color-gra-str);
	z-index: 1;
	clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
}

/* ---loading--- */
#loading-modal {
	display: none;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: rgba( 0, 0, 0, 0.3 );
	backdrop-filter: blur( 5px );
	-webkit-backdrop-filter: blur( 5px );
	z-index: 1000;
}
#loading-modal.active {
	display: -webkit-flex;
	display: flex;
}
#loading-modal .loader,
#loading-modal .loader:before,
#loading-modal .loader:after {
	background: #ffffff;
	-webkit-animation: load1 1s infinite ease-in-out;
	animation: load1 1s infinite ease-in-out;
	width: 1em;
	height: 4em;
	border-radius: 5px;
}
#loading-modal .loader {
	color: #ffffff;
	text-indent: -9999em;
	margin: 88px auto;
	position: relative;
	font-size: 11px;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
#loading-modal .loader:before,
#loading-modal .loader:after {
	position: absolute;
	top: 0;
	content: '';
}
#loading-modal .loader:before {
	left: -1.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
#loading-modal .loader:after {
	left: 1.5em;
}
@-webkit-keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}
@keyframes load1 {
	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4em;
	}
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}



/*ローディング*/
.loader {
	color: #f4ab20;
	font-size: 20px;
	margin: 100px auto;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: relative;
	text-indent: -9999em;
	-webkit-animation: load4 1.3s infinite linear;
	animation: load4 1.3s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}
@-webkit-keyframes load4 {
	0%,
	100% {
		box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
	}
	12.5% {
		box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	25% {
		box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	37.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	50% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	62.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}
	75% {
		box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}
	87.5% {
		box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
}
@keyframes load4 {
	0%,
	100% {
		box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
	}
	12.5% {
		box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	25% {
		box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	37.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	50% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	62.5% {
		box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}
	75% {
		box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}
	87.5% {
		box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
}


form {
	max-width: 500px;
	width: 90%;
	margin: auto;
}
.form-block {
	display: block;
	margin: auto auto 50px;
}
.form-block .form-block--ttl {
	font-size: 0.8em;
	font-weight: bold;
	color: #000;
	margin: 5px auto;
}
.form-block input,
.form-block select,
.form-block textarea {
	display: block;
	border: 1px solid #000;
	padding: 15px;
	border-radius: 10px;
	width: 100%;
	font-size: 16px;
	background: #FFF;
}
.form-block textarea {
	resize: none;
	height: 150px;
}
.form-block .form-arrow:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 20px;
	height: 20px;
	margin: auto;
	background-image: url(/common/img/arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: rotate(180deg);
	z-index: 2;
}
.form-block .form-block--error {
	color: var(--color-red);
	font-size: 0.7em;
	margin: 5px auto;
	opacity: 0;
}
.form-block .form-block--error.active {
	opacity: 1;
}
/* チェックボックス01 */
.checkbox {
	text-align: center;
}
.checkbox input[type=checkbox] {
	display: none;
}
.checkbox .checkbox01 {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 5px 0px 5px 30px;
	position: relative;
	width: auto;
	font-size: 0.7em;
}
.checkbox .checkbox01::before {
	background: #fff;
	border: 1px solid var(--color-red);
	content: '';
	display: block;
	height: 20px;
	width: 20px;
	left: 3px;
	margin-top: -8px;
	position: absolute;
	top: 45%;
	border-radius: 8px;
}
.checkbox .checkbox01::after {
	border-right: 3px solid var(--color-red);
	border-bottom: 3px solid var(--color-red);
	content: '';
	display: block;
	height: 9px;
	left: 10px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 48%;
	transform: rotate(45deg);
	width: 5px;
}
.checkbox input[type=checkbox]:checked + .checkbox01::after {
	opacity: 1;
}




/*=====footer*/
footer {
	margin-top: 100px;
}
footer .footer-contents {
	background: var(--color-gra);
	display: flex;
	justify-content: center;
	margin: auto;
	padding: 50px 0;
}
footer .footer-contents .foo-block {
	z-index: 3;
	margin-right: 50px;
}
footer .footer-contents .foo-block .foo-logo {
	max-width: 200px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer .footer-contents .foo-block .foo-logo img {
	width: 80%;
}
footer .footer-contents .foo-block .foo-block--list {
	list-style: none;
}
footer .footer-contents .foo-block .foo-block--list li {
	margin: 10px auto;
}
footer .footer-contents .foo-block .foo-block--list li a {
	display: block;
	font-size: 0.7em;
	padding: 5px 0;
}
footer .footer-contents .foo-block .foo-block--list li a:hover {
	text-decoration: underline;
}
footer .footer-contents .foo-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 2;
}
footer .copyright {
	width: 100%;
	margin: auto;
	font-size: 10px;
	text-align: center;
	padding: 30px;
}





/*404*/
#error {
	padding: 200px 0;
}
#error .errortxt {
	margin: auto auto 20px;
	text-align: center;
	font-size: 0.9em;
}
#error .errorlink {
	display: block;
	margin: auto;
	text-align: center;
	width: 80px;
	text-decoration: underline;
	font-size: 0.6em;
}
#error .errorbg {
	position: absolute;
	top: 70px;
	right: 0;
	font-size: 30vw;
	z-index: 0;
	opacity: 0.1;
}


/*===========================
=============================
SP ~1000
=============================
===========================*/
@media screen and (max-width:1000px) {
	header .header-list {
		display: none;
	}
}
/*===========================
=============================
SP ~750
=============================
===========================*/
@media screen and (max-width:750px) {

	header .header-logo {
		margin-left: 20px;
	}

	#pagetop {
		bottom: 20px;
		right: 20px;
	}


	footer .footer-contents {
		display: block;
	}
	footer .footer-contents .foo-block .foo-logo {
		width: 100px;
	}
	footer .footer-contents .foo-block {
		margin: 50px auto;
		width: 80%;
	}
}