@charset "utf-8";

@import url("base.css");
@import url("common.css");
@import url("page.css");
/*====================================
	
----------------------------------
	Color
----------------------------------

Main     : #16BAF0
Accent   : #FFEB30
Accent   : #285CB4	

----------------------------------
	font
----------------------------------

M PLUS 1p

----------------------------------
	Structure
----------------------------------

0. General
1. Header
2. Main
	2.1	セクション名
3. Footer
4. Page
	4.1 ページ名
5. Contact Form
6. Parts / Others

----------------------------------
	Change Log
----------------------------------

-2019/1/1	 ID,Class名


====================================*/

/*====================================

	0. Common

====================================*/
.pc {
	display: block;
}

.sp {
	display: none;
}

.title-box {
	margin-bottom: 30px;
}
.sec-title {
	font-size: 3.2rem;
}

/*---------- Mediaquery ----------*/
/*~960px */
@media screen and (max-width: 60em) {

}

/* ~576px */
@media screen and (max-width: 36em) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}

}


/* ~360px */
@media screen and (max-width: 20em) { 

}



/*====================================

	1. Header

====================================*/
/*
	トップバー
====================================*/
.topbar {
	background-color: #004098;
	margin: 0 auto;
	height: auto;
	width: 100%;
	max-width: 100%;
}

.topbar-container {
	margin-left: auto;
	display: flex;
	align-items: center;
	width: 85%;
	max-width: 100%;
}

.info-boxWrap {
	width: 100%;
}

.info-box {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
}
.info-item a {
	padding: 5px 30px;
	display: inline-block;
}

.info-item a,
.info-item span {
	color: #fff;
	text-decoration: none;
	line-height: normal;
}

.info-item:first-child a {
	background-color: rgba(0,0,0,0.2);
	font-size: 2.6rem;
	font-weight: 600;
	height: 68px;
}

.info-item:last-child a {
	background-color: #3AA323;
	line-height: 58px;
}

.info-item span {
	display: block;
	font-size: 1rem;
}

/*---------- Mediaquery ----------*/
@media screen and (max-width: 1200px) {
	.topbar-container {
		padding-left: 15px;
		width: 100%;
	}
}
@media screen and (max-width: 991px) {
	.topbar {
		display: none;
	}
}

/*
	グローバルナビ
====================================*/
.navbar {
	background-color: #fff;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	padding: 10px 0;
}

.navbar-brand {
	margin-left: 15%;
}

.navbar-brand img,
.topbar .navbar-brand img {
	width: 260px;
}

.navbar-nav {
	width: 1200px;
	max-width: 100%;
}

/* .nav-justified {
    display: table;
    table-layout: fixed;
    width: 100%;
}
.navbar .nav-justified > li {
    display: table-cell;
    width: 100%;
} */

.nav-item {
	border-left: 1px #B5B5B6 solid;
	text-align: center;
	line-height: normal;
}

.nav-item:first-child {
	border-left: none;
}
.nav-item:first-child a::before,
.nav-item:nth-child(2) a::before, 
.nav-item:nth-child(3) a::before, 
.nav-item:nth-child(4) a::before, 
.nav-item:nth-child(5) a::before,
.nav-item:nth-child(6) a::before, 
.nav-item:nth-child(7) a::before {
	content: "";
	display: block;
	margin: 0 auto;
	width: 40px;
	height: 40px;
	margin-bottom: 5px;
}
.nav-item:first-child a::before {
	background: url("../images/layout/icon/icon01.png") no-repeat center;
	background-size: 40px 40px;
}
.nav-item:nth-child(2) a::before {
	background: url("../images/layout/icon/icon02.png") no-repeat center;
	background-size: 40px 40px;
}
.nav-item:nth-child(3) a::before {
	background: url("../images/layout/icon/icon03.png") no-repeat center;
	background-size: 40px 40px;
}
.nav-item:nth-child(4) a::before {
	background: url("../images/layout/icon/icon04.png") no-repeat center;
	background-size: 40px 40px;
}
.nav-item:nth-child(5) a::before {
	background: url("../images/layout/icon/icon05.png") no-repeat center;
	background-size: 40px 40px;
}
.nav-item:nth-child(6) a::before {
	background: url("../images/layout/icon/icon11.png") no-repeat center;
	background-size: 40px 40px;
}
.nav-item:nth-child(7) a::before {
	background: url("../images/layout/icon/icon06.png") no-repeat center;
	background-size: 40px 40px;
}

.nav-link,
.navbar-brand {
	color: inherit;
}

.nav-link {
	font-size: calc(12px + 2 * (100vw - 320px) / 1600);
	font-weight: 600;
}

.navbar-collapse {
	justify-content: center;
}

.sp-contact {
	display: none;
}

.navbar-nav li.btn-close {
	display: none;
}

/* トグルバー */
.navbar-toggler {
	color: rgba(0, 0, 0, 0.5);
	border: none;
	padding: 0px;
	width: 30px;
	height: 30px;
	box-sizing: border-box;
	position: relative;
}
.navbar-toggler-icon {
	background-image:none; 
	background-color: #fff;
	width: 30px;
	height: 2px;
	display: block;
	position: absolute;
	transition: ease .5s;
}

.navbar-toggler-icon:nth-of-type(1) {top:7px;}
.navbar-toggler-icon:nth-of-type(2) {top:14px;}
.navbar-toggler-icon:nth-of-type(3) {top:21px;}


.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
	top:13px;
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
	top:13px;
	transform: rotate(-45deg);
}

/* ドロップダウン */
.dropdown-item {
	white-space: unset;
	word-break: break-all;
}

.nav-item .dropdown-menu a {
	font-size: 1.4rem;
	padding: 10px;
}

.nav-item .dropdown-menu a::before {
	display: none;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
	position: relative;
}

.dropdown-item::after {
	color: #004098;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translate(0, -50%);
}


@media screen and (max-width: 991px) { 
	.navbar-nav .nav-link {
		font-size: 1.4rem;
	}
}


/*---------- Mediaquery ----------*/
@media screen and (max-width: 991px) {
	.navbar {
		background-color: #004098;
		padding: 0;
		justify-content: flex-end;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1030;
	}
	.navbar-collapse {
		background-color: rgba(0,0,0,0.2);
		height: 70vh;
		overflow-y: scroll;
	}
	.navbar-nav {
		width: 100%;
		height: 100vh;
		overflow-y: scroll;
	}
	.navbar-toggler_wrap {
		background-color: rgba(0,0,0,0.2);
		padding: 10px;
	}
	.navbar-toggler {
		/* margin-right: 10px; */
		width: 30px;
		height: 30px;
	}
	.navbar-brand {
		margin-left: 10px;
		width: 180px;
	}
	.navbar-brand.sp {
		display: block;
	}
	.contact-sp {
		display: block;
		background-color: #3AA323;
		padding: 11px;
		margin-left: auto;
	}
	.contact-sp a img {
		width: 30px;
		height: auto;
	}
	.nav-justified {
		display: block;
	}
	.navbar .nav-justified > li {
		display: block;
	}
	.navbar .nav-justified > li.btn-close {
		width: 200px;
		margin-top: 50px;
	}
	.nav-item {
		border-top: 1px #fff solid;
		border-left: none;
		position: relative;
	}
	.nav-item:nth-child(7) {
		border-bottom: 1px #fff solid;
	}
	.nav-item:first-child a::before,
	.nav-item:nth-child(2) a::before, 
	.nav-item:nth-child(3) a::before, 
	.nav-item:nth-child(4) a::before, 
	.nav-item:nth-child(5) a::before, 
	.nav-item:nth-child(6) a::before,
	.nav-item:nth-child(7) a::before, 
	.nav-item:last-child a::before {
		display: none;
	}
	.navbar-nav .nav-link {
		color: #fff;
		text-align: left;
		font-weight: normal;
		padding: 10px;
		position: relative;
	}
	.navbar-nav .nav-link::after  {
		border: none!important;
		color: #fff;
		content: "\f105";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		display: inline-block;
		position: absolute;
		right: 5%;
		top: 50%;
		transform: translate(0, -50%);
	}
	.dropdown-item {
		border: none;
	}
	.nav-item .dropdown-menu a {
		padding: 10px 20px;
		padding-right: 40px;
	}
	.btn-close {
		display: block;
		text-align: center; 
		margin-top: 50px;
	}
	.btn-close  {
		background-color: #fff; 
		width: 200px;
		margin: 0 auto;
		padding: 5px 30px;
	}
	.btn-close .navbar-toggler {
		color: inherit;
		font-size: 1.6rem;
		margin-right: 0;
		width: 100%;
		height: auto;
	}
	.btn-close .navbar-toggler::before {
		content: "\f00d";
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		display: inline-block;
		padding-right: 10px;
	}
	.dropdown a{
		display: block;
		padding: 10px;
		text-decoration: none;
		position: relative;
	}

	.dropdown a[data-toggle="dropdown"]::before,
	.dropdown a[data-toggle="dropdown"]::after {
		content:"";
		display: block;
		width: 12px;
		height: 3px;
		border-radius: 5px;
		background: #fff;
		position: absolute;
		right: 5%;
		top: 50%;
		transform: translateY(-50%);
	}
	.dropdown a[data-toggle="dropdown"]::after {
		transform: translateY(-50%) rotate(90deg);
		transition: 0.5s;
	}

	.dropdown a [aria-expanded="false"]::after {
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
	}
	.dropdown a[aria-expanded="true"]::after{
		transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		margin-top: -1px;
	}
}


/*====================================

	2. Main

====================================*/
/*
	メインビジュアル / main-visual
====================================*/
section.main-visual {
    padding: 0;
}


/*---------- Mediaquery ----------*/
/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
	section.main-visual {
		margin-top: 50px;
	}
}


/*
	サービス / service
====================================*/
.service {
	padding: 0 0;
	margin: 0;
}

.service .container {
	background: url("../images/layout/service/service_bg.png") no-repeat center center;
	background-size: 100% auto;
	width: 100%;
	height: 0;
	padding-top: 23.2166%;
	position: relative;
	margin: 80px auto 0;
}

.service .container.mockExamBlock {
	padding: 50px 15px;
}

.service-linkWrap {
	display: flex; 
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 100%;
}

.service-linkWrap li {
	display: inline-block;
	margin: 0 10px;
}

.service-linkWrap li .service-link img {
	display: block;
	margin: 0 auto; 
	width: 290px;
	max-width: 100%; 
	height: auto;
}

.bg-wrap {
	display: flex; 
	position: relative;
	text-align: center;
}

.bg-inner {
	width: 100%;
}

.service-item_wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

.service-item {
	text-align: center;
}

.service-img {
	position: relative;
}

.service-img img {
	margin: 0 auto;
	max-width: 100%;
}

.con-text_wrap {
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%,-50%);
	text-align: center;
	width: 100%;
}

.con-text {
	color: inherit;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: normal;
}

.con-text:hover {
	opacity: 0.6;
	text-decoration: none;
}

.con-text::before {
	content: "";
	display: block;
	margin: 0 auto 10px;
	width: 50px;
	height: 50px;
}

.service-item:first-child .con-text::before {
	background: url("../images/layout/icon/icon03.png") no-repeat center;
	background-size: 50px 50px;
}

.service-item:nth-child(2) .con-text::before {
	background: url("../images/layout/icon/icon04.png") no-repeat center;
	background-size: 50px 50px;
}

.service-item:nth-child(3) .con-text::before {
	background: url("../images/layout/icon/icon05.png") no-repeat center;
	background-size: 50px 50px;
}

.service-item:last-of-type .con-text::before {
	background: url("../images/layout/icon/icon11.png") no-repeat center;
	background-size: 50px 50px;
}

.con-text::after {
	color: #004098;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: block;
	margin-top: 10px;
}


.service .dl-btn {
	margin: 30px auto 0;
	width: 50%;
	max-width: 100%;
}

/*---------- Mediaquery ----------*/
/*~960px */
@media screen and (max-width: 60em) {
	.con-text {
		font-size: 1.8rem;
	}
}

/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
	.service {
		padding: 0 0 50px;
	}
	.service-item_wrap {
		transform: translate(-50%,-42%);
	}
	.service .container {
		margin-top: 10%;
	}	
}

/* ~576px */
@media screen and (max-width: 36em) {
	.service {
		background: url("../images/layout/service/service_bg_sp.png") no-repeat center top;
		background-size: cover;
		width: 100%;
		margin-top: 0;
	}
	.service .container {
		background: unset;
		background-size: unset;
		padding-top: 0;
		position: unset;
	}	
	.bg-wrap {
		display: none!important;
	}
	.service-item_wrap {
		position: unset;
		left: unset;
		top: unset;
		transform: unset;
	}
	.service-item {
		margin-bottom: 20px;
	}
	.con-text {
		font-size: 1.6rem;
	}
	.con-text::before,
	.con-text::after {
		display: inline-block;
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
	}
	.con-text::before {
		margin-bottom: 0;
		left: 10%;
	}
	.service-item:first-child .con-text::before,
	.service-item:nth-child(2) .con-text::before,
	.service-item:last-of-type .con-text::before {
		background-size: 35px 35px;
	}
	.con-text::after {
		margin-top: 0;
		right: 15%;
	}

}


/*
	新着情報 / news
====================================*/
.news{
	padding-top: 50px;
}
.news .sec-title::before {
	background: url("../images/layout/icon/icon07.png") no-repeat center;
	background-size: 50px 35px;
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 50px;
	height: 35px;
	vertical-align: middle;
}

.news-list-grp {
	border-bottom: 1px #B5B5B6 solid; 
	display: flex;
	padding: 15px;
	vertical-align: top;
}

.news-list-grp:first-child {
	border-top: 1px #B5B5B6 solid; 
}

.post-date {
	font-weight: normal;
	width: 26%; 
}

.post-text {
	width: 74%;
}

.date {
	margin-right: 20px;
}

.post-text a {
	color: #004098;
	display: inline;
	text-decoration: underline;
}

.post-text a:hover {
	opacity: 0.8;
}

.badge-new::after {
	color: #E60012;
	content: "NEW!";
	display: inline-block;
	padding-left: 10px;
}


/*---------- Mediaquery ----------*/
/*~960px */
@media screen and (max-width: 60em) {

}

/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
	.news .pc {
		display: none;
	}
	
	.news .sp {
		display: block;
	}
	.news .btn-blue {
		width: 50%;
		margin: 0 auto;
	}
}

/* ~576px */
@media screen and (max-width: 36em) {
	.news .sec-title {
		text-align: center;
	}
	.news-list-grp {
		flex-wrap: wrap;
		padding: 15px 0;
	}
	.post-date,
	.post-text {
		display: inline-block;
		width: 100%;
	}
	.post-date {
		margin-bottom: 10px;
	}
	.news .col-12 .btn-blue {
		width: 50%;
	}

}


/* ~360px */
@media screen and (max-width: 20em) { 

}


/*
	カレンダー / calendar
====================================*/
.calendar {}

.schedule {
	text-align: center;
	margin-bottom: 50px;
}

.dl-btn,
.adoption-btn,
.mockExam-btn {
	background: rgb(1,66,150);
	background: -moz-linear-gradient(45deg, rgba(1,66,150,1) 0%, rgba(58,163,35,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(1,66,150,1) 0%, rgba(58,163,35,1) 100%);
	background: linear-gradient(45deg, rgba(1,66,150,1) 0%, rgba(58,163,35,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#014296",endColorstr="#3aa323",GradientType=1);
	text-align: center;
	padding: 30px 10px;
	margin-bottom: 20px;
	position: relative;
}

.mockExam-btn {
	margin: 50px auto 0;
	width: 570px;
	max-width: 100%;
}

.dl-btn:hover,
.adoption-btn:hover,
.mockExam-btn:hover {
	opacity: 0.8;
}

.dl-btn a,
.adoption-btn a,
.mockExam-btn a {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 600;
}

.dl-btn::before,
.adoption-btn::before,
.mockExam-btn::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translate(200%, -50%);

}
.dl-btn::before {
	background: url("../images/layout/icon/icon08.png") no-repeat center;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}

.adoption-btn::before {
	background: url("../images/layout/icon/icon09.png") no-repeat center;
	background-size: 40px 51px;
	width: 40px;
	height: 51px;
}

.mockExam-btn::before {
	background: url("../images/layout/icon/icon12.png") no-repeat center;
	background-size: 55px 55px;
	width: 55px;
	height: 55px;

}

.dl-btn a:hover,
.adoption-btn a:hover,
.mockExam-btn a:hover {
	text-decoration: none;
	opacity: 0.8;
}


[date-area="pc"] {
	display: block;
}
[date-area="sp"] {
	display: none;
}

/*---------- Mediaquery ----------*/
/*　1280px~（大型PC） */
@media screen and (max-width:80em) {
	.dl-btn::before {
		transform: translate(100%, -50%);
	}
	.adoption-btn::before {
		transform: translate(100%, -50%);
	}
}

/*~960px */
@media screen and (max-width: 60em) {
	.dl-btn::before {
		background-size: 35px 35px;
		transform: translate(50%, -50%);
	}
	.adoption-btn::before {
		background-size: 35px 46px;
		transform: translate(50%, -50%);
	}
}

/* ~896px */
@media screen and (max-width: 56em) {
	.dl-btn::before {
		background-size: 30px 30px;
		transform: translate(40%, -50%);
	}
	.adoption-btn::before {
		background-size: 30px 41px;
		transform: translate(40%, -50%);
	}
	.dl-btn a,
	.adoption-btn a {
		font-size: 2rem;
		padding-left: 30px;
	}
 }

/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
	.dl-btn::before {
		background-size: 25px 25px;
		transform: translate(10%, -50%);
	}
	.adoption-btn::before {
		background-size: 25px 36px;
		transform: translate(10%, -50%);
	}
	.dl-btn a,
	.adoption-btn a {
		font-size: 1.6rem;
	}
}



/* ~576px */
@media screen and (max-width: 36em) {
	.dl-btn::before {
		background-size: 30px 30px;
	}
	.adoption-btn::before {
		background-size: 30px 41px;
	}
	.dl-btn a,
	.adoption-btn a {
		font-size: 2rem;
		padding-left: 30px;
	}
	[date-area="pc"] {
		display: none;
	}
	[date-area="sp"] {
		display: block;
	}
}


/* ~360px */
@media screen and (max-width: 20em) { 

}


/*
	広告バナー / banner
====================================*/
.ad-banner {
	background-color: #D9E2F0;
	position: relative;
}

.ad-imgBox {
	margin-bottom: 20px;
}

.ad-imgBox-in {
	max-width: 280px;
	max-height: 100px;
	position: relative;
	cursor: pointer;
	transition-duration: 0.3s;
	overflow: hidden;
}
.ad-imgBox-in a:before {
	content: "";
	position: absolute;
	width: 320px;
	height: 180px;
	background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
	transition-duration: 0.3s;
	opacity: 0;
}

.ad-imgBox a:hover {
	transform: scale(1.1);
	transition-duration: 0.3s;
}

.ad-imgBox-in a:hover:before {
	opacity: 1;
}


/*---------- Mediaquery ----------*/
/*~960px */
@media screen and (max-width: 60em) {

}

/* ~576px */
@media screen and (max-width: 36em) {
	.ad-banner {
		padding-bottom: 70px;
	}
	.ad-imgBox {
		margin-bottom: 10px;
	}
}


/* ~360px */
@media screen and (max-width: 20em) { 

}



/*====================================

	3. Footer

====================================*/
footer {
	background-color: #004098;
	color: #fff;
	padding: 30px 0;
	height: 100px;
}

.footer-nav {
	display: flex;
}

.footer-nav li {
	padding-left: 30px;
	line-height: normal;
}

.footer-nav li:first-child {
	padding-left: 0;
}

.footer-nav li a {
	color: #fff;
	line-height: normal;
	text-decoration: none;
	position: relative;
	padding-left: 15px;
}

.footer-nav li a::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}

.footer-nav li a:hover {
	opacity: 0.8;
}



/*---------- Mediaquery ----------*/
/*　~1024px（小型PC）　*/
@media screen and ( max-width:64em) {
	footer {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*~960px */
@media screen and (max-width: 60em) {
	.footer-nav li a {
		font-size: 1.4rem;
	}
}


/* ~576px */
@media screen and (max-width: 36em) {
	.footer-nav {
		justify-content: center;
	}
	.footer-nav li {
		padding-left: 20px;
	}
	.footer-nav li a {
		font-size: 1.2rem;
	}

}


/* ::: コピーライト ::: */
.copyright-wrap {
	padding: .5rem 0;
	text-align: right;
}

.copyright {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 0!important;
}

/*---------- Mediaquery ----------*/
/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
	.copyright-wrap {
		text-align: center;
	}
	.copyright {
		font-size: 1.2rem;
	}
}


/*====================================

	4. Page

====================================*/



/*====================================

	5. Contact Form

====================================*/
select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

select::-ms-expand {
    display: block;
}

.wpcf7-form table { 
	margin: 0 auto 50px; 
	width: 100%;
	max-width: 100%;
}

/* ~768px（タブレット） */
@media screen and (max-width: 48em) {
	.wpcf7-form table {
		width: 100%;
	}
	.wpcf7-form table tbody th,
	.wpcf7-form table  tbody td {
		display: block;
		width: 100%;
	}
	.wpcf7-form input[type="submit"],
	.wpcf7-form input[type="submit"] {
		display: block;
		margin: 0 auto;
	}
}


/*====================================

	6. Other

====================================*/
/* ::: トップへ戻る ::: */
#page-top {
    background-color: #3AA323;
    position: fixed;
    right: 50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    z-index: 9000;
}

#page-top a {
    background-color: #3AA323;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    position: relative;
}

#page-top a::before {
    color: #fff;
    content: '\f106';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 25px;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#page-top:hover {
	opacity: .8;
}

/* ::: セキュリティ対策自己宣言 ::: */
#security-logo {
	width: 15%;
}

@media screen and (max-width: 48em) {
	#security-logo {
		width: 25%;
	}
}

/*---------- Mediaquery ----------*/
/* ~576px */
@media screen and (max-width: 36em) {
    #page-top {
        background-color: #eee;
        position: absolute!important;
        right: 0;
        bottom: 0!important;
        width: 100%;
        height: 50px;
        z-index: 9000;
    }
    #page-top a {
        display: block;
        width: 100%;
        height: 50px;
        text-decoration: none;
        text-align: center;
        position: relative;
    }
    #page-top a::before {
        color: #fff;
        font-size: 25px;
        position: absolute;
        width: 100%;
        height: 50px;
        top: 50%;
        left: 50%;
        margin: 0 auto;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}


/* ::: スライダー ::: */
.slider {
    width: 100%;
	margin: 0 auto;
}

.slider .slick-slide {
    margin: 0 5px;
}

.slick-slide img {
    width: 100%;
    height: auto;
}

.slider-item img {
	height: auto!important;
	object-fit: cover;
}


/* Dots */
.slide-dots {
	text-align: center;
	margin-top: 1rem;
}

.slide-dots li {
	display: inline-block;
	margin: 0 .5rem;
}

.slide-dots li button {
	border-radius: 2px;
	background: #C8C8C8;
	position: relative;
	text-indent: -9999px;
	width: 30px; 
	height: 3px;
}

.slide-dots li button:before {
  content: "";
  font-size: 0;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
}
.slide-dots li.slick-active button:before {
	border-radius: 2px;
	background: #004098;
	width: 30px; 
	height: 3px;
}



/*---------- Mediaquery ----------*/
/*~960px */
@media screen and (max-width: 60em) {}

/* ~576px */
@media screen and (max-width: 36em) {
    .slider .slick-slide {
        margin: 0;
    }
    .slick-slider img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: calc(100vh - 380px);
    }
    .slick-slider:nth-child(3) img {
		background-position: top right;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: calc(100vh - 400px);
    }
}




/* ::: 画像切り取り ::: */
.object-fit-img {
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: cover; object-position: center;'
}

