/*レイアウト*/
body {}

.wrapper {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.contents_wrap {
    width: 100%;
    max-width: 1024px;
    padding-left: 42px;
    padding-right: 42px;
    margin: 0 auto;
}

.base_contents {
    position: relative;
}

.box-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.content-box {
    margin-bottom: 3rem;
}

.content-boxL {
    margin-bottom: 150px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.contsL {
    float: left;
}

.contsR {
    float: right;
}

.t-center {
    text-align: center;
}

.t-right {
    text-align: right;
}

a:hover {
    opacity: .7;
}

@media screen and (max-width: 900px) {
    body {
        padding-top: 0;
    }

    .content-boxL {
        margin-bottom: 120px;
    }
}

@media screen and (max-width: 600px) {
    .content-boxL {
        margin-bottom: 80px;
    }
}


.column,
.column2,
.column-max2,
.column3,
.column4,
.column5,
.column6 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.column-max2>* {
    width: 48%;
}

.column2>* {
    width: 48%;
}

.column3>* {
    width: 32%;
}


.section-box {
    margin-bottom: 150px;
}

.main-column {
    width: 75%;
}

.sub-column {
    width: 20%;
}

@media screen and (max-width: 900px) {
    .contents_wrap {
        padding-left: 5%;
        padding-right: 5%;
        margin: 0 auto;
    }

    .column-max2>* {
        width: 100%;
        margin-bottom: 2rem;
    }

    .main-column {
        width: 90%;
        margin: 0 auto 2rem;
    }

    .sub-column {
        width: 90%;
        margin: 0 auto;
    }

    .section-box {
        margin-bottom: 3rem;
    }

}

@media screen and (max-width: 600px) {

    .column_lr>*:nth-child(odd) {
        width: 100%;
    }

    .column_lr>*:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }

    .column_lr2>*:nth-child(odd) {
        width: 100%;
    }

    .column_lr2>*:nth-child(even) {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
    }
}


/*contents*/
/*ヘッダー*/
body {
    padding-top: 100px;
}
.header {
    text-align: right;
    box-shadow: 0 3px 5px #CCC;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
}

.header .contents_wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}


.health {
}
	.health img {
		width: auto;
		height: 35px;
	}

.head-logo {
    display: block;
    width: 100%;
    max-width: 288px;
    padding: 20px 0;
}

.head-contact {
    right: 0;
    border-bottom: 1px solid;
}

.global-navi .head-menu {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.global-navi .head-menu>li {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.global-navi .head-menu a {
    display: block;
    font-weight: bold;
    font-size: 15px;
    line-height: 21px;
    color: #333333;
    padding: 0;
    position: relative;
}

.global-navi .head-menu a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #3376B8;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.global-navi .head-menu a:hover::after {
    width: 100%;
}

.global-navi .head-menu a span {
    display: block;
    color: #0054A6;
    font-size: 8px;
    line-height: 8px;
    text-align: center;
    padding: 6px 0 8px;
}

.global-navi .head-menu a {
    display: block;
}

.global-navi .head-sns {
    width: 28%;
    padding: .5em 0;
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    border-left: 1px solid #0054A6;
    border-right: 1px solid #0054A6;
    text-align: center;
}

.global-navi .head-sns>li {
    display: inline-block;
    margin: 0 .5em;
}

.global-navi .head-sns a {
    width: 1.3rem;
    height: 1.3rem;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

.global-navi .head-sns .btn-instagram {
    background-image: url(../img/instagram.jpg);
}

.global-navi .head-sns .btn-facebook {
    background-image: url(../img/facebook.svg);
}

.btn_humberger {
    display: none;
}

@media screen and (max-width: 900px) {
    body {
        padding: 0;
    }
    .header {
        text-align: left;
        padding: 5% 0;
        padding-right: 5%;
        position: relative;
        border: none;
    }

    .header .contents_wrap {
        border: none;
        padding: 0;
        display: block;
    }
	
	
	.health {
		margin-left: 10px;
	}
		.health img {
			width: auto;
			height: 30px;
		}
	

    .head-logo {
		display: inline;
        width: 45%;
        max-width: none;
    }
		.head-logo img {
			width: 40%;
			height: auto;

		}

    .btn_humberger {
        width: 3rem;
        height: 3rem;
        padding: 2em 0;
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 5%;
        margin: auto;
        background: #FFF;
        padding: 0;
        border: 0;
        z-index: 9999;
        text-indent: 100%;
        overflow: hidden;
        white-space: nowrap;
    }

    .btn_humberger:before,
    .btn_humberger:after {
        content: '';
        width: 100%;
        height: 3px;
        background: #0054A6;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .btn_humberger:before {
        -ms-transform: translateY(-.8em);
        webkit-transform: translateY(-.8em);
        transform: translateY(-.8em);
        box-shadow: 0 .8em #0054A6;
    }

    .btn_humberger:after {
        -ms-transform: translateY(.8em);
        webkit-transform: translateY(.8em);
        transform: translateY(.8em);
    }


    .btn_humberger.open:before {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        box-shadow: none;
    }

    .btn_humberger.open:after {
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #global-navi {
        display: none;
    }

    #global-navi.open {
        display: block;
    }

    .global-navi {
        width: 100%;
        background: #0054A6;
    }

    .global-navi .head-menu>li {
        width: 100%;
        border-left: 0;
        border-top: 1px solid #D8D8D8;
    }

    .global-navi .head-menu a {
        background: #0054A6;
        color: #FFF;
        line-height: 40px;
    }

    .global-navi .head-menu a.here {
        background: #FFF;
        color: #000;
    }

    .global-navi .head-menu a span {
        display: none;
    }

    .global-navi .head-menu {
        border-left: 0;
    }

    .global-navi .head-menu>li:last-child {
        width: 100%;
        border-bottom: 1px solid #D8D8D8;
    }

    .global-navi .head-sns {
        display: none;
    }
}

/*フッター*/
.footer {
    margin-top: 100px;
}

.foot-logo {
    
}

.footer-navi {
    background: #EBF1F8;
    color: #0054A6;
    border-top: 9px solid #0054A6;
    border-bottom: 1px solid #0054A6;
}

.footer-navi .contents_wrap {
    position: relative;
}

.foot-menu {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.foot-menu>li {
    width: 20%;
}

.foot-menu>li:first-child {
/*     width: 100%; */
	width: 40%;
}

.foot-menu>li>a {
    font-size: 1.4rem;
    margin-bottom: 1em;
    display: block;
    font-weight: bold;
}

.foot-menu>li>a::before {
    content: '+';
    margin-right: .2em;
    vertical-align: middle;
    display: inline-block;
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4rem;
}

.foot-menu .submenu>li {
    margin-bottom: .5em;
}

.foot-menu .submenu>li a {
    padding-left: 1.5em;
    display: block;
}

.foot-menu .submenu>li a::before {
    content: '';
    width: .6em;
    height: .6em;
    display: inline-block;
    border-right: 2px solid;
    border-top: 2px solid;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    vertical-align: middle;
    margin-left: -1.5em;
    margin-right: 0.8em;
}

.footer-info {
    font-weight: bold;
}

.footer-info .contsR {
    width: 100%;
    max-width: 300px;
    float: right;
    margin-top: -7%;
}

.footer-info .contsR .foot-tel {
    border: 1px solid #0054A6;
    padding: 30px 8px;
    text-align: center;
    color: #0054A6;
}

.footer-info .contsR .foot-tel .telnum {
    font-size: 27px;
    line-height: 27px;
    padding-left: 0;
}

.footer-info .contsR .foot-tel p {
    font-size: 11px;
    line-height: 11px;
    display: block;
    text-align: center;
    margin-top: 4px;
}

.footer-info .contsR .foot-tel .telnum:before {
    content: '';
    width: 30px;
	aspect-ratio: 1/1;
	display: inline-block;
    vertical-align: middle;
    margin-right: 9px;
    background: url(../img/icon-tel.svg) no-repeat center center/ 100% 100%;
    margin-top: 0;
}

.footer-info .foot-contact {
    display: block;
    width: 100%;
    background: #0054A6;
    color: #FFF;
    padding: 1em;
    font-size: 20px;
    margin-top: 20px;
	text-align: center;
	border-radius: 15px;
}

.footer-info .foot-contact:before {
    content: '';
    width: 41px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;
    background: url(../img/mail.svg) no-repeat center center / 100% auto;
    margin-right: 19px;
}

.list-info dt {
    color: #0054A6;
    text-align: center;
    width: 80px;
    font-size: 11px;
    line-height: 12px;
    font-weight: bold;
    float: left;
    line-height: 21px;
    border-radius: 1em;
    border: 1px solid;
}

.list-info dd {
    padding-left: 92px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 23px;
}

.list-info .foot {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    margin-top: 55px;
}

.list-info .foot dt {
    margin-bottom: 15px;
}

.list-info .foot dd {
    padding: 0;
}

.footer-bottom {
    text-align: center;
    background: #0054A6;
    color: #FFF;
    font-size: 1.1rem;
}

.footer-bottom .contents_wrap {
    padding-top: 1em;
    padding-bottom: 1em;
    position: relative;
}

.foot-sns {
    display: none;
}

a.gotop {
    background: #0054A6;
    width: 90px;
    height: 90px;
    border: 1px solid #FFF;
    border-radius: 50%;
    position: absolute;
    top: -45px;
    right: 0;
    margin: auto;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
}

a.gotop:before {
    content: '';
    width: 2rem;
    height: 2rem;
    border-left: 3px solid #FFF;
    border-top: 3px solid #FFF;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    -ms-transform: translateY(30%) rotate(45deg);
    -webkit-transform: translateY(30%) rotate(45deg);
    transform: translateY(30%) rotate(45deg);
}

.rel-company>li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1em;
    color: #0054A6;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

.logo-airefo {
    width: 100%;
    height: 0;
    display: inline-block;
    padding-bottom: 25%;
    background: url(/wp/wp-content/uploads/2019/06/logo-aireform-1.gif) no-repeat center center/ 100% auto;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
}

@media screen and (max-width: 1000px) {
    .footer-info .contsR .foot-tel .telnum {
        font-size: 2rem;
    }

    .footer-info .foot-contact {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 600px) {
    a.gotop {
        display: none;
    }

    .footer-navi .contents_wrap {
        padding: 0;
    }

    .foot-menu>li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid;
    }

    .foot-menu>li:first-child {
/*         display: none; */
		width: 100%;
    }

    .foot-menu>li>a {
        padding: 1em 0;
        margin: 0;
        position: relative;
    }

    .foot-menu>li>a::before {
        position: absolute;
        right: .5em;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 1em;
        line-height: 1em;
    }

    .foot-menu .submenu {
        display: none;
    }

    .foot-logo {
        margin-bottom: 20px;
    }

    .footer-info .contsR {
        width: 100%;
        max-width: none;
        float: none;
        margin-top: 1em;
        margin-bottom: 2rem;
    }

    .footer-info .contsR .foot-tel {
        border: none;
        padding: 0;
    }

    .foot-sns {
        display: block;
        text-align: center;
        margin: 1em auto;
    }

    .foot-sns>li {
        display: inline-block;
    }

    .foot-sns>li {
        display: inline-block;
        margin: 0 .5em;
    }

    .foot-sns a {
        width: 2rem;
        height: 2rem;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-indent: 100%;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .foot-sns .btn-instagram {
        background-image: url(../img/instagram.jpg);
    }

    .foot-sns .btn-facebook {
        background-image: url(../img/facebook.svg);
    }

    .list-info dd br:first-of-type {
        display: none;
    }

}

/*コピーライト*/
.copyright {
    font-size: .8rem;
    margin-top: 1em;
}