@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
/* web font */
body, button, input, select, textarea {
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
	font-weight: 400;
	letter-spacing: 0.05em;
}
html{
    font-size: 62.5%;
}
body{
    font-size:1.6rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
p{
	line-height: 2;
}
a{
	color: #05479B;
}
a:hover{
    text-decoration: underline;
}
a[href*="tel:"] {
    color: #000;
    text-decoration: none;
}
@media print, screen and (min-width: 769px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.pc_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
.header{
    width: 100%;
    height: 140px;
    z-index: 10000;
}
.header_wrap .head_upper{
    max-width: 1180px;
    margin: auto;
    padding: 0 50px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_wrap .h_logo a{
    display: block;
    width: 320px;
    height: 34px;
    background:url("../images/logo.png") no-repeat;
    background-size: contain;
    text-indent: -9999px;
}
.header_wrap .h_contact{
    display: flex;
    align-items: center;
}
.header_wrap .h_contact .h_line{
    max-width: 158px;
    margin-right: 30px;
}
.header_wrap .h_tel a{
    color: #05479B;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1;
}
.header_wrap .h_tel a::before{
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url("../images/icon_tel.png") no-repeat;
    background-size: contain;
    margin: 0 0.4em 0 0;
}
@media print, screen and (min-width: 769px) {
    .global_nav{
        background: #05479B;
        padding: 0 50px;
    }
    .global_nav ul{
        width: 100%;
        max-width: 1080px;
        margin: auto;
        display: flex;
        border-left: 1px solid #5082C1;
    }
    .global_nav ul li{
        width: 20%;
        border-right: 1px solid #5082C1;
    }
    .global_nav ul li a{
        color: #FFFFFF;
        text-decoration: none;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
	    transition: all .3s;
    }
    .global_nav ul li a:hover{
        background: #2461AF;
    }
}
@media screen and (max-width: 768px) {
    .header{
        height: 50px;
        box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
    }
    .header_wrap .head_upper{
        padding: 0 60px 0 20px;
        height: 50px;
    }
    .header_wrap .h_logo a{
        width: 195px;
        height: 20px;
    }
    .header_wrap .h_contact .h_line{
        display: none;
    }
    .header_wrap .h_tel a span{
        display: none;
    }
    .header_wrap .h_tel a::before{
        width: 22px;
        height: 22px;
        margin: 0;
    }
    /* Toggle Button */
    .nav-toggle {
        position: fixed;
        right: 20px;
        top: 18px;
        width: 24px;
        height: 20px;
        cursor: pointer;
        z-index: 10200;
    }
    .nav-toggle div {
        position: relative;
    }
    .nav-toggle span {
        display: block;
        position: absolute;
        left: 0;
        height: 1px;
        width: 24px;
        background: #05479B;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }
    .nav-toggle span:nth-child(1) {
        top: 0px;
    }
    .nav-toggle span:nth-child(2) {
        top: 8px;
    }
    .nav-toggle span:nth-child(3) {
        top: 16px;
    }
    /* #nav-toggle 切り替えアニメーション */
    .nav-toggle.active {
        background: none;
    }
    .nav-toggle.active span{
        background: #FFF;
    }
    .nav-toggle.active span:nth-child(1) {
        top: 9px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .nav-toggle.active span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .nav-toggle.active span:nth-child(3) {
        top: 9px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* .global_nav スライドアニメーション */
    .open .global_nav {
        -moz-transform: translateX(-110vw);
        -webkit-transform: translateX(-110vw);
        transform: translateX(-110vw);
    }
    /* 開いてないときは画面外に配置 */
    .global_nav{
        position: fixed;
        top: 0;
        right: -110vw;
        width: 100%;
        height: 100%;
        overflow: scroll;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        z-index: 10100;
        background: rgba(21,22,26,0.9);
        padding-top: 70px;
    }
    .global_nav ul li{
        text-align: center;
    }
    .global_nav ul li a{
        display: block;
        color: #FFF;
        text-decoration: none;
        padding: 2em;
        cursor: pointer;
        transition: all .3s;
    }
}

/* =====================================
診断ボタン
======================================== */
.bn_shindan{
    background: #05479B;
    padding: 26px 50px 0 50px;
}
.bn_shindan .btn_shindan{
    max-width: 854px;
    margin: auto;
}
@media screen and (max-width: 768px) {
    .bn_shindan{
        padding: 20px 20px 0 20px;
    }
    .bn_shindan .btn_shindan{
        max-width: 420px;
    }
}
/* =====================================
コンテンツ共通
======================================== */
.bg_border{
	background: url("../images/bg_border.png");
    background-size: 100px auto;
}
.bg_blue{
    background: #E3F5FF;
}
.box{
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 100px 50px;
}
h2.subtitle{
	font-size: 3.2rem;
	font-weight: 600;
    color: #0447A0;
    text-align: center;
}
h2.subtitle span{
    display: block;
    max-width: 380px;
	font-size: 1.6rem;
    border-top: 2px solid #0447A0;
    margin: 1em auto auto;
    padding-top: 1em;
}
h3.subtitle{
    margin-top: 60px;
	font-size: 2.0rem;
	font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    background: #0447A0;
    padding: 0.7em 1em;
}
@media screen and (max-width: 768px) {
    .box{
        padding: 50px 20px;
    }
    h2.subtitle{
        font-size: 1.4rem;
    }
    h2.subtitle span{
        max-width: 180px;
        font-size: 1.0rem;
        border-top: 1px solid #0447A0;
    }
    h3.subtitle{
        margin-top: 20px;
        font-size: 1.2rem;
    }
}
/* =====================================
ページトップ
======================================== */
.page_top{
	position: fixed;
	right: 30px;
    bottom: 30px;
	width: 50px;
	z-index: 1000;
}
@media screen and (max-width: 768px) {
	.page_top{
	    right: 20px;
        bottom: 80px;
		width: 40px;
	}
}
/* =====================================
フッター
======================================== */
.footer{
	background: #EAEAEA;
}
.footer_wrap{
    font-size: 1.4rem;
    line-height: 1.8;
}
@media print, screen and (min-width: 769px) {
	.footer_wrap .footer_upper{
        max-width: 1180px;
        margin: auto;
		display: flex;
		justify-content: space-between;
        padding: 50px;
    }
}
.footer_wrap .footer_upper .f_info .f_company span{
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}
.footer_wrap .footer_upper .f_navi a{
    color: #000;
    text-decoration: none;
}
@media print, screen and (min-width: 769px) {
    .footer_wrap .footer_upper .f_navi a:hover{
        color: #05479B;
        text-decoration: underline;
    }
}
.footer_wrap .copy{
    background: #000000;
    color: #FFFFFF;
    padding: 20px 50px;
    text-align: center;
    font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
    .footer{
        padding-bottom: 70px;
    }
    .footer_wrap{
        font-size: 1.2rem;
        text-align: center;
    }
	.footer_wrap .footer_upper{
        padding: 50px 20px;
    }
    .footer_wrap .footer_upper .f_info .f_company span{
        margin-top: 2em;
        font-size: 1.2rem;
    }
    .footer_wrap .footer_upper .f_navi{
        margin-top: 40px;
    }
    .footer_wrap .copy{
        font-size: 1.0rem;
    }
}
/* =====================================
スマホフロート
======================================== */
@media print, screen and (min-width: 769px) {
    .sp_float{
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .sp_float{
        position: fixed;
        display: flex;
        bottom: 0;
        width: 100%;
        z-index: 10000;
    }
    .sp_float .float_line,
    .sp_float .float_tel{
        width: 25%;
    }
    .sp_float .float_shindan{
        width: 50%;
    }
    .sp_float .float_line a,
    .sp_float .float_tel a,
    .sp_float .float_shindan a{
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sp_float .float_line a{
        background: #00B900;
    }
    .sp_float .float_tel a{
        background: #05479B;
    }
    .sp_float .float_shindan a{
        background: #F15F2C;
    }
    .sp_float .float_line a img{
        width: 40px;
    }
    .sp_float .float_tel a img{
        width: 32px;
    }
    .sp_float .float_shindan a img{
        width: 124px;
    }
}