@charset "utf-8";

/*

common.css
Version: 2025.06.08

*/

/* --------------------------------------------------------
/* .common
/* .post-password（パスワード保護時：入力フォーム）
/* .curtain-scroll（curtain-scroll.js）
/* .fadein-scroll（fadein-scroll.js）
/* .effect-scroll（effect-scroll.js）
/* .newsticker（newsticker.js）
/* .memory（その他の関連記事）
/* .related-list（関連ページリンク）
/* .campaign-appeal（キャンペーンアピール）
/* .aboutlink-list
/* .recommended-content
/* .recommend-nav
/* .recommend-link
/* .recommend-btn
/* .recommend-bnr
/* .modal-youtube
/* .suggest-link
/* .support-box
/* .lineup-bnr-list
/* .appeal-unit
/* .solution
/* .step-unit
/* .point-list
/* .reason-unit
/* .challenge-list
/* .merit-table
/* .duty-box
/* .ftr-reserve
/* .search-criteria
-------------------------------------------------------- */


/* .common
-------------------------------------------------------- */
/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    /* 電話番号リンクを無効にする */
    a[href*="tel:"] {
        color: #020202;
        text-decoration: none;
        cursor: default;
        pointer-events: none;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    /* 電話番号リンクを無効にする */
    a[href*="tel:"] {
        color: #020202;
        text-decoration: none;
        cursor: default;
        pointer-events: none;
    }
}


/* .post-password（パスワード保護時：入力フォーム）
-------------------------------------------------------- */
.post-password {
    display: flex;
    margin-bottom: 50px;

    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: flex-start;
}


/* .curtain-scroll（curtain-scroll.js）
-------------------------------------------------------- */
/* pc（1400px以上の場合に適用） */
@media (min-width: 1400px) {
    .curtain-scroll {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
    }
    .curtain-scroll::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        content: "";
    }
    .curtain-scroll::after {
        background-color: rgba(249, 153, 0, 1.0);
        transition: .8s cubic-bezier(.57, .15, .13, .97);
    }
    .curtain-scroll.show::after {
        transform: translateX(101%);
    }
}


/* .fadein-scroll（fadein-scroll.js）
-------------------------------------------------------- */
/* pc（1400px以上の場合に適用） */
@media (min-width: 1400px) {
    .fadein-scroll .fadein {
        opacity: 1;
        transition: .5s ease-in-out;
        transform: translate(0, 0);
    }
    .fadein-scroll .fadein.move {
        opacity: 0;
        transform: translate(0, 5rem);
    }

    /* transition-delay */
    .fadein-scroll .fadein:nth-of-type(1) {
        transition-delay: 0s;
    }
    .fadein-scroll .fadein:nth-of-type(2) {
        transition-delay: .5s;
    }
    .fadein-scroll .fadein:nth-of-type(3) {
        transition-delay: 1.0s;
    }
    .fadein-scroll .fadein:nth-of-type(4) {
        transition-delay: 1.5s;
    }
    .fadein-scroll .fadein:nth-of-type(5) {
        transition-delay: 2.0s;
    }
    .fadein-scroll .fadein:nth-of-type(6) {
        transition-delay: 2.5s;
    }
    .fadein-scroll .fadein:nth-of-type(7) {
        transition-delay: 3.0s;
    }
    .fadein-scroll .fadein:nth-of-type(8) {
        transition-delay: 3.5s;
    }
    .fadein-scroll .fadein:nth-of-type(9) {
        transition-delay: 4.0s;
    }
    .fadein-scroll .fadein:nth-of-type(10) {
        transition-delay: 4.5s;
    }
}


/* .effect-scroll（effect-scroll.js）
-------------------------------------------------------- */
/* pc（1400px以上の場合に適用） */
@media (min-width: 1400px) {
    /* .effect-fadein */
    .effect-scroll .effect.effect-fadein {
        opacity: 0;
        transition: all ease .3s;
        transform: translate(-30px, 30px);
    }
    .effect-scroll .effect.effect-fadein.on {
        opacity: 1;
        transform: translate(0, 0);
    }

    /* .effect-fadeinzoom */
    .effect-scroll .effect.effect-fadeinzoom {
        opacity: 0;
        transition: opacity 1s linear, transform .5s linear .1s;
        transform: scale3d(.98, .98, .98);
    }
    .effect-scroll .effect.effect-fadeinzoom.on {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }

    /* .effect-fadeinspin */
    .effect-scroll .effect.effect-fadeinspin {
        opacity: 0;
        transition: all ease 1s;
        transform: rotateY(90deg);
    }
    .effect-scroll .effect.effect-fadeinspin.on {
        opacity: 1;
        transform: rotateY(0deg);
        transform: translateX(0);
    }

    /* .effect-fadeinleft */
    .effect-scroll .effect.effect-fadeinleft {
        opacity: 0;
        transition: all ease .7s;
        transform: translateX(-50px);
    }
    .effect-scroll .effect.effect-fadeinleft.on {
        opacity: 1;
        transform: translateX(0);
    }

    /* .effect-fadeinright */
    .effect-scroll .effect.effect-fadeinright {
        opacity: 0;
        transition: all ease .7s;
        transform: translateX(50px);
    }
    .effect-scroll .effect.effect-fadeinright.on {
        opacity: 1;
        transform: translateX(0px);
    }

    /* .effect-fadeinup */
    .effect-scroll .effect.effect-fadeinup {
        opacity: 0;
        transition: all ease 1s;
        transform: translateY(50px);
    }
    .effect-scroll .effect.effect-fadeinup.on {
        opacity: 1;
        transform: translateY(0);
    }

    /* transition-delay */
    .effect-scroll .effect:nth-of-type(1) {
        transition-delay: 0s;
    }
    .effect-scroll .effect:nth-of-type(2) {
        transition-delay: .2s;
    }
    .effect-scroll .effect:nth-of-type(3) {
        transition-delay: .6s;
    }
    .effect-scroll .effect:nth-of-type(4) {
        transition-delay: 1.0s;
    }
    .effect-scroll .effect:nth-of-type(5) {
        transition-delay: 1.4s;
    }
    .effect-scroll .effect:nth-of-type(6) {
        transition-delay: 1.8s;
    }
    .effect-scroll .effect:nth-of-type(7) {
        transition-delay: 2.2s;
    }
    .effect-scroll .effect:nth-of-type(8) {
        transition-delay: 2.6s;
    }
    .effect-scroll .effect:nth-of-type(9) {
        transition-delay: 3.0s;
    }
    .effect-scroll .effect:nth-of-type(10) {
        transition-delay: 3.4s;
    }
    .effect-scroll .effect:nth-of-type(11) {
        transition-delay: 3.8s;
    }
    .effect-scroll .effect:nth-of-type(12) {
        transition-delay: 4.2s;
    }
    .effect-scroll .effect:nth-of-type(13) {
        transition-delay: 4.6s;
    }
    .effect-scroll .effect:nth-of-type(14) {
        transition-delay: 5.0s;
    }
    .effect-scroll .effect:nth-of-type(15) {
        transition-delay: 5.4s;
    }
    .effect-scroll .effect:nth-of-type(16) {
        transition-delay: 5.8s;
    }
    .effect-scroll .effect:nth-of-type(17) {
        transition-delay: 6.2s;
    }
    .effect-scroll .effect:nth-of-type(18) {
        transition-delay: 6.6s;
    }
    .effect-scroll .effect:nth-of-type(19) {
        transition-delay: 7.0s;
    }
    .effect-scroll .effect:nth-of-type(20) {
        transition-delay: 7.4s;
    }
}


/* .newsticker（newsticker.js）
-------------------------------------------------------- */
.newsticker {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}
.newsticker ul {
    position: relative;
    width: 100%;
}
.newsticker ul li {
    display: none;
    width: 100%;
}


/* .memory（その他の関連記事）
-------------------------------------------------------- */
.memory {
    padding: 0;
}

/* .memory-ttl */
.memory-ttl {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    padding: .5em .5em .5em;
    background-color: rgba(1, 92, 172, 1);
    text-align: center;
}
/* .memory-ttl::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(-45deg, #fff 0 6px, transparent 6px 12px);
    content: "";
    opacity: .1;
} */
.memory-ttl .en {
    color: #fff;
    letter-spacing: .1em;
    font-weight: 500;
    font-size: 3.4rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.memory-ttl .ja {
    margin: 0;
    color: #fff;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.4;
}

/* .memory-list */
.memory-list {
    overflow: hidden;
}
.memory-list-item {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.memory-list-item a:hover {
    text-decoration: none;
}
.memory-list-item-img {
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin: 0 auto 13px;
    max-width: 960px;
    width: 100%;
    /* border: 1px solid #ccc9c8; */
}
.memory-list-item-cat {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 0 10px;
    min-width: 114px;
    height: auto;
    background: rgba(38, 43, 47, .75);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 3;
}
.memory-list-item-cat.open {
    background: rgba(210, 35, 60, .75);
}
.memory-list-item-cat.near {
    background: rgba(210, 35, 60, .75);
}
.memory-list-item-cat.close {
    background: rgba(38, 43, 47, .75);
}
.memory-list-item-cat.category {
    top: auto;
    bottom: 0;
    left: 0;
}
.memory-list-item-ttl {
    margin-bottom: 8px;
    text-align: left;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.8;
}
.memory-list-item-catch {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.8;
}
.memory-list-item-txt {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #be5460;
    color: #fff;
    font-size: x-small;
    line-height: 1.3;
}

/* .memory-more */
.memory-more {
    display: flex;
    margin: 40px auto 0;
    padding: 10px 20px;
    max-width: 360px;
    width: 80%;
    border: 2px solid #e5e5e5;
    background-color: transparent;
    color: #020202;
    text-align: center;
    transition: .4s;

    justify-content: space-between;
    align-items: center;
}
.memory-more span {
    padding: 0 1em;
}
.memory-more .ico {
    font-size: 1.2rem;
}
.memory-more:hover {
    border-color: #212121;
    background-color: #212121;
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .memory-list-item-img img {
        width: 100%;
        height: 100%;
        font-family: "object-fit: cover; object-position: 0 100%;"; /* IE対策 */
        transition: all .3s ease;

        -o-object-position: 0 100%;
           object-position: 0 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .memory-list-item-img:hover img {
        transform: scale(1.1);
    }
}


/* .related-list（関連ページリンク）
-------------------------------------------------------- */
.related {
    margin: 0 auto 0;
}
.related-list {
    width: 100%;
}
.related-list-item {
    border: 1px solid #e6e6e6;
    background: #fff;
}
.related-list-item a {
    display: flex;
    overflow: hidden;
    padding: 0;
    height: auto;
    text-decoration: none;

    flex-flow: column wrap;
}
.related-list-item a .img {
    position: relative;
    width: 100%;
    height: 120px;
}
.related-list-item a .img img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 0;"; /* IE対策 */

    -o-object-position: 0 0;
       object-position: 0 0;
    -o-object-fit: cover;
       object-fit: cover;
}
.related-list-item a .img-txt {
    position: absolute;
    top: 0;
    left: 0;
    padding: .5em;
    background: rgba(1, 92, 172, .97);
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}
.related-list-item a .box {
    display: flex;
    padding: .5em;
    width: 100%;

    flex-flow: column wrap;
    align-items: center;
    justify-content: space-between;
}
.related-list-item a .box-ttl {
    margin-bottom: .5em;
    color: #020202;
    font-weight: 600;
    font-size: 2.0rem;
}
.related-list-item a .box-txt {
    margin-bottom: 2em;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.6;
}
.related-list-item a .box-more {
    margin: 0 auto;
    padding: .5em 1.2em;
    border-radius: 3px;
    background: #0070c0;
    color: #fff;
    font-weight: 500;
    font-size: 1.0rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .related-list-item a {
        height: 100%;

        flex-flow: row wrap;
        align-items: center;
    }
    .related-list-item a .img {
        width: 40%;
        height: 100%;
    }
    .related-list-item a .box {
        padding: 1em 1.5em;

        flex: 1;
    }
    .related-list-item a:hover .box-ttl {
        color: #0070c0;
    }
    .related-list-item a:hover .box-txt {
        color: #0070c0;
    }
}


/* .campaign-appeal（キャンペーンアピール）
-------------------------------------------------------- */
.campaign-appeal {
    margin: 50px auto;
    padding: 0 14px;
    max-width: 1640px;
    width: 100%;
}
.campaign-appeal a {
    text-decoration: none;
}
.campaign-appeal-inner {
    display: flex;
    border: 2px solid #0070c0;

    flex-wrap: wrap;
    justify-content: space-around;
}
.campaign-appeal-txt {
    padding: 4% 4%;
    width: 100%;
    background: url(../../assets/img/common/bg_campaign-appeal.jpg) no-repeat center center;
    background-size: cover;

    justify-content: flex-start;
}
.campaign-appeal-txt .txt {
    color: #fff;
    font-weight: 500;
    font-size: 1.8rem;
}
.campaign-appeal-txt .txt span {
    background: rgba(1, 92, 172, .8);
}
.campaign-appeal-ttl {
    position: relative;
    display: flex;
    padding: 16px 6%;
    width: 100%;
    background: #0070c0;
    color: #fff;

    align-items: center;
}
.campaign-appeal-ttl::before {
    position: absolute;
    top: 50%;
    right: 22px;
    display: inline-block;
    color: #fff;
    content: "\e8a5";
    font-weight: 400;
    font-size: 1.6rem;
    font-family: "webfont";
    line-height: inherit;
    transform: translateY(-50%);
}
.campaign-appeal-ttl h3 {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.4;
}
.campaign-appeal-ttl h3 span {
    display: block;
    margin-top: .2em;
    font-size: 1.2rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .campaign-appeal {
        margin: 50px auto;
        padding: 0 20px;
    }
    .campaign-appeal-txt {
        width: calc(100% - 258px);
    }
    .campaign-appeal-ttl {
        padding: 10px 25px;
        width: 258px;
    }
}


/* .aboutlink-list
-------------------------------------------------------- */
.aboutlink-list {
    position: relative;
    display: flex;
    margin: 0;
    padding: 0;
}
.aboutlink-list-item {
    width: 50%;
}
.aboutlink-list-item a {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #000;
    transition: all .3s ease;
}
.aboutlink-list-item a .box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
}
.aboutlink-list-item a .box .box-ttl {
    color: #fff;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    font-weight: 700;
    font-size: 3.0rem;
    font-family: "Noto Sans JP", sans-serif;
}
.aboutlink-list-item a img {
    width: 100%;
    transition: all .5s ease;
}
.aboutlink-list-item a:hover img {
    opacity: .5;
    transform: scale(1.1);
}
.aboutlink-list-item.item02 a {
    height: 50%;
}

/* sp（768px未満の場合に適用） */
@media (max-width: 767.98px) {
    .aboutlink-list {
        display: inherit;
    }
    .aboutlink-list-item {
        width: 100%;
    }
    .aboutlink-list-item.item01 {
        height: 100px;
    }
    .aboutlink-list-item.item02 {
        height: 200px;
    }
    .aboutlink-list-item a .box .box-ttl {
        font-size: 2.2rem;
    }
}


/* .recommended-content
-------------------------------------------------------- */
.recommended-content {
    margin-top: 130px;
    padding: 0 14px;
    width: 100%;
}
.recommended-content-inner {
    margin: 0 auto;
    padding: 0 0;
    max-width: 480px;
    width: 100%;
    box-shadow: 7px 7px 10px rgba(0, 0, 0, .16);
    /* background: #f3f3f3; */
}
.recommended-content a {
    position: relative;
    z-index: 1;
    display: flex;
    overflow: hidden;
    padding: 15px 300px 15px 15px;
    background-color: #0070c0;
    color: #fff !important;
    text-decoration: none !important;

    justify-content: center;
    align-content: center;
}

/* .recommended-content a.realestate {
    background: url(../../assets/img/common/bg_eishinfudousan.png) no-repeat;
    background-size: cover;
} */

/* .recommended-content a.exterior {
    background: url(../../assets/img/common/bg_eishinexterior.png) no-repeat;
    background-size: cover;
} */

/* .recommended-content a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-width: 20px 20px 0 0;
    border-style: solid;
    border-color: #e60012 transparent transparent;
    content: "";
}
.recommended-content a::after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-width: 0 0 20px 20px;
    border-style: solid;
    border-color: transparent transparent #FFE000;
    content: "";
} */

.recommended-content a:hover {
    text-decoration: none !important;
    opacity: .8;
}
.recommended-content a .txt {
    margin: 0;
    padding: 0;
    text-align: center;
}
.recommended-content a .txt .en {
    display: block;
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 2.8rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.2;
}
.recommended-content a .txt .ja {
    display: block;
    letter-spacing: .05em;
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
}
.recommended-content a .img {
    position: absolute;
    right: 0;
    bottom: 0;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .recommended-content a {
        padding: 15px 110px 15px 15px;
    }
    .recommended-content a .txt .en {
        font-size: 2.6rem;
    }
    .recommended-content a .img {
        right: 0;
        max-width: 90px;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .recommended-content a {
        padding: 15px 130px 15px 15px;
    }
    .recommended-content a .txt .en {
        font-size: 3.8rem;
    }
    .recommended-content a .img {
        right: 0;
        max-width: 110px;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .recommended-content {
        padding: 0 0;
    }
    .recommended-content-inner {
        max-width: 840px;
    }
    .recommended-content a {
        padding: 45px 300px 45px 15px;
    }
    .recommended-content a .txt .en {
        font-size: 5.4rem;
    }
    .recommended-content a .txt .ja {
        font-size: 1.5rem;
    }
    .recommended-content a .img {
        right: 0;
        max-width: 280px;
    }
}


/* .recommend-nav
-------------------------------------------------------- */
.recommend-nav {
    margin: 0 auto;
    width: 80%;
}
.recommend-nav ul li {
    overflow: hidden;
    border: 1px solid #bfbfbf;
}
.recommend-nav ul li a {
    display: block;
    padding: 2px;
    /* background: #666; */
    color: #020202;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: all .5s ease;
}
.recommend-nav ul li a span {
    position: relative;
}
.recommend-nav ul li a span::after {
    position: absolute;
    top: 8px;
    right: -20px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    content: "";
    transform: rotate(45deg);
}


/* .recommend-link
-------------------------------------------------------- */
.recommend-link {
    margin: 0;
}
.recommend-link-list {
    display: flex;
    border-top: 1px solid #ddd;

    flex-wrap: wrap;
}
.recommend-link-list-item {
    position: relative;
}
.recommend-link-list-item::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    content: "";
}
.recommend-link-list-item::after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 1px;
    height: 100%;
    background: #ddd;
    content: "";
}
.recommend-link-list-item a,
.recommend-link-list-item .recommend-link-list-item-inner {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 200px;
}
.recommend-link-list-item .photo {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .5s ease;
    transform: translate(-50%, -50%);
}
.recommend-link-list-item:hover .photo {
    /* width: 85%;
    height: 80%; */
    opacity: 1;
}
.recommend-link-list-item .photo img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 100%;"; /* IE対策 */
    transition: all .5s ease;

    -o-object-position: 0 100%;
       object-position: 0 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.recommend-link-list-item:hover .photo img {
    transform: scale(1.1);
}
.recommend-link-list-item p {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 3;
    width: 100%;
    color: #0c449b;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all .5s ease;
    transform: translateY(-50%);
}
.recommend-link-list-item:hover p {
    color: #fff;
}
.recommend-link-list-item p .en {
    display: block;
    color: #020202;
    text-align: center;
    font-weight: 700;
    font-size: 2.0rem;
    transition: all .5s ease;
}
.recommend-link-list-item:hover p .en {
    color: #fff;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .recommend-link-list-item {
        width: calc(100% / 2);
    }
    .recommend-link-list-item a,
    .recommend-link-list-item .recommend-link-list-item-inner {
        height: 200px;
    }
    .recommend-link-list-item:nth-child(2n) a::after {
        content: none;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .recommend-link-list-item {
        width: calc(100% / 3);
    }
    .recommend-link-list-item:nth-child(1) {
        display: none;
    }
    .recommend-link-list-item a,
    .recommend-link-list-item .recommend-link-list-item-inner {
        height: 250px;
    }
    .recommend-link-list-item:nth-child(3n) a::after {
        content: none;
    }
    .recommend-link-list-item p .en {
        font-size: 3.5rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .recommend-link-list-item {
        width: calc(100% / 3);
    }
    .recommend-link-list-item:nth-child(1) {
        display: none;
    }
    .recommend-link-list-item a,
    .recommend-link-list-item .recommend-link-list-item-inner {
        height: 350px;
    }
    .recommend-link-list-item:nth-child(3n) a::after {
        content: none;
    }
    .recommend-link-list-item p .en {
        font-size: 4.0rem;
    }
}


/* .recommend-btn
-------------------------------------------------------- */
.recommend-btn {
    margin: 0 auto 30px;
    max-width: 1120px;
    width: 100%;
}
.recommend-btn:last-child {
    margin: 0 auto;
}
.recommend-btn a {
    position: relative;
    display: flex;
    padding: 1.25em 2.5em 1.25em 1.5em;
    height: auto;
    border: 2px solid #f87b00;
    background: url(../../assets/img/common/bg_recommend-btn.png) left center no-repeat, url(../../assets/img/common/ico_recommend-btn.png) 96% center no-repeat #fff;
    /* background: #ccc; */
    background-size: 100% auto, 8px auto;
    color: #fff;
    text-align: left;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.6em;

    align-items: center;
}
.recommend-btn a::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    box-sizing: border-box;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid rgba(247, 208, 124, .8);
    content: "";
    transform: translate(-50%, -50%);
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .recommend-btn a {
        height: 150px;
        font-size: 3.2rem;
    }
    .recommend-btn a::after {
        transition: all .3s ease;
    }
    .recommend-btn a:hover::after {
        background: rgba(255, 255, 255, .2);
    }
}


/* .recommend-bnr
-------------------------------------------------------- */
.recommend-bnr {
    display: flex;
    margin: 0 auto;
    padding: 0;
    max-width: 1800px;
    width: 100%;

    flex-flow: column wrap;
    justify-content: space-around;
}

/* .recommend-bnr-unit */
.recommend-bnr-unit {
    margin-right: 0;
    margin-bottom: 2%;
    padding: 0;
    width: 100%;
}
/* .recommend-bnr-unit:last-child {
    margin-bottom: 0;
} */
.recommend-bnr-unit-inner {
    margin: 0 auto;
    padding: 0;
    /* max-width: 1000px; */
    width: 100%;
}

/* .recommend-bnr-unit a */
.recommend-bnr-unit a {
    position: relative;
    display: flex;
    overflow: hidden;
    margin: 0;
    height: auto;
    border: 2px solid #fff;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    /* box-shadow: 0 3px 5px rgba(0, 0, 0, .14); */
    text-decoration: none;
    transition: all .3s ease;

    flex-flow: row wrap;
    align-items: stretch;
    justify-content: flex-start;
}

/* .box-ttl */
.recommend-bnr-unit a .box-ttl {
    display: flex;
    overflow: hidden;
    padding: 2%;
    width: calc(100% - 20%);
    border-radius: 3px 0 0 3px;
    background: url(../../assets/img/common/bg_recommend-bnr_01.png) no-repeat;
    background-color: #1677c7;
    background-position: top 0 right -25px;
    background-size: 120px 120px;

    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
}
.recommend-bnr-unit:nth-child(1) a .box-ttl {
    background: url(../../assets/img/common/bg_recommend-bnr_01.png) no-repeat;
    background-color: #c8161e;
    background-position: top 0 right -25px;
    background-size: 120px 120px;
}
.recommend-bnr-unit:nth-child(2) a .box-ttl {
    background: url(../../assets/img/common/bg_recommend-bnr_02.png) no-repeat;
    background-color: #16c766;
    background-position: top 0 right -25px;
    background-size: 120px 120px;
}
.recommend-bnr-unit a .box-ttl .box-ttl-catch {
    margin-bottom: .8em;
    color: #fff;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.6;
}
.recommend-bnr-unit a .box-ttl .box-ttl-more {
    position: relative;
    margin: 0;
    max-width: 280px;
    width: 100%;
}
.recommend-bnr-unit a .box-ttl .box-ttl-more > span {
    display: block;
    padding: .5em;
    border-radius: 4px;
    background: #fff;
    color: #534741;
    text-align: center;
    text-decoration: none;
    letter-spacing: .04em;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all .3s ease;
}
.recommend-bnr-unit a:hover .box-ttl .box-ttl-more > span {
    color: #1677c7;
}
.recommend-bnr-unit:nth-child(1) a:hover .box-ttl .box-ttl-more > span {
    color: #c8161e;
}
.recommend-bnr-unit:nth-child(2) a:hover .box-ttl .box-ttl-more > span {
    color: #16c766;
}
.recommend-bnr-unit a .box-ttl .box-ttl-more > span::before {
    display: inline-block;
    margin-right: 5px;
    content: "\e88a";
    vertical-align: inherit;
    text-decoration: inherit;
    font-weight: 400;
    font-family: "webfont";
}

/* .box-img */
.recommend-bnr-unit a .box-img {
    overflow: hidden;
    margin: 0;
    width: 20%;
    border-radius: 0 3px 3px 0;
}
.recommend-bnr-unit a .box-img > img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 100%;"; /* IE対策 */
    transition: all .3s ease;

    -o-object-position: 0 100%;
       object-position: 0 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.recommend-bnr-unit a:hover .box-img > img {
    transform: none;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .recommend-bnr {
        flex-flow: row wrap;
    }
    .recommend-bnr-unit {
        margin-right: 2%;
        margin-bottom: 2%;
        width: 49%;
    }
    .recommend-bnr-unit:nth-child(2n) {
        margin-right: 0;
    }
    .recommend-bnr-unit a {
        border: 4px solid #fff;
        border-radius: 8px;
    }
    .recommend-bnr-unit a .box-ttl {
        width: 50%;
        border-radius: 6px 0 0 6px;
        background-position: right center;
        background-size: 260px 260px;
    }
    .recommend-bnr-unit:nth-child(1) a .box-ttl {
        background-position: right center;
        background-size: 230px 230px;
    }
    .recommend-bnr-unit:nth-child(2) a .box-ttl {
        background-position: right center;
        background-size: 260px 260px;
    }
    .recommend-bnr-unit a .box-ttl .box-ttl-catch {
        margin-bottom: .8em;
        font-size: 2.4rem;
    }
    .recommend-bnr-unit a .box-ttl .box-ttl-more {
        width: 100%;
    }
    .recommend-bnr-unit a .box-ttl .box-ttl-more > span {
        font-size: 1.6rem;
    }
    .recommend-bnr-unit a .box-img {
        width: 50%;
        border-radius: 0 6px 6px 0;
    }
    .recommend-bnr-unit a:hover .box-img > img {
        transform: scale(1.1);
    }
}


/* .modal-youtube
-------------------------------------------------------- */
.modal-youtube {
    margin: 0;
    padding: 50px;
    width: 100%;
    background: #f1f1f1;
}
.modal-youtube-inner {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 0;
    max-width: 1200px;
    width: 100%;
    height: auto;
    /* border: 1px solid #d0d0d0; */
    background: #fff;
    box-shadow: 0 12px 12px rgba(0, 0, 0, .15);
}
.modal-youtube .modal-btn {
    position: relative;
    display: block;
}
.modal-youtube .modal-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .1); */
    background: url(../../assets/img/common/bg_overlay_01.png) repeat 0 0;
    content: "";
}
.modal-youtube .modal-btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3) url(../../assets/img/common/ico_play.svg) 55% center no-repeat;
    background-size: 22px;
    content: "";
    transform: translate(-50%, -50%);
}


/* .suggest-link
-------------------------------------------------------- */
.suggest-link {
    padding: 0;
    width: 100%;
}
.suggest-link-unit {
    padding: 14px;
    width: 100%;
    background-image: linear-gradient(135deg, rgba(20, 131, 217, 1), rgba(0, 100, 177, 1));
}
.suggest-link-unit:last-child {
    background-image: linear-gradient(135deg, rgba(1, 92, 172, 1), rgba(6, 80, 149, 1));
}
.suggest-link-unit .unit-ttl {
    margin: 0 0 5px;
    color: #fff;
    font-weight: 600;
    font-size: 2.8rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
}
.suggest-link-unit .unit-txt {
    margin: 0 0 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
}
.suggest-link-unit .unit-list {
    display: grid;
    padding: 0;

    grid-template-columns: 1fr;
}
.suggest-link-unit .unit-list li {
    position: relative;
}
.suggest-link-unit .unit-list li a {
    display: grid;
    padding: .5em;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;

    grid-template-columns: 1fr 15px;
    grid-template-rows: 1fr;
    place-items: center start;
}
.suggest-link-unit .unit-list li a .img {
    margin-bottom: 1.5em;
    text-align: center;
}
.suggest-link-unit .unit-list li a .img img {
    width: 45px;
}
.suggest-link-unit .unit-list li a .txt {
    padding: .3em;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
}
.suggest-link-unit .unit-list li a .more {
    padding: .3em;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.6;
    transition: all .2s ease-in-out 0s;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .suggest-link-unit {
        padding: 30px 14px;
    }
    .suggest-link-unit .unit-txt {
        margin: 0 0 10px;
    }
    .suggest-link-unit .unit-list li {
        border-bottom: 1px solid rgba(229, 231, 235, .3);
    }
    .suggest-link-unit .unit-list li:last-child {
        border: 0;
    }
    .suggest-link-unit .unit-list li a {
        padding: .5em 0;
    }
    .suggest-link-unit .unit-list li a .img {
        display: none;
    }
    .suggest-link-unit .unit-list li a .txt {
        padding: 0;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .suggest-link-unit {
        padding: 30px 20px;
    }
    .suggest-link-unit .unit-txt {
        margin: 0 0 20px;
    }
    .suggest-link-unit .unit-list li {
        border-bottom: 1px solid rgba(229, 231, 235, .3);
    }
    .suggest-link-unit .unit-list li:last-child {
        border: 0;
    }
    .suggest-link-unit .unit-list li a {
        padding: .5em 0;
    }
    .suggest-link-unit .unit-list li a .img {
        display: none;
    }
    .suggest-link-unit .unit-list li a .txt {
        padding: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .suggest-link-unit {
        padding: 100px 20px;
    }
    .suggest-link-unit .unit-ttl {
        text-align: center;
        font-size: 4.0rem;
    }
    .suggest-link-unit .unit-txt {
        margin: 0 0 30px;
        text-align: center;
        font-size: 1.2rem;
    }
    .suggest-link-unit .unit-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .suggest-link-unit .unit-list li {
        border-right: 1px solid rgba(229, 231, 235, .3);
    }
    .suggest-link-unit .unit-list li:nth-child(3n) {
        border: 0;
    }
    .suggest-link-unit .unit-list li a {
        padding: 1.5em;
        height: 100%;

        grid-template-columns: 1fr;
        grid-template-rows: 1fr 35px;
        place-items: center center;
    }
    .suggest-link-unit .unit-list li a:hover {
        color: rgba(255, 255, 255, 1);
        opacity: .8;
        transition: all .3s ease;
    }
    .suggest-link-unit .unit-list li a .txt {
        padding: 0 0 1.5em;
        text-align: center;
    }
}


/* .support-box
-------------------------------------------------------- */
.support-box {
    margin: 60px 14px 0;
}
.support-box-inner {
    position: relative;
    margin: 0 auto;
    padding: 10px 14px 40px;
    max-width: 1420px;
    width: 100%;
    border: 5px solid #e5e5e5;
    background: #fff;
}
/* .support-box-inner::before,
.support-box-inner::after {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 5px;
    height: calc(100% - 60px);
    background-color: #fff;
    content: "";
}
.support-box-inner::before {
    left: -3px;
}
.support-box-inner::after {
    right: -3px;
} */

/* .support-box-ttl */
.support-box-ttl {
    position: relative;
    top: -36px;
    text-align: center;
}
.support-box-ttl > span {
    display: inline-block;
    padding: .5em 2em;
    background-color: rgba(255, 133, 0, 1);
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.6;
}

/* .support-box-list */
.support-box-list {
    display: flex;
    margin: -30px 0 0 0;
    padding: 0 0 0;

    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.support-box-list li {
    position: relative;
    margin: .5em .5em;
    padding: 0 0 0 1.5em;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.8;
}
.support-box-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #bf1319;
    content: "\00e80d";
    font-weight: normal;
    font-size: inherit;
    font-family: "webfont";
}

/* .etc */
.support-box-inner .etc {
    position: absolute;
    right: 20px;
    bottom: 20px;
    margin: 0;
    color: rgba(255, 133, 0, 1);
    font-weight: 700;
    font-size: 1.4rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .support-box-inner {
        padding: 20px 70px 20px;
    }
    .support-box-ttl {
        top: -49px;
    }
    .support-box-ttl > span {
        padding: .5em 2em;
        font-size: 1.8rem;
    }
    .support-box-ttl > span > strong {
        margin: 0 10px 0 0;
        font-size: 2.0rem;
    }
    .support-box-list {
        padding: 0 0 1.5em;
    }
    .support-box-list li {
        margin: .5em 1em;
        font-size: 1.7rem;
    }
    .support-box-inner .etc {
        font-size: 2.0rem;
    }
}


/* .lineup-bnr-list
-------------------------------------------------------- */
.lineup-bnr-list {
    display: flex;
    margin: 0 auto 50px;
    padding: 0;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    /* border-left: 1px solid #e5e5e5; */

    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.lineup-bnr-list-item {
    margin: 0;
    padding: 0;
    width: 100%;
    /* border-right: 1px solid #e5e5e5; */
    border-bottom: 1px solid #e5e5e5;
}
.lineup-bnr-list-item > a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .3s ease;
}
.lineup-bnr-list-item > a:hover {
    color: #020202;
    text-decoration: none;
    /* opacity: .6; */
}
.lineup-bnr-list-item .item-box {
    position: relative;
    display: flex;
    padding: 5px 5px 5px 0;
    height: 100%;
    /* background: #fafafa; */

    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}
/* .lineup-bnr-list-item:nth-of-type(even) .item-box {
    background: #f9f9f9;
} */
.lineup-bnr-list-item .item-box-dt {
    margin: 0;
    padding: 0;
    width: 20%;
}
.lineup-bnr-list-item .item-box-dt > img {
    width: 100%;
}
.lineup-bnr-list-item .item-box-dd {
    margin: 0;
    padding: 5px 0 5px 15px;
    width: calc(100% - 20%);

    flex: 1;
}
.lineup-bnr-list-item .item-box-dd .ja {
    margin: 0;
    color: #020202;
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 1.4;
}
.lineup-bnr-list-item .item-box-dd .en {
    margin: 3px 0 0 0;
    color: rgba(170, 153, 119, 1);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 1.4rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.4;
}

/* hover */
.lineup-bnr-list-item .item-box:hover {
    background: rgba(0, 0, 0, .03);
    /* opacity: .8; */
}
.lineup-bnr-list-item > a:hover .item-box-dd .ja {
    color: #020202;
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .lineup-bnr-list {
        flex-flow: row wrap;
    }
    .lineup-bnr-list-item {
        width: 50%;
    }
    .lineup-bnr-list-item .item-box {
        flex-flow: row wrap;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .lineup-bnr-list {
        flex-flow: column wrap;
    }
    .lineup-bnr-list-item {
        width: 100%;
    }
    .lineup-bnr-list-item .item-box {
        flex-flow: row wrap;
    }
    .lineup-bnr-list-item .item-box-dt {
        width: 78px;
    }
    .lineup-bnr-list-item .item-box-dd {
        width: calc(100% - 78px);
    }
}


/* .appeal-unit
-------------------------------------------------------- */
.appeal-unit {
    position: relative;
    overflow: hidden;
    padding: 0 14px;
}
.appeal-unit-inner {
    display: flex;
    margin: 0 auto;
    padding: 0;
    max-width: 1714px;
    width: 100%;

    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.appeal-unit-box {
    margin-bottom: 40px;
    max-width: 580px;
    width: 100%;
    /* background-color: #fff; */
    /* background-position: 90% bottom;
    background-repeat: no-repeat; */
    text-align: center;
}
/* .appeal-unit-box.box-01 {
    background-image: url(../img/common/bg_appeal-unit-box_01.png);
    background-size: 26%;
}
.appeal-unit-box.box-02 {
    background-image: url(../img/common/bg_appeal-unit-box_02.png);
    background-size: 26%;
}
.appeal-unit-box.box-03 {
    background-image: url(../img/common/bg_appeal-unit-box_03.png);
    background-size: 26%;
}
.appeal-unit-box.box-04 {
    background-image: url(../img/common/bg_appeal-unit-box_04.png);
    background-size: 26%;
}
.appeal-unit-box.box-05 {
    background-image: url(../img/common/bg_appeal-unit-box_05.png);
    background-size: 26%;
}
.appeal-unit-box.box-06 {
    background-image: url(../img/common/bg_appeal-unit-box_06.png);
    background-size: 26%;
} */
.appeal-unit-box a {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    border-radius: 5px;
    background: #fff;
    /* border: 4px solid rgba(249, 149, 51, 1); */
    box-shadow: 0 4px 5px rgba(0, 0, 0, .05);
}
.appeal-unit-box a:hover {
    text-decoration: none;
}
/* .appeal-unit-box a::before {
    position: absolute;
    right: .25em;
    bottom: .25em;
    left: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    color: rgba(255, 96, 16, 1);
    content: "\e88a";
    font-size: 2.4rem;
    font-family: "webfont";
    line-height: 1;
} */
.appeal-unit-box a::after {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 0;
    height: 0;
    border-width: 0 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent rgba(249, 149, 51, .4) transparent;
    content: "";
}
.appeal-unit-box-inner {
    padding: 0 0 1.5em;
}
.appeal-unit-box a figure {
    overflow: hidden;
}
.appeal-unit-box a figure img {
    width: 100%;
}
.appeal-unit-box a .num {
    /* position: absolute;
    top: -28px;
    right: 0;
    left: 0; */
    display: block;
    margin: 0 auto .8em;
    padding: .6em;
    /* max-width: 160px; */
    background: rgba(255, 96, 16, 1);
    color: #fff;
    letter-spacing: .05em;
    font-weight: 600;
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
}
.appeal-unit-box a .num span {
    margin-left: .4em;
    letter-spacing: -.02em;
    font-size: 140%;
    font-family: "Barlow Semi Condensed", sans-serif;
}

/* .appeal-unit-box h3 */
.appeal-unit-box h3 {
    margin-bottom: .4em;
    color: #020202;
    letter-spacing: .05em;
    font-weight: 600;
    font-size: 3.2rem;
}
.appeal-unit-box h3 span {
    font-weight: 600;
    font-size: 2.8rem;
}
.appeal-unit-box p {
    margin: 0 1em 0;
    color: #686868;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.8;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .appeal-unit {
        padding: 0;
    }
    /* .appeal-unit::after {
        position: absolute;
        bottom: 0;
        z-index: -1;
        display: block;
        width: 100vw;
        height: 375px;
        background: #fff;
        content: "";
    } */
    .appeal-unit-inner {
        flex-flow: row wrap;
        align-items: stretch;
    }
    .appeal-unit-box {
        margin: 0 1% 60px;
        max-width: 580px;
        width: 31.333333333333332%;
    }
    .appeal-unit-box a {
        /* min-height: 600px; */
        width: 100%;
        height: 100%;
    }
    .appeal-unit-box a img {
        transition: all .3s ease;
    }
    .appeal-unit-box a:hover img {
        transform: scale(1.1);
    }
    .appeal-unit-box a .num {
        font-size: 1.5rem;
    }
    .appeal-unit-box a p {
        margin: 0 2em 0;
    }
    .appeal-unit-box a:hover p {
        color: #686868;
    }
    .appeal-unit-box h3 span {
        font-size: 3.2rem;
    }
}


/* .solution
-------------------------------------------------------- */
.solution {
    margin-bottom: 0;
    width: 100%;
}
.solution:last-child {
    margin-bottom: 0;
}
.solution-inner {
    position: relative;
    display: table;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    /* max-width: 1680px; */
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
}
.solution-img {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    display: table-cell;
    width: 100%;
    height: 100%;
}
.solution-rev .solution-img {
    right: 0;
    left: inherit;
}
.solution-img.solution-img-01 {
    background: url(../../assets/img/common/img_solution_01.jpg) no-repeat left top / cover scroll;
}
.solution-img.solution-img-02 {
    background: url(../../assets/img/common/img_solution_02.jpg) no-repeat right top / cover scroll;
}
.solution-img.solution-img-03 {
    background: url(../../assets/img/common/img_solution_03.jpg) no-repeat left top / cover scroll;
}
.solution-img.solution-img-04 {
    background: url(../../assets/img/common/img_solution_04.jpg) no-repeat right top / cover scroll;
}
.solution-img.solution-img-01 img,
.solution-img.solution-img-03 img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 0;"; /* IE対策 */

    -o-object-position: 0 0;
       object-position: 0 0;
    -o-object-fit: cover;
       object-fit: cover;
}
.solution-img.solution-img-02 img,
.solution-img.solution-img-04 img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 100% 0;"; /* IE対策 */

    -o-object-position: 100% 0;
       object-position: 100% 0;
    -o-object-fit: cover;
       object-fit: cover;
}
.solution-box {
    position: relative;
    float: right;
    padding: 0;
    width: 50%;
}
.solution-rev .solution-box {
    float: left;
}
.solution-box-inner {
    padding: 100px 100px 100px;
    background-color: rgba(1, 92, 172, .95);
}
.solution-rev .solution-box-inner {
    background-color: rgba(0, 185, 0, .95);
}

/* .solution-box-ttl */
.solution-box-ttl {
    margin: 0 0 2em 0;
    text-align: center;
}
.solution-box-ttl .head {
    margin: 0 0 1em 0;
    color: #fff;
    text-shadow: 0 0 2px rgba(0, 0, 0, .2);
    letter-spacing: .05em;
    font-weight: 700;
    font-size: 4.0rem;
}
.solution-box-ttl .catch {
    display: inline-block;
    margin-bottom: 0;
    padding: .2em 1.8em;
    /* border: 1px solid #fff;
    border-radius: 5px;
    background: #fff; */
    color: #fff;
    text-shadow: 0 0 2px rgba(0, 0, 0, .2);
    letter-spacing: .05em;
    font-weight: 600;
    font-size: 2.4rem;
}
.solution-box-ttl .catch span {
    margin-left: .4em;
    letter-spacing: -.02em;
    font-size: 140%;
    font-family: "Barlow Semi Condensed", sans-serif;
}
.solution-box .txt {
    margin: 0 0 3em 0;
    color: #fff;
    letter-spacing: .12em;
    line-height: 1.8em;
}

/* .btn-solution */
.solution .btn-solution {
    margin: 0 auto;
    max-width: 280px;
    width: 100%;
    line-height: 1em;
}
.solution .btn-solution a {
    position: relative;
    display: block;
    padding: 23px 0 0;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    background: #fff;
    /* box-shadow: 0 3px 6.7px 3.3px rgba(27, 16, 10, .1); */
    color: rgba(1, 92, 172, 1);
    text-align: center;
    letter-spacing: .05em;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all .3s ease-in-out;
}
.solution-rev .btn-solution a {
    color: rgba(0, 185, 0, 1);
}
/* .solution .btn-solution a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    margin: -2px 0 0;
    width: 25px;
    height: 4px;
    background: url(../../assets/img/common/ico_tn-solution.svg) no-repeat 0 0 / 100%;
    content: "";
} */
.solution .btn-solution a:hover {
    text-decoration: none;
    opacity: .7;
}
.solution .btn-solution a .ico {
    margin-left: 10px;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .solution-img {
        position: inherit;
        top: inherit;
        left: inherit;
        display: block;
        width: 100%;
        height: 40vh;
    }
    .solution-box {
        float: none;
        padding: 0;
        width: 100%;
    }
    .solution-rev .solution-box {
        float: none;
    }
    .solution-box-inner {
        padding: 30px 4% 50px;
    }
    .solution-box-ttl .head {
        font-size: 2.8rem;
    }
    .solution-box-ttl .catch {
        padding: .2em .2em;
        font-size: 1.8rem;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .solution-img {
        position: inherit;
        top: inherit;
        left: inherit;
        display: block;
        width: 100%;
        height: 40vh;
    }
    .solution-box {
        float: none;
        padding: 0;
        width: 100%;
    }
    .solution-rev .solution-box {
        float: none;
    }
    .solution-box-inner {
        padding: 30px 4%;
    }
    .solution-box-ttl .head {
        font-size: 3.8rem;
    }
    .solution-box-ttl .catch {
        padding: .2em .2em;
        font-size: 1.8rem;
    }
}


/* .step-unit
-------------------------------------------------------- */
.step-unit {
    display: flex;

    flex-flow: column wrap;
    justify-content: space-between;
    align-items: stretch;
}
.step-unit.circle {
    display: flex;
}
.step-unit-box {
    position: relative;
    margin: 0 auto 60px;
    max-width: 800px;
    width: 100%;
    background-color: #f5f5f5;
    text-align: center;
}
.step-unit.circle .step-unit-box {
    margin: 0 auto 120px;
}
.step-unit-box::after {
    position: absolute;
    top: inherit;
    bottom: -40px;
    left: 50%;
    z-index: 2;
    margin: 0 0 0 0;
    width: 0;
    height: 0;
    border-width: 11px 11px 0 11px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    content: "";
    transform: translateX(-50%);
}
.step-unit-box:last-child::after {
    display: none;
}
.step-unit-box .num {
    margin: 0;
    padding: .8em 0;
    background-color: #b00;
    color: #fff;
    letter-spacing: .12em;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1em;
}
.step-unit.circle .step-unit-box .num {
    margin: -3em auto 0;
    padding: 21px 0 0 0;
    width: 8rem;
    height: 8rem;
    border-radius: 100%;
    background: #dfc441;
    color: #fff;
    text-align: center;
}
.step-unit-box .num span {
    margin-left: .2em;
    color: #fff;
    font-size: 180%;
    line-height: 1;
}
.step-unit.circle .step-unit-box .num span {
    display: block;
    margin: 0;
}
.step-unit-box .detail {
    display: flex;
    padding: 1.5em;

    flex-flow: column wrap;
    justify-content: center;
}
.step-unit-box .detail-head {
    margin: 0 0 1.2em 0;
    width: 100%;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3;
}
.step-unit-box .detail-txt {
    margin: 0;
    text-align: left;
    letter-spacing: .1em;
    line-height: 1.8;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .step-unit {
        flex-flow: row wrap;
    }
    .step-unit-box {
        margin: 0 0 40px;
        width: 22%;
    }
    .step-unit.circle .step-unit-box {
        margin: 0 0 40px;
        width: 22%;
    }
    .step-unit-box::after {
        top: 50%;
        right: -34px;
        bottom: auto;
        left: auto;
        margin: 0 0 0 0;
        border-width: 11px 0 11px 11px;
        border-style: solid;
        border-color: transparent transparent transparent #333;
        transform: translateY(-50%);
    }
    .step-unit-box:nth-child(4n)::after {
        display: none;
    }
}


/* .point-list
-------------------------------------------------------- */
.point-list li {
    position: relative;
    height: 580px;
}
.point-list li a {
    opacity: 1;
    transition: none;
}

/* .point-list li .img */
.point-list li .img {
    position: relative;
    z-index: 1;
    /* padding-left: 200px; */
    width: 100%;
    height: 100%;
}
.point-list li .img .img-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.point-list li .img .img-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* background: url(../../assets/img/common/bg_overlay_04.png) repeat 0 0; */
    /* background-color: rgba(14, 76, 89, .2); */
    background-color: rgba(1, 28, 48, 0);
    content: "";
}
.point-list li .img figure {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: center center no-repeat;
    background-size: cover;
    transition: all .5s;
}
.point-list li .img figure img {
    width: 100%;
}
.point-list li:nth-child(1) .img figure {
    /* background-image: url(../../assets/img/home/img_point-list_01.jpg); */
    background: url(../../assets/img/common/bg_point-list.jpg) no-repeat center top / cover;
}
.point-list li:nth-child(2) .img figure {
    background-image: url(../../assets/img/home/img_point-list_02.jpg);
}
.point-list li:nth-child(3) .img figure {
    background-image: url(../../assets/img/home/img_point-list_03.jpg);
}

/* .point-list li .box */
.point-list li .box {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    padding: 2.5em 1.5em;
    max-width: 1100px;
    width: 100%;
    height: auto;
    border: 2px solid #fff;
    /* border-left: 10px solid #333; */
    /* background: rgba(0, 91, 172, .85); */
    transition: all .8s;
    transform: translate(-50%, -50%);
}
.point-list li .box-ttl {
    position: relative;
    margin-bottom: .5em;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    letter-spacing: .12rem;
    font-weight: 800;
    font-size: 4.3rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.point-list li .box-ttl .label {
    position: absolute;
    top: -130px;
    left: 20px;
    display: flex;
    flex-direction: column;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 96, 16, 1);
    color: #fff;
    text-align: center;
    /* text-shadow: 0 0 8px rgba(0, 0, 0, .3); */
    text-shadow: none;
    letter-spacing: .01rem;
    font-weight: 700;
    font-size: 1.6rem;
    /* font-family: "Noto Serif JP", sans-serif; */
    line-height: 1;

    align-items: center;
    justify-content: center;
}
.point-list li .box-ttl .label strong {
    margin-top: 2px;
    font-weight: 500;
    font-size: 180%;
}
.point-list li .box-txt {
    margin-bottom: 1.5em;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    letter-spacing: 2.0px;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.8;
}
.point-list li .box-copy {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    letter-spacing: 2.2px;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.6;
}
.point-list li .box-more {
    /* position: relative; */
    display: block;
    /* overflow: hidden; */
    margin: 0 auto 1.5em;
    padding: 1em 1em;
    max-width: 560px;
    width: 100%;
    background: #fff;
    color: rgba(255, 96, 16, 1);
    text-align: center;
    letter-spacing: .7px;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1;
}
/* .point-list li .box-more::after {
    position: absolute;
    top: 6px;
    left: 100px;
    width: 31px;
    height: 1px;
    background: #333;
    content: "";
    transition: all .8s;
} */

/* sp & tb（0px～1200px未満の場合に適用） */
@media (min-width: 0) and (max-width: 1199.98px) {
    .point-list li {
        height: 340px;
    }
    .point-list li .img {
        padding: 0;
    }
    .point-list li .box {
        border: 0;
        /* background: none; */
    }
    .point-list li a:hover {
        text-decoration: none;
    }
    .point-list li .box-ttl {
        margin-bottom: 1em;
        letter-spacing: 1.8px;
        font-size: 2.2rem;
    }
    .point-list li .box-txt {
        display: none;
        margin-bottom: 5px;
        letter-spacing: .8px;
        font-size: 1.4rem;
    }
    .point-list li .box-more {
        padding: 1em 1em;
        font-size: 1.8rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .point-list li {
        margin-bottom: 1px;
    }
    .point-list li:last-child {
        margin-bottom: 0;
    }
    .point-list li .box-ttl .label {
        top: -100px;
        left: -100px;
        width: 160px;
        height: 160px;
        font-size: 3.0rem;
        line-height: 1;
    }
    .point-list li .box-ttl .label span {
        font-size: 1.7rem;
        line-height: 1;
    }
    .point-list li .box-ttl .label strong {
        font-size: 4.4rem;
    }
    .point-list li .box-more::after {
        top: 6px;
        width: 30px;
    }
    .point-list li a:hover .img figure {
        transform: scale(1.1);
    }
    /* .point-list li a:hover .box {
        background: #005bac;
        transition: all .8s;
    } */
    .point-list li a.hover {
        opacity: 1 !important;
    }
    .point-list li a:hover .box-ttl {
        color: #fff;
    }
    .point-list li .box-txt {
        font-size: 1.8rem;
    }
    .point-list li a:hover .box p {
        color: #fff;
    }
    .point-list li a:hover .box-more {
        color: rgba(255, 96, 16, 1);
    }
    .point-list li a:hover .box-more::after {
        width: 100%;
        background: #fff;
    }
}


/* .reason-unit
-------------------------------------------------------- */
.reason-unit {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background: #fff;
}
.reason-unit > div {
    z-index: 0 !important;
}
.reason-unit.reason-unit-01 {
    background: #fff;
}
.reason-unit.reason-unit-02 {
    background: #45322c;
}
.reason-unit.reason-unit-03 {
    background: #fffaee;
}
.reason-unit.reason-unit-04 {
    background: #45322c;
}
.reason-unit.reason-unit-05 {
    background: #fffaee;
}
.reason-unit.reason-unit-06 {
    background: #45322c;
}
.reason-unit .reason-unit-01-inner,
.reason-unit .reason-unit-02-inner,
.reason-unit .reason-unit-03-inner,
.reason-unit .reason-unit-04-inner,
.reason-unit .reason-unit-05-inner,
.reason-unit .reason-unit-06-inner {
    overflow: hidden;
    padding: 100px 0;
    min-height: inherit;
    background: none;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, .7); */
}

/* .reason-unit-box */
.reason-unit-box {
    margin: 0 auto;
    width: 94%;
}
.reason-unit-box .box-num {
    display: inline-block;
    margin: 0 0 2.5rem 0;
    padding: 0 5px;
    padding: .8em 1.6em;
    /* text-align: center; */
    background: rgba(1, 92, 172, 1);
    /* border: 2px solid #ff7400; */
    color: #fff;
    /* text-shadow: 0 0 60px rgba(255, 255, 255, .9), 0 0 30px rgba(255, 255, 255, .9), 0 0 10px rgba(255, 255, 255, .9); */
    font-weight: 700;
    font-size: 2.0rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}
.reason-unit.reason-unit-02 .reason-unit-box .box-num,
.reason-unit.reason-unit-04 .reason-unit-box .box-num {
    color: #fff !important;
}
.reason-unit-box .box-num span {
    margin: 0 0 0 10px;
    font-size: 2.0rem;
}
.reason-unit-box .box-ttl {
    margin: 0 0 1em 0;
    padding: 0 5px;
    color: #020202;
    text-align: left;
    /* text-shadow: 0 0 60px rgba(255, 255, 255, .9), 0 0 30px rgba(255, 255, 255, .9), 0 0 10px rgba(255, 255, 255, .9); */
    letter-spacing: .12em;
    font-weight: 700;
    font-size: 2.2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.reason-unit.reason-unit-02 .reason-unit-box .box-ttl,
.reason-unit.reason-unit-04 .reason-unit-box .box-ttl {
    color: #fff !important;
}
.reason-unit-box .box-ttl span {
    color: #020202;
    font-size: 2.2rem;
}
.reason-unit-box .box-txt {
    margin: 0 0 2.5em 0;
    padding: 0 5px;
    color: #45423b;
    /* text-shadow: 0 0 60px rgba(255, 255, 255, .9), 0 0 30px rgba(255, 255, 255, .9), 0 0 10px rgba(255, 255, 255, .9); */
    font-weight: 500;
    font-size: 1.6rem;
}
.reason-unit-box .box-txt li {
    color: #45423b;
    line-height: 2.0;
}
.reason-unit-box .box-txt li .ico {
    position: relative;
    top: -1px;
    margin-right: 5px;
    color: #c30d23;
    font-size: 2.0rem;
}
.reason-unit.reason-unit-02 .reason-unit-box .box-txt,
.reason-unit.reason-unit-04 .reason-unit-box .box-txt {
    color: #fff !important;
}
.reason-unit.reason-unit-02 .reason-unit-box .box-txt li,
.reason-unit.reason-unit-04 .reason-unit-box .box-txt li {
    color: #fff !important;
}
.reason-unit-box .box-img {
    display: block;
    margin: 0 0 20px 0;
}
.reason-unit-box .box-img img {
    padding: 3px;
    border: 1px solid #ebebeb;
    background-color: #fff;
}
.reason-unit-box .box-btn {
    text-align: center;
}
.reason-unit-box .box-btn a.btn-more {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 1em 2em;
    min-width: 280px;
    border: 0;
    /* border-radius: 3px; */
    /* background: linear-gradient(153.34deg, rgba(255, 96, 16, 1) 2.3%, #ff5959 97.72%), rgba(255, 96, 16, 1); */
    background-color: rgba(205, 22, 44, 1);
    /* background-color: #c8161e; */
    box-shadow: 0 3px 5px rgba(0, 0, 0, .14);
    color: #fff;
    text-align: center;
    text-decoration: none;
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, .2); */
    font-weight: 600;
    font-size: 1.6rem;
    transition: all .8s;
}
/* .reason-unit-box .box-btn a.btn-more::before {
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    border: 2px dotted rgba(255, 255, 255, .3);
    content: "";
} */
.reason-unit.reason-unit-02 .reason-unit-box .box-btn a.btn-more {
    background-color: #c8161e;
    color: #fff;
}
.reason-unit-box .box-btn a.btn-more:hover {
    /* background-color: rgba(255, 133, 0, 1); */
    color: #fff;
    /* opacity: 1; */
}
.reason-unit.reason-unit-02 .reason-unit-box .box-btn a.btn-more:hover {
    background-color: rgba(255, 133, 0, 1);
}
.reason-unit-box .box-btn .btn .ico {
    margin-left: 10px;
    font-size: 80%;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .reason-unit .reason-unit-01-inner,
    .reason-unit .reason-unit-02-inner,
    .reason-unit .reason-unit-03-inner,
    .reason-unit .reason-unit-04-inner,
    .reason-unit .reason-unit-05-inner,
    .reason-unit .reason-unit-06-inner {
        display: block;
        padding: 150px 0;
        min-height: 450px;
        background-size: cover !important;
    }
    .reason-unit .reason-unit-01-inner {
        background: #f0edde url(../../assets/img/home/bg_reason_01.jpg) no-repeat center center;
    }
    .reason-unit .reason-unit-02-inner {
        background: #f0edde url(../../assets/img/home/bg_reason_02.jpg) no-repeat center center;
    }
    .reason-unit .reason-unit-03-inner {
        background: #f0edde url(../../assets/img/home/bg_reason_03.jpg) no-repeat center center;
    }
    .reason-unit .reason-unit-04-inner {
        background: #f0edde url(../../assets/img/home/bg_reason_04.jpg) no-repeat center center;
    }
    .reason-unit .reason-unit-05-inner {
        background: #f0edde url(../../assets/img/home/bg_reason_05.jpg) no-repeat center center;
    }
    .reason-unit .reason-unit-06-inner {
        background: #f0edde url(../../assets/img/home/bg_reason_06.jpg) no-repeat center center;
    }
    .reason-unit-box {
        padding: 0 20px;
        max-width: 1640px;
        width: 100%;
    }
    .reason-unit-box.box-01,
    .reason-unit-box.box-03,
    .reason-unit-box.box-05 {
        padding: 0 400px 0 20px;
    }
    .reason-unit-box.box-02,
    .reason-unit-box.box-04,
    .reason-unit-box.box-06 {
        padding: 0 20px 0 400px;
    }
    .reason-unit-box .box-ttl {
        margin: 0 0 30px 0;
        padding: 0;
        text-align: left;
        font-size: 3.6rem;
        line-height: 1.6;
    }
    .reason-unit-box .box-ttl span {
        font-size: 5.0rem;
    }
    .reason-unit-box .box-txt {
        margin: 0 0 40px 0;
        padding: 0;
        text-align: left;
        font-size: 1.8rem;
    }
    .reason-unit-box .box-txt li {
        /* float: left; */
        width: 100%;
    }
    .reason-unit-box .box-img {
        display: none;
    }
    .reason-unit-box .box-num {
        font-size: 2.8rem;
    }
    .reason-unit-box .box-btn {
        text-align: left;
    }
    .reason-unit-box .box-btn a.btn-more {
        font-size: 2.0rem;
    }
}

/* pc（1400px以上の場合に適用） */
@media (min-width: 1400px) {
    .reason-unit-box.box-01,
    .reason-unit-box.box-03,
    .reason-unit-box.box-05 {
        padding: 0 620px 0 20px;
    }
    .reason-unit-box.box-02,
    .reason-unit-box.box-04,
    .reason-unit-box.box-06 {
        padding: 0 20px 0 620px;
    }
    .reason-unit-box .box-ttl {
        font-size: 5.0rem;
    }
}


/* .challenge-list
-------------------------------------------------------- */
.challenge-list {
    position: relative;
    display: flex;
    margin: 5em 0 0;
    padding: 0;

    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
}
.challenge-list::before,
.challenge-list::after {
    position: absolute;
    left: 50%;
    content: "";
}
.challenge-list::before {
    top: -23px;
    width: 1px;
    height: calc(100% + 50px);
    background: #b00;
}

/* .challenge-list li */
.challenge-list li {
    position: relative;
    margin: 0 0 2em 0;
    padding: 1em 1em 1em 5em;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
}
.challenge-list li:nth-of-type(2n) {
    transform: translateY(0);
}
.challenge-list li .num {
    position: absolute;
    top: -24px;
    right: inherit;
    bottom: inherit;
    left: 12px;
    margin: 0;
    color: #b00;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 4.2rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1;
}
.challenge-list li .num::after {
    display: inline-block;
    width: 1px;
    height: 88px;
    background: #b00;
    content: "";
    vertical-align: top;
    transform: rotate(30deg) translate(8px, -8px);
}
.challenge-list li .txt {
    margin: 0;
    letter-spacing: .08em;
    font-weight: 600;
    font-size: 2.0rem;
    line-height: 1.4;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .challenge-list {
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
    }
    .challenge-list li {
        margin: 0 0 4em 0;
        padding: 1.5em 1.5em 1.5em 5em;
        width: 48.3%;
    }
    .challenge-list li .txt {
        font-size: 2.4rem;
    }
    .challenge-list li:nth-of-type(2n) {
        transform: translateY(60px);
    }
}


/* .merit-table
-------------------------------------------------------- */
.merit-table {
    margin: 0 auto 50px;
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    font-weight: 600;
}
.merit-table th,
.merit-table td {
    padding: 8px;
    border-color: #e5e5e5;
}

/* .merit-table-head */
.merit-table-head {
    padding: 1em 0;
}
.merit-table-head .head-type {
    width: 24%;
    border: 5px solid #f9f2e6;
    background: #f9f2e6;
    color: #020202;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
}
.merit-table-head .head-merit,
.merit-table-head .head-demerit {
    width: 38%;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
}
.merit-table-head .head-merit {
    border: 5px solid #ff822d;
    background: #ff822d;
}
.merit-table-head .head-demerit {
    border: 5px solid #1f96d2;
    background: #1f96d2;
}

/* .merit-table-body */
.merit-table-body {
    vertical-align: middle;
    font-size: 1.2rem;
}
.merit-table-body .body-type.first {
    border-top: 5px solid #e5e5e5;
}
.merit-table-body .body-merit.first {
    border-top: 5px solid #ff822d;
}
.merit-table-body .body-demerit.first {
    border-top: 5px solid #1f96d2;
}
.merit-table-body .body-type.last {
    border-bottom: 5px solid #e5e5e5;
}
.merit-table-body .body-merit.last {
    border-bottom: 5px solid #ff822d;
}
.merit-table-body .body-demerit.last {
    border-bottom: 5px solid #1f96d2;
}
.merit-table-body .body-type {
    border-left: 5px solid #e5e5e5;
    background: #fff;
    color: #020202;
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    font-size: 1.2em;
}
.merit-table-body .body-type img {
    display: none;
}
.merit-table-body .body-type .ttl {
    font-size: 2.0rem;
}
.merit-table-body .body-type .ttl small {
    font-size: 60%;
}
.merit-table-body .body-merit,
.merit-table-body .body-demerit {
    position: relative;
    vertical-align: top;
    font-size: 1em;
}
.merit-table-body .body-merit {
    border-right: 4px solid #ff822d;
    border-left: 4px solid #ff822d;
    background: #fff7e4;
}
.merit-table-body .body-merit::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 16px solid #ffb07a;
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}
.merit-table-body .body-merit ul {
    position: relative;
    z-index: 3;
}
.merit-table-body .body-demerit {
    position: relative;
    z-index: 2;
    border-right: 4px solid #1f96d2;
    background: #f1faff;
}
.merit-table-body .body-demerit::before,
.merit-table-body .body-demerit::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 18px;
    height: 80px;
    background-color: #5eabd2;
    content: "";
}
.merit-table-body .body-demerit.batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.merit-table-body .body-demerit.batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.merit-table-body .body-demerit.sankaku::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    width: 100px;
    height: 100px;
    background-image: url(../../assets/img/home/img_sankaku.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    transform: translate(-50%, -50%);
}
.merit-table-body .body-demerit ul {
    position: relative;
    z-index: 3;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .merit-table th,
    .merit-table td {
        padding: 1em 1em;
    }
    .merit-table-head .head-type,
    .merit-table-head .head-merit,
    .merit-table-head .head-demerit {
        font-size: 2.3rem;
    }
    .merit-table-body {
        font-size: 1.6rem;
    }
    .merit-table-body .body-type .ttl {
        font-size: 2.8rem;
    }
    .merit-table-body .body-type .ttl small {
        margin-left: .5em;
    }
}


/* .duty-box
-------------------------------------------------------- */
.duty-box {
    padding: 40px 0;
    border-top: 6px solid #ccc9c8;
    border-bottom: 6px solid #ccc9c8;
    background: #fff;
}
.duty-box dl dt {
    position: relative;
    margin: 10px 0;
    padding: 0 0 5px 25px;
    font-weight: 600;
    font-size: 2.0rem;
}
.duty-box dl dt::before {
    position: absolute;
    top: 15px;
    left: 0;
    width: 14px;
    height: 14px;
    background: #0070c0;
    content: "";
}
.duty-box dl dd {
    margin-bottom: 20px;
    padding: 10px 0 10px;
    border-top: 1px solid #020202;
    border-bottom: 1px solid #020202;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .duty-box {
        padding: 40px 50px;
    }
}


/* .ftr-reserve
-------------------------------------------------------- */
.ftr-reserve {
    margin: 0;
    padding: 0;
    width: 100%;
    background: url(../../assets/img/common/bg_ftr-box.jpg) no-repeat top right;
    background-size: cover;
    /* background: #ccc; */
}
.ftr-reserve-inner {
    position: relative;
    display: flex;
    width: 100%;

    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.ftr-reserve-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, .1); */
    background: rgba(23, 30, 32, .56) url(../../assets/img/common/bg_overlay_23.png) repeat 0 0;
    content: "";
    pointer-events: none;
}
.ftr-reserve-unit {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;

    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.ftr-reserve-unit-box {
    padding: 50px 14px;
    width: 100%;
    text-align: center;

    flex: 1;
}
.ftr-reserve-unit-box + .ftr-reserve-unit-box {
    border-top: 1px solid #fff;
}
.ftr-reserve-unit-box .box-ttl {
    margin: 0 0 .8em;
}
.ftr-reserve-unit-box .box-ttl-ja {
    margin: 0 0 .6em;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.4;
}
.ftr-reserve-unit-box .box-ttl-en {
    margin: 0 0 .6em;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 1.4rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.2;
}
.ftr-reserve-unit-box .box-tel {
    display: block;
    margin: 0 auto;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    font-weight: 700;
    font-size: 1.4rem;
}
.ftr-reserve-unit-box .box-tel span {
    margin-left: .5em;
    font-size: 2.8rem;
}
.ftr-reserve-unit-box .box-time {
    margin-top: .5em;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    font-size: 1.4rem;
}
.ftr-reserve-unit-box .box-txt {
    margin-top: 3em;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.6;
}
.ftr-reserve-unit-box .box-btn {
    position: relative;
    display: flex;
    margin: 0 auto 0;
    padding: 1em .6em 1em;
    max-width: 330px;
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    font-weight: 700;
    font-size: 1.6rem;
    transition: background .3s, color .3s ease;

    justify-content: center;
    align-items: center;
}
.ftr-reserve-unit-box .box-btn:hover {
    background-color: #fff;
    color: #036eb8;
    text-shadow: none;
}
.ftr-reserve-unit-box .box-btn .ico {
    margin: 1px 5px 0 0;
    font-size: 120%;
}

/* PC（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-reserve {
        /* background: url(../../assets/img/common/bg_ftr-box.jpg) no-repeat top right;
        background-size: cover;
        background: #ccc; */
    }
    .ftr-reserve-inner {
        display: flex;

        flex-flow: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .ftr-reserve-unit {
        display: flex;
        padding: 6.2em 2em;

        flex-flow: wrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 10px;
    }
    .ftr-reserve-unit-box {
        display: flex;
        padding: 2em .8em;
        width: 32%;
        text-align: center;

        flex-flow: column;
        justify-content: space-between;
        align-items: center;
        flex: 1;
    }
    .ftr-reserve-unit-box + .ftr-reserve-unit-box {
        border-top: 0;
    }
    .ftr-reserve-unit-box:nth-child(1) {
        transform: translateX(-25px);
    }
    .ftr-reserve-unit-box:nth-child(2) {
        border-right: 1px solid #fff;
        border-left: 1px solid #fff;
    }
    .ftr-reserve-unit-box:nth-child(3) {
        transform: translateX(25px);
    }
    .ftr-reserve-unit-box .box-ttl-ja {
        font-size: 3.1rem;
    }
    .ftr-reserve-unit-box .box-ttl-en {
        margin-top: 1em;
        font-weight: 500;
        font-size: 1.8rem;
    }
    .ftr-reserve-unit-box .box-tel {
        margin-top: .5em;
        font-size: 1.6rem;
    }
    .ftr-reserve-unit-box .box-tel span {
        font-size: 3.4rem;
    }
    .ftr-reserve-unit-box .box-time {
        font-size: 1.4rem;
    }
    .ftr-reserve-unit-box .box-txt {
        margin-top: 1.5em;
        font-size: 1.6rem;
        line-height: 1.8;
    }
    .ftr-reserve-unit-box .box-btn {
        margin: 1.2em auto 0;
        padding: 1.2em 1.5em;
        width: 100%;
        background-color: transparent;
        color: #fff;
        font-size: 1.8rem;
    }
}


/* .search-criteria
-------------------------------------------------------- */
.search-criteria {
    margin: 0;
    padding: 0;
    width: 100%;
}
.search-criteria > div {
    z-index: 0 !important;
}
.search-criteria-inner {
    position: relative;
    z-index: 0;
    display: flex;
    margin: 0 auto;
    padding: 0 14px;
    max-width: 1640px;
    width: 100%;

    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 2%;
}

/* .search-criteria-map */
.search-criteria-map {
    position: relative;
    margin: 0 0 20px;
    padding: 0;
    width: 100%;
}

/* .search-criteria-map .map-ttl */
.search-criteria-map .map-ttl {
    margin: 0 0 .8em;
    padding: 0 0 .4em;
    border-bottom: 1px solid #cfc3a2;
    font-weight: 500;
    font-size: 2.0rem;
    line-height: 1;
}
.search-criteria-map .map-ttl span {
    display: inline-block;
    margin-right: .5em;
    padding: .4em .5em;
    border: 2px solid #dab84b;
    background: #dab84b;
    color: #fff;
}

/* .search-criteria-map .map-box */
.search-criteria-map .map-box {
    width: 100%;
}
.search-criteria-map .map-box#imagemapster {
    max-width: 100%;
    width: auto;
}
.search-criteria-map .map-box img {
    border: 1px solid #cfc3a2;
}

/* .search-criteria-box */
.search-criteria-box {
    margin: 0;
    width: 100%;
}
.search-criteria-box-inner {
    display: flex;

    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 2%;
}
.search-criteria-box .box-unit {
    overflow: hidden;
    padding: 20px 0 0;
    width: 100%;
}
.search-criteria-box .box-unit:first-child {
    padding: 0;
}

/* .search-criteria-box .box-unit-ttl */
.search-criteria-box .box-unit-ttl {
    margin: 0 0 .8em;
    padding: 0 0 .4em;
    border-bottom: 1px solid #cfc3a2;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1;
}
.search-criteria-box .box-unit-ttl span {
    display: inline-block;
    margin-right: .5em;
    padding: .4em .5em;
    border: 2px solid #dab84b;
    background: #dab84b;
    color: #fff;
}

/* .search-criteria-box .box-unit-list */
.search-criteria-box .box-unit-list {
    display: flex;
    margin: 0;
    padding: 0;

    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 2%;
}
.search-criteria-box .box-unit-list li {
    display: block;
    margin: 0 0 15px;
}
.search-criteria-box .box-unit-list li a {
    display: block;
    overflow: hidden;
    border: 1px solid #cfc3a2;
    border-radius: 3px;
    background-color: #fff;
    color: #020202;
    text-decoration: none;
    transition: background .2s;
}
.search-criteria-box .box-unit-list li a:hover {
    background-color: #e9e2ce;
}
.search-criteria-box .box-unit-list .img {
    overflow: hidden;
    width: 100%;
    height: 120px;
}
.search-criteria-box .box-unit-list .img img {
    width: 100%;
    height: 100% !important;
    font-family: "object-fit: cover; object-position: 50% 50%;"; /* IE対策 */
    transition: all .3s ease-in-out;

    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    -o-object-fit: cover;
       object-fit: cover;
}
.search-criteria-box .box-unit-list li a:hover .img img {
    transform: scale(1.1);
}
.search-criteria-box .box-unit-list li div {
    margin: 0;
    padding: .5em;
    color: #020202;
    text-align: center;
    font-size: 1.4rem;
}

/* .box-unit-list.price＆box-unit-list.feature */
.search-criteria-box .box-unit-list.price,
.search-criteria-box .box-unit-list.feature {
    display: flex;

    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1%;
}
.search-criteria-box .box-unit-list.price li,
.search-criteria-box .box-unit-list.feature li {
    flex: 1 1 calc(33.33333333% - 1%); /* 自動的に拡大・縮小する */
}
.search-criteria-box .box-unit-list.price li a,
.search-criteria-box .box-unit-list.feature li a {
    display: flex;
    border-radius: 5px;
    background-color: #fff;

    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.search-criteria-box .box-unit-list.price li a:hover,
.search-criteria-box .box-unit-list.feature li a:hover {
    background-color: #e9e2ce;
}
.search-criteria-box .box-unit-list.price li a div,
.search-criteria-box .box-unit-list.feature li a div {
    margin: 0;
    font-size: 1.5rem;
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .search-criteria-box .box-unit-list {
        display: flex;

        flex-flow: wrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 1%;
    }
    .search-criteria-box .box-unit-list li {
        width: calc((100% - 3%) / 4);
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .search-criteria-inner {
        display: flex;

        flex-flow: wrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 3%;
    }
    /* .search-criteria-map */
    .search-criteria-map {
        margin: 0;
        width: calc((100% - 3%) / 2);
    }
    /* .search-criteria-box */
    .search-criteria-box {
        width: calc((100% - 3%) / 2);
    }
    .search-criteria-box .box-unit-list {
        display: flex;

        flex-flow: wrap;
        justify-content: space-between;
        align-items: stretch;
        gap: 1%;
    }
    .search-criteria-box .box-unit-list li {
        width: calc((100% - 3%) / 4);
    }
}
