@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #000;
    line-height: 1.5;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: #FFF;
    overflow: hidden;
}

@media (min-width: 768px) {
    body {
        min-width: 1200px;
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 1.4rem;
    }
}

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

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: #000;
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .contents_wrap {
        padding-top: 135px;
        transition: 0.3s ease-in-out;
    }

    .is_page_scroll .contents_wrap {
        padding-top: 75px;
    }
}

@media (max-width: 767px) {
    .contents_wrap {
        padding-top: 65px;
    }
}

/* ---------------------------------------------------- */
/* header */
/* ---------------------------------------------------- */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #FFF;
    z-index: 100;
}

header .header_inner {
    position: relative;
    margin: 0 auto;
    min-width: 1200px;
    height: 135px;
    transition: 0.3s ease-in-out;
}

header .site_logo {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

header .site_logo a {
    display: block;
    width: 200px;
}

header .site_copy {
    position: absolute;
    right: 190px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.15em;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

.is_page_scroll header .site_copy {
    pointer-events: none;
    opacity: 0;
}

header .nav_h_wrap {
    position: absolute;
    right: 190px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.is_page_scroll header .nav_h_wrap {
    pointer-events: all;
    opacity: 1;
}

header .nav_h_wrap>ul {
    display: flex;
}

header .nav_h_wrap>ul>li {
    position: relative;
}

header .nav_h_wrap>ul>li+li {
    margin-left: 20px;
    padding-left: 20px;
}

header .nav_h_wrap>ul>li+li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
}

header .nav_h_wrap a {
    letter-spacing: 0.15em;
    line-height: 1;
}

header .btn_toggle_menu {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 135px;
    height: 100%;
    background-color: #000;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    z-index: 110;
    transition: 0.3s ease-in-out;
}

header .btn_toggle_menu.is_show {
    background-color: transparent;
}

header .btn_toggle_menu div {
    position: relative;
    width: 30px;
    height: 90%;
    transform: translateY(-10%);
    transition: 0.3s ease-in-out;
}

header .btn_toggle_menu div::after {
    content: "MENU";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 18px);
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    transition: 0.3s ease-in-out;
}

header .btn_toggle_menu.is_show div::after {
    opacity: 0;
}

header .btn_toggle_menu div>span:before,
header .btn_toggle_menu div>span:after,
header .btn_toggle_menu div>span>span {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transform-origin: center center;
    transition: 0.3s ease-in-out;
}

header .btn_toggle_menu div>span:before {
    transform: translateY(-10px);
}

header .btn_toggle_menu div>span:after {
    transform: translateY(9px);
}

header .btn_toggle_menu div>span>span {
    transform: translateY(-1px);
}

header .btn_toggle_menu.is_show div>span:before {
    transform: translateY(-50%) rotate(-45deg);
}

header .btn_toggle_menu.is_show div>span:after {
    bottom: 0;
    transform: translateY(-50%) rotate(45deg);
}

header .btn_toggle_menu.is_show div>span>span {
    opacity: 0;
}

header .toggle_wrap {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #b4b4b4;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 100;
}

header .toggle_wrap .toggle_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header .toggle_wrap .logo {
    position: absolute;
    left: 30px;
    top: 48px;
    display: block;
    width: 200px;
}

header .toggle_wrap .clms_wrap {
    display: flex;
    justify-content: space-between;
    width: 1100px;
}

header .toggle_wrap .clms_wrap>.clm_wrap:nth-of-type(1) {
    flex: none;
    width: 200px;
    border-right: 1px solid #FFF;
}

header .toggle_wrap .clms_wrap>.clm_wrap:nth-of-type(2) {
    flex: none;
    width: 595px;
}

header .toggle_wrap .clms_wrap>.clm_wrap:nth-of-type(3) {
    flex: none;
    width: 220px;
}

header .toggle_wrap .nav_hs_wrap>ul>li+li {
    margin-top: 30px;
}

header .toggle_wrap .nav_hs_wrap a {
    display: block;
    color: #FFF;
    letter-spacing: 0.15em;
    line-height: 1;
}

header .toggle_wrap .nav_hs_wrap a span {
    display: block;
}

header .toggle_wrap .nav_hs_wrap a .ja {
    font-size: 2.0rem;
}

header .toggle_wrap .nav_hs_wrap a .en {
    margin-top: 10px;
    color: #b4b4b4;
    font-size: 1.2rem;
}

header .toggle_wrap .contact_wrap .name {
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 700;
}

header .toggle_wrap .contact_wrap .address {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

header .toggle_wrap .contact_wrap .ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #FFF;
    font-size: 1.1rem;
}

header .toggle_wrap .contact_wrap .ttl::before,
header .toggle_wrap .contact_wrap .ttl::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #FFF;
}

header .toggle_wrap .contact_wrap .btn_tel {
    display: block;
    margin-bottom: 40px;
    color: #FFF;
    font-size: 3.2rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
}

header .toggle_wrap .contact_wrap .time {
    font-size: 1.1rem;
}

header .toggle_wrap .contact_wrap .btn_mail {
    margin-bottom: 40px;
}

header .toggle_wrap .brand_wrap .ttl {
    margin-bottom: 20px;
    font-size: 2.0rem;
    line-height: 1;
}

header .toggle_wrap .brand_wrap .list>ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-bottom: -15px;
}

header .toggle_wrap .brand_wrap .list>ul>li {
    margin-left: 10px;
    margin-bottom: 15px;
    width: calc((100% - 40px)/4);
}

header .toggle_wrap .brand_wrap .list a {
    display: block;
    color: #b4b4b4;
}

header .toggle_wrap .brand_wrap .list .img {
    margin-bottom: 10px;
    background-color: #FFF;
    border: 1px solid #FFF;
    transition: 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

header .toggle_wrap .brand_wrap .list .name {
    position: relative;
    font-size: 1.2rem;
    text-align: center;
}

header .toggle_wrap .brand_wrap .list .name::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #b4b4b4;
    border-right: 2px solid #b4b4b4;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease-in-out;
}

header .toggle_wrap .nav_sns_wrap {
    margin-top: 40px;
}

header .toggle_wrap .nav_sns_wrap>ul {
    display: flex;
}

header .toggle_wrap .nav_sns_wrap>ul>li+li {
    margin-left: 10px;
}

header .toggle_wrap .nav_sns_wrap a {
    display: block;
    width: 24px;
}

header .toggle_wrap .copyright {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    color: #b4b4b4;
    font-size: 1.2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .is_page_scroll header .header_inner {
        height: 75px;
    }

    header .nav_h_wrap a:hover {
        color: #b4b4b4;
    }

    header .btn_toggle_menu:hover {
        background-color: #5e5e5e !important;
    }

    header .btn_toggle_menu.is_show div {
        transform: translateY(0);
    }

    header .toggle_wrap .nav_hs_wrap a:hover {
        color: #b4b4b4;
    }

    header .toggle_wrap .contact_wrap a:hover {
        background-color: #b4b4b4;
    }

    header .toggle_wrap .contact_wrap .btn_tel {
        pointer-events: none;
    }

    header .toggle_wrap .brand_wrap .list a:hover {
        color: #FFF;
    }

    header .toggle_wrap .brand_wrap .list a:hover .img {
        opacity: 0.6;
    }

    header .toggle_wrap .brand_wrap .list a:hover .name::after {
        border-color: #FFF;
    }

    .is_page_scroll header .toggle_wrap .logo {
        top: 18px;
    }

}

@media (max-width: 767px) {
    header .header_inner {
        min-width: auto;
        height: 65px;
    }

    header .site_logo {
        left: 25px;
    }

    header .site_logo a {
        display: block;
        width: 130px;
    }

    header .site_copy {
        display: none;
    }

    header .nav_h_wrap {
        display: none;
    }

    header .btn_toggle_menu {
        width: 65px;
    }

    header .btn_toggle_menu div {
        height: 100%;
        transform: translateY(0);
    }

    header .btn_toggle_menu div::after {
        display: none;
    }

    header .toggle_wrap .toggle_inner {
        display: block;
        padding-top: 90px;
        padding-bottom: 10px;
        height: auto;
    }

    header .toggle_wrap .logo {
        left: 25px;
        top: 20px;
        width: 130px;
    }

    header .toggle_wrap .clms_wrap {
        display: block;
        width: auto;
    }

    header .toggle_wrap .clms_wrap>.clm_wrap:nth-of-type(1) {
        width: auto;
        border-right: none;
    }

    header .toggle_wrap .clms_wrap>.clm_wrap:nth-of-type(2) {
        display: none;
    }

    header .toggle_wrap .clms_wrap>.clm_wrap:nth-of-type(3) {
        margin: 45px auto 30px;
        width: 230px;
    }

    header .toggle_wrap .nav_hs_wrap>ul>li+li {
        margin-top: 25px;
    }

    header .toggle_wrap .nav_hs_wrap a {
        text-align: center;
    }

    header .toggle_wrap .nav_hs_wrap a .ja {
        font-size: 1.6rem;
    }

    header .toggle_wrap .contact_wrap .name {
        display: none;
    }

    header .toggle_wrap .contact_wrap .address {
        display: none;
    }

    header .toggle_wrap .contact_wrap .ttl {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        color: #FFF;
        font-size: 1.1rem;
    }

    header .toggle_wrap .contact_wrap .ttl::before,
    header .toggle_wrap .contact_wrap .ttl::after {
        content: "";
        display: block;
        width: 30px;
        height: 1px;
        background-color: #FFF;
    }

    header .toggle_wrap .contact_wrap .btn_tel {
        display: block;
        margin-bottom: 10px;
        color: #FFF;
        font-size: 3.2rem;
        font-weight: 200;
        line-height: 1;
        letter-spacing: 0.1em;
        text-align: center;
    }

    header .toggle_wrap .contact_wrap .time {
        margin-bottom: 20px;
        color: #FFF;
        font-size: 1.1rem;
        text-align: center;
    }

    header .toggle_wrap .contact_wrap .btn_mail {
        margin-bottom: 0;
    }

    header .toggle_wrap .nav_sns_wrap {
        margin-top: 20px;
    }

    header .toggle_wrap .nav_sns_wrap>ul {
        justify-content: center;
    }

    header .toggle_wrap .copyright {
        position: static;
        bottom: 10px;
        font-size: 1.1rem;
    }
}

/* ---------------------------------------------------- */
/* footer */
/* ---------------------------------------------------- */
footer {
    position: relative;
    padding-top: 70px;
    padding-bottom: 20px;
    color: #b4b4b4;
    background-color: #000;
}

footer .footer_inner {
    position: relative;
    margin: 0 auto;
    width: 970px;
}

footer a {
    color: #b4b4b4;
}

footer .site_logo {
    display: block;
    margin: 0 auto 60px;
    width: 300px;
}

footer .nav_f_wrap {
    margin-bottom: 60px;
}

footer .nav_f_wrap>ul {
    display: flex;
    justify-content: space-between;
}

footer .nav_f_wrap a {
    line-height: 1;
}

footer .clms_wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

footer .clms_wrap>.clm_wrap:nth-of-type(1) {
    flex: none;
    width: 250px;
}

footer .clms_wrap>.clm_wrap:nth-of-type(2) {
    flex: none;
    width: 640px;
}

footer .contact_wrap .name {
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 700;
}

footer .contact_wrap .address {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

footer .contact_wrap .ttl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

footer .contact_wrap .ttl::before,
footer .contact_wrap .ttl::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #b4b4b4;
}

footer .contact_wrap .btn_tel {
    display: block;
    margin-bottom: 10px;
    font-size: 3.7rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
}

footer .contact_wrap .time {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
}

footer .brand_wrap .ttl {
    margin-bottom: 20px;
    font-size: 2.0rem;
    line-height: 1;
}

footer .brand_wrap .list>ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-bottom: -15px;
}

footer .brand_wrap .list>ul>li {
    margin-left: 8px;
    margin-bottom: 15px;
    width: 154px;
}

footer .brand_wrap .list a {
    display: block;
}

footer .brand_wrap .list .img {
    margin-bottom: 10px;
    background-color: #FFF;
    border: 1px solid #FFF;
    transition: 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

footer .brand_wrap .list .name {
    position: relative;
    font-size: 1.2rem;
    text-align: center;
}

footer .brand_wrap .list .name::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #b4b4b4;
    border-right: 2px solid #b4b4b4;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease-in-out;
}

footer .btn_pagetop {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: block;
    width: 74px;
    height: 74px;
    border: 1px solid #b4b4b4;
    z-index: 10;
}

footer .btn_pagetop::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    border-top: 2px solid #b4b4b4;
    border-right: 2px solid #b4b4b4;
    transform: translate(-50%, -4px) rotate(-45deg);
    transition: 0.3s ease-in-out;
}

footer .copyright {
    font-size: 1.2rem;
    text-align: center;
}

@media (min-width: 768px) {
    footer a:hover {
        color: #FFF;
    }

    footer .contact_wrap .btn_tel {
        pointer-events: none;
    }

    footer .brand_wrap .list a:hover .img {
        opacity: 0.6;
    }

    footer .brand_wrap .list a:hover .name::after {
        border-color: #FFF;
    }

    footer .btn_pagetop:hover {
        background-color: #b4b4b4;
    }

    footer .btn_pagetop:hover::before {
        border-color: #FFF;
    }
}

@media (max-width: 767px) {
    footer {
        padding-top: 35px;
        padding-bottom: 15px;
    }

    footer .footer_inner {
        width: calc(100% - 70px);
    }

    footer .site_logo {
        margin: 0 auto 30px;
        width: 190px;
    }

    footer .nav_f_wrap {
        display: none;
    }

    footer .clms_wrap {
        display: block;
        margin-bottom: 40px;
    }

    footer .clms_wrap>.clm_wrap:nth-of-type(1) {
        margin-bottom: 35px;
        width: auto;
    }

    footer .clms_wrap>.clm_wrap:nth-of-type(2) {
        width: auto;
    }

    footer .contact_wrap {
        text-align: center;
    }

    footer .contact_wrap .name {
        margin-bottom: 0;
        font-size: 1.5rem;
    }

    footer .contact_wrap .address {
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    footer .contact_wrap .ttl {
        justify-content: center;
        font-size: 1.3rem;
    }

    footer .contact_wrap .ttl::before,
    footer .contact_wrap .ttl::after {
        margin: 0 8px;
        width: 30px;
    }

    footer .contact_wrap .btn_tel {
        font-size: 3.5rem;
    }

    footer .contact_wrap .time {
        margin-bottom: 10px;
    }

    footer .contact_wrap .btn_mail {
        margin: 0 auto;
    }

    footer .brand_wrap .ttl {
        margin-bottom: 15px;
        font-size: 1.8rem;
        text-align: center;
    }

    footer .brand_wrap .list>ul {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-bottom: -15px;
    }

    footer .brand_wrap .list>ul>li {
        margin-left: 15px;
        margin-bottom: 15px;
        width: calc(50% - 15px);
    }

    footer .brand_wrap .list .img {
        margin-bottom: 5px;
    }

    footer .brand_wrap .list .name::after {
        width: 8px;
        height: 8px;
    }

    footer .btn_pagetop {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
    }

    footer .btn_pagetop::before {
        width: 10px;
        height: 10px;
    }

    footer .copyright {
        font-size: 1.1rem;
        text-align: center;
    }

}
