@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&family=Noto+Serif+JP:wght@500&display=swap');

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
}
body {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-size: 1.4em;
    color: #000000;
    line-height: 1.8em;
    letter-spacing: 0.05em;
    font-weight: 400;
    background: #f1f1f1;
    margin: 0 !important;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
body.is_fixed .nav_fix {
    position: fixed;
    top: 0;
    margin-top: 0;
    width: 100%;
    background: #fff;
    z-index: 99999;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.contents_inner_large {
    max-width: 100%;
    margin: 0 auto;
}
.contents_inner {
    width: 1000px;
    margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a,
a:link,
a:visited {
    text-decoration: none;
    cursor: pointer;
    color: #000;
}
a:hover {
    color: #011c43;
    text-decoration: none;
}
.sp {
    display: none;
}
.pc {
    display: block;
}
.left {
    float: left;
}
.right {
    float: right;
}
@media screen and (max-width: 1000px) {
    .contents_inner {
        width: 90%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 640px) {
    body {
        font-size: 13px;
        font-size: 1.3em;
        line-height: 1.4em;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------

	header

-----------------------------------*/
header {
    background: #fff;
}
header .contents_inner {
    width: 100%;
}
header .logo {
    float: left;
    max-width: 230px;
    width: 100%;
    margin-left: 1.5%;
}
header .logo a {
    display: block;
    height: 90px;
    position: relative;
}
header .logo a img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
header .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
header .right nav ul li {
    float: left;
}
header .right nav ul li a {
    height: 90px;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 25px;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s;
}
header .right nav ul li a::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 5px;
    border-color: transparent transparent transparent #bac5d1;
    margin-right: 8px;
}
header .right nav ul li a:hover {
    background: #f1f1f1;
}
header .right .pamphlet a {
    background: #507fc2;
    color: #fff;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.5;
    transition: ease 0.2s;
}
header .right .pamphlet a:hover {
    background: #435b7e;
}
header .right .tel {
    background: #033a8b;
    color: #fff;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 1;
}
header .right .contact a {
    display: block;
    background: #000000;
    color: #fff;
    height: 90px;
    padding: 53px 20px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1;
    position: relative;
    transition: ease 0.2s;
}
header .right .contact a::before {
    position: absolute;
    content: '';
    background: url(../img/common/header_mailicon.png) no-repeat;
    background-size: contain;
    width: 28px;
    height: 21px;
    top: 23px;
    left: 0;
    right: 0;
    margin: auto;
}
header .right .contact a:hover {
    background: #333;
}

@media screen and (max-width: 1200px) {
    header .right nav ul li a {
        padding: 0 10px;
        font-size: 12px;
    }
    header .right .pamphlet a {
        padding: 0 10px;
        font-size: 13px;
    }
    header .right .tel {
        padding: 0 12px;
        font-size: 18px;
    }
    header .right .contact a {
        padding: 53px 14px 0;
        font-size: 13px;
    }
}
@media screen and (max-width: 1000px) {
    header .right nav ul li {
        float: none;
        width: 50%;
    }
    header .right nav > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 195px;
        padding: 5px 0;
    }
    header .right nav ul li a {
        height: 40px;
    }
}
@media screen and (max-width: 900px) {
    header .logo a,
    header .logo {
        height: 80px;
    }
    header .right {
        display: none;
    }
    .menu_btn_wrap {
        width: 80px;
        height: 80px;
        cursor: pointer;
        background: #011c43;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
    }
    .is_fixed .menu_btn_wrap {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999999;
    }
    .menu_btn {
        width: 40px;
        height: 25px;
        display: block;
        position: absolute;
        top: 25px;
        right: 0;
        left: 0;
        margin: 0 auto;
        background: #fff;
        border-top: 12px solid #011c43;
        border-bottom: 10px solid #011c43;
        box-sizing: border-box;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        z-index: 999;
    }
    .menu_btn:before {
        content: '';
        position: absolute;
        width: 40px;
        height: 3px;
        background: #fff;
        top: -12px;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .menu_btn:after {
        content: '';
        position: absolute;
        width: 40px;
        height: 3px;
        background: #fff;
        bottom: -12px;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .menu_btn.active {
        background: #011c43;
    }
    .menu_btn.active:before {
        -moz-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        top: 0;
        right: 0;
    }
    .menu_btn.active:after {
        -moz-transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        bottom: 0;
        right: 0;
    }
}
@media screen and (max-width: 640px) {
    .menu_btn {
        width: 40px;
        height: 25px;
        display: block;
        position: absolute;
        top: 23px;
        background: #fff;
        border-top: 12px solid #011c43;
        border-bottom: 10px solid #011c43;
        box-sizing: border-box;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        z-index: 999;
    }
    .menu_btn:before {
        content: '';
        position: absolute;
        width: 40px;
        height: 3px;
        background: #fff;
        top: -11px;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
}
/*-----------------------------------

	nav

-----------------------------------*/
#nav_sp {
    display: none;
}

@media screen and (max-width: 1000px) {
    #nav_pc {
        display: none;
    }
    #nav_sp {
        width: 100%;
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        background: #011c43;
        position: fixed;
        top: 80px;
        right: -100%;
        padding: 20px 2.5% 0;
        display: inline-block;
        z-index: 999;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -ms-transition: 0.3s;
    }
    #nav_sp a {
        color: #fff;
    }
    #nav_sp.toggle {
        right: 0 !important;
    }
    #nav_sp_menu li {
        border-bottom: solid 1px #fff;
    }
    #nav_sp_menu li a {
        font-size: 15px;
        display: block;
        padding: 15px 2.5%;
        position: relative;
    }
    #nav_sp_menu li a.arrow:after {
        font-size: 13px;
        top: 25%;
    }
    #nav_sp_menu li a:hover {
        background: #153752;
    }
    #nav_sp_menu li ul li:last-child {
        border-bottom: none;
    }
    #nav_sp_menu li ul li:first-child {
        border-top: 1px solid #fff;
        margin-top: 8px;
    }
    #nav_sp a.pamphlet {
        display: block;
        background: #456aa0;
        border-radius: 5px;
        margin-top: 40px;
        text-align: center;
        padding: 12px 0;
        font-size: 16px;
        letter-spacing: 0.1em;
        color: #fff;
        position: relative;
    }
    #nav_sp a.pamphlet::before {
        content: '';
        background: url(../img/business/note_icon.svg) no-repeat;
        width: 23px;
        height: 23px;
        display: inline-block;
        right: 18px;
        margin-right: 8px;
        vertical-align: middle;
    }
    #nav_sp a.pamphlet span {
        display: inline-block;
        vertical-align: middle;
    }
    #nav_sp a.tel {
        display: block;
        background: #fff;
        border-radius: 5px;
        margin-top: 20px;
        text-align: center;
        padding: 10px 0;
        font-size: 18px;
        letter-spacing: 0.1em;
        color: #153752;
    }
    #nav_sp a.tel::before {
        font-family: 'Font Awesome 5 Free';
        content: '\f879';
        font-weight: 900;
        margin-right: 5px;
        color: #011c43;
    }
}
@media screen and (max-width: 640px) {
    #nav_sp a.pamphlet {
        margin-top: 15px;
        padding: 10px 0;
        font-size: 15px;
    }
    #nav_sp {
        padding: 8px 2.5% 0;
    }
    #nav_sp_menu li a {
        font-size: 14px;
        padding: 14px 2.5%;
    }
    #nav_sp a.tel {
        margin-top: 15px;
    }
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop {
    position: fixed;
    right: 30px;
    bottom: 35px;
    cursor: pointer;
    z-index: 999;
    width: 55px;
    height: 55px;
    background: #07429b;
    border-radius: 50%;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}
#pagetop:after {
    font-size: 25px;
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    content: '\f077';
    font-weight: bold;
    text-align: center;
    line-height: 53px;
    display: block;
}
#pagetop:hover {
    background-color: #333;
}
#pagetop:hover:before {
    background: #011c43;
}
#pagetop_sp {
    display: none;
}
@media screen and (max-width: 640px) {
    #pagetop {
        display: none !important;
    }
    #pagetop_sp {
        height: 50px;
        background: #191919;
        transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -ms-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        padding-top: 15px;
        cursor: pointer;
        display: block;
        box-sizing: border-box;
    }
    #pagetop_sp:hover {
        background: #011c43;
    }
    #pagetop_sp:after {
        font-size: 24px;
        color: #fff;
        font-family: 'Font Awesome 5 Free';
        content: '\f077';
        font-weight: bold;
        text-align: center;
        display: block;
        transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -ms-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
    }
}
/*-----------------------------------

	footer

-----------------------------------*/
footer {
    background: #0f1e34;
    padding: 30px 0 0;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
}
footer ul.clearfix {
    display: inline-block;
}
footer ul li {
    float: left;
}
footer ul li a {
    color: #fff !important;
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: 0;
}
footer ul li a:hover {
    opacity: 0.6;
}
footer #address {
    margin: 45px 0;
}
footer #address .logo {
    max-width: 245px;
    width: 45%;
    margin: 0 auto 10px;
}
footer #address p {
    font-size: 13px;
    font-weight: 400;
    line-height: 170%;
    text-align: center;
    letter-spacing: 0.03em;
}
footer small {
    font-size: 11px;
    padding: 10px 0;
    display: block;
    color: #c7c7c7;
}
@media screen and (max-width: 840px) {
    footer ul li a {
        color: #fff !important;
        padding: 0 15px;
        font-size: 11px;
    }
}
@media screen and (max-width: 640px) {
    footer {
        padding: 0;
    }
    footer ul li {
        width: 50%;
    }
    footer ul li a {
        display: block;
        padding: 15px;
        font-size: 11px;
        border-right: 1px solid #081222;
        border-bottom: 1px solid #081222;
    }
    footer ul li:first-child {
        width: 100%;
    }
    footer ul li:nth-child(1) a,
    footer ul li:nth-child(3) a,
    footer ul li:nth-child(5) a,
    footer ul li:nth-child(7) a {
        border-right: none;
    }
}
