@charset "utf-8";

/*

common.css
Version: 2023.05.28

*/

/* --------------------------------------------------------
/* .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
/* .sub-campaign-bnr
/* .sub-announcement-bnr
/* .ftr-shoppingguide
/* .campaign-unit
-------------------------------------------------------- */


/* .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: #777;
    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: 500;
    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%;
}
.memory-list-item-cat {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 0 10px;
    /* min-width: 80px; */
    height: auto;
    background: rgba(38, 43, 47, .75);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.0rem;
    /* 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.5rem;
    line-height: 1.6;
}
.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-list-item-price {
    margin-top: 1em;
    color: #bf0000;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.memory-list-item-price .price {
    letter-spacing: -.01em;
    font-weight: 700;
    font-size: 170%;
    font-family: "Schibsted Grotesk", sans-serif;
}

/* .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 80px;
}
.related-list {
    display: flex;
    padding: 0;
    width: 100%;

    flex-wrap: wrap;
    justify-content: flex-start;
}
.related-list li {
    display: flex;
    margin: 1%;
    padding: 0;
    width: 48%;
    height: auto;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    /* background: url(../../assets/img/common/bg_related-list_01.jpg) no-repeat;
    background-size: cover; */
    text-align: center;
    word-break: break-all;
    line-height: 1;
    transition: opacity .4s ease;

    justify-content: center;
    align-items: center;
}
.related-list li a {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all .5s ease;

    justify-content: center;
    align-items: center;
}
.related-list li a::before,
.related-list li a::after {
    position: absolute;
    display: block;
    content: "";
}
.related-list li a::before {
    top: calc(50% - 12px);
    right: 18px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
}
.related-list li a::after {
    top: calc(50% - 2px);
    right: 29px;
    width: 4px;
    height: 4px;
    border-right: 1px solid rgba(0, 0, 0, .5);
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    transform: rotate3d(0, 0, 1, -45deg);
}
.related-list li a:hover {
    text-decoration: none;
    opacity: 1;
}

/* .related-list li.list-01 {
    background: url(../../assets/img/common/bg_related-list_01.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-02 {
    background: url(../../assets/img/common/bg_related-list_02.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-03 {
    background: url(../../assets/img/common/bg_related-list_03.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-04 {
    background: url(../../assets/img/common/bg_related-list_04.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-05 {
    background: url(../../assets/img/common/bg_related-list_05.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-06 {
    background: url(../../assets/img/common/bg_related-list_06.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-07 {
    background: url(../../assets/img/common/bg_related-list_07.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-08 {
    background: url(../../assets/img/common/bg_related-list_08.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-09 {
    background: url(../../assets/img/common/bg_related-list_09.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-10 {
    background: url(../../assets/img/common/bg_related-list_10.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-11 {
    background: url(../../assets/img/common/bg_related-list_11.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-12 {
    background: url(../../assets/img/common/bg_related-list_12.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-13 {
    background: url(../../assets/img/common/bg_related-list_13.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-14 {
    background: url(../../assets/img/common/bg_related-list_14.jpg) no-repeat;
    background-size: cover;
}
.related-list li.list-15 {
    background: url(../../assets/img/common/bg_related-list_15.jpg) no-repeat;
    background-size: cover;
} */

.related-list li .box {
    padding: 10px 40px 10px 10px;
    width: 100%;
}
.related-list li .box dt {
    padding: 0;
    color: #020202;
    /* text-align: center; */
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.4;
}
.related-list li .box dd.en {
    margin: .5em 0 0;
    color: rgba(223, 0, 58, 1);
    /* text-align: center; */
    text-align: left;
    letter-spacing: -.02em;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1;
}
.related-list li .box dd.txt {
    margin: 0 auto;
    padding: 0;
    width: 88%;
    color: #020202;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.4;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .related-list li {
        width: 31.333333333333332%;
    }
    .related-list li a:hover {
        background-color: rgba(0, 0, 0, .05);
        opacity: .8;
        transition: all .5s ease;
    }
    .related-list li .box dt {
        font-size: 2.0rem;
    }
    .related-list li .box dd.en {
        font-size: 1.8rem;
    }
}


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

    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(25, 114, 181, .8);
}
.campaign-appeal-ttl {
    position: relative;
    display: flex;
    padding: 16px 6%;
    width: 100%;
    background: #1972b5;
    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: 1em;
    font-size: 1.2rem;
}

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


/* .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: #214366;
    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: 900px;
    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;
}
.recommend-bnr-unit:nth-child(1) a {
    background: #fff url(../../assets/img/common/bg_recommend-bnr-unit_01_sp.png) no-repeat center center;
    background-size: cover !important;
}
.recommend-bnr-unit:nth-child(2) a {
    background: #fff url(../../assets/img/common/bg_recommend-bnr-unit_02_sp.png) no-repeat center center;
    background-size: cover !important;
}

/* .box-ttl */
.recommend-bnr-unit a .box-ttl {
    display: flex;
    overflow: hidden;
    padding: 4% 2%;
    width: calc(100% - 50%);
    /* border-radius: 3px 0 0 3px; */
    /* background: url(../../assets/img/common/bg_recommend-bnr_01.png) no-repeat; */
    background-color: rgba(190, 135, 55, .9);
    /* 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: rgba(190, 135, 55, .9);
    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: rgba(190, 135, 55, .9);
    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: 240px;
    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: rgba(190, 135, 55, 1);
}
.recommend-bnr-unit:nth-child(1) a:hover .box-ttl .box-ttl-more > span {
    color: rgba(190, 135, 55, 1);
}
.recommend-bnr-unit:nth-child(2) a:hover .box-ttl .box-ttl-more > span {
    color: rgba(190, 135, 55, 1);
}
.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: 50%;
    /* 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:nth-child(1) a {
        background: #fff url(../../assets/img/common/bg_recommend-bnr-unit_01_pc.png) no-repeat center center;
        background-size: cover !important;
    }
    .recommend-bnr-unit:nth-child(2) a {
        background: #fff url(../../assets/img/common/bg_recommend-bnr-unit_02_pc.png) no-repeat center center;
        background-size: cover !important;
    }
    .recommend-bnr-unit a .box-ttl {
        width: 40%;
        /* 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.0rem;
    }
    .recommend-bnr-unit a .box-ttl .box-ttl-more {
        width: 100%;
    }
    .recommend-bnr-unit a .box-ttl .box-ttl-more > span {
        font-size: 1.3rem;
    }
    .recommend-bnr-unit a .box-img {
        width: 60%;
        /* 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: 60px 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.7rem;
    line-height: 1.4;
}
.lineup-bnr-list-item .item-box-dd .en {
    margin: 3px 0 0 0;
    color: rgba(170, 153, 119, 1);
    letter-spacing: .2em;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: "Montserrat", 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: 80px;
    }
    .lineup-bnr-list-item .item-box-dd {
        width: calc(100% - 80px);
    }
}


/* .sub-campaign-bnr
-------------------------------------------------------- */
.sub-campaign-bnr {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.sub-campaign-bnr > ul {
    z-index: 0 !important;
}
.sub-campaign-bnr-list {
    z-index: 0;
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: 100%;

    justify-content: flex-start;
    flex-wrap: wrap;
}
.sub-campaign-bnr-list li {
    margin: 0;
    padding: 0;
    width: 100%;
}
.sub-campaign-bnr-list li a {
    position: relative;
    display: block;
    transition: all .3s ease;
}

/* .item-img */
.sub-campaign-bnr-list .item-img {
    position: relative;
}
.sub-campaign-bnr-list .item-img img {
    width: 100%;
}
.sub-campaign-bnr-list .item-img-ttl {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    overflow: hidden;
    padding: .6em .8em .8em;
    width: 100%;
    background: rgba(40, 51, 43, .9);
}
.sub-campaign-bnr-list .item-img-ttl .en {
    display: block;
    margin: 0 0 .1em 0;
    color: #fff;
    text-align: center;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, .7); */
    letter-spacing: .1em;
    font-weight: 500;
    /* font-style: italic; */
    font-size: 2.2rem;
    font-family: "Lato", sans-serif;
    line-height: 1.2;
    transition: all .3s ease;
}
.sub-campaign-bnr-list li a:hover .item-img-ttl .en {
    color: rgba(170, 153, 119, 1);
}
.sub-campaign-bnr-list .item-img-ttl .ja {
    display: block;
    margin: 0 0 0 0;
    color: #fff;
    text-align: center;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, .7); */
    letter-spacing: .1em;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1;
    transition: all .3s ease;
}
.sub-campaign-bnr-list li a:hover .item-img-ttl .ja {
    color: rgba(170, 153, 119, 1);
}

/* .item-txt */
.sub-campaign-bnr-list .item-txt {
    padding: 1.2em 1.4em;
    background: #f2ecee;
    color: #020202;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .sub-campaign-bnr-list li {
        margin-top: 2%;
        width: 100%;
    }
    .sub-campaign-bnr-list li:nth-child(1) {
        margin-top: 0;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .sub-campaign-bnr-list li {
        margin-top: 2%;
        margin-right: 2%;
        width: 49%;
    }
    .sub-campaign-bnr-list li:nth-child(1),
    .sub-campaign-bnr-list li:nth-child(2) {
        margin-top: 0;
    }
    .sub-campaign-bnr-list li:nth-child(2n) {
        margin-right: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .sub-campaign-bnr-list li {
        margin-top: 8%;
        width: 100%;
    }
    .sub-campaign-bnr-list li:nth-child(1) {
        margin-top: 0;
    }
}


/* .sub-announcement-bnr
-------------------------------------------------------- */
.sub-announcement-bnr {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.sub-announcement-bnr > ul {
    z-index: 0 !important;
}
.sub-announcement-bnr-list {
    z-index: 0;
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: 100%;

    justify-content: flex-start;
    flex-wrap: wrap;
}
.sub-announcement-bnr-list li {
    margin: 0;
    padding: 0;
    width: 100%;
}
.sub-announcement-bnr-list li a {
    position: relative;
    display: block;
    transition: all .3s ease;
}
.sub-announcement-bnr-list li a img {
    width: 100%;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .sub-announcement-bnr-list li {
        margin-top: 2%;
        margin-right: 2%;
        width: 49%;
    }
    .sub-announcement-bnr-list li:nth-child(1),
    .sub-announcement-bnr-list li:nth-child(2) {
        margin-top: 0;
    }
    .sub-announcement-bnr-list li:nth-child(2n) {
        margin-right: 0;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .sub-announcement-bnr-list li {
        margin-top: 2%;
        margin-right: 2%;
        width: 49%;
    }
    .sub-announcement-bnr-list li:nth-child(1),
    .sub-announcement-bnr-list li:nth-child(2) {
        margin-top: 0;
    }
    .sub-announcement-bnr-list li:nth-child(2n) {
        margin-right: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .sub-announcement-bnr-list li {
        margin-top: 4%;
        width: 100%;
    }
    .sub-announcement-bnr-list li:nth-child(1) {
        margin-top: 0;
    }
    .sub-announcement-bnr-list li a {
        opacity: 1;
    }
    .sub-announcement-bnr-list li a:hover {
        opacity: .8;
    }
}


/* .ftr-shoppingguide
-------------------------------------------------------- */
.ftr-shoppingguide {
    background: #f5f1f2;
}
.ftr-shoppingguide-inner {
    overflow: hidden;
    /* background: #fff; */
    margin: 0 auto 0;
    padding: 60px 20px 60px;
    max-width: 1520px;
    width: 100%;
}
.ftr-shoppingguide .shoppingguide {
    font-size: 1.4rem;
}
.ftr-shoppingguide .shoppingguide-inner {
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;

    flex-wrap: wrap;
}
.ftr-shoppingguide .shoppingguide-box {
    margin: 0;
    padding: 0;
    width: 100%;
}
.ftr-shoppingguide .shoppingguide-box .box-ttl {
    margin: 10px 0;
    padding: .5em 1em;
    background: rgba(40, 51, 43, 1);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
}
.ftr-shoppingguide .shoppingguide-box .box-list li {
    margin-bottom: 2em;
    line-height: 2;
}
.ftr-shoppingguide .shoppingguide-box .box-list li .box-list-ttl {
    position: relative;
    display: block;
    margin: 0 auto 5px;
    color: #020202;
    font-weight: 600;
    /* padding: 5px 0 5px 10px; */
    font-size: 1.4rem;
}
.ftr-shoppingguide .shoppingguide-box .box-list li .box-list-ttl::before {
    margin-bottom: 5px;
    padding-right: 10px;
    color: rgba(170, 153, 119, 1);
    content: "-";
    font-weight: bolder;
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ftr-shoppingguide .shoppingguide-box {
        margin-top: 2%;
        margin-right: 2%;
        width: 49%;
    }
    .ftr-shoppingguide .shoppingguide-box:nth-child(1),
    .ftr-shoppingguide .shoppingguide-box:nth-child(2) {
        margin-top: 0;
    }
    .ftr-shoppingguide .shoppingguide-box:nth-child(2n) {
        margin-right: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-shoppingguide .shoppingguide-box {
        margin-top: 4.054054054054055%; /* 60.00px */
        margin-right: 4.054054054054055%; /* 60.00px */
        width: 30.63063063063063%; /* 453.33px */
    }
    .ftr-shoppingguide .shoppingguide-box:nth-child(1),
    .ftr-shoppingguide .shoppingguide-box:nth-child(2),
    .ftr-shoppingguide .shoppingguide-box:nth-child(3) {
        margin-top: 0;
    }
    .ftr-shoppingguide .shoppingguide-box:nth-child(3n) {
        margin-right: 0;
    }
}


/* .campaign-unit
-------------------------------------------------------- */
.campaign-unit {
    overflow: hidden;
    /* background: #fff; */
    margin: 0 auto 0;
    padding: 0;
    max-width: 1520px;
    width: 100%;
}
.campaign-unit-list {
    padding: 0;
}
.campaign-unit-list .img {
    margin-bottom: 15px;
}
.campaign-unit-list .txt {
    margin: 0;
    font-size: 1.5rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .campaign-unit-inner {
        padding: 0;
    }
}
