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

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.75;
    color: #00263A;
}

.nav-open {
    overflow: hidden;
}

.body-wrapper {
    position: relative;
    overflow-x: hidden;
}

figure {
    line-height: 0;
}

.sp,
.tb {
    display: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.inner {
    width: 90%;
    max-width: 924px;
    margin: 0 auto;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.position-relative {
    position: relative !important;
}

.flex-1 {
    flex: 1;
}

.underline {
    text-decoration: underline;
}

.txt {
    letter-spacing: .05em;
}

.col-blue {
    color: #008BD5 !important;
}

.col-red {
    color: #FF0505 !important;
}

.bg-blue {
    background-color: #E8F4F9 !important;
}

.line2 {
    line-height: 2;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.f-14 {
    font-size: 1.4rem !important;
}

.f-20 {
    font-size: 2rem !important;
}

.f-24 {
    font-size: 2.4rem !important;
}

.f-28 {
    font-size: 2.8rem !important;
}

.f-32 {
    font-size: 3.2rem !important;
}

.f-48 {
    font-size: 4.8rem !important;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.4rem !important;
    }
    .tb {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
    .f-14 {
        font-size: 1.3rem !important;
    }
    .f-20 {
        font-size: 1.6rem !important;
    }
    .f-24 {
        font-size: 1.8rem !important;
    }
    .f-28 {
        font-size: 2rem !important;
    }
    .f-32 {
        font-size: 2.2rem !important;
    }
    .f-48 {
        font-size: 3rem !important;
    }
}

@media screen and (max-width: 480px) {
    .sp {
        display: block !important;
    }
    .sp-hide {
        display: none !important;
    }
	.sp-text-left {
		text-align: left !important;
	}
}


/********************************************************
************************ Header *************************
********************************************************/

.body-wrapper {
    padding-top: 120px;
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header-wrapper {
    display: flex;
    align-items: center;
    height: 120px;
    background: linear-gradient(96deg, rgba(0, 139, 213, 0.81) 0%, rgba(98, 196, 248, 0.95) 51.09%, rgba(2, 199, 91, 0.63) 100%);
}

.header-logo {
    display: none;
}

.header-menu {
    width: 100%;
}

.header-menu>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header-menu>ul>li {
    position: relative;
    padding: 0 22px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    border-right: 1px solid #fff;
}

.header-menu>ul>li:last-child {
    border-right: none;
}

.header-menu>ul>li a {
    display: block;
}

.header-menu>ul>li:hover>a {
    text-decoration: underline;
}

.menu-trigger {
    position: relative;
    display: none;
    width: 50px;
    height: 50px;
    background-color: #008BD5;
    border-radius: 4px;
    cursor: pointer;
    z-index: 99;
}

.menu-trigger span {
    position: absolute;
    left: 11px;
    width: 28px;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
}

.menu-trigger span:nth-of-type(1) {
    top: 16px;
}

.menu-trigger span:nth-of-type(2) {
    top: 25px;
}

.menu-trigger span:nth-of-type(3) {
    top: 34px;
}

.menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(9px) rotate(0);
    }
    100% {
        transform: translateY(9px) rotate(45deg);
    }
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-9px) rotate(0);
    }
    100% {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media screen and (max-width: 991px) {
    .body-wrapper {
        padding-top: 70px;
    }
    .header-wrapper {
        justify-content: space-between;
        height: 70px;
        padding: 0 15px;
        background: #fff;
    }
    .header-logo {
        display: block;
        width: 200px;
    }
    .header-logo a {
        display: block;
        line-height: 0;
    }
    .menu-trigger {
        display: block;
    }
    .header-menu {
        position: fixed;
        left: 0;
        top: 70px;
        display: none;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 0 5%;
        background: #00263A;
        transition: all .4s linear;
    }
    .header-menu.active {
        display: block;
    }
    .header-menu>ul>li {
        width: 100%;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid;
    }
    .header-menu>ul>li>a {
        position: relative;
        padding: 25px 0;
    }
    .header-menu>ul>li>a::after {
        content: '';
        position: absolute;
        right: 0;
        top: calc(50% - 6px);
        width: 12px;
        height: 12px;
        border-top: solid 1px #fff;
        border-right: solid 1px #fff;
        transform: rotate(45deg);
    }
}

@media screen and (max-width: 480px) {
    .header-logo {
        width: 140px;
    }
}


/********************************************************
************************ Footer *************************
********************************************************/

.footer {
    padding: 65px 0 30px;
    color: #fff;
    background-color: #00263A;
}

.footer-top {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}

.footer-top__left {
    width: 30%;
}

.footer-top__left a.logo {
    display: block;
    max-width: 262px;
    margin-bottom: 40px;
}

.footer-top__middle {
    width: 30%;
    min-width: 330px;
    text-align: center;
}

.footer-top__middle p:first-of-type {
    font-weight: 500;
    line-height: 27px;
    border: 1px solid #fff;
    border-radius: 30px;
}

.footer-top__middle .tel {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.45;
}

.footer-top__middle .tel > a {
    display: inline-block;
    font-size: 200%;
    margin-left: 10px;
}

.footer-cta {
    display: block;
    width: 31%;
    max-width: 350px;
    height: 120px;
    text-align: center;
    background-color: #008BD5;
}

.footer-cta span {
    position: relative;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 120px;
}

.footer-cta span::before {
    content: '';
    display: inline-block;
    width: 39px;
    height: 39px;
    margin-right: 8px;
    vertical-align: -9px;
    background: url(../img/common/icn_mail.png) no-repeat left center / contain;
}

.footer-menu>ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-menu>ul>li {
    padding: 0 5px;
    line-height: 1;
    border-right: 1px solid #fff;
}

.footer-menu>ul>li:last-child {
    border-right: none;
}

.copyright {
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: 500;
}

@media screen and (max-width: 1023px) {
    .footer-top .container,
    .footer-menu>ul {
        justify-content: center !important;
    }
    .footer-top__left {
        width: 100%;
        padding-bottom: 20px;
        text-align: center;
    }
    .footer-top__left a.logo {
        margin: 0 auto 20px;
    }
    .footer-cta {
        min-width: 322px;
        margin-left: 40px;
    }
    .footer-menu {
        width: 100%;
    }
    .copyright {
        width: 100%;
        margin: 10px auto 0;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        max-width: 700px;
        margin: 0 auto;
    }
    .footer-top__middle {
        width: 100%;
        max-width: 330px;
        min-width: 0;
    }
    .footer-cta {
        width: 100%;
        min-width: 0;
        height: 90px;
        margin: 20px auto;
    }
    .footer-cta span {
        line-height: 90px;
    }
    .footer-menu>ul>li {
        width: 100%;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .3);
    }
    .footer-menu>ul>li:last-child {
        border-bottom: none;
    }
    .footer-menu>ul>li>a {
        position: relative;
        display: block;
        padding: 25px 0;
    }
    .footer-menu>ul>li>a::after {
        content: '';
        position: absolute;
        right: 5px;
        top: calc(50% - 6px);
        width: 12px;
        height: 12px;
        border-top: solid 1px #fff;
        border-right: solid 1px #fff;
        transform: rotate(45deg);
    }
    .copyright {
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .footer-top__middle .tel > a {
        font-size: 170%;
    }
}


/************** common ***************/

.cmn-btn a {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 230px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 40px;
    color: #fff;
    background-color: #008BD5;
    border-radius: 30px;
}

.cmn-btn a::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 10px;
    width: 16px;
    height: 16px;
    background: url(../img/common/icn-arrow.png) no-repeat center / contain;
}

.earthquake{
	margin-top: 60px;
	font-size: 16px;
	line-height: 180%;	
}

.earthquake_area{
	border-width: 1px;
	border-style: solid;
	padding: 2em 2em;
	border-color: rgba(89,87,87,1.00);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 800px) {
	.earthquake_area{
	display: block;		
}
	.earthquake_area br{
	display: none;		
}
	.earthquake{
	margin-top: 30px;	
	
}
}
.earthquake_area .logo{
	width: 25%;
	padding-left: 1.5em;	
}
.earthquake_area .logo img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 800px) {
	.earthquake_area .logo{
	width: 45%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.5em;
		padding-left: 0em;
}
}
.wrapper {
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
}