@charset "UTF-8";

@media all and (min-width: 681px) {
    body {
        min-width: 1200px;
    }
}

/* ヘッダーエリア
***************************************************************/
.head {
    position: fixed;
    z-index: 2222;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    transition: background 0.3s ease;
}

.head .inner {
    width: 1200px;
    height: 100%;
    margin: 0 auto 0 50px;
    position: relative;
    display: flex;
}

.head .siteID {
    height: 100%;
}

.head .siteID a {
    width: 218px;
    height: 100%;
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.head .siteID img {
    width: 100%;
}

/* gNav */
.head .gNav {
    height: 100%;
}

.head .gNav .ul1 {
    display: flex;
    height: 100%;
    padding-left: 20px;
}

.head .gNav .ul1>.li1 {
    height: 100%;
    position: relative;
}

.head .gNav .ul1>.li1 .link1 {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    color: #1D211E;
    position: relative;
}

.head .gNav .ul1>.li1 .dl1 {
    height: 100%;
}

.head .gNav .ul1>.li1 .dl1 .link1 {
    cursor: default;
}

.head .gNav .subNav {
    width: 220px;
    position: absolute;
    top: 100%;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.head .gNav .subNav.subNav2 {
    width: 290px;
}

.head .gNav .subNav .ul2 {
    background-color: #fff;
    position: relative;
    left: 0;
    top: -300px;
    transition: top 0.3s ease-in-out;
}

.head .gNav .subNav .ul2 .li2+.li2 {
    border-top: 1px solid #C4C4C4;
}

.head .gNav .subNav .ul2 .li2 a {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    background: #F5F5F5;
}

.head .gNav .subNav .ul2 .li3+.li3 {
    border-top: 1px solid #C4C4C4;
}

.head .gNav .subNav .ul2 .li3 a {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 32px;
    font-size: 14px;
    background: #DEDEDE;
    letter-spacing: 0;
    position: relative;
}

.head .gNav .subNav .ul2 .li3 a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 14px;
    background-image: url(../../img/common/ico_border.svg);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 18px;
    top: 10px;
}

@media all and (min-width: 681px) {
    .head .siteID a:hover {
        opacity: 0.6;
    }

    /* gNav */
    .head .gNav .ul1>.li1 dt.link1 {
        pointer-events: none;
    }

    .head .gNav .ul1>.li1 .link1::after {
        content: "";
        width: 0;
        height: 4px;
        background-color: #777;
        position: absolute;
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
    }

    .head .gNav .ul1>.li1:hover .link1::after,
    .head .gNav .ul1>.li1.current .link1::after {
        width: 100%;
    }

    .head .gNav .li1:hover .subNav {
        pointer-events: auto;
    }

    .head .gNav .li1:hover .subNav .ul2 {
        top: 0;
    }

    .head .gNav .subNav .ul2 .li2 a:hover {
        background-color: #C4C4C4;
    }

    .head .gNav .subNav .ul2 .li3 a:hover {
        background-color: #C4C4C4;
    }
}

@media all and (min-width: 681px) and (max-width: 1399px) {
    .head .gNav .ul1>.li1 .link1 {
        padding: 0 15px;
        font-size: 14px;
    }
}

@media all and (min-width: 681px) and (max-width: 1199px) {
    .head .gNav .ul1>.li1 .link1 {
        padding: 0 10px;
        font-size: 14px;
    }
}

@media all and (min-width: 681px) and (max-width: 999px) {
    .head .gNav .ul1>.li1 .link1 {
        padding: 0 8px;
        font-size: 12px;
    }
}

@media all and (max-width:680px) {
    body.open {
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .head {
        height: 60px;
    }

    .open .head {
        background-color: rgba(255, 255, 255, 1);
    }

    .head .inner {
        width: 100%;
        margin: 0 auto;
    }

    .head .siteID a {
        width: 170px;
        padding: 0 14px;
    }

    /* gNav */
    .head .gNav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        overflow: auto;
        padding: 0 34px 60px;
        background-color: rgba(255, 255, 255, 1);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, background 0.3s ease;
    }

    .open .head .gNav {
        opacity: 1;
        pointer-events: auto;
    }

    .head .gNav .ul1 {
        display: block;
        height: auto;
        padding-left: 0;
        border-bottom: 1px solid #A0A29E;
    }

    .head .gNav .ul1>.li1 {
        height: auto;
    }

    .head .gNav .ul1>.li1+.li1 {
        border-top: 1px solid #A0A29E;
    }

    .head .gNav .ul1>.li1 .link1 {
        height: auto;
        padding: 13px 5px;
        font-size: 14px;
        text-align: left;
        display: block;
    }

    .head .gNav .ul1>.li1 .dl1 {
        height: auto;
    }

    .head .gNav .ul1>.li1 .dl1 .link1::before,
    .head .gNav .ul1>.li1 .dl1 .link1::after {
        content: "";
        width: 1px;
        height: 12px;
        background-color: #777;
        border-radius: 10px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto;
        transition: 0.3s ease;
    }

    .head .gNav .ul1>.li1 .dl1 .link1::after {
        transform: rotate(90deg);
    }

    .head .gNav .ul1>.li1 .dl1 .link1.on::before {
        transform: rotate(90deg);
    }

    .head .gNav .ul1>.li1 .dl1 .link1.on::after {
        opacity: 0;
    }

    .head .gNav .subNav {
        width: 100%;
        position: static;
        display: none;
    }

    .open .head .gNav .subNav {
        pointer-events: auto;
    }

    .head .gNav .subNav .ul2 {
        background-color: #E7EAE9;
        position: static;
    }

    .head .gNav .subNav .ul2 .li2 a {
        padding: 5px 10px;
        font-size: 13px;
    }

    .head .gNav .subNav .ul2 .li3 a {
        padding: 5px 10px 5px 20px;
        font-size: 13px;
    }

    .head .gNav .subNav .ul2 .li3 a::before {
        width: 8px;
        height: 10px;
        top: 8px;
        left: 10px;
    }

    .head .gNav .privacyLink a {
        display: block;
        font-size: 12px;
        text-align: center;
        padding: 20px 0;
    }

    /* h_conversionSP */
    .h_conversionSP {
        margin-top: 20px;
    }

    .h_conversionSP>li {
        width: 100%;
    }

    .h_conversionSP>li+li {
        margin-top: 12px;
    }

    .h_conversionSP a {
        width: 100%;
        font-size: 12.5px;
        letter-spacing: 0.05em;
        height: 50px;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        font-weight: 500;
        text-align: center;
        line-height: 1.23;
    }

    .h_conversionSP .li1 a {
        background-color: #E7EAE9;
    }

    .h_conversionSP .li2 a {
        background-color: #D6D6D6;
    }

    .h_conversionSP .li4 a {
        background-color: #C4C4C4;
    }

    .h_conversionSP a .in {
        width: auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 27px;
        position: relative;
    }

    .h_conversionSP a .in::after {
        content: "";
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    .h_conversionSP .li1 a .in::after {
        background-image: url(../../img/common/ico_event01.svg);
        width: 18.5px;
        height: 18px;
        left: 3px;
    }

    .h_conversionSP .li2 a .in::after {
        background-image: url(../../img/common/ico_contact01.svg);
        width: 21px;
        height: 15px;
        left: -3px;
    }

    .h_conversionSP .li4 a .in::after {
        background-image: url(../../img/common/ico_owner01.svg);
        width: 30px;
        height: 26px;
        left: -10px;
    }

    /* toggleBtn */
    .toggleBtn {
        width: 55px;
        height: 100%;
        padding: 0 14px;
        position: absolute;
        top: 0;
        right: 0;
    }

    .toggleBtn p {
        position: relative;
        height: 100%;
    }

    .toggleBtn p span,
    .toggleBtn p::before,
    .toggleBtn p::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #777;
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }

    .toggleBtn p span {
        transform: translateY(-50%);
    }

    .toggleBtn p::before {
        transform: translateY(-8px) rotate(0deg);
    }

    .toggleBtn p::after {
        transform: translateY(6px) rotate(0deg);
    }

    .open .toggleBtn p span {
        opacity: 0;
    }

    .open .toggleBtn p::before {
        transform: translateY(-50%) rotate(-45deg);
    }

    .open .toggleBtn p::after {
        bottom: 0;
        transform: translateY(-50%) rotate(45deg);
    }
}

@media all and (max-width:370px) {}

/* コンバージョンエリア
***************************************************************/
.h_conversion {
    position: fixed;
    z-index: 3333;
    top: 0;
    right: 0;
    display: flex;
    height: 80px;
}

.h_conversion li {
    height: 100%;
}

.h_conversion a {
    width: 105px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
    line-height: 1.23;
}

.h_conversion .li2 a {
    background-color: #E7EAE9;
}

.h_conversion .li3 a {
    background-color: #D6D6D6;
}

.h_conversion .li4 a {
    background-color: #C4C4C4;
}

.h_conversion a::after {
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.h_conversion a .in {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h_conversion .li2 a::after {
    background-image: url(../../img/common/ico_event01.svg);
    width: 18.5px;
    height: 18px;
    top: 20px;
}

.h_conversion .li3 a::after {
    background-image: url(../../img/common/ico_contact01.svg);
    width: 21px;
    height: 15px;
    top: 18px;
}

.h_conversion .li4 a::after {
    background-image: url(../../img/common/ico_owner01.svg);
    width: 30px;
    height: 26px;
    top: 10px;
}

@media all and (min-width: 681px) and (max-width: 999px) {
    .h_conversion a {
        width: 90px;
        font-size: 12px;
        letter-spacing: 0;
    }
}

@media all and (min-width: 681px) {
    .h_conversion li a:hover {
        background-color: #5B5E62;
        color: #fff;
    }

    .h_conversion li a:hover::after {
        border-color: #fff;
    }

    .h_conversion li a::after {
        /* transition: background-image 0.3s ease; */
    }

    .h_conversion li.li2 a:hover::after {
        background-image: url(../../img/common/ico_event01_w.svg);
    }

    .h_conversion li.li3 a:hover::after {
        background-image: url(../../img/common/ico_contact01_w.svg);
    }

    .h_conversion li.li4 a:hover::after {
        background-image: url(../../img/common/ico_owner01_w.svg);
    }
}

@media all and (max-width:680px) {
    .h_conversion {
        z-index: 1111;
        top: auto;
        right: auto;
        bottom: -100px;
        left: 0;
        width: 100%;
        height: 54px;
        padding: 0 12px 12px;
        transition: bottom 0.3s ease;
    }

    .pageScroll .h_conversion {
        bottom: 0;
    }

    .h_conversion.type__02 li:nth-child(2) {
        width: 90%;
    }

    .open .h_conversion {
        bottom: -54px;
    }

    .h_conversion>li {
        width: 42px;
    }

    .h_conversion a {
        width: 100%;
        font-size: 12.5px;
        letter-spacing: 0.05em;
    }

    .h_conversion .li1 a {
        background-color: #333;
    }

    .h_conversion .li2,
    .h_conversion .li3 {
        width: calc((100% - 42px) / 2);
    }

    .h_conversion .li1 a::after {
        background-image: url(../../img/common/ico_tel01_w.svg);
        width: 20px;
        height: 20px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    .h_conversion .li2 a {
        background: #e4e4e4;
    }

    .h_conversion .li2 a::after,
    .h_conversion .li3 a::after {
        display: none;
    }

    .h_conversion a .in {
        width: auto;
        height: 100%;
        padding-left: 27px;
        position: relative;
    }

    .h_conversion a .in::after {
        content: "";
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }

    .h_conversion .li2 a .in::after {
        background-image: url(../../img/common/ico_event01.svg);
        width: 18.5px;
        height: 18px;
        left: 3px;
    }

    .h_conversion .li3 a .in::after {
        background-image: url(../../img/common/ico_contact01.svg);
        width: 21px;
        height: 15px;
    }
}

@media all and (max-width:370px) {}

/* main
***************************************************************/
.main {
    padding-top: 80px;
}

@media all and (min-width: 681px) {}

@media all and (max-width:680px) {
    .main {
        padding-top: 60px;
    }
}

@media all and (max-width:370px) {}

/* ヘッダー
***************************************************************/
@media all and (min-width: 681px) {}

@media all and (max-width:680px) {}

@media all and (max-width:370px) {}