* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	font-size: 62.5%;
}

body {
	background-color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: #222;
	line-height: 1.875;
}

@media screen and (max-width: 768px) {
	
	body {
		padding-bottom: 0 !important;
	}
	
}


img {
	max-width: 100%;
	height: auto;
}

p {
	margin-bottom: 2rem;
}

.radius { border-radius: 0.5rem;}
.radius-2 { border-radius: 2rem;}

d-none { display: none;}

@media screen and (max-width: 768px) {
	
	.d-xs-block { display: block;}
	
}


.section {
	position: relative;
	padding: 5rem 1.5rem;
}

.inner-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 5rem 0;
}

.inner {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 2rem;
}

@media screen and (max-width: 768px) {

	.inner-wrap {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	
	.inner {
		padding: 0 1.5rem;
	}
	
}


.inner--large {
	max-width: 1070px;
}

.text-left { text-align: left;}
.text-center { text-align: center;}
.text-left { text-align: left;}

.text-note { margin-bottom: 1.5rem;}


/* --------------------------------------------------

	Spacing

-------------------------------------------------- */

.mt-10 { margin-top: 10rem !important;}

.mb-3 { margin-bottom: 3rem !important;}
.mb-5 { margin-bottom: 5rem !important;}
.mb-8 { margin-bottom: 8rem !important;}
.mb-10 { margin-bottom: 10rem !important;}

.pb-0 { padding-bottom: 0 !important;}

@media screen and (max-width: 768px) {
	
	.mt-10 { margin-top: 5rem !important;}

	.mb-3 { margin-bottom: 1.5rem !important;}
	.mb-5 { margin-bottom: 2.5rem !important;}
	.mb-8 { margin-bottom: 4rem !important;}
	.mb-10 { margin-bottom: 5rem !important;}
	
}


/* --------------------------------------------------

	Layout

-------------------------------------------------- */

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem -4rem;
}

.row [class^=col] {
	margin-bottom: 4rem;
	padding: 0 2rem;
}

.col-1 { width: 8.33333333%;}
.col-2 { width: 16.6666667%;}
.col-3 { width: 25%;}
.col-4 { width: 20%;}
.col-5 { width: 41.6666667%;}
.col-6 { width: 50%;}
.col-7 { width: 58.3333333%;}
.col-8 { width: 66.6666667%;}
.col-9 { width: 75%;}
.col-10 { width: 83.3333333%;}
.col-11 { width: 91.6666667%;}
.col-12 { width: 100%;}

.row [class^=col] > :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	
	.row {
		margin-bottom: -2rem;
	}

	.row [class^=col] {
		margin-bottom: 2rem;
	}
	
	.col-xs-1 { width: 8.33333333%;}
	.col-xs-2 { width: 16.6666667%;}
	.col-xs-3 { width: 25%;}
	.col-xs-4 { width: 20%;}
	.col-xs-5 { width: 41.6666667%;}
	.col-xs-6 { width: 50%;}
	.col-xs-7 { width: 58.3333333%;}
	.col-xs-8 { width: 66.6666667%;}
	.col-xs-9 { width: 75%;}
	.col-xs-10 { width: 83.3333333%;}
	.col-xs-11 { width: 91.6666667%;}
	.col-xs-12 { width: 100%;}
	
}


.flex-row-reverse { flex-direction: row-reverse;}

@media screen and (max-width: 768px) {
	
	.flex-xs-column { flex-direction: column;}
	
}


/* --------------------------------------------------

	Color

-------------------------------------------------- */

.bg-light { background-color: #FAFCEF;}
.bg-white { background-color: #fff;}

.text-danger { color: #C12626;}


/* --------------------------------------------------

	btn

-------------------------------------------------- */

a { transition: .3s;}

a img { transition: .3s;}
a:hover img { opacity: .75;}

.btn {
	position: relative;
	display: block;
	max-width: 100%;
	width: 300px;
	padding: 1.6rem 1rem;
	background-color: #fff;
	border: 1px solid #0F6141;
	border-radius: .5rem;
	font-weight: 700;
	line-height: 1;
	color: #0F6141;
	text-align: center;
}

.btn:hover {
	background-color: #0F6141;
	color: #fff;
}

.btn-group {
	width: 100%;
	display: flex;
	justify-content: center;
}


.btn-next {
	position: relative;
	display: inline-block;
	min-width: 20rem;
	padding: 1.6rem 0 1.6rem 2rem;
	background-color: #fff;
	border: 1px solid #0F6141;
	border-radius: .5rem;
	font-weight: 700;
	text-align: left;
	line-height: 1;
	color: #0F6141;
}

.btn-next::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 8px;
	height: 13px;
	background: url("../images/common/icon-arrow-right.svg") no-repeat center center;
	background-size: contain;
	transform: translateY(-50%);
}

.btn-next:hover {
	background-color: #0F6141;
	color: #fff;
}

.btn-next:hover::after {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}


/* --------------------------------------------------

	header

-------------------------------------------------- */

.header {
	position: relative;
	margin: 0 0 4rem;
	padding-top: 6rem;
}

.home .header {
	height: 100vh;
	margin-bottom: 10rem;
}

.header:after {
	content: '';
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	height: 55px;
	background: url("../images/common/wavy-line.svg") no-repeat center top;
}

@media screen and (max-width: 768px) {
	
	.header {
		padding-top: 1.6rem;
	}
	
	.home .header {
		height: auto;
		margin-bottom: 0;
		padding-bottom: 2rem;
	}
	
	.header:after {
		height: 1.5rem;
		background-size: auto 1.5rem;
	}
	
}


.logo {
	position: fixed;
	z-index: 1000;
	margin-left: 4rem;
}

.logo img {
	display: block;
	width: 288px;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	
	.logo {
		position: static;
		margin: 0;
	}

	.logo img {
		width: 288px;
		margin: 0 auto;
	}

}


.header-nav {
	position: fixed;
	left: 2rem;
	bottom: 14rem;
	z-index: 1000;
	padding: 2rem;
	border-radius: .5rem;
	background-color: rgb(255 255 255 / 75%);
}

.header-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-nav li + li {
	margin-top: 3rem;
}

.header-nav a {
	position: relative;
	display: block;
	padding: 0 0 0 2rem;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .1rem;
}

.header-nav a.is-select,
.header-nav a:hover {
	color: #0F6141;
}

.header-nav a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	margin-top: .1rem;
	background-color: transparent;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: .3s;
}

.header-nav a.is-select::before,
.header-nav a:hover::before {
	background-color: #0F6141;
}

@media screen and (max-width: 768px) {
	
	.header-nav {
		position: static;
		display: flex;
		justify-content: center;
		padding: 6rem 0;
		border-radius: 0;
		background-color: transparent;
	}

	.header-nav ul {
		margin-left: -3.2rem;
	}
	
	.header-nav li + li {
		margin-top: 2rem;
	}
	
	.header-nav a {
		font-size: 1.6rem;
	}
	
}


/* --------------------------------------------------

	breadcrumbs

-------------------------------------------------- */

.breadcrumbs {
	margin-bottom: 8rem;
}

.breadcrumbs ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #36414B;
}

.breadcrumbs li + li::before {
	content: '/';
	display: inline-block;
	padding: 0 1.6rem;
}

.breadcrumbs a {
	color: #36414B;
}

.breadcrumbs a:hover {
	opacity: .7;
}

@media screen and (max-width: 768px) {
	
	.breadcrumbs {
		margin-bottom: 4rem;
		font-size: 1.4rem;
	}

	.breadcrumbs li + li::before {
		padding: 0 1.2rem;
	}
	
}


/* --------------------------------------------------

	footer

-------------------------------------------------- */

.footer {
	padding: 8rem 0 10rem;
}

.footer:before {
	content: '';
	display: block;
	width: 100%;
	height: 296px;
	margin-bottom: 10rem;
	background: url("../images/common/footer.svg") no-repeat center top;
}

.footer-wavy {
	width: 100%;
	height: 55px;
	background: url("../images/common/wavy-line.svg") no-repeat center top;
	margin-bottom: 10rem;
}

@media screen and (max-width: 768px) {
	
	.footer {
		padding: 3rem 0 10rem;
	}

	.footer:before {
		height: 8rem;
		margin-bottom: 2rem;
		background-size: auto 8rem;
	}

	.footer-wavy {
		height: 1.5rem;
		background-size: auto 1.5rem;
		margin-bottom: 5.2rem;
	}
	
}


.footer-logo {
	margin: 0 0 7.2rem;
	text-align: center;
}

.footer-logo img {
	width: 288px;
}

.copyright {
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #0F6141;
}

@media screen and (max-width: 768px) {
	
	.footer-logo {
		margin-bottom: 6rem;
	}
	
}


.fixed-facebook-wrap {
	position: fixed;
	bottom: 0;
	z-index: 3;
	width: 100%;
}

.fixed-facebook {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.fixed-facebook-row {
	display: flex;
	margin: 0 -8px;
}

.fixed-facebook-col {
	width: 20%;
	padding: 0 8px;
}

@media screen and (max-width: 768px) {
	
	.fixed-facebook-wrap {
		position: static;
		padding: 0 3rem 3rem;
	}
	
	.fixed-facebook-row {
		flex-direction: column;
	}
	
	.fixed-facebook-col {
		width: 100%;
		text-align: center;
	}
	
	.fixed-facebook-col + .fixed-facebook-col {
		margin-top: 1.5rem;
	}
	
}


.btn-pagetop {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 10001;
	width: 60px;
	transition: .3s;
}

@media screen and (max-width: 768px) {
	
	.btn-pagetop {
		width: 32px;
	}
	
}


/* --------------------------------------------------

	pagination

-------------------------------------------------- */

.pagination {
	margin: 8rem 0;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 0 0 -10px;
}

.page-numbers {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: 0 5px 10px;
	border: 1px solid #0F6141;
	border-radius: .5rem;
	font-weight: 700;
	color: #0F6141;
	text-align: center;
}

.page-numbers.current {
	background-color: #0F6141;
	color: #fff;
}

.page-numbers.prev::before,
.page-numbers.next::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 10px;
	height: 10px;
	transition: .3s;
}

.page-numbers.prev::before {
	margin: 0 -2px 0 0;
	border-left: 3px solid #0F6141;
	border-bottom: 3px solid #0F6141;
	transform: translate(-50%, -50%) rotate(45deg);
}

.page-numbers.next::before {
	margin: 0 0 0 -2px;
	border-right: 3px solid #0F6141;
	border-top: 3px solid #0F6141;
	transform: translate(-50%, -50%) rotate(45deg);
}

a.page-numbers:hover {
	background-color: #0F6141;
	color: #fff;
}

a.page-numbers.prev:hover::before {
	border-left-color: #fff;
	border-bottom-color: #fff;
}

a.page-numbers.next:hover::before {
	border-right-color: #fff;
	border-top-color: #fff;
}

@media screen and (max-width: 768px) {
	
	.pagination {
		margin: 4rem 0;
	}
	
	.page-numbers {
		width: 40px;
		height: 40px;
	}
	
}


/* --------------------------------------------------

	list

-------------------------------------------------- */

.list,
.entry-detail ul {
	margin: 0 0 4rem 2rem;
	padding: 0;
}

.list li::marker,
.entry-detail ul li::marker {
	color: #0F6141;
}

.entry-detail ul li + li {
	margin-top: 1.6rem;
}

ol {
	margin: 0 0 4rem;
	padding: 0;
	list-style: none;
	counter-reset: li;
}

ol:last-child {
	margin: 0;
}

ol li {
	position: relative;
	padding: 0 0 0 3.6rem;
}

ol li + li {
	margin-top: 1.6rem;
}

ol li::before {
	counter-increment: li;
	content: counter(li);
	position: absolute;
	left: 0;
	top: 2px;
	display: block;
	width: 28px;
	height: 28px;
	background-color: #0F6141;
	border-radius: 50%;
	font-size: 1.6rem;
	color: #fff;
	line-height: 28px;
	text-align: center;
}


.entry-detail .is-style-checklist {
	margin: 0 0 4rem;
	padding: 0;
	list-style: none;
}

.entry-detail .is-style-checklist li {
	position: relative;
	padding: 0 0 0 3.6rem;
}

.entry-detail .is-style-checklist li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 26px;
	height: 30px;
	background: url("../images/top/check.svg") no-repeat center center;
	background-size: contain;
}


/* --------------------------------------------------

	thumbnail

-------------------------------------------------- */

.entry-detail .post_thumbnail {
	margin-bottom: 4rem;
}


/* --------------------------------------------------

	border-box

-------------------------------------------------- */

.is-style-borderbox {
	margin: 0 0 5rem;
	padding: 3rem;
	border: 1px solid #0F6141;
}

.is-style-borderbox :last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------

	Heading

-------------------------------------------------- */

.key-title {
	padding: 3.4rem 0 12.6rem;
	font-size: 4rem;
	font-weight: 700;
	color: #333;
	text-align: center;
	letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
	
	.key-title {
		padding: 4rem 0 6rem;
		font-size: 3.2rem;
	}
	
}


.h1 {
	margin: 0 0 4.2rem;
	padding: 0 0 1.4rem;
	border-bottom: 1px solid #0F6141;
	color: #0F6141;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.15;
}

.entry-detail h2 {
	position: relative;
	margin: 5rem 0 4rem;
	padding: 1.6rem 1rem 1.6rem 3.4rem;
	background-color: #0F6141;
	border-radius: 0.5rem;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.45;
}

.entry-detail h2:before {
	content: '';
	display: block;
	position: absolute;
	top: 1.6rem;
	bottom: 1.6rem;
	left: 1.4rem;
	width: 0.6rem;
	background-color: #fff;
}

.entry-detail h3 {
	position: relative;
	margin: 0 0 4rem;
	padding: 1.5rem 1rem 1.2rem 3.4rem;
	background-color: #FAFCEF;
	border-bottom: 1px solid #0F6141;
	border-radius: 0.5rem 0.5rem 0 0;
	color: #000;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
}

.entry-detail h3:before {
	content: '';
	display: block;
	position: absolute;
	top: 1.5rem;
	bottom: 1.5rem;
	left: 1.4rem;
	width: 0.6rem;
	background-color: #0F6141;
}

.entry-detail h4 {
	position: relative;
	margin: 0 0 4rem;
	padding: 1rem 1rem 1rem 3.4rem;
	border-bottom: 1px solid #0F6141;
	color: #000;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.77;
}

.entry-detail h4:before {
	content: '';
	display: block;
	position: absolute;
	top: 1rem;
	bottom: 1rem;
	left: 1.4rem;
	width: 0.6rem;
	background-color: #0F6141;
}

.entry-detail h5 {
	position: relative;
	margin: 0 0 4rem;
	padding: 0 1rem 1rem 3.4rem;
	border-bottom: 1px solid #0F6141;
	color: #000;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.77;
}

.entry-detail h5:before {
	content: '';
	display: block;
	position: absolute;
	top: 0.5rem;
	bottom: 1rem;
	left: 1.4rem;
	width: 0.6rem;
	background-color: #0F6141;
}

.h3 {
	margin: 0 0 5rem;
	padding: 0 0 1.4rem;
	background: url("../images/common/h3.svg") no-repeat center bottom;
	font-size: 2.6rem;
	line-height: 1.4;
	color: #0F6141;
}

@media screen and (max-width: 768px) {
	
	.h3 {
		margin-bottom: 3rem;
		background-size: contain;
		font-size: 2.4rem;
	}

}


.h6 {
	margin: 0 0 1.5rem;
	font-weight: 700;
	color: #0F6141;
}


/* --------------------------------------------------

	form

-------------------------------------------------- */

.form-group {
	margin-bottom: 2.3rem;
}

.form-label-group {
	display: flex;
	align-items: center;
	margin: 0 0 1rem;
}

.form-label {
	font-size: 1.8rem;
	font-weight: 700;
}

.is-required {
	display: inline-block;
	margin: 0 0 0 0.8rem;
	padding: 0.4rem 0.8rem;
	background-color: #F3B800;
	border-radius: .3rem;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
}

.form-control {
	display: block;
	width: 100%;
	padding: .5rem 1.6rem;
	border: 1px solid #DDD;
	border-radius: .5rem;
}

.form-control::placeholder {
	color: #ccc;
}

.form-check-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 -1.5rem;
}

.form-check {
	padding: 0 1.5rem;
}

.form-check-input,
input[name="registration-your-class"] {
	position: absolute;
	opacity: 0;
}

[type="radio"].form-check-input + .form-check-label:before,
[name="registration-your-class"] + .wpcf7-list-item-label:before {
	content: "";
	position: relative;
	display: inline-block;
	width: 2rem;
	height: 2rem;
	margin: .6rem 1rem 0 0;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 100%;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}

.form-check-input:checked + .form-check-label:before,
[name="registration-your-class"]:checked + .wpcf7-list-item-label:before {
	background-color: #0F6141;
	box-shadow: inset 0 0 0 4px #fff;
}

@media screen and (max-width: 768px) {
	
	.form-check-row {
		flex-direction: column;
	}

	.form-check {
		width: 100%;
	}
	
	.form-check + .form-check {
		margin-top: 2rem;
	}
	
}


.agree-box {
	display: flex;
	justify-content: center;
	margin: 5rem 0 2.6rem;
}

@media screen and (max-width: 768px) {
	
	.agree-box {
		margin-top: 3rem;
	}
	
}


.label-checkbox {
	position: relative;
	margin: 0 auto;
	cursor: pointer;
}

.checkbox {
	position: relative;
	top: 0;
	margin: 0 1.6rem 0 0;
	cursor: pointer;
}

.checkbox:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	width: 1.4rem;
	height: 1.4rem;
	border: 1px solid #333;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
	transform: translateY(-50%);
}

.checkbox:checked:before {
	top: 50%;
	height: 0.5rem;
	border: 2px solid #333;
	border-top-style: none;
	border-right-style: none;
	border-radius: 0;
	transform: translateY(-50%) rotate(-45deg);
}

.privacy-box {
	overflow-y: scroll;
	height: 260px;
	padding: 2.4rem 2rem;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: 1.4rem;
}

.privacy-box h4 {
	margin: 0 0 1.5rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.privacy-box > :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
}



.form-btn-group {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.form-btn {
	display: block;
	width: 100%;
	max-width: 38rem;
	padding: 2.8rem 0;
	background-color: #0F6141;
	border: 1px solid #0F6141;
	border-radius: .5rem;
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1;
	transition: .3s;
}

.form-btn:hover {
	background-color: #fff;
	color: #0F6141;
}

.form-btn:disabled {
	background-color: #555;
	color: #fff;
}

.back-btn {
	display: block;
	width: 100%;
	max-width: 38rem;
	padding: 2.8rem 0;
	background-color: #555;
	border: 1px solid #555;
	border-radius: .5rem;
	font-size: 2.2rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1;
	transition: .3s;
}

.back-btn:hover {
	background-color: #fff;
	color: #333;
}

.wpcf7-spinner {
	display: none;
}

.thanks-wrap {
	text-align: center;
	padding-top: 3rem;
}



.confirm_wrap,.thanks_wrap,.wpcf7-response-output {
    display: none;
}



/* --------------------------------------------------

	お知らせ - 一覧

-------------------------------------------------- */

.entry-list-wrap {
	border-top: 1px solid rgba(204, 204, 204, 0.5);
}

.entry-list {
	display: flex;
	padding: 2rem 0;
	border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}

a.entry-list:hover {
	background-color: #FAFCEF;
}

.entry-list__thumb {
	width: 10rem;
	height: 10rem;
}

.entry-list__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.entry-list__text {
	width: calc(100% - 10rem);
	padding: 0 0 0 2rem;
}

.entry-list__meta {
	margin: 0 0 1.2rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.entry-list__title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.66;
	color: #0F6141;
}


/* --------------------------------------------------

	お知らせ - 詳細

-------------------------------------------------- */

.entry-detail__date {
	margin: 0 0 2.2rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.entry-detail p {
	line-height: 2;
}

.entry-detail table {
	width: 100%;
	margin: 0 0 5rem;
	border-top: 1px dashed #0F6141;
}

.entry-detail thead {
	border-bottom: 1px solid #0F6141;
	background-color: #fafcef;
}

.entry-detail tr {
	border-bottom: 1px dashed #0F6141;
}

.entry-detail th {
	padding: 1.6rem 2rem;
	color: #0F6141;
	border: none;
	min-width: 12rem;
}

.entry-detail td {
	padding: 1.6rem 0 1.6rem 2rem;
	border: none;
}

.entry-detail p a,
.entry-detail td a {
	display: inline-block;
	color: #0F6141;
	text-decoration: underline;
	transition: .2s;
}

.entry-detail p a:hover,
.entry-detail td a:hover {
	opacity: .6;
	text-decoration: none;
}

.entry-detail p a[target="_blank"],
.entry-detail td a[target="_blank"] {
	padding-right: 1.2em;
	background-image: url(../images/common/tab_1.svg);
	background-repeat: no-repeat;
	background-size: .9em;
	background-position: right .1em center;
}


@media screen and (max-width: 768px) {
	
	.entry-detail table th {
		display: block;
		width: 100%;
		padding: 1.8rem 2rem;
	}

	.entry-detail table td {
		display: block;
		width: 100%;
		padding: 0 2rem 1.8rem 2rem;
	}

}

/* --------------------------------------------------

	IMAGE

-------------------------------------------------- */

.wp-block-heading {
	margin: 0 0 5rem;
}


/* --------------------------------------------------

	HOME

-------------------------------------------------- */

.top-key {
	position: relative;
	width: 100%;
	max-width: 1374px;
	height: 868px;
	margin: 0 auto;
	background: url("../images/top/top-key.png") no-repeat center center;
	background-size: contain;
}

.top-key__text {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 388px;
	height: auto;
	transform: translate(-50%,-50%);
}

@media screen and (max-width: 1720px) {
	
	.top-key {
		width: calc(100vw - 345px);
		aspect-ratio: 1374 / 868;
		margin: 0 0 0 auto;
	}
	
}

@media screen and (max-width: 768px) {
	
	.top-key {
		width: 100%;
		height: auto;
		margin: 0;
		aspect-ratio: 430 / 305;
	}

	.top-key__text {
		max-width: 148px;
	}

}


.circle-label {
	position: absolute;
	right: 160px;
	bottom: 16rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 220px;
	background-color: #F3B800;
	border: 3px solid #0F6141;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 700;
	color: #0F6141;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 2px;
	cursor: pointer;
}

.circle-label:hover {
	background-color: #0F6141;
	color: #F3B800;
}

@media screen and (max-width: 768px) {
	
	.circle-label {
		display: none;
	}
	
}


.top-info-head {
	display: flex;
	justify-content: space-between;
	margin: 0 -1rem 3rem;
}

.top-info-head__title {
	padding: 0 1rem;
}

.top-info-head__btn {
	padding: 0 1rem;
}

.top-info-title {
	margin: 0;
	padding: 0;
	font-size: 2.8rem;
	font-weight: 700;
	color: #0F6141;
}

@media screen and (max-width: 768px) {
	
	.top-info-head__btn {
		display: none;
	}
	
}


.info-footer-btn {
	margin-top: 5rem;
	margin-bottom: 5rem;
	text-align: center;
}


.section-infomation {
	padding-bottom: 3.2rem;
}


.section-about::before {
	content: '';
	position: absolute;
	top: 30px;
	right: -222px;
	display: block;
	width: 102px;
	height: 67px;
	background: url("../images/top/chick01.svg") no-repeat center center;
	background-size: contain;
}

.section-about::after {
	content: '';
	position: absolute;
	top: 150px;
	left: -250px;
	display: block;
	width: 102px;
	height: 67px;
	background: url("../images/top/chick02.svg") no-repeat center center;
	background-size: contain;
}

.section-summary::before {
	content: '';
	position: absolute;
	top: -275px;
	left: -228px;
	display: block;
	width: 168px;
	height: 244px;
	background: url("../images/top/tree.svg") no-repeat center center;
	background-size: contain;
}

.section-summary::after {
	content: '';
	position: absolute;
	bottom: 80px;
	right: -284px;
	display: block;
	width: 226px;
	height: 205px;
	background: url("../images/top/care.svg") no-repeat center center;
	background-size: contain;
}

.section-greeting {
	background: url("../images/top/greeting-wave.svg") no-repeat center center;
}

.section-conference {
	background-image: url("../images/top/fish.svg");
	background-repeat: no-repeat;
	background-position: right top;
}

.section-conference .inner-wrap::before {
	content: '';
	position: absolute;
	top: 480px;
	left: -288px;
	display: block;
	width: 247px;
	height: 237px;
	background: url("../images/top/circle.svg") no-repeat center center;
	background-size: contain;
}

.section-conference .inner-wrap::after {
	content: '';
	position: absolute;
	top: 532px;
	right: -280px;
	display: block;
	width: 217px;
	height: 215px;
	background: url("../images/top/tree02.svg") no-repeat center center;
	background-size: contain;
}

.section-request {
	background: url("../images/top/request-wave.svg") no-repeat center center;
}

.section-cooperation {
	padding-bottom: 15rem;
	background-image: url("../images/top/fish02.svg");
	background-repeat: no-repeat;
	background-position: left top;
}

.section-cooperation .inner-wrap::after {
	content: '';
	position: absolute;
	bottom: -100px;
	right: -330px;
	display: block;
	width: 269px;
	height: 234px;
	background: url("../images/top/presentation.svg") no-repeat center center;
	background-size: contain;
}

@media screen and (max-width: 768px) {
	
	.section-about::before,
	.section-about::after,
	.section-summary::before,
	.section-summary::after,
	.section-conference .inner-wrap::before,
	.section-conference .inner-wrap::after,
	.section-cooperation .inner-wrap::after {
		display: none;
	}
	
	.section-greeting,
	.section-conference,
	.section-request,
	.section-cooperation {
		background-image: none;
	}
	
	.section-cooperation {
		padding-top: 0;
		padding-bottom: 0rem;
	}
	
}



.head-parts {
	margin: 0 0 5rem;
	text-align: center;
}

.head-parts__en {
	margin: 0 0 0.8rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	color: #F3B800;
}

.head-parts__num {
	margin: 0 0 1.5rem;
	font-size: 5rem;
	font-weight: 400;
	font-family: Helvetica, Arial, "sans-serif";
	line-height: 1.2;
	color: #0F6141;
}

.head-parts__title {
	margin: 0;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.3;
	color: #333;
}

.top-about-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.5rem -3rem;
}

.top-about-col {
	width: 50%;
	margin: 0 0 3rem;
	padding: 0 1.5rem;
}

@media screen and (max-width: 768px) {
	
	.top-about-row {
		flex-direction: column;
	}

	.top-about-col {
		width: 100%;
	}

}


.card {
	overflow: hidden;
	display: block;
	border-radius: 0.5rem;
}

a.card:hover {
	background-color: #FAFCEF;
}

.card__photo {
	overflow: hidden;
	display: block;
	margin: 0 -10px;
}

.card__photo img {
	display: block;
	transition: .3s;
}

a.card:hover .card__photo img {
	opacity: 1;
	transform: scale(1.1,1.1);
}

.card__text {
	margin: 0;
	padding: 2.7rem 1rem 4rem;
	border: 1px solid #E4E4E4;
	border-top: none;
	border-radius: 0 0 0.5rem 0.5rem;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
}

.card__text > span {
	position: relative;
	display: inline-block;
	padding-right: 4.8rem;
}

.card__text > span::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 3rem;
	height: 3rem;
	background: url("../images/common/icon-circle-down.svg") no-repeat center center;
	background-size: contain;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	
	.card__text {
		padding: 2rem 1rem 3rem;
		font-size: 1.6rem;
	}
	
	.card__text > span::after {
		width: 2.4rem;
		height: 2.4rem;
	}
	
}


.summary-title {
	margin: 0 0 5rem;
	font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
}

.summary-table {
	width: 100%;
	border-top: 1px dashed #0F6141;
}

.summary-table tr {
	border-bottom: 1px dashed #0F6141;
}

.summary-table th {
	width: 230px;
	padding: 1.8rem 0 1.8rem 2.8rem;
	font-weight: 700;
	color: #0F6141;
}

.summary-table td {
	padding: 1.8rem 0;
}

.summary-table td > :last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	
	.summary-title {
		margin-bottom: 4rem;
	}
	
	.summary-table th {
		display: block;
		width: 100%;
		padding: 1.8rem 2rem;
	}

	.summary-table td {
		display: block;
		width: 100%;
		padding: 0 2rem 1.8rem 2rem;
	}
	
}


.greeting-box {
	display: flex;
	justify-content: space-between;
	margin-top: 10rem;
}

.greeting-box__photo {
	width: 28.1553398%;
}

.greeting-box__text {
	width: 67.2815534%;
	font-size: 1.8rem;
}

.greeting-info {
	margin: 4.2rem 0 .6rem;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: right;
}

.greeting-name {
	margin: 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: right;
}

@media screen and (max-width: 768px) {
	
	.greeting-box {
		flex-direction: column;
		margin-top: 0;
	}

	.greeting-box__photo {
		width: 100%;
		margin-bottom: 3.6rem;
	}

	.greeting-box__photo img {
		display: block;
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
	}

	.greeting-box__text {
		width: 100%;
	}

}


.events-photo-row {
	display: flex;
	margin: 0 -1.5rem;
}

.events-photo-col {
	width: 50%;
	padding: 0 1.5rem;
}

@media screen and (max-width: 768px) {
	
	.events-photo-row {
		flex-direction: column;
		margin-bottom: -4rem;
	}

	.events-photo-col {
		width: 100%;
		margin-bottom: 4rem;
	}
	
}


.banner-box {
	padding: 5rem 3rem;
	background-color: #fff;
	border: 1px solid #0F6141;
}

.banner-box + .banner-box {
	margin-top: 7.8rem;
}

.banner-title {
	margin: 0 0 3rem;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.3;
	color: #0F6141;
	text-align: center;
}

.banner-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -11px -22px;
}

.banner-col {
	width: 20%;
	margin: 0 0 22px;
	padding: 0 11px;
}

@media screen and (max-width: 768px) {
	
	.banner-box {
		padding: 3rem;
	}

	.banner-box + .banner-box {
		margin-top: 3rem;
	}

	.banner-row {
		flex-direction: column;
		margin-bottom: -2rem;
	}

	.banner-col {
		width: 100%;
		margin-bottom: 2rem;
		text-align: center;
	}
	
	.banner-col img {
		display: block;
		width: 100%;
		max-width: 210px;
		margin: 0 auto;
	}

}
