@charset "UTF-8";

/* header
========================================== */

#l-header {
	background-color: #fff;
	border-bottom: 1px solid #ededed;
	padding: 0 30px;
	position: fixed;
	top: 0;
	left: 0;
	/*transition: 0.2s ease-in-out;*/
	width: 100%;
	z-index: 100;
}
.l-header-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.l-header-logo {
	width: 170px;
}
.l-header-logo a {
	display: block;
}

.l-header-search.is-open .l-header-search__trigger {
	display: none;
}
.l-header-search__trigger,
.l-header-search__submit {
	height: 40px;
	width: 40px;
}
.l-header-search__trigger i,
.l-header-search__submit i {
	display: block;
	line-height: 1;
	height: 15px;
	width: 15px;
}
.l-header-search form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.l-header-search form input {
	background-color: #fff;
	border: 2px solid #E4F4F7;
	border-radius: 100px;
	color: #24292d;
	font-size: 1.2rem;
	display: block;
	height: 40px;
	margin-left: auto;
	transition: 0.2s ease-in-out;
	width: 0;
}
.l-header-search.is-open .l-header-search__form input {
	padding: 10px 12px;
	width: calc(100% - 55px);
}
.l-header-search form input::placeholder {
	color: #3895A7;
}
.l-header-search__submit {
	margin-top: 0;
	margin-left: 10px;
}

.l-header-search .mt-site-search-form__button {
	background: #7AD0E0 url(/assets/images/common/icon_search_white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 15px 15px;
	border-radius: 50%;
	cursor: pointer;
	color: #fff;
	font-size: 0;
	height: 40px;
	margin-left: 10px;
	text-align: center;
	width: 40px;
}

/*
.l-header-search #mt-site-search {
	background-color: #fff;
	border: 2px solid #E4F4F7;
	border-radius: 100px;
	color: #24292d;
	font-size: 1.2rem;
	display: block;
	height: 40px;
	margin-left: auto;
	transition: 0.2s ease-in-out;
}
*/


.l-header-search__trigger a,
.l-header-search__submit button {
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}
.l-header-search__trigger a {
	background-color: #ededed;
}
.l-header-search__submit button {
	background-color: #7AD0E0;
}
.l-header-contact > p {
	width: 160px;
}
.l-header-contact > p a {
	background-color: #7AD0E0;
	border: 2px solid #7AD0E0;
	box-shadow: 0 2px 6px rgba(0,0,0,0.16);
	border-radius: 50px;
	color: #fff;
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 36px;
	text-align: center;
}
#l-globalnav * + .l-thirdry-nav {
	border-top: 1px solid #CECECE;
	margin-top: 5px;
}
#l-globalnav .l-thirdry-nav__link > li {
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	margin-top: 14px;
}
#l-globalnav .l-thirdry-nav__link > li > a > span {
	padding-left: 10px;
	padding-right: 12px;
	position: relative;
}
#l-globalnav .l-thirdry-nav__link > li > a > span:before,
#l-globalnav .l-thirdry-nav__link > li > a > span:after {
	content: "";
	position: absolute;
}
#l-globalnav .l-thirdry-nav__link > li > a > span:before {
	background-color: #707070;
	border-radius: 50px;
	height: 1px;
	top: 6px;
	left: 0;
	width: 6px;
}
#l-globalnav .l-thirdry-nav__link > li > a > span:after {
	background-image: url(/assets/images/common/icon_arrow_blue.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	height: 10px;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 6px;
}
#l-globalnav .l-thirdry-nav__link[data-column="2"] {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#l-globalnav .l-thirdry-nav__link[data-column="2"] > li {
	width: 49%;
}
#l-globalnav .l-thirdry-nav__link[data-column="2"] > li.width-full {
	width: 100% !important;
}
#l-globalnav .l-fourthly-nav__link > li {
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	margin-top: 14px;
}
#l-globalnav .l-fourthly-nav__link > li > a > span {
	padding-right: 12px;
	position: relative;
}
#l-globalnav .l-fourthly-nav__link > li > a > span:before {
	content: "・";
}
#l-globalnav .l-fourthly-nav__link > li > a > span:after {
	background-image: url(/assets/images/common/icon_arrow_blue.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	position: absolute;
	height: 10px;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 6px;
}
#l-globalnav .l-secondary-nav .banner-special {
	margin: 24px auto 0;
	width: 183px;
}
/* PC */
@media only screen and (min-width: 751px) {
	#l-header {
		height: 80px;
		min-width: 1200px;
	}
	.l-header-logo {
		display: block !important;
	}
	.l-header-menu {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
		height: 100%;
	}
	.l-header-contact {
		margin-left: 30px;
	}
	#l-globalnav {
		transition: 0.2s ease-in-out;
	}
	#l-header.is-open #l-globalnav {
		opacity: 0;
		z-index: -1;
	}
	#l-globalnav,
	#l-globalnav > ul,
	#l-globalnav > ul > li,
	#l-globalnav > ul > li > a {
		height: 100%;
	}
	#l-globalnav p {
		margin-top: 0;
	}
	#l-globalnav > ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
	}
	#l-globalnav > ul > li,
	#l-globalnav > ul > li > a {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
	#l-globalnav > ul > li + li {
		margin-left: 40px;
	}
	#l-globalnav > ul > li > a {
		font-size: 1.4rem;
		font-weight: 700;
		letter-spacing: 0.2em;
		overflow: hidden;
		position: relative;
	}
	#l-globalnav > ul > li > a:after {
		background-color: #7AD0E0;
		content: "";
		height: 3px;
		margin: 0 auto;
		position: absolute;
		bottom: -3px;
		left: 0;
		right: 0;
		transition: 0.2s ease-in-out;
		width: 100%;
	}
	#l-globalnav > ul > li > a .c-icon {
		display: none;
	}
	#l-globalnav > ul > li > a:hover {
		opacity: 1;
	}
	#l-globalnav > ul > li:hover > a:after,
	#l-globalnav > ul > li > a.is-focused:after {
		bottom: 0;
	}
	#l-globalnav .l-secondary-nav {
		background-color: #fff;
		border-top: 1px solid #ededed;
		letter-spacing: 0.2em;
		padding: 20px 40px 60px;
		position: absolute;
		left: 0;
		top: 100%;
		transition: 0.2s ease-in-out;
		opacity: 0;
		visibility: hidden;
		width: 100%;
		z-index: -1;
		z-index: 100;
	}
	#l-globalnav .l-secondary-nav__inner {
		margin-left: auto;
		margin-right: auto;
		position: relative;
	}
	#l-globalnav .category-about .l-secondary-nav__inner,
	#l-globalnav .category-ir .l-secondary-nav__inner {
		max-width: 1028px;
	}
	#l-globalnav .category-news .l-secondary-nav__inner {
		max-width: 840px;
	}
	#l-globalnav .category-development .l-secondary-nav__inner,
	#l-globalnav .category-sustainability .l-secondary-nav__inner,
	#l-globalnav .category-recruit .l-secondary-nav__inner {
		max-width: 820px;
	}
	#l-globalnav .category-product .l-secondary-nav__inner {
		max-width: 965px;
	}
	#l-globalnav > ul > li:hover .l-secondary-nav,
	#l-globalnav .l-secondary-nav.is-focused {
		opacity: 1;
		visibility: visible;
		z-index: 100;
	}
	#l-globalnav .l-secondary-nav[data-layout="align-center"] .l-secondary-nav__inner {
		align-items: center;
	}
	#l-globalnav .l-secondary-nav .l-secondary-category {
		border-bottom: 1px solid #EDEDED;
		font-size: 1.4rem;
		font-weight: 500;
		padding-bottom: 10px;
	}
	#l-globalnav .l-secondary-nav .l-secondary-category a {
		display: inline-block;
	}
	#l-globalnav .l-secondary-nav .l-secondary-category a > span {
		padding-right: 14px;
		position: relative;
	}
	#l-globalnav .l-secondary-nav .l-secondary-category a > span:before {
		background-image: url(/assets/images/common/icon_arrow_blue.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100% auto;
		content: "";
		height: 10px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 6px;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__menu {
		margin-top: 20px;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link + .l-secondary-nav__link {
		margin-top: 30px;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li {
		font-size: 1.2rem;
		margin-right: 34px;
	}
	#l-globalnav .category-about .l-secondary-nav .l-secondary-nav__link > li,
	#l-globalnav .category-ir .l-secondary-nav .l-secondary-nav__link > li {
		margin-right: 1.9%;
		width: 18.48%;
	}
	#l-globalnav .category-development .l-secondary-nav .l-secondary-nav__link > li,
	#l-globalnav .category-recruit .l-secondary-nav .l-secondary-nav__link[data-column-pc="4"] > li {
		margin-right: 2.44%;
		width: 23.17%;
	}
	#l-globalnav .category-sustainability .l-secondary-nav .l-secondary-nav__link > li {
		margin-right: 4.64%;
		width: 30.24%;
	}
	#l-globalnav .category-about .l-secondary-nav .l-secondary-nav__link > li:nth-of-type(5n+5),
	#l-globalnav .category-development .l-secondary-nav .l-secondary-nav__link > li:nth-of-type(4n+4),
	#l-globalnav .category-ir .l-secondary-nav .l-secondary-nav__link > li:nth-of-type(4n+4),
	#l-globalnav .category-recruit .l-secondary-nav .l-secondary-nav__link[data-column-pc="4"] > li:nth-of-type(4n+4),
	#l-globalnav .category-sustainability .l-secondary-nav .l-secondary-nav__link > li:nth-of-type(3n+3) {
		margin-right: 0 !important;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a {
		display: block;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a > span {
		padding-right: 12px;
		position: relative;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a > span:before {
		background-image: url(/assets/images/common/icon_arrow_blue.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100% auto;
		content: "";
		height: 10px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 6px;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a > figure {
		display: block;
		margin-top: 10px;
	}
	#l-globalnav .category-product .l-secondary-nav .l-secondary-nav__menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#l-globalnav .category-product .l-secondary-nav .l-secondary-nav__link {
		width: 19.19%;
	}
	#l-globalnav .category-product .l-secondary-nav .l-secondary-nav__link > li {
		margin-right: 0;
		width: 100%;
	}
	#l-globalnav .l-secondary-nav__productBlock {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 72.82%;
	}
	#l-globalnav .l-secondary-nav__productBlock .block-item {
		width: 33.06%;
	}
	#l-globalnav .l-secondary-nav__productBlock .block-item:nth-of-type(3) {
		width: 26.08%;
	}
	#l-globalnav .l-secondary-nav__productBlock .block-item > .item-title {
		font-size: 1.1rem;
		font-weight: 700;
		margin-bottom: 10px;
	}
	/*
	.l-header-search__submit,
	.l-header-search__form {
		display: none;
	}
	*/
	.l-header-search {
		height: 40px;
		margin-left: 35px;
		min-width: 40px;
		position: relative;
	}
	.l-header-search.is-open {
	}
	.l-header-search__form {
		opacity: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: -1;
		width: 450px;
	}
	.l-header-search.is-open .l-header-search__form {
		opacity: 1;
		z-index: 1;
	}
	.l-header-contact > p a:hover {
		background-color: #fff;
		color: #3895A7;
		opacity: 1;
	}
	.l-header-youtube {
		display: none;
	}
	#nav-trigger {
		display: none;
	}
	#l-globalnav > ul > li .c-button-open {
		display: none;
	}
	.l-header-search-sp {
		display: none;
	}
	.mt-site-search-result-container__modal {
		height: auto;
		max-height: 90vh;
		width: 90vw;
		left: 5%;
		/* top: 50%;
		left: 50%;
		transform: translate(-50%,-50%); */
	}
}
@media only screen and (min-width: 751px) and (max-width: 1389px) {
	.l-header-search {
		margin-left: 15px;
	}
	.l-header-contact {
		margin-left: 15px;
	}
	#l-globalnav > ul > li + li {
		margin-left: 15px;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	body.is-fixed {
		position: fixed;
    height: 100%;
    width: 100%;
	}
	#l-header {
		padding: 0 10px;
		height: 60px;
	}
	.l-header-logo {
		width: 132px;
	}
	#nav-trigger {
		display: block;
		height: 28px;
		margin-top: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 18px;
		width: 36px;
		/*z-index: 111;*/
	}
	#nav-trigger .line1,
	#nav-trigger .line2,
	#nav-trigger .line3 {
		background-color: #000;
		height: 2px;
		position: absolute;
		left: 0;
		transition: 0.2s ease-in-out;
		width: 36px;
	}
	#nav-trigger .line1 {
		top: 0;
	}
	#nav-trigger .line2 {
		top: 13px;
	}
	#nav-trigger .line3 {
		top: 26px;
	}
	#nav-trigger.is-open {
		height: 28px;
		width: 28px;
	}
	#nav-trigger.is-open .line1 {
		left: -5px;
		top: 50%;
		transform: rotate(40deg) translateY(-50%);
	}
	#nav-trigger.is-open .line2 {
		display: none;
	}
	#nav-trigger.is-open .line3 {
		left: -3px;
		top: 50%;
		transform: rotate(-40deg) translateY(-50%);
	}
	#l-header .l-header-menu {
		background-color: #fff;
		display: none;
		height: calc(100vh - 60px);
		overflow-y: scroll;
		padding-bottom: 80px;
		position: fixed;
		top: 60px;
		left: 0;
		width: 100vw;
		z-index: 110;
	}
	#l-globalnav > ul > li {
		background-color: #F5FDFF;
		border-bottom: 1px solid #7AD0E0;
		position: relative;
	}
	#l-globalnav > ul > li.is-open {
		border-bottom: none;
	}
	#l-globalnav > ul > li > a {
		display: block;
		font-size: 1.2rem;
		font-weight: 700;
		letter-spacing: 0.2em;
		margin-right: 32px;
		padding: 12px 0 12px 16px;
	}
	#l-globalnav > ul > li .c-button-open {
		display: block;
		position: absolute;
		top: 0;
    right: 0;
    height: 44px;
    width: 32px;
	}
	#l-globalnav > ul > li .c-button-open:before,
	#l-globalnav > ul > li .c-button-open:after {
		background-color: #7AD0E0;
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	#l-globalnav > ul > li .c-button-open:before {
		height: 12px;
		width: 1px;
	}
	#l-globalnav > ul > li .c-button-open:after {
		height: 1px;
		width: 12px;
	}
	#l-globalnav > ul > li.is-open .c-button-open:before {
		width: 0;
	}
	#l-globalnav > ul > li > a > span {
		display: inline-block;
		padding-right: 14px;
		position: relative;
	}
	#l-globalnav > ul > li > a > span:after {
		background-image: url(/assets/images/common/icon_arrow_blue.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100% auto;
		content: "";
		height: 10px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 6px;
	}
	#l-globalnav .l-secondary-nav {
		background-color: #fff;
		border-top: 1px solid #7AD0E0;
		display: none;
	}
	#l-globalnav .l-secondary-nav .l-secondary-category {
		display: none;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li {
		border-bottom: 1px solid #CECECE;
		font-size: 1.4rem;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a,
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > span {
		display: block;
		font-size: 1.2rem;
		letter-spacing: 0.2em;
		padding: 12px 16px;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a > span {
		display: inline-block;
		padding-right: 14px;
		position: relative;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a > span:after {
		background-image: url(/assets/images/common/icon_arrow_blue.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100% auto;
		content: "";
		height: 10px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 6px;
	}
	#l-globalnav .l-secondary-nav .l-secondary-nav__link > li > a > figure {
		display: none;
	}
	#l-globalnav .l-secondary-nav__productBlock {
		background-color: rgba(240,240,240,0.3);
	}
	#l-globalnav .l-secondary-nav__productBlock .block-item {
		padding: 12px 16px;
	}
	#l-globalnav .l-secondary-nav__productBlock .block-item:nth-of-type(n+2) {
		border-top: 1px solid #CECECE;
	}
	#l-globalnav .l-secondary-nav__productBlock .block-item > .item-title {
		font-size: 1.2rem;
		font-weight: 700;
		letter-spacing: 0.2em;
		margin-bottom: 10px;
	}
	#l-globalnav .l-thirdry-nav {
		background-color: rgba(240,240,240,0.3);
		margin-top: 0;
		padding: 12px 16px;
	}
	#l-globalnav .l-thirdry-nav__link {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	#l-globalnav * + .l-thirdry-nav .l-thirdry-nav__link {
		margin-top: -14px;
	}
	#l-globalnav .l-thirdry-nav__link > li {
		letter-spacing: 0.2em;
		min-width: 50%;
	}
	#l-globalnav .l-secondary-nav .banner-special {
		margin-top: 40px;
		margin-bottom: 28px;
	}

	.l-header-contact {
		margin-top: 40px;
	}
	.l-header-contact > p {
		margin-inline: auto;
	}

	.l-header-search {
		position: absolute;
		top: 13px;
		right: 70px;
		transition: 0.2s all;
		z-index: 1;
	}
	.l-header-search.is-open {
		right: 25px;
		width: calc(100% - 45px);
	}
	.l-header-search__trigger,
	.l-header-search__submit {
		height: 36px;
		width: 36px;
	}
	.l-header-search__form input,
	.l-header-search__form .l-header-search__submit {
		opacity: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: -1;
	}
	.l-header-search.is-open .l-header-search__form input,
	.l-header-search.is-open .l-header-search__form .l-header-search__submit {
		position: relative;
		opacity: 1;
		z-index: 1;
	}
	.l-header-search form input {
		height: 36px;
	}
	.l-header-search.is-open .l-header-search__form input {
		width: calc(100% - 46px);
	}
	.l-header-search .mt-site-search-form__button {
		height: 36px;
		width: 36px;
		opacity: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: -1;
	}
	.l-header-search.is-open .mt-site-search-form__button {
		position: relative;
		opacity: 1;
		z-index: 1;
	}
	.l-header-youtube {
		margin-top: 35px;
	}
	.l-header-youtube a {
		display: block;
		font-size: 1.2rem;
		padding-top: 54px;
		position: relative;
		text-align: center;
	}
	.l-header-youtube a:before {
		background-image: url(/assets/images/common/icon_youtube.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 100% auto;
		content: "";
		height: 48px;
		margin: 0 auto;
		top: 0;
		position: absolute;
		left: 0;
		right: 0;
		width: 48px;
	}

	.mt-site-search-result-container__modal {
		height: auto;
		max-height: 90vh;
		width: 90vw;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}

	.l-header-search-pc {
		display: none;
	}
}




/* main
========================================== */

/* PC */
@media only screen and (min-width: 751px) {
	#l-main {
		min-width: 1200px;
		padding-top: 80px;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	#l-main {
		padding-top: 60px;
	}
}




/* footer
========================================== */
#l-footer {
	border-top: 2px solid #ededed;
	padding: 50px 30px 20px;
	position: relative;
}
.l-footer-menu {
	margin-top: 64px;
}
.l-footer-menu .category-head {
	font-size: 1.8rem;
}
.l-footer-menu * + .category-head {
	margin-top: 24px;
}
.l-footer-menu .category-head ~ ul li {
	margin-top: 8px;
}
.l-footer-menu .category-head ~ ul li > a,
.l-footer-menu .category-head ~ ul li > span {
	padding-left: 10px;
	position: relative;
}
.l-footer-menu .category-head ~ ul li.strong > a,
.l-footer-menu .category-head ~ ul li.strong > span {
	font-weight: 700;
}
.l-footer-menu .category-head ~ ul li > a:before,
.l-footer-menu .category-head ~ ul li > span:before {
	background-color: #000;
	content: "";
	height: 2px;
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
}
.l-footer-menu .category-head ~ ul li.strong > a:before,
.l-footer-menu .category-head ~ ul li.strong > span:before {
	background-color: #7AD0E0;
}
.l-footer-menu .l-footer-menu__item > ul + ul {
	margin-top: 24px;
}
.l-footer-menu .l-footer-menu__item > ul > li > ul {
	margin-left: 1em;
}
.l-footer-lower {
	margin-top: 40px;
}
.l-footer-lower .l-footer-lower__item:nth-of-type(1) {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-end;
}
.l-footer__link > li {
	font-size: 1.2rem;
}
.l-footer__link > li a {
	padding-left: 15px;
	position: relative;
}
.l-footer__link > li a:before {
	background-color: #7AD0E0;
	border-radius: 50%;
	content: "";
	height: 5px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
}
.l-footer__youtube {
	margin-top: 0;
	margin-left: 40px;
}
.l-footer__youtube a {
	display: block;
	font-size: 1.2rem;
	padding-top: 54px;
	position: relative;
	text-align: center;
}
.l-footer__youtube a:before {
	background-image: url(/assets/images/common/icon_youtube.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 48px;
	margin: 0 auto;
	top: 0;
	position: absolute;
	left: 0;
	right: 0;
	width: 48px;
}
.l-footer__copyright {
	font-size: 1.4rem;
}
#pagetop {
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0  3px 6px rgba(0,0,0,0.16);
	color: #3895A7;
	cursor: pointer;
	height: 40px;
	position: fixed;
	bottom: 15px;
	right: 15px;
	text-align: center;
	width: 40px;
	z-index: 90;
}
#pagetop > p {
	background-image: url(/assets/images/common/icon_pagetop.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	height: 8px;
	color: transparent;
	font-size: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 15px;
}
.is-passage #pagetop {
	position: absolute;
}

/* PC */
@media only screen and (min-width: 751px) {
	#l-footer {
		min-width: 1200px;
	}
	.l-footer__inner {
		margin-left: auto;
		margin-right: auto;
		max-width: 1345px;
	}
	.l-footer-menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.l-footer-menu .category-head ~ ul li {
		font-size: 1.4rem;
	}
	.l-footer-lower {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		flex-direction: row-reverse;
	}
	.l-footer__link {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.l-footer__link > li + li {
		margin-left: 35px
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	#l-footer {
		padding: 30px;
	}
	.l-footer-menu {
		margin-top: 40px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.l-footer-menu .l-footer-menu__item:nth-of-type(n+2) {
		margin-top: 25px;
	}
	.l-footer-menu .category-head {
		font-size: 1.6rem;
	}
	.l-footer-menu .l-footer-menu__item > ul {
		display: none;
	}
	.l-footer-lower {
		padding-left: 10px;
		padding-right: 10px;
	}
	.l-footer-lower .l-footer-lower__item:nth-of-type(1) {
		justify-content: space-between;
	}
	.l-footer__link > li {
		font-size: 1.4rem;
	}
	.l-footer__link > li + li {
		margin-top: 10px;
	}
	.l-footer__copyright {
		font-size: 1.2rem;
		line-height: 1.33;
		margin-top: 40px;
		text-align: center;
	}
	#pagetop {
		right: 15px;
		bottom: 15px;
	}
	#l-footer:not(.is-passage) #pagetop.no-entry {
		bottom: 15px !important;
	}
}



/* parts
========================================== */

/* section
------------------------------------------ */
.l-section .l-section-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
	padding: 80px 100px;
}
.l-section .l-section-inner[data-layout="full"] {
	max-width: inherit;
}
.l-section .l-section-inner > *:first-child {
	margin-top: 0 !important;
}
.l-section--bg-blue {
	background-color: #7AD0E0;
}
/* SP */
@media only screen and (max-width: 750px) {
	.l-section .l-section-inner {
		padding: 40px 25px;
	}
}



/* テキスト
------------------------------------------ */

.c-heading-01 {
	font-size: 3.2rem;
	font-weight: 700;
}
.c-heading-02 {
	font-size: 2.8rem;
	font-weight: 700;
}
.c-heading-03 {
	font-size: 2.4rem;
	font-weight: 700;
}
.c-heading-04 {
	font-size: 2rem;
	font-weight: 700;
}
.c-heading-strong {
	background-color: #7ad0e0;
	color: #fff;
	font-weight: 400;
	line-height: 1.4;
	padding: 16px 24px;
}
.c-heading-border {
	padding-left: 45px;
	position: relative;
}
.c-heading-border:before {
	background-color: #7AD0E0;
	content: "";
	height: 3px;
	position: absolute;
	left: 0;
	top: 15px;
	width: 30px;
}
* + p {
	margin-top: 40px;
}
.c-text-note {
	font-size: 1.2rem !important;
	font-weight: 300;
}
.u-text-blue,
.u-text-blue a {
	color: #3895A7 !important;
}
.c-text-centering {
	display: table;
	margin-left: auto;
	margin-right: auto;
}
.u-weight-500 {
	font-weight: 500 !important;
}
/* PC */
@media only screen and (min-width: 751px) {
	* + [class^="c-heading-"] {
		margin-top: 40px;
	}
	.c-text-centering-pc {
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	* + .c-heading-01 {
		margin-top: 44px;
	}
	* + .c-heading-02 {
		margin-top: 36px;
	}
	* + .c-heading-03 {
		margin-top: 32px;
	}
	* + .c-heading-04 {
		margin-top: 28px;
	}
	.c-heading-strong {
		padding: 8px 16px;
	}
	.c-heading-border {
		padding-left: 35px;
	}
	.c-heading-border:before {
		height: 3px;
		width: 20px;
	}
	* + p {
		margin-top: 24px;
	}
	* + .c-text-note {
		margin-top: 20px;
	}
	[data-size-sp="36"] {
		font-size: 3.6rem !important;
	}
	[data-size-sp="28"] {
		font-size: 2.8rem !important;
	}
	[data-size-sp="24"] {
		font-size: 2.4rem !important;
	}
	[data-size-sp="20"] {
		font-size: 2rem !important;
	}
	[data-size-sp="18"] {
		font-size: 1.8rem !important;
	}
	[data-size-sp="16"] {
		font-size: 1.6rem !important;
	}
	.c-text-centering-sp {
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
}



/* リスト
------------------------------------------ */

/* 通常リスト */
.c-list-disc > li {
	padding-left: 1em;
	position: relative;
}
* + .c-list-disc,
.c-list-disc > li + li {
	margin-top: 16px;
}
.c-list-disc > li:before {
	content: "・";
	font-family: "Noto Sans JP", sans-serif;
	position: absolute;
	left: 0;
	width: 1em;
}
/* SP */
@media only screen and (max-width: 750px) {
}

/* 数字リスト */
.c-list-order {
	counter-reset: orderlist;
}
.c-list-order > li {
	padding-left: 20px;
	text-indent: 0;
	position: relative;
}
* + .c-list-order,
.c-list-order > li + li {
	margin-top: 16px;
}
.c-list-order > li::before {
	counter-increment: orderlist;
	content: counter(orderlist) ".";
	display: block;
	margin-top: -4px;
	margin-right: 0.5em;
	min-width: 1.5em;
	position: absolute;
	left: 0;
	top: 0.25em;
	text-align: left;
}

.c-list-order-02 {
	counter-reset: orderlist2;
}
.c-list-order-02 > li {
	padding-left: 30px;
	text-indent: 0;
	position: relative;
}
* + .c-list-order-02,
.c-list-order-02 > li + li {
	margin-top: 16px;
}
.c-list-order-02 > li::before {
	counter-increment: orderlist2;
	content: counter(orderlist2)" ）";
	display: block;
	margin-top: -4px;
	margin-right: 0.5em;
	min-width: 1.5em;
	position: absolute;
	left: 0;
	top: 0.25em;
	text-align: left;
}
/* SP */
@media only screen and (max-width: 750px) {
}

/* 注釈リスト */
.c-list-note > li {
	padding-left: 1em;
	text-indent: -1em;
}
* + .c-list-note,
.c-list-note > li + li {
	margin-top: 16px;
}
.c-list-note > li:before {
	content: "※";
	font-family: "Noto Sans JP", sans-serif;
}
/* SP */
@media only screen and (max-width: 750px) {
}


.c-list--flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: -16px;
}
.c-list--flex > li {
	margin-top: 0 !important;
	margin-bottom: 16px;
	margin-right: 16px;
}
.c-list--flex[data-layout="center"] {
	justify-content: center;
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-list--flex[data-display-sp="block"] {
		display: block; !important;
	}
}


.c-list--margin-none > li {
	margin-top: 0 !important;
}
.c-list--center {
	display: table;
	margin-left: auto;
	margin-right: auto;
}


/* リンク・ボタン
------------------------------------------ */

[class^="c-button"][data-align="center"],
.c-link[data-align="center"] {
	margin-left: auto;
	margin-right: auto;
}
.c-button[data-align="right"],
.c-link[data-align="right"] {
	margin-left: auto;
	margin-right: 0;
}
a.u-text-link {
	text-decoration: underline;
}
a.u-inner-link {
	color: #3895A7;
	text-decoration: underline;
	position: relative;
}
a.u-inner-link[target="_blank"] {
	margin-right: 1.2em;
}
a.u-inner-link[target="_blank"]:after {
	background-image: url(/assets/images/common/icon_blank.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 12px;
	position: absolute;
	top: 50%;
	right: -1em;
	transform: translateY(-50%);
	width: 12px;
}
/* PC */
@media only screen and (min-width: 751px) {
	a.u-text-link:hover,
	a.u-inner-link:hover {
		opacity: 1;
		text-decoration: none;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
}


.c-button {
	display: table;
	min-width: 240px;
}
* + .c-button {
	margin-top: 40px;
}
.c-button .c-button__inner {
	background-color: #7AD0E0;
	border: 2px solid #7AD0E0;
	border-radius: 30px;
	color: #fff;
	font-size: 1.8rem;
	display: block;
	line-height: 56px;
	letter-spacing: 0.05em;
	padding: 0 50px;
	position: relative;
	text-align: center;
}
.c-button .c-button__inner:after {
	background-image: url(/assets/images/common/icon_arrow_white_02.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 11px;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: 0.2s ease-in-out;
	width: 6px;
}

.c-button--white .c-button__inner {
	background-color: #fff;
	border: 1px solid #fff;
	line-height: 58px;
	color: #3895A7;
}
.c-button--white .c-button__inner:after {
	background-image: url(/assets/images/common/icon_arrow_blue_02.svg);
}

.c-button-square {
	display: table;
}
.c-button-square .c-button__inner {
	border: 1px solid #3895A7;
	border-radius: 5px;
	color: #3895A7;
	display: block;
	font-weight: 700;
	padding: 16px 40px;
	position: relative;
}
.c-button-square .c-button__inner:after {
	background-image: url(/assets/images/common/icon_arrow_blue.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 18px;
	width: 8px;
}

.c-button--large {
	margin-left: auto;
	margin-right: auto;
	width: 800px;
}
* + .c-button--large {
	margin-top: 64px;
}
.c-button--large .c-button__inner {
	border: 1px solid #3895A7;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	min-height: 160px;
	padding: 24px 260px 24px 80px;
	position: relative;
}
.c-button--large .c-button__text > *:nth-child(n+2) {
	margin-top: 16px;
}
.c-button--large .c-button__lead {
	color: #3895A7;
	font-size: 2.4rem;
	font-weight: 700;
}
.c-button--large .c-link {
	margin-top: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 80px;
}
/* PC */
@media only screen and (min-width: 751px) {
	.c-button .c-button__inner:hover:after {
		right: 25px;
	}
	/*
	.c-button .c-button__inner:hover {
		background-color: #fff;
		color: #3895A7;
		opacity: 1;
	}
	.c-button .c-button__inner:hover:after {
		background-image: url(/assets/images/common/icon_arrow_cyan_02.svg);
		right: 25px;
	}
	.c-button--white .c-button__inner:hover {
		background: none;
		color: #fff;
	}
	.c-button--white .c-button__inner:hover:after {
		background-image: url(/assets/images/common/icon_arrow_white_02.svg);
	}
	*/
}
/* SP */
@media only screen and (max-width: 750px) {
	* + .c-button {
		margin-top: 24px;
	}
	.c-button--large {
		width: auto;
	}
	.c-button--large .c-button__inner {
		min-height: 100px;
		padding: 16px 160px 16px 30px;
	}
	.c-button--large .c-button__text > *:nth-child(n+2) {
		margin-top: 8px;
	}
	.c-button--large .c-button__lead {
		font-size: 2rem;
	}
	.c-button--large .c-link {
		right: 30px;
	}
}


.c-link {
	display: table;
}
* + .c-link {
	margin-top: 40px;
}
.c-link > * {
	display: block;
	letter-spacing: 0.05em;
	position: relative;
}
.c-link > *:after {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.c-link--large > * {
	font-size: 2rem;
	line-height: 80px;
	padding-right: 120px;
}
.c-link--large > *:before,
.c-link--large > *:after,
.c-link--middle > *:before,
.c-link--middle > *:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.2s ease-in-out;
}
.c-link--large > *:before,
.c-link--middle > *:before {
	border-radius: 50%;
	right: 0;
	z-index: 0;
}
.c-link--large > *:after,
.c-link--middle > *:after {
	background-repeat: none;
	background-position: center center;
	background-size: 100% auto;
}
.c-link--large > *:before {
	background-color: #7AD0E0;
	border: 2px solid #7AD0E0;
	height: 80px;
	width: 80px;
}
.c-link--large > *:after {
	background-image: url(/assets/images/common/icon_arrow_white_02.svg);
	height: 15px;
	right: 36px;
	width: 8px;
}
.c-link--middle > * {
	font-size: 1.4rem;
	line-height: 50px;
	padding-right: 75px;
}
.c-link--middle > *:before {
	background-color: #fff;
	border: 1px solid #3895A7;
	height: 50px;
	width: 50px;
}
.c-link--middle > *:after {
	background-image: url(/assets/images/common/icon_arrow_blue_02.svg);
	height: 11px;
	right: 22px;
	width: 6px;
}
.c-link--white > *:before {
	background-color: #fff;
	border-color: #fff;
}
.c-link--white > *:after {
	background-image: url(/assets/images/common/icon_arrow_cyan_02.svg);
}
.c-link--blue > *:before {
	background-color: #7AD0E0;
	border-color: #7AD0E0;
}
.c-link--blue > *:after {
	background-image: url(/assets/images/common/icon_arrow_white_02.svg);
}
.c-link--large > * span,
.c-link--middle > * span {
	display: block;
	transition: 0.2s ease-in-out;
}
/* PC */
@media only screen and (min-width: 751px) {
	.c-link--large > a:hover,
	a:hover .c-link--large > * {
		opacity: 1;
	}
	.c-link--middle > a:hover,
	a:hover .c-link--middle > * {
		opacity: 1;
	}
	.c-link--large[data-align="right"] > a:hover > span,
	.c-link--middle[data-align="right"] > a:hover > span,
	a:hover .c-link--large[data-align="right"] > * > span,
	a:hover .c-link--middle[data-align="right"] > * > span {
		margin-right: -10px;
	}
	.c-link--large > a:hover:before,
	a:hover .c-link--large > *:before {
		background-color: #fff;
		border-color: #7AD0E0;
	}
	.c-link--large > a:hover:after,
	a:hover .c-link--large > *:after {
		background-image: url(/assets/images/common/icon_arrow_cyan_02.svg);
	}
	.c-link--middle > a:hover:before,
	.c-link--white > a:hover:before,
	a:hover .c-link--middle > *:before,
	a:hover .c-link--white > *:before {
		background-color: #7AD0E0;
		border-color: #7AD0E0;
	}
	.c-link--middle > a:hover:after,
	.c-link--white > a:hover:after,
	a:hover .c-link--middle > *:after,
	a:hover .c-link--white > *:after {
		background-image: url(/assets/images/common/icon_arrow_white_02.svg);
	}
	.c-link--blue > a:hover:before,
	a:hover .c-link--blue > *:before {
		background-color: transparent;
		border-color: #3895A7;
	}
	.c-link--blue > a:hover:after,
	a:hover .c-link--blue > *:after {
		background-image: url(/assets/images/common/icon_arrow_blue_02.svg);
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-link--large > * {
		font-size: 1.8rem;
		line-height: 64px;
		padding-right: 80px;
	}
	.c-link--large > *:before {
		height: 64px;
		width: 64px;
	}
	.c-link--large > *:after {
		right: 29px;
	}
	.c-link--middle > * {
		line-height: 42px;
		padding-right: 55px;
	}
	.c-link--middle > *:before {
		height: 42px;
		width: 42px;
	}
	.c-link--middle > *:after {
		right: 19px;
	}
}


.c-link-arrow {
	margin-top: 40px;
}
.c-link-arrow[data-align="center"] {
	text-align: center;
}
.c-link-arrow[data-align="right"] {
	text-align: right;
}
.c-link-arrow > *,
.c-list-link--arrow > .c-list-link__item {
	padding-left: 18px;
	position: relative;
}
.c-link-arrow > *:before,
.c-list-link--arrow > .c-list-link__item:before {
	background-image: url(/assets/images/common/icon_arrow_blue.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 16px;
	position: absolute;
	top: 1px;
	left: 0;
	width: 8px;
}
.c-list-link--arrow > .c-list-link__item:before {
	top: 5px;
}
.c-list-link--arrow > .c-list-link__item > a {
	color: #3895A7;
}
.c-list-link > .c-list-link__item:nth-of-type(n+2) {
	margin-top: 4px;
}
* + .c-list-link {
	margin-top: 40px;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
}


.c-list-tag {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: -8px;
}
* + .c-list-tag {
	margin-top: 40px;
}
.c-list-tag__item {
	margin-right: 8px;
	margin-bottom: 8px;
}
.c-tag > *,
.c-list-tag__item > * {
	background-color: #fff;
	border: 2px solid #E4F4F7;
	border-radius: 100px;
	color: #3895A7 !important;
	font-size: 1.2rem;
	display: block;
	line-height: 1.16;
	padding: 6px 20px;
	text-align: center;
}
.c-tag--category > *,
.c-list-tag--category .c-list-tag__item > * {
	background-color: #E4F4F7;
	border: none;
	border-radius: 4px;
	padding: 5px 15px;
}
.c-tag > *,
.c-tag--category > * {
	display: inline-block;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-list-tag__item {
		margin-right: 4px;
	}
}

.c-list-anchor {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: -16px;
}
.c-list-anchor[data-align="center"] {
	justify-content: center;
}
* + .c-list-anchor {
	margin-top: 40px;
}
.c-list-anchor__item {
	margin-bottom: 16px;
}
.c-list-anchor__item + .c-list-anchor__item {
	margin-left: 16px;
}
.c-list-anchor__item > a {
	color: #7AD0E0;
	display: block;
	font-size: 1.4rem;
	padding-left: 30px;
	position: relative;
}
.c-list-anchor__item > a:before {
	background-image: url(/assets/images/common/icon_arrow_anchor.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 20px;
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
}


.c-button-download {
	display: table;
}
* + .c-button-download {
	margin-top: 40px;
}
.c-button-download .c-button__inner {
	background-color: #7AD0E0;
	border-radius: 10px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	display: block;
	height: 60px;
	letter-spacing: 0.05em;
	padding-left: 70px;
	padding-right: 40px;
	position: relative;
}
.c-button-download .c-button__inner:before {
	background-image: url(/assets/images/common/icon_download.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 22px;
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	width: 27px;
}
.c-button-download .c-button__inner span {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
}

.c-button-map {
	width: 300px;
}
* + .c-button-map {
	margin-top: 24px;
}
.c-button-map .c-button__inner {
	background-color: #fff;
	border: 1px solid #3895A7;
	border-radius: 5px;
	color: #3895A7;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	line-height: 60px;
	text-align: center;
}
.c-button-map .c-button__inner > span:after {
	background-image: url(/assets/images/common/icon_blank.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 12px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
	width: 12px;
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-button-map {
		max-width: 100%;
		width: 200px;
	}
	.c-button-map .c-button__inner {
		font-size: 1.2rem;
		line-height: 40px;
	}
}

.c-pagenation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
* + .c-pagenation {
	margin-top: 80px;
}
.c-pagenation-link {
	border: 1px solid #ccc;
	border-radius: 4px;
	height: 50px;
	margin-top: 0 !important;
	width: 50px;
}
.c-pagenation-link a {
	display: block;
	color: transparent;
	font-size: 0;
	height: 100%;
	position: relative;
	transition: 0s ease-in-out;
}
.c-pagenation-link.disabled a {
	opacity: .4;
	pointer-events: none;
}
.c-pagenation-link a:before {
	border-top: 2px solid #3895A7;
	border-right: 2px solid #3895A7;
	content: "";
	height: 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
}
.c-pagenation-link--prev a:before {
	margin-left: 2px;
	transform: translate(-50%,-50%) rotate(-135deg);
}
.c-pagenation-link--next a:before {
	margin-left: -2px;
	transform: translate(-50%,-50%) rotate(45deg);
}
.c-pagenation-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.c-pagenation-list > li {
	height: 50px;
	margin-left: 4px;
	margin-right: 4px;
	width: 50px;
}
.c-pagenation-list > li a {
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	color: #3895A7;
	display: block;
	font-weight: 700;
	height: 100%;
	line-height: 48px;
	position: relative;
	text-align: center;
}
.c-pagenation-list > li.current a {
	background-color: #3895A7;
	border-color: #3895A7;
	color: #fff;
}
/* PC */
@media only screen and (min-width: 751px) {
	.c-pagenation-link--prev {
		margin-right: 36px;
	}
	.c-pagenation-link--next {
		margin-left: 36px;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-pagenation {
		justify-content: space-between;
	}
	.c-pagenation-list > li {
		margin-left: 2px;
		margin-right: 2px;
	}
}


/* パンくず
------------------------------------------ */
.l-breadcrumb {
	padding: 15px 15px 0;
}
.l-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.l-breadcrumb__list > li {
	margin-right: 10px;
	margin-bottom: 5px;
	position: relative;
}
.l-breadcrumb__list > li > a,
.l-breadcrumb__list > li > span {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.2rem;
	line-height: 1.5;
}
.l-breadcrumb__list > li > a {
	color: #3895A7;
}
.l-breadcrumb__list > li {
	padding-right: 20px;
}
.l-breadcrumb__list > li:after {
	content: "＞";
	font-size: 1.2rem;
	margin-top: 1.5px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.l-breadcrumb__list > li:last-child {
	margin-right: 0;
	padding-right: 0;
}
.l-breadcrumb__list > li:last-child:after {
	display: none;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
}



/* タイトル・見出し
------------------------------------------ */
.c-pagetitle {
	padding: 15px 15px 0;
	position: relative;
	z-index: 1;
}
.c-pagetitle h1 {
	font-size: 6rem;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1.3;
	margin-top: 24px;
}
.c-pagetitle h1 .c-pagetitle__subtext {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.3em;
}

/* c-pagetitle--second */
.c-pagetitle--second {
	overflow: hidden;
}
.c-pagetitle--second .c-pagetitle__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 100%;
	width: 100%;
	z-index: -1;
}
.c-pagetitle--second .c-pagetitle__bg img {
	min-height: 100%;
	min-width: 100%;
	max-width: inherit;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.c-pagetitle--second h1,
.c-pagetitle--second .l-breadcrumb__list > li,
.c-pagetitle--second .l-breadcrumb__list > li a,
.c-pagetitle--second .l-breadcrumb__list > li + li:before {
	color: #fff;
}
.c-pagetitle .l-breadcrumb {
	padding: 0;
}

/* c-pagetitle--third */
.c-pagetitle--third h1 {
	color: #3895A7;
}
.c-pagetitle--third .c-pagetitle__lead {
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	margin-top: 24px;
	padding-left: 40px;
	position: relative;
}
.c-pagetitle--third .c-pagetitle__lead:before {
	background-color: #7AD0E0;
	content: "";
	height: 2px;
	position: absolute;
	left: 0;
	top: 10px;
	width: 30px;
}
.c-pagetitle--third .c-pagetitle__subtitle {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin-top: 8px;
	height: 58px;
	overflow: hidden;
	padding: 0 10px;
	position: relative;
}
.c-pagetitle--third .c-pagetitle__subtitle .c-pagetitle__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	z-index: 0;
}
.c-pagetitle--third .c-pagetitle__subtitle .c-pagetitle__lead {
	margin-top: 0;
}
.c-pagetitle--third .c-pagetitle__productName {
	color: #3895A7;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-top: 24px;
	padding-left: 24px;
	position: relative;
}
.c-pagetitle--third .c-pagetitle__productName:before {
	background-color: #7AD0E0;
	content: "";
	height: 2px;
	position: absolute;
	left: 0;
	top: 15px;
	width: 15px;
}

/* c-pagetitle--other */
.c-pagetitle--other {
	padding-top: 80px;
}
.c-pagetitle--other h1 {
	color: #3895A7;
}

.c-pagetitle--blue h1,
.c-pagetitle--blue .l-breadcrumb__list > li,
.c-pagetitle--blue .l-breadcrumb__list > li a {
	color: #3895A7;
}
.c-pagetitle--blue .l-breadcrumb__list > li + li:before {
	color: #222;
}
.c-pagetitle[data-height="initial"] {
	min-height: initial !important;
}

/* PC */
@media only screen and (min-width: 751px) {
	.c-pagetitle__inner {
		margin-left: auto;
		margin-right: auto;
		width: 1000px;
	}
	.c-pagetitle--second {
		min-height: 250px;
	}
	.c-pagetitle--third {
		min-height: 220px;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-pagetitle__inner {
		padding-left: 10px;
		padding-right: 10px;
	}
	.c-pagetitle--second,
	.c-pagetitle--third {
		/*min-height: 58.666vw;*/
		min-height: 220px;
	}
	.c-pagetitle--second .c-pagetitle__bg img {
		max-height: 58.666vw;
		min-width: inherit;
		width: auto;
	}
	.c-pagetitle--third .c-pagetitle__subtitle {
		margin-top: 20px;
		height: 100px;
	}
	.c-pagetitle--third .c-pagetitle__subtitle .c-pagetitle__lead {
		padding-left: 30px;
	}
	.c-pagetitle--third .c-pagetitle__subtitle .c-pagetitle__lead:before {
		width: 20px;
	}
	.c-pagetitle--other {
		padding-top: 40px;
	}
}


/* アイコン
------------------------------------------ */

.c-icon-new {
	background-color: #FDF64C;
	border-radius: 100px;
	color: #242920 !important;
	display: inline-block;
	font-style: normal;
	font-size: 1rem;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	vertical-align: middle;
	width: 40px;
}
.c-icon-required {
	background-color: #FDF64C;
	border-radius: 4px;
	color: #242920 !important;
	display: inline-block;
	font-style: normal;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	vertical-align: middle;
	width: 40px;
}
.c-icon-pdf {
	background-image: url(/assets/images/common/icon_pdf.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	content: "";
	color: transparent;
	font-size: 0;
	height: 24px;
	display: inline-block;
	vertical-align: top;
	margin-left: 4px;
	width: 20px;
}



/* テーブル
------------------------------------------ */

/*
.c-table[data-align="top"] table th,
.c-table[data-align="top"] table td {
	vertical-align: top;
}
*/
.c-table[data-align="middle"] table th,
.c-table[data-align="middle"] table td {
	vertical-align: middle !important;
}
.c-table table {
	border-top: 1px solid #7AD0E0;
	border-left: 1px solid #7AD0E0;
}
.c-table table th,
.c-table table td {
	border-bottom: 1px solid #7AD0E0;
	border-right: 1px solid #7AD0E0;
	padding: 16px;
	text-align: left;
	vertical-align: top;
}
.c-table table th {
	background-color: #E4F4F7;
	color: #3895A7;
	font-weight: 700;
}
.c-table table thead th {
	text-align: center;
}
.c-table table thead th.small {
	padding-top: 8px;
	padding-bottom: 8px;
}
.c-table table .color01 {
	background-color: #E4F4F7 !important;
}
.c-table table .color02 {
	background-color: #FBEFF3 !important;
}
.c-table-caption + *,
* + .c-table-caption {
	margin-top: 16px !important;
}
* + .c-table {
	margin-top: 40px;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-table table th,
	.c-table table td {
		font-size: 1.4rem;
		padding: 12px;
	}
	* + .c-table {
		margin-top: 24px;
	}
	.c-table--scroll {
		overflow-x: scroll;
		padding-bottom: 15px;
		position: relative;
		width: 100%;
	}
	.c-table--scroll:before {
		background-image: url(/assets/images/common/icon_scroll.svg);
		background-repeat: no-repeat;
		background-position: left top;
		background-size: 100% auto;
		content: "";
		position: absolute;
		height: 80px;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 100px;
		z-index: 1;
	}
	.c-table--scroll.is-scrolled:before {
		display: none;
	}
	.c-table--scroll .c-table-inner {
		width: 1000px;
	}
	.c-table--scroll table {
		white-space: nowrap;
	}
	.c-table--vertical table colgroup {
		display: none;
	}
	.c-table--vertical table th,
	.c-table--vertical table td {
		display: block;
		width: 100%;
	}
}


/* 画像レイアウト
------------------------------------------ */

.c-figure {
	display: table;
	margin-left: auto;
	margin-right: auto;
}
.c-figure .c-figure__item img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.c-figure .c-figure__caption {
  font-size: 1.4rem;
	margin-top: 8px;
	text-align: center;
}
.c-figure--border .c-figure__item img {
	border: 1px solid #7AD0E0;
}
.c-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
* + .c-figure,
* + .c-flex {
	margin-top: 40px;
}
.c-flex--imageLeft .c-flex__image,
.c-flex--imageRight .c-flex__image,
.c-flex--imageLeft .c-flex__text,
.c-flex--imageRight .c-flex__text {
	margin: 0;
}
.c-flex--imageLeft .c-flex__text,
.c-flex--imageRight .c-flex__text {
	text-align: left;
}
.c-flex__item .c-figure {
	display: block;
}
.c-flex__item .c-figure .c-figure__item img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/* PC */
@media only screen and (min-width: 751px) {
	.c-flex__item {
		margin-top: 20px;
		margin-left: 20px;
		width: 320px;
	}
	.c-flex[data-column-pc="2"] {
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		max-width: 680px;
	}
	.c-flex[data-column-pc="2"] .c-flex__item {
		margin-left: 10px;
		margin-right: 10px;
		max-width: 320px;
		width: auto;
	}
	.c-flex[data-column-pc="3"] .c-flex__item:nth-of-type(3n+1) {
		margin-left: 0;
	}
	.c-flex[data-column-pc="2"] .c-flex__item:nth-of-type(-n+2),
	.c-flex[data-column-pc="3"] .c-flex__item:nth-of-type(-n+3) {
		margin-top: 0;
	}
	.c-flex--imageLeft .c-flex__text,
	.c-flex--imageRight .c-flex__text {
		width: 640px;
	}
	.c-flex--imageRight[data-layout="row-reverse"] {
		flex-direction: row-reverse;
	}
	.c-flex--large .c-flex__image {
		width: 480px;
	}
	.c-flex--large .c-flex__text {
		width: 480px;
	}
	.c-flex--small .c-flex__image {
		width: 200px;
	}
	.c-flex--small .c-flex__text {
		width: 760px;
	}
	.c-flex--center {
		justify-content: center;
	}
	.c-flex--center .c-flex__item {
		margin-left: 10px;
		margin-right: 10px;
		max-width: 320px;
		width: auto;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-flex {
		justify-content: center;
	}
	.c-flex__item {
		width: 100%;
	}
	.c-flex__item + .c-flex__item {
		margin-top: 20px;
	}
	/*
	.c-flex__item img {
		width: 100%;
	}
	*/
	.c-flex[data-column-sp="2"] .c-flex__item {
		width: 48%;
	}
	.c-flex[data-column-sp="2"] .c-flex__item:nth-of-type(-n+2) {
		margin-top: 0;
	}
	* + .c-figure,
	* + .c-flex {
		margin-top: 24px;
	}
	.c-figure .c-figure__caption {
		font-size: 1.2rem;
	}
	.c-figure[data-width-sp="full"] {
		margin-left: -25px;
		margin-right: -25px;
	}
}


/* 動画
------------------------------------------ */
.c-movie {
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	padding-top: 360px;
	position: relative;
	width: 548px;
}
.c-movie > * {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	height: 100%;
	width: 100%;
}
* + .c-movie {
	margin-top: 40px;
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-movie {
		padding-top: 60.533vw;
		width: auto;
	}
	* + .c-movie {
		margin-top: 24px;
	}
}


/* 仕切り線
------------------------------------------ */
.c-separate {
  background-color: #707070;
  border: none;
  color: #707070;
	display: block;
  height: 1px;
	margin-top: 32px;
	margin-bottom: 32px;
}
.c-separate--gray {
	background-color: #ccc;
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-separate {
		margin-top: 24px;
		margin-bottom: 24px;
	}
}



/* 記事
------------------------------------------ */
.c-article-sort > dl + dl {
	margin-top: 16px;
}
.c-article-sort > dl dt {
	font-size: 1.4rem;
	font-weight: 700;
}
.c-article-sort + * {
	margin-top: 40px;
	margin-top: 80px;
}
.c-article-title {
	font-size: 2rem;
	letter-spacing: 0.05em;
	padding-left: 45px;
	position: relative;
}
.c-article-title:before {
	background-color: #7AD0E0;
	content: "";
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
}
.c-article-title + * {
	margin-top: 24px;
}
.c-article-list,
.c-article-list_ir_doc {
	border-top: 1px solid #000;
}
.c-article-list--pdf {
	border-top-color: #D6DADD;
}
.c-article-list__item,
.c-article-list_ir_doc__item {
	border-bottom: 1px solid #D6DADD;
}
.c-article-list__item.is-hide,
.c-article-list_ir_doc__item.is-hide {
	display: none;
}
.c-article-list__item > a,
.c-article-list_ir_doc__item > a {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 24px 60px 24px 20px;
	position: relative;
}
.c-article-list__item > a:after,
.c-article-list_ir_doc__item > a:after {
	background-image: url(/assets/images/common/icon_arrow_cyan.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.2s ease-in-out;
	right: 40px;
	width: 8px;
}
.c-article-list__item > a > *,
.c-article-list_ir_doc__item > a > * {
	margin-top: 0;
}
.c-article-list .c-article__date,
.c-article-list_ir_doc .c-article__date {
	color: #3895A7;
}
.c-article-list .c-tag,
.c-article-list_ir_doc .c-tag {
	width: 110px;
}
.c-article-list .c-tag span,
.c-article-list_ir_doc .c-tag span {
	padding: 5px;
	width: 100%;
}
.c-article-list .c-article__title,
.c-article-list_ir_doc .c-article__title {
	max-width: 640px;
}
.c-article-list__item > a[target="_blank"] .c-article__title:after,
.c-article-list_ir_doc__item > a[target="_blank"] .c-article__title:after {
	background-image: url(/assets/images/common/icon_blank.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	display: inline-block;
	margin-left: 4px;
	vertical-align: middle;
	height: 12px;
	width: 12px;
}
.c-article-list__item > a[href$=".pdf"] .c-article__title:after,
.c-article-list_ir_doc__item > a[href$=".pdf"] .c-article__title:after {
	background-image: url(/assets/images/common/icon_pdf.svg);
	background-position: left top;
	height: 24px;
	width: 20px;
}
.c-article-list--pdf > li a {
	color: #3895A7;
	padding: 20px 0;
}
.c-article-list--pdf > li a:after {
	display: none;
}
.c-article-list--pdf > li a > span {
	display: block;
}
.c-article-list--pdf > li a > span:after {
	background-image: url(/assets/images/common/icon_pdf.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	content: "";
	height: 24px;
	display: inline-block;
	vertical-align: top;
	margin-left: 8px;
	width: 20px;
}

/* PC */
@media only screen and (min-width: 751px) {
	.c-article-sort > dl {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.c-article-sort > dl dt {
		padding-top: 3px;
		width: 155px;
	}
	.c-article-sort > dl dd {
		max-width: calc(100% - 155px);
	}
	.c-article-list__item > a > *:nth-child(n+2),
	.c-article-list_ir_doc__item > a > *:nth-child(n+2) {
		margin-left: 20px;
	}
	.c-article-list__item > a:hover,
	.c-article-list_ir_doc__item > a:hover {
		background-color: #E4F4F7;
		opacity: 1;
	}
	.c-article-list__item > a.disabled,
	.c-article-list_ir_doc__item > a.disabled {
		pointer-events: none;
	}
	.c-article-list__item > a.disabled:after,
	.c-article-list_ir_doc__item > a.disabled:after {
		display: none;
	}
	.c-article-list__item > a:hover .c-tag--category > *,
	.c-article-list_ir_doc__item > a:hover .c-tag--category > * {
		background-color: #cce9ef;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-article-sort > dl + dl {
		margin-top: 32px;
	}
	.c-article-sort > dl dd {
		margin-top: 16px;
	}
	.c-article-sort + * {
		margin-top: 32px;
	}
	.c-article-title {
		padding-left: 35px;
	}
	.c-article-title:before {
		width: 20px;
	}
	.c-article-list__item > a,
	.c-article-list_ir_doc__item > a {
		align-items: center;
		padding: 20px 40px 20px 0;
	}
	.c-article-list--pdf > li a {
		padding: 8px 0;
	}
	.c-article-list__item > a:after,
	.c-article-list_ir_doc__item > a:after {
		right: 16px;
	}
	.c-article-list .c-article__date,
	.c-article-list_ir_doc .c-article__date {
		font-size: 1.2rem;
	}
	.c-article-list .c-tag,
	.c-article-list_ir_doc .c-tag {
		margin-left: 16px;
	}
	.c-article-list .c-article__title,
	.c-article-list_ir_doc .c-article__title {
		font-size: 1.4rem;
		max-width: inherit;
		margin-top: 8px;
		width: 100%;
	}
}


/* 年 絞り込み */
.c-sort-year {
	display: inline-block;
	position: relative;
	cursor: pointer;
	vertical-align: top;
}
.c-sort-year .c-sort-year__option {
	background-color: #fff;
	border: 1px solid #ccc;
	border-top: none;
	display: none;
	list-style: none;
	overflow: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 101;
}
.c-sort-year__value,
.c-sort-year .c-sort-year__option > li,
.c-sort-year .c-sort-year__option > li label {
	cursor: pointer;
	display: block;
	padding: 4px 8px;
	text-align: center;
}
.c-sort-year .c-sort-year__option > li {
	padding: 0;
	position: relative;
}
.c-sort-year .c-sort-year__option > li input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}
.c-sort-year__value {
	background-color: #fff !important;
	border: 1px solid #ccc;
	cursor: pointer;
	color: #3895A7;
	display: block;
	font-size: 1.6rem;
	overflow: hidden;
	line-height: 32px;
	padding: 0 40px;
	position: relative;
	text-align: center;
	width: 100%;
	min-width: 287px;
	z-index: 11;
}
.c-sort-year__value:after {
	border-color: #3895A7 transparent transparent transparent;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	content:"";
	height: 0;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
}
.c-sort-year .c-sort-year__option > li + li {
	border-top: 1px solid #ccc;
}
.c-sort-year .c-sort-year__option > li:hover {
	background-color: #ECF1F2;
}
.c-sort-year__overlay {
	cursor: default;
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
.c-sort-year.is-open .c-sort-year__overlay {
	display: block !important;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 768px) {
	.c-sort-year {
		width: 100%;
	}
	.c-sort-year__value {
		line-height: 40px;
	}
}


/* 年 絞り込み（NEWS ＞ IRプレスリリース） */
.c-article-sort__irdocs > dl + dl {
	margin-top: 16px;
}
.c-article-sort__irdocs > dl dt {
	font-size: 1.4rem;
	font-weight: 700;
}
.c-article-sort__irdocs + * {
	margin-top: 120px;
}
/* PC */
@media only screen and (min-width: 751px) {
	.c-article-sort__irdocs > dl {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.c-article-sort__irdocs > dl dt {
		padding-top: 3px;
		width: 155px;
	}
	.c-article-sort__irdocs > dl dd {
		max-width: calc(100% - 155px);
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-article-sort__irdocs > dl + dl {
		margin-top: 32px;
	}
	.c-article-sort__irdocs > dl dd {
		margin-top: 16px;
	}
}
.c-sort-year__irdocs {
	display: inline-block;
	position: relative;
	cursor: pointer;
	vertical-align: top;
}
.c-sort-year__irdocs .c-sort-year__option__irdocs {
	background-color: #fff;
	border: 1px solid #ccc;
	border-top: none;
	display: none;
	list-style: none;
	overflow: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 101;
}
.c-sort-year__value__irdocs,
.c-sort-year__irdocs .c-sort-year__option__irdocs > li,
.c-sort-year__irdocs .c-sort-year__option__irdocs > li label {
	cursor: pointer;
	display: block;
	padding: 4px 8px;
	text-align: center;
}
.c-sort-year__irdocs .c-sort-year__option__irdocs > li {
	padding: 0;
	position: relative;
}
.c-sort-year__irdocs .c-sort-year__option__irdocs > li input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}
.c-sort-year__value__irdocs {
	background-color: #fff !important;
	border: 1px solid #ccc;
	cursor: pointer;
	color: #3895A7;
	display: block;
	font-size: 1.6rem;
	overflow: hidden;
	line-height: 32px;
	padding: 0 40px;
	position: relative;
	text-align: center;
	width: 100%;
	min-width: 287px;
	z-index: 11;
}
.c-sort-year__value__irdocs:after {
	border-color: #3895A7 transparent transparent transparent;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	content:"";
	height: 0;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
}
.c-sort-year__irdocs .c-sort-year__option__irdocs > li + li {
	border-top: 1px solid #ccc;
}
.c-sort-year__irdocs .c-sort-year__option__irdocs > li:hover {
	background-color: #ECF1F2;
}
.c-sort-year__overlay__irdocs {
	cursor: default;
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
.c-sort-year__irdocs.is-open .c-sort-year__overlay__irdocs{
	display: block !important;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 768px) {
	.c-sort-year__irdocs {
		width: 100%;
	}
	.c-sort-year__value__irdocs {
		line-height: 40px;
	}
}



/* カテゴリ 絞り込み */
.c-sort-category {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: -8px;
}
.c-sort-category .c-sort-category__item {
	font-size: 1.4rem;
	margin-right: 8px;
	margin-bottom: 8px;
}
.c-sort-category .c-sort-category__item input[type="radio"] {
	display: none;
}
.c-sort-category .c-sort-category__item label {
	background-color: rgba(204, 204, 204, 0.25);
	border-radius: 5px;
	cursor: pointer;
	display: block;
	line-height: 1.16;
	padding: 6px 16px;
	text-align: center;
}
.c-sort-category .c-sort-category__item input[type="radio"]:checked + label {
	background-color: #7AD0E0;
	color: #fff;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-sort-category__item {
		margin-right: 6px;
	}
}

/* タブ切り替え */
.c-tab-category,
.c-tab-category--type2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: -8px;
}
.c-tab-category--type2 {
	margin-bottom: -8px;
}
.c-tab-category--type2 > li {
	background-color: rgba(204, 204, 204, 0.25);
	border-radius: 5px;
	cursor: pointer;
	display: block;
	font-size: 1.4rem;
	line-height: 1.16;
	margin-right: 8px;
	margin-bottom: 8px;
	padding: 6px 16px;
	text-align: center;
}
.c-tab-category--type2 > li.is-active {
	background-color: #7AD0E0;
	color: #fff;
}
.c-tab-category-content__block {
	display: none;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-tab-category--type2 > li {
		margin-right: 6px;
	}
}


/* お問い合わせ・資料請求
------------------------------------------ */
.c-container-inquiry {
	background-color: #E4F4F7;
	padding: 75px;
	text-align: center;
}
.c-container-inquiry .c-container-head {
	color: #3895A7;
	font-size: 2.4rem;
	font-weight: 700;
}
.c-container-inquiry .c-container-button {
	margin: 32px auto 0;
	width: 500px;
}
.c-container-inquiry .c-container-button a {
	background-color: #3895A7;
	border-radius: 10px;
	color: #fff;
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 80px;
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-container-inquiry {
		padding: 100px 25px;
	}
	.c-container-inquiry .c-container-head {
		font-size: 1.6rem;
	}
	.c-container-inquiry .c-container-button {
		margin-top: 24px;
		max-width: 500px;
		width: auto;
	}
	.c-container-inquiry .c-container-button a {
		font-size: 1.8rem;
	}
}

.c-container-solution {
	background-color: #E4F4F7;
	padding: 75px;
	text-align: center;
}
.c-container-solution .c-container-head {
	font-size: 2.4rem;
	font-weight: 700;
}
.c-container-solution .c-container-box {
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin: 16px auto 0;
	padding: 10px 32px;
	width: 800px;
}
.c-container-solution .c-container-box > * {
	margin-top: 0;
}
/*
.c-container-solution .c-container-box__tag {
	background-color: #FDF64C;
	border-radius: 50%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	width: 60px;
}
*/
.c-container-solution .c-container-box__image {
	width: 407px;
}
.c-container-solution .c-container-box__button {
	margin-left: auto;
	width: 280px;
}
.c-container-solution .c-container-box__button a {
	border: 1px solid #3895A7;
	border-radius: 5px;
	color: #3895A7;
	font-weight: 700;
	display: block;
	line-height: 60px;
	text-align: center;
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-container-solution {
		padding: 48px 25px;
	}
	.c-container-solution .c-container-head {
		font-size: 2rem;
	}
	.c-container-solution .c-container-box {
		margin: 50px auto 0;
		padding: 20px 16px;
		position: relative;
		width: auto;
	}
	/*
	.c-container-solution .c-container-box__tag {
		font-size: 1.3rem;
		height: 50px;
		line-height: 50px;
		margin: 0 auto;
		position: absolute;
		top: -25px;
		left: 0;
		right: 0;
		width: 50px;
	}
	*/
	.c-container-solution .c-container-box__image {
		width: 100%;
	}
	.c-container-solution .c-container-box__button {
		margin-top: 16px;
		margin-left: 0;
		width: 100%;
	}
}


/* カテゴリリンク
------------------------------------------ */
.c-container-category .c-container-head {
	font-size: 2.8rem;
	text-align: center;
}
.l-section--bg-blue .c-container-category .c-container-head {
	color: #fff;
}
.c-container-category .c-container-head__subtext {
	font-size: 1.6rem;
	color: #242920;
}
.c-container-category .c-category-list {
	margin-top: 40px;
}
.c-container-category .c-category-list .c-category-list__item {
	height: 100px;
	margin-top: 20px;
}
.c-container-category .c-category-list .c-category-list__item > a {
	background-color: #fff;
	border: 1px solid #3895A7;
	border-radius: 10px;
	color: #3895A7;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-weight: 700;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
}
.c-container-category .c-category-list .c-category-list__item > a:after {
	background-image: url(/assets/images/common/icon_arrow_blue.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	content: "";
	height: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	width: 8px;
}
.c-container-category .c-category-list .c-category-list__item > a .c-icon {
	display: block;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
}
.c-container-category .c-category-list .c-category-list__item > a span {
	line-height: 1.3;
}
/* PC */
@media only screen and (min-width: 751px) {
	.c-container-category .c-category-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.c-container-category .c-category-list .c-category-list__item {
		width: 48.5%;
	}
	.c-container-category .c-category-list .c-category-list__item:nth-of-type(-n+2) {
		margin-top: 0;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-container-category .c-container-head {
		font-size: 2.4rem;
	}
	.c-container-category .c-category-list {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.c-container-category .c-category-list .c-category-list__item {
		height: 75px;
		margin-top: 10px;
	}
	.c-container-category .c-category-list .c-category-list__item:nth-of-type(1) {
		margin-top: 0;
	}
	.c-container-category .c-category-list .c-category-list__item > a {
		justify-content: flex-start;
		padding-left: 40px;
	}
	.c-container-category .c-category-list .c-category-list__item > a:after {
		right: 24px;
	}
}


/* 第三階層インデックス
--------------------------------------------- */
.c-third-categoryList {
	margin-left: auto;
	margin-right: auto;
}
* + .c-third-categoryList {
  margin-top: 80px;
  margin-bottom: 160px;
}
.l-section-inner * + .c-third-categoryList {
	margin-bottom: 80px;
}
.c-third-categoryList__item {
  margin-top: 20px;
}
.c-third-categoryList__item > a {
  color: #fff;
  display: block;
  overflow: hidden;
  padding-top: 200px;
  position: relative;
}
.c-third-categoryList__item > a .item-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  z-index: 1;
}
.c-third-categoryList__item > a .item-image img {
  width: 100%;
}
.c-third-categoryList__item > a .item-text {
  font-size: 2rem;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}
/* PC */
@media only screen and (min-width: 751px) {
  .c-third-categoryList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
		max-width: 1000px;
  }
  .c-third-categoryList__item {
    margin-left: 20px;
    width: 320px;
  }
  .c-third-categoryList__item:nth-of-type(3n+1) {
    margin-left: 0;
  }
  .c-third-categoryList__item:nth-of-type(-n+3) {
    margin-top: 0;
  }
}
/* SP */
@media only screen and (max-width: 750px) {
  * + .c-third-categoryList {
		margin-top: 40px;
    margin-bottom: 100px;
		max-width: calc(100vw - 50px);
  }
  .l-section-inner * + .c-third-categoryList {
		margin-bottom: 60px;
	}
  .c-third-categoryList__item:nth-of-type(1) {
    margin-top: 0;
  }
  .c-third-categoryList__item > a {
    padding-top: 100px;
  }
  .c-third-categoryList__item > a .item-text {
    font-size: 1.6rem;
  }
}


/* ポップアップ
-------------------------------------------------- */
.c-box-popup {
  display: none;
}
.popup-content {
  background-color: #fff;
  padding: 60px 100px;
}
.popup-content__title {
  color: #3895A7;
  font-size: 2.4rem;
  font-weight: 500;
}
.popup-content__title + * {
	margin-top: 24px;
}
/* PC */
@media print, screen and (min-width: 769px) {
}
/* SP */
@media only screen and (max-width: 768px) {
  .popup-content {
    padding: 60px 24px;
  }
	.popup-content__title {
		font-size: 2rem;
	}
	.popup-content__title + * {
		margin-top: 16px;
	}
}


/* 開閉アコーディオン
------------------------------------------ */
.c-toggle__item {
	border: 1px solid #3895A7;
}
.c-toggle__item + .c-toggle__item {
	margin-top: 20px;
}
.c-toggle__head {
	position: relative;
}
.c-toggle__head:after {
	border: 1px solid #707070;
	border-radius: 50%;
	content: "";
	height: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 26px;
	width: 30px;
}
.c-toggle__head > a {
	color: #3895A7;
	display: block;
	font-size: 2rem;
	font-weight: 700;
	padding: 16px 80px 16px 40px;
	position: relative;
	width: 100%;
	z-index: 1;
}
.c-toggle__head > a:before,
.c-toggle__head > a:after {
	background-color: #3895A7;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.c-toggle__head > a:before {
	height: 2px;
	right: 35px;
	width: 14px;
}
.c-toggle__head > a:after {
	height: 14px;
	right: 41px;
	width: 2px;
}
.c-toggle__head.is-open > a:after {
	display: none;
}
.c-toggle__content {
	border-top: 1px solid #3895A7;
	display: none;
	padding: 24px 40px;
}
/* PC */
@media only screen and (min-width: 751px) {
}
/* SP */
@media only screen and (max-width: 750px) {
	.c-toggle__item + .c-toggle__item {
		margin-top: 16px;
	}
	.c-toggle__head:after {
		right: 18px;
	}
	.c-toggle__head > a:before {
		right: 27px;
	}
	.c-toggle__head > a:after {
		right: 33px;
	}
	.c-toggle__head > a {
		font-size: 1.4rem;
		padding-left: 16px;
		padding-right: 60px;
	}
	.c-toggle__content {
		padding: 16px;
	}
}


/* サイト内検索（ヘッダー以外）
------------------------------------------ */
.c-search-freeword form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.c-search-freeword form input {
	background-color: #fff;
	border: 2px solid #E4F4F7;
	border-radius: 100px;
	color: #24292d;
	font-size: 1.2rem;
	display: block;
	height: 40px;
	transition: 0.2s ease-in-out;
	padding: 10px 30px;
	width: calc(100% - 55px);
}
.c-search-freeword form input::placeholder {
	color: #3895A7;
}
.c-search-freeword .mt-site-search-form__button {
	background: #3895A7 url(/assets/images/common/icon_search_white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 15px 15px;
	border-radius: 50%;
	cursor: pointer;
	color: #fff;
	font-size: 0;
	height: 40px;
	margin-left: 10px;
	text-align: center;
	width: 40px;
}
/* SP */
@media only screen and (max-width: 750px) {
  .c-search-freeword form input {
    padding: 10px 16px;
  }
}

.c-search-box {
	background-color: #E4F4F7;
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
	padding: 35px;
}
* + .c-search-box {
	margin-top: 80px;
}
.c-search-box .c-search-box__title {
	text-align: center;
}
/* PC */
@media only screen and (min-width: 751px) {
	.p-notfound-content .p-image-character + p {
		margin-top: 64px;
	}
	.p-notfound-content .p-image-character img {
		width: 238px;
	}
	.c-search-box {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		width: 820px;
	}
	.c-search-box .c-search-box__title {
		width: 320px;
	}
	.c-search-box .c-search-box__content {
		width: calc(100% - 320px);
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	.p-notfound-content .p-image-character img {
		width: 165px;
	}
	.c-search-box  {
		padding: 24px 12px;
	}
	.c-search-box .c-search-box__title {
		font-size: 1.5rem;
	}
	.c-search-box .c-search-box__content {
		margin-top: 16px;
	}
	* + .c-search-box {
		margin-top: 64px;
	}
}



/* サイト内検索結果
------------------------------------------ */
/*
* + .p-search-result {
	margin-top: 72px;
}
.p-search-result__number {
	font-weight: 700;
}
.p-search-result__list {
	border-top: 1px solid #bababa;
	margin-top: 24px;
}
.p-search-result__list .p-search-result__item {
	border-bottom: 1px solid #bababa;
}
.p-search-result__list .p-search-result__item a {
	display: block;
	padding-top: 24px;
	padding-bottom: 32px;
}
.p-search-result__list .p-search-result__item .item-title {
	color: #3895A7;
	font-weight: 700;
	line-height: 2;
}
.p-search-result__list .p-search-result__item .item-detail {
	line-height: 2;
	margin-top: 16px;
}
.p-search-result__list .p-search-result__item .item-url {
	color: #3895A7;
	margin-top: 24px;
}
.p-result-content .c-pagenation {
	margin-top: 80px;
	margin-bottom: 80px;
}
@media only screen and (max-width: 750px) {
	* + .p-search-result {
		margin-top: 40px;
	}
	.p-result-content .c-pagenation {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.p-search-result__list .p-search-result__item a {
		padding-top: 16px;
		padding-bottom: 24px;
	}
}
*/

* + #searchResult {
	margin-top: 72px;
}
.mt-site-search-result__message {
	font-weight: 700;
}
.mt-site-search-result__list {
	border-top: 1px solid #bababa;
	margin-top: 24px;
}
.mt-site-search-result__list .mt-site-search-result-item {
	border-bottom: 1px solid #bababa;
	margin: 0;
	padding-top: 24px;
	padding-bottom: 32px;
}
.mt-site-search-result__list .mt-site-search-result-item a {
	display: block;
}
.mt-site-search-result__list .mt-site-search-result-item .mt-site-search-result-item__label {
	color: #3895A7;
	font-weight: 700;
}
.mt-site-search-result__list .mt-site-search-result-item .mt-site-search-result-item__excerpt {
	font-size: 1.6rem;
	margin-top: 16px;
}
.mt-site-search-result__list .mt-site-search-result-item .mt-site-search-result-item__url {
	color: #3895A7;
	font-size: 1.6rem;
}
.mt-site-search__pagination {
	margin-top: 80px;
	margin-bottom: 80px;
}
.mt-site-search__pagination > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.mt-site-search__pagination .mt-site-search-pagination-item {
	height: 50px;
	margin-top: 0 !important;
	margin-left: 4px;
	margin-right: 4px;
	padding: 0 !important;
	width: 50px;
}
.mt-site-search__pagination .mt-site-search-pagination-item a {
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	color: #3895A7;
	display: block;
	font-weight: 700;
	line-height: 48px;
	position: relative;
	transition: 0s ease-in-out;
	text-align: center;
}
.mt-site-search__pagination .mt-site-search-pagination-item--current a {
	background-color: #3895A7;
	border-color: #3895A7;
	color: #fff;
}
/* PC */
@media only screen and (min-width: 751px) {
	.mt-site-search__pagination .mt-site-search-pagination-item--prev {
		margin-right: 36px;
	}
	.mt-site-search__pagination .mt-site-search-pagination-item--next {
		margin-left: 36px;
	}
}
/* SP */
@media only screen and (max-width: 750px) {
	* + #searchResult {
		margin-top: 40px;
	}
	.mt-site-search-result__list .mt-site-search-result-item {
		padding-top: 16px;
		padding-bottom: 24px;
	}
	.mt-site-search__pagination {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.mt-site-search__pagination .mt-site-search-pagination-item {
		margin-left: 2px;
		margin-right: 2px;
	}
}

