@charset "utf-8";
img{
	max-width: 100%;
}
a{
  transition: 0.3s;
  color: #006CD8;
}
a img{
  transition: 0.3s;
}
a:hover img{
  opacity: 0.7;
}
a:hover{
  text-decoration: none;
}
p{
  word-break: break-all;
}
html,body{
	color: #333333;
  height: 100%;
  font-family: "Noto Sans JP","Noto Serif JP", "sans-serif";
}
.eb{
	font-family: "EB Garamond", serif;
}
.serif{
	font-family: "Noto Serif JP", serif;
}

/* common */
body{
	padding-top: 120px;
}

/* header */
header{
	background: #FFF;
	width: 100%;
	height: 120px;
	position: fixed;
	top: 0;
	z-index: 10000;
}
header .headerinner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
header .headerlogo{
	width: calc(376 / 1920 * 100%);
	margin-left: 28px;
}
header .headerlogo a{
	max-width: 376px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
header .headerlogo .logomark{
	width: calc(72 / 376 * 100%);
}
header .headerlogo .logotype{
	width: calc(272 / 376 * 100%);
}
nav{
	height: 100%;
}
nav ul{
	display: flex;
	align-items: center;
	height: 100%;
}
nav ul a{
	color: #395780;
	font-size: 18px;
	text-decoration: none;
	padding: 0 30px;
	position: relative;
}
nav ul a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #395780;
	bottom: -20px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}
nav ul a:hover::after {
	transform: scale(1, 1);
}

nav ul li{
	border-left: 1px solid #395780;
}
nav ul li:first-child,nav ul li.headercontact{
	border-left: none;
}
nav ul li.headercontact{
	height: 100%;
	margin-left: 20px;
}
nav ul li.headercontact a{
	color: #FFF;
	text-decoration: none;
	background: #4f709e;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 50px;
}
nav ul li.headercontact a div{
	background: url("../img/ico-mail.svg") no-repeat left center;
	background-size: 26px auto;
	padding-left: 32px;
	z-index: 1000;
	position: relative;
}
nav ul li.headercontact a:hover{
	opacity: 0.8;
}
nav ul li.headercontact a::after{
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #012547;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
nav ul li.headercontact a:hover::after {
	width: 100%;
}
.spheadermenu,.spnavi{
	display: none;
}

/* page */
.overinner{
	background: rgba(255,255,255,0.95);
	width: 94%;
	max-width: 1200px;
	padding: 80px;
	margin: 0 auto;
	overflow: hidden;
}
.imgbgcontainer .overinner{
	padding: 100px;
}
.overhead{
	color: #395780;
}
.overhead h2{
	font-size: clamp(35px,7vw,70px);
	margin-bottom: 18px;
}
.overhead p.subtext{
	font-size: clamp(18px,2.4vw,28px);
	font-weight: bold;
	line-height: 190%;
}
.overhead p{
	color: #333;
	font-size: clamp(16px,1.8vw,18px);
	line-height: 200%;
	letter-spacing: 0.05em;
}
.overhead p.tar{
	text-align: right;
	margin-top: 30px;
}
.container{
	padding: 80px 0;
}
.bgcontainer{
	background: url("../img/contentsbg_pc.webp") no-repeat top center;
	background-size: cover;
	padding: 80px 0;
}
.imgbgcontainer{
	background: url("../img/imagebg_pc.webp") no-repeat top center;
	background-size: cover;
	padding: 80px 0;
}
.sectionttl{
	color: #395780;
	font-size: clamp(24px,3.6vw,36px);
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 30px;
}
.contentsttl{
	background: #4f709e;
	color: #FFF;
	font-size: clamp(18px,2.4vw,24px);
	text-align: center;
	letter-spacing: 0.05em;
	padding: 10px;
	margin-bottom: 50px;
}
.contentsflex{
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
}
.contentsflex.flexre{
	flex-direction: row-reverse;
}
.inner{
	width: calc(100% - 30px);
	max-width: 1200px;
	margin: 0 auto;
}
.infotable{
	width: 100%;
	border-spacing: 0 7px;
	border-collapse: separate;
}
.infotable th,.infotable td{
	border: 1px solid #607ea7;
	font-size: clamp(16px,1.8vw,18px);
	padding: 15px 28px;
}
.infotable th{
	width: 300px;
	color: #FFF;
	background: #607ea7;
	text-align: center;
	vertical-align: middle;
}
.infotable td{
	color: #221815;
	background: #FFF;
	line-height: 170%;
}
ul.figurelist li{
	color: #333333;
	font-size: clamp(16px,1.8vw,18px);
	line-height: 160%;
	position: relative;
	margin-bottom: 0.8em;
	padding-left: 1.25em;
}
ul.figurelist li::before{
	color: #395780;
	content: "■";
	position: absolute;
	left: 0;
	top: 0;
}
.tar{
	text-align: right;
}
.pagetitle h2{
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	transform: translateX(-30px);
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
}
.pagetitle.on h2{
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	transform: translateX(0);
}

/* footer */
footer{
	background: #f7f7f7;
	position: relative;
}
.pagetop{
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 35px;
	height: 35px;
}
.footerinner{
	width: 94%;
	max-width: 1200px;
	padding: 50px 0px;
	margin: 0 auto;
	letter-spacing: 0.05em;
	text-align: center;
}
.footerinner .footerlogo img{
	max-width: 214px;
	width: 100%;
}
.footerinner .footeraddress{
	font-size: clamp(16px,1.8vw,18px);
	margin: 17px 0 7px;
}
.footerinner .footertel{}
.footerinner .footertel span{
	font-size: clamp(24px,2.8vw,28px);
	margin: 0 6px;
}
.footerinner .footertel small{
	font-size: clamp(12px,1.4vw,14px);
}
.copy{
	background: #395780;
	color: #FFF;
	font-size: clamp(13px,1.6vw,16px);
	text-align: center;
	padding: 15px 0;
}

@media screen and (min-width: 769px){
  .sp{
    display: none !important;
  }
}
@media screen and (max-width: 1200px){
	header .headerlogo {
		margin-left: 15px;
		width: 23%;
	}
	nav ul a {
		font-size: 16px;
		padding: 0 20px;
	}
	nav ul li.headercontact a {
		padding: 0 40px;
	}
}
@media screen and (max-width: 768px){
  .pc{
    display: none !important;
  }  
	body{
		padding-top: 60px;
	}
	/* header */
	header{
		height: 60px;
	}
	header .headerinner{
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 100%;
	}
	header .headerlogo{
		width: calc(410 / 768 * 100%);
		height: 60px;
		padding: 5px;
		margin-left: 0;
	}
	header .headerlogo a{
		height: 50px;
	}
	header .headerlogo a img{
		height: 100%;
		width: auto;
	}
	nav{
		display: none;
	}
	.spheadermenu,.spnavi{
		display: block;
	}
	.spheadermenu{
		height: 100%;
	}
	.spheadermenu ul{
		display: flex;
		height: 100%;
	}
	.spheadermenu ul .spmenu_contact a{
		background: url("../img/ico-mail.svg") no-repeat #4f709e;
		background-position: top 15px center;
		background-size: 40% auto;
		color: #FFF;
		text-decoration: none;
		font-size: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 60px;
	}
	.spheadermenu ul li{
		position: relative;
	}
	.spheadermenu ul li div.spmenu_label{
		font-family: "EB Garamond", serif;
		position: absolute;
		bottom: 10px;
		text-align: center;
	}
	.spheadermenu ul .spmenu{
		margin-left: 1px;
		color: #FFF;
		text-decoration: none;
		background: #395780;
		font-size: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 60px;
	}
	.spheadermenu ul .spmenu span {
		display: block;
		position: absolute;
		top: 16px;
		left: 50%;
		-webkit-transform: translateX(-50%);
						transform: translateX(-50%);
		width: 24px;
		height: 1px;
		background: #FFF;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.spheadermenu ul .spmenu span:nth-of-type(2) {
		top: 23px;
	}
	.spheadermenu ul .spmenu span:nth-of-type(3) {
		top: 30px;
	}
	.spheadermenu ul .spmenu.active span:nth-of-type(1) {
		top: 23px;
		-webkit-transform: translateX(-50%) rotate(-45deg);
						transform: translateX(-50%) rotate(-45deg);
	}
	.spheadermenu ul .spmenu.active span:nth-of-type(2) {
		display: none;
	}
	.spheadermenu ul .spmenu.active span:nth-of-type(3) {
		top: 23px;
		-webkit-transform: translateX(-50%) rotate(45deg);
						transform: translateX(-50%) rotate(45deg);
	}
	.spnavi{
		background: #fff;
		position: fixed;
		z-index: -1;
		opacity: 0;
		top: 60px;
		right: -100%;
		width: 95%;
		max-width: 400px;
		overflow-y: auto;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
	.spnavi.on {
		z-index: 99;
		opacity: 1;
		right: 0%;
	}
	.spnavi ul li{
		border-bottom: 1px solid #ccc;
	}
	.spnavi ul li a{
		color: #395780;
		text-decoration: none;
		display: block;
		padding: 12px 16px;		
	}
	.spnavi_tel{
		letter-spacing: 0.05em;
		padding: 12px 16px;
	}
	.spnavi_tel .navttl{
		font-family: "Noto Serif JP", serif;
		background: #4f709e;
		color: #FFF;
		font-size: 16px;
		text-align: center;
		letter-spacing: 0.05em;
		padding: 10px;
	}
	.spnavi_tel .navitel{
		text-align: center;
	}
	.spnavi_tel .navitel a{
		color: #333333;
		text-decoration: none;
	}
	.spnavi_tel .navitel{
		margin: 15px 0 10px;
		font-size: 14px;
		font-family: "EB Garamond","Noto Serif JP", serif;
	}
	.spnavi_tel .navitel span{
		font-size: 24px;
		margin: 0 6px;
	}
	.spnavi_tel .navitel small {
		font-size: 16px;
	}
	
	/* page */
	.container {
		padding: 50px 0;
	}
	.bgcontainer{
		background: url("../img/contentsbg_sp.webp") no-repeat top center;
		background-size: cover;
		padding: 50px 15px;
	}
	.imgbgcontainer{
		padding: 50px 20px;
	}
	.imgbgcontainer .overinner {
		width: 100%;
		padding: 40px 20px;
	}
	.contents_container{
		background: rgba(255,255,255,0.95);
		border: 1px solid #4f709e;
	}
	.contentsttl{
		margin-bottom: 0px;
	}
	.sectionttl {
		margin-bottom: 15px;
	}
	.spinner{
		padding: 15px;
	}
	.infotable th {
		width: auto;
		min-width: 30%;
	}
	.infotable th, .infotable td {
		padding: 8px 10px;
	}
	
	/* footer */
	.pagetop{
		position: fixed;
		top: auto;
		bottom: 70px;
		right: 10px;
		width: 35px;
		height: 35px;
	}
	.footerinner {
		padding: 40px 0px;
	}
	.footerinner .footerlogo img {
		max-width: 494px;
		width: calc(494 / 768 * 100%);
	}
}

/* animetion */
.sc_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.sc_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.sc_view {
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.sc_view.on {
  opacity: 1.0;
}
.sc_left {
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	transform: translateX(-30px);
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
}
.sc_left.on {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	transform: translateX(0);
}
.sc_right {
	-webkit-transition: 0.8s ease-in-out;
	-moz-transition: 0.8s ease-in-out;
	-o-transition: 0.8s ease-in-out;
	transition: 0.8s ease-in-out;
	transform: translateX(30px);
	opacity: 0;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
}
.sc_right.on {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	transform: translateX(0);
}
.td {transition-delay: .3s;}

.sc_left.sc_img figure {
  position: relative;
  overflow: hidden;
}
.sc_left.sc_img figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 0;
  height: 100%;
  background: #bccde5;
  transition: width 0.6s ease-out;
}
.sc_left.sc_img figure img {
  position: relative;
  z-index: 2;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease-out 1.2s;
}
.sc_left.sc_img.on figure::before {
  width: 100%;
}
.sc_left.sc_img.on figure img {
  opacity: 1;
}.sc_right.sc_img figure {
  position: relative;
  overflow: hidden;
}
.sc_right.sc_img figure::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 0;
  height: 100%;
  background: #bccde5;
  transition: width 0.6s ease-out;
}

.sc_right.sc_img figure img {
  position: relative;
  z-index: 2;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease-out 1.2s;
}
.sc_right.sc_img.on figure::before {
  width: 100%;
}
.sc_right.sc_img.on figure img {
  opacity: 1;
}