@charset "utf-8";
/*@import url(https://fonts.googleapis.com/css?family=Rajdhani);*/
/* CSS Document */

body {
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
	/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	text-align: center;
	color: var(--color);
}

/* Loading画像中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	transform: translate(-50%, -50%);
	color: var(--color);
	width: 100%;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
	height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
	width: 100%;
	height: 50%;
	background-color: var(--blue);
	transition: all .2s cubic-bezier(.04, .435, .315, .9);
	transform: scaleY(1);
}

/*上の画面*/
.loader_cover-up {
	transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
	position: absolute;
	bottom: 0;
	transform-origin: center bottom;
}

/*クラス名がついたらY軸方向に0*/
.coveranime {
	transform: scaleY(0);
}



/*------------------------------------------
header
------------------------------------------*/


/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn {
	/*はじめは非表示に*/
	display: none;
	/*ボタンの位置*/
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 998;
	/*ボタンの形状*/
	background: #666;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 5px;
}

/*ボタンのアイコン設定*/
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top: 15px;
}

.openbtn span:nth-of-type(2) {
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top: 31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

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

.openbtn.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
	animation-name: fadeDownAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	display: block;
}

@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}



/*==ヘッダーの形状*/
header {
	height: 70px;
	width: calc(100% - 40px);
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	text-align: center;

}



/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
header.dnone.panelactive {
	opacity: 1;
	/*不透明にして出現*/
}

header #g_navi {
	right: -400px;
	height: 100vh;
	width: 400px;
}

header #g_navi div {
	width: 90%;
	margin: 0 auto;
}

header.dnone.panelactive #g_navi {
	right: 0
}

/*==ヘッダーのテキストナビゲーションの形状*/
header #g_navi ul {
	list-style: none;
	/*display: flex;*/
	justify-content: center;
}

header #g_navi ul li a {
	display: block;
	text-decoration: none;
	/*color: #666;*/
	padding: 10px;
	/*opacity: 1 !important;*/
	font-family: 'Zen Maru Gothic', sans-serif;
	color: var(--yellow);
}

header #g_navi ul li.current a,
header #g_navi ul li a:hover {
	color: #fff;
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
header.dnone #g_navi {
	/*固定位置にして最背面に*/
	position: fixed;
	top: 0;
	right: 0;
	z-index: -1;
	/*高さと幅*/
	/*width:400px;*/
	/*height: 100vh;*/
	/*天地中央＆テキスト中央揃え*/
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	/*はじめは透過0に*/
	/*opacity: 0;*/
	transition: all 0.4s;
	background: var(--color);
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
header.dnone.panelactive #g_navi {
	opacity: 1;
	/*不透明に*/
	z-index: 3;
	/*最前面に*/
	background: var(--color);
}

header.panelactive #g_navi ul {
	/*display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

header #g_navi li a {
	color: var(--bg);
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition: all 0.3s;
}

header #g_navi li a:hover {
	opacity: 0.5;
}


header #g_navi .btn_p .btn {
	font-size: 2rem;
	padding: 10px 40px;
	box-shadow: #000 0px 0px 20px;
}


header #g_navi .service a {
	/*background: var(--yellow) url('../../images/photo_nikorihito.png') 250px 90px no-repeat;*/
	background: url('../../images/photo_nikorihito.png') 250px 90px no-repeat;
	border: var(--yellow) solid 2px;
	border-radius: 10px;
	color: var(--yellow);
	font-size: 2.5rem;
	padding: 40px 0;
}


header #g_navi .service a:hover {
	background: var(--yellow) url('../../images/photo_nikorihito.png') 240px 80px no-repeat;
	color: var(--color);
	opacity: 1;
}




/*---------------*/

header {

	position: absolute;
	top: 0;
	left: 0;
	z-index: 998;
}

header h1 {
	height: 100%;
	margin: 0;
	font-size: 1.2rem;
	font-weight: normal;
	color: var(--color);
}



header #g_navi ul {
	margin: 0;
	padding: 0;
}

header #g_navi ul a {
	color: #fff;
	font-family: 'Chakra Petch', sans-serif;
	font-weight: 800;
	font-size: 2rem;
}

.openbtn {
	background: var(--color);
	border-radius: 0;
	top: 50px;
	right: 0;
}

.openbtn span {
	border-radius: 0;
}


.nikorihito {
	margin: 0;
	position: fixed;
	top: 20px;
	right: 0;
	z-index: 5;
}


header.dnone #g_navi {
	right: -400px;
}





@media all and (max-width: 767px) {
	header.dnone #g_navi {
		right: -100vw;
	}

	header #g_navi {
		right: -100vw;
		width: 100vw;
	}
}

/*-------------------------------------
main_visual
-------------------------------------*/
#main_visual {
	width: 100%;
	position: relative;
	/*aspect-ratio: 16 / 9;*/
	background: var(--yellow);
	overflow: hidden;
	height: 800px;
}

#main_visual p {
	margin: 0;
}


#main_visual .relative {
	height: 100%;
	/*max-width: var(--maxwidth);*/
	width: 1920px;
	margin: 0 auto;
}

#main_visual .relative .logo {
	position: absolute;
	bottom: 250px;
	left: 400px;
}

#main_visual .back {
	position: absolute;
}


#main_visual .back.yellow {
	width: 0;
	height: 0;
	border-top: 0 solid transparent;
	border-right: 1470px solid var(--yellow);
	border-bottom: 1250px solid transparent;
	left: 450px;
	top: 0;
}

#main_visual .back.blue {
	width: 0;
	height: 0;
	border-top: 0 solid transparent;
	border-left: 400px solid var(--blue);
	border-bottom: 1200px solid transparent;
	left: 0;
	top: 0;
}

#main_visual .back.orange {
	width: 0;
	height: 0;
	border-top: 360px solid transparent;
	border-right: 850px solid var(--orange);
	border-bottom: 0 solid transparent;
	left: 600px;
	bottom: 0;
}

#main_visual .back.white {
	height: 100%;
	width: 1500px;
	background: #fff;
	left: 0;
	bottom: 0;
}



#main_visual .text {
	max-width: var(--maxwidth);
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	font-family: 'Zen Maru Gothic', sans-serif;
}


#main_visual .text p {
	text-align: right;
	color: var(--color);
	font-size: 3rem;
	font-weight: 600;
	padding-top: 300px;
}





@media all and (max-width: 1279px) {
	#main_visual .back.yellow {
		left: -100px;
	}

	#main_visual .back.blue {
		left: -200px;
	}

	#main_visual .back.orange {
		left: 0;
	}

	#main_visual .relative .logo {
		bottom: 230px;
		left: 100px;
	}
}




@media all and (max-width: 767px) {
	#main_visual .back.yellow {
		left: -200px;
	}

	#main_visual .back.blue {
		left: -200px;
	}

	#main_visual .back.orange {
		left: 0;
	}

	#main_visual .relative .logo {
		bottom: 230px;
		left: 100px;
		width: 200px;
	}

	#main_visual .text p {
		font-size: 2.5rem;
		padding-top: 30%;
	}

}





/*---------------------
main
-----------------------*/






/*---------------------
container
-----------------------*/


.container {
	max-width: var(--maxwidth);
	width: calc(100% - 60px);
	margin: 0 auto;
	position: relative;
	padding: 150px 30px;
}

.container.container_wide {
	max-width: 100%;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}


.container:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	opacity: 0.2;
}


.container:last-child:before {
	display: none;
}

section.container h2,
section.container_wide h2 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 4.5rem;
	text-align: center;
}


section.container h2 img,
section.container_wide h2 img {
	padding-bottom: 20px;
}


section.container h3 {
	text-align: center;
}

section.container h3 span {
	font-size: 3rem;
	display: block;
	line-height: 120%;
}


h2.content_h2 {
	margin: 0;
	margin-top: 80px;
	padding: 100px 0;
	background: var(--blue);
	color: #fff;
}








@media all and (max-width: 767px) {
	section.container h2 {
		font-size: 3rem;
	}

	section.container h3 span {
		font-size: 2.5rem;
	}


	h2.content_h2 {
		padding: 40px 0;
	}
}


/*---------------------
container
-----------------------*/


.container .content {
	padding: 0 180px;
	position: relative;
}





/*---------------------
h
----------------------*/

h3.section_h3 {
	position: relative;
	border-bottom: solid 3px #5d0941;
}

h3.section_h3 .date {
	font-size: 1.2rem;
}

h3.section_h3:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px var(--att);
	bottom: -3px;
	width: 20%;
}




/*--------------------
padding_box
-------------------------*/
.padding_box {
	padding: var(--padding);
}





/*---------------------
btn
-----------------------*/
.btn_p {
	/*display: inline;*/
	margin: 0 auto;
	text-align: center;
}

/*== ボタン共通設定 */
.btn_p .btn {
	/*アニメーションの起点とするためrelativeを指定*/
	position: relative;
	overflow: hidden;
	/*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	border: 4px solid var(--blue);
	/* ボーダーの色と太さ */
	border-radius: 50px;
	background: var(--blue);
	padding: 20px 60px;
	text-align: center;
	outline: none;
	color: var(--bg);
	font-weight: bold;
	box-shadow: #b2b2b2 0px 0px 20px;
	font-size: 3rem;
	/*アニメーションの指定*/
	transition: ease .2s;
	cursor: pointer;
	line-height: 1em;
}

.btn_p .btn:hover {
	opacity: 1;
	background: var(--bg);
	color: var(--blue);
	box-shadow: var(--blue) 0px 0px 20px;
}

.btn_p.active .btn:hover span {
	color: #fff;
}





@media all and (max-width: 767px) {
	.btn_p .btn {
		font-size: 2.5rem;

	}
}






/*---------------------
tag
-----------------------*/
.tag a {
	border: #fff solid 1px;
	color: #fff;
	font-size: 1.2rem;
	line-height: 3em;
	display: inline;
	padding: 5px;
	font-family: 'Chakra Petch', sans-serif;
	cursor: pointer;
}







/*----------------------------
grid_box
------------------------------*/

.grid_box {
	display: grid;
	gap: calc(var(--padding) * 2);
	/*padding-bottom: var(--padding);*/
}


.grid_box.grid_box_1-1 {
	grid-template-columns: 1fr 1fr;
}

.grid_box.grid_box_1 {
	grid-template-columns: 1fr;
}




@media all and (max-width: 767px) {

	.grid_box {
		display: block;
	}


}








/*-----------------------------
pickup_seciton
-------------------------------*/

.pickup_seciton .flex_box {
	display: flex;
	gap: calc(var(--padding) * 2);
}


.pickup_seciton .flex_box .photo {
	position: relative;
	width: 300px;
}

.pickup_seciton .flex_box .photo img {
	width: 100%;
}

.pickup_seciton .flex_box .photo span {
	position: absolute;
	top: 350px;
	right: 10px;
}

.pickup_seciton .flex_box .text {
	width: calc(100% - 300px);
}


.pickup_seciton .flex_box .text p {
	margin-top: 0;
}



@media all and (max-width: 767px) {
	.pickup_seciton .flex_box {
		flex-direction: column-reverse;
	}

	.pickup_seciton .flex_box .text {
		width: 100%;
	}

	.pickup_seciton .flex_box .photo {
		width: 250px;
		margin: 0 auto;
	}

	.pickup_seciton .flex_box .photo span {
		top: 320px;
	}

	.pickup_seciton .flex_box .photo span img {
		width: 80px;
	}

}



/*-----------------------------
maincontent_seciton
-------------------------------*/
.maincontent_seciton {
	background: var(--yellow);
	padding-bottom: 0;
}

.maincontent_seciton .img {
	text-align: center;
	padding-top: 20px;
}

.maincontent_seciton .img .black,
.maincontent_seciton .img .white {
	display: inline;
	font-size: 2rem;
	font-weight: bold;
	padding: 20px 50px;
}

.maincontent_seciton .img .black {
	background: var(--color);
	color: #fff;
}

.maincontent_seciton .img .white {
	background: #fff;
	color: var(--color);
	border: var(--color) solid 3px;
	display: block;
	max-width: 300px;
	margin: 0 auto;
}

.maincontent_seciton .icon {
	padding: 20px 0;
	padding-bottom: 0;
}


.maincontent_seciton .content_back {
	background: var(--orange2);
	margin-top: 100px;
	position: relative;
	padding-bottom: 100px;
	padding-top: 0;
}

.maincontent_seciton .content_back .top {
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: var(--yellow);
}

.maincontent_seciton .content_back .content {
	max-width: var(--width);
	/*width: 100%;*/
	margin: 0 auto;
	padding: calc(var(--padding) * 2);
}

.maincontent_seciton .content_back .content .inner {
	background: #fff;
	padding: calc(var(--padding) * 2);
}

.maincontent_seciton .content_back .content .inner p:last-child {
	margin-bottom: 0;
}



.maincontent_seciton .content_back .content .inner .youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.maincontent_seciton .content_back .content .inner .youtube iframe {
	width: 100%;
	height: 100%;
}



.maincontent_seciton .content_back .content .inner .text ul {
	margin: 0;
	padding-left: 30px;
}

.maincontent_seciton .content_back .content .inner .img img {
	width: 100%;
	border: #dfdfdf solid 1px;
}

/*maincontent内 吹き出し*/
.balloon-wrap {
	text-align: center;
}

.balloon-wrap {
	text-align: center;
}

.balloon1 {
	display: inline-block;
	position: relative;
	margin-top: 1.5em;
	padding: 18px 22px;
	min-width: 200px;
	max-width: 90%;
	font-size: 20px;
	background-color: #b2ebf2;
	border-radius: 20px;
	text-align: center;
}

.balloon1:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 25%;
	margin-left: -18px;
	border: 18px solid transparent;
	border-top: 18px solid #b2ebf2;
}

.balloon1 p {
	margin: 0;
	padding: 0;
	font-weight: bold;
}

.nowrap {
	white-space: nowrap;
}



@media all and (max-width: 767px) {
	.maincontent_seciton .img .white {
		max-width: 60%;
	}

	.maincontent_seciton .content_back .content,
	.maincontent_seciton .content_back .content .inner {
		padding: var(--padding);
	}

	.balloon1 {
		padding: 15px 17px;
		font-size: 16px;
		border-radius: 16px;
	}

	.balloon1:before {
		top: 100%;
		left: 20%;
		margin-left: -14px;
		border-width: 14px;
		border-top-color: #b2ebf2;
	}
}


/*----------------------------------
company_seciton
----------------------------------*/
.company_seciton dl {
	padding-bottom: 50px;
}

.company_seciton dl dt {
	border-bottom: var(--color) solid 2px;
	display: inline;
	font-size: 1.4rem;
	padding: 0 10px;
	font-weight: bold;
}

.company_seciton dl dd {
	margin: 0;
	padding-left: 10px;
}



/*----------------------------------
cp_form
----------------------------------*/
.cp_form {
	max-width: var(--width);
	/* width: 100%; */
	margin: 0 auto;
	padding: 30px 20px;
}

.cp_form table {
	width: 100%;
}

.cp_form table th{
	display: block;
	text-align: left;
	width: 100%;
}
.cp_form table td {
	display: block;
	text-align: left;
	width: 100%;
	padding: 12px;
	margin-bottom: 30px;
}

.cp_form table td input,
.cp_form table td textarea {
	width: calc(100% - 20px);
	padding: 10px;
	margin-bottom: 20px;
}

.cp_form table td textarea {
	height: 100px;
}

.cp_form table th span {
	font-size: 1.2rem;
	color: red;
}



.btn_prev input {
	background: none;
	border: none;
	text-align: center;
	display: block;
	text-decoration: underline;
	margin: 0 auto;
	width: 100%;
	cursor: pointer;
	transition: 0.2s;
}

.btn_prev input:hover {
	opacity: 0.5;
}


@media all and (max-width: 767px) {
	.cp_form {
		/*padding: var(--padding);*/
		padding: 0;
	}
}



/*----------------------------------
footer
----------------------------------*/

footer {
	text-align: center;
	padding: 100px 0;
	background: #fff;
}


footer .logo img {
	width: 180px;
}

footer address {
	font-style: normal;
	font-size: 0.8rem;
	line-height: 2em;
}



/*------------------------------------
footer_banner
------------------------------------*/
#footer_banner {
	position: fixed;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);


	z-index: 2;

	background-size: cover;
}


#footer_banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
}

#footer_banner .close {
	display: none;
}

#footer_banner a,
#footer_banner a:visited {
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.2s;
}

#footer_banner:hover {
	opacity: 0.5;
}

@media all and (min-width: 1024px) {

	#footer_banner {
		aspect-ratio: 2.5 / 1;
		width: 400px;
		right: 10px;
		bottom: 100px;
		background: url(../../images/footer_banner_sp.jpg) center no-repeat;
		background-size: cover;
		transition: 0.2s;
	}
}

@media all and (max-width: 1023px) {
	#footer_banner {
		width: calc(90% - 120px);
		bottom: 50px;

		left: 10px;
		aspect-ratio: 2.5 / 1;

		background: url(../../images/footer_banner_sp.jpg) center no-repeat;
		background-size: cover;
	}
}




/*----------------------------------
page-top
----------------------------------*/

#page-top {}

#page-top:after {
	display: block;
	content: "";
	position: fixed;
	bottom: -70px;
	right: 16px;

	width: 0;
	height: 0;
	border-top: 120px solid transparent;
	border-right: 120px solid var(--color);
	border-bottom: 0 solid transparent;
	transform: rotate(-135deg);
}

#page-top a {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 2;
	width: 150px;
	text-align: center;
	color: #fff;
	text-decoration: none;

}

#page-top a span {
	position: fixed;
	bottom: 30px;
	right: 50px;
	transition: 0.2s;
}


#page-top a:hover {
	opacity: 1;
}

#page-top a:hover span {
	margin-top: -10px;
}




#page-top {
	opacity: 0;
	transition: 0.5s;
}

#page-top.UpMove {
	opacity: 1;
}

#page-top.UpAnime {
	opacity: 0;
}





@media all and (max-width: 767px) {
	#page-top {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		border-bottom: var(--color) solid 40px;
		margin-bottom: 0;
	}

	#page-top a {
		bottom: 40px;
	}

	#page-top:after {
		bottom: -30px;
	}

	#page-top a span {
		bottom: 70px;
	}

}