@charset "UTF-8";

:root {
	--site_base_hex: #64A3FF;
	--site_base_rgb: 100, 163, 255;
	--site_bg01_hex: #f4f4f4;
	--site_max_width: 1800px;

	--font_english: 'Hind', sans-serif;
}

/* ヘッダー */
.header {
	padding: 0 5%;
	position: relative;
}
.header__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
}
.header__logo {
	display: flex;
	align-items: center;
	width: min(55%, 550px);
}
.header__logo a {
	display: block;
	line-height: 0;
}

@media screen and (max-width:  767px) {
	.header {
		padding: 0;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
		background-color: rgba(255,255,255,0.9);
	}
	.header__wrap {
		height: 60px;
	}
	.header__logo {
		max-width: 234px;
	}
	.header__logo a {
		padding-left: 10px;
	}
	.header__logo a img {
		width: 100%;
		line-height: 0;
	}
}

/* ナビゲーション */
@media screen and (min-width:  768px) {
	.nav {
		width: calc(100% - 250px);
		height: 100%;
		padding: 0 0 0;
	}
	.nav__wrap {
		display: flex;
		justify-content: flex-end;
		height: 100%;
	}
	.nav__wrap li a {
		font-weight: 500;
		padding: 0 20px;
		height: 100%;
		display: flex;
		align-items: center;
	}
	.nav__wrap li a:hover {
		color: var(--site_base_hex);
	}
	.nav__wrapSub>a {
		position: relative;
	}
	.nav__wrapSub: hover>a {
		color: var(--site_base_hex);
	}
	.nav__wrapSub: hover>a:after {
		height: 0;
		width: 1px;
		content: "";
		display: block;
		position: absolute;
		left: 50%;
		bottom: 0;
		background-color: var(--site_base_hex);
		animation: nav__wrapSub .2s 0s forwards;
	}

	@keyframes nav__wrapSub {
		0% {
			height: 0;
		}
		100% {
			height: 25px;
		}
	}
	.nav__wrapSub .nav__wrapSubMenu {
		display: none;
		position: absolute;
		z-index: 1;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--site_base_hex);
		overflow: hidden;
		border: 1px solid var(--site_base_hex);
	}
	.nav__wrapSub .nav__wrapSubMenu .nav__wrapSubMenuList {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.nav__wrapSub .nav__wrapSubMenu .nav__wrapSubMenuList li a {
		color: #FFF;
		padding: 30px 20px 30px 30px;
		font-size: 1.4rem;
		position: relative;
	}
	.nav__wrapSub .nav__wrapSubMenu .nav__wrapSubMenuList li a:before {
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		content: "";
		vertical-align: middle;
		left: 10px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #FFF;
		border-right: 1px solid #FFF;
		transform: rotate(45deg);
		transition: all  0.2s ease;
	}
	.nav__wrapSub .nav__wrapSubMenu .nav__wrapSubMenuList li a:hover {
		color: var(--site_base_hex);
		background-color: #FFF;
	}
	.nav__wrapSub .nav__wrapSubMenu .nav__wrapSubMenuList li a:hover:before {
		border-top: 1px solid var(--site_base_hex);
		border-right: 1px solid var(--site_base_hex);
	}

	body.pc_open {
		position: relative;
	}
	body.pc_open::after {
		content: "";
		display: block;
		background-color: rgba(0,0,0,0.8);
		width: 100%;
		height: calc(100% - 100px);
		position: absolute;
		top: 100px;
		left: 0;
	}
}

@media screen and (max-width:  767px) {
	.nav__toggle {
		position: fixed;
		z-index: 1000;
		top: 0;
		right: 0;
		height: 59px;
		background-color: var(--site_base_hex);
		cursor: pointer;
		padding: 20px;
	}
	.open .nav__toggle {
		background-color: #000;
	}
	.nav__toggle>div {
		position: relative;
		width: 30px;
	}
	.nav__toggle span {
		width: 100%;
		height: 1px;
		left: 0;
		display: block;
		background: #FFF;
		position: absolute;
		-webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
		transition: top .5s ease, -webkit-transform .6s ease-in-out;
		transition: transform .6s ease-in-out, top .5s ease;
		transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out
	}
	.nav__toggle span:nth-child(1) {
		top: 0;
	}
	.nav__toggle span:nth-child(2) {
		top: 10px;
		width: 70%;
	}
	.nav__toggle span:nth-child(3) {
		top: 20px;
	}
	.open .nav__toggle span {
		background: #fff;
	}
	.open .nav__toggle span:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.open .nav__toggle span:nth-child(2) {
		top: 10px;
		width: 0;
		left: 50%;
	}
	.open .nav__toggle span:nth-child(3) {
		top: 10px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.nav__wrap {
		background-color: rgba(var(--site_base_rgb),0.95);
		color: #fff;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 990;
		text-align: center;
		visibility: hidden;
		font-size: 18px;
		font-weight: bold;
		opacity: 0;
		-webkit-transition: opacity .6s ease, visibility .6s ease;
		transition: opacity .6s ease, visibility .6s ease;
		height: 100%;
		padding: 20px 0 105px;
		display: flex;
		flex-direction: column
	}
	.nav__wrap li a {
		display: block;
		color: #FFF;
		text-decoration: none;
		padding: 25px 0;
		font-size: 1.4rem;
		text-align: left;
		padding-left: 5%;
		position: relative;
		line-height: 1.2
	}
	.nav__wrap>li {
		opacity: 0;
		width: 90%;
		margin: 0 auto;
		-webkit-transform: translateX(200px);
		transform: translateX(200px);
		-webkit-transition: .5s ease;
		transition: .5s ease;
		border-bottom: 1px solid #fff
	}
	.nav__wrap>li>a {
		-webkit-transition: color .6s ease;
		transition: color .6s ease;
	}
	.nav__wrap li>a:before {
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		content: "";
		vertical-align: middle;
		right: 30px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #FFF;
		border-right: 1px solid #FFF;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition: all 0.2s ease;
		-moz-transition: all 0.2s ease;
		-o-transition: all 0.2s ease;
		transition: all  0.2s ease;
	}
	.nav__wrap>li>a>span {
		font-size: 1.2rem;
	}
	.nav__wrap>li.nav__wrapSub {
		display: flex;
		flex-wrap: wrap
	}
	.nav__wrap>li.nav__wrapSub>a {
		width: 80%;
	}
	.nav__wrap>li.nav__wrapSub>a:before {
		content: none;
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubBtn {
		display: block;
		width: 20%;
		position: relative;
		border-left: 1px solid #fff;
		margin: 5px 0;
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubBtn::before,
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubBtn::after {
		content: '';
		display: block;
		width: 15px;
		height: 2px;
		border-radius: 5px;
		background: #FFF;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: .2s
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubBtn::before {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: 0.2s
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubBtn::after {
		transform: translate(-50%, -50%) rotate(0);
		transition: 0.2s
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubBtn.open_sub::before {
		transform: translate(-50%, -50%) rotate(0);
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubMenu {
		width: 100%;
		display: none;
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubMenu li {
		width: 100%;
		padding-left: 10%;
	}
	.nav__wrap>li.nav__wrapSub>.nav__wrapSubMenu li a {
		width: 100%;
		border-top: 1px dotted #fff;
		font-weight: 400;
	}
	.nav__wrap>li.nav__wrapList {
		display: flex;
		flex-wrap: wrap;
		border-bottom: none;
	}
	.nav__wrap>li.nav__wrapList a {
		width: 48%;
		margin-right: 4%;
		border-bottom: 1px solid #fff;
		font-size: 1.2rem;
	}
	.nav__wrap>li.nav__wrapList a:before {
		right: 5px;
	}
	.nav__wrap>li.nav__wrapList a:nth-child(2n) {
		margin-right: 0;
	}
	.open {
		overflow: hidden
	}
	.open .nav__wrap {
		visibility: visible;
		opacity: 1;
		overflow-y: scroll;
		display: flex;
		flex-wrap: nowrap
	}
	.open .nav__wrap li {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-transition: .5s ease;
		transition: .5s ease;
	}
	.nav__wrap>li:nth-child(2),
	.open .nav__wrap>li:nth-child(2) {
		-webkit-transition-delay: .1s;
		transition-delay: .1s
	}
	.nav__wrap>li:nth-child(3),
	.open .nav__wrap>li:nth-child(3) {
		-webkit-transition-delay: .2s;
		transition-delay: .2s
	}
	.nav__wrap>li:nth-child(4),
	.open .nav__wrap>li:nth-child(4) {
		-webkit-transition-delay: .3s;
		transition-delay: .3s
	}
	.nav__wrap>li:nth-child(5),
	.open .nav__wrap>li:nth-child(5) {
		-webkit-transition-delay: .4s;
		transition-delay: .4s
	}
	.nav__wrap>li:nth-child(6),
	.open .nav__wrap>li:nth-child(6) {
		-webkit-transition-delay: .5s;
		transition-delay: .5s
	}
}

/* 共通@タイトル関連 */
.pageTtl {
	background: linear-gradient(to right, var(--site_base_hex) 0%, #18539B 100%);
	text-align: center;
	color: #FFF;
	text-align: center;
	padding: 15px 0;
	margin-bottom: 50px;
}
.pageTtl__text {
	font-size: 2.2rem;
}
.pageTtl__text span {
	display: block;
	font-size: 1.4rem;
}
@media screen and (max-width:  767px) {
	.pageTtl {
		margin-bottom: 30px;
	}
	.pageTtl__text {
		font-size: 1.8rem;
	}
	.pageTtl__text span {
		font-size: 1.2rem;
	}
}


.pageSubTtl {
	margin-top: 30px;
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-size: 2.2rem;
	color: var(--site_base_hex);
	text-align: center;
	position: relative;
}
.pageSubTtl::after {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	text-align: center;
	content: "";
	position: absolute;
	transform: translate(-50%, 0);
	top: inherit;
	bottom: 0;
	width: 50px;
	height: 1px;
	background: #000;
}

@media screen and (max-width:  767px) {
	.pageSubTtl {
		font-size: 1.8rem;
	}
}
.secTtl,
.secTtl--white,
.catTtl {
	font-weight: 700;
	font-size: min(4vw, 2rem);
	margin: 30px 0 0;
	text-align: center;
	line-height: 1.4;
	position: relative;
}
.secTtl span,
.secTtl--white span,
.catTtl span {
	color: var(--site_base_hex);
	display: block;
	font-size: min(5vw, 3.2rem);
}
.secTtl--white {
	color: #FFF
}

@media screen and (max-width:  767px) {
	.secTtl,
	.secTtl--white,
	.catTtl {
		font-size: 2.0rem;
	}
	.secTtl span,
	.secTtl--white span,
	.catTtl span {
		font-size: 1.75rem;
	}
}
.secSubTtl {
	font-weight: 700;
	font-size: 2.4rem;
	margin-bottom: 20px;
	position: relative;
}

@media screen and (max-width:  767px) {
	.secSubTtl {
		font-size: 1.8rem;
	}
}
.articleTtl {
	font-weight: 700;
	font-size: 2.0rem;
	margin-top: 30px;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-bottom: 10px;
	position: relative;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #CCC
}

@media screen and (max-width:  767px) {
	.articleTtl {
		font-size: 1.8rem;
	}
}
.articleTtl::before {
	content: "";
	position: absolute;
	display: block;
	width: 4px;
	height: 70%;
	background-color: var(--site_base_hex);
	left: 0;
	top: 5%;
}
.path {
	background-color: #F5F8FA;
	padding: 10px 0;
}
.path__list {
	display: flex;
	flex-wrap: nowrap
}
.path__list li {
	font-size: 1.2rem;
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
	white-space: nowrap;
	color: #000;
}
.path__list li::after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 0;
	width: 6px;
	height: 6px;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.path__list li:last-child::after {
	content: none;
}
.path__list li a {
	color: #000;
}

@media screen and (max-width:  767px) {
	.path {
		overflow-y: scroll
	}
	.path__list li {
		font-size: 1.2rem;
	}
}

@media screen and (min-width:  768px) {
	.path__list li a:hover {
		color: var(--site_base_hex)
	}
}


.catTtl {
	font-size: 2.0rem;
	margin: 0 auto 20px;
}
.catTtl span {
	font-size: 1.2rem;
	margin-top: 5px;
}
@media screen and (max-width:  767px) {
	.catTtl {
		font-size: 1.6rem;
	}
}

.catLink {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: min(5vw, 5rem);
	row-gap: min(5vw, 5rem);
	padding-block: 5rem 10rem;
}
.catLink .catLinkItem__img {
	transition: opacity .3s;
}
.catLink .catLinkItem__text {
	position: relative;
	font-size: min(3.75vw, 2rem);
	font-weight: 500;
	border-bottom: 1px solid var(--site_base_hex);
	padding-bottom: 0.5em;
}
.catLink .catLinkItem__text:after {
	position: absolute;
	bottom: 0;
	right: 0;
	content: "";
	width: 20%;
	height: 5px;
	background: var(--site_base_hex);
	transition: width .3s;
}
@media (hover: hover) {
	.catLink > *:hover .catLinkItem__img {
		opacity: 0.7;
	}
	.catLink > *:hover .catLinkItem__text:after {
		width: 100%;
	}
}
@media screen and (min-width: 767px) {
	/*PC*/
	.catLink > .catLinkItem {
		width: calc((100% / 3) - min(5vw, 5rem));
	}
}
@media screen and (max-width: 767px) {
	/*SP*/
	.catLink > .catLinkItem {
		width: calc((100% / 2) - min(5vw, 5rem));
	}
}

.catLinkPage {
	background-color: #EEE;
	padding: 40px 0;
}
.catLinkPage .catLink {
	max-width: 1200px;
	padding: 0 30px;
	margin: 5rem auto 0;
	position: relative;
}
.catLinkPage .catLinkItem {
	position: relative;
}
.catLinkPage .catLinkItem a {
	transition: .3s
}
.catLinkPage .catLinkItem a::before,
.catLinkPage .catLinkItem a::after,
.catLinkPage .catLinkItem a .catLinkItem__inner::before,
.catLinkPage .catLinkItem a .catLinkItem__inner::after {
	content: none;
}
.catLinkPage .catLinkItem a.current .catLinkItem__text {
	color: var(--site_base_hex)
}
.catLinkPage .catLinkItem a.current .catLinkItem__text:before {
	border-top: 1px solid var(--site_base_hex);
	border-right: 1px solid var(--site_base_hex)
}
.catLinkPage .catLinkItem a::before,
.catLinkPage .catLinkItem a::after {
	content: none;
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: inherit;
	left: 0;
	bottom: 0;
	background-color: #C7C7C7;
	transform: scale(1, 1);
	opacity: 1.0;
	border: none;
	transition: .3s ease-in-out
}
.catLinkPage .catLinkItem a::after {
	background-color: var(--site_base_hex);
	width: 0;
}
.catLinkPage .catLinkItem a.current::after {
	width: 100%;
}
.catLinkPage .catLinkItem__img {
	display: none;
}
.catLinkPage .catLinkItem__text {
	font-size: 1.6rem;
	text-align: left;
	color: #000;
	text-decoration: none;
	width: 100%;
	left: 0;
	position: relative;
	transform: none;
	transition: .3s
}
.catLinkPage .catLinkItem__text::before {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.catLinkPage .catLinkItem__text br {
	display: none;
}
@media screen and (max-width:  767px) {
	.catLinkPage {
		padding: 30px 0 50px;
	}
	.catLinkPage .catLink {
		padding: 0 30px;
	}
	.catLinkPage .catLinkItem {
		width: 100%;
		margin: 0;
	}
	.catLinkPage .catLinkItem__text {
		font-size: 1.4rem;
	}
}

@media screen and (min-width:  768px) {
	.catLinkPage .catLinkItem a:hover .catLinkItem__text,
	.catLinkPage .catLinkItem a.current .catLinkItem__text {
		color: var(--site_base_hex)
	}
	.catLinkPage .catLinkItem a:hover .catLinkItem__text:before,
	.catLinkPage .catLinkItem a.current .catLinkItem__text:before {
		border-top: 1px solid var(--site_base_hex);
		border-right: 1px solid var(--site_base_hex);
	}
	.catLinkPage .catLinkItem a:hover::after,
	.catLinkPage .catLinkItem a.current::after {
		width: 100%;
	}
}


.selectSec {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.selectSec li {
	width: 23%;
	margin: 0 1% 20px;
}
.selectSec li a {
	border: 1px solid #CCC;
	display: block;
	padding: 15px 10px;
	text-align: center;
	position: relative;
	position: relative;
	color: #000;
}
.selectSec li a::before {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 10px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(135deg);
}

@media screen and (max-width:  767px) {
	.selectSec li {
		width: 31%;
		margin-bottom: 10px;
	}
	.selectSec li a {
		padding: 15px 10px 15px 5px;
	}
}

@media screen and (min-width:  768px) {
	.selectSec li a:hover {
		background-color: var(--site_base_hex);
		border-color: var(--site_base_hex);
		color: #FFF;
	}
	.selectSec li a:hover::before {
		border-top: 1px solid #FFF;
		border-right: 1px solid #FFF;
	}
}

#pagetop {
	position: fixed;
	z-index: 980;
	width: 70px;
	height: 60px;
	background-color: #000;
	bottom: 0;
	right: 0;
	pointer-events: none;
	cursor: pointer;
	opacity: 0;
	transform: scale(1.5);
	transition: all .5s
}
#pagetop::before {
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 12px;
	height: 12px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(-45deg);
}

#pagetop.show {
	opacity: 1.0;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	pointer-events: auto
}

@media screen and (min-width:  768px) {
	#pagetop: hover {
		background-color: var(--site_base_hex)
	}
}

/* フッター */
.footer {
	background: #fff;
	padding: 30px 0;
}
.footer__link {
	display: flex;
	justify-content: center;
}
.footer__link li {
	padding: 0 20px;
	line-height: 1.2;
}
.footer__link li a {
	font-size: 1.4rem;
	font-weight: bold;
}
.footer__link li:not(:last-child) {
	border-right: 1px solid #000;
}
.footer__copy {
	text-align: center;
	font-size: 1.2rem;
	margin-top: 20px;
}

@media screen and (max-width:  767px) {
	.footer__link li a {
		font-size: 1.2rem;
	}
}

.btnBlock {
	margin: 40px 0;
	text-align: center;
}
.btnBlock a {
	display: inline-block;
	margin: 0 auto;
	border: 1px solid #333;
	background-color: #000;
	color: #FFF;
	border-radius: 2px;
	padding: 15px;
	text-align: center;
	min-width: 50%;
	position: relative;
}
.btnBlock a::before,
.btnBlock a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	content: "";
	vertical-align: middle;
	transition: .2s
}
.btnBlock a::before {
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	border: 1px solid #FFF;
	border-radius: 50%;
}
.btnBlock a::after {
	right: 18px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	transform: rotate(45deg);
}

@media screen and (max-width:  767px) {
	.btnBlock a {
		width: 100%;
	}
}

@media screen and (min-width:  768px) {
	.btnBlock a:hover {
		color: #000;
		background-color: #FFF
	}
	.btnBlock a:hover::before {
		border: 1px solid #000;
		right: 5px;
	}
	.btnBlock a:hover::after {
		right: 13px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
	}
}


.post-password-form {
	/*「パスワード保護」時のパスワード入力エリア*/
	text-align: center;
	margin-block: min(10vw, 7.5rem);
	.error-pwbox-16 {
		color: #db0000;
		font-weight: 700;
		margin-bottom: min(3vw, 1.5rem);
	}
}