@charset "UTF-8";
/* CSS Document */

/*root*/

* {
    font-size: 16px;
    font-weight: normal;
    line-height: 1em;
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
* {
    font-family: "メイリオ", Meiryo, sans-serif;
}


/*img*/
img {
    width: 100%;
    height: auto;
}

/*電話リンクタッチイベント無効*/

a[href^="tel:"] {
    pointer-events: none;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.tel a {
    text-decoration: none !important;
    cursor: default !important;
}

_:-ms-lang(x)::-ms-backdrop, .tel a:hover {
    opacity: 1;
    color: #0073CC;
}


@media screen and (max-width: 768px) {
    a[href^="tel:"]:hover {
        text-decoration: none;
    }

    a[href^="tel:"] {
        pointer-events: auto;
    }

}


/*font*/

/*明朝*/

.f_mintyo {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
.f_mintyo {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/*丸ゴシック*/
.f_marug {
    font-family: 'Kosugi Maru', sans-serif;
}

/*roboto*/
.f_roboto {
    font-family: 'Roboto', sans-serif;
}

.f_roboto.bold {
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    html:root {
        font-size: 14px;
    }
}

/* Windows用フォント調整 */

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}

/*Link*/

a:link {
    color: #0073CC;
    text-decoration: none;
    transition: 0.3s;
}

a:visited {
    color: #006699;
}

a:hover {
    color: #00ccff;
    text-decoration: underline;
}

a:active {
    color: #ffcc00
}

a:hover img {
    opacity: 0.8;
    transition: 0.3s;
}

/*Page Top*/

#btn_page_top {
    position: fixed;
    right: 0.4rem;
    bottom: 5.5rem;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
}

#btn_page_top.on {
    display: block;
    visibility: visible;
    opacity: 1;
}

#btn_page_top a {
    display: block;
    position: relative;
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 115, 204, 0.5);
    border-radius: 2rem;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

#btn_page_top a span {
    position: absolute;
    top: 0.35rem;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
}

#btn_page_top a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    #btn_page_top {
        right: 0.6rem;
        bottom: 6rem;

    }
}

/*hide*/

.pc_hide {
    display: none;
}

.pc_hide480 {
    display: none;
}

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

    .sp_hide {
        display: none !important;
    }
}

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

    .sp_hide480 {
        display: none;
    }
}

/*header===============================*/
#glo_header {
    width: 100%;
    min-width: 1024px;
    height: 80px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
}

#glo_header .logo {
    width: 374px;
    position: absolute;
    top: 17px;
    left: 28px;
}

#glo_header .tel {
    font-size: 38px;
    color: #0073CC;
    padding-left: 28px;
    position: relative;
    position: absolute;
    top: 18px;
    right: 270px;
}

#glo_header .tel:before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icon/icon_tel.svg);
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;

}

#glo_header .access {
    position: absolute;
    right: 92px;
    top: 24px;
}

#glo_header .access a {
    width: 160px;
    font-size: 14px;
    padding: 9px 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    background: #0073CC;
    opacity: 0.8;
    box-shadow: none;
}

#glo_header .access a span.icon_car_white {
    display: inline-block;
    position: relative;
    padding-left: 24px;
}

#glo_header .access a span.icon_car_white:before {
    width: 20px;
    height: 20px;
    top: -3px;
    left: 0;
}


@media screen and (max-width: 768px) {
    #glo_header {
        width: auto;
        min-width: auto;
        height: 60px;
        margin-bottom: 10px;
        background-color: transparent;
    }

    #glo_header .logo {
        width: 160px;
        position: absolute;
        top: 12px;
        left: 14px;
    }
}

/*pankuzu===============================*/
.pankuzu_wrap {
    max-width: 1260px;
    height: 16px;
    padding: 1px 0 1px 20px;
    box-sizing: border-box;
    margin: 8px auto 10px;
    background-image: url(../images/icon/icon_home.svg);
    background-repeat: no-repeat;
    background-position: left 2px;
    background-size: 15px auto;
}

.pankuzu_wrap ul {
    display: flex;
    justify-content: flex-start;
}

.pankuzu_wrap ul li {
    font-size: 14px;
}

.pankuzu_wrap ul li:before {
    content: "/";
    color: #999;
    margin: 0 6px;
}

.pankuzu_wrap ul li:first-child:before {
    content: none;
}

.pankuzu_wrap ul li a {

    color: #999999;
}



/*page_title===============================*/
#page_title_wrap {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

#page_title_wrap .page_title_backimg {
    width: 400px;
    height: 120px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

#page_title_wrap .page_title_backimg img {
    object-fit: cover;
    width: 400px;
    height: 120px;
}

#page_title_wrap h1 {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 115, 204, 0.15);
    z-index: 10;

}

#page_title_wrap h1 .h1_inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1rem;
}

#page_title_wrap h1 .h1_inner span {
    display: block;
}

#page_title_wrap h1 .h1_inner span.page_title {
    font-size: 48px;
    line-height: 1em;
    color: #0073CC;
    padding: 0.3em 0 0.2em 1rem;
    border-left: 6px solid #0073CC;
}

#page_title_wrap h1 .h1_inner span.page_title_en {
    font-size: 16px;
    line-height: 1.5em;
    color: #000;
    padding-left: 1rem;
    border-left: 6px solid #FFBB00;
}

@media screen and (max-width:768px) {
    #page_title_wrap {
        height: 80px;
    }

    #page_title_wrap .page_title_backimg {
        width: 200px;
        height: 80px;
    }

    #page_title_wrap .page_title_backimg img {
        object-fit: cover;
        width: 200px;
        height: 80px;
    }

    #page_title_wrap h1 {}

    #page_title_wrap h1 .h1_inner {}

    #page_title_wrap h1 .h1_inner span {}

    #page_title_wrap h1 .h1_inner span.page_title {
        font-size: 24px;
        padding: 0.3em 0 0.2em 0.5rem;
        border-left: 4px solid #0073CC;
    }

    #page_title_wrap h1 .h1_inner span.page_title_en {
        font-size: 12px;
        padding-left: 0.5rem;
        border-left: 4px solid #FFBB00;
    }
}



/*main===============================*/
#main_wrap {
    max-width: 1260px;
    margin: 60px auto 0;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
}

#main_wrap.toppage {
    display: block;
}

@media screen and (max-width:1260px) {
    #main_wrap {
        max-width: 940px;
        padding: 0;
        display: block;

    }

}

@media screen and (max-width:768px) {
    #main_wrap {
        width: auto;
        margin: 30px 1rem 0;

    }
}

/*メインイメージ*/

#main_img_wrap {
    margin-top: 6px;
    position: relative;
}

@media screen and (min-width:1441px) {
    #main_img_wrap .main_img {
        height: 640px;
    }
}

@media screen and (min-width:769px) and (max-width:1440px) {
    #main_img_wrap .main_img {
        height: 400px;
    }
}

#main_img_wrap .main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#main_img_wrap .main_catchcopy {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    padding: 17px 0 0 130px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    z-index: 30;
    font-size: 28px;
    line-height: 1.5em;
}

#main_img_wrap .main_catchcopy:before {
    content: "";
    width: 105px;
    height: 120px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/icon/main_img_title_head.svg);
    background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
    #main_img_wrap {
        margin-top: 3px;
    }

    #main_img_wrap .main_catchcopy {
        position: relative;
        width: 100%;
        height: ;
        background: none;
        z-index: 30;
    }

    #main_img_wrap .main_catchcopy {
        position: relative;
        height: auto;
        min-height: 86px;
        padding: 10px 0 0 58px;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.7);
        font-size: 4.8vw;
        line-height: 1.5em;
    }

    #main_img_wrap .main_catchcopy:before {
        width: 51px;
        height: 86px;
        background-image: url(../images/icon/main_img_title_head_sp.svg);
        background-repeat: no-repeat;
    }
}

/*footer===============================*/
#glo_footer {
    min-width: 1024px;
}

#glo_footer .footer_inner {
    margin-top: 200px;
    padding-top: 40px;
    background: #f9f9f9;
}

@media screen and (max-width:768px) {
    #glo_footer {
        min-width: auto;
    }

    #glo_footer .footer_inner {
        margin-top: 100px;
        padding-top: 24px;
    }
}

/*フッタバナー*/
#glo_footer .footer_banner_list {
    display: flex;
    justify-content: center;
    margin: 0 auto 48px;
    padding: 0 7px 40px;
    border-bottom: 1px solid #ccc;
    max-width: 1284px;
}

#glo_footer .footer_banner_list li {
    width: 240px;
    margin: 0 7px;
}

@media screen and (max-width:768px) {
    #glo_footer .footer_banner_list {
        justify-content: space-between;
        flex-wrap: wrap;
        width: calc(100% - 56px);
        margin: 0 auto 30px;
        padding: 0 0 30px;
    }

    #glo_footer .footer_banner_list li {
        width: calc(50% - 4px);
        margin: 4px 0;
    }
}

/*フッタ住所*/
#glo_footer .footer_access h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 28px;
}

#glo_footer .footer_address_wrap {
    position: relative;
    width: 740px;
    height: 120px;
    margin: 28px auto;
}


#glo_footer .footer_address_wrap .thumb {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    overflow: hidden;
    border: 3px solid #fff;
    box-sizing: border-box;
}

#glo_footer .footer_address_wrap .address {
    position: absolute;
    top: calc(60px - 0.875em);
    left: 140px;
    margin: auto;
    font-size: 18px;
    line-height: 1.75em;
}

#glo_footer .footer_address_wrap .button {
    position: absolute;
    right: 0;
    top: 42px;
}

@media screen and (max-width:768px) {
    #glo_footer .footer_access h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    #glo_footer .footer_address_wrap {
        width: 100%;
        max-width: 320px;
        padding: 0 1rem;
        box-sizing: border-box;
        height: 135px;
        margin: 0 auto 32px;
    }

    #glo_footer .footer_address_wrap .thumb {
        width: 84px;
        height: 84px;
        border-radius: 46px;
    }

    #glo_footer .footer_address_wrap .address {
        position: absolute;
        top: calc(42px - 1.75em);
        left: 114px;
        margin: auto;
        font-size: 12px;
    }

    #glo_footer .footer_address_wrap .button {
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
    }
}

/*フッタのボタン*/
#glo_footer .footer_button_wrap {
    width: 996px;
    height: 110px;
    margin: 0 auto 48px;
    position: relative;
}

#glo_footer .footer_button_wrap .btn2 {
    position: absolute;
    top: 0;
    left: 376px;
}

#glo_footer .footer_button_wrap .btn3 {
    position: absolute;
    top: 0;
    right: 0;
}

#glo_footer .footer_button_wrap .btn4 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (max-width:768px) {
    #glo_footer .footer_button_wrap {
        width: auto;
        height: auto;
        margin: 0 28px 48px;
        position: relative;
    }

    #glo_footer .footer_button_wrap .button {
        margin: 15px auto;
    }

    #glo_footer .footer_button_wrap .btn2 {
        position: static;
        top: auto;
        left: auto;
    }

    #glo_footer .footer_button_wrap .btn3 {
        position: static;
        top: auto;
        right: auto;
    }

    #glo_footer .footer_button_wrap .btn4 {
        position: static;
        bottom: auto;
        right: auto;
    }
}

/*フッタお問い合わせ*/

.footer_otoiawase_wrap {
    padding: 30px 0;
    background-color: #fff;

}

.footer_otoiawase_wrap .footer_otoiawase_inner {
    width: 996px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.footer_otoiawase_wrap .footer_otoiawase_inner h4 {
    font-size: 20px;
}

.footer_otoiawase_wrap .footer_otoiawase_inner .tel a {
    font-size: 48px;
    color: #0073CC;
    margin: 0 24px;
}

.footer_otoiawase_wrap .footer_otoiawase_inner .tel a span {
    padding-left: 32px;
    position: relative;
}

.footer_otoiawase_wrap .footer_otoiawase_inner .tel a span:before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icon/icon_tel.svg);
    width: 28px;
    height: 28px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;

}

@media screen and (max-width:768px) {
    .footer_otoiawase_wrap {
        padding: 38px 0 40px;
        background-color: #fff;

    }

    .footer_otoiawase_wrap .footer_otoiawase_inner {
        width: auto;
        margin: 0 28px;
        display: flex;
        flex-direction: column;
    }

    .footer_otoiawase_wrap .footer_otoiawase_inner h4 {
        font-size: 18px;
        margin-bottom: 26px;
    }

    .footer_otoiawase_wrap .footer_otoiawase_inner .tel {
        width: 100%;
    }

    .footer_otoiawase_wrap .footer_otoiawase_inner .tel a {
        display: block;
        font-size: 24px;
        width: 100%;
        background-color: #0073CC;
        margin: 0 0 20px;
        position: relative;
        color: #fff;
        text-align: center;
        padding: 18px 0;
        border-radius: 12px;
        box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.2);
    }

    .footer_otoiawase_wrap .footer_otoiawase_inner .tel a span {
        padding-left: 24px;
    }

    .footer_otoiawase_wrap .footer_otoiawase_inner .tel a span:before {

        background-image: url(../images/icon/icon_tel_white.svg);
        width: 18px;
        height: 18px;

    }
}

/*フッターサイトマップ*/
.footer_sitemap_wrap {
    display: flex;
}

.footer_sitemap_wrap .footer_sitemap_box {
    width: 20%;
    height: 480px;
    box-sizing: border-box;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 36px 0 0 32px;
}

.footer_sitemap_wrap .footer_sitemap_box:last-child {
    border-right: none;
}

.footer_sitemap_wrap .footer_sitemap_box h5 span {
    font-weight: bold;
    display: inline-block;
    position: relative;
    padding-left: 18px;
}

.footer_sitemap_wrap .footer_sitemap_box h5 span:before {
    display: block;
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;

    background-image: url(../images/icon/icon_sikaku_sankaku.svg);

}

.footer_sitemap_wrap .footer_sitemap_box ul {
    margin: 24px 0;
}

.footer_sitemap_wrap .footer_sitemap_box ul li {
    padding: 0 0 0 18px;
    line-height: 1.6em;
    margin: 0.4rem 0;
    position: relative;
}

.footer_sitemap_wrap .footer_sitemap_box ul li.third {
    padding: 0 0 0 36px;
}

.footer_sitemap_wrap .footer_sitemap_box ul li:before {
    display: block;
    position: absolute;
    content: "";
    width: 13px;
    height: 13px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-position: center center;
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-image: url(../images/icon/icon_sankaku.svg);

}

.footer_sitemap_wrap .footer_sitemap_box ul li.third:before {
    left: 18px;
}

.footer_sitemap_wrap .footer_sitemap_box ul li a {
    font-size: 13px;
    color: #000;
}

@media screen and (max-width:768px) {
    .footer_sitemap_wrap {
        display: flex;
        flex-direction: column;
    }

    .footer_sitemap_wrap .footer_sitemap_box {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        border-top: none;
        border-right: none;
        padding: 0;
    }

    .footer_sitemap_wrap .footer_sitemap_box h5 {
        padding: 16px 25px;
    }

    .footer_sitemap_wrap .footer_sitemap_box h5 span:before {
        width: 14px;
        height: 14px;
    }

    .footer_sitemap_wrap .footer_sitemap_box ul {
        margin: 0;
        padding: 9px 25px;
        background-color: #eee;
    }

    .footer_sitemap_wrap .footer_sitemap_box ul li a {
        font-size: 14px;
        display: block;
        padding: 0.5rem 0;
    }

    .footer_sitemap_wrap .footer_sitemap_box h5 span:before {
        background-image: url(../images/icon/icon_sikaku_plus.svg);

    }

    /*アコーティオン*/
    h5.aco_title {}

    h5.aco_title.selected span:before {
        background-image: url(../images/icon/icon_sikaku_minus.svg);

    }

    ul.aco_box {
        display: none;
    }

}

/*フッタコピーライト*/

.footer_copyright {
    background-color: #eee;
    padding: 90px 0 100px;
    text-align: center;
    font-size: 12px;
}

.footer_logo {
    width: 177px;
    margin: 12px auto 36px;
}

.footer_copyright p {
    letter-spacing: 0.04em;
}

.footer_copyright p.copyright {
    letter-spacing: 0.02em;
}

@media screen and (max-width:768px) {
    .footer_copyright {
        padding: 40px 0 46px;
    }

    .footer_logo {
        width: 155px;
        margin: 11px auto 17px;
    }
}
