/* ///////////////////////////////////////////
////////////////    共通    /////////////
/////////////////////////////////////////// */
body {
    font-family: 'Noto Sans JP', sans-serif;
}

.inner {
    padding-left: 25px;
    padding-right: 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    width: 100%;
}

.detail-title__box {
    border: 2px solid #29abe2;
    border-image: linear-gradient(to right, #29abe2 0%, #006cb8 100%);
    border-image-slice: 1;
    border-left: 10px solid;
    margin-bottom: 20px;
    padding: 5px 10px;
}

.detail-sub__tile {
    color: #29abe2;
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: bolder;
}

.contact-btn {
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    padding: 12px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    min-width: 220px;
}

.contact-btn--free {
    color: #fff;
    background-color: #FF9933;
}

.contact-btn img {
    width: 20px;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

.section-title {
    text-align: center;
    font-size: 18px;
    position: relative;
    color: #fff;
    font-weight: bold;
}

.section-title:before {
    position: absolute;
    width: 50px;
    height: 3px;
    content: "";
    background-color: #fff;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.body.noscroll {
    overflow: hidden;
}

.contact-action-area {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(../img/top/about_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .contact-action-area {
        margin-bottom: 0;
    }

    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* ///////////////////////////////////////////
////////////////    header    /////////////
/////////////////////////////////////////// */

.header {
    background-color: #fff;
    padding-left: 20px;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header__inner {
    position: relative;
    display: flex;
    height: inherit;
    align-items: center;
}

.header__logo {
    width: 150px;
}

.header__logo a {
    display: block;
    width: 100%;
}

.header__nav {
    margin-left: auto;
}

.header__hamburger-btn {
    position: absolute;
    z-index: 9999;
    top: 18px;
    right: 0vw;
}

.header-nav__lists {
    display: flex;
}

.header-nav__list a {
    color: #000;
    font-weight: bold;
    line-height: 50px;
    display: inline-block;
    height: 50px;
}

.header-nav__list--contact a {
    padding-left: 16px;
    padding-right: 16px;
    background-color: #FF9933;
    color: #fff;
}

.header-nav__list:not(:last-child) {
    margin-right: 24px;
}

.header-nav__list.contact {
    background-color: #000;
}

.header-nav__list.contact a {
    color: #111;
    padding: 0 32px;
}

.drawer-menu {
    background-color: rgba(7, 82, 163, 0.95);
    height: calc(100vh - 50px);
    position: fixed;
    left: 0;
    text-align: center;
    width: 100%;
    display: none;
    z-index: 100;
}

.drawer-menu__lists {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.drawer-menu__list a {
    color: #fff;
    display: block;
    width: 100%;
    letter-spacing: 0.068em;
    line-height: 1;
}

.drawer-menu__list:not(:last-child) {
    margin-bottom: 32px;
}

.hamburger {
    z-index: 9999;
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger__top {
    display: block;
    height: 1px;
    width: 22px;
    background: #000;
    margin-bottom: 5px;
    transition: .3s;
}

.hamburger__mid {
    display: block;
    height: 1px;
    width: 22px;
    background: #000;
    margin-bottom: 5px;
}

.hamburger__bottom {
    display: block;
    height: 1px;
    width: 22px;
    background: #000;
    transition: .3s;
}

.hamburger.cross .hamburger__top {
    transform: rotate(45deg) translate(4px, 7px);
    transition: .3s;
}

.hamburger.cross .hamburger__mid {
    opacity: 0;
}

.hamburger.cross .hamburger__bottom {
    transform: rotate(-45deg) translate(1px, -5px);
    transition: .3s;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .header__nav {
        display: none;
    }
}



/* ///////////////////////////////////////////
////////////////    footer    /////////////
/////////////////////////////////////////// */
.footer {
    padding-top: 60px;
}

.footer__container {
    display: flex;
    align-items: center;
}

.footer__logo {
    width: 200px;
    margin-right: 60px;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
}

.footer__link a {
    font-weight: bold;
    color: #000;
    display: inline-block;
    margin-right: 36px;
}

.copyright {
    padding-top: 40px;
    padding-bottom: 10px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer {
        padding-top: 30px;
    }

    .footer__container {
        flex-direction: column;
    }

    .footer__logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer__link a {
        margin-right: 20px;
    }
}



/* ///////////////////////////////////////////
////////////////    PC / SP 切替    /////////////
/////////////////////////////////////////// */
.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}

