/* ==========================================================
 font
========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*{ padding: 0; margin: 0; box-sizing:border-box;}
html {  font-size: 62.5%; }
body {
	color: #000;
	font-family: 'Roboto','Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
  }
@media screen and (max-width: 768px) {
body {
	font-size: 1.6rem;
	}
}
img { vertical-align: top; height: auto; }
ol, ul { list-style: none;}
sup, sub
{ font-size: 63%;}
sup
{ vertical-align: top;}
sub
{ vertical-align: baseline;}

/* ==========================================================
 base Link
========================================================== */
a { color: #2b589b; text-decoration: none; }
a:hover{ opacity: 0.7; }
/* ==========================================================
 clearfix
========================================================== */
.clearfix:before, .clearfix:after,
.contents:before, .contents:after
{
    content: "";
    display: table;
}
.clearfix:after,
.contents:after
{
    clear: both;
}

/* ==========================================================
 base
========================================================== */
.wrapper{
}
.container {
	max-width: 1200px;
	margin: 0 auto;
}
.section{
	margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
	.container { 
        padding-right: 15px;
        padding-left: 15px;
	}
}
@media screen and (max-width: 960px) {
	.wrapper{
		width: 960px;
	}
}
@media screen and (max-width: 768px) {
	.wrapper{
		width: auto;
	}
	.section{
		margin-bottom: 60px;
	}
}

/* ==========================================================
 header
========================================================== */
header{
	position: relative;
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	padding-top: 30px;
    margin: 0 auto;
}
.logo img {
	margin-left: 50px;
	margin-right: -50px;
}
.logo02{
	margin-bottom: 20px;
}

.g-nav{
	display: flex;
}
.g-nav>li{
	position: relative;
	background-color:#ebebeb;
	border-right:1px solid #2b2827;
}
.g-nav>li:first-child{
	border-left:1px solid #2b2827;
}
.g-nav>li::after{
	content: url(../img/common/nav-circle.png);
	position: absolute;
	top: -13px;
	right: -6px;
	z-index: 1;
}
.g-nav>li:first-child::before{
	content: url(../img/common/nav-circle.png);
	position: absolute;
	top: -13px;
	left: -5px;
	z-index: 1;
}
.g-nav>li a,.g-nav>li span{
	display:block;
	color: #000;
	text-align: center;
	width: 170px;
	border-bottom: 1px solid #fff;
	padding: 8px 3px;
}
.g-nav-child{
	display: none;
	position: absolute;
	z-index: 20;
}
.g-nav-child li{
	font-size: 1.4rem;
	background-color: #f5f5f5;
}
.g-nav li:hover>.g-nav-child{
	display:block;
}
.g-nav-child02{
	position: relative;
}
.g-nav-child02 ul{
	display: none;
	position: absolute;
	top: 0;
	left: 170px;
	border-left: 1px solid #fff;
}
.g-nav-child02:hover ul{
	display: block;
}
.g-nav-child02 span::after{
	content: '';
	width: 7px;
	height: 7px;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	position: absolute;
	top: 13px;
	right: 20px;
	transform: rotate(45deg);
}
.g-nav-child li:last-child a,.g-nav-child02 li:last-child a{
	border-bottom: none;
}
.g-nav a.active{
	background-color: #aaaaaa;
	pointer-events: none;
}

.nav-contact{
	position: relative;
}
.nav-contact::before{
	content: url(../images/common/contact.png);
	position: absolute;
	right: 100%;
	padding-right: 5px;
}
.nav-contact a{
	color: #000;
}
.nav-sp-btn {
	position: absolute;
	top: 20px;
	right: 10px;
}
.nav-sp-btn img{
	width: 50px;
}
@media screen and (max-width: 1200px) {
	header{
		padding: 20px 10px 0;
	}
}
@media screen and (max-width: 768px) {
	header{
		flex-direction: column;
		padding: 20px 0 0;
	}
	.logo{
		text-align: center;
		margin-bottom: 20px;
	}
	.logo img{
		width: 70px;
		margin-left: 0;
		margin-right: 0;
	}
	.logo02{
		width: 100%;
		margin-bottom: 0;
		padding: 0 50px 10px;
	}
	.g-nav{
		display: none;
	}
	.g-nav>li,.g-nav>li:first-child{
		border: none;
	}
	.g-nav>li::after,.g-nav>li:first-child::before{
		content: none;
	}
	.g-nav li:hover>.g-nav-child,.g-nav-child02:hover ul{
		display: none;
	}
	.g-nav li a,.g-nav li .nav-open{
		width: 100%;
		padding: 15px;
	}
	.g-nav-child{
		position: relative;
	}
	.g-nav li .nav-open::after{
		content: '';
		width: 8px;
		height: 8px;
		border-top: solid 2px #333;
		border-right: solid 2px #333;
		position: absolute;
		top: 18px;
		right: 20px;
		transform: rotate(135deg);
	}
	.g-nav li .nav-open.open::after{
		content: '';
		width: 8px;
		height: 8px;
		border-top: solid 2px #333;
		border-right: solid 2px #333;
		position: absolute;
		top: 22px;
		right: 20px;
		transform: rotate(-45deg);
	}
	.g-nav-child02 ul{
		position: relative;
		left: 0;
		border-left: none;
	}
	.g-nav-child02 li:last-child a{
		border-bottom: 1px solid #fff;
	}
}

footer{
	color: #fff;
	line-height: 1.8;
	padding: 50px 0;
	background-color: #222;
}
.footer-list{
	display: flex;
	margin-bottom: 30px;
}
.footer-list div{
	flex: 1;
	border-right: 1px solid #fff;
	padding-right: 10px;
	margin-right: 10px;
}
.footer-list div:last-child{
	border-right: none;
	margin-right: 0;
}
.footer-list div ul{
	padding-left: 20px;
}
.footer-list a{
	color:#fff;
}
@media screen and (max-width: 768px) {
	footer{
		padding: 20px 0;
	}
	.footer-link li{
		margin-bottom: 5px;
	}
	.footer-link a{
		color: #fff;
	}
}

#to-top a img{
	position: fixed;
	right:30px;
	bottom:30px;
	width: 50px;
	height: 50px;
	z-index: 80;
}

/* ==========================================================
 padding,margin
========================================================== */
.only-sp{ display: none !important;}
@media screen and (max-width: 768px) {
	.only-pc{ display: none !important;}
	.only-sp{ display: block !important;}
}

.mb00{ margin-bottom: 0!important; }
.mb05{ margin-bottom: 5px; }
.mb10{ margin-bottom: 10px; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mb40{ margin-bottom: 40px; }
.mb50{ margin-bottom: 50px; }

.ml00{ margin-left: 0!important; }
.ml10{ margin-left: 10px; }
.ml20{ margin-left: 20px; }
.ml30{ margin-left: 30px; }
.ml40{ margin-left: 40px; }
.ml50{ margin-left: 50px; }

.ta-c{ text-align: center; }
.ta-r{ text-align: right; }
.ta-l{ text-align: left; }

.fw-b{ font-weight: bold; }

.inl{ display: inline; }
.in-b{ display: inline-block; }
.blo{display: block;}

.fs-s{ font-size: 1.2rem;}
.fs-m{ font-size: 2rem;}
.fs-l{ font-size: 2.8rem;}
.fs-ll{ font-size: 3.8rem;}

.color-b{ color: #1432aa; }
.color-w{ color: #fff; }
/* ==========================================================
 animation
========================================================== */
.enable-javascript .fadeIn,.enable-javascript .slideU,.enable-javascript .slideR,.enable-javascript .slideL{
	opacity: 0;
  }
.fadeIn.anime{
animation: fadeIn 1.5s ease forwards;
}
.slideU.anime{
animation: slideU 1.5s ease forwards;
}
.slideD.anime{
animation: slideD 1.5s ease forwards;
}
.slideR.anime{
animation: slideR 1.5s ease forwards;
}
.slideL.anime{
animation: slideL 1.5s ease forwards;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes zoomIn{
0%{ transform: scale(0.5);}
100% { transform: scale(1);}
}
@keyframes zoomOut{
0%{ transform: scale(1);opacity: 1;}
100% { transform: scale(0); width: 0;}
}
@keyframes slideU {
0%{ transform: translateY(100%); opacity: 0;}
100% { transform: translateX(0); opacity: 1;}
}
@keyframes slideD{
0%{ transform: translateX(0); opacity: 1; }
100% { transform: translateY(100%); opacity: 0; }
}
@keyframes slideL{
0%{ transform: translateX(-100%); opacity: 0;}
100% { transform: translateX(0); opacity: 1;}
}
@keyframes slideR{
0%{ transform: translateX(100%); opacity: 0;}
100% { transform: translateX(0); opacity: 1;}
}


/* ==========================================================
 汎用
========================================================== */
.sub-ttl01{
    text-align: center;
    background-color: #e9e9e9;
    border-top: 10px solid #1432aa;
    padding: 40px 10px;
	margin-bottom: 60px;
}
.sub-ttl01 .title{
    font-size: 5rem;
    letter-spacing: 0.3em;
}
.sub-ttl01 .sub-title{
    color: #1432aa;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
    .sub-ttl01 .title{
        font-size: 3.8rem;
    }
}

.sub-ttl02{
	font-size: 2.8rem;
    border-left: 5px solid #1432aa;
    padding-left: 10px;
    margin-bottom: 20px;
}
.sub-ttl03{
	color: #1432aa;
    font-size: 3.8rem;
    font-weight: normal;
	text-align: center;
	letter-spacing: 0.2em;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	.sub-ttl02{
		font-size: 2.4rem;
	}
	.sub-ttl03{
		font-size: 3rem;
	}
}
.note{
    font-size: 1.4rem;
    text-indent: -1em;
    padding-left: 1em;
	margin-top: 5px;
}
.note li::before{
    content: '※';
}

.col2-01{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.col2-01>*{
    width: 48%;
    margin-bottom: 30px;
}
.col2-01>* img{
	max-width: 100%;
}
@media screen and (max-width: 768px) {
    .col2-01>*{
        width: 100%;
    }
}

.table01{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
	background-color: #f7f7f7;
}
.table01 th{
	color: #fff;
    font-weight: normal;
	width: 30%;
    background-color: #595858;
}
.table01 th, .table01 td{
    padding: 20px;
}
.table01 tr:nth-child(2n) th{
    background-color: #878788;
}
.table01 tr:nth-child(2n) td{
    background-color: #dcdcdc;
}
.table02{
    border-collapse: collapse;
	background-color: transparent;
}
.table02 th,.table02 tr:nth-child(2n) th,.table02 tr:nth-child(2n) td{
	background-color: transparent;
}
.table02 th, .table02 td{
	color: #000;
	font-weight: normal;
    text-align: center;
	width: auto;
    border: none;
    padding: 5px 10px;
}
@media screen and (max-width: 768px) {
    .table01 th, .table01 td{
		padding: 10px;
	}
	.table02 th, .table02 td{
		padding: 5px;
	}
}