/***************************
 *
 * モジュール
 *
 **************************/

/*
一般
*/
img {
}
.clear {
	clear: both;
}
.clearfix:after {
	clear: both;
	height: 0px;
	display: block;
	content: ".";
	visibility: hidden;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}
.mlr-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.nrw {
	transform: scaleX(0.97);
	transform-origin: 0 0;
	/*width: 103%;*/
}

.shadow {
	text-shadow: white 2px 0px 2px, white -2px 0px 2px, white 0px -2px 2px, white -2px 0px 2px, white 2px 2px 2px, white -2px 2px 2px, white 2px -2px 2px, white -2px -2px 2px, white 1px 2px 2px,
		white -1px 2px 2px, white 1px -2px 2px, white -1px -2px 2px, white 2px 1px 2px, white -2px 1px 2px, white 2px -1px 2px, white -2px -1px 2px, white 1px 1px 2px, white -1px 1px 2px,
		white 1px -1px 2px, white -1px -1px 2px;
}

.fx {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fx-bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.fx-center {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.fx-middle {
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
}

.box-col-2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.box-col-2 > div {
	width: 50%;
	box-sizing: border-box;
}

/*
カラー
*/
.green {
	color: #6bca87 !important;
}

.red {
	color: #b43b4a !important;
}
.pink {
	color: #f79ea6 !important;
}
.blue {
	color: #33589f !important;
}
.navy {
	color: #31428b !important;
}
.yellow {
	color: #d7c749 !important;
}
.orange {
	color: #efa82d !important;
}

/*
OVER
*/

.over {
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-ms-transition: 1s ease;
	-o-transition: 1s ease;
	transition: 1s ease;
}

.over:hover {
	-ms-filter: "alpha(opacity=7)";
	opacity: 0.3;
	-webkit-transition: 0s ease;
	-moz-transition: 0s ease;
	-ms-transition: 0s ease;
	-o-transition: 0s ease;
	transition: 0s ease;
}
/* 
.zoom {
}
.zoom:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
} */

.underbar {
	width: 0;
	height: 1px;
	background: rgba(34, 34, 34, 0);
	top: 20px;
	position: absolute;
	-webkit-transition: 0.5s ease;
}

/*
フォント
*/
.en {
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.en-all * {
	font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.under {
	text-decoration: underline;
}
/*
ボタン
*/
div.center {
	text-align: center;
}
.btn-text {
	position: relative;
	display: block;
	text-align: center;
	margin: 35px auto;
	width: 120px;
}
.btn-text a {
	display: block;
	font-size: 2rem;
	line-height: 1.7em;
	text-decoration: none;
	color: #222222;
	font-weight: bold;
	padding-bottom: 10px;
	position: relative;
	letter-spacing: 0.2em;
	transition: 0.3s ease;
}
.btn-text a:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	bottom: 10px;
	width: 100%;
	height: 1px;
	background: #222;
	transition: 0.3s ease;
	transform-origin: right top;
}
.btn-text a:hover {
	text-decoration: none !important;
	opacity: 0.7;
}
.btn-text a:hover:after {
	transform: translateX(15px);
	opacity: 0.7;
}
.btn-text a:hover:before {
	width: 0;
	height: 1px;
}
.btn-arrow {
	margin: 0;
}
.btn-arrow a {
	display: block;
	font-size: 1.6rem;
	color: #222222;
	font-weight: 500;
	position: relative;
	padding-left: 70px;
	text-decoration: underline;
	padding-right: 30px;
}
.btn-arrow a:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	background: url(../img/bullet.png) center center no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	transition: 0.4s ease;
}
.btn-arrow a:hover {
	text-decoration: none !important;
}
.btn-arrow a:hover:before {
	-webkit-transform: translateX(10px);
	transform: translateX(10px);
	opacity: 0.7;
}
.btn {
	margin: 35px auto;
	width: 400px;
	display: block;
	position: relative;
	overflow: hidden;
}
.btn a {
	display: block;
	text-align: center;
	color: #fff !important;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1.5em;
	text-decoration: none !important;
	position: relative;
	transition: none !important;
	background: none;
	border-radius: 0px;
	box-sizing: border-box;
	transition: 0.3s ease;
	padding: 20px 0;
	z-index: 3;
	
}
.btn:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: #40609f;
	width: 100%;
	height: 100%;
	transform-origin: left top;
	transition: 0.4s ease;
}
.btn:hover:before {
	transform: translate3d(-100%, 0, 0);
}
.btn a:hover {
	text-decoration: none !important;
	/* opacity: 0.7; */
	color: #40609f !important;
}
.btn-red:before {
	background: #b43b4a;
}
.btn-red a {
	border: 1px solid #b43b4a;
}
.btn-red a:hover {
	color: #b43b4a !important;
}
.btn-green:before {
	background: #4dc07c;
}
.btn-green a {
	border: 1px solid #4dc07c;
}
.btn-green a:hover {
	color: #4dc07c !important;
}

.btn-relate {
	margin: 50px auto;
}
.btn-relate a {
	width: 100%;
	display: block;
	font-size: 1.6rem;
	text-align: left;
	font-weight: 500;
	color: #222222;
	background: url(../img/bg-beige.jpg) 0 0 repeat;
	background-size: 1400px 1400px;
	padding: 20px;
	padding-left: 135px;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.btn-relate a:before {
	content: "関連記事";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: url(../img/basic-info-p.jpg) center center repeat;
	color: white;
	background-size: 80px 60px;
}

.btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
	margin: 55px auto;
}
.btns .btn {
	width: auto;
	margin: 0;
}
hr + .btns {
	margin-top: -50px;
}
.btn i {
	font-size: 1.3em;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

/*
BG
*/
.bg-beige {
	background: url(../img/bg-beige.jpg) 0 0 repeat;
	background-size: 1400px 1400px;
}
.bg-blue {
	background: url(../img/bg-blue.jpg) 0 0 repeat;
	background-size: 1200px 675px;
}
.bg-green {
	background: url(../img/bg-green.jpg) 0 0 repeat;
	background-size: 1400px 1265px;
}
/*
IMAGE
*/

/*
アイコン
*/

/*
ANIMATE
*/

@keyframes fade-in5 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0.5;
	}
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.tab {
	display: none;
	opacity: 0;
}
.tab.is-active {
	display: block;
	opacity: 1;
	animation-duration: 0.5s;
	animation-name: fade-in;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fade-in;
}

/*
ボックス
*/
.box-content {
	max-width: 1280px;
	padding-left: 40px;
	padding-right: 40px;
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
.box-content-f {
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	padding: 0 50px;
}
.box-content-wide {
	margin: 0 auto;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}
.box-700 {
	width: 700px;
	margin: 0 auto;
	position: relative;
}
.box-720 {
	width: 720px;
	margin: 0 auto;
	position: relative;
}
.box-800 {
	width: 800px;
	margin: 0 auto;
	position: relative;
}
.box-840 {
	width: 840px;
	margin: 0 auto;
	position: relative;
}
.box-900 {
	width: 900px;
	margin: 0 auto;
	position: relative;
}
.box-960 {
	width: 960px;
	margin: 0 auto;
	position: relative;
}
.box-980 {
	width: 980px;
	margin: 0 auto;
	position: relative;
}
.box-1000 {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}
.box-1024 {
	width: 1024px;
	margin: 0 auto;
	position: relative;
}
.box-1040 {
	width: 1040px;
	margin: 0 auto;
	position: relative;
}
.box-1090 {
	width: 1090px;
	margin: 0 auto;
	position: relative;
}
.box-1100 {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
.box-1200 {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}

/*
ヘッダー
*/
.header-inner {
	position: relative;
	height: 170px;
	box-sizing: border-box;
}
.header-logo {
	width: 250px;

	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -125px;
	z-index: 11;
	transition: 0.4s ease;
}

.header-tel {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 1.2rem;
	color: #222222;
	z-index: 11;
}
.header-tel a {
	display: inline-block;
	width: 238px;
	margin-right: 15px;
	vertical-align: middle;
}
.nav-header {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 11;
}
.nav-header ul {
	display: flex;
	justify-content: flex-end;
}
.nav-header ul > li {
	width: 180px;
}
.nav-header ul > li > a {
	text-align: center;
	color: white;
	display: block;
	font-size: 1.5rem;
	background: #40609f;
	line-height: 50px;
	transition: 0.3s ease;
}
.nav-header ul > li.nav-header-red > a {
	background: #b43b4a;
}
.nav-header ul > li.nav-header-green > a {
	background: #4baf5c;
}
.nav-header ul > li > a:hover {
	opacity: 0.7;
}
.menu-trigger {
	position: fixed;
	right: 0px;
	top: 0px;
	display: block;
	width: 131px;
	height: 131px;
	cursor: pointer;
	z-index: 205;
	transform: translateX(0);
	transition: all 0.5s;
	text-align: center;
	background: #0f2f7a;
}
.menu-trigger.is-scroll {
	/* display: block;
	opacity: 1;
	animation-duration: 1s;
	animation-name: fade-in; */
}

.menu-trigger.is-active {
	z-index: 9999;
}
.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 32px;
	width: 66px;
	height: 1px;
	border-top: 2px solid white;
	transition: 0.3s ease all;
}
.menu-trigger.is-active span {
}
.menu-trigger span:nth-of-type(1) {
	top: 34px;
}
.menu-trigger.is-active span:nth-of-type(1) {
	top: 52px;
	transform: rotate(45deg);
}

.menu-trigger span:nth-of-type(2) {
	top: 52px;
	border-top: 2px dashed white;
}
.menu-trigger.is-active span:nth-of-type(2) {
	top: 52px;
	transform: scaleX(0);
	transform-origin: center center;
}
.menu-trigger span:nth-of-type(3) {
	top: 69px;
}
.menu-trigger.is-active span:nth-of-type(3) {
	top: 52px;
	transform: rotate(-45deg);
}
.menu-trigger small {
	color: white;
	text-align: center;
	display: block;
	position: absolute;
	left: 0;
	bottom: 27px;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.15em;
}
.menu-trigger.is-active small {
	color: #0f2f7a;
}
.menu-trigger.is-active small:after {
	content: "CLOSE";
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	text-align: center;
	display: block;
	width: 100%;
}
@media all and (max-width: 1330px) {
}

/*
GLOBAL NAVI
*/
.overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(112, 112, 112, 0.7);
	opacity: 0;
	display: none;
}
.l-nav.is-active .overlay {
	opacity: 1;
	display: block;
	animation-duration: 0.5s;
	animation-name: fade-in;
}
.nav-inner {
	padding-top: 90px;
}
.l-nav.is-active .nav-inner {
}
.list-nav {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	/* max-width: 1330px; */
	margin: 0 auto;
	transition: 0.3s ease;
}
.list-nav > li {
	box-sizing: border-box;
	position: relative;
	z-index: 21;
}
.list-nav > li:nth-child(5) {
	margin-right: 185px;
}
.list-nav > li:nth-child(6) {
	margin-left: 185px;
}
.list-nav > li > a {
	position: relative;
	text-align: center;
	color: #222222;
	font-size: 1.6rem;
	letter-spacing: 0.03em;
	transition: 0.3s ease;
}
.list-nav > li:after {
	content: "|";
	color: #cccccc;
	padding: 0 10px;
}
.list-nav > li:nth-child(5):after,
.list-nav > li:nth-child(9):after {
	color: white;
}

.list-nav > li > a:hover {
	opacity: 0.7;
}
@media all and (max-width: 1360px) {
	.list-nav > li:nth-child(5) {
		margin-right: 145px;
	}
	.list-nav > li:nth-child(6) {
		margin-left: 145px;
	}
	.list-nav > li > a {
		position: relative;
		text-align: center;
		color: #222222;
		font-size: 1.3rem;
		letter-spacing: 0.03em;
		transition: 0.3s ease;
	}
}
@media all and (max-width: 1200px) {
	.header-logo {
		width: 150px;
		position: absolute;
		left: 50%;
		top: 70px;
		margin-left: -75px;
		z-index: 11;
	}
	.list-nav > li:nth-child(5) {
		margin-right: 195px;
	}
	.list-nav > li:nth-child(6) {
		margin-left: 0px;
	}
}
@media all and (max-width: 1056px) {
	.header-tel {
		width: 238px;
	}
	.list-nav > li:after {
		padding: 0 5px;
	}
	.list-nav > li:nth-child(5) {
		margin-right: 145px;
	}
}

.list-nav > li:hover .list-nav-sub {
	display: block;
}
.list-nav-sub {
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
	width: 120px;
}
.list-nav-sub:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: -10px;
	background: url(../img/list-nav-sub.png) center top no-repeat;
	background-size: contain;
	width: 100%;
	height: 11px;
	z-index: 3;
}
.list-nav-sub li {
	position: relative;
	border: 1px solid #eeeeee;
	border-bottom: none;
}
.list-nav-sub li:last-child {
	border-bottom: 1px solid #eee;
}
.list-nav-sub li a {
	font-size: 1.6rem;
	color: #444444;
	font-weight: bold;
	text-align: center;
	display: block;
	background: #fff;
	padding: 8px 25px;
}
.list-nav-sub li a:hover {
	opacity: 0.7;
}

/*
パンくず
*/
.bread {
	position: absolute;
	z-index: 5;
	left: 0px;
	bottom: 0px;
	background: #fff;
	display: inline-block;
	height: 37px;
	padding-left: 20px;
	padding-right: 20px;
	display: none;
}
.bread:after {
	content: "";
	display: block;
	position: absolute;
	left: 100%;
	bottom: 0;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 37px 0 0 5px;
	border-color: transparent transparent transparent #fff;
	transform: rotate(0deg);
}
.l-main-simple .bread {
}
.bread ul {
	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}

.bread li {
	font-size: 1.4rem;
	color: #0f2f7a;
	letter-spacing: 0.15em;
	display: inline-block;
}
.bread li span {
}
.bread li * {
	font-size: 1.4rem;
	color: #0f2f7a !important;
}
.bread li a {
	color: #0f2f7a !important;
	text-decoration: underline;
}
.bread li a span {
	color: #0f2f7a !important;
}
.bread li a:hover {
}
.bread i {
}
.bread li:first-child i {
}
.bread .bullet {
}
.bread li:after {
	content: "›";
	display: inline-block;
	width: 18px;
	text-align: center;
	height: 4px;
	margin: 10px auto;
	color: #0f2f7a;
}
.bread li:last-child:after {
	content: none;
}

/*
サイドバー
*/
.sidebar-title {
	text-align: left;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.5em;
	color: #624224;
	border-bottom: 2px dashed #f9a497;
	padding-bottom: 15px;
	position: relative;
	padding-left: 75px;
	padding-top: 1px;
	margin-top: 55px;
	margin-bottom: 35px;
}
.sidebar-title:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: -5px;
	background: url(../img/col-title.png) 0 0 no-repeat;
	background-size: contain;
	width: 61px;
	height: 46px;
}
.box-side {
	position: relative;
	width: 280px;
	margin-top: 90px;
}
.box-side input[type="text"] {
	width: 192px;
	height: 32.3px;
	border: 1px solid var(--blue);
	border-radius: 5px;
	box-sizing: border-box;
	padding: 0 5px;
	display: inline-block;
}
.box-side input[type="submit"] {
	background: url(../img/box-search-submit.png) 0 0 no-repeat;
	background-size: contain;
	width: 36.74px;
	height: 32.87px;
	text-indent: -9999em;
	border-radius: 0;
	box-shadow: none;
	border: none;
	display: inline-block;
	margin: 0;
	padding: 0;
}
.box-search {
	display: flex;
	justify-content: space-around;
}
.list-cat {
}
.list-cat > li {
	display: block;
	margin-bottom: 20px;
}
.list-cat > li a {
	color: #444444;
	font-size: 1.6rem;
	font-weight: 500;

	display: block;
}
.list-cat > li a time {
	display: block;
	margin-bottom: 10px;
	font-size: 1.2rem;
}
.list-cat > li a .count {
	display: none;
}
.list-cat > li a:hover {
	text-decoration: underline;
	opacity: 0.7;
}

.list-side {
}
.list-side > li {
	margin-bottom: 10px;
}
.list-side > li > a {
	font-size: 1.6rem;
	color: #444444;
}
.box-side .select-wrap {
	width: 100%;
	background: #fff;
	margin: 0 0 10px;
}
.box-side .select-wrap select {
	background: #fff;
	width: 100%;
	height: 40px;
	border-radius: 0;
	font-size: 1.4rem;
	color: var(--blue);
	font-weight: normal;
	border: 1px solid var(--blue);
	padding: 0 10px;
}

/*
フッター
*/
.page-top {
	position: fixed;
	bottom: 15px;
	right: 20px;
	width: 60px;
	z-index: 50;
	opacity: 0;
	display: none;
}
.page-top.is-active {
	opacity: 1;
	display: block;
	animation-duration: 0.5s;
	animation-name: fade-in;
}
.page-top.is-stick {
	position: absolute;
	bottom: auto;
	top: -30px;
	right: 20px;
}

.footer-top {
	border-top: 1px solid #eaeaea;
	background: #fff;
	position: relative;
	padding: 25px 0;
}
.footer-top .box-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.footer-top .footer-top-logo {
	width: 327px;
}
.footer-top .footer-top-r {
	display: flex;
	justify-content: flex-end;
}
.footer-top .footer-top-r .footer-top-tel {
	width: 238px;
	text-align: center;
	font-size: 1.2rem;
	color: #222222;
	margin-right: 25px;
	position: relative;
	top: 3px;
}
.footer-top .footer-top-r .footer-top-tel {
}
.footer-top .footer-top-r .nav-header {
	position: relative;
	right: 0;
	top: 0;
}
.footer-mid {
	position: relative;
	background: url(../img/footer-bg.jpg) center center no-repeat;
	background-size: cover;
}
.footer-nav {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #bcd9e1;
}
.footer-nav .list-footer-nav {
	padding: 50px 0;
}
.footer-nav .list-footer-nav li {
	position: relative;
	padding-left: 13px;
	margin-bottom: 8px;
}
.footer-nav .list-footer-nav li a {
	font-size: 1.5rem;
	color: #222222;
}
.footer-nav .list-footer-nav li a:before {
	content: "〉";
	position: absolute;
	left: 0;
	top: 3px;
	font-size: 1.2rem;
}
.footer-nav .list-footer-nav li a:hover {
	text-decoration: underline;
}
.footer-mark {
	padding-top: 30px;
	padding-bottom: 30px;
}
.list-footer-mark {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.list-footer-mark > li {
	width: 106px;
}
.list-footer-mark > li > a {
}
.footer-bottom {
	position: relative;
	background: url(../img/footer-bottom-bg.jpg) 0 0 no-repeat;
	background-size: cover;
	height: 80px;
}
.copyright {
	text-align: center;
	color: white;
	font-size: 1.3rem;
	line-height: 80px;
}
.footer-stick-1 {
	position: absolute;
	left: 0;
	bottom: 15px;
	background: url(../img/footer-stick-1.png) 0 0 no-repeat;
	background-size: contain;
	width: 408px;
	height: 252px;
}
.footer-stick-2 {
	position: absolute;
	right: 0;
	bottom: 15px;
	background: url(../img/footer-stick-2.png) 0 0 no-repeat;
	background-size: contain;
	width: 490px;
	height: 250px;
}
/*
サイドバー
*/

/*
LIST NEWS
*/
.list-news {
	position: relative;
	margin-bottom: 60px;
	border-top: 1px solid #eeeeee;
}
.list-news > .news {
	position: relative;
	border-bottom: 1px solid #eeeeee;
	padding: 25px 20px;
	padding-left: 310px;
	transition: 0.3s ease;
}
.list-news.list-news-useful .news {
	padding-left: 0px;
}
.list-news .news:hover {
	background: #fffce0;
}
.list-news .news .news-link {
	display: block;
	position: absolute;
	left: 0px;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.list-news .news .news-link:after {
	content: "";
	display: block;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -25px;
	width: 50px;
	height: 50px;
	background: url(../img/arc-link.png) 0 0 no-repeat;
	background-size: contain;
	transition: 0.3s ease-in-out;
}

.list-news .news .news-time {
	font-size: 1.6rem;
	display: block;
	position: absolute;
	left: 15px;
	top: 25px;
	color: #33589f;
	line-height: 28px;
	text-align: center;
}
.list-news .news .news-cat {
	font-size: 1.4rem;
	display: block;
	width: 150px;
	position: absolute;
	left: 130px;
	top: 25px;
}
.list-news .news .news-cat a {
	color: #33589f;
	display: block;
	font-size: 1.6rem;
	line-height: 28px;
	background: #faf9f6;
	border-radius: 6px;
	padding: 2px 2px;
	position: relative;
	z-index: 3;
	transition: 0.3s ease;
	text-align: center;
}
.main-news .list-news .news .news-cat a {
	background: #fff;
}
.list-news .news .news-cat a.notice {
	color: #b43b4a;
}
.list-news .news .news-cat a.campaign {
	color: #dc9100;
}
.list-news .news .news-cat a:hover {
	text-decoration: none;
	opacity: 0.7;
}
.list-news .news .news-title {
	margin-bottom: 0;
	margin-right: 60px;
	position: relative;
}
.list-news .news .news-title a {
	font-size: 1.6rem;
	line-height: 1.875em;
	color: #222222;
	transition: 0.3s ease;
	display: block;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.list-news .news .news-title a:hover {
	text-decoration: none;
}
.list-news .news .news-link a:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 0;
	height: 1px;
	background: #444;
	transition: 0.3s ease-in-out;
}
.list-news .news .news-title a:hover:after {
	width: 100%;
}

/*
CARDS
*/

/*
LIST COLUMN
*/
.list-column {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
.list-column li {
	position: relative;
}
.list-column .column-link {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 3;
	position: absolute;
	left: 0;
	top: 0;
}
.list-column .column-link:hover + .column-pic img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 0.7;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
}
.list-column .column-pic {
	position: relative;
	line-height: 0;
	overflow: hidden;
	background: #fff;
	border-radius: 60px;
}
.list-column .column-pic.is-pickup:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 120px;
	background: url(../img/obi-pickup.png) 0 0 no-repeat;
	background-size: contain;
}
.list-column .column-pic img {
	transition: 0.3s ease;
	width: 100%;
	height: 300px;
	object-fit: cover;

	transition: opacity 0.4s ease, transform 1.4s ease, -webkit-transform 1.4s ease;
	transform: scale(1);
}
.list-column .column-content {
	position: relative;
	padding: 30px 1px;
}
.list-column .column-time {
	font-size: 1em;
	display: inline-block;
	color: #b43b4a;
	margin-right: 20px;
}
.list-column .column-content .column-title {
	text-align: left;
	font-size: 1.8rem;
	font-weight: normal;
	color: #222222;
	line-height: 1.66em;
	margin-top: 15px;
}
.list-column .column-content .column-title a {
	color: #222222;
}
.list-column .column-cat {
	text-align: left;
	display: inline-block;
}
.list-column .column-cat a {
	font-size: 1.6rem;
	color: #b43b4a;
	display: inline-block;
	background: #fff;
	padding: 3px 10px;
	border-radius: 6px;
	transition: 0.3s ease;
	line-height: 1.5em;
	border: 1px solid #b43b4a;
}
.list-column .column-content .column-cat a:hover {
	text-decoration: none !important;
	color: #b43b4a;
}

/*
	MAIN WHY
	*/
.main-why {
	position: relative;
	padding-top: 90px;
	padding-bottom: 130px;
	background: #f9f8f5;
}
.main-why .main-why-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: url(../img/main-why-bg.jpg) center center no-repeat;
	background-size: cover;
	height: 470px;
}
.main-why .btn-text {
	/* margin-top: 0;
	margin-top: -50px; */
}
.main-why .main-why-en {
	width: 556px;
	margin: 45px auto;
}
.title-main {
	text-align: center;
	font-weight: bold;
	font-size: 3rem;
	color: #222222;
}
.title-caption {
	text-align: center;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	margin-top: 10px;
}
.main-why .title-main,
.main-why .title-caption {
	color: #fff;
}

.arc-swiper {
	width: 100%;
	padding: 100px 0;
	overflow: initial !important;

}
.arc-swiper .swiper-wrapper {
	overflow: initial !important;
}
.arc-swiper .swiper-slide {
	width: 300px;

	padding-top: 50px;
	transition: transform 0.5s;
	transform-origin: bottom center;
	text-align: center;
	transform: translateY(0); /* 初期値 */
}

.arc-swiper .swiper-slide .arc-pic {
	width: 300px;
	height: 300px;
	border-radius: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
	background: #f8f7f3;
}
.arc-swiper .swiper-slide .arc-pic img {
	width: 100%;
	height: 110%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-20px);
	transition: transform 0.4s ease;
}
.arc-swiper .swiper-slide .arc-link {
	display: block;
	position: relative;
	transition: transform 0.4s ease;
}
.arc-swiper .swiper-slide .arc-link:hover {
	transform: translateY(-20px);
}
.arc-swiper .swiper-slide .arc-link:hover .arc-pic img {
	transform: translateY(0px);
}
.arc-swiper .arc-pic .num {
	font-size: 5rem;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
}
.arc-swiper .arc-content {
	position: relative;
}
.arc-swiper .arc-content .arc-title {
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	color: #222222;
	margin-bottom: 15px;
}
.arc-swiper .arc-content p {
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.5714em;
	margin-bottom: 20px;
	color: #222222;
}
.arc-swiper .arc-content:before {
	content: "";
	display: block;
	background: url(../img/arc-link.png) 0 0 no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	margin: -40px auto 20px;
}
.arc-swiper .swiper-slide .arc-pic-4 img {
	width: 516px;
}
.arc-swiper .swiper-slide .arc-pic-5 img {
	width: 358.5px;
}
.arc-swiper .swiper-slide .arc-pic-6 img {
	width: 584.5px;
	height: 304px;
	object-fit: cover;
	position: absolute;
	left: 40px;
	top: 0;
	transform: scale(1.3) translateY(0px);
	transition: transform 0.4s ease;
}
.arc-swiper .swiper-slide .arc-link:hover .arc-pic-6 img {
	transform: scale(1.3) translateY(20px);
}
.arc-swiper .swiper-slide .arc-pic-7 img {
	width: 474px;
	height: auto;
	/* height: 312px; */
	object-fit: initial;
	position: absolute;
	left: 60px;
	top: 50px;
	transform: scale(1.8) translateY(0px);
	transition: transform 0.4s ease;
}
.arc-swiper .swiper-slide .arc-link:hover .arc-pic-7 img {
	transform: scale(1.8) translateY(10px);
}
.arc-swiper .swiper-slide .arc-pic-10 img {
	width: 456.5px;
	height: 305px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
	left: -50px;
	top: 13px;
	transform: scale(1.7) translateY(-20px);
}
.arc-swiper .swiper-slide .arc-link:hover .arc-pic-10 img {
	transform: scale(1.7) translateY(0px);
}
.arc-swiper .swiper-button-next {
	background: url(../img/bullet.png) 0 0 no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	z-index: 11;
	top: 50%;
	margin: 0;
	right: 30px;
	/* transform: translate(-50%, -50%);
	margin-left: 100px; */
}
.arc-swiper .swiper-button-prev {
	background: url(../img/bullet-2.png) 0 0 no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	z-index: 11;
	top: 50%;
	margin: 0;
	left: 30px;
	/* transform: translate(-50%, -50%); */
	/* margin-left: -100px; */
}
.arc-swiper .swiper-button-prev:after,
.arc-swiper .swiper-button-next:after {
	content: none;
}
/*
	MAIN INTRO
	*/
.main-intro {
	position: relative;
	padding-top: 50px;
	background: url(../img/bg-blue.jpg) 0 0 repeat;
	/* background-size: 1400px 1238px; */
	background-size: cover;
}
.main-banner-swiper {
	position: relative;
	width: 100%;
	padding-bottom: 40px;
}
.main-banner-swiper .swiper-slide {
	width: 300px;
}
.main-banner-swiper .swiper-pagination {
	bottom: -0px;
}
.main-banner-swiper .swiper-pagination .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.3;
}
.main-banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

.main-intro .main-intro-content {
	position: relative;
	padding-left: 21.6%;
	margin-top: 40px;
	padding-bottom: 120px;
}
.main-intro:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	bottom: -30px;
	background: url(../img/main-intro-caption.png) right bottom no-repeat;
	background-size: contain;
	width: 1400px;
	height: 96px;
}
.list-con {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	position: relative;
}
.list-con:before {
	content: "";
	display: block;
	position: absolute;
	left: -350px;
	top: -100px;
	background: url(../img/map-1.png) right bottom no-repeat;
	background-size: contain;
	width: 320px;
	height: 598px;
}
.list-con > li {
	position: relative;
	background: #fff;
	border-radius: 150px;
	padding: 20px 20px 40px;
}
.list-con > li:hover {
	opacity: 0.7;
	transition: 0.3s ease;
}
.list-con > li .con-link {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 3;
	position: absolute;
	left: 0;
	top: 0;
}
.list-con > li .con-pic {
	max-width: 170px;
	margin: 0 auto 20px;
}
.list-con > li .con-title {
	text-align: center;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.333em;
	color: #222222;
	margin-bottom: 20px;
}
.list-con > li .con-caption {
	text-align: center;
	font-weight: bold;
	font-size: 1.5rem;
	color: #b43b4a;
	letter-spacing: 0.2em;
}

/*
SCHOOL
*/
.list-sc {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
	margin: 50px auto;
}
.list-sc > li {
	position: relative;
	border-radius: 80px;
	box-sizing: border-box;
	overflow: hidden;
	background: url(../img/bg-beige.jpg) 0 0 repeat;
	background-size: 1400px 1400px;
}
.list-sc .sc-link {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.list-sc .sc-link:hover + .sc-header + .sc-pic img {
	transform: scale(1.05);
	opacity: 0.7;
}
.list-sc .sc-header {
	padding: 35px 0 15px;
	text-align: center;
}
.list-sc .sc-header .sc-header-title {
	text-align: center;
	font-weight: bold;
	font-size: 2.6rem;
	margin-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
}
.list-sc .sc-header .sc-header-area {
	text-align: center;
	background: #33589f;
	color: white;
	margin: 0;
	display: inline-block;
	border-radius: 10px;
	padding: 3px 10px;
	margin-bottom: 10px;
}
.list-sc .sc-header .sc-header-area i {
	font-size: 1.3em;
	vertical-align: middle;
}
/* .list-sc .sc-header .sc-header-area:before {
	content: "";
	display: inline-block;
	background: url(../img/exp-sc-location.png) 0 0 no-repeat;
	background-size: contain;
	width: 22px;
	height: 36px;
	vertical-align: middle;
	margin-right: 6px;
} */
.list-sc .sc-pic {
	height: 300px;
	position: relative;
	overflow: hidden;
}
.list-sc .sc-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition-duration: 0.4s;
}
.list-sc .sc-content {
	position: relative;
	padding: 1px 35px 35px;
}
.list-sc .sc-tags {
	text-align: center;
	position: relative;
	margin-top: -15px;
}
.list-sc .sc-tags span {
	display: inline-block;
	color: white;
	text-align: center;
	padding: 1px 5px;
	font-size: 1.5rem;
	background: #33589f;
	border-radius: 6px;
	margin: 0 3px;
}
.list-sc .sc-title-2 {
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 2.4rem;
	margin-top: 30px;
}
.list-sc .sc-content p {
	margin-bottom: 0;
}
