@charset "utf-8";
/* CSS Document */

/* =====================
  Base
===================== */
body {
	color: #535353;
	font-size: 1.6rem;
	background-color: #fff;
}
body, a, dd, div, dt, h1, h2, h3, h4, h5, h6, html, label, li, p, span, td, th {
	font-family: "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ ゴシック", sans-serif;
	line-height: 1.6;
	font-weight: 500;
}
main {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
a {
	display: inline-block;
	text-decoration:none;
	transition: 0.3s ease-in-out;
	color: #535353;
	backface-visibility: hidden;
}
a {
	outline:none;
}
a img {
	outline:none;
}
a:hover {
	text-decoration: none;
	transition: 0.3s ease-in-out;
	opacity: 0.8;
	color: #535353;
}
a:link ,
a:visited {
	text-decoration: none!important;
}
img {
	max-width: 100%;
}
.container {
	margin: 0 auto;
    max-width: 1150px;	
}
.container-inner {
	margin: 0 auto;
    max-width: 1000px;	
}
/* scroll bar */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-thumb {
	cursor: pointer;
	background: #535353;
	border-radius:10px;
}
::-moz-selection {
  background-color:aliceblue;
  text-shadow: none;
}
::selection {
  background-color: aliceblue;
  text-shadow: none;
}

/* =====================
  汎用クラス
===================== */
/* btn */
.btn-wrap {
	text-align: center;
}
a.btn {
	color:#fff;
	background-color: #00a0e9;
	border: 1px solid #00a0e9;
	width: 100%;
	max-width: 300px;
	padding: 25px 0;
	letter-spacing: 0.1em;
	text-align: center;
	overflow: hidden;
	position: relative;
}
a.btn::after {
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	left: -35%;
	top: 0;
	transition-duration: 0.6s;
	transform-origin: top left;
	z-index: 1;
	transition: all 0.3s;
}
a.btn span {
	font-size: 3rem;
	font-weight: bold;
	position: relative;
	z-index: 2;
	line-height: 1;
	vertical-align: middle;
	transition: all 0.3s;
}
a.btn:hover span {
	color: #00a0e9;
	opacity: 1;
}
a.btn:hover:after {
	width: 135%;
	height: 100%;
	background: #fff;
}
a.btn.white {
	color: #00a0e9;
	background-color: #fff;
	border: 1px solid #fff;
}
a.btn.white:hover span {
	color: #fff;
}
a.btn.white:hover:after {
	background: #00a0e9;
}
/*a.blank:after {
	position: relative;
	content: url(../images/common/icon_blank.png);
	right: -10px;
	top: -1px;
}*/

.left {
	float: left;
}
.right {
	float: right;
}
.bold {
	font-weight: bold;
}
.en {
	font-family: 'Noto Sans JP', sans-serif;	
}
.sp {
	display: none!important;
}
.text-link {
	color: #00a0e9!important;
	text-decoration: underline;
}
.tel a {
	color: #00a0e9!important;
	text-decoration: underline;
}

/* =====================
  fade
===================== */
.fade-box {
    visibility: hidden;
}
.fade {
    animation-fill-mode: both;
    animation-duration: 1s;
    animation-name: fade;
    visibility: visible !important;
}
@keyframes fade {
    0% { opacity: 0; transform: translateY(40px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* =====================
  link
===================== */
main .link li {
	opacity: 0;
}
main .link li.show:nth-child(1) {
	-webkit-animation: linkfade 0.8s ease 0.5s 1 forwards;
	animation: linkfade 0.8s ease 0.5s 1 forwards;
}
main .link li.show:nth-child(2) {
	-webkit-animation: linkfade 0.8s ease 0.8s 1 forwards;
	animation: linkfade 0.8s ease 0.8s 1 forwards;
}
main .link li.show:nth-child(3) {
	-webkit-animation: linkfade 0.8s ease 1.1s 1 forwards;
	animation: linkfade 0.8s ease 1.1s 1 forwards;
}
main .link li.show:nth-child(4) {
	-webkit-animation: linkfade 0.2s ease 1.4s 1 forwards;
	animation: linkfade 0.8s ease 1.4s 1 forwards;
}
@-webkit-keyframes linkfade {
  100% {
    opacity: 1;
  }
}
@keyframes linkfade {
  100% {
    opacity: 1;
  }
}
main .link .img-wrap {
	overflow: hidden;
}
main .link .img-wrap img {
    transform: scale(1);
    transition: all 0.4s ease;
}
main .link a:hover .img-wrap img {
    transform: scale(1.1);
}


/* =====================
  footer
===================== */
footer {
	position: relative;
	z-index: 1;
}
footer * {
	color: #fff!important;
}

footer .link {
	padding: 80px 0;
	background-color: #0e73b1;
}
footer .link ul li {
	display: inline-block;
	margin-right: 50px;
	font-weight: bold;
	position: relative;
	line-height: 35px;
}
footer .link ul li:last-child {
	margin-right: 0;
}
footer .link ul li a {
	font-weight: bold;
	position: relative;
	right: 0;
}

footer .sub {
	padding: 40px 0;
	background-color: #064c86;
}
footer .sub .wrap {
	display: flex;
    align-items: center;
	justify-content: space-between;
}
footer .sub li ,
footer .sub p {
	font-size: 1.4rem;
}
footer .sub ul li {
	margin-right: 75px;
	display: inline-block;
}
footer .sub .box p {
	margin-left: 20px;
	display: inline-block;
}


/* =====================
  pegeTop
===================== */
.pagetop {
	display: none;
}
.pagetop a {
    position: fixed;
    bottom: 120px;
    right: 60px;
	z-index: 100;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 1px solid #fff;
    background-color: #0e73b1;;
	text-align: center;
}
.pagetop a span {
	display: inline-block;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    margin-top: 22px;
	transition: 0.3s ease-in-out;
}
.pagetop a:hover span {
    margin-top: 19px;
}


/* ====================================================================================
         SP時
  ==================================================================================== */
@media screen and (max-width: 767px) {
	
/* =====================
  Base
===================== */
	body {
		font-size: 1.4rem;
	}
	body, a, dd, div, dt, h1, h2, h3, h4, h5, h6, html, label, li, p, span, td, th {
		line-height: 1.4;
	}
	.pc {
		display: none!important;
	}
	.sp {
		display: block!important;
	}
	
/* =====================
  汎用クラス
===================== */
/* btn */
	a.btn {
		max-width: 240px;
		padding: 15px 0;
	}
	a.btn span {
		font-size: 1.6rem;
	}
	.inner-responsive {
		overflow-x: scroll;
		display: block;
	}
	.left,
	.right {
		float: none;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
		
/* =====================
  footer
===================== */
	footer .logo {
		max-width: 80%;
		margin-bottom: 30px;
	}
	footer .link {
		padding: 40px 0 30px;
	}
	footer .link ul {
		display: block;
	}
	footer .link ul li {
		display: block;
		margin-right: 0;
	}

	footer .sub {
		padding: 20px 0;
	}
	footer .sub .wrap {
		display: block;
	}
	footer .sub li ,
	footer .sub p {
		font-size: 1.2rem;
	}
	footer .sub ul li {
		margin-right: 0;
		display: block;
	}
	footer .sub ul li {
		margin-right: 0;
		display: block;
		margin-bottom: 10px;
	}
	footer .sub .box p {
		font-size: 1rem;
		margin-top: 20px;
		margin-left: 2px;
	}

/* =====================
  pegeTop
===================== */
	.pagetop a {
		width: 40px;
		height: 40px;
		right: 20px;
		bottom: 50px;
	}
	.pagetop a span {
		width: 7px;
		height: 7px;
		margin-top: 18px;
	}

}


@media screen and (max-width: 1140px) {
	.container {
		padding: 0 20px!important;
		max-width: 100%;
	}
	.container-inner {
		padding: 0 20px;
		max-width: 100%;
	}
}


/* ====================================================================================
         ipad
  ==================================================================================== */

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {	
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	
	footer .logo {
		width: 200px;
	}	
	footer .link ul {
		margin-left: 40px;
	}	
	footer .sub ul li {
		margin-right: 30px;
	}
	
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	

}