/*
Author: MAIDOSOFT
Author URI: http://www.maido.co.jp/
*/



/*
======================================
 1. Reset Style
======================================
 * http://meyerweb.com/eric/tools/css/reset/ 
 * v2.0b2 | 201101
 * NOTE: THIS IS A BETA VERSION (see previous line)
 * USE WITH CAUTION AND TEST WITH ABANDON
*/
*, *:before, *:after {
	-webkit-appearance: none
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
}
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%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.clear { clear: both; }
.button::-moz-focus-inner { border: none; }
a { outline: 0; }
.mincho {font-family: "source-han-serif-japanese",serif;}




/*
======================================
Base Style
======================================
*/
html {
	font-size: 62.5%;
	height: 100%;
	scroll-padding-top: 80px;
}
body {
	background: #fff;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-feature-settings : "palt" 1;
	font-weight: 500;
	color: #000;
	height: 100%;
	line-height: 2.0em;
}
/*
font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
*/
/*@media all and (-ms-high-contrast:none) {
	body {
		font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	}
}*/
a {
	color: #0056d8;
	text-decoration: none;
}
a:hover {
	color: #0056d8;
	text-decoration: underline;
}
.clear{
	clear: both;
	line-height: 0;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {min-height: 1px;}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
::-moz-selection {
	background: #8e95db;
	color: #fff;
}
::selection {
	background: #8e95db;
	color: #fff;
}
.skip {
	display: none;
}
.HiddenContent {
	position: absolute;
	top: -10000px;
	left: -10000px;
}



:root {
	--main: #e03563;
	--sub: #f4dfe5;
	--sub2: #ffedf2;
	--sub3: #0291ff;

	--cmn: #e03563;
}
.wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1em;
}



#nav-toggle {
	display: none;
}
#toggle {
	z-index: 7000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 53px;
	background: var(--cmn);
	color: #333;
	transform: translate(-100%);
	transition: all .25s ease-in-out;
	opacity: 0;
}
header.open #toggle {
	transform: translate(0%);
	opacity: 1;
	overflow-y: auto;
}
#toggle .logo {
	position: absolute;
	top: .5em;
	left: 1em;
}
#toggle ul {
	border-top: 1px solid #c31645;
	border-bottom: 1px solid #dd4870;
}
#toggle ul li {
	background: url(../gifs/icon_arrow_wh.svg) no-repeat;
	background-position: top 28px right 1em;
	background-size: 6px auto;
}
#toggle ul li.has-child {
	background: url(../gifs/icon_plus.svg) no-repeat;
	background-position: top 28px right 0.95em;
	background-size: 10px auto;
}
#toggle ul li.has-child.on {
	background: url(../gifs/icon_minus.svg) no-repeat;
	background-position: top 28px right 0.95em;
	background-size: 10px auto;
}
#toggle ul li a {
	display: block;
	padding: 1em 2em;
	border-top: 1px solid #dd4870;
	border-bottom: 1px solid #c31645;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: all .25s ease-in-out;
}
#toggle ul li a:hover {
	background: rgba(0,0,0,.15);
}
#toggle ul li ul {
	display: none;
	border: none;
}
#toggle ul li ul li {
	background: #ff4879 url(../gifs/icon_arrow_wh.svg) no-repeat;
	background-position: top 28px right 1em;
	background-size: 6px auto;
}
#toggle ul li ul li a {
	padding-left: 3em;
	border-top: 1px solid #ff3e72;
	border-bottom: 1px solid #d53e67;
}
#toggle ul li ul li a:hover {
	background: rgba(0,0,0,.1);
}
#toggle ol {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 1em;
	margin-top: 2em;
}
#toggle ol li a img {
	width: 50px;
	height: auto;
	vertical-align: top;
}
@media screen and (max-width:640px) {
	#nav-toggle {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: 53px;
		height: 53px;
		padding: 6px;
		cursor: pointer;
		z-index: 8000;
		background: transparent;
		font-size: 64.28%;
		text-align: center;
		background: var(--cmn);
		transition: all .25s .25s;
	}
	#nav-toggle.open {
		position: fixed;
		top: 0;
		right: 0;
		background: #fff;
	}
	#nav-toggle div {
		position: relative;
	}
	#nav-toggle span {
		display: block;
		position: absolute;
		height: 1px;
		width: 80%;
		background: #fff;
		left: 10%;
		transition: .35s ease-in-out;
	}
	#nav-toggle span:nth-child(1) {top: 8px;}
	#nav-toggle span:nth-child(2) {top: 20px;}
	#nav-toggle span:nth-child(3) {top: 32px;}
	#nav-toggle span:nth-of-type(1) {
		animation: btn-bar01 .75s forwards;
	}
	@keyframes btn-bar01 {
		0% {
			transform: translateY(20px) rotate(45deg);
		}
		50% {
			transform: translateY(20px) rotate(0);
		}
		100% {
			transform: translateY(0) rotate(0);
		}
	}
	#nav-toggle span:nth-of-type(2) {
		transition: all .25s .25s;
		opacity: 1;
	}
	#nav-toggle span:nth-of-type(3) {
		animation: btn-bar03 .75s forwards;
	}
	@keyframes btn-bar03 {
		0% {
			transform: translateY(-20px) rotate(-45deg);
		}
		50% {
			transform: translateY(-20px) rotate(0);
		}
		100% {
			transform: translateY(0) rotate(0);
		}
	}
	#nav-toggle.open span:nth-of-type(1) {
		animation: active-btn-bar01 .75s forwards;
		background: var(--cmn);
	}
	@keyframes active-btn-bar01 {
		0% {
			transform: translateY(0) rotate(0);
		}
		50% {
			transform: translateY(12px) rotate(0);
		}
		100% {
			transform: translateY(12px) rotate(45deg);
			background: var(--cmn);
		}
	}
	#nav-toggle.open span:nth-of-type(2) {
		opacity: 0;
	}
	#nav-toggle.open span:nth-of-type(3) {
		animation: active-btn-bar03 .75s forwards;
	}
	@keyframes active-btn-bar03 {
		0% {
			transform: translateY(0) rotate(0);
		}
		50% {
			transform: translateY(-12px) rotate(0);
		}
		100% {
			transform: translateY(-12px) rotate(-45deg);
			background: var(--cmn);
		}
	}
}





#globalheader {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 2em 1em;
	background: #fff;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	transition: all .25s ease-in-out;
}
#globalheader .logo {
	margin-right: auto;
}
#globalheader .logo img {
	width: 270px;
	height: auto;
	vertical-align: top;
	transition: all .25s ease-in-out;
}
#globalheader nav {
	display: flex;
	gap: 0 2em;
}
#globalheader nav ul {
	display: flex;
	align-items: center;
	gap: 0 2em;
}
#globalheader nav ul li {
	position: relative;
	gap: 0 2em;
}
#globalheader nav ul li a {
	display: block;
	padding: .5em 0;
	font-size: 1.8rem;
	font-weight: 700;
	color: #000;
	line-height: 1em;
	text-decoration: none;
	transition: all .25s ease-in-out;
}
#globalheader nav ul li a:hover {
	color: var(--main);
}
#globalheader nav ul .sub {
	position: absolute;
	left: 0;
	/*top: 50px;*/
	top: 40px;
	display: block;
	width: 240px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 10px 5px rgba(224, 53, 99, 0.15);
	visibility: hidden;
	opacity: 0;
	transition: all .25s ease-in-out;
	line-height: 1em;
	z-index: 5;
}
/*#globalheader nav ul .sub::after {
	position: absolute;
	top: -8px;
	left: 2em;
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: #fff;
	box-shadow: 0px 0px 10px 5px rgba(224, 53, 99, 0.1);
	transform: rotate(45deg);
	z-index: -1;
}*/
#globalheader nav ul li.has-child:hover > .sub {
	visibility: visible;
	opacity: 1;
}
#globalheader nav ul ul {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1em;
	background: #fff;
	border-radius: 5px;
}
#globalheader nav ul ul li {
	position: relative;
	padding-left: 20px;
}
#globalheader nav ul ul li::before {
	position: absolute;
	top: 50%;
	left: 5px;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 5px solid var(--main);
	border-right: 0;
	transform: translateY(-2px);
}
#globalheader nav ul ul li a {
	display: flex;
	align-items: center;
	padding: .5em 0;
}
#globalheader nav ol {
	display: flex;
	gap: 0 1em;
}
#globalheader nav ol li {
	width: 36px;
	height: 36px;
}
#globalheader nav ol li a {
	transition: all .25s ease-in-out;
}
#globalheader nav ol li a img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#globalheader nav ol li a:hover {
	opacity: .5;
}
@media screen and (max-width:1200px) {
	#globalheader .logo img {
		width: 240px;
	}
	#globalheader nav ul {
		gap: 0 1.5em;
	}
	#globalheader nav ul li.home {
		display: none;
	}
}
@media screen and (max-width:1024px) {
	#globalheader {
		flex-direction: column;
		padding: 1em;
	}
	#globalheader .logo {
		margin: 0 auto 1.5em;
	}
	#globalheader nav ul li a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width:768px) {
	#globalheader nav ul {
		gap: 0 1em;
	}
	#globalheader nav ol {
		gap: 0 .5em;
	}
	#globalheader nav ol li {
		width: 30px;
		height: 30px;
	}
}
@media screen and (max-width:640px) {
	#globalheader {
		padding: .5em 1em;
	}
	#globalheader .logo {
		margin: 0 auto 0 0;
	}
	#globalheader .logo img {
		width: 180px;
	}
	#globalheader nav {
		display: none;
	}
}







#globalfooter {
	padding: 0;
	background: url(../gifs/bg_footer.gif);
	background-size: 100% auto;
	background-position: left 50% top 0;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
	color: #fff;
}
#globalfooter .col2 {
	display: flex;
	padding: 3em 1em;
}
#globalfooter .about,
#globalfooter .navigation {
	width: 50%;
}
#globalfooter .about .logo {
	width: 330px;
	margin-bottom: 1.5em;
}
#globalfooter .about .logo img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#globalfooter .about address {
	line-height: 1.75em;
}
#globalfooter .about address div {
	display: inline-block;
	margin-left: 1em;
}
#globalfooter .about .tel {
	display: flex;
	padding: .5em 0;
}
#globalfooter .about .tel li {
	line-height: 1em;
}
#globalfooter .about .tel li:first-child {
	margin-right: 1em;
	padding-right: 1em;
	border-right: 1px solid #ffc9d2;
}
#globalfooter .about p {
	line-height: 1.75em;
}
#globalfooter .navigation {
	display: flex;
	justify-content: flex-end;
}
#globalfooter .navigation nav {
	display: flex;
	gap: 0 5em;
}
#globalfooter .navigation nav ul li {
	margin: 0 0 1em;
	line-height: 1em;
}
#globalfooter .navigation nav ul li a {
	color: #fff;
}
#globalfooter .navigation nav ul li.sub {
	margin-left: 1em;
}
#globalfooter .box {
	padding: 2.5em 0;
	background-color: var(--main);
}
#globalfooter .box .wrap {
	display: flex;
	justify-content: space-between;
}
#globalfooter .box .wrap small {
	font-size: 1.4rem;
	line-height: 1em;
}
#globalfooter .box .wrap p {
	font-size: 1.1rem;
	line-height: 1em;
}
@media screen and (max-width:1024px) {
	#globalfooter .col2 {
		flex-direction: column;
	}
	#globalfooter .about,
	#globalfooter .navigation {
		width: 100%;
	}
	#globalfooter .about {
		text-align: center;
	}
	#globalfooter .about .logo {
		width: 100%;
		max-width: 300px;
		margin: 0 auto 1.5em;
	}
	#globalfooter .about .tel {
		justify-content: center;
	}
	#globalfooter .navigation {
		justify-content: center;
		margin-top: 2em;
		padding-top: 2em;
		border-top: 1px solid #ffc9d2;
	}
}
@media screen and (max-width:640px) {
	#globalfooter {
		font-size: 1.4rem;
	}
	#globalfooter .about .logo {
		max-width: 240px;
	}
	#globalfooter .about address div {
		display: block;
		margin-left: 0;
	}
	#globalfooter .navigation nav {
		width: 100%;
		gap: 0;
	}
	#globalfooter .navigation nav ul {
		width: 50%;
	}
	#globalfooter .navigation nav ul li a {
		font-size: 1.4rem;
	}
	#globalfooter .box .wrap {
		flex-direction: column-reverse;
		text-align: center;
	}
	#globalfooter .box .wrap small {
		font-size: 1.2rem;
	}
	#globalfooter .box .wrap p {
		margin-bottom: 1em;
	}
}









#hero {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60vh;
	background: url(../gifs/hero.jpg) no-repeat;
	background-size: cover;
	background-position: left 50% top 50%;
	overflow: hidden;
}
#hero .mv-text {
	position: absolute;
	display: flex;
	align-items: center;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-feature-settings : "palt" 1;
	font-size: 6.0rem;
	font-weight: 700;
	line-height: 1.75em;
	text-align: center;
	color: #fff;
	opacity: 0;
	text-shadow: 0px 10px 20px rgba(0, 0, 0, 0.65), 0px 10px 20px rgba(0, 0, 0, 0.65);
	white-space: nowrap;
	animation: fadeOutIn 20s infinite;
}
#hero .mv-text span {
	font-size: 9.0rem;
}
#hero .mv-text em {
	letter-spacing: -.35em;
}
#hero .mv-text.strong {
	flex-direction: flex-start;
	font-size: 9.0rem;
	line-height: 1.5em;
}
#hero .mv-text br.sponly {
	display: none;
}
#hero .mv-text:nth-child(1) { animation-delay: 2s; }
#hero .mv-text:nth-child(2) { animation-delay: 6s; }
#hero .mv-text:nth-child(3) { animation-delay: 10s; }
#hero .mv-text:nth-child(4) { animation-delay: 14s; }
#hero .mv-text:nth-child(5) { animation-delay: 18s; }

@keyframes fadeOutIn {
	0%   { opacity: 0; transform: translateY(10px); }
	5%   { opacity: 1; transform: translateY(0); }
	15%  { opacity: 1; transform: translateY(0); }
	20%  { opacity: 0; transform: translateY(-10px); }
	100% { opacity: 0; }
}
@media screen and (max-width:1200px) {
	#hero .mv-text.strong {
		flex-direction: column;
	}
}
@media screen and (max-width:1024px) {
	#hero .mv-text {
		flex-direction: column;
	}
}
@media screen and (max-width:768px) {
	#hero .mv-text {
		font-size: 4.8rem;
	}
	#hero .mv-text span {
		font-size: 7.2rem;
	}
	#hero .mv-text em {
		letter-spacing: 0;
	}
	#hero .mv-text.strong {
		font-size: 7.2rem;
	}
	#hero .mv-text.strong em {
		letter-spacing: -.35em;
	}
}
@media screen and (max-width:640px) {
	#hero {
		height: 40vh;
	}
	#hero .mv-text {
		font-size: 3.0rem;
	}
	#hero .mv-text span {
		font-size: 4.5rem;
	}
	#hero .mv-text em {
		letter-spacing: 0;
	}
	#hero .mv-text.strong {
		font-size: 4.5rem;
	}
	#hero .mv-text.strong em {
		letter-spacing: -.35em;
	}
}




#subhero {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 0;
	background: url(../gifs/bg_subhero.jpg) no-repeat;
	background-size: cover;
	background-position: left 50% top 50%;
}
#subhero strong {
	display: block;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-feature-settings : "palt" 1;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 2em;
	text-align: center;
	color: #fff;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.65), 0px 0px 20px rgba(0, 0, 0, 0.65);
}
@media screen and (max-width:640px) {
	#subhero {
		padding: 30px 0;
	}
	#subhero strong {
		font-size: 2.6rem;
	}
}





#topicpath {
	width: 100%;
	padding: 1.25em 1em;
	background: #fff;
	transition: all .25s ease-in-out;
}
#topicpath ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	transition: all .25s ease-in-out;
}
#topicpath ul li,
#topicpath ul li a {
	font-size: 1.4rem;
	line-height: 1.25em;
	color: #333;
	text-decoration: none;
}
#topicpath ul li {
	display: inline-block;
	margin-right: 1em;
	padding-right: 1.5em;
	background: url(../gifs/icon_arrow_topicpath.svg) no-repeat;
	background-position: top 5px right 0;
	background-size: 5px auto;
}
#topicpath ul li:last-child {
	margin: 0;
	padding: 0;
	background: none;
}
#topicpath ul li a:hover {
	text-decoration: underline;
}
@media screen and (max-width:640px) {
	#topicpath {
		padding: .75em 1em;
		white-space: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}
	#topicpath ul li,
	#topicpath ul li a {
		font-size: 1.2rem;
	}
}





.column {
	margin: 5em 0;
}
.column .heading {
	display: block;
	margin-bottom: .75em;
	padding-left: .75em;
	border-left: 4px solid var(--main);
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-feature-settings : "palt" 1;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.5em;
}
@media screen and (max-width:640px) {
	.column {
		margin: 3em 0;
	}
	.column .heading {
		font-size: 2.4rem;
	}
}

table.normal {
	width: 100%;
	margin-top: 1.5em;
	border-spacing: 0;
	border-collapse: collapse;
	border-top: 1px solid #ccc;
}
table.normal td {
	width: 75%;
	padding: 1.5em;
	border-bottom: 1px solid #ccc;
}
table.normal td.th {
	width: 25%;
	background: var(--sub2);
	font-weight: 700;
}
@media screen and (max-width:640px) {
	table.normal,
	table.normal thead,
	table.normal tbody,
	table.normal tr,
	table.normal td,
	table.normal td.th {
		display: block;
		width: 100%;
	}
	table.normal td,
	table.normal td.th {
		padding: .5em 1.5em;
	}
}
.pagenavi ul {
	display: flex;
	justify-content: center;
	gap: 0 2em;
}
.pagenavi ul li {
	width: 100%;
	max-width: 300px;
}
.pagenavi ul li a {
	display: block;
	padding: 1.5em 1em;
	background: var(--main);
	border-radius: 5px;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1em;
	text-align: center;
	text-decoration: none;
	transition: all .25s ease-in-out;
}
.pagenavi ul li a:hover {
	opacity: .75;
}
.btn {
	margin-top: 2em;
}
.btn a {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 1em;
	background: var(--main);
	border-radius: 5px;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5em;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: all .25s ease-in-out;
}
.btn a span::after {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-left: .35em;
	background: url(../gifs/icon_arrow_circle_wh.svg) no-repeat;
	background-size: 18px auto;
}
.btn a:hover {
	opacity: .75;
}
@media screen and (max-width:640px) {
	.btn a {
		font-size: 1.8rem;
	}
	.btn a span::after {
		width: 16px;
		height: 16px;
		background-size: 16px auto;
	}

}






#home .title {
	display: flex;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-weight: 700;
	margin-bottom: 3em;
}
#home .title.yoko {
	flex-direction: row;
	align-items: center;
}
#home .title.yoko span {
	margin-left: 1.5em;
}
#home .title.tate {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#home .title em {
	display: block;
	margin-bottom: .25em;
	font-size: 3.6rem;
	line-height: 1.5em;
}
#home .title span {
	font-size: 1.8rem;
	color: var(--main);
	line-height: 1.25em;
}
@media screen and (max-width:480px) {
	#home .title em {
		font-size: 3.0rem;
	}
	#home .title span {
		font-size: 1.4rem;
	}
}
#home .about {
	padding: 5em 0 8em;
	background: url(../gifs/top/bg_about.png) no-repeat;
	background-size: cover;
	background-position: right 0 top 0;
}
#home .about .col2 {
	display: flex;
}
#home .about .col2 .txt,
#home .about .col2 .image {
	width: 50%;
}
#home .about .btn a {
	margin: 0;
	width: 100%;
	max-width: 240px;
}
#home .about h1 {
	margin-bottom: .5em;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 6.0rem;
	font-weight: 700;
	color: var(--main);
	line-height: 1.5em;
}
#home .about h1 em {
	letter-spacing: -1em;
}
#home .about p {
	margin-top: 1.5em;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.85), 0px 0px 10px rgba(255, 255, 255, 0.85), 0px 0px 20px rgba(255, 255, 255, 0.85), 0px 0px 10px rgba(255, 255, 255, 0.85);
}
#home .about .image {
	position: relative;
}
#home .about .image img {
	position: absolute;
	max-width: 370px;
	height: auto;
	vertical-align: top;
}
#home .about .image img:first-of-type {
	top: 0;
	left: 0;
}
#home .about .image img:last-of-type {
	top: 200px;
	right: 0;
}
@media screen and (max-width:1024px) {
	#home .about {
		background-position: right 40% top 0;
	}
	#home .about .col2 .txt {
		width: 60%;
	}
	#home .about .col2 .image {
		width: 40%;
	}
	#home .about .image img:first-of-type {
		max-width: 280px;
	}
	#home .about .image img:last-of-type {
		top: 150px;
		max-width: 280px;
	}
}
@media screen and (max-width:768px) {
	#home .about {
		background-size: cover;
		background-position: right 35% top 0;
	}
	#home .about {
		padding: 3em 0 0;
	}
	#home .about .col2 {
		flex-direction: column;
	}
	#home .about .col2 .txt {
		width: 100%;
		text-align: center;
	}
	#home .about h1 {
		font-size: 4.8rem;
	}
	#home .about .btn a {
		margin: 0 auto;
		max-width: 80%;
	}
	#home .about .col2 .image {
		width: 90%;
		margin: 2em auto 0;
	}
	#home .about .col2 .image img {
		position: static;
		width: 80%;
		max-width: 80%;
	}
	#home .about .image img:last-of-type {
		transform: translate(25%, -20%);
	}
}
@media screen and (max-width:640px) {
	#home .about h1 {
		font-size: 4.0rem;
	}
}
@media screen and (max-width:480px) {
	#home .about h1 {
		font-size: 3.6rem;
	}
}
#home .information .title {
	margin-bottom: 1em;
}
#home .information .column.category {
	margin-bottom: 3em;
}
#home .information .category ul {
	display: flex;
	gap: 0 2px;
}
#home .information .category ul li {
	width: calc((100% - 6px) / 4);
}
#home .information .category ul li a {
	display: block;
	padding: .75em 1em;
	background: var(--sub);
	font-weight: 700;
	color: var(--main);
	text-align: center;
	text-decoration: none;
	transition: all .25s ease-in-out;
}
#home .information .category ul li.active a {
	background: var(--main);
	color: #fff;
}
#home .information .category ul li a:hover {
	background: var(--main);
	color: #fff;
}
@media screen and (max-width:1024px) {
	#home .information .category ul {
		flex-wrap: wrap;
		gap: 2px;
	}
	#home .information .category ul li {
		width: calc((100% - 2px) / 2);
	}
	#home .information .category ul li a {
		padding: .5em;
	}
}
#home .information .list {
	margin-top: 2px;
	border-top: 1px solid #ead3da;
}
#home .information .list .item {
	display: flex;
	align-items: flex-start;
	gap: 0 2em;
	padding: 1.5em 1em;
	background: url(../gifs/icon_arrow_topicpath.svg) no-repeat;
	background-size: 8px auto;
	background-position: right 1em top 50%;
	border-bottom: 1px solid #ead3da;
	text-decoration: none;
	color: #000;
	transition: all .25s ease-in-out;
}
#home .information .list .item time {
	width: 130px;
	line-height: 2em;
	white-space: nowrap;
}
#home .information .list .item span {
	display: block;
	width: 160px;
	white-space: nowrap;
}
#home .information .list .item .cat1 em,
#home .information .list .item .cat2 em,
#home .information .list .item .cat3 em,
#home .information .list .item .cat4 em {
	display: block;
	margin-top: .45em;
	padding: .25em 1em .45em;
	background: #ddd;
	border-radius: 3px;
	font-size: 1.3rem;
	color: #fff;
	line-height: 1em;
	text-align: center;
}
#home .information .list .item .cat1 em {background: #ffa304;}
#home .information .list .item .cat2 em {background: #49a3ff;}
#home .information .list .item .cat3 em {background: #666;}
#home .information .list .item .cat4 em {background: #f71b4f;}
#home .information .list .item p {
	width: calc(100% - 130px - 160px - 4em - 3em);
	line-height: 2em;
	transition: all .25s ease-in-out;
}
#home .information .list .item:hover {
	background-position: right .75em top 50%;
}
#home .information .list .item:hover p {
	color: var(--main);
}
#home .information .btn a {
	width: 80%;
}
@media screen and (max-width:1024px) {
	#home .information .list .item {
		flex-wrap: wrap;
	}
	#home .information .list .item p {
		width: 100%;
		padding-right: 2em;
	}
}
@media screen and (max-width:640px) {
	#home .information .list .item {
		gap: 0 1em;
	}
	#home .information .list .item time {
		width: 110px;
		font-size: 1.4rem;
	}
	#home .information .list .item span {
		width: 120px;
	}
	#home .information .list .item .cat1 em,
	#home .information .list .item .cat2 em,
	#home .information .list .item .cat3 em,
	#home .information .list .item .cat4 em {
		margin-top: .35em;
		font-size: 1.2rem;
	}
}
#home .report {
	padding: 5em 0 8em;
	background: url(../gifs/top/bg_event-report.jpg) no-repeat;
	background-size: cover;
}
#home .report .list {
	margin-top: -30px;
}
#home .report .slick-list {
	padding-bottom: 50px;
}
#home .report .list .item {
	margin: 30px 35px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.14);
	transition: all .25s ease-in-out;
}
#home .report .list .item.slick-center {
	box-shadow: 0px 10px 20px 6px rgba(0, 0, 0, 0.45);
}
#home .report .list .item a {
	display: block;
	color: #000;
	text-decoration: none;
}
#home .report .list .item a dl {
	display: flex;
	flex-direction: column;
}
#home .report .list .item a dl dt {
	position: relative;
}
#home .report .list .item a dl dt div {
	overflow: hidden;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
#home .report .list .item a dl dt div img {
	width: 100%;
	height: auto;
	vertical-align: top;
	transition: all .25s ease-in-out;
}
#home .report .list .item a dl dt span {
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
	width: 160px;
	text-align: center;
}
#home .report .list .item a dl dt span.cat1 {
	padding: .25em 1em;
	background: #ff63ac;
	font-size: 1.3rem;
	line-height: 1em;
	color: #fff;
}
#home .report .list .item a dl dt span.cat2 {
	padding: .25em 1em;
	background: #00c191;
	font-size: 1.3rem;
	line-height: 1em;
	color: #fff;
}
#home .report .list .item a dl dd {
	padding: 1.5em 2.5em 3em;
}
#home .report .list .item a dl dd time {
	display: block;
	font-size: 1.4rem;
	color: var(--sub3);
	line-height: 1em;
}
#home .report .list .item a dl dd strong {
	display: block;
	margin: .35em 0 1em;
	font-size: 1.8rem;
	font-weight: 700;
	transition: all .25s ease-in-out;
}
#home .report .list .item a dl dd p {
	line-height: 1.75em;
}
#home .report .list .item:hover {
	box-shadow: 0px 0px 20px 3px rgba(54, 106, 255, 0.2);
}
#home .report .list .item a:hover dl dt div img {
	transform: scale(1.1);
}
#home .report .list .item a:hover strong {
	color: var(--main);
}
#home .report .btn a {
	width: 80%;
}
@media screen and (max-width:1200px) {
	#home .report .list .item {
		margin: 30px 15px;
	}
}
@media screen and (max-width:1024px) {
	#home .report .list .item {
		width: calc((100% - 2em) / 2);
	}
}
@media screen and (max-width:640px) {
	#home .report .list .item {
		width: 100%;
	}
}
@media screen and (max-width:480px) {
	#home .report {
		padding: 3em 0;
	}
	#home .report .list .item a dl dd {
		padding: 1em 1em 2em;
	}
}
#home .artistbank {
	padding: 5em 0 8em;
	background: url(../gifs/top/bg_artistbank.jpg) no-repeat;
	background-size: auto 100%;
	background-position: right 30% top 0;
}
#home .artistbank dl {
	display: flex;
}
#home .artistbank dl dt {
	width: 60%;
}
#home .artistbank dl dd {
	width: 40%;
}
#home .artistbank dl dt strong {
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5em;
}
#home .artistbank dl dt strong span {
	color: #174ca5;
}
#home .artistbank dl dt strong em {
	color: #fb5078;
}
#home .artistbank dl dt strong br {
		display: none;
	}
#home .artistbank dl dt h1 {
	margin-bottom: .5em;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 6.0rem;
	font-weight: 700;
	line-height: 1.5em;
	letter-spacing: -0.05em;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.85), 0px 0px 10px rgba(255, 255, 255, 0.85), 0px 0px 20px rgba(255, 255, 255, 0.85), 0px 0px 10px rgba(255, 255, 255, 0.85);
}
#home .artistbank dl dt img {
	display: none;
}
#home .artistbank dl dt p {
	margin: 1.5em 2em 0 0;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.85), 0px 0px 10px rgba(255, 255, 255, 0.85), 0px 0px 20px rgba(255, 255, 255, 0.85), 0px 0px 10px rgba(255, 255, 255, 0.85);
}
#home .artistbank dl dd img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
@media screen and (max-width:1024px) {
	#home .artistbank {
		padding: 3em 0 5em;
	}
	#home .artistbank dl {
		flex-direction: column-reverse;
	}
	#home .artistbank dl dt,
	#home .artistbank dl dd {
		position: relative;
		width: 100%;
		text-align: center;
	}
	#home .artistbank dl dt img {
		display: block;
		width: 100%;
		height: auto;
		margin: -100px auto 2em;
		vertical-align: top;
	}
	#home .artistbank dl dt p {
		margin: 1.5em 0 0;
		text-align: left;
	}
	#home .artistbank dl dd {
		display: none;
	}
}
@media screen and (max-width:768px) {
	#home .artistbank {
		padding: 3em 0;
	}
	#home .artistbank dl dt strong {
		font-size: 2.0rem;
	}
	#home .artistbank dl dt h1 {
		font-size: 4.8rem;
	}
}
@media screen and (max-width:640px) {
	#home .artistbank dl dt strong {
		font-size: 1.8rem;
	}
	#home .artistbank dl dt h1 {
		font-size: 4.0rem;
	}
	#home .artistbank dl dt img {
		margin: -100px auto 1em;
	}
}
@media screen and (max-width:640px) {
	#home .artistbank dl dt strong {
		font-size: 1.6rem;
	}
	#home .artistbank dl dt strong br {
		display: inline;
	}
	#home .artistbank dl dt h1 {
		font-size: 3.0rem;
		letter-spacing: -0.15em;
	}
}
@media screen and (max-width:480px) {
	#home .artistbank dl dt img {
		margin: -70px auto .5em;
	}
	#home .artistbank dl dt strong {
		position: relative;
		z-index: 10;
	}
}
#home .sponsored {
	padding: 4em 0 6em;
	background: var(--sub2);
}
#home .sponsored .lists {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
	margin-top: 2em;
}
#home .sponsored .lists .item {
	width: calc((100% - 4.5em) / 4);
}
#home .sponsored .lists .item img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#home .sponsored .lists .item > img {
	display: block;
	padding: 1.5em;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
}
#home .sponsored .lists .item > a {
	display: block;
	padding: 1.5em;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: all .25s ease-in-out;
}
#home .sponsored .lists .item a:hover {
	box-shadow: 0px 0px 20px 3px rgba(241, 33, 88, 0.3);
}
#home .nodata {
	margin: 1em 0 3em;
	padding: 5em 1em;
	background: rgba(255,255,255,0.5);
	border: 1px solid #CED2D9;
	border-radius: 3px;
	text-align: center;
	line-height: 1.5em;
}
@media screen and (max-width:1024px) {
	#home .sponsored .lists .item {
		width: calc((100% - 3em) / 3);
	}
}
@media screen and (max-width:768px) {
	#home .sponsored .lists .item {
		width: calc((100% - 1.5em) / 2);
	}
}
@media screen and (max-width:480px) {
	#home .sponsored {
		padding: 3em 0;
	}
	#home .sponsored .lists {
		gap: 0.5em;
	}
	#home .sponsored .lists .item {
		width: calc((100% - 0.5em) / 2);
	}
	#home .sponsored .lists .item > img,
	#home .sponsored .lists .item > a {
		padding: 1em;
		box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.075);
	}
}
#home .archive ul {
	display: flex;
	justify-content: center;
	gap: 0 4em;
}
#home .archive ul li {
	width: 400px;
}
#home .archive ul li a {
	display: block;
	padding: 1.5em 1em;
	border-radius: 20px;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-decoration: none;
	line-height: 1.25em;
	transition: all .25s ease-in-out;
	overflow: hidden;
}
#home .archive ul li:first-child a {
	background: url(../gifs/top/bg_archive_art.jpg) no-repeat;
	background-size: cover;
}
#home .archive ul li:last-child a {
	background: url(../gifs/top/bg_archive_literary.jpg) no-repeat;
	background-size: cover;
}
#home .archive ul li a span {
	font-size: 1.4rem;
	line-height: 1.25em;
}
#home .archive ul li a:hover {
	opacity: .75;
}
@media screen and (max-width:1024px) {
	#home .archive ul {
		gap: 0 2em;
	}
	#home .archive ul li {
		width: 50%;
	}
}
@media screen and (max-width:768px) {
	#home .archive ul {
		gap: 0 1em;
	}
	#home .archive ul li a {
		font-size: 2.0rem;
	}
	#home .archive ul li a span {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:480px) {
	#home .archive ul {
		flex-direction: column;
		gap: 1em 0;
	}
	#home .archive ul li {
		width: 100%;
	}
	#home .archive ul li a {
		padding: 1em;
	}
	#home .archive ul li a {
		font-size: 1.8rem;
	}
	#home .archive ul li a span {
		font-size: 1.1rem;
	}
}





#information .column.category {
	margin-bottom: 3em;
}
#information .category ul {
	display: flex;
	gap: 0 2px;
}
#information .category ul li {
	width: calc((100% - 6px) / 4);
}
#information .category ul li a {
	display: block;
	padding: .75em 1em;
	background: var(--sub);
	font-weight: 700;
	color: var(--main);
	text-align: center;
	text-decoration: none;
	transition: all .25s ease-in-out;
}
#information .category ul li.active a {
	background: var(--main);
	color: #fff;
}
#information .category ul li a:hover {
	background: var(--main);
	color: #fff;
}
@media screen and (max-width:1024px) {
	#information .category ul {
		flex-wrap: wrap;
		gap: 2px;
	}
	#information .category ul li {
		width: calc((100% - 2px) / 2);
	}
	#information .category ul li a {
		padding: .5em;
	}
}
#information .column.list {
	margin-top: 3em;
	border-top: 1px solid #ead3da;
}
#information .list .item {
	display: flex;
	align-items: flex-start;
	gap: 0 2em;
	padding: 1.5em 1em;
	background: url(../gifs/icon_arrow_topicpath.svg) no-repeat;
	background-size: 8px auto;
	background-position: right 1em top 50%;
	border-bottom: 1px solid #ead3da;
	text-decoration: none;
	color: #000;
	transition: all .25s ease-in-out;
}
#information .list .item time {
	width: 130px;
	line-height: 2em;
	white-space: nowrap;
}
#information .list .item span {
	display: block;
	width: 160px;
	white-space: nowrap;
}
#information .list .item .cat1 em,
#information .list .item .cat2 em,
#information .list .item .cat3 em,
#information .list .item .cat4 em {
	display: block;
	margin-top: .45em;
	padding: .25em 1em .45em;
	background: #ddd;
	border-radius: 3px;
	font-size: 1.3rem;
	color: #fff;
	line-height: 1em;
	text-align: center;
}
#information .list .item .cat1 em {background: #ffa304;}
#information .list .item .cat2 em {background: #49a3ff;}
#information .list .item .cat3 em {background: #666;}
#information .list .item .cat4 em {background: #f71b4f;}
#information .list .item p {
	width: calc(100% - 130px - 160px - 4em - 3em);
	line-height: 2em;
	transition: all .25s ease-in-out;
}
#information .list .item:hover {
	background-position: right .75em top 50%;
}
#information .list .item:hover p {
	color: var(--main);
}
@media screen and (max-width:1024px) {
	#information .list .item {
		flex-wrap: wrap;
	}
	#information .list .item p {
		width: 100%;
		padding-right: 2em;
	}
}
@media screen and (max-width:640px) {
	#information .list .item {
		gap: 0 1em;
	}
	#information .list .item time {
		width: 110px;
		font-size: 1.4rem;
	}
	#information .list .item span {
		width: 120px;
	}
	#information .list .item .cat1 em,
	#information .list .item .cat2 em,
	#information .list .item .cat3 em,
	#information .list .item .cat4 em {
		margin-top: .35em;
		font-size: 1.2rem;
	}
}





#report .list {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
}
#report .list .item {
	width: calc((100% - 4em) / 3);
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.14);
	transition: all .25s ease-in-out;
}
#report .list .item a {
	display: block;
	color: #000;
	text-decoration: none;
}
#report .list .item a dl {
	display: flex;
	flex-direction: column;
}
#report .list .item a dl dt {
	position: relative;
}
#report .list .item a dl dt div {
	overflow: hidden;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}
#report .list .item a dl dt div img {
	width: 100%;
	height: auto;
	vertical-align: top;
	transition: all .25s ease-in-out;
}
#report .list .item a dl dt span {
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
	width: 160px;
	text-align: center;
}
#report .list .item a dl dt span.cat1 {
	padding: .25em 1em;
	background: #ff63ac;
	font-size: 1.3rem;
	line-height: 1em;
	color: #fff;
}
#report .list .item a dl dt span.cat2 {
	padding: .25em 1em;
	background: #00c191;
	font-size: 1.3rem;
	line-height: 1em;
	color: #fff;
}
#report .list .item a dl dd {
	padding: 1.5em 2.5em 3em;
}
#report .list .item a dl dd time {
	display: block;
	font-size: 1.4rem;
	color: var(--sub3);
	line-height: 1em;
}
#report .list .item a dl dd strong {
	display: block;
	margin: .35em 0 1em;
	font-size: 1.8rem;
	font-weight: 700;
	transition: all .25s ease-in-out;
}
#report .list .item a dl dd p {
	line-height: 1.75em;
}
#report .list .item:hover {
	box-shadow: 0px 0px 20px 3px rgba(54, 106, 255, 0.2);
}
#report .list .item a:hover dl dt div img {
	transform: scale(1.1);
}
#report .list .item a:hover strong {
	color: var(--main);
}
@media screen and (max-width:1024px) {
	#report .list .item {
		width: calc((100% - 2em) / 2);
	}
}
@media screen and (max-width:640px) {
	#report .list .item {
		width: 100%;
	}
}





.entry-header .meta {
	display: flex;
	align-items: center;
}
.entry-header .meta span {
	display: inline-block;
	width: 160px;
	margin-left: 1.5em;
	padding: .25em 1em;
	background: #ff63ac;
	font-size: 1.3rem;
	color: #fff;
	line-height: 1em;
	text-align: center;
}
#information .entry-header .meta .cat1 {
	background: #ffa304;
	color: #fff;
}
#information .entry-header .meta .cat2 {
	background: #49a3ff;
	color: #fff;
}
#information .entry-header .meta .cat3 {
	background: #666666;
	color: #fff;
}
#information .entry-header .meta .cat4 {
	background: #f71b4f;
	color: #fff;
}
#report .entry-header .meta .cat1 {
	background: #ff63ac;
	color: #fff;
}
#report .entry-header .meta .cat2 {
	background: #00c191;
	color: #fff;
}
.entry-header h1 {
	margin: .5em 0 1.5em;
	padding-bottom: 1em;
	border-bottom: 1px solid #ced2d9;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5em;
}
.entry-content {
	max-width: 960px;
	margin: 0 auto;
	line-height: 1.8;
}
.entry-content h1 {
	position: relative;
	margin: 0 0 1em;
	font-size: 3.0rem;
	font-weight: 700;
	line-height: 1.25em;
	color: var(--main);
}
@media screen and (max-width:768px) {
	.entry-content h1 {
		font-size: 2.6rem;
	}
}
@media screen and (max-width:640px) {
	.entry-content h1 {
		font-size: 2.2rem;
	}
}
.entry-content h2 {
	margin: 3em 0 1.5em;
	padding: .5em 1em;
	background: var(--main);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
}
@media screen and (max-width:768px) {
	.entry-content h2 {
		font-size: 2.2rem;
	}
}
@media screen and (max-width:640px) {
	.entry-content h2 {
		font-size: 2.0rem;
	}
}
.entry-content h3 {
	margin: 3em 0 1.5em;
	padding-left: .5em;
	border-left: 4px solid var(--main);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}
@media screen and (max-width:768px) {
	.entry-content h3 {
		font-size: 2.0rem;
	}
}
@media screen and (max-width:640px) {
	.entry-content h3 {
		font-size: 1.8rem;
	}
}
.entry-content h4 {
	margin: 3em 0 1.5em;
	padding-bottom: 1em;
	border-bottom: 1px solid #ccc;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--main);
}
@media screen and (max-width:768px) {
	.entry-content h4 {
		font-size: 1.8rem;
	}
}
@media screen and (max-width:640px) {
	.entry-content h4 {
		font-size: 1.6rem;
	}
}
.entry-content h5 {
	margin: 3em 0 1.5em;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}
@media screen and (max-width:768px) {
	.entry-content h5 {
		font-size: 1.6rem;
	}
}
.entry-content h6 {
	margin-bottom: 1.5em;
	padding-bottom: .5em;
	border-bottom: 1px solid #ddd;
	font-size: 1.6rem;
	line-height: 1.4;
}
@media screen and (max-width:768px) {
	.entry-content h6 {
		font-size: 1.6rem;
	}
}
.entry-content p {
	margin: 1.5em 0;
	line-height: 1.8;
}
.entry-content strong {
	font-weight: bold;
}
.entry-content em {
	font-style: italic;
}
.entry-content ol,
.entry-content ul {
	margin-left: 1.3em;
	padding-left: 1.3em;
}
.entry-content ol {
	margin-bottom: 1em;
	list-style-type: decimal;
}
.entry-content ol ol {
	margin-bottom: 0;
	list-style-type: decimal;
}
.entry-content ul {
	margin-bottom: 1em;
	list-style-type: disc;
}
.etnry-content ul ul {
	margin-bottom: 0;
	list-style-type: circle;
}
.etnry-content a {
	color: #1a0dab;
	text-decoration: none;
}
.etnry-content a:hover {
	color: #1a0dab;
	text-decoration: underline;
}
.entry-content .has-extra-small-font-size {
	font-size: 1.1rem;
}
.entry-content .has-small-font-size {
	font-size: 1.4rem;
}
.entry-content .has-regular-font-size {
	font-size: 1.6rem;
}
.entry-content .has-large-font-size {
	font-size: 2.4rem;
}
.entry-content .wp-block-media-text {
	margin-bottom: 1.5em;
}
.entry-content .wp-block-media-text__content p:only-child {
	margin-bottom: 0;
}
.entry-content .wp-block-table {
	margin-bottom: 1.5em;
}
.entry-content pre {
	margin-bottom: 1.5em;
}
.entry-content .wp-block-gallery {
	margin-left: 0;
	padding-left: 0;
}
@media screen and (max-width:768px) {
	.entry-header h1 {
		font-size: 2.6rem;
	}
}
@media screen and (max-width:640px) {
	.entry-header h1 {
		font-size: 2.2rem;
	}
}
.notfound-content {
	margin: 1em 0 3em;
	padding: 10em 1em;
	border: 1px solid #CED2D9;
	border-radius: 3px;
	text-align: center;
	line-height: 1.5em;
}
.notfound-content strong {
	display: block;
	margin-bottom: 1em;
	font-size: 2.4rem;
	font-weight: 700;
}
@media screen and (max-width:768px) {
	.notfound-content {
		padding: 6em 1em;
	}
	.notfound-content strong {
		font-size: 1.8rem;
	}
}





#about {
	background: url(../gifs/about/bg_about.png) no-repeat;
	background-size: 100% auto;
}
@media screen and (max-width:1024px) {
	#about {
		background-size: 150% auto;
	}
}
@media screen and (max-width:640px) {
	#about {
		background-size: 200% auto;
	}
}
#about .copy {
	padding-top: 5em;
	text-align: center;
}
#about .copy h1 {
	margin-bottom: 1em;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 6.0rem;
	font-weight: 700;
	color: var(--main);
	line-height: 1.5em;
}
#about .copy h1 em {
	letter-spacing: -0.5em;
}
#about .copy p {
	font-size: 1.8rem;
	line-height: 2.5em;
}
@media screen and (max-width:1024px) {
	#about .copy h1 {
		font-size: 5.0rem;
	}
}
@media screen and (max-width:768px) {
	#about .copy h1 {
		font-size: 4.0rem;
	}
}
@media screen and (max-width:640px) {
	#about .copy {
		padding-top: 3em;
	}
	#about .copy h1 {
		font-size: 3.0rem;
	}
}
#about .message dl {
	display: flex;
	gap: 0 3em;
}
#about .message dl dt {
	width: 300px;
}
#about .message dl dt img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	vertical-align: top;
}
#about .message dl dd {
	width: calc(100% - 300px - 3em);
}
#about .message dl dd p {
	margin-bottom: 2em;
}
#about .message dl dd p.namae {
	margin: 0;
	text-align: right;
}
@media screen and (max-width:768px) {
	#about .message dl {
		flex-direction: column;
		gap: 3em 0;
	}
	#about .message dl dt {
		width: 70%;
		max-width: 400px;
		margin: 0 auto;
	}
	#about .message dl dd {
		width: 100%;
	}
}
#about .overview ul li {
	padding-left: 1.25em;
	background: url(../gifs/icon_arrow_topicpath.svg) no-repeat;
	background-size: 8px auto;
	background-position: left 0 top 52%;
}
#about .access .map {
	margin-bottom: 2em;
}
#about .access .map iframe {
	width: 100%;
	height: 600px;
	border-radius: 20px;
	vertical-align: top;
}
#about .access .route {
	display: flex;
	justify-content: center;
	gap: 0 2em;
	margin-bottom: 2em;
}
#about .access .route li {
	width: 40%;
	padding: 1em;
	background: var(--sub);
	border-radius: 100px;
	text-align: center;
}
#about .access strong {
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main);
}
@media screen and (max-width:640px) {
	#about .access .route {
		flex-direction: column;
		gap: .5em 0;
	}
	#about .access .route li {
		width: 100%;
	}
}





#disclosure .column ul {
	margin: 0 1em;
}
#disclosure .column ul li {
	margin-top: 1em;
	padding-left: calc(25px + 1em);
	background: url(../gifs/icon_pdf.svg) no-repeat;
	background-size: 25px auto;
	background-position: left 0 top 50%;
}
#disclosure .column ul li a {
	color: #000;
	text-decoration: none;
	transition: all .25s ease-in-out;
}
#disclosure .column ul li a:hover {
	color: var(--main);
}
#disclosure .item-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 5em;
}
#disclosure .item {
	width: calc((100% - 5em) / 2);
}
#disclosure .item h2 {
	padding: .75em 1em 1em;
	background-color: var(--main);
	font-weight: 700;
	color: #fff;
	line-height: 1em;
}
@media screen and (max-width:1024px) {
	#disclosure .item-wrap {
		gap: 2em;
	}
	#disclosure .item {
		width: calc((100% - 2em) / 2);
	}
}
@media screen and (max-width:640px) {
	#disclosure .item-wrap {
		flex-direction: column;
	}
	#disclosure .item {
		width: 100%;
	}
}





#sponsored .lists {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em;
	margin-top: 2em;
}
#sponsored .lists .item {
	width: calc((100% - 4.5em) / 4);
}
#sponsored .lists .item img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#sponsored .lists .item > img {
	display: block;
	padding: 1.5em;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
}
#sponsored .lists .item > a {
	display: block;
	padding: 1.5em;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: all .25s ease-in-out;
}
#sponsored .lists .item a:hover {
	box-shadow: 0px 0px 20px 3px rgba(241, 33, 88, 0.3);
}
@media screen and (max-width:1024px) {
	#sponsored .lists .item {
		width: calc((100% - 3em) / 3);
	}
}
@media screen and (max-width:768px) {
	#sponsored .lists .item {
		width: calc((100% - 1.5em) / 2);
	}
}
@media screen and (max-width:480px) {
	#sponsored .lists {
		gap: 0.5em;
	}
	#sponsored .lists .item {
		width: calc((100% - 0.5em) / 2);
	}
	#sponsored .lists .item > img,
	#sponsored .lists .item > a {
		padding: 1em;
		box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.075);
	}
}





#contact p {
	margin-bottom: 2em;
}
#contact .phone {
	width: 70%;
	min-width: 400px;
	margin: 0 auto;
	padding: 4em;
	background: var(--sub2);
	text-align: center;
}
#contact .phone .number {
	font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
}
#contact .phone .number a {
	font-size: 4.8rem;
	color: #000;
	text-decoration: none;
}
#contact .phone em {
	display: block;
	margin-top: .5em;
}
#contact .column table {
	margin: 1.5em 0;
	width: 100%;
	border-top: 1px solid #ced2d9;
}
#contact .column th {
	position: relative;
	width: 30%;
	padding: 2em 1.5em;
	background: var(--sub2);
	border-bottom: 1px solid #ced2d9;
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}
#contact .column th .hissu {
	position: absolute;
	top: 3.2em;
	right: 1.5em;
	display: inline-block;
	padding: .35em .75em .35em .65em;
	background: #e21818;
	font-size: 1.2rem;
	color: #fff;
	line-height: 1em;
}
#contact .column th em {
	display: inline-block;
	font-size: 0.750em;
}
#contact .column td {
	width: 70%;
	padding: 15px;
	border-bottom: 1px solid #ddd;
	vertical-align: middle;
}
#contact .column select,
#contact .column option,
#contact .column input[type=text],
#contact .column input[type=tel],
#contact .column input[type=email],
#contact .column textarea {
	border-radius: 0;
	/*-webkit-appearance: none;*/
	padding: 10px;
	width: 100%;
	border: 1px solid #ddd;
	font-size: 1em;
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	resize: none;
}
#contact .column select::-ms-expand {
	display: none;
}
#contact .column select, #contact .column option, #contact .column input.zip, #contact input.tel, #contact .column input.fax, #contact .column input.email {
	width: 60%;
}
#contact .column input.zip {
	width: 40%;
}
#contact .column textarea {
	height: 300px;
}
#contact .column input:hover, #contact .column textarea:hover {
	border: 1px solid #ddd;
}
#contact .center {
	text-align: center;
}
#contact .column #btn {
	margin-top: 20px;
	text-align: center;
}
#contact .column #btn input {
	margin: 15px 0;
	padding: 1em 1em 1.2em;
	width: 60%;
	background: var(--main);
	border: 1px solid var(--main);
	border-radius: 5px;
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-feature-settings : "palt" 1;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5em;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all .25s ease-in-out;
}
#contact .column #btn input:hover {
	opacity: .75;
}
@media screen and (max-width:768px) {
	#contact .phone {
		width: 100%;
		padding: 4em 2em;
		min-width: auto;
	}
	#contact .column table {
		border-top: none;
	}
	#contact .column tr,
	#contact .column th,
	#contact .column td {
		display: block;
		width: 100%;
	}
	#contact .column th {
		padding: 1em;
		border-bottom: none;
	}
	#contact .column th .hissu {
		top: 1.8em;
		right: 1.5em;
	}
	#contact .column td {
		border-bottom: none;
	}
	#contact .column select, #contact .column option, #contact .column input.zip, #contact .column input.tel, #contact .column input.fax, #contact .column input.email {
		width: 100%;
	}
	#contact .column #btn input {
		width: 80%;
	}
}
@media screen and (max-width:640px) {
	#contact .phone {
		padding: 3em 2em;
	}
	#contact .phone .number {
		font-size: 2.0rem;
	}
	#contact .phone .number a {
		font-size: 4.0rem;
	}
	#contact .phone em {
		margin-top: .15em;
		font-size: 1.4rem;
	}
}
@media screen and (max-width:480px) {
	#contact .phone {
		padding: 2em 1em;
	}
	#contact .phone .number {
		font-size: 1.8rem;
	}
	#contact .phone .number a {
		font-size: 3.2rem;
	}
	#contact .phone em {
		margin-top: 0;
	}
}





#privacy p {
	text-indent: 1em;
}
#privacy .item {
	margin-top: 3em;
}
#privacy .item h2 {
	margin-bottom: .5em;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--main);
}
#privacy ol {
	margin: 1em 0 0 1.5em;
}
#privacy ol li {
	list-style-type: decimal;
}
#privacy ul {
	margin: 1em 0 0 1.5em;
}
#privacy ul li {
	list-style-type: none;
	padding-left: 1.5em;
	background: url(../gifs/icon_arrow_circle_pink.svg) no-repeat;
	background-size: 16px auto;
	background-position: left 0 top 55%;
}





#error .column {
	padding: 100px;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0px 0px 25px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}
#error .column strong {
	display: block;
	margin-bottom: .5em;
	font-family: "Noto Serif JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-feature-settings : "palt" 1;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.5em;
}
#error .column p {
	margin-bottom: 2em;
}
@media screen and (max-width:640px) {
	#error .column {
		padding: 50px;
	}
	#error .column strong {
		font-size: 2.6rem;
		text-align: left;
	}
	#error .column p {
		text-align: left;
	}
}
