/*
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
*/
@charset "UTF-8";

/*----------------------------
	リセット
-----------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%; /* 1rem = 16px */
	font: inherit;
	vertical-align: baseline;
}

body #page {
	position: relative;
}

body #page:after {
	clear: both;
}

body #page #cont-base {
	position: relative;
}

body #page #cont-base *,
body #page #cont-base *:before,
body #page #cont-base *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

.__pc {
	display: block !important;
}

.__pci {
	display: inline-block !important;
}

.__sp {
	display: none !important;
}

.__spi {
	display: none !important;
}

/*----------------------------
	共通
-----------------------------*/
* {
	/* clamp for Safari */
	min-height: 0vw;
}

body #page #cont-base .display-area {
	margin: 0 auto;
	max-width: 1260px;
	width: 100%;
}

body {
	color: #101010;
	font-family: "Noto Sans JP", sans-serif;
}

body #page #cont-base img {
	vertical-align: top;
}

body #page #cont-base h2 {
	text-align: center;
}

body #page #cont-base h3 {
	font-size: 32px;
	font-weight: 700;
}

body #page #cont-base h3.large {
	/* 36-45px : 642-2560 */
	font-size: 45px;
	font-size: max(2.25rem, min(2.063rem + 0.94vw, 2.813rem));
	font-size: clamp(2.25rem, 2.063rem + 0.94vw, 2.813rem);
	font-weight: 900;
	text-align: center;
}

body #page #cont-base h4 {
	font-size: 24px;
	font-weight: 700;
}

body #page #cont-base h4.large {
	/* 29-36px : 642-2560 */
	font-size: 36px;
	font-size: max(1.813rem, min(1.666rem + 0.36vw, 2.25rem));
	font-size: clamp(1.813rem, 1.666rem + 0.36vw, 2.25rem);
	text-align: center;
}

body #page #cont-base p {
	color: #565656;
	/* 12-16px : 642-2560 */
	font-size: 16px;
	font-size: max(0.75rem, min(0.667rem + 0.42vw, 1rem));
	font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
	font-weight: 500;
	line-height: 1.8;
}

body #page #cont-base a.btn {
	position: relative;
	display: inline-block;
	transition: all 0.3s;

	padding: 0.5em 3em;
/*
	border: 2px solid #1a1a1a;
	background: #fff;
*/
	background: #ccc;
	color: #1a1a1a;
	font-size: 24px;
	font-weight: 900;

	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
}

body #page #cont-base a.btn:hover {
	color: #fff;
	background: #1a1a1a;
}


/*------------------------------------------------------------
	Header Parts
------------------------------------------------------------*/


/*------------------------------------------------------------
	Header Parts - Spn
------------------------------------------------------------*/
/*
	共通（グローバルメニュー：PC）
*/
body #page #cont-base header {
	padding: 1em 0;
	background: #fff;
}

body #page #cont-base header > .display-area {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

body #page #cont-base header a.logo_playwith {
	display: inline-block;
	width: 220px;
}

body #page #cont-base header a.logo_playwith img {
	width: 100%;
}

body #page #cont-base header .head-menu {
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 2em;
	height: 1.5em;
}

body #page #cont-base header .head-menu > div {
	height: 0.25em;
	width: 100%;
	background: #1a1a1a;
	transition: transform 200ms;
}

body #page #cont-base header.active .head-menu > div:nth-of-type(1) {
	transform: translateY(0.625em) rotate(45deg);
}

body #page #cont-base header.active .head-menu > div:nth-of-type(2) {
	opacity: 0;
}

body #page #cont-base header.active .head-menu > div:nth-of-type(3) {
	transform: translateY(-0.625em) rotate(-45deg);
}

body #page #cont-base header nav {
	position: absolute;
	top: calc(50% + 0.75em);
	right: calc(10% - 1.5em);
	display: none;
	padding: 2em 1.5em 1em;
	background: #fff;
	z-index: 10;
}

body #page #cont-base header nav h3 {
	padding-left: 0.5em;
	border-left: 4px solid #fbea00;
}

body #page #cont-base header nav ul {
	margin-top: 1em;
}

body #page #cont-base header nav ul li {
	padding: 0.75em 0;
	border-bottom: 1px solid #e1e1e1;
}

body #page #cont-base header nav ul li a {
	position: relative;
	display: block;
	padding-left: 1.5em;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: bold;
}

body #page #cont-base header nav ul li a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0.5em;
	transform: translateY(-50%) rotate(45deg);
	border-top: 1px solid #1a1a1a;
	border-right: 1px solid #1a1a1a;
	border-bottom: 1px solid transparent;
	border-left: 1px solid transparent;
	width: 6px;
	height: 6px;
}

body #page #cont-base header nav.active {
	opacity: 1;
	pointer-events: auto;
}



body #page #cont-base main {
}

body #page #cont-base main .display-area > section,
body #page #cont-base main .display-area > article {
	margin: 0 auto;
	max-width: 976px;
	width: 100%;
}

body #page #cont-base footer {
	background-color: #fff;
}

body #page #cont-base footer > section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2em 0;
}

body #page #cont-base footer > section a[data-link-type="facebook"] {
	color: #1a1a1a;
	font-size: 20px;
	width: 2em;
}

body #page #cont-base footer > section a[data-link-type="facebook"] img {
	width: 100%;
}

body #page #cont-base footer > section a[data-link-type="gotop"] {
	position: relative;
	display: inline-block;
	transition: all 0.3s;

	margin: 1.5em 0 12px;
	background: #fff;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: bold;

	background-image: radial-gradient(#000 15%, transparent 20%), radial-gradient(#000 15%, transparent 20%);
	background-position: 0 0, 3px 3px;
	background-size: 6px 6px;

	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
}

body #page #cont-base footer > section a[data-link-type="gotop"]::before {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	display: block;

	margin: 0 auto;
	width: 100%;
	height: 14px;

	transition: all .3s;
	border: 2px solid #1a1a1a;
	border-top: 1px solid #1a1a1a;
	background-color: #fff;
	background-image: radial-gradient(#1a1a1a 15%,transparent 20%),radial-gradient(#1a1a1a 15%,transparent 20%);
	background-position: 0 0,3px 3px;
	background-size: 6px 6px;
	backface-visibility: hidden;
}

body #page #cont-base footer > section a[data-link-type="gotop"]:hover {
	transform: translate(0,3px);
}

body #page #cont-base footer > section a[data-link-type="gotop"]:hover::before {
	bottom: -5px;
}

body #page #cont-base footer > section a[data-link-type="gotop"]:active {
	transform: translate(0,7px);
}

body #page #cont-base footer > section a[data-link-type="gotop"]:active::before {
	bottom: -1px;
}

body #page #cont-base footer > section a[data-link-type="gotop"] span {
	position: relative;
	display: block;
	padding: 0.5rem 3rem;
	border: 2px solid #1a1a1a;
	background: #fff;
	color: #1a1a1a;
}


/* PC（1280pxより上）
==============================================*/
/*----------------------------
	トップ
-----------------------------*/
body #page #cont-base main section.introduction_top {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

body #page #cont-base main section.introduction_top picture {
	display: flex;
	justify-content: center;
	align-items: center;
/*
	background: url("../img/bg_keyvisual_ex.jpg") no-repeat center center / cover;
*/
	width: 100%;
}

body #page #cont-base main section.introduction_top img {
	width: 100%;
}

body #page #cont-base main section.introduction_top > h3 {
	margin-top: 2em;
}

body #page #cont-base main section.introduction_top > p {
	margin-top: 2em;
	text-align: center;
}

body #page #cont-base main section.introduction_top > a.btn {
	margin-top: 2em;
}

body #page #cont-base main section#listArticle_top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 2em;
	margin-bottom: 3em;
	padding: 0 3em;
	width: 100%;
}

body #page #cont-base main section#listArticle_top > article.article_list {
	display: flex;
	flex-direction: column;
	margin-top: 4em;
	width: 49%;
}

body #page #cont-base main section#listArticle_top > article.article_list > a {
	position: relative;
	display: block;
}

body #page #cont-base main section#listArticle_top > article.article_list > a::after {
	content: attr(data-article-type)"";
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	background: #ffeb00;
	padding: 0.5em 1em;
	color: #565656;
	/* 12-16px : 642-2560 */
	font-size: 16px;
	font-size: max(0.75rem, min(0.667rem + 0.42vw, 1rem));
	font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
	font-weight: 500;
	line-height: 1.8;
}

body #page #cont-base main section#listArticle_top > article.article_list > a.article_new::before {
	content: "NEW";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	background: #cc3300;
	padding: 0.25em 0.5em;
	color: #fff;
	/* 12-16px : 642-2560 */
	font-size: 16px;
	font-size: max(0.75rem, min(0.667rem + 0.42vw, 1rem));
	font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
	font-weight: 500;
	line-height: 1.8;
}

body #page #cont-base main section#listArticle_top > article.article_list > a img {
	width: 100%;
}

body #page #cont-base main section#listArticle_top > article.article_list > h4 {
	margin-top: 1em;
	font-size: 1.5em;
	font-weight: bold;
	text-align: justify;
}

body #page #cont-base main section#listArticle_top > article.article_list > p {
	display: flex;
	align-items: stretch;
	margin-top: 1em;
	font-size: 1em;
	line-height: 1.8;
	text-align: justify;
}

body #page #cont-base main section.upperFooter_top {
	margin-top: 1.5em;
	padding-top: 3em;
	background: #fff;
	text-align: center;
}

body #page #cont-base main section.upperFooter_top a.btn {
	font-size: 20px;
	font-weight: bold;
}


/*----------------------------
	About
-----------------------------*/
body #page #cont-base main section.introduction_about {
}

body #page #cont-base main section.introduction_about > img {
	width: 100%;
}

body #page #cont-base main section.introduction_about > h3 {
	margin-top: 2em;
	font-size: 45px;
	font-weight: 900;
	text-align: center;
}

body #page #cont-base main section.introduction_about > article {
	margin-top: 1em;
}

body #page #cont-base main section.introduction_about > article h4 {
}

body #page #cont-base main section.introduction_about > article p {
	margin: 2em 3em 0;
	color: #565656;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	text-align: justify;
}

body #page #cont-base main section.main_about {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3em;
}

body #page #cont-base main section.main_about > article {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2em;
	width: 50%;
}

body #page #cont-base main section.main_about > article h4 {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
}

body #page #cont-base main section.main_about > article img {
	display: block;
	margin-top: 2em;
	width: 100%;
}

body #page #cont-base main section.main_about > article p {
	margin-top: 2em;
	padding: 0 3em;
	color: #565656;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	text-align: justify;
}

body #page #cont-base main section.main_about > article [data-link-type="goex"] {
	position: relative;
	display: inline-block;
	transition: all 0.3s;

	margin: 1.5em 0 12px;
	background: #fff;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: bold;

	background-image: radial-gradient(#000 15%, transparent 20%), radial-gradient(#000 15%, transparent 20%);
	background-position: 0 0, 3px 3px;
	background-size: 6px 6px;

	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
}

body #page #cont-base main section.main_about > article [data-link-type="goex"]::before {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	display: block;

	margin: 0 auto;
	width: 100%;
	height: 14px;

	transition: all .3s;
	border: 2px solid #1a1a1a;
	border-top: 1px solid #1a1a1a;
	background-color: #fff;
	background-image: radial-gradient(#1a1a1a 15%,transparent 20%),radial-gradient(#1a1a1a 15%,transparent 20%);
	background-position: 0 0,3px 3px;
	background-size: 6px 6px;
	backface-visibility: hidden;
}

body #page #cont-base main section.main_about > article [data-link-type="goex"]:hover {
	transform: translate(0,3px);
}

body #page #cont-base main section.main_about > article [data-link-type="goex"]:hover::before {
	bottom: -5px;
}

body #page #cont-base main section.main_about > article [data-link-type="goex"]:active {
	transform: translate(0,7px);
}

body #page #cont-base main section.main_about > article [data-link-type="goex"]:active::before {
	bottom: -1px;
}

body #page #cont-base main section.main_about > article [data-link-type="goex"] span {
	position: relative;
	display: block;
	padding: 0.5rem 3rem;
	border: 2px solid #1a1a1a;
	background: #fff;
	color: #1a1a1a;
}


/*----------------------------
	Article一覧
-----------------------------*/
body #page #cont-base main section.introduction_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3em;
	padding: 0 3em;
	width: 100%;
}

body #page #cont-base main section.main_list {
	margin-top: 2em;
}


/*----------------------------
	Article記事
-----------------------------*/
body #page #cont-base main article.article_main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 3em;
	margin-bottom: 3em;
}

body #page #cont-base main article.article_main > section.introduction_article {
	margin-top: 1em;
	width: 60%;
}

body #page #cont-base main article.article_main > section.introduction_article h3 {
	position: relative;
	width: 100%;
}

body #page #cont-base main article.article_main > section.introduction_article h3.json_loaded::after {
	content: attr(data-article-type)"";
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	background: #ffeb00;
	padding: 0.5em 1em;
	color: #565656;
	/* 12-16px : 642-2560 */
	font-size: 16px;
	font-size: max(0.75rem, min(0.667rem + 0.42vw, 1rem));
	font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
	font-weight: 500;
	line-height: 1.8;
}

body #page #cont-base main article.article_main > section.introduction_article h3.json_loaded.article_new::before {
	content: "NEW";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	background: #cc3300;
	padding: 0.25em 0.5em;
	color: #fff;
	/* 12-16px : 642-2560 */
	font-size: 16px;
	font-size: max(0.75rem, min(0.667rem + 0.42vw, 1rem));
	font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
	font-weight: 500;
	line-height: 1.8;
}

body #page #cont-base main article.article_main > section.introduction_article h3 img {
	width: 100%;
}

body #page #cont-base main article.article_main > section.introduction_article h4 {
	margin-top: 1em;
	font-size: 1.5em;
	font-weight: bold;
	text-align: justify;
}

body #page #cont-base main article.article_main > section.introduction_article h5 {
	margin-top: 0.75em;
	font-size: 1.5em;
	font-weight: normal;
	text-decoration: underline;
	text-align: justify;
}

body #page #cont-base main article.article_main > section.introduction_article p {
	margin-top: 1em;
	font-size: 16px;
	line-height: 1.8;
	text-align: justify;
}

body #page #cont-base main article.article_main > section.article_body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 4em;
	width: 60%;
	font-size: 16px;
	line-height: 1.8;
}

body #page #cont-base main article.article_main > section.article_body article {
	margin-top: 3em;
}

body #page #cont-base main article.article_main > section.article_body article:first-child {
	margin-top: 0;
}

body #page #cont-base main article.article_main > section.article_body article h3 {
	font-size: 1.5em;
	font-weight: bold;
	text-align: justify;
}

body #page #cont-base main article.article_main > section.article_body article figure {
	margin-top: 1.5em;
}

body #page #cont-base main article.article_main > section.article_body article figure figcaption {
	margin-top: 0.5em;
	font-size: 14px;
	text-align: center;
}

body #page #cont-base main article.article_main > section.article_body article img {
	width: 100%;
}

body #page #cont-base main article.article_main > section.article_body article h3 ~ img {
	margin-top: 1.5em;
}

body #page #cont-base main article.article_main > section.article_body article p {
	margin-top: 2em;
	font-size: 16px;
	line-height: 3;
	text-align: justify;
}

body #page #cont-base main article.article_main > section.article_body article p.question {
	margin-top: 4em;
	font-size: 16px;
	font-weight: bold;
}

body #page #cont-base main article.article_main > section.article_body article p.comment {
	margin-top: 2em;
	font-size: 16px;
	font-weight: bold;
}

body #page #cont-base main article.article_main > section.article_body article p span.talked {
	font-weight: bold;
}

body #page #cont-base main article.article_main > section.article_body article p strong {
	font-weight: bold;
}

body #page #cont-base main article.article_main > section.article_body a.btn {
	margin-top: 4em;
	font-size: 14px;
	font-weight: 700;
}

body #page #cont-base main section#article_related {
	display: none;
}

body #page #cont-base main section#article_related h4 {
}

body #page #cont-base main section#article_related section#related_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding-bottom: 3em;
}

body #page #cont-base main section#article_related section#related_list::after {
	content: "";
	display: block;
	width: 30%;
}

body #page #cont-base main section#article_related section#related_list article {
	margin-top: 3em;
	width: 30%;
}

body #page #cont-base main section#article_related section#related_list article > a {
	position: relative;
	display: block;
}

body #page #cont-base main section#article_related section#related_list article > a::after {
	content: attr(data-article-type)"";
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	background: #ffeb00;
	padding: 0.5em 1em;
	color: #565656;
	/* 11-14px : 642-2560 */
	font-size: 14px;
	font-size: max(0.688rem, min(0.625rem + 0.16vw, 0.875rem));
	font-size: clamp(0.688rem, 0.625rem + 0.16vw, 0.875rem);
	font-weight: 500;
	line-height: 1.8;
}

body #page #cont-base main section#article_related section#related_list article > a.article_new::before {
	content: "NEW";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	background: #cc3300;
	padding: 0.25em 0.5em;
	color: #fff;
	/* 11-14px : 642-2560 */
	font-size: 14px;
	font-size: max(0.688rem, min(0.625rem + 0.16vw, 0.875rem));
	font-size: clamp(0.688rem, 0.625rem + 0.16vw, 0.875rem);
	font-weight: 500;
	line-height: 1.8;
}

body #page #cont-base main section#article_related section#related_list article h5 {
	margin-top: 1em;
	font-size: 1.25em;
	font-weight: bold;
}

body #page #cont-base main section#article_related section#related_list article img {
	width: 100%;
}




/* PC（1280px以下）
==============================================*/
@media (max-width: 1280px) {
	body #page #cont-base main picture {
		background: url("../img/bg_keyvisual.jpg") no-repeat center center / cover;
		height: calc(100vw / 1280 * 690);
	}
}



/* SP（641px以下）
==============================================*/
@media (max-width: 641px) {

	.__pc {
		display: none !important;
	}

	.__pci {
		display: none !important;
	}

	.__sp {
		display: block !important;
	}

	.__spi {
		display: inline-block !important;
	}

	body #page #cont-base h2 {
		text-align: left;
	}

	body #page #cont-base h3 {
		/* 20-40px : 320-641 */
		font-size: 40px;
		font-size: max(1.25rem, min(6.25vw, 2.5rem));
		font-size: clamp(1.25rem, 6.25vw, 2.5rem);
	}

	body #page #cont-base h3.large {
		/* 27-54px : 320-641 */
		font-size: 54px;
		font-size: max(1.688rem, min(8.44vw, 3.375rem));
		font-size: clamp(1.688rem, 8.44vw, 3.375rem);
		line-height: 1.25;
	}

	body #page #cont-base h4 {
		/* 16-26px : 320-641 */
		font-size: 26px;
		font-size: max(1rem, min(0.375rem + 3.13vw, 1.625rem));
		font-size: clamp(1rem, 0.375rem + 3.13vw, 1.625rem);
	}

	body #page #cont-base h4.large {
		/* 18-36px : 320-641 */
		font-size: 36px;
		font-size: max(1.125rem, min(5.63vw, 2.25rem));
		font-size: clamp(1.125rem, 5.63vw, 2.25rem);
		line-height: 1.3;
	}

	body #page #cont-base p {
		/* 12-24px : 320-641 */
		font-size: 24px;
		font-size: max(0.75rem, min(3.75vw, 1.5rem));
		font-size: clamp(0.75rem, 3.75vw, 1.5rem);
		line-height: 1.6;
	}








	/*
		共通（グローバルメニュー：PC）
	*/
	body #page #cont-base header {
		padding: 0;
	}

	body #page #cont-base header > .display-area {
	}

	body #page #cont-base header a.logo_playwith {
		width: 30%;
	}

	body #page #cont-base header a.logo_playwith img {
	}

	body #page #cont-base header .head-menu {
		position: absolute;
		top: 50%;
		right: 5%;
		transform: translateY(-50%);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 1.5em;
		height: 1em;
	}

	body #page #cont-base header .head-menu > div {
		height: 0.2em;
		width: 100%;
		background: #1a1a1a;
		transition: transform 200ms;
	}

	body #page #cont-base header.active .head-menu > div:nth-of-type(1) {
		transform: translateY(0.4em) rotate(45deg);
	}

	body #page #cont-base header.active .head-menu > div:nth-of-type(2) {
		opacity: 0;
	}

	body #page #cont-base header.active .head-menu > div:nth-of-type(3) {
		transform: translateY(-0.4em) rotate(-45deg);
	}

	body #page #cont-base header nav {
		position: absolute;
		top: 100%;
		right: unset;
		display: none;
		padding: 1em 1.5em;
		background: #fff;
	    box-shadow: 1px 10px 20px -4px #dddddd;
		width: 100%;
		z-index: 10;
	}

	body #page #cont-base header nav h3 {
		padding-left: 0.5em;
		border-left: 4px solid #fbea00;
	}

	body #page #cont-base header nav ul {
		margin-top: 1em;
	}

	body #page #cont-base header nav ul li {
		padding: 0.75em 0;
		border-bottom: 1px solid #e1e1e1;
	}

	body #page #cont-base header nav ul li a {
		position: relative;
		display: block;
		padding-left: 1.5em;
		color: #1a1a1a;
		/* 16-26px : 320-641 */
		font-size: 26px;
		font-size: max(1rem, min(0.375rem + 3.13vw, 1.625rem));
		font-size: clamp(1rem, 0.375rem + 3.13vw, 1.625rem);
		font-weight: bold;
	}

	body #page #cont-base header nav ul li a::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0.5em;
		transform: translateY(-50%) rotate(45deg);
		border-top: 1px solid #1a1a1a;
		border-right: 1px solid #1a1a1a;
		border-bottom: 1px solid transparent;
		border-left: 1px solid transparent;
		width: calc(1em * (6 / 16));
		height: calc(1em * (6 / 16));
	}



	body #page #cont-base main {
	}

	body #page #cont-base footer {
		background-color: #fff;
	}

	body #page #cont-base footer > section {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 2em 0;
	}

	body #page #cont-base footer > section a[data-link-type="facebook"] {
	}

	body #page #cont-base footer > section a[data-link-type="facebook"] img {
	}

	body #page #cont-base footer > section a[data-link-type="gotop"] {
		/* 12-24px : 320-641 */
		font-size: 24px;
		font-size: max(0.75rem, min(3.75vw, 1.5rem));
		font-size: clamp(0.75rem, 3.75vw, 1.5rem);
		line-height: 1.6;
	}


	body #page #cont-base main picture {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	body #page #cont-base main picture img {
		display: block;
	}

	body #page #cont-base main section.introduction_top {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
/*
		padding: 0 1em;
*/
	}

	body #page #cont-base main section.introduction_top > h3 {
		margin-top: 1em;
		padding: 0 0.5em;
		/* 27-54px : 320-641 */
		font-size: 54px;
		font-size: max(1.688rem, min(8.44vw, 3.375rem));
		font-size: clamp(1.688rem, 8.44vw, 3.375rem);
		letter-spacing: -2px;
	}

	body #page #cont-base main section.introduction_top > p {
		padding: 0 1em;
	}

	body #page #cont-base main section.introduction_top > a {
		/* 18-24px : 320-641 */
		font-size: 18px;
		font-size: max(1.125rem, min(0.751rem + 1.87vw, 1.5rem));
		font-size: clamp(1.125rem, 0.751rem + 1.87vw, 1.5rem);
	}

	body #page #cont-base main section#listArticle_top {
		padding: 0 1em;
	}

	body #page #cont-base main section#listArticle_top > article.article_list {
		margin-top: 3em;
		width: 100%;
	}

	body #page #cont-base main section#listArticle_top > article.article_list:first-child {
		margin-top: 0;
	}

	body #page #cont-base main section#listArticle_top > article.article_list > a {
		display: block;
	}

	body #page #cont-base main section#listArticle_top > article.article_list > a img {
		width: 100%;
	}

	body #page #cont-base main section#listArticle_top > article.article_list > h4 {
		/* 16-26px : 320-641 */
		font-size: 26px;
		font-size: max(1rem, min(0.375rem + 3.13vw, 1.625rem));
		font-size: clamp(1rem, 0.375rem + 3.13vw, 1.625rem);
		text-align: justify;
	}

	body #page #cont-base main section#listArticle_top > article.article_list > p {
	}

	body #page #cont-base main section.upperFooter_top {
	}

	body #page #cont-base main section.upperFooter_top a.btn {
		/* 16-20px : 320-641 */
		font-size: 18px;
		font-size: max(1rem, min(0.751rem + 1.25vw, 1.25rem));
		font-size: clamp(1rem, 0.751rem + 1.25vw, 1.25rem);
	}


	/*----------------------------
		About
	-----------------------------*/
	body #page #cont-base main section.introduction_about {
		margin-top: 2em;
	}

	body #page #cont-base main section.introduction_about > h3 {
		/* 32-45px : 320-641 */
		font-size: 32px;
		font-size: max(2rem, min(1.19rem + 4.05vw, 2.813rem));
		font-size: clamp(2rem, 1.19rem + 4.05vw, 2.813rem);
	}

	body #page #cont-base main section.introduction_about > article {
		margin-top: 1em;
	}

	body #page #cont-base main section.introduction_about > article h4 {
		margin: 0 1em;
		/* 27-36px : 320-641 */
		font-size: 24px;
		font-size: max(1.688rem, min(1.127rem + 2.8vw, 2.25rem));
		font-size: clamp(1.688rem, 1.127rem + 2.8vw, 2.25rem);
	}

	body #page #cont-base main section.introduction_about > article h4.large {
		/* 18-36px : 320-641 */
		font-size: 36px;
		font-size: max(1.125rem, min(5.63vw, 2.25rem));
		font-size: clamp(1.125rem, 5.63vw, 2.25rem);
		line-height: 1.3;
	}

	body #page #cont-base main section.introduction_about > article p {
		margin: 2em 1.5em 0;
		text-align: justify;
	}

	body #page #cont-base main section.main_about {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 3em 0;
	}

	body #page #cont-base main section.main_about > article {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		margin-bottom: unset;
		width: 100%;
	}

	body #page #cont-base main section.main_about > article h4 {
		/* 18-36px : 320-641 */
		font-size: 36px;
		font-size: max(1.125rem, min(5.63vw, 2.25rem));
		font-size: clamp(1.125rem, 5.63vw, 2.25rem);
		line-height: 1.3;
	}

	body #page #cont-base main section.main_about > article img {
		display: block;
		margin-top: 2em;
		width: 100%;
	}

	body #page #cont-base main section.main_about > article p {
		text-align: justify;
	}

	body #page #cont-base main section.main_about > article a[data-link-type="goex"] {
		/* 12-24px : 320-641 */
		font-size: 24px;
		font-size: max(0.75rem, min(3.75vw, 1.5rem));
		font-size: clamp(0.75rem, 3.75vw, 1.5rem);
		line-height: 1.6;
	}


	/*----------------------------
		Article一覧
	-----------------------------*/
	body #page #cont-base main section.introduction_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 3em;
		padding: 0 3em;
		width: 100%;
	}

	body #page #cont-base main section.main_list {
		margin-top: 2em;
	}


	/*----------------------------
		Article記事
	-----------------------------*/
	body #page #cont-base main article.article_main {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		margin: 2em 0 3em;
		padding: 0 2em;
	}

	body #page #cont-base main article.article_main > h3 {
		width: 100%;
	}

	body #page #cont-base main article.article_main > h3 img {
		width: 100%;
	}

	body #page #cont-base main article.article_main > section.introduction_article {
		margin-top: 1em;
		width: 100%;
	}

	body #page #cont-base main article.article_main > section.introduction_article h4 {
		/* 16-26px : 320-641 */
		font-size: 26px;
		font-size: max(1rem, min(0.375rem + 3.13vw, 1.625rem));
		font-size: clamp(1rem, 0.375rem + 3.13vw, 1.625rem);
	}

	body #page #cont-base main article.article_main > section.introduction_article h5 {
		/* 16-26px : 320-641 */
		font-size: 26px;
		font-size: max(1rem, min(0.375rem + 3.13vw, 1.625rem));
		font-size: clamp(1rem, 0.375rem + 3.13vw, 1.625rem);
	}

	body #page #cont-base main article.article_main > section.introduction_article p {
	}

	body #page #cont-base main article.article_main > section.article_body {
		width: 100%;
		/* 12-24px : 320-641 */
		font-size: 24px;
		font-size: max(0.75rem, min(3.75vw, 1.5rem));
		font-size: clamp(0.75rem, 3.75vw, 1.5rem);
	}

	body #page #cont-base main article.article_main > section.article_body article {
	}

	body #page #cont-base main article.article_main > section.article_body article h3 {
		/* 16-26px : 320-641 */
		font-size: 26px;
		font-size: max(1rem, min(0.375rem + 3.13vw, 1.625rem));
		font-size: clamp(1rem, 0.375rem + 3.13vw, 1.625rem);
	}

	body #page #cont-base main article.article_main > section.article_body article figure {
		margin-top: 1.5em;
	}

	body #page #cont-base main article.article_main > section.article_body article figure figcaption {
		margin-top: 0.5em;
		/* 12-14px : 320-641 */
		font-size: 14px;
		font-size: max(0.75rem, min(0.625rem + 0.62vw, 0.875rem));
		font-size: clamp(0.75rem, 0.625rem + 0.62vw, 0.875rem);
		text-align: center;
	}

	body #page #cont-base main article.article_main > section.article_body article img {
	}

	body #page #cont-base main article.article_main > section.article_body article h3 ~ img {
		margin-top: 1.5em;
	}

	body #page #cont-base main article.article_main > section.article_body article p {
		/* 13-16px : 320-641 */
		font-size: 16px;
		font-size: max(0.813rem, min(0.626rem + 0.93vw, 1rem));
		font-size: clamp(0.813rem, 0.626rem + 0.93vw, 1rem);
	}

	body #page #cont-base main article.article_main > section.article_body article p.question {
		margin-top: 4em;
		/* 13-16px : 320-641 */
		font-size: 16px;
		font-size: max(0.813rem, min(0.626rem + 0.93vw, 1rem));
		font-size: clamp(0.813rem, 0.626rem + 0.93vw, 1rem);
		font-weight: bold;
		line-height: 3;
	}

	body #page #cont-base main article.article_main > section.article_body article p.comment {
		margin-top: 2em;
		/* 13-16px : 320-641 */
		font-size: 16px;
		font-size: max(0.813rem, min(0.626rem + 0.93vw, 1rem));
		font-size: clamp(0.813rem, 0.626rem + 0.93vw, 1rem);
		font-weight: bold;
	}

	body #page #cont-base main article.article_main > section.article_body article p span.talked {
		font-weight: bold;
	}

	body #page #cont-base main article.article_main > section.article_body article p strong {
		font-weight: bold;
	}

	body #page #cont-base main article.article_main > section.article_body a.btn {
		/* 11-14px : 320-641 */
		font-size: 14px;
		font-size: max(0.688rem, min(0.501rem + 0.93vw, 0.875rem));
		font-size: clamp(0.688rem, 0.501rem + 0.93vw, 0.875rem);
	}

	body #page #cont-base main section#article_related {
		padding: 0 1em;
	}

	body #page #cont-base main section#article_related h4 {
	}

	body #page #cont-base main section#article_related section#related_list {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		margin-top: 3em;
		padding-bottom: 3em;
	}

	body #page #cont-base main section#article_related section#related_list article {
		margin-top: 2em;
		width: 100%;
	}

	body #page #cont-base main section#article_related section#related_list article:first-child {
		margin-top: 0;
	}

	body #page #cont-base main section#article_related section#related_list article h5 {
		/* 16-20px : 320-641 */
		font-size: 20px;
		font-size: max(1rem, min(0.751rem + 1.25vw, 1.25rem));
		font-size: clamp(1rem, 0.751rem + 1.25vw, 1.25rem);
	}

	body #page #cont-base main section#article_related section#related_list article img {
		width: 100%;
	}
}
