@charset "UTF-8";
@import url("style_menu.css");

body {
   position: relative;
}
body.fixed {
   width: 100%;
}

img {
	width: 100%;
	height: auto;
}
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
.abox {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 4;
}
.sp-only {
    display: none!important;
}
.brtab, .brsp, .sp, .sp2, .tab-img {
 	display: none;
 }
.fin {
	opacity : 0;
	transform : translate(0, 20px);
	transition-duration: 1.5s;
	transition-property: all;
}
.fin.sin {
	opacity : 1;
	transform : translate(0, 0);
}
.split {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}
.scale-image .bg {
   position: relative;
   overflow: hidden;
}
.scale-image .bg img {
   opacity: 1;
   transform: scale(1);
   transition: all .5s;
}
.scale-image:hover .bg img {
   transform: scale(1.06);
}

/* ////////////////////////////////////////////////////////////////////  header */

.v-txt {
	position: fixed;
	left: 20px;
	top: 210px;
	writing-mode: vertical-rl;
	font-size: 12px;
	transform: rotate(0deg);
	font-weight: 700;
	color: #188DD6;
	z-index: 10;
	transition: all .4s;
}
.v-txt.on {
	color: #FFF;
	position: fixed;
}
header {
	width:100%;
	height: 72px;
	background: rgba(24,141,214,0.30);
	position: fixed;
	box-sizing: border-box;
	z-index: 10;
	top: 0;
	left: 0;
}
header .logo {
  position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
header .logo.on {
	position: absolute;
  z-index: 11;
}
header .logo p {
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	
	line-height: 1.2em;
}
header .logo p span {
	font-size: 12px;
	display: block;
}

/* ////////////////////////////////////////////////////////////////////  footer */
footer {
   padding: 120px 0 0;
   background: #F5F8F8;
}
.footer-entry-btn {
	width: 100%;
	height: 74px;
	border-radius: 37px;
	background: #FFF;
	box-shadow: 0px 0px 8px rgba(153, 177, 191, 0.32);
	margin: 40px auto;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.footer-entry-btn:hover {
	background: #F7F7F7;
}
.footer-entry-btn .ttl {
	position: absolute;
	width: 220px;
	height: 74px;
	border-radius: 37px;
	background: #083E96;
	left: -1px;
	color: #FFF;
}
.footer-entry-btn p {
	color: #FFF;
	font-size: min(3vw,18px);
	letter-spacing: 0.1em;
	font-weight: 600;
	text-align: center;
	line-height: 74px;
}
.footer-entry-btn p:not(.ttl) {
	color: #262626;
	position: absolute;
	top: 50%;
	left: calc(50% + 30px);
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.footer-entry-btn:after {
	position: absolute;
	content: "";
	top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index: -2;
}
.footer-entry-btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #188DD6;
	border-radius: 37px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.footer-entry-btn:hover p:not(.ttl) {
	color: #FFF;
}
.footer-entry-btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.footer-links01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-links01 li {
	width: 30.33%;
	position: relative;
}
.footer-links01 li .bg {
	background: #FFF;
	padding: 15px 0;
	text-align: center;
	box-shadow: 0px 0px 8px rgba(153, 177, 191, 0.32);
}
.footer-links01 li .bg img {
	width: 150px;
}
.footer-links02 {
	width: 80%;
	margin: 80px auto;
	max-width: 920px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer-links02 li {
	width: 48%;
	position: relative;
	height: 96px;
	border-radius: 48px;
	transition: all .3s;
}
.footer-links02 li p {
	color: #FFF;
	font-size: min(3vw,18px);
	font-weight: 500;
	text-align: center;
	line-height: 96px;
}
.footer-links02 li:nth-child(1) {
	background: #8B3DF5;
}
.footer-links02 li:nth-child(1):hover {
	background: #7831D9;
}
.footer-links02 li:nth-child(2) {
	background: #00BCBC;
}
.footer-links02 li:nth-child(2):hover {
	background: #0CA1A1;
}
.pagetop {
   width: 80px;
   height: 80px;
   background: url("../img/common_img/pagetop.svg") no-repeat center center;
   background-size: contain;
   cursor: pointer;
   position: fixed;
   z-index: 3;
   right: 20px;
   bottom: 20px;
   transition: all .3s;
}
.pagetop.up {
	bottom: 90px;
}
.footer-bottom {
	position: relative;
	background: linear-gradient(#188dd6 0%, #083e96 100%);
	box-sizing: border-box;
	padding: 40px 20px 20px;
}
.footer-bottom .logo {
	font-size: 20px;
	font-weight: 500;
	color: #FFF;
}
.footer-bottom ul li {
	display: inline-block;
	padding-right: 15px;
}
.footer-bottom ul li a {
	color: #FFF;
	font-size: 12px;
	text-decoration: none;
	white-space: nowrap;
}
.footer-bottom ul li a:hover {
	text-decoration: underline;
}
.footer-bottom .copyright {
	color: #FFF;
	font-size: 12px;
	position: absolute;
	right: 20px;
	bottom: 20px;
}
@media screen and (max-width: 1180px) {
	.footer-bottom .copyright {
		color: #FFF;
		font-size: 12px;
		position: relative;
		right: auto;
		bottom: auto;
		text-align: left;
	}
}
/* //////////////////////////////////////////////////////////////////// 下層共通 */
.block-ttl {
	font-size: 48px;
	color: #188DD6;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-align: left;
	line-height: 1.3em;
}
.block-ttl:first-letter {
	color: #083E96;
}
.block-ttl span {
	display: block;
	color: #262626;
	font-size: 12px;
	line-height: 1.3em;
	letter-spacing: 0.09em;
}


.btn-txt {
	position: relative;
	border-top: solid 1px #188DD6;
	margin: 10px 0 0;
	padding: 15px 0 0;
}
.btn-txt > p span {
	display: block;
	color: #B0C1CC;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4em;
}
.btn-txt > p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4em;
}


.content-box {
	width: 90%;
	margin: 0 auto;
	max-width: 1120px;
}


/* 　ページタイトル要素  */
.page-ttl {
	position: relative;
	height: 320px;
	box-sizing: border-box;
	padding: 0 0;
}
.page-ttl .h1-box {
	width: 90%;
	max-width: 730px;
	position: absolute;
	left: 50%;
	top: 120px;
	transform: translate(-50%,0);
}
.page-ttl .h1-box .ttl {
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0.09em;
	color: #188DD6;
	line-height: 1.6em;
}
.page-ttl .h1-box .ttl:first-letter {
	color: #083E96;
}
.page-ttl .h1-box .ttl span {
	display: block;
	font-size: 12px;
	color: #262626;
	line-height: 1.4em;
}
.page-ttl .h1-box h1 {
	border-top: solid #188DD6 1px;
	margin: 20px 0 0;
	padding: 15px 0 0;
	text-align: center;
	font-size: 32px;
	color: #083E96;
}


/* 　おすすめバナー  */
.recommend {
	position: relative;
	width: 90%;
	margin: 80px auto 100px;
	max-width: 1120px;
}
.recommend.inside {
	margin-bottom: 0!important;
}
.recommend > p {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.09em;
	color: #188DD6;
	line-height: 1.6em;
	margin-bottom: 20px;
}
.recommend > p:first-letter {
	color: #083E96;
}
.recommend ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.recommend ul li {
	width: 23%;
	margin: 0 1% 10px;
	position: relative;
}
.recommend ul li .btn-txt p {
	font-size: min(1.4vw,18px);
}


/* 　インタビューメニュー  */
.int-btn-txt {
	position: absolute;
	width: 94%;
	height: auto;
	min-height: 200px;
	box-sizing: border-box;
	padding: 50px 15px 15px;
	background: linear-gradient(rgba(8, 62, 150, 0.8) 0%, rgba(24, 141, 214, 0.3) 100%);
	bottom: 20px;
	left: 2%;
	z-index: 2;
}
.int-btn-txt .ttl {
	position: absolute;
	background: #FFF;
	left: 0;
	top: 0;
	padding: 0 20px;
	color: #188DD6;
	font-size: 16px;
	font-weight: 500;
}
.int-btn-txt .name {
	color: #FFF;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4em;
}
.int-btn-txt .name span {
	display: block;
	font-size: 12px;
}
.int-btn-txt p:not([class]) {
	color: #FFF;
	font-size: 12px;
	line-height: 1.6em;
}


/* 　黒ベタテキスト  */
.ttl-bar {
	position: relative;
	margin: 0 0 20px;
}
.ttl-bar span {
	display: inline-block;
	padding: 2px 40px;
	background: #262626;
	color: #FFF;
	font-size: 14px;
	font-weight: 500;
}



/* 　青グラデテキスト  */
.blue-bar {
	position: relative;
	margin: 0 0 10px;
}
.blue-bar span {
	display: inline-block;
	padding: 2px 20px;
	background: linear-gradient(90deg, #188dd6 0%, #083e96 100%);
	color: #FFF;
	font-size: 15px;
	line-height: 1.6em;
	font-weight: 500;
}

/* 　黒ボタン  */
.black-button {
	position: relative;
	width: 90%;
	margin: 0 auto;
	max-width: 550px;
	padding: 20px;
	background: #262626;
	transition: all .4s;
}
.black-button:hover {
	background: #3A3939;
}
.black-button.new-window:before {
	width: 10px;
	height: 10px;
	background-image: url("../img/common_img/new-window.svg");
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.black-button p {
	color: #FFF;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6em;
}
.black-button p span {
	font-size: 80%;
}
/*  Qタイトル  */
.q-ttl {
	font-size: 18px;
	font-weight: 600;
	color: #083E96;
	padding-left: 45px;
	position: relative;
	padding-bottom: 10px;
}
.q-ttl:before {
	width: 34px;
	height: 35px;
	left: 0;
	top: -5px;
	background-image: url("../img/common_img/question-icon.svg");
}
.black-button ~ .black-button {
	margin-top: 10px;
}


/*  テーブル  */
.outline-table {
	width: 100%;
	margin: 0 auto;
}
.outline-table {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.outline-table dt {
	width: 20%;
	text-align: left;
	color: #188DD6;
	vertical-align: top;
	font-weight: 500;
	letter-spacing: 0.08em;
	box-sizing: border-box;
	padding: 20px 0 20px 20px;
	border-bottom: 1px solid #188DD6;
}
.outline-table dd {
	width: 80%;
	box-sizing: border-box;
	padding: 20px 10px;
	border-bottom: 1px solid #B0C1CC;
}
.past {
	width: 100%;
	max-width: 500px;
}
.past th {
	font-weight: 400;
	text-align: center;
	font-size: 14px;
	border-bottom: solid 1px #B0C1CC;
	padding: 5px;
}
.past th.year {
	color: #188DD6;
	font-weight: 500;
	border-bottom: none;
}
.past th.year:nth-child(even) {
	background: #F5F8F8;
}
.past td {
	text-align: center;
	font-weight: 500;
	border-bottom: solid 1px #B0C1CC;
}
.past td:nth-child(even) {
	background: #F5F8F8;
}