@charset "UTF-8";
/* CSS Document */

/* ----------------------------------------------
	Google フォント
------------------------------------------------- */
/*@import url(https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined);*/
@import url(https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200);

:root {
	--base-color: #4A4848;
}


/* ----------------------------------------------
	This style definition is initialize.
------------------------------------------------- */

html {
	scroll-behavior: smooth;
}
:target {
	scroll-margin-top: 80px;
}

header, section, footer, nav { display:block; }/*- html5タグをブロック要素にする基本設定 -*/

.clearfix:after { clear: both; content: ""; display: block; }

.clearText {
	color: transparent;
	text-align: left;
	text-indent: -100%;
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	width: 100%;
	height: 100%;
}

a {
	text-decoration: none;
	display: inline-block;
	color: var(--base-color);
	cursor: pointer;
}

*,
*::before,
*::after{
	box-sizing: border-box;
}

/*-
	共通設定　ここから
------------------------------------------------- */
body {
	color: var(--base-color);
	font-family: "M PLUS Rounded 1c", sans-serif;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

.stageWrap {
	display: block;
	margin: 0 auto;
}

strong {
	font-weight: bold;
}


/* ----------------------------------------------
	ボタン　矢印
------------------------------------------------- */
.more_arrow a {
	color: #4A4848;
	text-align: center;
	font-weight: bold;
	
	display: inline-block;

	padding: 10px;
	width: 12em;
	
	position: relative;
	
	transition: 0.15s ease-in-out;
}
.more_arrow a::after {
	content: "";

	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 1em;

	display: inline-block;

	width: 1.6em;
	height: 1.6em;

	position: absolute;
	right: 15px;
	top: calc(50% - 0.8em);
	
	background-color: #4A4848;
}
.more_arrow a:hover {
	opacity: 0.6;
	transition: 0.15s ease-in-out;
}
.more_arrow a:hover::after {
	transition: 0.15s ease-in-out;
}

.more_arrow.arrow_up a::after {
	transform: rotate(270deg);
}
.more_arrow.arrow_right a::after {
	transform: rotate(0deg);
}
.more_arrow.arrow_below a::after {
	transform: rotate(90deg);
}
.more_arrow.arrow_left a::after {
	transform: rotate(180deg);
}


/* ----------------------------------------------
	ボタン　「く」の字のみ
------------------------------------------------- */
.arrow_k a::after {
	mask-image: url("../images/arrow.svg");
}


/* ----------------------------------------------
	ボタン「○く」
------------------------------------------------- */
.arrow_s a::after {
	mask-image: url("../images/arrow-maru.svg");
}

/* ----------------------------------------------
	ボタン「PDF」
------------------------------------------------- */
.link_pdf {}
.link_pdf a {
	font-size: 16px;
	font-weight: bold;
	text-align: center;

	display: block;
	padding: 10px 20px;

	position: relative;
}
.link_pdf a::after {
	content: '';
	
	mask-image: url("../images/img_pdf.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: var(--color-red);
	
	width: 1em;
	height: 2em;
	display: block;
	
	position: absolute;
	top: calc(50% - 2em / 2);
	right: 20px;
}


/* ----------------------------------------------
	ボタン「画像」
------------------------------------------------- */
.link_img {}
.link_img a {
	display: block;
}
.link_img a img {
	width: 100%;
}


/* ----------------------------------------------
	ボタン「外部」
------------------------------------------------- */
.link_b {}
.link_b a {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	
	display: block;
	padding: 10px 20px;
	border-radius: 10px;
}
.link_b a::after {
	content: '';
	
	mask-image: url("../images/img_new-tab.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	
	width: 1em;
	height: 1em;
	margin-left: 1em;
	
	display: inline-block;
}


/* ----------------------------------------------
	リスト
------------------------------------------------- */
/*-通常「・」-*/
.list {
	list-style: disc;
	padding-left: 1.5em;
}
/*-英字「A.」-*/
.list_alpha {
	list-style: upper-alpha;
	padding-left: 1.5em;
}
/*--*/
.list_closed {
	list-style: disclosure-closed;
	padding-left: 1.5em;
}
/*-まる「●」-*/
.list_circle {
	list-style: non;
	padding-left: 1em;
}
.list_circle > li::marker {
	color: var(--back-point-color);
	content: '●';
}


/* ----------------------------------------------
	左に■
------------------------------------------------- */
.left_square {
	color: var(--base-color) !important;
	padding-left: 1em;
	text-indent: -1em;
}
.left_square::before {
	content: '■';
	color: var(--page-point-color);
}


/* ----------------------------------------------
	備考（※）
------------------------------------------------- */
.ets{
	margin: auto !important;
}
.ets li {
	position: relative;
	padding-left: 1em;
	margin: auto !important;
	font-size: 14px;
}
.ets li::before {
	content: '\0203B';
	position: absolute;
	left: 0;
}
.ets_num {
	counter-reset: listnum;
	
	position: relative;
	padding-left: 3em;
	margin: auto !important;
	font-size: 14px;
}
.ets_num li::before {
	counter-increment: listnum;
	
	content: '(\0203B' counter(listnum) ')';
	position: absolute;
	left: 0;
}


/* ----------------------------------------------
	締切
------------------------------------------------- */
.deadline {
	border: solid 2px var(--color-red);
	margin-top: 2em !important;
	padding: 1em;
}
.deadline .midashi {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
}
.deadline strong {
	color: var(--color-red);
}


/* ----------------------------------------------
	ヘッダー
------------------------------------------------- */
#header {
	display: block;
	position: fixed;
	top: 0;
	background-color: #FFFFFF;
	width: 100%;
	z-index: 100000;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0, .4);
}
#header #title {
	position: relative;
}
#header #title h1 a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../images/cp_logo.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-size: auto;
	line-height: 1.2em;
}


/* ----------------------------------------------
	パンくずリスト
------------------------------------------------- */
#breadcrumbs {
	padding: 10px 0;
	background-color: #d1efea;
}
#breadcrumbs ul li {
	display: inline-block;
	color: #4A4848;
	font-size: 12px;
}
#breadcrumbs ul li + li:before {
	content: '>';
	display: inline-block;
	margin: 0 10px;
}
#breadcrumbs ul li a {
	color: #4A4848;
	text-decoration: underline;
}


/* ----------------------------------------------
	お問い合わせ　Information
------------------------------------------------- */
#information {
	background-size: 20px 20px;
	background-position: 50% 50%;
	background-image:
	repeating-linear-gradient(
		90deg,
		#e7f5fb ,
		#e7f5fb 1px,
		transparent 1px,
		transparent 20px
	),
	repeating-linear-gradient(
		0deg,
		#e7f5fb ,
		#e7f5fb 1px,
		#fff 1px,
		#fff 20px
	);
	
	position: relative;
}

#information h2 {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
#information h2 span {
	color: #009d89;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	
	margin-bottom: 20px;
	display: block;
}
#information ul {
	display: grid;
	gap: 20px;
	margin-top: 20px;
}
#information #question a {
	color: #fff;
	font-size: 18px;
	text-align: left;
	
	background-image: linear-gradient(90deg, rgba(1, 157, 137, 1), rgba(68, 189, 169, 1));

	display: block;
	width: 100%;
	border-radius: 10px;
}
#information #question a:after {
	background-color: #fff;
}
#information #inquiry {
	/*display: none;*/
}
#information #inquiry a {
	color: #47beaa;
	font-size: 18px;
	text-align: left;

	display: block;
	width: 100%;
	background-color: #fff;
	border-radius: 10px;
	border: solid 2px #47beaa;
}
#information #inquiry a:after {
	background-color: #47beaa;
}


/* ----------------------------------------------
	フッター
------------------------------------------------- */
#footer {}
#footer .logo {
	font-size: 16px;
	text-align: center;
	margin: 30px;
}
#footer_row #copy {
	font-size: 12px;
	text-align: center;
}

#footer #page-top a {
	height: 50px;
	width: 50px;
	
	position: fixed;
	right: 10px;
	bottom: 60px;
	z-index: 10;
	
	border: solid 2px #47beaa;
	border-radius: 50%;
	background-color: #fff;
	
	display: grid;
	place-items: center;
}

#footer #page-top a img {
	transform: rotate(270deg);
	width: 25px;
}

#footer #footermenu {
	position: fixed;
	bottom: 0;
	width: 100%;
	border: solid 2px #fff;
	z-index: 10;
}
#footer #footermenu ul {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	/*grid-template-columns: repeat(2,1fr);*/
	gap: 2px;
	background-color: #fff;
}
#footer #footermenu ul li a {
	padding: 10px;
	background-color: #ea4f39;
	color: #fff;
	font-weight: bold;
	width: 100%;
	text-align: center;
}
#footer #footermenu ul li:nth-of-type(3) {
	/*display: none;*/
}


/*-
	PC版（821px以上）ここから
------------------------------------------------- */
@media screen and (min-width:768px), print{

	.pc_non { display:none !important; }
	
	a { transition: 0.15s ease-in-out; }
	a:hover {  opacity: 0.6;  }
	
	body {
		padding-top: 75px;
	}
	
	.stageBase {
		padding: 70px 0;
	}
	.stageWrap {
		width: 1100px;
		padding: 0 50px;
	}
	
	
	/* ----------------------------------------------
		締切
	------------------------------------------------- */
	.deadline {
		text-align: center;
		width: 40em !important;
		margin-left: auto;
		margin-right: auto;
	}
	.deadline .midashi {
		font-weight: bold;
		font-size: 20px;
		margin-bottom: 10px;
	}
	.deadline strong {
		color: var(--color-red);
	}
	.deadline .ets li::before {
		position: static;
	}
	
	
	/* ----------------------------------------------
		ヘッダー
	------------------------------------------------- */
	#header {
		height: 75px;
		display: grid;
		place-content: center;
	}
	#header #title .stageWrap {
		display: grid;
		grid-template-columns: auto auto;
		justify-content: space-between;
	}
	
	
	/* ----------------------------------------------
		メニュー
	------------------------------------------------- */
	#header #nav {
		
	}
	#header #nav #mainMenu {
		display: flex;
		flex-wrap: wrap;
		width: 480px;
		justify-content: end;
	}
	#header #nav #mainMenu li a {
		padding: 5px 10px;
		position: relative;
	}
	#header #nav #mainMenu li:nth-of-type(1) {
		order: 1;
		/*display: none;*/
	}
	#header #nav #mainMenu li:nth-of-type(2) {
		order: 2;
	}
	#header #nav #mainMenu li:nth-of-type(3) {
		order: 5;
		/*display: none;*/
	}
	#header #nav #mainMenu li:nth-of-type(4) {
		order: 3;
	}
	#header #nav #mainMenu li:nth-of-type(5) {
		order: 4;
	}
	#header #nav #mainMenu li:nth-of-type(1) a::after,
	#header #nav #mainMenu li:nth-of-type(2) a::after {
		content: '';
		position: absolute;
		top: calc(50% - 1em / 2);
		right: 0;
		width: 1px;
		height: 1em;
		background-color: #000;
	}
	#header #nav #mainMenu li:nth-of-type(3) a,
	#header #nav #mainMenu li:nth-of-type(5) a {
		color: #fff;
		text-align: center;
		font-weight: normal;

		background-color: #009d89;
		border-radius: 10px;
		width: 140px;
		padding: 2px;
	}
	#header #nav #mainMenu li:nth-of-type(5) {
		margin-right: 1em;
	}
	#header #nav #mainMenu li:nth-of-type(5) a {
		font-size: 0;
	}
	#header #nav #mainMenu li:nth-of-type(5) a::before {
		content: 'ショッピング';
		font-size: 16px;
		display: block;
	}
	#header #nav #mainMenu li:nth-of-type(5) a::after {
		content: none;
	}
	
	#header #nav #mainMenu .subMenu {
		display: none;
	}
	
	
	/* ----------------------------------------------
		お問い合わせ　Information
	------------------------------------------------- */
	#information {
	}
	#information h2 {
		font-size: 30px;
	}
	#information h2 span {
		font-size: 18px;
	}
	#information p {
		text-align: center;
	}
	#information ul {
		width: 400px;
		margin: 20px auto;
	}
	
	
	/* ----------------------------------------------
		フッター
	------------------------------------------------- */
	#footer {
		width: 100%;
		min-width: 1100px;
	}
	#footer #page-top a {
		right: 30px;
		bottom: 30px;
	}
	
	#footer #footermenu {
		display: none;
	}


}



/*-
	SP版（820px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 767px) {

	.sp_non { display:none !important; }
	

	.stageBase {
		padding: 50px 0;
	}

	body {
		padding: 50px 0;
		width: 100%;
		min-width: 320px
	}
	
	.stageWrap {
		width: calc(100% - 30px);
	}
	
	
	/* ----------------------------------------------
		ヘッダー
	------------------------------------------------- */
	#header {
		height: 50px;
	}
	#header #title .stageWrap {
		display: grid;
		grid-template-columns: 1fr 50px;
		width: 100%;
	}
	#header #title .stageWrap .logo {
		height: 50px;
	}
	#header #title .stageWrap .logo a {
		width: calc(100% - 10px);
		margin-left: 10px;
		font-size: 18px;
		font-weight: bold;
		display: grid;
		align-content: center;
	}
	
	
	/* ----------------------------------------------
		メニュー
	------------------------------------------------- */
	#header #nav {
		display: none;
		background-color: #fff;
		position: absolute;
		padding: 20px 10px;
		overflow: hidden;
		top: 50px;
		left: 0;
		width: 100%;
		height: calc(100vh - 50px);
		
		font-size: 18px;
	}
	#header #nav #mainMenu .navMain a {
		padding: 10px;
		display: block;
	}
	#header #nav #mainMenu .navMain > a {}
	#header #nav #mainMenu .navMain > a::before {
		content: "";
		background-color: #009d89;
		width: 1em;
		height: 1em;
		display: inline-block;
		margin-right: 0.5em;
		border-radius: 50%;
	}
	#header #nav #mainMenu .navMain:last-of-type {
		margin-top: 20px;
	}
	#header #nav #mainMenu .navMain:last-of-type > a {
		background-image: url("../images/bn_shopping.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		
		height: 100px;
		color: #fff;
		width: 100%;
		border-radius: 10px;
		
		display: grid;
		align-items: center;
		text-align: left;
		padding: 0 30px;
	}
	#header #nav #mainMenu .navMain:last-of-type > a::before {
		content: none;
	}
	#header #nav #mainMenu .navMain:last-of-type > a::after {
		content:'';
		left: 5em;
		top: calc(50% - 0.8em + 0.5em);
		background-color: #fff;
	}
	/*#header #nav #mainMenu .navMain:nth-of-type(1) {
		display: none;
	}
	#header #nav #mainMenu .navMain:nth-of-type(3) {
		display: none;
	}*/
	
	#header #nav #mainMenu .subMenu {
		margin-left: 2em;
	}
	#header #nav #mainMenu .subMenu a span {
		font-size: 14px;
		font-weight: bold;
		display: inline-block;
		margin-right: 0.5em;
	}
	#header #nav #mainMenu .subMenu .topics1 a span {
		color: #f1636b;
	}
	#header #nav #mainMenu .subMenu .topics2 a span {
		color: #0099cd;
	}
	#header #nav #mainMenu .subMenu .topics3 a span {
		color: #56bc28;
	}
	#header #nav #mainMenu .subMenu .topics4 a span {
		color: #f48f19;
	}
	
	#header #hamburger {
		display: block;
		position: absolute;
		cursor: pointer;
		width: 50px;
		height: 50px;
		top: calc(50% + 0px);
		transform: translateY(-50%);
		right: 0;
		z-index: 100000;
		background-color: #009d89;
	}
	#header #hamburger span {
		display: block;
		position: absolute;
		width: 55%;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		height: 2.5px;
		background-color: #fff;
		border-radius: 5px;
		transition: 0.6s ease-in-out;
	}
	#header #hamburger span:nth-of-type(1) {
		top: -16px;
	}
	#header #hamburger span:nth-of-type(2) {}
	#header #hamburger span:nth-of-type(3) {
		top: 16px;
	}
	#header #hamburger.open span{ width: 70%; }
	#header #hamburger.open span:nth-of-type(1){ top: 0; transform: rotate(135deg);}
	#header #hamburger.open span:nth-of-type(2){ width: 0; }
	#header #hamburger.open span:nth-of-type(3){ top: 0; transform: rotate(-135deg); }
	

	
	
}


