  /*======= common style =======*/
@charset "utf-8";

/* import font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&display=swap');
/* import font */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:after,
*::before {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
		
body {
    font-weight: 400;
    color: #000000;
    overflow-x: hidden;
    font-size: 17px;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
}

a {
    text-decoration: none;
    color: unset;
    transition: 0.2s;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

svg {
    transition: 0.25s;
}

ul,
li {
    list-style-type: none;
    margin: 0px;
}

img {
    display: block;
    max-width: 100%;
    transition: .2s;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.container {
    max-width: 1130px;
    padding: 0 15px;
    margin: 0 auto;
    transition: 0.2s;
}

.alignright {
	float: right;
	margin: 0 0 30px 30px;
}

.alignleft {
	float: left;
	margin: 0 30px 30px 0;
}

.aligncenter {
	display: block;
	margin: 0 auto 30px;
}



@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    section.section {
        padding: 60px 0 !important;
    }
}

.cl-white {
    color: #ffffff !important;
} 

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-stretch {
    align-items: stretch;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

.h100 {
    height: 100%;
}


/* =====start - header===== */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 20;
}

.header__inner {
    padding: 34px 40px;
}

.header__logo {
    font-size: 20px;
    color: #fff;
    display: block;
}

.header__logo img {
    max-width: 185px;
}

.header__logo span {
    font-size: 22px;
    line-height: 1.3;
    display: inline-block;
    font-weight: 500;
				vertical-align: -14px;
				margin-right: 10px;
}

.main-menu {
    column-gap: 36px;
}

.menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    position: relative;
}

.menu-link.--has-icon::after {
    position: absolute;
    content: "";
    background-image: url(../image/arrow-01.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 12px;
    height: 7px;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-link span {
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
}

.menu-item {
    position: relative;
    cursor: pointer;
    padding-bottom: 30px;
}

.sub-menu {
    position: absolute;
    top: calc(100%);
    min-width: 220px;
    left: 50%;
    transform: translate(-50%, 10px);
    z-index: 10;
    background-color: #004695cc;
    padding: 0px 0px;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
}

.sub-menu a {
    font-size: 14px;
    padding: 11px 20px;
    display: block;
    color: #fff;
    white-space: nowrap;
}

.sub-menu a:hover {
    background-color: #fff;
    color: #003470;
    opacity: 1;
}

.sub-menu li:not(:last-child) a {
    border-bottom: 1px solid #45709e;
}

.header__right {
    column-gap: 42px;
}

.language {
    display: flex;
    align-items: center;
    column-gap: 4px;
    margin-top: 3px;

    border: 1px solid #fff;
    padding: 8px 30px;
}

.language:hover {
    background-color: #004695;
    opacity: 1;
    border-color: #004695;
}

.language img {
    max-width: 16px;
}

.language span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* =====end - header===== */


/* =========start - footer========= */
.footer-content {
	   position: relative;
    background-color: #003470;
    padding: 75px 0px 70px;
}

.footer-content:before {
	position: absolute;
	content: "";
	display: block;
	background: url(../image/line-02.png) no-repeat;
	background-size: 100%;
	width: 100%;
	height: 100px;
	top: -75px;
}

.footer__inner {
    width: 100%;
    color: #fff;
}

.footer__logo .__logo {
    width: fit-content;
}

.footer__logo .__logo img {
    margin-bottom: 10px;
}

.footer__logo h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer__logo p {
    font-size: 12px;
    padding-bottom: 5px;
}

.wrap__ft-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-left: 40px;
    column-gap: 40px;
}

.ft-block {
    min-width: 190px;
}

.ft-block__title {
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #6f89a7;
}

.ft-menu li a {
    font-size: 14px;
    padding: 4px 0px 4px 14px;
    display: block;

    background-image: url(../image/right-icon-ft.png);
    background-size: 6px;
    background-position: 0px 50%;
    background-repeat: no-repeat;
}

.ft-menu li a:hover {
    text-decoration: underline;
    opacity: 1;
}

.footer__under {
    background-color: #000000;
    padding: 16px 0px;
}

.footer__copyright img {
    max-width: 190px;
}

.footer__copyright div.link {
    font-size: 12px;
    color: #fff;
    column-gap: 6px;
}

.footer__copyright a:hover {
    text-decoration: underline;
    opacity: 1;
}


/* =========end - footer========= */

/* css button back to top */
#back-to-top {
    position: fixed;
    bottom: 420px;
    right: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
				z-index:100;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    opacity: 0.7;
}
/* css button back to top */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 720px;
    background-color: #eee;
}

.hero-slide.hero-option02 {
    max-height: 1000px;
}

.hero-option {
    height: 720px;
    background-color: #eee;
    transition: 0.2s;
}

.hero-slide .swiper-slide.--one-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero__intro-text {
    position: absolute;
    width: 100%;
    top: 34%;
    padding: 0px 155px;
    z-index: 10;
}

.hero__intro-text .__text {
    color: #fff;
    font-size: 54px;
    font-weight: 500;
    text-shadow: 2px 4px 4px rgb(0, 0, 0, 25%);

    animation-delay: 3s;
}

.hero__intro-text .__text.--delay1 {
    animation-delay: 1s;
}

.text-fade {
    opacity: 0;
    visibility: hidden;
    animation: text-fade 2.4s ease forwards;
}

@keyframes text-fade {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
}

.hero-slide .swiper-slide.--one-img img {
    transition: transform 5s linear,-webkit-transform 5s linear;
}

.hero-slide .swiper-slide.--one-img.swiper-slide-active img {
    transform: scale(1.08) rotate(.001deg);
}

.hero-slide__item {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__left,
.hero__right {
    position: absolute;
    width: 65%;
    height: 100%;
    overflow: hidden;
    transition: all 1s cubic-bezier(.19,1,.22,1);
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    transform: skew(-15deg);
}

.hero--image {
    height: 100%;
    transform-origin: center center;
    transition: all 1s cubic-bezier(.19,1,.22,1);
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    opacity: 0;
    visibility: hidden;
}

.hero-slide__item .hero--image {
    animation: scale-slide 2.4s ease forwards;
    animation-delay: 0.4s;
}

.hero-slide__item .hero--image.image--left {
    animation-delay: 0.6s;
}

.hero-slide__item .hero--image.image--right {
    animation-delay: 1.4s;
} 

@keyframes scale-slide {
    0%{
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}

.hero__left {
    right: calc(50% - 1px);
}

.hero__right {
    left: calc(50% - 1px);
}

.hero--image::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s cubic-bezier(.19,1,.22,1);
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    transition-property: opacity,transform;
    transform: skew(15deg);
}

.swiper-slide.swiper-slide-active .hero--image::before {
    opacity: 1;
}


.hero--image.image--left::before {
    background-image: url(../image/slide-01.png);
    background-position: 60% center;
    right: -20%;
   
}

.hero--image.image--right::before {
    background-image: url(../image/slide-02.png);
    background-position: 0 center;
    left: -20%;
}

.l-header__menu-trigger,
.header__nav-sp {
    display: none;
}

/*second--------------------------------------------------*/
#pageHeader {
	position: relative;
	width: 100%;
	height: 40vh;
}

#pageHeader:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0, 70, 149, 0.4);
}

#pageHeader:after {
	position: absolute;
	content: "";
	background: url(../image/line-01.png) no-repeat;
	background-size: 100%;
	bottom: 0;
	width: 100%;
	height: 77px;
}

#pageHeader .ttl {
	position: absolute;
	margin: 0 40px;
	top: 50%;
	transform: translateY(-50%);
 -webkit-transform: translateY(-50%);
 -ms-transform: translateY(-50%);
}

#pageHeader .ttl h2 {
	font-size: 30px;
	color: #FFF;
}

#pageHeader .ttl h2 span {
	font-family: 'Oswald', sans-serif;
	font-size: 60px;
	font-weight: 700;
	color: transparent;
 -webkit-text-stroke: 1px rgb(255, 255, 255);
	text-stroke: 1px rgb(255, 255, 255);
	margin-right: 16px;
	letter-spacing: 0.04em;
}

#pageHeader .pan {
	position: absolute;
	bottom: 10px;
	z-index: 10;
	padding: 0 40px;
	line-height: 40px;
	display: flex;
	background-color: #003470;
}

#pageHeader .pan:before {
	position: absolute;
	content: "";
	top: 0;
	right: -34px;
 border-bottom: 40px solid transparent;
 border-left: 34px solid #003470;
}

#pageHeader .pan li {
	color: #FFF;
	font-size: 12px;
	margin-right: 24px;
}

#pageHeader .pan li a {
	position: relative;
}

#pageHeader .pan li a:before {
	position: absolute;
	content: "\ff1e";
	right: -18px;
}

main#second {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 0 200px;
	line-height: 1.8;
}

main#second .full {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	background-color: #F0F8FF;
}

main#second h3 {
	position: relative;
	margin: 0 0 20px;
	padding: 4px 0;
	font-size: 26px;
	font-weight: 800;
	border-bottom: 4px solid #EEE;
	letter-spacing: 0.04em;
}

main#second h3:before {
	position: absolute;
	bottom: -4px;
	background-color: #003470;
	width: 48px;
	height: 4px;
	content: "";
}

main#second h4 {
	width: calc( 100% - 20px);
	margin: 0 0 20px;
	padding: 0 16px;
	font-size: 24px;
	font-weight: 500;
	position: relative;
	background-color: #DFEEFF;
}

main#second h4:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 1px;
	background-color: #003470;
	top: 50%;
	left: -10px;
}

main#second h4:after {
	position: absolute;
	content: "";
	top: 0;
	right: -20px;
 border-bottom: 40px solid transparent;
 border-left: 20px solid #DFEEFF;
}

main#second h5 {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #003470;
}

main#second a {
	text-decoration: underline;
}

main#second p {
	margin: 0 0 40px;
}

main#second p + h3 {
	margin: 80px 0 20px;
}

main#second p + h4 {
	margin: 60px 0 20px;
}

main#second ul.pageMenu {
	display: flex;
	justify-content: center;
	margin: 40px 0 60px;
	flex-wrap: wrap;
}

main#second ul.pageMenu li {
	width: 46%;
	margin: 0 2% 20px;
	text-align: center;
}

main#second ul.pageMenu li a {
	width: 100%;
	display: block;
	padding: 8px 0;
	border: 2px solid #003470;
	border-radius: 100vh;
	background-color: #F2F9FF;
	opacity: 1;
	text-decoration: none;
}

main#second ul.pageMenu li a:hover {
	background-color: #003470;
	color: #FFF;
}











