@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');

/* =========================================================
 common
========================================================= */

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}

/* a
--------------------------------------------------------- */

a, a:link, a:visited, a:active {
  text-decoration: none;
  color: #fff;
}

a:hover{
	opacity: 0.7;
}

/* button
--------------------------------------------------------- */
.btn a{
    display: block;
    width: 380px;
    height: 90px;
    line-height: 90px;
    margin: 80px auto 0;
    background-color:#1b3766;
    font-size: 28px;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.btn a:after{
    content: "";
    background-image: url(../img/common/arrow_white.svg);
    background-repeat: no-repeat;
    background-size: 22px 5px;
    width:22px;
    height: 5px;
    position: absolute;
    top:50%;
    right: 15px;
    margin-top: -3px;
    transition: all .3s;
}

.btn a:hover:after{
    right: 0px;
}

/* text-align
--------------------------------------------------------- */
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
}

/* heading
--------------------------------------------------------- */
h1{
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

h1 span{
    display: block;
    font-size: 46px;
    margin-bottom: 15px;
}

h1 small{
    display: block;
    font-size: 14px;
}

h2{
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #1b3766;
    margin: 0 0 80px 0;
}

h2 span{
    display: inline-block;
    position: relative;
    font-size: 46px;
    padding: 0 30px;
    margin-bottom: 15px;
}

h2 span:before{
    right: 100%;
}

h2 span:after{
    left: 100%;    
}

h2 span:before, 
h2 span:after{
    position: absolute;
    content: "";
    top:50%;
    width:40px;
    height: 1px;
    background-color: #1b3766;
}

h2 small{
    display: block;
    font-size: 14px;
}

h3{
    color: #1b3766;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}


/* list
--------------------------------------------------------- */
ul.list li{
	padding-left:12px;
	line-height: 1.7;
    position: relative;
}

ul.list li:first-child{
	margin-top: 0;
}

ul.list li:before{
    content: "";
    background: url(../img/common/dot_list.svg) no-repeat;
    background-size:4px 4px; 
	position: absolute;
    width: 4px;
    height: 4px;
    top:11px;
    left:0;
    font-weight: bold;
}

/* animation
--------------------------------------------------------- */
.fadein{
    opacity: 0.1;
    transform: translate(0,100px);
    transition: all ease 1.2s;
}

/* =========================================================
 #header
========================================================= */

#header{
    z-index: 100;
    position: absolute;
    top:0;
    left: 0;
    height: 80px;
    width: 100%;
}

#header .wrap{
	position:relative;
	width:1200px;
	margin:0 auto;
	display:flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px 0 0 0;
}

/* #logo
--------------------------------------------------------- */

#logo{
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

#logo a{
	transition:.5s;
}

#logo a:hover{
	opacity:0.7;
}

#logo a span{
    font-size: 28px;
}

/* #nav
--------------------------------------------------------- */

#nav ul{
	display:flex;
}

#nav > ul > li{
	margin-left:4em;
}

#nav ul li:first-child{
	margin-left:0;
}

#nav ul li a{
    position: relative;
    padding: 0 0 10px 0;
}

#nav ul li a:before {
  position:absolute;
  bottom:-1px;
  left:0;
	right:0;
	margin:auto;
  content:"";
  width:20px;
  height: 1px;
  background:#fff;
  transform:scale(0, 1);
  transform-origin:left top;
  transition:transform .3s;
}

#nav ul li a:hover{
    opacity: 1;
}

#nav ul li a:hover:before {
  transform: scale(1, 1);
}

/* menu-trigger
--------------------------------------------------------- */
.menu-trigger{
	display: none;
}

.spWrap{
	margin-left: auto;
	z-index: 1;
}

/* =========================================================
 #visual
========================================================= */
#visual{
    max-width: 1920px;
    margin: 0 auto;
}

/* =========================================================
 #breadcrumb
========================================================= */

#breadcrumb{
 margin-top: 20px;
}

#breadcrumb ul{
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

#breadcrumb ul li{
	padding-right: 30px;
	background-image: url(../img/common/arrow_r.svg);
	background-repeat: no-repeat;
	background-size:5px 10px;
	background-position: right 12px center;
	font-size: 1.4rem;
}

#breadcrumb ul li:last-child{
	padding-right:0;
	background-image: none;
}

#breadcrumb ul li a{
    color: #000;
}

/* =========================================================
 #main
========================================================= */
#main section{
    padding:120px 0;
}

#main section:nth-child(even){
	background-color:#f5f5f5;
}

#main section:last-of-type{
    padding: 120px 0 180px 0;
}

#main section p{
	line-height:1.7;
	letter-spacing:0.1em;
	margin-top:1em;
}

#main section p:nth-of-type(1) {
  margin-top: 0;
}


/* =========================================================
 #footer
========================================================= */

#footer{
    padding:80px 0;
	background-color:#1b3766;
    color: #fff;
}

#footer .pageTop{
	position:fixed;
	right:0px;
	bottom:10px;
}

#footer .pageTop a{
	width:50px;
	height:50px;
	display:block;
	font-size:0;
	background-image:url(../img/common/btn_totop.jpg);
	background-repeat:no-repeat;
	background-position:center center;
	background-size:50px 50px;
}

#footer .footerNav{
	width:1200px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
}

#footer .footerNav .about .logo{
    font-size: 28px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-right: 180px;
}

#footer .footerNav .about p{
    margin-top: 1em;
    line-height: 1.7;
}

#footer .footerNav .menu{
    display: flex;
}

#footer .footerNav .menu ul{
    margin-right: 200px;
}

#footer .footerNav .menu ul:last-of-type{
    margin-right: 0;
}

#footer .footerNav .menu ul li a{
	position:relative;
	display:inline-block;
	padding: 0 0 10px 0;
}

#footer .footerNav .menu ul li a:after {
  position:absolute;
  bottom:-1px;
  left:0;
	right:0;
	margin:auto;
  content:"";
  width:100%;
  height: 1px;
  background:#fff;
  transform:scale(0, 1);
  transform-origin:left top;
  transition:transform .5s;
}

#footer .footerNav .menu ul li a:hover{
    opacity: 1;
}

#footer .footerNav .menu ul li a:hover:after {
  transform: scale(1, 1);
}

#footer .footerNav .menu > ul > li{
	margin-top:35px;
}

#footer .footerNav .menu > ul > li:first-child{
	margin-top:0;
}

#footer .copyright{
	margin-top: 120px;
	color:#ffffff;
	text-align:center;
}

#footer .copyright small{
	font-size:1.4rem;
}







@media screen and (max-width: 768px) {
/* =========================================================
 common
========================================================= */

.Sp{
	display: block !important;
}
.Pc{
	display: none !important;
}

h1{
   width: 100%;
}    
    
h1 span{
    font-size: 7.5vw;
}
    
h2{
    margin: 0 0 40px 0;
}    
h2 span{
    font-size: 7.5vw;
    padding: 0 15px;
}

h2 span:before, 
h2 span:after{
    width:20px;
}    
    
h3{
    font-size: 3.75vw;
}   
    
    
    
/* button
--------------------------------------------------------- */
.btn a{
    width: auto;
    margin-top: 40px;
    }    

    
/* =========================================================
 #header
========================================================= */

#header{
	margin:15px 0;
}

#header .wrap{
	width:100%;
	display: block;
    padding: 0;
}

/* #logo
--------------------------------------------------------- */

#logo{
	width:auto;
	height: auto;
	margin-left: 10px;
}

#logo a span{
    font-size: 5vw;   
    }
/* #nav
--------------------------------------------------------- */

#nav{
    padding: 5px 0;
    background: rgba(27,55,102,0.8);
}

#nav ul{
	display: block;
}
	
#nav > ul > li{
	margin-left:0;
	position: relative;
}

#nav ul li a{
    display: block;
    text-align: center;
	padding:15px 0;
}

#nav ul li a:before{
	display: none;
}


/* menu-trigger
--------------------------------------------------------- */
.menu-trigger{
display: block;
	position: absolute;
	top: 0;
	right: 10px;
}
.menu-trigger a,
.menu-trigger a span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger a{
  position: relative;
  width: 38px;
  height: 33px;
}
.menu-trigger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}
.menu-trigger a span:nth-of-type(1) {
  top: 0;
}
.menu-trigger a span:nth-of-type(2) {
  top: 15px;
}
.menu-trigger a span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger a.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger a.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger a.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}
    
.spWrap{
	display: none;
	position: absolute;
	left: 0;
	background:transparent;
	width: 100%;
	padding-bottom: 15px;
    margin-top: 10px;
}

/* =========================================================
 #breadcrumb
========================================================= */

#breadcrumb{
	display: none;
}
	
/* =========================================================
 #main
========================================================= */

#main img{
	width: 100%;
	height: auto;
}

#main section{
	padding:60px 4%;
}

#main section:last-of-type{
    padding: 60px 4% 90px ;
}

/* =========================================================
 #footer
========================================================= */

#footer{
    padding:60px 0;
}

#footer .pageTop a{
	width:40px;
	height:40px;
	background-size:40px 40px;
}

#footer .footerNav{
	width:auto;
	display:block;
    padding: 0 4%;
}

#footer .footerNav .about{
    margin-bottom: 10px;
}
    
#footer .footerNav .about .logo{
    margin-right: 0;
    font-size: 5vw;
}

#footer .footerNav .menu{
    display: block;
    margin-bottom: 1em;
}

#footer .footerNav .menu ul{
    margin-right: 0;
}

#footer .footerNav .menu ul li a{
	padding: 0.5em 0;
}

#footer .footerNav .menu > ul > li{
	margin-top:0;
}

#footer .copyright{
	margin-top: 60px;
}



}