@charset "UTF-8";

/*----------------------------------------------------
    main
----------------------------------------------------*/
#main {
    padding-top: 0;
    overflow: hidden;
}

@media screen and (max-width:992px) {
    #main {
        padding-top: 60px;
    }
}

/*----------------------------------------------------
    footer_side
----------------------------------------------------*/
@media screen and (min-width: 992px) {

    #main,
    #footer {
        margin-left: 80px;
    }

    #footer .footer_side {
        background-color: #1d2087;
        width: 80px;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
    }
}

/*----------------------------------------------------
    container
----------------------------------------------------*/
@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1200px;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .container {
        max-width: 100% !important;
    }
}

@media (max-width:991px) {
    .container {
        max-width: 100% !important;
    }
}

/*----------------------------------------------------
    inner
----------------------------------------------------*/
.inner_gray {
    background-color: #f6f6f6;
}

/*----------------------------------------------------
    Header
----------------------------------------------------*/

@media screen and (min-width: 992px) {
    .sp-nav {
        display: none;
    }

    #header {}

    #header .header_logo {
        position: fixed;
        height: 80px;
    }

    #header .inner {
        height: 80px;
        position: fixed;
        width: 100%;
        z-index: 9800;
    }

    #header nav {}

    #header nav ul {
        list-style: none;
        display: flex;
        justify-content: flex-end;
        padding: 1rem 0;
    }

    #header nav li {
        margin-top: 0.6rem;
        margin-right: 1rem;
    }

    #header nav li.btn_contact {
        margin-top: 0.3rem;
    }

    #header nav li a {
        font-size: 12px;
        color: #fff;
    }

    #header nav li.btn_contact a {
        background-color: #e50012;
        color: #fff !important;
        padding: 0.6rem 2rem;
        display: block;
        border-radius: 20px;
        margin-top: 0;
    }

    #header nav li.btn_contact a:hover {
        opacity: 1;
        background-color: #db7507;
    }

    #header.js-header .inner {
        background: rgba(255, 255, 255, 0.9);
        transition: all .5s;
    }

    #header.js-header .inner nav li a {
        color: #565656;
    }
}

@media screen and (min-width:1200px) and (max-width:1299px) {
    #header nav li {
        margin-top: 0.5rem;
        margin-right: 1rem;
    }

    #header nav li.btn_contact {
        top: 55px;
        position: absolute;
    }

    #header nav li.btn_contact a {
        padding: 0.5rem 1.2rem;
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    #header .inner {
        height: 80px;
    }

    #header nav li a {
        font-size: 11px;
    }

    #header nav li {
        margin-top: 0.5rem;
        margin-right: .6rem;
    }

    #header nav li.btn_contact {
        top: 55px;
        position: absolute;
    }

    #header nav li.btn_contact a {
        padding: 0.5rem 1.2rem;
    }
}

@media screen and (max-width: 991px) {
    .pc-nav {
        display: none;
    }

    #header {
        padding: 10px 4% 10px;
        position: fixed;
        top: 0;
        width: 100%;
        display: flex;
        align-items: center;
        z-index: 1200;
        background-color: rgba(255, 255, 255, 0.9);
    }

    #header h1 {
        width: 150px;
    }

    #header h1 img {
        width: 100%;
    }

    #header .header_tel {
        width: 2rem;
        position: absolute;
        right: 4rem;
        top: 0.8rem;
    }

    #header .header_tel img {
        width: 100%;
    }

    /* hamburgerここから */
    /* inputを非表示 */
    .input-hidden {
        display: none;
    }

    /* label */
    .hamburger-demo-switch {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: -0.2rem;
        /* ハンバーガーアイコンの位置（上から） */
        z-index: 9999;
        width: 4em;
        /* アイコン（クリック可能領域）の幅 */
        height: 4em;
        /* アイコン（クリック可能領域の）高さ */
    }

    /* メニュー展開時にハンバーガーアイコンを固定 */
    #hamburger-demo1:checked~.hamburger-demo-switch {
        position: fixed;
    }

    /* ハンバーガーアイコン */
    .hamburger-switch-line1,
    .hamburger-switch-line1:before,
    .hamburger-switch-line1:after {
        width: 25px;
        height: 3px;
        background: #333;
        /* ハンバーガーアイコンの色 */
        position: absolute;
        top: 50%;
        left: 50%;
        transition: .3s;
        content: "";
    }

    .hamburger-switch-line1 {
        transform: translate(-50%, -50%);
    }

    .hamburger-switch-line1:before {
        transform: translate(-50%, -300%);
    }

    .hamburger-switch-line1:after {
        transform: translate(-50%, 200%);
    }

    /* ハンバーガーアイコン･アニメーション */
    #hamburger-demo1:checked~.hamburger-demo-switch .hamburger-switch-line1 {
        width: 0;
    }

    #hamburger-demo1:checked~.hamburger-demo-switch .hamburger-switch-line1:before {
        transform: rotate(45deg) translate(-40%, 325%);
    }

    #hamburger-demo1:checked~.hamburger-demo-switch .hamburger-switch-line1:after {
        transform: rotate(-45deg) translate(-40%, -325%);
    }

    /* メニューエリア */
    .hamburger-demo-menuwrap {
        position: fixed;
        height: 100%;
        background: #fafafa;
        /* メニューエリアの背景色 */
        padding: 5em 3% 2em;
        z-index: 9998;
        transition: .3s;
        overflow-y: scroll;
        /* メニュー内容が多い場合に縦スクロールする */
        top: 0;
        left: 100%;
        width: 70%;
    }

    /* メニューリスト */
    .hamburger-demo-menulist {
        margin-right: 3%;
        padding-left: 5% !important;
        /* !important不要な場合もあり */
        list-style: none;
    }

    .hamburger-demo-menulist li a {
        text-decoration: none;
        color: #333;
        /* メニューリストの文字色 */
        display: block;
        padding: .7em 0;
        border-bottom: 1px solid #ccc;
        font-weight: 500;
    }

    .hamburger-demo-menulist li a {
        text-decoration: none;
        color: #333;
        /* メニューリストの文字色 */
        display: block;
        padding: .7em 0;
        border-bottom: 1px solid #ccc;
    }

    .hamburger-demo-menulist li a::before {
        /* font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; */
        font-family: 'Noto Sans JP', sans-serif;
        content: '\f105';
        font-size: 15px;
        font-weight: 900;
        padding-right: 5px;
    }

    /* メニューエリア･アニメーション */
    /* 右から */
    #hamburger-demo1:checked~.hamburger-demo-menuwrap {
        left: 30%;
    }

    /* コンテンツカバー */
    #hamburger-demo1:checked~.hamburger-demo-cover {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 9997;
        background: rgba(3, 3, 3, .5);
        display: block;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    #header {
        padding: 10px 4% 10px 2%;
    }

    #header h1 {
        width: 180px;
    }
}

/*----------------------------------------------------
    jumbotron_sub
----------------------------------------------------*/
#jumbotron_sub {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

@media (max-width: 767px) {
    #jumbotron_sub {
        min-height: 210px;
    }
}

@media (min-width: 768px) {
    #jumbotron_sub {
        min-height: 360px;
    }
}

#jumbotron_sub h2 {
    font-size: 36px;
    color: #fff;
    padding: 8rem 4rem;
}

#jumbotron_sub h2 span.bg-cont {
    /* font-family: 'Lora', serif; */
    font-family: 'Noto Sans JP', sans-serif;
    text-transform: capitalize;
    font-size: 233.33%;
    display: block;
    text-decoration-skip-ink: none;
}

#jumbotron_sub h2 span.bg-cont span {
    display: inline-block;
    line-height: 1;
    position: relative;
}

#jumbotron_sub h2 span.bg-cont span::after {
    content: '';
    border-bottom: 4px solid #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

@media screen and (min-width:768px) and (max-width:991px) {
    #jumbotron_sub h2 {
        font-size: 24px;
        padding: 5rem 1rem;
    }
}

@media screen and (max-width:767px) {
    #jumbotron_sub h2 {
        font-size: 24px;
        padding: 3.4rem 0;
        text-align: center;
        width: 100%;
    }

    #jumbotron_sub h2 span.bg-cont {
        text-align: center;
    }
}

/*----------------------------------------------------
    Breadcrumb NavXT
----------------------------------------------------*/
.breadcrumbs {
    text-align: right;
    margin-top: 1rem;
    margin-right: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .breadcrumbs {
        font-size: 14px;
        margin-top: .6rem;
        margin-right: 2%;
        margin-left: 2%;
    }
}

@media screen and (max-width:767px) {
    .breadcrumbs {
        font-size: 10px;
        margin-top: .6rem;
        margin-right: 2%;
        margin-left: 2%;
    }
}

/*----------------------------------------------------
    Footer
----------------------------------------------------*/

#footer {
    padding: 2rem 2rem 1rem;
    font-size: 14px;
    background-color: #fff;
}

#footer ul.footer_nav {
    margin-top: 1.4rem;
    text-align: right;
}

#footer ul li {
    margin-left: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

#footer ul li a {
    font-size: 13px;
}

#footer ul li a:hover {
    opacity: 1;
    color: #c4446b;
}

#footer .logo {}

#footer .logo img {
    width: 273px;
}

#footer .address {
    font-size: 14px;
    padding: 0 0 1rem;
    margin-top: -1rem;
}

#footer .copyright {
    margin-top: 2rem;
    text-align: center;
    font-size: 14px;
}

@media screen and (min-width:992px) and (max-width:1199px) {
    #footer ul.footer_nav {
        margin-top: 1rem;
        text-align: right;
    }

    #footer ul li {
        margin-left: 0.6rem;
    }

    #footer ul li a {
        font-size: 12px;
    }

    #footer .address {
        font-size: 12px;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {
    #footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }

    #footer ul.footer_nav {
        margin: 0;
        text-align: center;
    }

    #footer ul li {
        margin-bottom: 0.4rem;
    }

    #footer ul li a {
        font-size: 12px;
    }

    #footer .address {
        font-size: 14px;
        margin-top: 1rem;
    }

    #footer .copyright {
        margin-top: 2rem;
    }
}

@media screen and (max-width:767px) {
    #footer {
        padding: 2rem 0 0;
    }

    #footer ul.footer_nav {
        margin: 0 0 1rem;
        display: block;
        text-align: left;
    }

    #footer ul li {
        margin-left: 0;
        margin-bottom: 0;
        display: block;
    }

    #footer ul li a {
        display: block;
        padding: 0.6rem 0.6rem 0.6rem 0;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
    }

    #footer ul li:last-child a {
        border-bottom: none;
    }

    #footer ul li a::before {
        /* font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands"; */
        font-family: 'Noto Sans JP', sans-serif;
        content: '\f105';
        font-size: 13px;
        font-weight: 900;
        padding-right: 5px;
    }

    #footer .logo,
    #footer .address {
        text-align: center;
    }

    #footer .logo img {
        max-width: 70%;
    }

    #footer .address {
        font-size: 12px;
        margin-top: 1rem;
    }

    #footer .copyright {
        font-size: 10px;
        margin-top: 0;
        text-align: center;
    }
}