@charset "utf-8";

/*

main.css
Version: 2025.07.26

*/

/* --------------------------------------------------------
/* CSSハック / .css-hack
/* パンくずリスト / .breadcrumb
/* ヘッダー / .hdr
/* グローバルナビ / .gnav
/* レイアウト / .wrap
/* コンテナー / .cntr
/* メインビジュアル / .visual-main
/* サブビジュアル / .visual-sub
/* メインコンテンツタイトル / .main-hdr
/* セクション / .section
/* コンテンツお問い合わせ / .cnts-contact
/* コンテンツお問い合わせ / .cnts-inquiry
/* コンテンツお問い合わせ / .cnts-support
/* コンテンツお問い合わせ / .cnts-customer
/* コンテンツお問い合わせ / .cnts-reservation
/* コンテンツピーアール / .cnts-pr
/* サブコンテンツ / .cnts-sub
/* サブお問い合わせ / .sub-contact
/* サブお問い合わせ / .sub-inquiry
/* サブピッキー / .sub-picky
/* サブピーアール / .sub-pr
/* サイドナビ / .snav
/* ローカルナビ / .lnav
/* 画像サイドナビ / .inav
/* フッター / .ftr
/* フッターお問い合わせ / .ftr-contact
/* フッターお問い合わせ / .ftr-inquiry
/* フッターロゴ / .ftr-logo
/* フッターピーアール / .ftr-pr
/* フッターバナー / .ftr-bnr
/* フッターオススメ / .ftr-suggest
/* フッターボックス / .ftr-box
/* フッターボックスバナー / .ftr-box-bnr
/* フッターSNSフォロー / .ftr-box-follow
/* フッターグループ / .ftr-group
/* フッターグループSNSフォロー / .ftr-group-follow
/* フッターサイトマップ / .ftr-sitemap
/* 追従バナーリンク / .fixlink-list
/* 追従タブリンク / .fixlink-tab
/* .fixed-link
/* .pagelist（もくじページ専用）
/* .pagetop-link
/* .pagetop-btn
/* reCaptcha
/* GoogleCalendar / .ggcalendar
/* GoogleMap / .ggmap
/* GoogleMapsAPI / .map-area
/* .youtube
/* .video-area
/* .pageplugin / Facebook Page Plugin（IFrame）
/* .facebook-wrap / Facebook Page Plugin（JavaScript SDK）
/* .twitter-wrap
/* .instagram-wrap
/* .hnav（hnav.js）
/* .hnav-toggle
/* .hnav-hamburger
/* .fnav
/* .profile（この記事を書いた人）
/* .scroll-point（ページ内リンクレスポンシブ対応）
/* .tab-menu（tab-menu.js）
/* .fixbnr（fixbnr.js）
-------------------------------------------------------- */


/* CSSハック / .css-hack
-------------------------------------------------------- */
/* 全要素アウトライン確認 */
/* * {
    outline: 1px solid magenta;
} */

/* ブロックレベル要素はピンク */
/* address,
blockquote,
div,
dl,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
li,
main,
ol,
p,
pre,
table,
ul,
button {
    outline: 1px solid pink;
} */

/* インライン要素は水色 */
/* a,
b,
br,
cite,
code,
em,
i,
img,
input,
label,
select,
small,
span,
strong,
sub,
sup,
textarea {
    outline: 2px solid skyblue;
} */

/* テキストの選択を禁止 */
/* body {
            user-select: none;
    -webkit-user-select: none;
        -ms-user-select: none;
       -moz-user-select: none;
     -khtml-user-select: none;
    -webkit-user-drag: none;
     -khtml-user-drag: none;
} */

/* 画像の保存を禁止 */
/* .img-disabled img {
    pointer-events: none;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-touch-callout: none;
       -moz-user-select: none;
            touch-callout: none;
            user-select: none;
} */

/* chrome & safari & opera hack（webkit系の3ブラウザ全てを指定） */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .css-hack {
        color: red;
    }
}

/* chrome & opera hack（Safariを除いたwebkit系2つを指定） */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    .css-hack {
        color: blue;
    }
}

/* safari hack（Safari指定） */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    _::-webkit-full-page-media,
    _:future,
    :root .css-hack {
        color: green;
    }
}

/* Firefox hack（Firefox指定） */
@-moz-document url-prefix() {
    .css-hack {
        color: orange;
    }
}

/* Edge hack（レガシー版指定）※2021年11月現在無効 */
@supports (-ms-ime-align: auto) {
    .css-hack {
        color: purple;
    }
}

/* Edge hack（Chromium指定）※2021年11月現在無効 */
_:lang(x)::-ms-,
.css-hack {
    color: purple;
}

/* IE10 & IE11 hack（IE10 & 11指定） */
_:-ms-input-placeholder,
:root .css-hack {
    color: gray;
}

/* IE11 hack */
_:-ms-lang(x)::-ms-backdrop,
.css-hack {
    color: gray;
}


/* パンくずリスト / .breadcrumb
-------------------------------------------------------- */
.breadcrumb {
    margin: 0 auto 1.5em;
    padding: 0 14px;
    max-width: 1640px;
    width: 100%;
    /* border-top: 1px solid #e5e5e5;
    background: #fff; */
    font-size: 1.2rem;
}
.breadcrumb ul {
    margin: 0 auto;
    width: 100%;
}
.breadcrumb li {
    display: inline;
    margin: 0 0 0 3px !important;
    color: #020202;
    font-weight: 400;
}
.breadcrumb li::after {
    padding: 0 0 0 6px;
    color: #a7a7a7;
    content: "\e848";
    font-weight: normal;
    font-size: 1.2rem;
    font-family: "webfont";
}
.breadcrumb li:last-child::after {
    content: "";
}
.breadcrumb li a {
    color: #020202;
    /* text-decoration: none; */
}
.breadcrumb li:first-child a::before {
    margin-right: 3px;
    color: #a7a7a7;
    content: "\e81e";
    text-decoration: none;
    font-weight: normal;
    font-size: 1.2rem;
    font-family: "webfont";
}
.breadcrumb li a:hover span {
    text-decoration: underline;
}

/* Breadcrumb NavXT対応 */
.breadcrumb li.post,
.breadcrumb li .post {
    margin: 0;
    padding: 0;
    border: 0;
}
.breadcrumb li.archive::before,
.breadcrumb li.archive::after,
.breadcrumb li.category::before,
.breadcrumb li.category::after,
.breadcrumb li .archive::before,
.breadcrumb li .archive::after,
.breadcrumb li .category::before,
.breadcrumb li .category::after {
    display: inline;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .breadcrumb {
        margin: 0 auto 1.5em;
        padding: 0 20px;
    }
}


/* ヘッダー / .hdr
-------------------------------------------------------- */
.hdr {
    /* position: relative; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0;
    width: 100%;
    height: auto;
    /* border-top: 3px solid #1972b5; */
    background-color: #fff;
    /* box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2); */
    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;
}
.hdr-inner {
    display: flex;
    padding: 0 0 0 14px;
    width: 100%;
    height: 60px;
    /* justify-content: center; */

    justify-content: space-between;
    align-items: center;
}

/* .hdr-logo */
.hdr-logo {
    display: flex;
    overflow: hidden;
    margin-right: auto;
    padding: 0 70px 0 0;
    width: 100%;
    line-height: 1;

    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: center;
}
.hdr-logo-txt {
    display: inline-block;
    overflow: hidden;
    margin: 0 0 2px 0;
    width: 100%;
    color: #020202;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.0rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8; /* Emoji対策 */
}
.hdr-logo-ttl {
    display: flex;
    width: 100%;

    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.hdr-logo-ttl a {
    display: inline-block;
    width: 230px;
    text-decoration: none;
}
.hdr-logo-ttl a img {
    width: 230px;
}
.hdr-logo-ttl a img,
.hdr-logo-ttl-catch {
    display: inline-block;
    vertical-align: middle;
}
.hdr-logo-ttl-catch {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0 0 0 5px;
    padding: 0 0 0 5px;
    /* height: 20px; */
    max-width: 140px;
    width: 100%;
    background: rgba(255, 96, 16, 1);
    color: #fff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 1.0rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;

    flex: 1;
}
/* .hdr-logo-ttl-catch::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: auto 0;
    width: 1px;
    height: 46px;
    background-color: rgba(219, 219, 219, .8);
    content: "";
} */
.hdr-logo-ttl-office {
    margin-top: 0;
    font-size: 1.2rem;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    /* .hdr-logo-ttl-catch {
        display: none;
    } */
    .hdr-logo-ttl-office {
        display: none;
    }
    .hdr-box {
        display: none;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    /* .hdr-logo-ttl-catch {
        display: none;
    } */
    .hdr-logo-ttl-office {
        display: none;
    }
    .hdr-box {
        display: none;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .hdr {
        position: relative;
        width: 100%;
        height: 160px;
        /* background: #fff url(../../assets/img/common/bg_hdr.png) repeat-x 0 0; */
        /* border-top: 5px solid #333; */
        border: 0;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .05);
        transform: none;
    }
    .hdr.fixed {
        position: fixed;
        top: 0;
        bottom: auto;
        z-index: 99999999;
        width: 100%;
        background: rgba(0, 0, 0, .5);
        /* background: rgba(255, 255, 255, 1); */
        box-shadow: 0 3px 6px rgba(0, 0, 0, .05);

        backface-visibility: hidden;
    }
    .hdr-inner {
        padding: 0 30px 0;
        height: auto;

        justify-content: space-between;
        align-items: center;
    }

    /* .hdr-logo */
    .hdr-logo {
        margin-top: 10px;
        padding: 0 10px 0 0;
        max-width: 880px;

        flex: 1;
        flex-flow: row-reverse wrap;
        justify-content: flex-end;
        align-items: center;
    }
    .hdr-logo-txt {
        position: relative;
        display: flex;
        margin: 0 0 0 15px;
        padding: 0 0 0 15px;
        max-height: 56px;
        height: auto;
        color: #a7a7a7;
        text-overflow: clip;
        white-space: normal;
        font-size: 1.0rem;

        align-items: flex-start;
        flex: 1;
    }
    .hdr-logo-txt::after {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        margin: auto 0;
        width: 1px;
        height: 46px;
        background-color: rgba(219, 219, 219, .8);
        content: "";
    }
    .hdr-logo-ttl {
        width: 340px;
    }
    .hdr-logo-ttl a {
        position: relative;
        width: 340px;
    }

    /* .hdr-logo-ttl a::after {
        position: absolute;
        top: 50%;
        right: 0;
        display: block;
        margin: -48px -70px 0 0;
        width: 50px;
        height: 78px;
        background: url(../../assets/img/common/img_sdgs.svg) no-repeat 0 0;
        content: "";
    } */

    .hdr-logo-ttl a img {
        width: 340px;
    }

    /* .hdr-box */
    .hdr-box {
        /* position:relative; */
        display: flex;
        padding: 0;
        max-width: 580px;
        /* width: 100%; */
        text-align: left;

        flex-flow: column wrap;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .hdr-box-btn {
        display: flex;
        font-size: 0;

        justify-content: space-between;
        align-items: center;
    }
    .hdr-box-btn li {
        display: inline-block;
        overflow: hidden;
        margin-left: 18px;
        vertical-align: top;
    }
    .hdr-box-btn li:first-child {
        margin-left: 0;
    }
    .hdr-box-btn li:nth-child(3) {
        margin-left: 10px;
    }
    .hdr-box-btn-info {
        /* margin: 17px 0 0 0; */
        /* padding: 0 15px 0 15px; */
        /* border-left: 1px solid #d0d2db; */
        text-align: right;
    }
    .hdr-box-btn-info-time {
        display: block;
        margin-top: 0;
        color: #020202;
        font-size: 1.1rem;
        line-height: 1.2;
    }
    .hdr-box-btn-info-tel {
        display: block;
        color: #020202;
        text-decoration: none;
        letter-spacing: -.02em;
        font-weight: 500;
        font-size: 4.4rem;
        font-family: "Barlow Semi Condensed", sans-serif;
        line-height: 1;
    }
    .hdr-box-btn-info-tel .ico {
        position: relative;
        top: -1px;
        margin-right: 6px;
        color: rgba(255, 96, 16, 1);
        font-size: 80%;
    }
    .hdr-box-btn-contact {
        margin-top: 4px;
    }
    .hdr-box-btn-contact:hover {
        /* padding-top: 3px; */
    }
    .hdr-box-btn-contact a {
        display: block;
        padding: 0;
        width: 180px;
        height: 52px;
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-weight: 700;
        line-height: 52px;
    }
    .hdr-box-btn-contact-inner a {
        position: relative;
        border-radius: 3px;
        background: #ff6010;
        /* background: linear-gradient(45deg, rgba(108, 210, 153, 1), #1ab4b0); */
        background: linear-gradient(180deg, #ff6010 85%, #f34a10 100%);
        /* border-bottom: 3px solid #8c4202; */
        /* box-shadow: 0 3px 0 #8c4202; */
    }
    /* .hdr-box-btn-contact-inner a::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-width: 52px 250px 0 0;
        border-style: solid;
        border-color: rgba(255, 255, 255, .1) transparent transparent transparent;
        content: "";
        transition: all .3s ease;
    } */
    .hdr-box-btn-contact:hover .hdr-box-btn-contact-inner a {
        /* border-bottom: none; */
        box-shadow: none;
    }
    .hdr-box-btn-contact-ico {
        /* display: block; */
        margin-right: 7px;
        font-size: 2.4rem;
        line-height: 1;
    }
    .hdr-box-btn-contact-txt {
        /* display: block; */
        font-size: 1.2rem;
    }
    .hdr-box-btn-catch {
        margin-right: 0;
        padding: .55em .8em;
        border: 2px solid rgba(224, 224, 224, 1);
        border-radius: 0;
        background-color: rgba(255, 255, 255, 1);
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 1.1;
    }
    .hdr-box-btn-catch-txt {
        color: rgba(255, 96, 16, 1);
        font-size: 1.6rem;
    }

    /* .hdr-box-list */
    .hdr-box-list {
        /* line-height: 1; */
        display: flex;
        margin-bottom: 5px;
        padding: 0;
        /* border-radius: 0 0 5px 5px; */
        background-color: rgba(23, 30, 32, 1);
        text-align: center;
        font-size: 0;

        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
    }
    .hdr-box-list-item {
        position: relative;
        display: flex;
        margin: 0;
        padding: 0;
        vertical-align: middle;
        /* text-transform: uppercase; */
        font-size: 1.1rem;
        font-family: "Noto Sans JP", sans-serif;

        align-items: center;
    }
    .hdr-box-list-item:last-child {
        margin: 0;
    }
    .hdr-box-list-item::after {
        position: absolute;
        top: 13px;
        right: -4px;
        display: block;
        width: 8px;
        height: 1px;
        background: #fff;
        content: "";
        opacity: 1;
        transform: rotate(-75deg);
    }
    .hdr-box-list-item:last-child::after {
        content: none;
    }
    .hdr-box-list-item a {
        cursor: pointer;
    }
    .hdr-box-list-item > a {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 0 6px;
        height: 100%;
        color: #fff;
        /* text-decoration: underline; */

        justify-content: center;
        align-items: center;
    }
    /* .hdr-box-list-item > a::after {
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 0;
        height: 2px;
        background: #fff;
        content: "";
    }
    .hdr-box-list-item > a:hover::after {
        width: 100%;
    } */
    .hdr-box-list-item > a .ja {
        padding: .2em 0 0;
        color: #fff;
        letter-spacing: .2em;
        font-weight: 700;
        font-size: 1.5rem;
        font-family: "Noto Sans JP", sans-serif;
    }
    .hdr-box-list-item > a .en {
        padding: .2em 0 .2em;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .3em;
        font-weight: 500;
        font-size: 1.1rem;
        font-family: "Poppins", sans-serif;
        line-height: 1;
    }
    .hdr-box-list-item > a .ico {
        position: relative;
        top: -1px;
        margin-right: 5px;
        color: #2993b6;
        font-size: 1.0rem;
    }
    .hdr-box-list-item > span {
        padding: 0 12px;
        color: #fff;
        font-weight: 400;
        font-size: 1.1rem;
    }

    /* .slide-dropdown.js（ドロップダウンメニュー） */
    .hdr-box-list-item.slide .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        display: none;
        overflow: hidden;
        width: 100%;
        /* background: rgba(0, 0, 0, .7); */
    }

    /* .drop（ドロップメニュー） */
    .hdr-box-list-item.slide.drop {
        position: relative;
    }
    .hdr-box-list-item.slide.drop .dropdown {
        width: 160px;
    }
    .hdr-box-list-item.slide:nth-child(3).drop .dropdown {
        width: 170px;
    }
    .hdr-box-list-item.slide:nth-child(4).drop .dropdown {
        width: 140px;
    }
    .hdr-box-list-item.slide:nth-child(5).drop .dropdown {
        width: 160px;
    }
    .hdr-box-list-item.slide:nth-child(6).drop .dropdown {
        width: 140px;
    }
    .hdr-box-list-item.slide.drop:last-child .dropdown {
        right: 0;
        left: auto;
    }
    .hdr-box-list-item.slide.drop .dropdown .dropdown-list {
        display: flex;
        border: 1px solid #d9dee6;
        border-radius: 0;
        background-color: #fff;
        box-shadow: 4px 4px 8px 0 rgba(227, 227, 227, .3);

        flex-flow: column nowrap;
    }
    .hdr-box-list-item.slide.drop .dropdown .dropdown-list li {
        margin: 0;
    }
    .hdr-box-list-item.slide.drop .dropdown .dropdown-list li:nth-child(even) {
        background-color: #fcfcfc;
    }
    .hdr-box-list-item.slide.drop .dropdown .dropdown-list li a {
        display: block;
        overflow: hidden;
        padding: 1em 0;
        background: transparent;
        color: #384359;
        text-align: center;
        /* text-decoration: none; */
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 400;
        font-size: 1.3rem;
    }
    .hdr-box-list-item.slide.drop .dropdown .dropdown-list li a:hover {
        background-color: rgba(200, 200, 200, .2);
        /* text-decoration: none; */
    }
    .hdr-box-txt {
        position: absolute;
        top: 14px;
        right: 0;
        margin: 0;
        color: #004981;
        font-weight: 700;
        font-size: 1.6rem;
    }
}

/* pc（1400px以上の場合に適用） */
@media (min-width: 1400px) {
    .hdr-logo-txt {
        font-size: 1.4rem;
    }
    .hdr-box-btn-contact a {
        width: 230px;
    }
    .hdr-box-btn-contact-txt {
        font-size: 1.6rem;
    }
    .hdr-box-list-item {
        font-size: 1.2rem;
    }
    .hdr-box-list-item > a {
        padding: 0 14px;
    }
    .hdr-box-list-item > span {
        font-size: 1.1rem;
    }
}


/* グローバルナビ / .gnav
-------------------------------------------------------- */
/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .gnav {
        display: none;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .gnav {
        display: none;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .gnav {
        position: absolute;
        bottom: 0;
        width: 100%;
        /* height: 60px; */
        /* border-top: 1px solid #eee;
        border-bottom: 3px solid rgba(228, 228, 228, 1); */
        background: #fff;
        transition: all .3s ease;
        transform: translate3d(0, 0, 0);

        backface-visibility: hidden;
    }
    .gnav.fixed {
        position: fixed;
        top: 0;
        bottom: auto;
        z-index: 99999999;
        width: 100%;
        border-top: none;
        /* border-bottom: 3px solid rgba(228, 228, 228, 1); */
        box-shadow: 0 3px 6px rgba(0, 0, 0, .05);
    }
    .gnav-list {
        display: table;
        margin: 0 auto;
        padding: 0 20px;
        /* max-width: 1720px; */
        max-width: 1800px;
        width: 100%;
        /* table-layout: fixed; */
    }
    .gnav-list-item {
        display: table-cell;
        /* width: 20%; */
        margin: 0;
        padding: 0;
        vertical-align: middle;
    }
    .gnav-list-item:nth-child(1) {
        width: 7.5%; /* 132.00px */
    }
    .gnav-list-item:nth-child(2) {
        width: 15%; /* 264.00px */
    }
    .gnav-list-item:nth-child(3) {
        width: 15%; /* 264.00px */
    }
    .gnav-list-item:nth-child(5) {
        width: 16.25%; /* 286.00px */
    }
    .gnav-list-item:nth-child(7) {
        width: 16.25%; /* 286.00px */
    }
    .gnav-list-item-ja {
        display: block;
        color: #020202;
        /* text-shadow: 1px 1px 1px rgba(255, 255, 255, .3); */
        letter-spacing: .1em;
        font-weight: 600;
        font-size: 1.7rem;
        font-family: "Noto Sans JP", sans-serif;
        /* font-family: "Noto Serif JP", serif; */
        /* font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
        line-height: 1.5;
    }
    .gnav-list-item-en {
        display: block;
        color: rgba(255, 96, 16, 1);
        /* text-shadow: 1px 1px 1px rgba(255, 255, 255, .3); */
        letter-spacing: .08em;
        font-weight: 500;
        font-size: 1.2rem;
        font-family: "Montserrat", sans-serif;
        /* font-family: "Noto Sans JP", sans-serif; */
        /* font-family: "Noto Serif JP", serif; */
        /* font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
        line-height: 1.6;
    }
    /* .gnav-list-item:nth-child(3) .gnav-list-item-en {
        line-height: 1.2;
    } */
    .gnav-list-item-ja.home {
        position: relative;
        box-sizing: content-box;
    }
    .gnav-list-item-ja.home::before {
        position: absolute;
        top: 9px;
        left: 50%;
        display: block;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-top: 0;
        border-bottom-color: #212121;
        content: "";
        transform: translate(-50%, 0);
    }
    .gnav-list-item-ja.home::after {
        position: absolute;
        top: 18px;
        left: 50%;
        display: block;
        width: 14px;
        height: 10px;
        border: 4px solid #212121;
        border-top-width: 4px;
        border-bottom: 0;
        content: "";
        transform: translate(-50%, 0);
    }
    .gnav-list-item .ico {
        position: relative;
        top: -1px;
        margin-left: 5px;
        color: rgba(255, 96, 16, 1);
        font-weight: 700;
        font-size: 1.8rem;
    }

    /* 罫線 */
    .gnav-list-item:first-child > a > span::before,
    .gnav-list-item > a > span::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        display: block;
        margin: auto 0;
        width: 1px;
        height: 20px;
        background-color: rgba(219, 219, 219, .8);
        content: "";
    }
    .gnav-list-item:first-child > a > span::before {
        left: 0;
    }

    /* ホバーエフェクト */
    .gnav-list-item a {
        cursor: pointer;
    }
    .gnav-list-item > a {
        position: relative;
        display: block;
        padding: 10px 0 0;
        height: 66px;
        color: #020202;
        text-align: center;
        text-decoration: none;
        line-height: 1.5;
        transition: all .3s ease-in-out;
    }
    /* .gnav-list-item > a::before {
        position: absolute;
        bottom: -1px;
        left: 0;
        display: block;
        width: 0;
        height: 4px;
        background: rgba(255, 96, 16, 1);
        content: "";
        transition: all .3s linear;
    } */
    .gnav-list-item > a.current::before,
    .gnav-list-item > a:hover::before {
        width: 100%;
    }
    .gnav-list-item > a:hover {
        background: #fff;
    }
    .gnav-list-item > a:hover .gnav-list-item-ja {
        color: #020202;
    }
    .gnav-list-item > a:hover .gnav-list-item-ja.home::before {
        position: absolute;
        top: 9px;
        left: 50%;
        display: block;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-top: 0;
        border-bottom-color: #212121;
        content: "";
        transform: translate(-50%, 0);
    }
    .gnav-list-item > a:hover .gnav-list-item-ja.home::after {
        position: absolute;
        top: 18px;
        left: 50%;
        display: block;
        width: 14px;
        height: 10px;
        border: 4px solid #212121;
        border-top-width: 4px;
        border-bottom: 0;
        content: "";
        transform: translate(-50%, 0);
    }

    /* .slide-dropdown.js（ドロップダウンメニュー） */
    .gnav-list-item.slide .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        display: none;
        overflow: hidden;
        width: 100%;
        background: rgba(1, 92, 172, .97);
    }

    /* .drop（ドロップメニュー） */
    .gnav-list-item.slide.drop {
        position: relative;
    }
    .gnav-list-item.slide.drop .dropdown {
        width: 252px;
    }
    .gnav-list-item.slide.drop:last-child .dropdown {
        right: 0;
        left: auto;
    }
    .gnav-list-item.slide.drop .dropdown .dropdown-list {
        display: flex;

        flex-flow: column nowrap;
    }
    .gnav-list-item.slide.drop .dropdown .dropdown-list li {
        margin: 0;
    }
    .gnav-list-item.slide.drop .dropdown .dropdown-list li a {
        display: block;
        overflow: hidden;
        padding: 1em 1.5em;
        background: transparent;
        color: #fff;
        text-align: center;
        /* text-decoration: none; */
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: 400;
        font-size: 1.4rem;
    }
    .gnav-list-item.slide.drop .dropdown .dropdown-list li a:hover {
        background-color: rgba(200, 200, 200, .2);
        /* text-decoration: none; */
    }

    /* .mega（メガメニュー） */
    .gnav-list-item.slide.mega {
        position: static;
    }
    .gnav-list-item.slide.mega .dropdown {
        width: 100%;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list {
        display: flex;
        margin: 0 auto;
        padding: 40px 20px 20px;
        max-width: 1640px;
        width: 100%;

        flex-wrap: wrap;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li {
        margin: 0 1.5% 1.5% 0;
        max-width: 18.8%;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li:nth-child(5n) {
        margin-right: 0;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li a {
        display: block;
        color: #fff;
        text-decoration: none;
        font-weight: 400;
        font-size: 1.4rem;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li a .ico {
        position: relative;
        top: -1px;
        margin-right: 5px;
        color: #fff;
        font-weight: 700;
        font-size: 1.4rem;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li a .img {
        overflow: hidden;
        margin: 0 0 10px;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li a .img img {
        transition: .3s ease;
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li a:hover .img img {
        transition: .3s ease;
        transform: scale(1.1);
    }
    .gnav-list-item.slide.mega .dropdown .dropdown-list li a .txt {
        margin: 0;
        text-align: center;
    }
}


/* レイアウト / .wrap
-------------------------------------------------------- */
.wrap {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 100%;
    height: auto;
    /* background: #fff url(../../assets/img/common/bg_wrap.jpg) repeat top left;
    background: rgba(251, 243, 237, 1); */
    background: #fff url(../../assets/img/common/bg_ptn_27.png) repeat 0 0;
}
.cnts {
    display: flex;
    margin: 0 auto 20px;
    padding: 0 14px;
    max-width: 1640px;
    width: 100%;

    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: space-between;
}
.cnts.cnts-full {
    padding: 0 0;
    max-width: 100%;
}
/* .page-template-default main, */
.page-template-page-onecolumn main,
.page-template-page-comingsoon main,
.page-template-page-contact-page main,
.page-template-page-staff-page main,
.page-template-page-member-page main,
/* .post-type-archive-works main,
.post-type-archive-voice main,
.post-type-archive-dictionary main,
.post-type-archive-case main, */
.realestate-template-default main,
.area-template-default main,
.cnts-main {
    margin-top: 0;
    margin-bottom: 55px;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 15px -8px #ebe8dd;
}
/* .cnts-main {
    margin-top: 0;
    width: 100%;
} */
.page-home .cnts-main {
    margin-top: 0;
}
.cnts-sub {
    margin-top: 15px;
    width: 100%;
}
.page-home .cnts-sub {
    margin-top: 0;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .wrap {
        margin-top: 0;
    }
    .cnts {
        margin: 0 auto 50px;
        padding: 0 20px;

        flex-flow: row wrap;
        /* flex-flow: row-reverse wrap; */
        justify-content: space-between;
        align-items: flex-start;
    }
    .cnts.cnts-full {
        padding: 0 0;
    }
    /* .page-template-default main, */
    .page-template-page-onecolumn main,
    .page-template-page-comingsoon main,
    .page-template-page-contact-page main,
    .page-template-page-staff-page main,
    .page-template-page-member-page main,
    /* .post-type-archive-works main,
    .post-type-archive-voice main,
    .post-type-archive-dictionary main,
    .post-type-archive-case main, */
    .realestate-template-default main,
    .area-template-default main,
    .cnts-main {
        padding: 40px 40px 40px;
    }
    .cnts-main {
        width: 77.00%; /* 1232.00px */
    }
    .cnts-sub {
        margin-top: 0;
        width: 20.00%; /* 320.00px */
    }
}


/* コンテナー / .cntr
-------------------------------------------------------- */
.cntr {
    width: 100%;
}
.cntr .cnts .main {
    width: 100%;
}


/* メインビジュアル / .visual-main
-------------------------------------------------------- */
.visual-main {
    position: relative;
    margin: 0;
    width: 100%;
    height: calc(100vh - 60px) !important;
    background: #000 url(../../assets/img/home/bg_visual-main_01.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.visual-main-inner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0); */
    background: url(../../assets/img/common/bg_overlay_18.png) repeat 0 0;
    content: "";
}
.visual-main-box {
    /* margin: 0 auto;
    padding: 13% 2% 9%;
    max-width: 980px;
    height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin: 0;
    padding: 0;
    width: 90%;
    height: auto;
    text-align: center;
    transform: translate(-50%, -50%);
}
.visual-main-box-ttl {
    margin: 0 0 .5em;
    padding: 0;
    /* border-top: 1px solid rgba(255, 255, 255, .25); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 1); */
    color: #fff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, .5);
    letter-spacing: -1px;
    font-weight: 600;
    font-size: 3.8rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.2;
}
.visual-main-box-ttl span.small {
    font-size: 40%;
}
.visual-main-box-txt {
    margin: 0 0 35px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, .5);
    font-weight: 500;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
}
.visual-main-box-btn {
    margin: 2.5em 0 0;
}
.visual-main-box-btn a {
    padding: 13px 25px;
    max-width: 340px;
    width: 100%;
    border: 2px solid #fff;
    border-radius: 0;
    background-color: transparent;
    /* Old Browsers */
    background-position: center top;
    background-repeat: repeat-x;
    color: #fff;
    text-align: center;
    text-decoration: none;
    /* text-shadow: 0 3px 15px rgba(0, 0, 0, 1); */
    font-weight: 500;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
}

/* visual-main-scroll */
.visual-main-scroll {
    position: absolute;
    bottom: 4%;
    z-index: 2;
    width: 100%;
    height: 39px;
    text-align: center;
}

/* #visual-main-scroll */
#visual-main-scroll {
    margin-top: -94px;
    padding-top: 94px;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .visual-main {
        padding: 10% 0;
        /* background: #000 url(../../assets/img/home/bg_visual-main_sp.jpg) no-repeat center center fixed;
        background-size: cover; */
    }
    .visual-main-box-txt {
        margin: 2em auto auto;
        max-width: 85%;
        text-align: left;
        font-size: 1.4rem;
        line-height: 1.7;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .visual-main {
        padding: 2.5% 0;
        /* background: #000 url(../../assets/img/home/bg_visual-main_pc.jpg) no-repeat center center fixed;
        background-size: cover; */
    }
    .visual-main-box-ttl {
        letter-spacing: 1px;
        font-size: 4.0rem;
    }
    .visual-main-box-txt {
        font-size: 1.8rem;
        line-height: 1.8;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .visual-main {
        padding: 2.5% 0;
        min-height: 450px;
        /* background: #000 url(../../assets/img/home/bg_visual-main_pc.jpg) no-repeat center center fixed;
        background-size: cover; */
        height: calc(100vh - 172px) !important;
    }
    .visual-main-box {
        max-width: 1920px;
        width: 88%;
        text-align: left;
    }
    .visual-main-box-ttl {
        letter-spacing: 2px;
        font-size: 8.0rem;
    }
    .visual-main-box-txt {
        font-size: 1.8rem;
        line-height: 1.8;
    }
    .visual-main-box-btn a {
        font-size: 1.8rem;
    }
    .visual-main-box-btn a:hover {
        text-shadow: none;
    }
    .visual-main-box-btn a.btn {
        transition: .3s;
    }
    .visual-main-box-btn a.btn:hover {
        border: 2px solid #fff;
        background: #fff;
        color: #0f2b6a;
        opacity: 1;
    }
    .visual-main-scroll a:link,
    .visual-main-scroll a:visited {
        transition: opacity .3s ease-out;
    }
    .visual-main-scroll a:hover,
    .visual-main-scroll a:active {
        opacity: .6;
    }
}


/* サブビジュアル / .visual-sub
-------------------------------------------------------- */
.visual-sub {
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    height: 222px;
}
.visual-sub-bg {
    position: relative;
    background: #333 url(../../assets/img/common/bg_visual-sub-bg_sp.jpg) no-repeat center center;
    background-size: cover !important;
}
.visual-sub-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 91, 172, .1); */
    background: rgba(23, 30, 32, .33) url(../../assets/img/common/bg_overlay_24.png) repeat 0 0;
    content: "";
}
.visual-sub-inner {
    position: relative;
    z-index: 2;
    display: table;
    margin: 0 auto;
    padding: 0 14px;
    max-width: 1640px;
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 255, 255, .5); */
}
.visual-sub-box {
    display: table-cell;
    padding: 0;
    width: 100%;
    color: #fff;
    vertical-align: middle;
    text-align: center;
}
.visual-sub-box-txt {
    position: relative;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(0, 0, 0, .94);
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 1.4rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.1;
    /* opacity: .5; */
}
.visual-sub-box-txt span {
    position: relative;
    display: inline-block;
    margin-bottom: .2vw;
    padding-bottom: .5vw;
}
.visual-sub-box-txt span::before,
.visual-sub-box-txt span::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 6vw;
    height: 6px;
    background-color: #fff;
    content: "";
    opacity: .5;
    transform: translateX(calc(-50% - 1.5vw)) skewX(-35deg);
}
.visual-sub-box-txt span::after {
    transform: translateX(calc(-50% - -1.5vw)) skewX(-35deg);
}

/* .visual-sub-box-txt .ico {
    display: block;
    margin: 0 auto;
    color: #39b54a;
    font-size: 5.2rem;
    line-height: 1;
} */

.visual-sub-box-ttl {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    /* background: #fff; */
    color: #fff;
    text-align: center;
    text-shadow: 0 0 18px rgba(0, 0, 0, .94);
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 2.0rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
/* .visual-sub-box-ttl::before,
.visual-sub-box-ttl::after {
    position: absolute;
    display: block;
    width: 15%;
    height: 25%;
    border-width: 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 1);
    content: "";
    opacity: .5;
}
.visual-sub-box-ttl::before {
    top: 0;
    right: 0;
    border-top-width: 3px;
    border-right-width: 3px;
}
.visual-sub-box-ttl::after {
    bottom: 0;
    left: 0;
    border-bottom-width: 3px;
    border-left-width: 3px;
} */
/* .visual-sub-box-ttl span {
    display: inline;
    background: linear-gradient(transparent 67%, #fdee21 67%, #fdee21);
} */

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .visual-sub {
        height: 94px;
    }
    .visual-sub-box-txt {
        font-size: 1.4rem;
    }
    .visual-sub-box-ttl {
        margin: 0;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .visual-sub {
        height: 160px;
    }
    .visual-sub-box-txt {
        font-size: 1.4rem;
    }
    .visual-sub-box-ttl {
        margin: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .visual-sub {
        height: 212px;
    }
    .visual-sub-bg {
        background: #333 url(../../assets/img/common/bg_visual-sub-bg_pc.jpg) no-repeat center center;
        background-size: cover !important;
    }
    .visual-sub-inner {
        padding: 0 20px;
        background-color: transparent;
    }
    .visual-sub-box {
        padding: 0;
    }
    .visual-sub-box-txt {
        margin: 0 auto 20px;
        /* text-align: left; */
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .visual-sub-box-ttl {
        margin: 0 auto .1em;
        /* text-align: left; */
        font-size: 3.5rem;
    }
}


/* メインコンテンツタイトル / .main-hdr
-------------------------------------------------------- */
.main-hdr {
    margin: 0 auto 33px;
    padding: 0 0 15px;
    width: 100%;
}
.main-hdr-img {
    position: relative;
    display: block;
    margin-bottom: 60px;
}
.main-hdr-img img {
    width: 100%;
}
.main-hdr-img.main-hdr-img-bg {
    width: 100%;
    height: 260px;
}
.main-hdr-img.main-hdr-img-bg img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 100%;"; /* IE対策 */

    -o-object-position: 0 100%;
       object-position: 0 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.main-hdr-img-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    margin: 0;
    padding: 40px 50px;
    width: auto;
    height: auto;
    border: 3px solid #fff;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    letter-spacing: .1em;
    /* text-shadow: rgba(0, 0, 0, .7) 0 0 10px; */
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
    transform: translate(-50%, -50%);
}
.main-hdr-img-txt span {
    font-size: 180%;
}
.main-hdr-ttl {
    position: relative;
    margin: 0 auto 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
    color: #020202;
    text-align: center;
    letter-spacing: .05em;
    font-weight: 600;
    font-size: 1.8rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
}
.main-hdr-ttl .sub {
    display: block;
    font-size: 64%;
}
.main-hdr-txt {
    line-height: 2.0;
}

/* .main-hdr-box */
.main-hdr-box {
    margin-bottom: 30px;
    padding: 15px;
    border: 5px solid rgba(255, 96, 16, 1);
}
.main-hdr-box .box-ttl {
    position: relative;
    margin-bottom: 1em;
    color: rgba(255, 96, 16, 1);
    letter-spacing: .05em;
    font-weight: 600;
    font-size: 2.4rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6em;
}
.main-hdr-box .box-ttl span {
    padding: 0 0 .2em;
    border-bottom: 3px dotted #e6e6e6;
    background: initial;
}
.main-hdr-box .box-list {
    display: flex;

    flex-flow: row wrap;
    justify-content: space-between;
}
.main-hdr-box .box-list > li {
    position: relative;
    margin-bottom: .75em;
    padding: .5em 1em .5em 1.8em;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    font-weight: 500;
}
.main-hdr-box .box-list.check > li::before {
    position: absolute;
    top: 18px;
    left: 5px;
    width: 7px;
    height: 13px;
    border-right: 3px solid rgba(255, 96, 16, 1);
    border-bottom: 3px solid rgba(255, 96, 16, 1);
    content: "";
    transform: rotate(50deg);
}

/* .main-hdr-catch */
.main-hdr-catch {
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.main-hdr-catch-inner {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 70px 14px;
    max-width: 980px;
    width: 100%;
}
.main-hdr-catch .ttl {
    position: relative;

    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
}
.main-hdr-catch .ttl-en {
    position: absolute;
    top: 5px;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    text-align: center;
}
.main-hdr-catch.left .ttl-en {
    text-align: left;
}
.main-hdr-catch .ttl-en .en {
    margin: 0;
    color: rgba(205, 205, 205, .25);
    white-space: nowrap;
    letter-spacing: -2px;
    font-weight: 700;
    font-size: 12rem;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
}
.main-hdr-catch .ttl-ja {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    width: 100%;
    text-align: center;
}
.main-hdr-catch.left .ttl-ja {
    text-align: left;
}
.main-hdr-catch .ttl-ja .ja {
    margin: 0;
    letter-spacing: .05em;
    font-weight: 700;
    font-size: 2.4rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}
.main-hdr-catch .ttl-copy {
    position: relative;
    z-index: 3;
    width: 100%;
}
.main-hdr-catch .ttl-copy .ja {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2;
}
.main-hdr-catch.left .ttl-copy .ja {
    text-align: justify;
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .main-hdr-img.main-hdr-img-bg {
        width: 100%;
        height: auto;
    }
    .main-hdr-ttl {
        font-size: 2.8rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .main-hdr-img.main-hdr-img-bg {
        width: 100%;
        height: auto;
    }
    .main-hdr-img-txt {
        padding: 40px 50px;
        font-size: 2.8rem;
    }
    .main-hdr-ttl {
        padding: 10px 0 40px;
        font-size: 3.9rem;
    }

    /* .main-hdr-box */
    .main-hdr-box {
        padding: 50px 80px;
    }
    .main-hdr-box .box-ttl {
        font-size: 3.2rem;
    }
    .main-hdr-box .box-list > li {
        width: 49%;
        font-size: 1.8rem;
    }

    /* .main-hdr-catch */
    .main-hdr-catch-inner {
        padding: 70px 0;
    }
    .main-hdr-catch.left .ttl-en {
        top: -5px;
        text-align: right;
    }
    .main-hdr-catch .ttl-ja .ja {
        font-size: 4.4rem;
    }
    .main-hdr-catch .ttl-copy .ja {
        font-size: 1.6rem;
    }
}


/* セクション / .section
-------------------------------------------------------- */
.sect {
    margin: 0 auto 60px;
}
.sect:last-child {
    margin: 0 auto 0;
}

/* .sect-ttl */
.sect-ttl,
.post-ttl {
    position: relative;
    margin: 0 auto 50px;
    /* border-radius: 3px; */
    padding: .75em .75em .75em 1em;
    border-left: 5px solid rgba(255, 96, 16, 1);
    background: rgba(248, 247, 244, 1);
    /* background: linear-gradient(135deg, transparent 25%, rgba(5, 70, 95, .05) 25%, rgba(5, 70, 95, .05) 50%, transparent 50%, transparent 75%, rgba(5, 70, 95, .05) 75%, rgba(5, 70, 95, .05));
    background-size: 4px 4px; */
    /* border: 1px solid #eee; */
    color: rgba(255, 96, 16, 1);
    text-align: left;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 2.6rem;
    /* font-size: calc(18px + 8 * (100vw - 320px) / 1600); */ /* 320px-18px | 1920px-26px */
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
}

/* .sect-ttl::before,
.post-ttl::before {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    border-top: 8px solid rgba(255, 96, 16, 1);
    content: "";
    transform: translateY(-50%);
} */

/* .sect-ttl::after,
.post-ttl::after {
    position: absolute;
    top: -8px;
    left: 8px;
    display: block;
    width: 2px;
    border-top: 8px solid #fff;
    content: "";
} */

.sect-ttl span a,
.post-ttl span a {
    color: rgba(255, 96, 16, 1);
}
.sect-ttl span a:hover,
.post-ttl span a:hover {
    color: rgba(255, 96, 16, 1);
    text-decoration: underline;
}

/* .sect-body */
.sect-body {
    margin-bottom: 50px;
}
.sect-body:last-child,
.sect-body > :last-child {
    margin-bottom: 0;
}
.sect-body-ttl {
    margin: 0 auto 20px;
    padding: 12px 30px 12px 20px;
    border-radius: 6px;
    /* border-left: 5px solid rgba(255, 96, 16, 1); */
    background-color: #faede1;
    color: #020202;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.6;
}

/* .sect-ftr */
.sect-ftr {
    padding: 20px 0 0;
    border-top: 1px dotted #ccc;
}
.sect-ftr .ftr-more {
    display: block;
    margin: 40px auto 0;
    padding: 10px 20px;
    max-width: 380px;
    width: 80%;
    border: 2px solid #e6e6e6;
    background-color: transparent;
    color: #000;
    text-align: center;
    transition: all .3s ease;
}
.sect-ftr .ftr-more .ico {
    position: relative;
    top: 12px;
    right: 0;
    float: right;
    font-size: 1.2rem;
}
.sect-ftr .ftr-more:hover {
    border-color: #0070c0;
    background-color: #0070c0;
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

/* sp（768px未満の場合に適用） */
@media (max-width: 767.98px) {
    .sect-ttl,
    .post-ttl {
        font-size: 1.8rem;
    }
}

/* tb（1200px未満の場合に適用） */
@media (max-width: 1199.98px) {
    .sect-ttl,
    .post-ttl {
        font-size: 1.8rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .sect-ttl,
    .post-ttl {
        font-size: 2.6rem;
    }
    .sect-body-ttl {
        margin-bottom: 20px;
        font-size: 1.4rem;
    }
}


/* コンテンツお問い合わせ / .cnts-contact
-------------------------------------------------------- */
.cnts-contact {
    margin: 0 auto 30px;
    padding: 0;
    width: 100%;
    background: url(../../assets/img/common/bg_cnts-contact.gif) repeat top left;
}
.cnts-contact-inner {
    display: flex;
    margin: 0 auto;
    padding: 30px 14px;
    max-width: 1640px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 3.96px .04px rgba(2, 6, 52, .1);

    flex-wrap: wrap;
    justify-content: space-between;
}
.cnts-contact-info,
.cnts-contact-mail {
    margin: 0 auto 20px;
    width: 100%;
    text-align: center;
}
.cnts-contact-mail {
    margin-bottom: 0;
}
.cnts-contact-info .info-ttl,
.cnts-contact-mail .mail-ttl {
    margin: 0 0 5px 0;
    color: #c10000;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
    /* font-family: "Noto Serif JP", serif; */
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    line-height: 1.4;
}
.cnts-contact-info .info-tel,
.cnts-contact-info .info-fax {
    margin: 0 0 5px 0;
    color: #c10000;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 2.6rem;
    /* font-family: "Noto Serif JP", serif; */
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    line-height: 1.4;
}
.cnts-contact-info .info-tel a {
    color: #c10000;
    text-decoration: none;
}
.cnts-contact-info .info-fax {
    display: block;
    margin-bottom: 15px;
    font-size: 2.2rem;
}
.cnts-contact-info .info-txt {
    margin: 0;
    text-align: left;
    font-size: 1.4rem;
}
.cnts-contact-info .info-txt a {
    text-decoration: underline;
}
.cnts-contact-mail .mail-btn {
    display: block;
    padding: 25px 0;
    width: 100%;
    border-radius: 5px;
    background: #c10000;
    color: #fff;
    font-size: 1.8rem;
    /* font-family: "Noto Serif JP", serif; */
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.cnts-contact-mail .mail-btn:hover {
    background: #c10000;
    color: #fff;
}
.cnts-contact-mail .mail-btn .ico {
    position: relative;
    top: -1px;
    margin-right: 15px;
    color: #fff;
    font-size: 1.8rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .cnts-contact-inner {
        padding: 70px 20px;
    }
    .cnts-contact-info,
    .cnts-contact-mail {
        margin: 0 4%;
        width: 42%;
    }
    .cnts-contact-info .info-ttl,
    .cnts-contact-mail .mail-ttl {
        margin: 0 0 25px 0;
        font-size: 2.6rem;
    }
    .cnts-contact-info .info-tel {
        font-size: 3.8rem;
    }
    .cnts-contact-info .info-fax {
        margin-bottom: 20px;
        font-size: 1.8rem;
    }
    .cnts-contact-mail .mail-btn {
        padding: 25px 0;
    }
}


/* コンテンツお問い合わせ / .cnts-inquiry
-------------------------------------------------------- */
.cnts-inquiry {
    display: flex;
    margin: 0 auto 0;
    padding: 20px 20px 20px;
    max-width: 1640px;
    width: 100%;
    border: 4px solid #0070c0;
    background: #fff url(../../assets/img/common/bg_cnts-inquiry.png) right 0 bottom / 260px no-repeat;

    flex-wrap: wrap;
    justify-content: flex-start;
}
.cnts-inquiry-ttl {
    margin: 0 auto 40px;
    width: 100%;
    color: #0070c0;
    text-align: center;
    text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 1);
    /* letter-spacing: -.02em; */
    font-weight: 700;
    font-size: 2.6rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.cnts-inquiry-box {
    width: 100%;
}
.cnts-inquiry-box .box-info,
.cnts-inquiry-box .box-access {
    margin: 0 auto 20px;
    padding: 0;
}
.cnts-inquiry-box .box-info h3,
.cnts-inquiry-box .box-access h3 {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #cbcbcb;
    /* color: #020202; */
    font-weight: 700;
    font-size: 1.6rem;
}
.cnts-inquiry-box .box-info h3::before,
.cnts-inquiry-box .box-access h3::before {
    color: #ffe000;
    content: "■ ";
    vertical-align: middle;
    font-size: 1.4rem;
}
.cnts-inquiry-box .box-info-tel {
    margin: 0;
    color: #0070c0;
    vertical-align: middle;
    text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 1);
    letter-spacing: -.02em;
    font-weight: 700;
    font-size: 2.8rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.2;
}
.cnts-inquiry-box .box-info-tel .ico {
    position: relative;
    top: -1px;
    margin-right: 5px;
    color: rgba(255, 96, 16, 1);
    font-size: 80%;
}
.cnts-inquiry-box .box-info-tel a {
    text-decoration: none;
}
.cnts-inquiry-box .box-info-time {
    margin-top: 1em;
    font-size: 1.1rem;
    line-height: 1.5;
}
.cnts-inquiry-box .box-access-txt {
    margin-bottom: 1em;
    font-size: 1.1rem;
    line-height: 1.4;
}
.cnts-inquiry-box .box-access-btn a {
    display: block;
    padding: 16px;
    /* width: 160px; */
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.8;
}
.cnts-inquiry-box .box-access-btn-inner a {
    border-radius: 4px;
    background: #0070c0;
    /* box-shadow: 0 3px 0 #004981; */
}
.cnts-inquiry-box .box-access-btn-inner a:hover {
    background: #0070c0;
    /* opacity: 1; */
}
.cnts-inquiry-box .box-access-btn-ico {
    /* display: block; */
    margin-right: 7px;
    font-size: 2.2rem;
    line-height: 1;
}
.cnts-inquiry-box .box-access-btn-txt {
    /* display: block; */
    font-size: 1.5rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .cnts-inquiry {
        padding: 50px 60px;
        border: 4px solid #0070c0;
        background: #fff url(../../assets/img/common/bg_cnts-inquiry.png) right 0 bottom / 560px no-repeat;
    }
    .cnts-inquiry-ttl {
        text-align: left;
        font-size: 4.2rem;
    }
    .cnts-inquiry-box {
        width: 36%;
    }
    .cnts-inquiry-box.box-01 {
        margin-right: 4%;
    }
    .cnts-inquiry-box.box-02 {
        margin-right: 0;
    }
    .cnts-inquiry-box .box-info {
        margin: 0;
    }
    .cnts-inquiry-box .box-info-tel {
        font-size: 3.6rem;
    }
}


/* コンテンツお問い合わせ / .cnts-support
-------------------------------------------------------- */
.cnts-support {
    margin: 0 auto 10px;
    padding: 0;
    width: 100%;
    /* background-color: #0070C0; */
}
.cnts-support-inner {
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 0;
    max-width: 1640px;
    width: 100%;
    border-radius: 0;
    /* background: #fff url(../../assets/img/common/bg_cnts-support.png) repeat 0 0; */
    background: rgba(1, 92, 172, .05);

    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* .cnts-support-box */
.cnts-support-box {
    padding: 18px 18px 18px;
    width: 100%;
    text-align: center;
}
.cnts-support-box .box-ttl {
    font-weight: 700;
    font-size: 2.2rem;
    /* font-family: "Noto Serif JP", serif; */
    /* font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
    line-height: 1.5;
}
.cnts-support-box .box-tel {
    margin: 30px 0 10px 0;
    /* font-family: "Noto Serif JP", serif; */
    /* font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
    /* font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", YuMincho, "Yu Mincho", "游明朝", "HG明朝E", serif; */
    letter-spacing: -.02em;
    font-weight: 700;
    font-size: 2.8rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.2;
}
.cnts-support-box .box-tel .ico {
    position: relative;
    top: -3px;
    margin-right: 8px;
    color: rgba(0, 162, 63, 1);
    font-size: 72%;
}
.cnts-support-box .box-tel .ruby {
    position: relative;
}
.cnts-support-box .box-tel .ruby .ruby-txt {
    position: absolute;
    top: -1.4em;
    left: 50%;
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1.2rem;
    transform: translateX(-50%);
}
.cnts-support-box .box-time {
    font-size: 1.2rem;
}
.cnts-support-box .box-btn {
    margin: 0 auto;
    max-width: 340px;
    width: 100%;
}
.cnts-support-box .box-btn a {
    display: block;
    padding: .8em 1.5em;
    border-radius: 10px;
    background: rgba(205, 22, 44, 1);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.7rem;
    /* font-family: "Noto Serif JP", serif; */
    /* font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
}
.cnts-support-box .box-btn a .ico {
    position: relative;
    top: -2px;
    margin-right: .5em;
    font-size: 140%;
}

/* .cnts-support-img */
.cnts-support-img {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 380px;
    border-radius: 5px 5px 0 0;
    background: #fff url(../../assets/img/common/bg_cnts-support.jpg) no-repeat 50% 0;
    background-size: cover;
}
.cnts-support-img img {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 2.4vw;
    left: 0;
    margin: auto;
    padding: 18px 40px;
    max-width: 390px;
    width: 90%;
    height: auto;
    border-radius: 100px;
    background: rgba(255, 255, 255, .94);
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .cnts-support-inner {
        flex-direction: column-reverse;
    }
    .cnts-support-img {
        max-width: 100%;
        height: 250px;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .cnts-support-inner {
        flex-direction: column-reverse;
    }
    .cnts-support-img {
        max-width: 100%;
        height: 350px;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .cnts-support {
        padding: 0;
    }
    .cnts-support-box {
        padding: 50px 0 50px;
        width: 50%;
        vertical-align: middle;
        text-align: center;
    }
    .cnts-support-box .box-ttl {
        font-size: 2.8rem;
    }
    .cnts-support-box .box-tel {
        margin: 30px 0 10px 0;
        font-size: 3.0rem;
    }
    .cnts-support-img {
        width: 50%;
        height: 450px;
        border-radius: 0;
    }
}

/* pc（1400px以上の場合に適用） */
@media (min-width: 1400px) {
    .cnts-support-box .box-ttl {
        font-size: 2.8rem;
    }
    .cnts-support-box .box-tel {
        font-size: 4.0rem;
    }
}


/* コンテンツお問い合わせ / .cnts-customer
-------------------------------------------------------- */
.cnts-customer {
    position: relative;
    margin: 0 auto 30px;
    padding: 0;
    width: 100%;
    border: 5px solid #b10000;
    background: #fff;
}

/* .cnts-customer-ttl */
.cnts-customer-ttl {
    position: relative;
    z-index: 2;
    padding: 12px 12px;
    background: #fff url(../../assets/img/common/bg_ptn_48.png) repeat 0 0;
    color: #fff;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.4;
}
.cnts-customer-ttl span {
    display: block;
    font-size: 60%;
}

/* .cnts-customer-box */
.cnts-customer-box {
    position: relative;
    z-index: 1;
    padding: 12px 12px 190px;
    width: 100%;
}
.cnts-customer-box .box-txt {
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
}
.cnts-customer-box .box-tel {
    margin-top: 5px;
    text-align: center;
    font-size: 3.4rem;
    line-height: 1.4;
}
.cnts-customer-box .box-tel .ico {
    position: relative;
    top: -1px;
    margin-right: 5px;
    color: #b10000;
    font-size: 80%;
}
.cnts-customer-box .box-tel a {
    color: #b10000;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    transition: all .5s ease;
}

/* .cnts-customer-box .box-btn */
.cnts-customer-box .box-btn {
    margin-top: 10px;
    text-align: center;
}
.cnts-customer-box .box-btn a {
    display: block;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    background: #b10000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all .5s ease;
}
.cnts-customer-box .box-btn a .ico {
    position: relative;
    top: -1px;
    margin-right: 15px;
    color: #fff;
    font-size: 120%;
}

/* .cnts-customer-img */
.cnts-customer-img {
    position: absolute;
    right: -10px;
    bottom: 0;
    z-index: 3;
    min-width: 240px;
    max-width: calc(100% - 400px);
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .cnts-customer-ttl {
        padding: 12px 50px;
        font-size: 2.8rem;
    }
    .cnts-customer-box {
        padding: 15px 0 15px 50px;
        max-width: 440px;
    }
    .cnts-customer-box .box-txt {
        text-align: left;
    }
    .cnts-customer-box .box-tel {
        text-align: left;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .cnts-customer-ttl {
        padding: 12px 50px;
        font-size: 3.6rem;
    }
    .cnts-customer-box {
        padding: 25px 0 25px 50px;
        max-width: 640px;
    }
    .cnts-customer-box .box-txt {
        text-align: center;
        font-size: 2.0rem;
    }
    .cnts-customer-box .box-tel {
        text-align: center;
        font-size: 4.0rem;
    }
    .cnts-customer-box .box-btn a:hover {
        background: #b10000;
    }
    .cnts-customer-img {
        right: -10px;
    }
}


/* .cnts-reservation
-------------------------------------------------------- */
.cnts-reservation {
    position: relative;
    overflow: hidden;
    margin: 0 auto 100px;
    padding: 2.3em 2em 2.5em;
    max-width: 1200px;
    width: 100%;
    background: rgba(12, 72, 122, .2);
    background: url(../../assets/img/common/bg_cnts-reservation.jpg) no-repeat top center / cover;
    box-shadow: inset 0 0 0 5px rgba(12, 72, 122, .4);
}
.cnts-reservation::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0) url(../../assets/img/common/bg_overlay_04.png) repeat 0 0;
    background: linear-gradient(90deg, rgba(122, 12, 12, .94) 0%, rgba(122, 12, 12, .62) 100%);
    content: "";
}
.cnts-reservation-ttl {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.cnts-reservation-ttl .sub {
    position: relative;
    text-align: center;
}
/* .cnts-reservation-ttl .sub::before,
.cnts-reservation-ttl .sub::after {
    position: absolute;
    z-index: 2;
    width: 10vw;
    height: 2px;
    background-color: rgba(255, 222, 0, 1);
    content: "";
}
.cnts-reservation-ttl .sub::before {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.cnts-reservation-ttl .sub::after {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
} */
.cnts-reservation-ttl .sub span {
    position: relative;
    z-index: 3;
    padding: .1em .5em;
    background: rgba(255, 222, 0, 0);
    color: rgba(255, 222, 0, 1);
    text-align: center;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, .16);
    letter-spacing: .06em;
    font-weight: 800;
    font-size: 2.5rem;
    /* font-family: "Jost", sans-serif; */
    font-family: "Noto Sans JP", sans-serif;
}
.cnts-reservation-ttl .main {
    margin: .1em auto 0;
    padding: 0 14px;
    color: #fff;
    text-align: center;
    letter-spacing: .06em;
    font-weight: 800;
    font-size: 2.4rem;
}
.cnts-reservation-ttl .main span {
    text-shadow: 4px 4px 0 rgba(0, 0, 0, .16);
}
.cnts-reservation-bg {
    position: absolute;
    top: -20px;
    left: 30px;
    z-index: 1;
    color: rgba(255, 255, 255, .05);
    text-align: right;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
    font-size: 18rem;
    font-family: "Jost", sans-serif;
    line-height: 1.4;
}
.cnts-reservation-bg.center {
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

/* .cnts-reservation-contact */
.cnts-reservation-contact {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 0;

    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.cnts-reservation-contact .cnts-reservation-contact-link {
    position: relative;
    display: flex;
    padding: 20px 40px 20px 20px;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, .8);
    /* border-bottom: 4px solid rgba(27, 184, 206, 0); */
    background-color: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: all .2s ease;

    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
}
.cnts-reservation-contact .cnts-reservation-contact-link:last-child {
    margin: 1em auto 0;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(122, 12, 12, 1);
}
.cnts-reservation-contact .cnts-reservation-contact-link .link-hdr {
    display: flex;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0);
    color: #fff;
    text-align: center;

    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.cnts-reservation-contact .cnts-reservation-contact-link:last-child .link-hdr {
    border: 1px solid rgba(122, 12, 12, .9);
    color: rgba(122, 12, 12, 1);
}
.cnts-reservation-contact .cnts-reservation-contact-link .link-hdr .ico.ico-phone {
    margin: 3px 0 0;
    font-size: 2.9rem;
}
.cnts-reservation-contact .cnts-reservation-contact-link .link-hdr .ico.ico-mail {
    margin: -1px 0 0;
    font-size: 2.3rem;
}
.cnts-reservation-contact .cnts-reservation-contact-link .link-body {
    padding: 0 .5em;

    flex: 1;
}
.cnts-reservation-contact .cnts-reservation-contact-link .link-body .num {
    margin: 0;
    letter-spacing: -.01em;
    font-weight: 600;
    font-size: 3.6rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.2;
}
.cnts-reservation-contact .cnts-reservation-contact-link .link-body .ttl {
    margin: 0;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 1.5;
}
.cnts-reservation-contact .cnts-reservation-contact-link .link-body .txt {
    margin: 0;
    letter-spacing: .05em;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.8;
}
.cnts-reservation-contact .cnts-reservation-contact-link .ico.ico-right-open {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto 0;
    width: 1em;
    height: 1em;
    font-size: 2.0rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .cnts-reservation {
        padding: 3em 4em 3.5em;
    }
    .cnts-reservation-ttl .sub::before,
    .cnts-reservation-ttl .sub::after {
        width: 20vw;
    }
    .cnts-reservation-ttl .main {
        font-size: 3.8rem;
    }
    /* .cnts-reservation-contact */
    .cnts-reservation-contact .cnts-reservation-contact-link {
        padding: 0 40px 0 20px;
        width: calc((100% - 20px) / 2);
        height: 96px;
        border: 1px solid rgba(255, 255, 255, 0);
        transition: all .25s ease;

        flex-flow: wrap;
        justify-content: flex-start;
        align-items: center;
    }
    .cnts-reservation-contact .cnts-reservation-contact-link:hover {
        border-color: rgba(27, 184, 206, 0);
        background-color: rgba(255, 133, 0, 1);
        color: rgba(255, 255, 255, 1);
    }
    .cnts-reservation-contact .cnts-reservation-contact-link:last-child {
        margin: 0;
        border-radius: 50px;
    }
    .cnts-reservation-contact .cnts-reservation-contact-link:last-child:hover .link-hdr {
        border: 1px solid rgba(255, 255, 255, .9);
        color: rgba(255, 255, 255, 1);
    }
    .cnts-reservation-contact .cnts-reservation-contact-link:first-child .ico.ico-right-open {
        display: none;
    }
}


/* コンテンツピーアール / .cnts-pr
-------------------------------------------------------- */
.cnts-pr {
    background-color: #f3f3f3;
}
.cnts-pr > div {
    z-index: 0 !important;
}
.cnts-pr-inner {
    z-index: 0;
    margin: 0 auto;
    padding: 80px 14px;
    max-width: 1640px;
    width: 100%;
}

/* .cnts-pr-ttl */
.cnts-pr-ttl {
    margin-bottom: 50px;
    text-align: center;
}
.cnts-pr-ttl .ja {
    position: relative;
    display: inline-block;
    margin: 0 auto 30px;
    padding-bottom: 20px;
    color: #020202;
    text-transform: none;
    letter-spacing: .1em;
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1.4;
}
.cnts-pr-ttl .ja::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 50px;
    height: 3px;
    background: #71b23b;
    content: "";
}
.cnts-pr-ttl .en {
    margin: 20px 0 0 0;
    color: #71b23b;
    text-transform: uppercase;
    letter-spacing: .45em;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
}

/* .cnts-pr-box-list */
.cnts-pr-box-list {
    width: 100%;
}
.cnts-pr-box-list-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #eee;
    background: #eee;
}

/* .item-img */
.cnts-pr-box-list-item .item-img {
    position: relative;
    line-height: 0;
}
.cnts-pr-box-list-item .item-img::before {
    position: absolute;
    right: 10px;
    bottom: 30px;
    z-index: 2;
    display: block;
    color: #fff;
    font-size: 12rem;
    font-family: Century, Century;
}
.cnts-pr-box-list-item:nth-child(1) .item-img::before {
    content: "01";
}
.cnts-pr-box-list-item:nth-child(2) .item-img::before {
    content: "02";
}
.cnts-pr-box-list-item:nth-child(3) .item-img::before {
    content: "03";
}
.cnts-pr-box-list-item .item-img img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* .item-box */
.cnts-pr-box-list-item .item-box {
    padding: 30px;
}
.cnts-pr-box-list-item .item-box .ttl {
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: .2em;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
}
.cnts-pr-box-list-item .item-box .txt {
    margin-bottom: 0;
    font-size: 1.6rem;
}

/* .item-btn */
.cnts-pr-box-list-item .item-btn {
    margin-top: auto;
    padding: 0 14px 20px;
    text-align: center;
}
.cnts-pr-box-list-item .item-btn a {
    position: relative;
    display: inline-block;
    padding: 14px 14px;
    border-radius: 4px;
    background-color: #71b23b;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
}
.cnts-pr-box-list-item .item-btn a:hover {
    background: #51931a;
    color: #fff;
    transition: all .3s ease;
}
.cnts-pr-box-list-item .item-btn a::before {
    display: inline-block;
    margin-right: 7px;
    color: #fff;
    content: "\e84c";
    font-weight: 700;
    font-size: 1.4rem;
    font-family: "webfont";
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .cnts-pr-inner {
        padding: 130px 20px 80px;
    }
    .cnts-pr-box-list-item .item-btn {
        padding: 0 30px 20px;
    }
    .cnts-pr-box-list-item .item-box .ttl {
        font-size: 2.4rem;
    }
    .cnts-pr-box-list-item .item-btn a {
        min-width: 200px;
    }
}


/* サブコンテンツ / .cnts-sub
-------------------------------------------------------- */
.cnts-sub-unit-01 {
    margin: 0 0 10px 0;
}
.cnts-sub-unit-02 {
    margin: 0 0 20px 0;
}
.cnts-sub-unit-03 {
    margin: 0 0 30px 0;
}
.cnts-sub-unit-04 {
    margin: 0 0 40px 0;
}
.cnts-sub-unit-05 {
    margin: 0 0 50px 0;
}
.cnts-sub-unit-01:last-child,
.cnts-sub-unit-02:last-child,
.cnts-sub-unit-03:last-child,
.cnts-sub-unit-04:last-child,
.cnts-sub-unit-05:last-child {
    margin: 0;
}
.cnts-sub-unit-ttl {
    position: relative;
    margin: 0 0 1em;
    padding: 0 0 0 16px;
    border-radius: 3px;
    /* background: #fff; */
    background: transparent;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.4;
}
.cnts-sub-unit-ttl::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 3px;
    height: 100%;
    border-radius: 2px;
    background: #0070c0;
    content: "";
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .cnts-sub-unit-01.sticky,
    .cnts-sub-unit-02.sticky,
    .cnts-sub-unit-03.sticky,
    .cnts-sub-unit-04.sticky,
    .cnts-sub-unit-05.sticky {
        position: -webkit-sticky;
        position:         sticky;
        top: 80px;
        height: auto;
    }
}


/* サブお問い合わせ / .sub-contact
-------------------------------------------------------- */
.sub-contact {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    /* border: 5px solid #f3f3f3; */
    background-color: #fff;
    text-align: center;
}

/* .sub-contact-logo */
.sub-contact-logo {
    padding: 0;
    /* border-bottom: 1px solid #ddeef6; */
}
.sub-contact-logo a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
    width: 100%;
    background: #fff;
}
/* .sub-contact-logo a::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: rgba(0, 91, 172, .8);
    background: rgba(0, 91, 172, .1) url(../../assets/img/common/bg_overlay_24.png) repeat 0 0;
    content: "";
} */
.sub-contact-logo a img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 100%;"; /* IE対策 */

    -o-object-position: 0 100%;
       object-position: 0 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.sub-contact-logo a .logo-txt {
    position: absolute;
    bottom: 1%;
    left: 1%;
    z-index: 2;
    display: flex;
    padding: 4%;
    color: #020202;
    text-align: left;
    letter-spacing: .01em;
    font-weight: 600;
    font-size: 2.3rem;
    line-height: 1.6;
    /* transform: translateY(-50%); */

    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column nowrap;
}
.sub-contact-logo a .logo-txt-inner {
    margin-bottom: .3em;
    padding: .15em .4em .2em;
    background: #fff;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, .5); */
    font-size: 2.4rem;
}
.sub-contact-logo a .logo-txt-inner:last-child {
    margin-bottom: 0;
}

/* .sub-contact-info */
.sub-contact-info {
    padding: 16px 16px 0;
    /* border-bottom: 1px solid #ddeef6; */
}
.sub-contact-info .info-tel {
    margin: 0 auto .1em;
    vertical-align: middle;
    letter-spacing: -.02em;
    font-weight: 700;
    font-size: 2.3rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.2;
}
.sub-contact-info .info-tel .ico {
    position: relative;
    top: -3px;
    margin-right: 8px;
    padding: 0;
    /* border-radius: 50%; */
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 162, 63, 1);
    font-size: 2.6rem;
    line-height: 1;
}
.sub-contact-info .info-tel a {
    text-decoration: none;
}
.sub-contact-info .info-time {
    margin-bottom: 5px;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* .sub-contact-access */
.sub-contact-access {
    padding: 10px 16px 20px;
}
.sub-contact-access .access-txt {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}
.sub-contact-access .access-btn a {
    display: block;
    padding: .8em .5em;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.8;
}
.sub-contact-access .access-btn-inner a {
    border-radius: 4px;
    background: #dc000c;
    /* background: linear-gradient(45deg, #6cd299, #1ab4b0); */
    /* box-shadow: 0 3px 0 #004981; */
}
.sub-contact-access .access-btn-inner a:hover {
    background: #dc000c;
    /* background: linear-gradient(45deg, #6cd299, #1ab4b0); */
}
.sub-contact-access .access-btn-ico {
    /* display: block; */
    margin-right: 7px;
    font-size: 2.2rem;
    line-height: 1;
}
.sub-contact-access .access-btn-txt {
    /* display: block; */
    font-size: 1.6rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .sub-contact-logo a .logo-txt {
        text-align: left;

        justify-content: flex-start;
        align-items: flex-start;
    }
    .sub-contact-logo a .logo-txt-inner {
        font-size: 2.0rem;
    }
    .sub-contact-info .info-tel {
        font-size: 2.6rem;
    }
}

/* pc（1500px以上の場合に適用） */
@media (min-width: 1500px) {
    .sub-contact-logo a .logo-txt-inner {
        font-size: 2.3rem;
    }
    .sub-contact-info .info-tel {
        font-size: 3.7rem;
    }
}


/* サブお問い合わせ / .sub-inquiry
-------------------------------------------------------- */
.sub-inquiry {
    margin: 0 auto;
    padding: 25px;
    width: 100%;
    border: 2px solid #e56d82;
    background: #fff url(../../assets/img/common/bg_sub-inquiry.png) no-repeat right bottom;
}
.sub-inquiry-ttl {
    margin: 0 auto 20px;
    color: #e56d82;
    text-align: center;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.4;
}
.sub-inquiry-info {
    margin: 0 auto 20px;
    padding: 0;
}
.sub-inquiry-info h3,
.sub-inquiry-access h3 {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #cbcbcb;
    font-weight: 700;
    font-size: 1.6rem;
}
.sub-inquiry-info h3::before,
.sub-inquiry-access h3::before {
    color: #ffe000;
    content: "■ ";
    vertical-align: middle;
    font-size: 1.4rem;
}
.sub-inquiry-info .info-tel {
    margin: 0;
    color: #e56d82;
    vertical-align: middle;
    letter-spacing: -1px;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}
.sub-inquiry-info .info-tel .ico {
    position: relative;
    top: -1px;
    margin-right: 5px;
}
.sub-inquiry-info .info-tel a {
    text-decoration: none;
}
.sub-inquiry-info .info-time {
    margin-bottom: 5px;
    font-size: 1.1rem;
    line-height: 1.5;
}
.sub-inquiry-access {
    padding: 0;
}
.sub-inquiry-access .access-txt {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}
.sub-inquiry-access .access-btn a {
    display: block;
    padding: 10px;
    /* width: 160px; */
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.8;
}
.sub-inquiry-access .access-btn-inner a {
    border-radius: 4px;
    background: #e56d82;
    box-shadow: 0 3px 0 #d92c2e;
}
.sub-inquiry-access .access-btn-inner a:hover {
    background: #e56d82;
}
.sub-inquiry-access .access-btn-ico {
    /* display: block; */
    margin-right: 7px;
    font-size: 1.8rem;
    line-height: 1;
}
.sub-inquiry-access .access-btn-txt {
    /* display: block; */
    font-size: 1.5rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .sub-inquiry-ttl {
        font-size: 1.8rem;
    }
    .sub-inquiry-ttl span {
        display: inline-block;
    }
    .sub-inquiry-ttl span::before,
    .sub-inquiry-ttl span::after {
        position: relative;
        top: -2px;
        display: inline-block;
        height: 15px;
        border-left: 2px solid #e56d82;
        content: "";
        vertical-align: bottom;
    }
    .sub-inquiry-ttl span::before {
        margin-right: 10px;
        transform: rotate(-30deg);
    }
    .sub-inquiry-ttl span::after {
        margin-left: 10px;
        transform: rotate(30deg);
    }
}


/* サブピッキー / .sub-picky
-------------------------------------------------------- */
.sub-picky {
    margin: 0 auto 30px;
    padding: 0;
    width: 100%;
    background: #000;
    /* background: transparent; */
    background: url(../../assets/img/common/bg_sub-picky.jpg) no-repeat center center;
    background-size: cover;
}
.sub-picky > div {
    z-index: 0 !important;
}
.sub-picky-inner {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 40px 14px;
    width: 100%;
}

/* .sub-picky-ttl */
.sub-picky-ttl {
    position: relative;
    margin: 0 auto 30px;
    padding: 0 0 20px;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.4;
}
.sub-picky-ttl::after {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    display: block;
    margin: auto;
    width: 40%;
    height: 2px;
    background: #fff;
    content: "";
    transform: translateX(-50%);
}
.sub-picky-ttl .ja {
    display: block;
    margin: 0 0 10px 0;
    color: #fff;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: "Noto Sans JP", sans-serif;
}
.sub-picky-ttl .en {
    display: block;
    color: #fff;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
}

/* .sub-picky-list */
.sub-picky-list {
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;

    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.sub-picky-list-item {
    margin: 0;
    padding: 0;
    width: 100%;
}
.sub-picky-list-item .dammy,
.sub-picky-list-item a {
    display: block;
    padding: 30px 20px;
    border: 1px solid #999;
    color: #fff;
    text-align: left;
    text-decoration: none;
    letter-spacing: .12em;
    transition: all .3s ease;

    -webkit-font-feature-settings: "palt" 1;
       -moz-font-feature-settings: "palt" 1;
        -ms-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
}
.sub-picky-list-item .dammy,
.sub-picky-list-item a {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease;
}
.sub-picky-list-item:nth-child(1) .dammy,
.sub-picky-list-item:nth-child(1) a {
    background-image: url(../../assets/img/common/bg_sub-picky_01.jpg);
}
.sub-picky-list-item:nth-child(2) .dammy,
.sub-picky-list-item:nth-child(2) a {
    background-image: url(../../assets/img/common/bg_sub-picky_02.jpg);
}
.sub-picky-list-item:nth-child(3) .dammy,
.sub-picky-list-item:nth-child(3) a {
    background-image: url(../../assets/img/common/bg_sub-picky_03.jpg);
}
.sub-picky-list-item .dammy .ja,
.sub-picky-list-item a .ja {
    display: block;
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
}
.sub-picky-list-item .dammy .en,
.sub-picky-list-item a .en {
    display: block;
    font-style: italic;
    font-size: 1.0rem;
    font-family: "din-demi";
    line-height: 1.3;
}
.sub-picky-list-item a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    margin-top: 0;
    color: #fff;
    content: "\e848";
    font-weight: 700;
    font-size: 2.0rem;
    font-family: "webfont";
    transform: translate(0, -50%);
}
.sub-picky-list-item a:hover {
    opacity: .5;
}
.sub-picky-list-item .dammy::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    opacity: .8;
}
.sub-picky-list-item .dammy::after {
    position: absolute;
    top: 50%;
    right: auto;
    left: 50%;
    z-index: 11;
    display: inline-block;
    border-bottom: 2px solid #fff;
    color: #fff;
    content: "COMING SOON";
    letter-spacing: .08em;
    font-style: italic;
    font-size: 1.4rem;
    font-family: Verdana, Geneva, sans-serif;
    transform: translate(-50%, -50%);
}
.sub-picky-list-item .dammy:hover {
    opacity: 1;
}

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

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

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .sub-picky-ttl .ja {
        font-size: 2.2rem;
    }
    .sub-picky-list-item {
        margin-top: 4%;
        width: 100%;
    }
    .sub-picky-list-item:nth-child(1) {
        margin-top: 0;
    }
}


/* サブピーアール / .sub-pr
-------------------------------------------------------- */
.sub-pr {
    /* overflow: hidden; */
    margin: 0 auto 30px;
    padding: 0;
    width: 100%;
}
.sub-pr > ul {
    z-index: 0 !important;
}
.sub-pr-list {
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: 100%;

    justify-content: flex-start;
    flex-wrap: wrap;
}
.sub-pr-list-item {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, .2);
}
.sub-pr-list-item a {
    position: relative;
    display: table;
    padding-right: 48%;
    width: 100%;
    height: 109px;
    background-color: #0070c0;
    background-position: right center;
    background-size: 48% auto;
    background-repeat: no-repeat;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 1.6rem;
}
.sub-pr-list-item a {
    transition: opacity .5s ease-out;

    backface-visibility: hidden;
}
.sub-pr-list-item:nth-child(1) a {
    background-image: url(../../assets/img/common/bg_sub-pr_01.jpg);
}
.sub-pr-list-item:nth-child(2) a {
    background-image: url(../../assets/img/common/bg_sub-pr_02.jpg);
}
.sub-pr-list-item:nth-child(3) a {
    background-image: url(../../assets/img/common/bg_sub-pr_03.jpg);
}
.sub-pr-list-item a span {
    display: table-cell;
    background-image: url(../../assets/img/common/bg_sub-pr.png);
    background-position: left top;
    background-size: 91px auto;
    background-repeat: no-repeat;
    vertical-align: middle;
    text-align: center;
}
.sub-pr-list-item a::after {
    position: absolute;
    right: 50%;
    bottom: 5px;
    border-top: 4px solid transparent;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    border-left: 4px solid transparent;
    content: "";
}

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

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

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


/* サイドナビ / .snav
-------------------------------------------------------- */
.snav {
    margin-bottom: 25px;
}
.snav-list {
    display: flex;
    margin: 0 auto;
    width: 100%;

    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.snav-list-item {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #fff;
    /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .3); */
}
.snav-list-item a {
    position: relative;
    display: flex;
    /* border: 4px solid rgba(255, 255, 255, 1); */
    text-decoration: none;

    flex-wrap: wrap;
    justify-content: space-between;
}

/* .snav-list-item a .item-img */
.snav-list-item a .item-img {
    width: 100%;
    background: #fff;
}
.snav-list-item a .item-img img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 100%;"; /* IE対策 */

    -o-object-position: 0 100%;
       object-position: 0 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* .snav-list-item a .item-box */
.snav-list-item a .item-box {
    position: relative;
    display: block;
    padding: 9px 5px;
    width: 100%;
    background: rgba(1, 92, 172, 1);
    /* background: linear-gradient(45deg, rgba(0, 47, 119, .9) 0%, rgba(0, 47, 119, .9) 50%, rgba(0, 47, 119, 1) 50%, rgba(0, 47, 119, 1) 100%); */
    text-align: center;
    line-height: 1.6;
}
/* .snav-list-item a .item-box::before,
.snav-list-item a .item-box::after {
    position: absolute;
    width: 3%;
    height: 25%;
    content: "";
}
.snav-list-item a .item-box::before {
    top: 7px;
    left: 7px;
    border-top: 1px solid rgba(255, 255, 255, .8);
    border-left: 1px solid rgba(255, 255, 255, .8);
}
.snav-list-item a .item-box::after {
    right: 7px;
    bottom: 7px;
    border-right: 1px solid rgba(255, 255, 255, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .8);
} */
.snav-list-item a .item-box .ico {
    position: absolute;
    left: 8px;
    color: #fff;
}
.snav-list-item a .item-box-ttl {
    color: #fff;
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, .75); */
    font-weight: 600;
    font-size: 1.5rem;
    /* font-family: "Noto Serif JP", serif; */
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}
.snav-list-item a .item-box-txt {
    margin: .3em auto 0;
    color: rgba(255, 218, 109, 1);
    /* font-family: "Noto Serif JP", serif; */
    /* font-family: "Noto Sans JP", sans-serif; */
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 500;
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, .75); */
    font-size: 1.3rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1;
}
.snav-list-item a:hover {
    background-color: #fff;
}
.snav-list-item a:hover .item-box .ico {
    color: #fff;
}

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

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .snav-list-item {
        margin-top: 2%;
        margin-right: 2%;
        width: 32%;
    }
    .snav-list-item:nth-child(1),
    .snav-list-item:nth-child(2),
    .snav-list-item:nth-child(3) {
        margin-top: 0;
    }
    .snav-list-item:nth-child(3n) {
        margin-right: 0;
    }
    .snav-list-item a .item-box-txt {
        font-size: 1.3rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .snav-list-item {
        margin-top: 6%;
        width: 100%;
    }
    .snav-list-item:nth-child(1) {
        margin-top: 0;
    }
    .snav-list-item a .item-box-ttl {
        font-size: 1.9rem;
    }
}


/* ローカルナビ / .lnav
-------------------------------------------------------- */
.lnav {
    margin-bottom: 25px;
    /* background: #fff; */
    /* border-top: 1px solid #e6e6e6; */
}

/* .lnav-list ul {} */

.lnav-list li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #ccc;
    font-weight: 700;
    font-size: 1.5rem;
}
.lnav-list li:last-child {
    border-bottom: none;
}
.lnav-list li a {
    position: relative;
    display: block;
    padding: 1em 1em 1em 2.5em;
    line-height: 1.6;
    transition: all .2s ease;
}
.lnav-list li a:hover {
    background: #fdf0e7;
    color: #fc993f;
    text-decoration: none;
}
.lnav-list li a::before {
    position: absolute;
    top: 50%;
    left: 10px;
    display: inline-block;
    margin-top: -9px;
    color: #0070c0;
    content: "\e88a";
    font-weight: 700;
    font-size: 1.3rem;
    font-family: "webfont";
}

/* .lnav-list li a:hover::before {
    left: 11px;
    transform: translate(1px, 0);
} */

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .lnav-list li {
        font-size: 1.5rem;
    }
    .lnav-list li a:hover {
        text-decoration: underline;
    }
}


/* 画像サイドナビ / .inav
-------------------------------------------------------- */
.inav {
    margin-bottom: 25px;
    /* background: #fff; */
    /* border-top: 1px solid #e6e6e6; */
}
.inav-list {
    padding: 0;
    border-top: 1px solid #e3e3e3;
}
.inav-list-item {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #e3e3e3;
}
.inav-list-item a {
    position: relative;
    display: flex;
    padding: 12px 25px 12px 0;
    color: #020202;
    text-decoration: none;
    transition: all .2s ease;

    flex-wrap: wrap;
    justify-content: flex-start;
}
.inav-list-item a:hover {
    background: #fdf0e7;
    color: #fc993f;
}
.inav-list-item a::after {
    position: absolute;
    top: 50%;
    right: 12px;
    display: block;
    margin-top: -5px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fc993f;
    border-right: 2px solid #fc993f;
    content: "";
    transform: rotate(45deg) scale(.9);
}
.inav-list-item a:hover::after {
    right: 11px;
}
.inav-list-item a .item-img {
    display: inline;
    margin: 0 20px 0 12px;
    width: 60px;
    border: 0;
}
.inav-list-item a .item-box {
    padding-top: 7px;

    flex: 1;
}
.inav-list-item a .item-box-txt {
    margin-bottom: .5em;
    color: #989898;
    font-size: 1.0rem;
    line-height: 1;
}
.inav-list-item a .item-box-ttl {
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
}


/* フッター / .ftr
-------------------------------------------------------- */
.ftr {
    position: relative;
    padding: 60px 0 55px;
    width: 100%;
    /* background: url(../../assets/img/common/bg_concept.jpg) no-repeat top center;
    background-attachment: fixed;
    background-size: cover; */
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .ftr {
        /* border-top: 1px solid #eee; */
        margin-top: 0;
        padding: 0;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ftr {
        /* border-top: 1px solid #eee; */
        margin-top: 0;
        padding: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr {
        /* border-top: 1px solid #eee; */
        margin-top: 0;
        padding: 0;
    }
}


/* フッターお問い合わせ / .ftr-contact
-------------------------------------------------------- */
.ftr-contact {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background: url(../../assets/img/common/bg_top-sect-03.jpg) no-repeat top right;
    background-size: cover;
    color: #fff;
}
.ftr-contact::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, .3); */
    /* background: rgba(0, 0, 0, 0) url(../../assets/img/common/bg_overlay_07.png) repeat 0 0; */
    content: "";
}
.ftr-contact > div {
    z-index: 2 !important;
}
.ftr-contact-inner {
    position: relative;
    z-index: 2;
    display: flex;
    margin: 0 auto;
    padding: 40px 14px;
    max-width: 1180px;
    width: 100%;

    justify-content: center;
    align-items: center;
    flex-flow: column;
}

/* .ftr-contact-ttl */
.ftr-contact-ttl {
    margin-bottom: 2.5em;
    color: #020202;
    text-align: center;
    /* text-shadow: 0 0 10px rgba(0, 0, 0, .3); */
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 2em;
}

/* .ftr-contact-txt */
.ftr-contact-txt {
    margin-bottom: .5em;
    padding: .2em .7em .25em;
    background: #fff;
    color: rgba(255, 96, 16, .9);
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, .4);
    /* letter-spacing: .12em; */
    font-weight: 800;
    font-size: 1.8rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.ftr-contact-txt .marker {
    font-weight: 800;
}
.ftr-contact-txt span {
    margin: 0 .1em;
    color: rgba(1, 92, 172, 1);
    font-size: 110%;
}

/* .ftr-contact-list */
.ftr-contact-list {
    display: flex;
    flex-direction: column;
    max-width: 1120px;
    width: 100%;
}
.ftr-contact-list li {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 60px;
    border-radius: 80px;
    background: rgba(255, 96, 16, .9);
    /* border: 2px solid #fff; */
    color: #fff;
    text-align: center;
    font-weight: 600;

    justify-content: center;
    align-items: center;
}
.ftr-contact-list li a,
.ftr-contact-list li a:hover {
    color: #fff;
    text-decoration: none;
}
.ftr-contact-list li.tel {
    margin: 0 0 10px;
    font-size: 2.2rem;
    line-height: 1;
}
.ftr-contact-list li.tel .en {
    letter-spacing: .02em;
    font-weight: 700;
    font-size: 2.8rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1.2;
}
.ftr-contact-list li.tel .en .ico {
    position: relative;
    top: -2px;
    margin-right: 8px;
    font-size: 70%;
}
.ftr-contact-list li.tel .time {
    display: inline-block;
    font-size: 60%;
}
/* .ftr-contact-list li.mail {
    background: rgba(255, 96, 16, .9);
} */
.ftr-contact-list li.mail .mail-btn {
    width: 100%;
    color: #fff;
    font-size: 2.2rem;
    line-height: 100px;
}
.ftr-contact-list li.mail .mail-btn:hover {
    background-color: #fff;
    color: #f29300;
}
.ftr-contact-list li.mail .mail-btn .ico {
    position: relative;
    top: -1px;
    margin-right: 5px;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-contact {
        /* background-attachment: fixed; */
        background: url(../../assets/img/common/bg_top-sect-03.jpg) no-repeat top right;
        background-size: cover;
    }
    .ftr-contact-inner {
        padding: 110px 0;
    }
    /* .ftr-contact-ttl */
    .ftr-contact-ttl {
        margin-top: 1.5em;
        margin-bottom: 2.5em;
        font-size: 1.4rem;
    }
    .ftr-contact-txt {
        font-size: 4.4rem;
        font-family: "Noto Sans JP", sans-serif;
    }
    /* .ftr-contact-list */
    .ftr-contact-list {
        flex-direction: row;

        flex-wrap: nowrap;
        justify-content: space-between;
        align-content: center;
    }
    .ftr-contact-list li {
        max-width: 540px;
        width: 100%;
        height: 80px;
    }
    .ftr-contact-list li.tel .en {
        font-size: 3.4rem;
    }
    .ftr-contact-list li.mail .mail-btn {
        font-size: 2.2rem;
        transition: all .5s ease;
    }
}


/* フッターお問い合わせ / .ftr-inquiry
-------------------------------------------------------- */
.ftr-inquiry {
    position: relative;
    padding: 80px 14px;
    width: 100%;
    /* background-color: #f3f3f3; */
    background: url(../../assets/img/common/bg_ftr-contact.png) no-repeat top center;
    background-size: cover;
}
.ftr-inquiry::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: transparent none repeat 0 0;
    background-image: url(../../assets/img/common/bg_overlay_25.png);
    content: "";
}
.ftr-inquiry-inner {
    position: relative;
    z-index: 2;
    display: flex;
    margin: 0 auto;
    padding: 30px 20px;
    max-width: 1480px;
    width: 100%;
    border: 1px solid #fff;
    /* background-color: rgba(0, 128, 192, .85); */
    /* border: 4px solid #1972b5;
    background: #fff url(../../assets/img/common/bg_ftr-inquiry.png) right 0 bottom / 260px no-repeat; */
    /* box-shadow: 5px 10px 20px rgba(0, 0, 0, .25); */

    flex-wrap: wrap;
    justify-content: space-between;
}

/* .ftr-inquiry-ttl */
.ftr-inquiry-ttl {
    margin: 0 auto 50px;
    width: 100%;
    color: #fff;
    text-align: center;
    /* text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 1); */
    letter-spacing: -.02em;
    font-weight: 500;
    font-size: 2.2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.ftr-inquiry-ttl span {
    display: block;
    margin: .5em auto;
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 20%;
    font-family: "Noto Sans JP", sans-serif;
}

/* .ftr-inquiry-box */
.ftr-inquiry-box {
    width: 100%;
}
.ftr-inquiry-box .box-info,
.ftr-inquiry-box .box-access {
    margin: 0 auto 20px;
    padding: 0;
}
.ftr-inquiry-box .box-info h3,
.ftr-inquiry-box .box-access h3 {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #cbcbcb;
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
}
.ftr-inquiry-box .box-info h3::before,
.ftr-inquiry-box .box-access h3::before {
    color: #fff;
    content: "■ ";
    vertical-align: middle;
    font-size: 1.4rem;
}

/* .ftr-inquiry-box .box-info */
.ftr-inquiry-box .box-info-tel {
    margin: 0;
    color: #fff;
    vertical-align: middle;
    /* text-shadow: 0 0 1px rgba(255, 255, 255, 1), 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 1); */
    letter-spacing: -.02em;
    font-weight: 500;
    font-size: 3.2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.2;
}
.ftr-inquiry-box .box-info-tel .ico {
    position: relative;
    top: -1px;
    margin-right: 5px;
    font-size: 60%;
}
.ftr-inquiry-box .box-info-tel a {
    color: #fff;
    text-decoration: none;
}
.ftr-inquiry-box .box-info-time {
    margin-top: 1em;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* .ftr-inquiry-box .box-access */
.ftr-inquiry-box .box-access-txt {
    margin-bottom: 1em;
    font-size: 1.1rem;
    line-height: 1.4;
}
.ftr-inquiry-box .box-access-btn a {
    display: block;
    padding: 16px;
    /* width: 160px; */
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.8;
}
.ftr-inquiry-box .box-access-btn-inner a {
    /* background: #1972b5; */
    /* box-shadow: 0 3px 0 #004981; */
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all .5s ease;
}
.ftr-inquiry-box .box-access-btn-inner a:hover {
    background: #fff;
    color: #0070c0;
    opacity: 1;
}
.ftr-inquiry-box .box-access-btn-ico {
    /* display: block; */
    margin-right: 7px;
    font-size: 1.8rem;
    line-height: 1;
}
.ftr-inquiry-box .box-access-btn-txt {
    /* display: block; */
    font-size: 1.5rem;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-inquiry {
        padding: 120px 20px;
    }
    .ftr-inquiry-inner {
        padding: 60px 90px 60px;
    }
    .ftr-inquiry-ttl {
        /* text-align: left; */
        font-size: 8.6rem;
    }
    .ftr-inquiry-box {
        width: 30.666666666666668%;
    }
    .ftr-inquiry-box.box-01 {
        margin-right: 4%;
    }
    .ftr-inquiry-box.box-02 {
        margin-right: 4%;
    }
    .ftr-inquiry-box.box-03 {
        margin-right: 0;
    }
    .ftr-inquiry-box .box-info {
        margin: 0;
    }
    .ftr-inquiry-box .box-info-tel {
        font-size: 4.6rem;
    }
    .ftr-inquiry-box .box-info-time {
        margin-top: .5em;
    }
}


/* フッターロゴ / .ftr-logo
-------------------------------------------------------- */
.ftr-logo {
    padding: 20px 0 10px;
    background: #f5f5f5;
    text-align: center;
}
.ftr-logo a img {
    width: 380px;
}


/* フッターピーアール / .ftr-pr
-------------------------------------------------------- */
.ftr-pr {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background: #000 url(../../assets/img/common/bg_ftr-pr.jpg) no-repeat center center;
    background-size: cover;
}
.ftr-pr::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/common/bg_overlay_01.png) repeat 0 0;
    content: "";
}
.ftr-pr > div {
    z-index: 0 !important;
}
.ftr-pr-inner {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 30px 14px;
    max-width: 1200px;
    width: 100%;
}

/* .ftr-pr-ttl */
.ftr-pr-ttl {
    margin: 0 auto 30px;
    text-align: center;
}
.ftr-pr-ttl .ja {
    color: #fff;
    font-weight: 500;
    font-size: 2.5rem;
    /* font-family: "Noto Serif JP", serif; */
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    line-height: 1.5;
}

/* .ftr-pr-txt */
.ftr-pr-txt {
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2.6;
}

/* .ftr-pr-list */
.ftr-pr-list {
    display: flex;
    width: 100%;

    justify-content: flex-start;
    flex-wrap: wrap;
}
.ftr-pr-list-item {
    margin: 0;
    padding: 0;
    width: 100%;
}
.ftr-pr-list-item a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
    height: 120px;
    color: #fff;
    text-decoration: none;
    letter-spacing: .12em;
    transition: all .3s ease;

    -webkit-font-feature-settings: "palt" 1;
       -moz-font-feature-settings: "palt" 1;
        -ms-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
}

/* .ftr-pr-list-item a .item-box */
.ftr-pr-list-item a .item-box {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 48%;
    height: 100%;
    background: #fff;
}
.ftr-pr-list-item a .item-box::before {
    position: absolute;
    top: 0;
    left: -120px;
    z-index: 3;
    width: 0;
    height: 0;
    border-width: 120px 60px 120px 60px;
    border-style: solid;
    border-color: transparent #fff #fff transparent;
    content: "";
}
.ftr-pr-list-item a .item-box .ttl {
    position: absolute;
    top: 50%;
    color: #442602;
    font-size: 1.6rem;
    transform: translate(0, -50%);
}
.ftr-pr-list-item a .item-box .ttl .en {
    display: block;
    font-style: italic;
    font-size: 1rem;
    font-family: "din-demi";
    line-height: 1.3;
}

/* .ftr-pr-list-item a img */
.ftr-pr-list-item a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: auto;
    width: 100%;
    height: 100% !important;
    vertical-align: middle;
    font-family: "object-fit: cover; object-position: 0 100%;"; /* IE対策 */
    transition-duration: .5s;
    transform: scale(1);

    -o-object-position: 0 100%;
       object-position: 0 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.ftr-pr-list-item a:hover img {
    transform: scale(1.1) translate3d(0, 0, 0) !important;
}

/* .ftr-pr-list-item a::after */
.ftr-pr-list-item a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    z-index: 3;
    display: inline-block;
    margin-top: 0;
    color: #020202;
    content: "\e848";
    font-weight: 600;
    font-size: 2.0rem;
    font-family: "webfont";
    transform: translate(0, -50%);
}

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

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ftr-pr-list-item a {
        height: 120px;
    }
    .ftr-pr-list-item a::after {
        font-size: 2.5rem;
    }

    /* .ftr-pr-list-item */
    .ftr-pr-list-item {
        margin-top: 2%;
        margin-right: 2%;
        width: 49%;
    }
    .ftr-pr-list-item:nth-child(1),
    .ftr-pr-list-item:nth-child(2) {
        margin-top: 0;
    }
    .ftr-pr-list-item:nth-child(2n) {
        margin-right: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-pr-inner {
        padding: 100px 0;
    }
    .ftr-pr-ttl .ja {
        font-size: 3.6rem;
    }

    /* .ftr-pr-list-item */
    .ftr-pr-list-item {
        margin-top: 2%;
        margin-right: 2%;
        width: 32%;
    }
    .ftr-pr-list-item:nth-child(1),
    .ftr-pr-list-item:nth-child(2),
    .ftr-pr-list-item:nth-child(3) {
        margin-top: 0;
    }
    .ftr-pr-list-item:nth-child(3n) {
        margin-right: 0;
    }
}


/* フッターバナー / .ftr-bnr
-------------------------------------------------------- */
.ftr-bnr {
    padding: 25px 14px 25px;
    background: #f5f5f5;
    /* border-top: 1px solid #ededed; */
}
.ftr-bnr-inner {
    margin: 0 auto;
    padding: 30px 20px;
    max-width: 1480px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
}
.ftr-bnr-ttl {
    margin-left: 7px;
    font-weight: 600;
    font-size: 1.8rem;
}
.ftr-bnr-list {
    display: flex;

    flex-flow: row wrap;
    justify-content: center;
}
.ftr-bnr-list li {
    display: flex;
    margin: 1%;
    padding: 0;
    width: 100%;

    align-items: center;
    justify-content: center;
}
.ftr-bnr-list li a {
    display: block;
    text-align: center;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .ftr-bnr-list {
        justify-content: center;
    }
    .ftr-bnr-list li {
        width: 48%;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ftr-bnr-list {
        justify-content: flex-start;
    }
    .ftr-bnr-list li {
        width: 18%;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-bnr {
        padding: 60px 0 60px;
    }
    .ftr-bnr-list {
        justify-content: flex-start;
    }
    .ftr-bnr-list li {
        width: 18%;
    }
    .ftr-bnr-list li a img {
        transition: all .3s ease;
        transform: translateY(0);
    }
    .ftr-bnr-list li a:hover img {
        opacity: .8;
        transition: all .15s ease;
        transform: translateY(-3px);
    }
}


/* フッターオススメ / .ftr-suggest
-------------------------------------------------------- */
.ftr-suggest {
    margin: 0;
    padding: 35px 0 35px;
    width: 100%;
    background: rgba(0, 0, 0, .05);
    /* background: #3d3d3d url(../../assets/img/common/bg_ftr-suggest.png); */
}
.ftr-suggest > div {
    z-index: 0 !important;
}
.ftr-suggest-inner {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 0 14px;
    max-width: 1640px;
    width: 100%;
}
.ftr-suggest-inner ul {
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;

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

/* .ftr-suggest-list */
.ftr-suggest-list {
    overflow: hidden;
    margin-bottom: 0;
}
.ftr-suggest-list-item {
    padding: 0;
    /* border: 1px solid #e5e5e5; */
}
.ftr-suggest-list li .dammy,
.ftr-suggest-list li a {
    display: flex;
    padding: 34px 28px;
    /*border: 1px solid #999;*/
    color: #8dad32;
    text-decoration: none;
    /* text-shadow: 0 0 1px rgba(255, 255, 255, 1),
    0 0 5px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 1),
    0 0 30px rgba(255, 255, 255, 1); */
    letter-spacing: -.02em;
    transition: all .3s ease;

    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    -webkit-font-feature-settings: "palt" 1;
       -moz-font-feature-settings: "palt" 1;
        -ms-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
}
.ftr-suggest-list li .dammy,
.ftr-suggest-list li a {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.ftr-suggest-list li:nth-child(1) .dammy,
.ftr-suggest-list li:nth-child(1) a {
    background-image: url(../../assets/img/common/bg_ftr-suggest-list_01.png);
}
.ftr-suggest-list li:nth-child(2) .dammy,
.ftr-suggest-list li:nth-child(2) a {
    background-image: url(../../assets/img/common/bg_ftr-suggest-list_02.png);
}
.ftr-suggest-list li:nth-child(3) .dammy,
.ftr-suggest-list li:nth-child(3) a {
    background-image: url(../../assets/img/common/bg_ftr-suggest-list_03.png);
}
.ftr-suggest-list li:nth-child(4) .dammy,
.ftr-suggest-list li:nth-child(4) a {
    background-image: url(../../assets/img/common/bg_ftr-suggest-list_04.png);
}
.ftr-suggest-list li:nth-child(5) .dammy,
.ftr-suggest-list li:nth-child(5) a {
    background-image: url(../../assets/img/common/bg_ftr-suggest-list_05.png);
}
.ftr-suggest-list li .dammy .ja,
.ftr-suggest-list li a .ja {
    display: block;
    margin-bottom: 2px;
    color: #9d9a3c;
    text-align: left;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 2.2rem;
    font-family: "Noto Serif JP", serif;
    line-height: 1.3;
}
.ftr-suggest-list li .dammy .en,
.ftr-suggest-list li a .en {
    display: block;
    color: #a2a2a2;
    text-align: left;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: "Noto Serif JP", serif;
    line-height: 1.3;
}
/* .ftr-suggest-list li a::after {
    position: absolute;
    top: 50%;
    left: 15px;
    display: inline-block;
    margin-top: 0;
    color: #fff;
    content: "\e848";
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: "webfont";
    transform: translate(0, -50%);
} */
.ftr-suggest-list li a:hover {
    opacity: .5;
}
.ftr-suggest-list li .dammy::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    opacity: .7;
}
.ftr-suggest-list li .dammy::after {
    position: absolute;
    top: 50%;
    right: auto;
    left: 50%;
    z-index: 11;
    display: inline-block;
    border-bottom: 2px solid #fff;
    color: #fff;
    content: "COMING SOON";
    letter-spacing: .08em;
    font-style: italic;
    font-size: 1.4rem;
    font-family: Verdana, Geneva, sans-serif;
    transform: translate(-50%, -50%);
}
.ftr-suggest-list li .dammy:hover {
    opacity: 1;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    /* .ftr-suggest-list */
    .ftr-suggest-list-item {
        float: none;
        margin: 0 auto;
        margin-top: 10px;
        padding: 0;
        width: 100%;
    }
    .ftr-suggest-list-item:nth-child(1) {
        margin-top: 0;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ftr-suggest-ttl-ja {
        font-size: 2.5rem;
    }
    /* .ftr-suggest-list */
    .ftr-suggest-list-item {
        margin-top: 2%;
        margin-right: 2%;
        padding: 0;
        width: 32%;
    }
    .ftr-suggest-list-item:nth-child(1),
    .ftr-suggest-list-item:nth-child(2),
    .ftr-suggest-list-item:nth-child(3) {
        margin-top: 0;
    }
    .ftr-suggest-list-item:nth-child(3n) {
        margin-right: 0;
    }
    /* .ftr-suggest-list li */
    .ftr-suggest-list li .dammy,
    .ftr-suggest-list li a {
        padding: 16.5% 7%;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-suggest {
        padding: 70px 0 70px;
    }
    .ftr-suggest-inner {
        padding: 0 20px;
    }
    /* .ftr-suggest-list */
    .ftr-suggest-list-item {
        margin-top: 2%;
        margin-right: 2%;
        width: 23.5%;
    }
    .ftr-suggest-list-item:nth-child(1),
    .ftr-suggest-list-item:nth-child(2),
    .ftr-suggest-list-item:nth-child(3),
    .ftr-suggest-list-item:nth-child(4) {
        margin-top: 0;
    }
    .ftr-suggest-list-item:nth-child(4n) {
        margin-right: 0;
    }
    .ftr-suggest-list li .dammy,
    .ftr-suggest-list li a {
        background-size: auto;
    }
    .ftr-suggest-list li .dammy .ja,
    .ftr-suggest-list li a .ja {
        font-size: 2.2rem;
    }
}


/* フッターボックス / .ftr-box
-------------------------------------------------------- */
.ftr-box {
    position: relative;
    padding: 30px 0 80px;
    background: rgba(23, 30, 32, 1);
    /* background: url(../../assets/img/common/bg_ftr-box.jpg) no-repeat center top;
    background-size: cover; */
}
/* .ftr-box::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0);
    background: rgba(0, 0, 0, .5) url(../../assets/img/common/bg_overlay_24.png) repeat 0 0;
    content: "";
} */
.ftr-box-inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 14px 10px;
    max-width: 1640px;
    width: 100%;
    /* background-color: #f3f3f3; */
    color: #020202;
    font-weight: 700;
    font-size: 1.0rem;
}
.ftr-box-inner a {
    color: #020202;
}
.ftr-box-logo,
.ftr-box-list,
.ftr-box-txt {
    margin-bottom: 15px;
}

/* .ftr-box-logo */
.ftr-box-logo {
    margin: 0 auto;
    padding: 10px 0 30px;
    text-align: center;
}
.ftr-box-logo a {
    display: inline-block;
    margin: 0 auto;
    max-width: 280px;
    width: 100%;
}
.ftr-box-logo a img {
    width: 100%;
    height: auto;
}

/* .ftr-box-info */
.ftr-box-info {
    margin: 16px 0;
    text-align: center;
    letter-spacing: .05em;
    line-height: 1.82;
}
.ftr-box-info a:hover {
    text-decoration: none;
}
.ftr-box-info-street {
    margin: 0 0 15px;
    font-weight: 700;
    font-size: 1.3rem;
}
.ftr-box-info-telfax {
    letter-spacing: 0;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}
.ftr-box-info-telfax-ttl {
    letter-spacing: normal;
    font-size: 68%;
}
.ftr-box-info-telfax-coron {
    margin: 0 3px 0 3px;
}

/* .ftr-box-about */
.ftr-box-about {
    /* padding: 10px 20px;
    border-radius: 3px;
    background: rgba(100, 100, 100, .1); */
    color: #fff;
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 1.8;
}

/* .ftr-box-list */
.ftr-box-list {
    display: flex;
    overflow: hidden;
    border-top: 1px solid #e8e8e8;

    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}
.ftr-box-list li {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}
.ftr-box-list li a {
    position: relative;
    display: flex;
    padding: 1.2em 2em;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 140%;

    justify-content: center;
    align-items: center;
}
.ftr-box-list li a:hover {
    background: rgba(34, 34, 34, .4);
}
.ftr-box-list li a span {
    display: none;
}

/* .ftr-box-txt */
.ftr-box-txt {
    margin-bottom: 5px;
    padding: 0 14px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
}

/* .ftr-box-copyright */
.ftr-box-copyright {
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: .7rem;
}
.ftr-box-copyright a {
    color: #fff;
    text-decoration: none;
}

/* .ftr-box-produced */
.ftr-box-produced {
    text-align: center;
}
.ftr-box-produced a {
    display: inline-block;
    margin: 0 auto;
    max-width: 170px;
    width: 100%;
}
.ftr-box-produced a img {
    width: 100%;
    height: auto;
}

/* .ftr-box-mode */
.ftr-box-mode {
    padding: 0 10px;
    text-align: left;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    /* .ftr-box-list */
    .ftr-box-list li {
        width: 50%;
    }
    .ftr-box-list li:nth-child(2n) {
        border-right: 0;
    }
    .ftr-box-list li a::after {
        position: absolute;
        top: 50%;
        right: 1em;
        display: block;
        margin-top: -4px;
        width: 8px;
        height: 8px;
        border-right: 2px solid #0070c0;
        border-bottom: 2px solid #0070c0;
        content: "";
        transform: rotate(-45deg);
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    /* .ftr-box-list */
    .ftr-box-list li {
        width: calc(100% / 3);
    }
    .ftr-box-list li:nth-child(3n) {
        border-right: 0;
    }
    .ftr-box-list li a::after {
        position: absolute;
        top: 50%;
        right: 1em;
        display: block;
        margin-top: -4px;
        width: 8px;
        height: 8px;
        border-right: 2px solid #0070c0;
        border-bottom: 2px solid #0070c0;
        content: "";
        transform: rotate(-45deg);
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-box {
        padding: 20px 0 0;
        /* background-color: transparent; */
        /* background-image: url(../../assets/img/common/bg_ftr.gif); */
    }
    .ftr-box-inner {
        margin: 0 auto;
        padding: 0 20px 5px;
        font-weight: 400;
    }

    /* .ftr-box-list */
    .ftr-box-list {
        border-top: none;
        background: transparent;

        justify-content: center;
    }
    .ftr-box-list li {
        margin: .2em 0;
        padding: 0 2em;
        border-top: none;
        border-right: 1px solid #ccc;
        border-bottom: none;
    }
    .ftr-box-list li:last-child {
        border-right: none;
    }
    .ftr-box-list li a {
        position: static;
        padding: 0;
        color: #fff;
        text-decoration: none;
        font-size: 1.3rem;
    }
    .ftr-box-list li a:hover {
        background: none;
        color: #fff;
        text-decoration: underline;
    }

    /* .ftr-box-info */
    .ftr-box-info {
        margin: 0 0 20px 0;
    }
    .ftr-box-info-street {
        margin: 0 0 5px;
        font-weight: 400;
        font-size: 1.2rem;
    }
    .ftr-box-info-telfax {
        font-weight: 700;
        font-size: 3.2rem;
    }
    .ftr-box-info-telfax:first-child {
        padding-right: 25px;
    }

    /* .ftr-box-txt */
    .ftr-box-txt {
        color: #fff;
    }

    /* .ftr-box-copyright */
    .ftr-box-copyright {
        color: #fff;
    }
    .ftr-box-copyright a {
        color: #fff;
    }
}


/* フッターボックスバナー / .ftr-box-bnr
-------------------------------------------------------- */
.ftr-box-bnr {
    margin: 0 auto;
    padding: 25px 0 25px;
    /* background: #f5f5f5; */
    /* border-top: 1px solid #ededed; */
    /* background-image: url(../../assets/img/common/bg_ftr.gif); */
}
.ftr-box-bnr-inner {
    margin: 0 auto;
    padding: 0 0;
    max-width: 1200px;
    width: 100%;
}
.ftr-box-bnr-inner ul {
    display: flex;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;

    flex-wrap: wrap;
    justify-content: center;
}
.ftr-box-bnr-inner ul li {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
.ftr-box-bnr-inner ul li .ttl {
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}
.ftr-box-bnr-inner ul li .ttl a {
    color: #fff;
}
.ftr-box-bnr-inner ul li a.img {
    display: block;
    width: 100%;
    border: 3px solid #fff;
    transition: ease-out .3s;
}
.ftr-box-bnr-inner ul li a.img img {
    width: 100%;
}
.ftr-box-bnr-inner ul li .txt {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .ftr-box-bnr-inner ul li {
        margin: 0 auto;
        margin-top: 10px;
        padding: 0;
        width: 100%;
    }
    .ftr-box-bnr-inner ul li:nth-child(1) {
        margin-top: 0;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ftr-box-bnr-inner ul li {
        margin: 0 auto;
        margin-top: 10px;
        padding: 0;
        width: 100%;
    }
    .ftr-box-bnr-inner ul li:nth-child(1) {
        margin-top: 0;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-box-bnr {
        padding: 40px 0 40px;
    }
    .ftr-box-bnr-inner {
        padding: 0 0;
    }
    .ftr-box-bnr-inner ul {
        width: 100%;
    }
    .ftr-box-bnr-inner ul li {
        margin-top: 2%;
        margin-right: 2%;
        width: 32%;
        text-align: left;
    }
    .ftr-box-bnr-inner ul li:nth-child(1),
    .ftr-box-bnr-inner ul li:nth-child(2),
    .ftr-box-bnr-inner ul li:nth-child(3) {
        margin-top: 0;
    }
    .ftr-box-bnr-inner ul li:nth-child(3n) {
        margin-right: 0;
    }
}


/* フッターSNSフォロー / .ftr-box-follow
-------------------------------------------------------- */
.ftr-box-follow {
    padding: 10px 15px 10px;
    background: rgba(255, 255, 255, 0);
    text-align: center;
    font-size: 0;
}
.ftr-box-follow .follow-btn {
    display: inline-block;
}
.ftr-box-follow .follow-btn a {
    display: block;
    margin: 0 .5em .5em 0;
    width: 44px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0) !important;
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    line-height: 44px;
}
.ftr-box-follow .follow-btn:last-child a {
    margin-right: 0;
}
.ftr-box-follow .follow-btn a .ico {
    position: relative;
    top: -2px;
}
.ftr-box-follow .follow-btn a:hover {
    text-decoration: none;
}

/* brand-color */
.ftr-box-follow .follow-btn a.follow-btn-twitter {
    background-color: #00acee;
    background-color: rgba(0, 172, 238, 1);
    background-color: #212121;
    background-color: rgba(33, 33, 33, 1);
}
.ftr-box-follow .follow-btn a.follow-btn-facebook {
    background-color: #3b5998;
    background-color: rgba(59, 89, 152, 1);
}
.ftr-box-follow .follow-btn a.follow-btn-instagram {
    background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
    background-color: #d93177;
    background-color: rgba(217, 49, 119, 1);
}
.ftr-box-follow .follow-btn a.follow-btn-youtube {
    background-color: #f00;
    background-color: rgba(255, 0, 0, 1);
}
.ftr-box-follow .follow-btn a.follow-btn-line {
    /* background-color: #1dcd00; */
    background-color: #00b900;
    background-color: rgba(0, 185, 0, 1);
}
.ftr-box-follow .follow-btn a.follow-btn-tiktok {
    background-color: #000;
    background-color: rgba(0, 0, 0, 1);
}
.ftr-follow .follow-btn a.follow-btn-pinterest {
    /* background-color: #cb2027; */
    background-color: #e60023;
    background-color: rgba(230, 0, 35, 1);
}


/* フッターグループ / .ftr-group
-------------------------------------------------------- */
.ftr-group {
    position: relative;
    padding: 40px 0 40px;
    background: #333;
    /* background: url(../../assets/img/common/bg_ftr-group.png) no-repeat bottom right;
    background-size: cover; */
}
.ftr-group::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, #1b120f 0%, rgba(34, 34, 34, .9) 0%, rgba(34, 34, 34, 0) 100%); */
    /* background: rgba(0, 0, 0, .4); */
    background: rgba(0, 0, 0, .3) url(../../assets/img/common/bg_overlay_18.png) repeat 0 0;
    content: "";
}
.ftr-group-inner {
    position: relative;
    z-index: 2;
    display: flex;
    margin: 0 auto;
    padding: 0 14px;
    max-width: 1800px;
    width: 100%;
    /* background-color: #f3f3f3; */
    color: #020202;
    font-weight: 700;
    font-size: 1.0rem;

    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.ftr-group-inner.inner-01 {
    padding: 0 14px;
    /* border-bottom: 1px solid #fff; */
}
.ftr-group-inner.inner-02 {
    padding: 30px 14px 0;
}
.ftr-group-inner.inner-03 {
    padding: 30px 14px 0;
}

/* .ftr-group-info */
.ftr-group-info {
    display: flex;
    max-width: 280px;
    width: 100%;

    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.ftr-group-info .info-logo {
    display: block;
    margin-bottom: 32px;
    width: 180px;
    height: auto;
}
.ftr-group-info .info-logo a {
    display: block;
}
.ftr-group-info .info-address {
    margin-bottom: 1.5em;
    color: #fff;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.8;
}
.ftr-group-info .info-address a {
    color: #fff;
}
.ftr-group-info .info-address a .ico {
    margin-right: 3px;
    color: #fff;
    font-size: 100%;
}
.ftr-group-info .info-sns > p {
    margin-bottom: 1em;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
}
.ftr-group-info .info-sns-follow {
    display: flex;

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

/* .ftr-group-sitemap */
.ftr-group-sitemap {
    display: flex;
    padding: 20px 0;
    width: 100%;

    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.ftr-group-sitemap .sitemap-nav ul {
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: wrap;
}
.ftr-group-sitemap .sitemap-nav ul li {
    margin: 0 24px;
    font-size: 1.4rem;
    line-height: 2.4;
}
.ftr-group-sitemap .sitemap-nav ul li ul.sub-menu {
    display: block;
    margin: 4px 0 26px;
}
.ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li {
    margin: 0;
    font-size: 1.1rem;
    line-height: 2.4;
}
.ftr-group-sitemap .sitemap-nav ul li a,
.ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li a {
    color: #fff;
    text-decoration: none;
}
.ftr-group-sitemap .sitemap-nav ul li a:hover,
.ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li a:hover {
    text-decoration: none;
}
.ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li a {
    position: relative;
    display: flex;
    padding: 0;
    color: #fff;

    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
}
.ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li a::before {
    margin-right: 5px;
    content: "-";
}
/* .ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    display: block;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
    transform: rotate(45deg);
} */

/* .ftr-group-contact */
.ftr-group-contact {
    display: flex;
    max-width: 250px;
    width: 100%;

    justify-content: center;
    align-items: center;
    flex-flow: column;
}
.ftr-group-contact .contact-list {
    display: flex;
    margin-bottom: 14px;
    width: 100%;

    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.ftr-group-contact .contact-list-item {
    margin-bottom: 15px;
    width: 100%;
}
.ftr-group-contact .contact-list-item a {
    display: block;
}
.ftr-group-contact .contact-list-item:last-child {
    margin-bottom: 0;
}
.ftr-group-contact .contact-list-item-btn {
    display: block;
    margin: 0;
    padding: 15px 0 16px;
    width: 100%;
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    transition: all .5s ease;
}
.ftr-group-contact .contact-list-item-btn:hover {
    background: rgba(0, 64, 119, .9);
    text-decoration: none;
}
.ftr-group-contact .contact-list-item-btn .ico {
    margin-right: 8px;
    text-decoration: none;
    font-size: 130%;
}
.ftr-group-contact .contact-tel {
    display: flex;
    margin-bottom: 32px;
    width: 100%;

    justify-content: center;
}
.ftr-group-contact .contact-tel-btn {
    display: block;
    margin: 0;
    padding: 18px 0 20px;
    width: 100%;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
}
.ftr-group-contact .contact-tel-btn:hover {
    text-decoration: none;
}
.ftr-group-contact .contact-tel-btn > p {
    margin-bottom: 0;
    font-size: 2.4rem;
}
.ftr-group-contact .contact-tel-btn > p .ico {
    margin-right: 8px;
    text-decoration: none;
    font-size: 100%;
}
.ftr-group-contact .contact-tel-btn > span {
    display: block;
    text-align: center;
    font-size: 1.1rem;
}
.ftr-group-contact .contact-txt {
    display: flex;

    align-items: flex-end;
    justify-content: flex-start;
    flex-flow: column;
}
.ftr-group-contact .contact-txt-item {
    margin: 0;
    width: auto;
}
.ftr-group-contact .contact-txt-item a {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

/* .ftr-group-about */
.ftr-group-about {
    margin: 0 0 5em;
    padding: 0;
    /* border-radius: 3px;
    background: rgba(100, 100, 100, .1); */
    color: #ccc;
    font-weight: 400;
    font-size: .9rem;
    line-height: 1.8;
}

/* .ftr-group-txt */
.ftr-group-txt {
    margin-bottom: 15px;
    padding: 0 14px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
}

/* .ftr-group-copyright */
.ftr-group-copyright {
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: .9rem;
}
.ftr-group-copyright a {
    color: #fff;
    text-decoration: none;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .ftr-group-sitemap .sitemap-nav ul li ul.sub-menu {
        display: none;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-group {
        padding: 90px 0 20px;
        width: 100%;
        background: #333 url(../../assets/img/common/bg_ftr-group.png) no-repeat right bottom;
        background-size: 64%;
    }
    .ftr-group-inner.inner-01 {
        padding: 0 20px 40px;

        justify-content: center;
        align-items: center;
        flex-flow: column;
    }
    .ftr-group-inner.inner-02 {
        padding: 40px 20px 0;

        justify-content: space-between;
        align-items: flex-start;
        flex-flow: row;
    }
    .ftr-group-inner.inner-03 {
        padding: 130px 20px 0;

        justify-content: space-between;
        align-items: center;
        flex-flow: row;
    }
    /* .ftr-group-info */
    .ftr-group-info {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .ftr-group-info .info-logo {
        width: 280px;
    }
    .ftr-group-info .info-address {
        margin-bottom: 1.5em;
    }
    .ftr-group-info .info-sns > p {
        margin-bottom: 1.5em;
        text-align: left;
    }
    /* .ftr-group-sitemap */
    .ftr-group-sitemap {
        padding: 0 40px 0 70px;

        justify-content: flex-start;
        align-items: flex-start;
    }
    .ftr-group-sitemap .sitemap-nav ul {
        justify-content: flex-start;
    }
    .ftr-group-sitemap .sitemap-nav ul li {
        font-size: 1.5rem;
        line-height: 2.0;
    }
    .ftr-group-sitemap .sitemap-nav ul li a,
    .ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li a {
        transition: opacity .1s ease-out;
    }
    .ftr-group-sitemap .sitemap-nav ul li a:hover,
    .ftr-group-sitemap .sitemap-nav ul li ul.sub-menu li a:hover {
        opacity: .8;
    }
    /* .ftr-group-contact */
    .ftr-group-contact {
        justify-content: flex-start;
        align-items: stretch;
    }
}


/* フッターグループSNSフォロー / .ftr-group-follow
-------------------------------------------------------- */
.ftr-group-info .info-sns-follow {
    padding: 10px 15px 10px;
    background: rgba(255, 255, 255, 0);
    text-align: center;
    font-size: 0;
}
.ftr-group-info .info-sns-follow .follow-btn {
    display: inline-block;
}
.ftr-group-info .info-sns-follow .follow-btn a {
    display: block;
    margin: 0 .5em .5em 0;
    width: 44px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0) !important;
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    line-height: 44px;
}
.ftr-group-info .info-sns-follow .follow-btn:last-child a {
    margin-right: 0;
}
.ftr-group-info .info-sns-follow .follow-btn a .ico {
    position: relative;
    top: -2px;
}
.ftr-group-info .info-sns-follow .follow-btn a:hover {
    text-decoration: none;
}

/* brand-color */
.ftr-group-info .info-sns-follow .follow-btn a.follow-btn-twitter {
    background-color: #00acee;
    background-color: rgba(0, 172, 238, 1);
    background-color: #212121;
    background-color: rgba(33, 33, 33, 1);
}
.ftr-group-info .info-sns-follow .follow-btn a.follow-btn-facebook {
    background-color: #3b5998;
    background-color: rgba(59, 89, 152, 1);
}
.ftr-group-info .info-sns-follow .follow-btn a.follow-btn-instagram {
    background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
    background-color: #d93177;
    background-color: rgba(217, 49, 119, 1);
}
.ftr-group-info .info-sns-follow .follow-btn a.follow-btn-youtube {
    background-color: #f00;
    background-color: rgba(255, 0, 0, 1);
}
.ftr-group-info .info-sns-follow .follow-btn a.follow-btn-line {
    /* background-color: #1dcd00; */
    background-color: #00b900;
    background-color: rgba(0, 185, 0, 1);
}
.ftr-group-info .info-sns-follow .follow-btn a.follow-btn-tiktok {
    background-color: #000;
    background-color: rgba(0, 0, 0, 1);
}
.ftr-group-info .info-sns-follow .follow-btn a.follow-btn-pinterest {
    /* background-color: #cb2027; */
    background-color: #e60023;
    background-color: rgba(230, 0, 35, 1);
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-group-info .info-sns-follow {
        padding: 0;
    }
}


/* フッターサイトマップ / .ftr-sitemap
-------------------------------------------------------- */
.ftr-sitemap {
    border-top: 1px solid #e6e6e6;
    background-color: #f5f5f5;
    /* padding: 0 0 25px; */
}
.ftr-sitemap-inner {
    margin: 0 auto;
    padding: 0 0;
    max-width: 1640px;
    width: 100%;
}

/* .ftr-sitemap-category */
.ftr-sitemap-category {
    margin: 0;
}

/* .ftr-sitemap-category-ttl */
.ftr-sitemap-category-ttl {
    border-bottom: 1px solid #e6e6e6;
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
}
.ftr-sitemap-category-ttl:hover {
    background: #fdf0e7;
}
.ftr-sitemap-category-ttl span {
    position: relative;
    display: block;
    padding: 21px 4%;
    text-decoration: none;
}

/* .ftr-sitemap-category-list */
.ftr-sitemap-category-list {
    display: none;
}
.ftr-sitemap-category-list-item {
    border-bottom: 1px solid #e8e8e8;
    font-weight: 400;
    font-size: 1.3rem;
}
.ftr-sitemap-category-list-item a {
    position: relative;
    display: block;
    padding: 15px 4%;
    text-decoration: none;
}
.ftr-sitemap-category-list-item a:hover {
    background: #fdf0e7;
    color: #fc993f;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .ftr-sitemap-category-ttl span::after {
        position: absolute;
        top: 50%;
        right: 15px;
        display: block;
        margin-top: -4px;
        width: 8px;
        height: 8px;
        border-right: 3px solid rgba(1, 92, 172, 1);
        border-bottom: 3px solid rgba(1, 92, 172, 1);
        content: "";
        transition: all .5s;
        transform: rotate(45deg);
    }
    .ftr-sitemap-category-ttl span.open::after {
        transform: rotate(225deg);
    }
    .ftr-sitemap-category-list-item a::after {
        position: absolute;
        top: 50%;
        right: 15px;
        display: block;
        margin-top: -4px;
        width: 8px;
        height: 8px;
        border-right: 2px solid rgba(1, 92, 172, 1);
        border-bottom: 2px solid rgba(1, 92, 172, 1);
        content: "";
        transform: rotate(-45deg);
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ftr-sitemap-category-ttl span::after {
        position: absolute;
        top: 50%;
        right: 15px;
        display: block;
        margin-top: -4px;
        width: 8px;
        height: 8px;
        border-right: 3px solid rgba(1, 92, 172, 1);
        border-bottom: 3px solid rgba(1, 92, 172, 1);
        content: "";
        transition: all .5s;
        transform: rotate(45deg);
    }
    .ftr-sitemap-category-ttl span.open::after {
        transform: rotate(225deg);
    }
    .ftr-sitemap-category-list-item a::after {
        position: absolute;
        top: 50%;
        right: 15px;
        display: block;
        margin-top: -4px;
        width: 8px;
        height: 8px;
        border-right: 2px solid rgba(1, 92, 172, 1);
        border-bottom: 2px solid rgba(1, 92, 172, 1);
        content: "";
        transform: rotate(-45deg);
    }

    /* ftr-sitemap-category-list-item */
    .ftr-sitemap-category-list-item {
        float: left;
        width: 50%;
    }
    .category-01 .ftr-sitemap-category-list-item:nth-child(odd),
    .category-02 .ftr-sitemap-category-list-item:nth-child(odd),
    .category-03 .ftr-sitemap-category-list-item:nth-child(odd),
    .category-04 .ftr-sitemap-category-list-item:nth-child(odd),
    .category-05 .ftr-sitemap-category-list-item:nth-child(odd) {
        border-right: 1px solid #e8e8e8;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .ftr-sitemap {
        border-bottom: 1px solid #dadada;
        background-color: #f5f5f5;
    }
    .ftr-sitemap-inner {
        display: flex;
        overflow: hidden;
        padding: 35px 20px 35px 20px;
    }
    .ftr-sitemap-category {
        padding: 0;
        width: 18.4%;
    }
    .ftr-sitemap-category ul {
        display: block !important;
        padding: 0 0 0 14px;
    }
    .ftr-sitemap-category-ttl {
        margin: 0 0 .5em 0;
        border-bottom: none;
        cursor: default;
    }
    .ftr-sitemap-category-ttl:hover {
        background: none;
    }
    .ftr-sitemap-category-ttl .ico {
        position: relative;
        top: -2px;
        padding: 6px 6px 6px 2px;
        color: rgba(1, 92, 172, 1);
        font-size: 1.6rem;
    }
    .ftr-sitemap-category-ttl span {
        position: static;
        display: inline;
        padding: 0;
        border-bottom: none;
        font-size: 1.5rem;
    }

    /* ftr-sitemap-category-list */
    .ftr-sitemap-category-list-item {
        border-bottom: none;
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 1.8;
    }
    .ftr-sitemap-category-list-item a {
        position: static;
        display: inline;
        padding: 0;
        text-decoration: none;
    }
    .ftr-sitemap-category-list-item a:hover {
        background: none;
        text-decoration: underline;
    }
}


/* 追従バナーリンク / .fixlink-list
-------------------------------------------------------- */
.fixlink-list {
    display: none;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .fixlink-list {
        display: block;
    }
    .fixlink-list-item {
        position: fixed;
        right: -168px;
        z-index: 999;
        transition: all .3s ease-out;
    }
    .fixlink-list-item:nth-child(1) {
        top: 200px;
    }
    .fixlink-list-item:nth-child(2) {
        top: 500px;
    }
    .fixlink-list-item:nth-child(1):hover,
    .fixlink-list-item:nth-child(2):hover {
        right: 0;
    }
    .fixlink-list-item img {
        width: 250px;
        height: auto;
    }
}


/* 追従タブリンク / .fixlink-tab
-------------------------------------------------------- */
.fixlink-tab {
    display: none;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .fixlink-tab {
        display: block;
    }
    .fixlink-tab-item {
        position: fixed;
        right: -296px;
        z-index: 999;
        width: 360px;
        text-indent: 80px;
        line-height: 60px;
        transition: all .3s ease-out;
    }
    .fixlink-tab-item:nth-child(1) {
        top: 340px;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        border-left: 2px solid #fff;
        background: #ff7d05 url(../../assets/img/common/ico_fixlink-tab_01.png) no-repeat;
        background-position: left 20px center;
    }
    .fixlink-tab-item:nth-child(2) {
        top: 412px;
        /* border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
        border-left: 2px solid #fff; */
        background: #ff7d05 url(../../assets/img/common/ico_fixlink-tab_02.png) no-repeat;
        background-position: left 20px center;
    }
    .fixlink-tab-item:nth-child(1):hover {
        right: 0;
        background: #ff7d05 url(../../assets/img/common/ico_fixlink-tab_01.png) no-repeat;
        background-position: left 20px center;
        opacity: 1;
    }
    .fixlink-tab-item:nth-child(2):hover {
        right: 0;
        background: #ff7d05 url(../../assets/img/common/ico_fixlink-tab_02.png) no-repeat;
        background-position: left 20px center;
        opacity: 1;
    }
    .fixlink-tab-item a {
        display: block;
        padding: 0;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        line-height: 4em;
    }
    .fixlink-tab-item::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 62px;
        display: block;
        margin: auto;
        width: 2px;
        height: 30px;
        border-left: 1px dotted #fff;
        content: "";
    }
    .fixlink-tab-item::after {
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        display: block;
        margin: auto;
        width: 4px;
        height: 4px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        content: "";
        transform: rotate(45deg);
    }
}


/* .fixed-link
-------------------------------------------------------- */
.fixed-link {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
}
.fixed-link-list {
    display: flex;

    flex-wrap: wrap;
    justify-content: space-between;
}
.fixed-link-list li {
    margin: 0;
    padding: 0;
    width: calc(100% / 3);
    height: auto;
    /* box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3); */
}
.fixed-link-list li a {
    display: flex;
    flex-direction: column;
    padding: .9em .9em;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.1rem;
    transition: opacity ease .2s;

    align-items: center;
    justify-content: center;
}
.fixed-link-list li a:hover {
    text-decoration: none;
    opacity: .8;
}
.fixed-link-list li a.line {
    background: rgba(0, 185, 0, .9);
}
.fixed-link-list li a.contact {
    background: rgba(1, 92, 172, .9);
}
.fixed-link-list li a.phone {
    background: rgba(195, 13, 35, .9);
}
.fixed-link-list li a.estate {
    background: rgba(0, 185, 0, .9);
}
.fixed-link-list li a .ico {
    position: relative;
    font-size: 180%;
}
.fixed-link-list li a.phone .ico {
    position: relative;
    font-size: 186%;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .fixed-link {
        right: 0;
        bottom: 200px;
        left: auto;
        width: auto;
            -ms-writing-mode: tb-rl;

        -webkit-writing-mode: vertical-rl;
                writing-mode: vertical-rl;
        text-orientation: upright;
        font-feature-settings: initial;
    }
    .fixed-link-list {
        display: flex;

        justify-content: flex-start;
    }
    .fixed-link-list li {
        margin: 4px 0;
        /* padding: 5px; */
        width: auto;
        border-top: 3px solid #fff;
        border-bottom: 3px solid #fff;
        border-left: 3px solid #fff;
    }
    .fixed-link-list li a {
        flex-direction: row;
        padding: 2em .9em;
        width: auto;
        height: auto;
        letter-spacing: .2em;
        font-size: 1.6rem;
    }
    .fixed-link-list li a .ico {
        left: -2px;
        margin-bottom: .5em;
        font-size: 110%;
    }
}


/* .pagelist（もくじページ専用）
-------------------------------------------------------- */
.pagelist-txt {
    margin-bottom: 30px;
    padding: 0;
}
.pagelist-txt a {
    color: #fc9c43;
}
.pagelist-unit {
    overflow: hidden;
    margin-bottom: 10px;
}
.pagelist-unit-body {
    padding: 0;
    text-align: left;
}
.pagelist-unit-body-ttl {
    position: relative;
    margin: 0 auto 50px;
    /* border-radius: 3px; */
    padding: .75em .75em .75em 1em;
    border-left: 5px solid rgba(255, 96, 16, 1);
    background: rgba(248, 247, 244, 1);
    /* background: linear-gradient(135deg, transparent 25%, rgba(5, 70, 95, .05) 25%, rgba(5, 70, 95, .05) 50%, transparent 50%, transparent 75%, rgba(5, 70, 95, .05) 75%, rgba(5, 70, 95, .05));
    background-size: 4px 4px; */
    /* border: 1px solid #eee; */
    color: rgba(255, 96, 16, 1);
    text-align: left;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 2.6rem;
    /* font-size: calc(18px + 8 * (100vw - 320px) / 1600); */ /* 320px-18px | 1920px-26px */
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
}

/* .pagelist-unit-body-ttl::before {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 8px;
    border-top: 8px solid rgba(255, 96, 16, 1);
    content: "";
    transform: translateY(-50%);
} */

/* .pagelist-unit-body-ttl::after {
    position: absolute;
    top: -8px;
    left: 8px;
    display: block;
    width: 2px;
    border-top: 8px solid #fff;
    content: "";
} */

.pagelist-unit-body-ttl span a {
    color: rgba(255, 96, 16, 1);
}
.pagelist-unit-body-ttl span a:hover {
    color: rgba(255, 96, 16, 1);
    text-decoration: underline;
}
.pagelist-unit-body-img {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}
.pagelist-unit-body-img-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .5em 1em;
    width: 100%;
    /* background: rgba(1, 92, 172, .9); */
    background: rgba(23, 30, 32, .4);
    color: #fff;
    text-align: left;
    font-weight: 600;
}
.pagelist-unit-body-list {
    overflow: hidden;
}
.pagelist-unit-body-list-item {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #ccc;
    font-weight: 600;
    font-size: 1.5rem;
}
.pagelist-unit-body-list-item:nth-child(1) {
    border-top: 1px dotted #ccc;
}
.pagelist-unit-body-list-item a {
    position: relative;
    display: block;
    padding: 9px 10px 9px 40px;
    color: #020202;
}
.pagelist-unit-body-list-item a {
    color: #020202;
    text-decoration: none;
}
.pagelist-unit-body-list-item a:hover {
    color: #fc9c43;
}
.pagelist-unit-body-img img {
    margin-bottom: 0;
    width: 100%;
}
.pagelist-unit-body-list-item .ico {
    position: absolute;
    top: 13px;
    left: 5px;
    margin-right: 1px;
    color: #475989;
    font-size: 1.8rem;
}
.pagelist-unit-body-list-item a:hover .ico {
    left: 6px;
    transform: translate(1px, 0);
}

/* sp（768px未満の場合に適用） */
@media (max-width: 767.98px) {
    .pagelist-unit-body-ttl {
        font-size: 1.8rem;
    }
}

/* tb（1200px未満の場合に適用） */
@media (max-width: 1199.98px) {
    .pagelist-unit-body-ttl {
        font-size: 1.8rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .pagelist-unit-body-ttl {
        font-size: 2.6rem;
    }
    .pagelist-unit-body-txt {
        margin-bottom: 20px;
        font-size: 1.4rem;
    }
}


/* .pagetop-link
-------------------------------------------------------- */
.pagetop-link {
    margin: 0;
    width: 100%;
}
.pagetop-link a {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding: .8em;
    background-color: rgba(23, 30, 32, 1);
    color: #fff;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    /* line-height: 1.4; */
    cursor: pointer;
    transition: all .5s ease;

    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.pagetop-link a:hover {
    background-color: rgba(251, 72, 9, 1);
    color: #fff;
    text-decoration: none;
}
.pagetop-link .ico {
    margin-right: 5px;
}


/* .pagetop-btn
-------------------------------------------------------- */
.pagetop-btn {
    position: absolute;
    right: 30px;
    bottom: 100px;
    z-index: 100;
    display: none;
    margin: 0;
    padding: 0;
}
.pagetop-btn-move {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    text-align: center;
    text-decoration: none;
    line-height: 84px;
    opacity: 1.0;
    transition: all .5s;
}

a.pagetop-btn-move {
    text-decoration: none;
}
.pagetop-btn-move:hover {
    background-color: #a2000d;
    text-decoration: none;
    opacity: 1.0;
    transform: scale(1.1, 1.1);
}
.pagetop-btn-move .ico {
    color: #fff;
    font-size: 2.4rem;
    line-height: 84px;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .pagetop-btn {
        position: fixed;
        bottom: 30px;
    }
    .pagetop-btn-move {
        opacity: 1.0;
    }
}


/* reCaptcha
-------------------------------------------------------- */
.grecaptcha-badge {
    /* left: 6px !important; */
    z-index: 200;
    visibility: hidden;
    /* width: 70px !important; */
}
/* .grecaptcha-badge:hover {
    left: 6px !important;
    width: 256px !important;
} */

/* reCaptcha policy */
.recaptcha-policy {
    margin: 0;
    padding: 0;
    color: #adadad !important;
    text-align: center;
    font-size: 9px !important;
}
.recaptcha-policy a {
    color: #4da2f7;
    font-size: 9px !important;
}


/* GoogleCalendar / .ggcalendar
-------------------------------------------------------- */
.ggcalendar {
    margin: 3% auto;
    max-width: 982px;
}
.ggcalendar-inner {
    position: relative;
    overflow: hidden;
    padding-bottom: 70%;
    height: 0;
}
.ggcalendar-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* sp（768px未満の場合に適用） */
@media (max-width: 767.98px) {
    .ggcalendar-inner {
        padding-bottom: 90%;
    }
}


/* GoogleMap / .ggmap
-------------------------------------------------------- */
.ggmap {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    height: 540px;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* sp（768px未満の場合に適用） */
@media (max-width: 767.98px) {
    .ggmap {
        width: 100%;
    }
}


/* GoogleMapsAPI / .map-area
-------------------------------------------------------- */
.map-area {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 56.25%; /* 16:9 */
    max-width: 1920px;
}
.map-area-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* .youtube
-------------------------------------------------------- */
.youtube {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    padding-top: 30px;
    padding-bottom: 56.25%; /* 16:9アスペクト比 */
    width: 100%;
    height: 0;
}
.youtube iframe,
.youtube object,
.youtube embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* .video-area
-------------------------------------------------------- */
.video-area {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.video-area::before {
    display: block;
    padding-top: 56.25%; /* 16:9アスペクト比 */
    content: "";
}
.video-area.video-area-01::before {
    padding-top: 75%; /* 4:3アスペクト比 */
}
.video-area.video-area-02::before {
    padding-top: 56.25%; /* 16:9アスペクト比 */
}
.video-area .video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000; /* 背景を黒で表示 */
}
.video-area .ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    text-shadow: 0 0 15px #666;
    transform: translate(-50%, -50%);
}


/* .pageplugin / Facebook Page Plugin（IFrame）
-------------------------------------------------------- */
.pageplugin {
    display: block;
    overflow: hidden;
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
}


/* .facebook-wrap / Facebook Page Plugin（JavaScript SDK）
-------------------------------------------------------- */
.facebook-wrap {
    margin: 20px auto 0;
    max-width: 500px; /* 最大幅 */
}
.facebook-wrap:first-child {
    margin-top: 0;
}
.facebook-wrap > .fb-page {
    width: 100%;
}
.facebook-wrap > .fb-page > span,
.facebook-wrap iframe {
    width: 100% !important;
}


/* .twitter-wrap
-------------------------------------------------------- */
.twitter-wrap {
    display: block;
    overflow: hidden;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}
.twitter-wrap iframe {
    width: 100% !important;
}


/* .instagram-wrap
-------------------------------------------------------- */
.instagram-wrap {
    display: none !important;
}
.instagram-wrap {
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}

/* .instagram-wrap-hdr */
.instagram-wrap-hdr {
    padding: 5% 5% 0;
    text-align: center;
}

/* .instagram-wrap-body */
.instagram-wrap-body {
    display: flex;
    padding: 5% 0;

    flex-wrap: wrap;
    justify-content: center;
}
.instagram-list-item {
    margin: 1px;
    width: 30%;
    border: 1px solid #f1f1f1;
}
.instagram-thumbnail img {
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover; object-position: 0 0;"; /* IE対策 */
    opacity: 1;
    transition: .3s ease-in-out;

    -o-object-position: 0 0;
       object-position: 0 0;
    -o-object-fit: cover;
       object-fit: cover;
}
.instagram-thumbnail:hover img {
    opacity: .5;
}
.instagram-meta {
    padding: 5%;
    text-align: center;
}
.instagram-meta-likes,
.instagram-meta-comments {
    display: inline-block;
    margin: 0 3px;
    color: #666;
    font-size: 1.1rem;
}

/* .instagram-wrap-ftr */
.instagram-wrap-ftr {
    padding: 0 5% 5%;
    text-align: center;
}
.instagram-wrap-ftr .btn-ftr {
    display: inline-block;
    margin: 5px auto 0;
    padding: 7px 14px;
    border: 0;
    border-radius: 4px;
    background: #125688;
    color: #fff;
    vertical-align: top;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.5;
}
.instagram-wrap-ftr .btn-ftr:hover {
    opacity: .8;
}
.instagram-wrap-ftr .btn-ftr .ico {
    margin-right: 5px;
}


/* .hnav（hnav.js）
-------------------------------------------------------- */
.hnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
    height: calc(var(--vh, 1vh) * 100); /* height-vh.jsによる計算済みの実質100vh */
    padding-bottom: constant(safe-area-inset-bottom); /* iOSのホームバー（古いSafari）の自動余白確保 */
    padding-bottom: env(safe-area-inset-bottom); /* iOSのホームバー（Safe Area）の自動余白確保 */
    width: 100%;
    /* height: 100%; */
    transition: opacity ease .3s;
    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;
}
.hnav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

@supports (height: 100dvh) {
    .hnav {
        height: 100dvh;
    }
}

.hnav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.hnav::after {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 90;
    display: block;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, .7);
    background: rgba(0, 0, 0, .2); */
    background: rgba(0, 0, 0, .5);
    /* background: rgba(0, 0, 0, 1) url(../../assets/img/common/bg_hnav.png) no-repeat;
    background-size: cover; */
    content: "";
}

/* hnav-overlay */
.hnav-overlay {
    display: none;
}
.hnav.open .hnav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: block;
    height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
    height: calc(var(--vh, 1vh) * 100); /* height-vh.jsによる計算済みの実質100vh */
    width: 100%;
    /* height: 100%; */
    cursor: pointer;
}

@supports (height: 100dvh) {
    .hnav.open .hnav-overlay {
        height: 100dvh;
    }
}

/* hnav-inner */
.hnav-inner {
    position: absolute;
    z-index: 100;
    overflow: hidden;
    overflow-y: auto;
    padding: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    transition: all .6s ease;
    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;
}
/* .hnav.open .hnav-inner {
    will-change: transform;
} */

/* .hnav-inner-top */
.hnav-inner.hnav-inner-top {
    top: -120%;
    left: 0;
    visibility: hidden;
    max-height: 100%;
    height: auto;
}
.hnav.open .hnav-inner.hnav-inner-top {
    top: 0;
    visibility: visible;
}

/* .hnav-inner-right */
.hnav-inner.hnav-inner-right {
    right: -120%;
    visibility: hidden;
}
.hnav.open .hnav-inner.hnav-inner-right {
    right: 0;
    visibility: visible;
}

/* .hnav-inner-left */
.hnav-inner.hnav-inner-left {
    left: -120%;
    visibility: hidden;
}
.hnav.open .hnav-inner.hnav-inner-left {
    left: 0;
    visibility: visible;
}

/* .hnav-inner-fade */
.hnav-inner.hnav-inner-fade {
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .8s ease, visibility .8s ease;
}
.hnav.open .hnav-inner.hnav-inner-fade {
    visibility: visible;
    opacity: 1;
}

/* hnav-cancel */
.hnav-cancel {
    margin: 40px auto;
    text-align: center;
}
.hnav-cancel-btn {
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    /* background: #fff; */
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 2.0rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    cursor: pointer;
}
.hnav-cancel-btn:hover {
    text-decoration: none;
}
.hnav-cancel-btn .ico {
    position: relative;
    top: -3px;
    margin-right: 10px;
}

/* hnav-sitemap */
.hnav-sitemap {
    padding: 0 0 25px;
    background: rgba(255, 255, 255, 1);
}
.hnav-sitemap-list {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.hnav-sitemap-list-item {
    border-top: 1px solid #e5e5e5;
}
.hnav-sitemap-list-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}
.hnav-sitemap-list-item ul li {
    background: #f0f0f0;
}
.hnav-sitemap-list-item ul li a {
    padding-left: 7%;
    color: #020202;
}
.hnav-sitemap-list-item ul li a::before {
    display: none;
}
.hnav-sitemap-list-item ul li a::after {
    color: #020202;
}
.hnav-sitemap-list-item a,
.hnav-sitemap-toggle {
    position: relative;
    display: block;
    padding: 12px 40px;
    color: #020202;
    font-size: 1.6rem;
    line-height: 1.75;
}
.hnav-sitemap-toggle {
    cursor: pointer;
}
.hnav-sitemap-list-item a::before {
    position: absolute;
    top: 50%;
    left: 14px;
    color: rgba(255, 96, 16, 1);
    content: "\e88a";
    font-family: webfont;
    transform: translateY(-50%);
}
/* .hnav-sitemap-list-item a::after {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #fff;
    content: "\e845";
    font-family: webfont;
    transform: translateY(-50%);
} */
.hnav-sitemap-toggle::before {
    position: absolute;
    top: 50%;
    left: 14px;
    color: rgba(255, 96, 16, 1);
    content: "\e88a";
    font-family: webfont;
    transform: translateY(-50%);
}
.hnav-sitemap-toggle::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    margin-top: -6px;
    width: 8px;
    height: 8px;
    border-right: 4px solid rgba(255, 96, 16, 1);
    border-bottom: 4px solid rgba(255, 96, 16, 1);
    content: "";
    transition: all .5s;
    transform: rotate(45deg);
}
.hnav-sitemap-toggle.open::after {
    margin-top: -5px;
    transform: rotate(225deg);
}
.hnav-sitemap-list-item ul.open li a::after {
    top: 25%;
    transform: rotate(-45deg);
}
.hnav-sitemap-list-item ul {
    display: none;
}

/* hnav-info */
.hnav-info {
    padding: 25px 0 25px;
    background: rgba(255, 255, 255, 1);
}
.hnav-info .txt {
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* hnav-search */
.hnav-search {
    padding: 25px 25px 25px;
    background: rgba(255, 255, 255, 1);
}

/* hnav-widget */
.hnav-widget {
    padding: 25px 0 25px;
    background: rgba(255, 255, 255, 1);
}

/* hnav-contact */
.hnav-contact {
    padding: 0 0 15px;
    background: rgba(255, 255, 255, 1);
}
.hnav-contact a {
    display: block;
    color: #020202;
    text-align: center;
    text-decoration: none;
}
.hnav-contact-time {
    display: block;
    color: #020202;
    font-weight: 700;
    font-size: 1.2rem;
}
.hnav-contact-tel {
    display: block;
    color: #020202;
    text-decoration: none;
    letter-spacing: -.02em;
    font-weight: 500;
    font-size: 4.6rem;
    font-family: "Barlow Semi Condensed", sans-serif;
    line-height: 1;
}
.hnav-contact-tel .ico {
    margin-right: 5px;
    color: rgba(255, 96, 16, 1);
    font-size: 3.4rem;
}
.hnav-contact-txt {
    display: block;
    color: #020202;
    font-size: 1.0rem;
    line-height: 2;
}

/* hnav-btn */
.hnav-btn {
    display: flex;
    margin-bottom: 1em;
    padding: 0 10px;

    flex-wrap: wrap;
    justify-content: space-between;
}
.hnav-btn li {
    margin: 1.6vw 0 0;
    padding: 0 .8vw;
    width: 50%;
}
.hnav-btn li a {
    display: flex;
    flex-direction: column-reverse;
    padding: 1em .5em;
    width: 100%;
    height: 100%;
    border: 1px solid #e5e5e5;
    /* background: linear-gradient(-270deg, rgba(255, 96, 16, 1), rgba(255, 96, 16, 1), transparent, transparent);
    background-position: 1% 50%;
    background-size: 300% 300%; */
    color: rgba(255, 96, 16, 1);
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    /* transition: .4s ease-out; */

    align-items: center;
    justify-content: center;
}
.hnav-btn li a:hover {
    /* background-position: 99% 50%; */
    color: rgba(255, 96, 16, 1);
    text-decoration: none;
}
.hnav-btn-item a .ico {
    font-size: 2.2rem;
}

/* hnav-bnr */
.hnav-bnr {
    margin: 0 0 10px;
    padding: 15px;
    background: #f0f0f0;
    /* background: #fff url(../../assets/img/common/bg_hnav-bnr.png); */
}
.hnav-bnr > div {
    z-index: 0 !important;
}
.hnav-bnr-inner {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.hnav-bnr-list {
    /* overflow: hidden; */
    margin: 0 auto;
}
.hnav-bnr-list-item {
    margin: 0 auto;
    margin-top: 10px;
    padding: 0;
    width: 100%;
    border: 4px solid #fff;
    /* border-radius: 8px; */
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
}
.hnav-bnr-list-item:nth-child(1) {
    margin-top: 0;
}
.hnav-bnr-list-item a {
    display: block;
    overflow: hidden;
    padding: 20px 4px;
    /* border-radius: 6px; */
    /* border: 1px solid #999; */
    color: #fff;
    text-decoration: none;
    /* text-shadow: 0 0 1px rgba(255, 255, 255, 1),
    0 0 5px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 1),
    0 0 30px rgba(255, 255, 255, 1); */
    letter-spacing: -.02em;
    transition: all .3s ease;

    -webkit-font-feature-settings: "palt" 1;
       -moz-font-feature-settings: "palt" 1;
        -ms-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
}
.hnav-bnr-list-item a {
    position: relative;
    background: #ccc;
    background-image: url(../../assets/img/common/bg_hnav-bnr-list-item_00.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hnav-bnr-list-item:nth-child(1) a {
    background-image: url(../../assets/img/common/bg_hnav-bnr-list-item_01.png);
}
.hnav-bnr-list-item:nth-child(2) a {
    background-image: url(../../assets/img/common/bg_hnav-bnr-list-item_02.png);
}
.hnav-bnr-list-item:nth-child(3) a {
    background-image: url(../../assets/img/common/bg_hnav-bnr-list-item_03.png);
}
.hnav-bnr-list-item a::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(23, 30, 32, .33) url(../../assets/img/common/bg_overlay_24.png) repeat 0 0;
    content: "";
}
.hnav-bnr-list-item a::after {
    position: absolute;
    top: 50%;
    left: 15px;
    display: inline-block;
    margin-top: 0;
    color: #fff;
    content: "\e848";
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: "webfont";
    transform: translateY(-50%);
}
.hnav-bnr-list-item a:hover {
    opacity: .5;
}
.hnav-bnr-list-item a .ja {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 2px;
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 2.2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.3;
}
.hnav-bnr-list-item a .en {
    position: relative;
    z-index: 2;
    display: block;
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.3;
}

/* hnav-link */
.hnav-link {
    margin: 0 0 10px;
    padding: 0 0 10px;
    /* border-bottom: 1px solid #e5e5e5; */
    background: rgba(255, 255, 255, 1);
}
.hnav-link-list {
    display: flex;
    margin: 0;
    padding: 0 15px;
    max-width: 290px;
    width: 100%;

    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.hnav-link-list li {
    margin: 2vw 0 0;
    padding: 0 4px;
    width: 50%;
}
.hnav-link-list li:nth-child(2n) {
    margin-right: 0;
}
.hnav-link-list li a {
    position: relative;
    display: block;
    padding: 7px 4px 7px 30px;
    border: 1px solid rgba(23, 30, 32, 1);
    border-radius: 5px;
    background: rgba(23, 30, 32, 1);
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
}
.hnav-link-list li a::before {
    position: absolute;
    top: 50%;
    left: 15px;
    padding: 0;
    color: rgba(255, 255, 255, 1);
    content: "\e8b4";
    font-size: .8rem;
    font-family: webfont;
    transform: translateY(-50%);
}

/* hnav-support */
.hnav-support {
    margin: 0 0 20px;
    padding: 10px 5px 10px;
    /* border-bottom: 1px solid #e5e5e5; */
    background: rgba(255, 255, 255, 1);
    text-align: center;
}
.hnav-support-item {
    display: inline-block;
    margin: 10px 0 0;
    border-left: 1px solid #e5e5e5;
    font-size: 1.0rem;
    line-height: 1.2;
}
.hnav-support-item:first-child {
    border-left: none;
}
.hnav-support-item a {
    padding: 0 1.2vw;
    color: #282828;
    text-decoration: none;
}

/* hnav-follow */
.hnav-follow {
    padding: 10px 15px 30px;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    font-size: 0;
}
.hnav-follow .follow-btn {
    display: inline-block;
}
.hnav-follow .follow-btn a {
    display: block;
    margin: 0 .3em .3em 0;
    width: 30px;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    line-height: 30px;
}
.hnav-follow .follow-btn a .ico {
    position: relative;
    top: -2px;
}
.hnav-follow .follow-btn a:hover {
    text-decoration: none;
}

/* brand-color */
.hnav-follow .follow-btn a.follow-btn-twitter {
    background-color: #00acee;
    background-color: rgba(0, 172, 238, 1);
    background-color: #212121;
    background-color: rgba(33, 33, 33, 1);
}
.hnav-follow .follow-btn a.follow-btn-facebook {
    background-color: #3b5998;
    background-color: rgba(59, 89, 152, 1);
}
.hnav-follow .follow-btn a.follow-btn-instagram {
    background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
    background-color: #d93177;
    background-color: rgba(217, 49, 119, 1);
}
.hnav-follow .follow-btn a.follow-btn-youtube {
    background-color: #f00;
    background-color: rgba(255, 0, 0, 1);
}
.hnav-follow .follow-btn a.follow-btn-line {
    /* background-color: #1dcd00; */
    background-color: #00b900;
    background-color: rgba(0, 185, 0, 1);
}
.hnav-follow .follow-btn a.follow-btn-tiktok {
    background-color: #000;
    background-color: rgba(0, 0, 0, 1);
}
.hnav-follow .follow-btn a.follow-btn-pinterest {
    /* background-color: #cb2027; */
    background-color: #e60023;
    background-color: rgba(230, 0, 35, 1);
}

/* hnav-other */
.hnav-other {
    padding: 10px 15px 30px;
    background: rgba(255, 255, 255, 1);
}
.hnav-other-link {
    display: block;
    margin-bottom: 15px;
    color: #5e5e5e;
    letter-spacing: .05em;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
}
.hnav-other-copyright {
    color: #afafaf;
    letter-spacing: .05em;
    font-weight: 500;
    font-size: 1.0rem;
    font-family: "Noto Sans JP", sans-serif;
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .hnav-inner.hnav-inner-right,
    .hnav-inner.hnav-inner-left {
        min-width: 640px;
        max-width: none;
        width: 50%;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .hnav-inner {
        padding: 0 4em;
        transition: all .6s ease;
    }
    .hnav-inner.hnav-inner-right,
    .hnav-inner.hnav-inner-left {
        min-width: 640px;
        max-width: none;
        width: 50%;
    }
    .hnav-contact {
        padding: 0 0 15px;
    }
    .hnav-other {
        display: flex;
        flex-direction: row-reverse;
        padding: 10px 0 30px;

        justify-content: space-between;
        align-items: center;
    }
    .hnav-other-link {
        display: inline-block;
        margin-bottom: 0;
        font-size: 1.2rem;
    }
    .hnav-other-copyright {
        margin-right: auto;
        font-size: 1.0rem;
    }
}


/* .hnav-toggle
-------------------------------------------------------- */
.hnav-toggle,
.hdr-toggle {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    display: block;
    padding: 0;
    width: 60px;
    height: 60px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 96, 16, 1);
    text-align: center;
    cursor: pointer;
    transition: all .6s cubic-bezier(.190, 1.000, .220, 1.000);
}
.hnav-toggle:hover,
.hdr-toggle:hover {
    background: rgba(251, 72, 9, 1);
}
.hnav-toggle::after,
.hdr-toggle::after {
    position: absolute;
    bottom: calc(50% - 22px);
    left: 50%;
    display: block;
    width: 100%;
    color: #fff;
    content: "MENU";
    text-align: center;
    text-decoration: none;
    font-size: 1.0rem;
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    transition: all .4s;
    transform: translateX(-50%);
}
.hnav-toggle.open::after,
.hdr-toggle.open::after {
    content: "CLOSE";
}

/* .hnav-toggle-icon */
.hnav-toggle-icon,
.hdr-toggle-icon {
    position: relative;
    top: 10px;
    display: inline-block;
    margin: auto;
    width: 30px;
    height: 18px;
}
.hnav-toggle-icon span,
.hdr-toggle-icon span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    border-radius: 0;
    background: #fff;
    transition: all .4s;
}
.hnav-toggle-icon span:nth-of-type(1),
.hdr-toggle-icon span:nth-of-type(1) {
    top: 0;
}
.hnav-toggle-icon span:nth-of-type(2),
.hdr-toggle-icon span:nth-of-type(2) {
    top: 8px;
}
.hnav-toggle-icon span:nth-of-type(3),
.hdr-toggle-icon span:nth-of-type(3) {
    bottom: 0;
}

/* ※-toggle-01（中央のラインが消え、上下のラインでクローズボタン） */
.hnav-toggle-01 .hnav-toggle-icon span:nth-of-type(1),
.hdr-toggle-01 .hdr-toggle-icon span:nth-of-type(1) {
    width: 100%;
}
.hnav-toggle-01 .hnav-toggle-icon span:nth-of-type(2),
.hdr-toggle-01 .hdr-toggle-icon span:nth-of-type(2) {
    width: 60%;
}
.hnav-toggle-01 .hnav-toggle-icon span:nth-of-type(3),
.hdr-toggle-01 .hdr-toggle-icon span:nth-of-type(3) {
    width: 80%;
}
.hnav-toggle-01:hover .hnav-toggle-icon span:nth-of-type(1),
.hdr-toggle-01:hover .hdr-toggle-icon span:nth-of-type(1) {
    width: 100%;
}
.hnav-toggle-01:hover .hnav-toggle-icon span:nth-of-type(2),
.hdr-toggle-01:hover .hdr-toggle-icon span:nth-of-type(2) {
    width: 100%;
}
.hnav-toggle-01:hover .hnav-toggle-icon span:nth-of-type(3),
.hdr-toggle-01:hover .hdr-toggle-icon span:nth-of-type(3) {
    width: 100%;
}
.hnav-toggle-01.open .hnav-toggle-icon span:nth-of-type(1),
.hdr-toggle-01.open .hdr-toggle-icon span:nth-of-type(1) {
    width: 100%;
    transform: translateY(8px) rotate(-45deg);
}
.hnav-toggle-01.open .hnav-toggle-icon span:nth-of-type(2),
.hdr-toggle-01.open .hdr-toggle-icon span:nth-of-type(2) {
    width: 100%;
    opacity: 0;
}
.hnav-toggle-01.open .hnav-toggle-icon span:nth-of-type(3),
.hdr-toggle-01.open .hdr-toggle-icon span:nth-of-type(3) {
    width: 100%;
    transform: translateY(-8px) rotate(45deg);
}

/* ※-toggle-02（中央のラインが消え、上下のラインが回転しながらクローズボタン） */
.hnav-toggle-02.open .hnav-toggle-icon span:nth-of-type(1),
.hdr-toggle-02.open .hdr-toggle-icon span:nth-of-type(1) {
    transform: translateY(8px) rotate(-315deg);
}
.hnav-toggle-02.open .hnav-toggle-icon span:nth-of-type(2),
.hdr-toggle-02.open .hdr-toggle-icon span:nth-of-type(2) {
    opacity: 0;
}
.hnav-toggle-02.open .hnav-toggle-icon span:nth-of-type(3),
.hdr-toggle-02.open .hdr-toggle-icon span:nth-of-type(3) {
    transform: translateY(-8px) rotate(315deg);
}

/* ※-toggle-03（メニューボタンの向きを変えるクローズボタン） */
.hnav-toggle-03.open,
.hdr-toggle-03.open {
    transform: rotate(-90deg);
}

/* ※-toggle-04（中央ラインがサークルに変形するクローズボタン） */
.hnav-toggle-04::after,
.hdr-toggle-04::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin: -35px 0 0 -35px;
    width: 70px;
    height: 70px;
    border: 2px solid transparent;
    border-radius: 50%;
    content: "";
    transition: all .75s;
}
.hnav-toggle-04.open .hnav-toggle-icon span:nth-of-type(1),
.hdr-toggle-04.open .hdr-toggle-icon span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
}
.hnav-toggle-04.open .hnav-toggle-icon span:nth-of-type(2),
.hdr-toggle-04.open .hdr-toggle-icon span:nth-of-type(2) {
    left: 60%;
    opacity: 0;
    animation: open-bar-04 .8s forwards;
}
@keyframes open-bar-04 {
    100% {
        height: 0;
    }
}
.hnav-toggle-04.open .hnav-toggle-icon span:nth-of-type(3),
.hdr-toggle-04.open .hdr-toggle-icon span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
}
.hnav-toggle-04.open::after,
.hdr-toggle-04.open::after {
    animation: open-toggle-04 .7s .25s forwards;
}
@keyframes open-toggle-04 {
    0% {
        border-color: transparent;
        transform: rotate(0);
    }
    25% {
        border-color: transparent #fff transparent transparent;
    }
    50% {
        border-color: transparent #fff #fff transparent;
    }
    75% {
        border-color: transparent #fff #fff #fff;
    }
    100% {
        border-color: #fff;
        transform: rotate(-680deg);
    }
}

/* ※-toggle-05（ホバーアニメーションのあるクローズボタン） */
.hnav-toggle-05 .hnav-toggle-icon,
.hdr-toggle-05 .hdr-toggle-icon {
    overflow: hidden;
}
.hnav-toggle-05:hover .hnav-toggle-icon span:nth-of-type(1),
.hdr-toggle-05:hover .hdr-toggle-icon span:nth-of-type(1) {
    animation: hover-toggle-05 .8s cubic-bezier(.58, .3, .005, 1) 0s 1;
}
.hnav-toggle-05:hover .hnav-toggle-icon span:nth-of-type(2),
.hdr-toggle-05:hover .hdr-toggle-icon span:nth-of-type(2) {
    animation: hover-toggle-05 .8s cubic-bezier(.58, .3, .005, 1) .05s 1;
}
.hnav-toggle-05:hover .hnav-toggle-icon span:nth-of-type(3),
.hdr-toggle-05:hover .hdr-toggle-icon span:nth-of-type(3) {
    animation: hover-toggle-05 .8s cubic-bezier(.58, .3, .005, 1) .1s 1;
}
@keyframes hover-toggle-05 {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100%);
    }
    50.01% {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
.hnav-toggle-05.open,
.hdr-toggle-05.open {
    transform: rotate(-90deg);
}

/* sr-only */
.sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    margin: 0;
    width: auto;
    height: auto;
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .hnav-toggle {
        display: block;
    }
    .hdr-toggle {
        display: none;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .hnav-toggle {
        display: block;
    }
    .hdr-toggle {
        display: none;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .hnav-toggle {
        display: none;
    }
    .hdr-toggle {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        margin-left: 20px;
        width: 66px;
        height: 66px;
        border: 0;
        border-radius: 0;
        background: rgba(255, 96, 16, 1);
    }
    .hdr-toggle.open {
        background: rgba(255, 96, 16, 1);
    }
    .hdr-toggle::after {
        bottom: calc(50% - 23px);
    }
    .hdr-toggle-icon {
        top: 11px;
        width: 32px;
    }
}


/* .hnav-hamburger
-------------------------------------------------------- */
.hnav-hamburger {
    /* position: absolute; */
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    display: block;
    padding: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 96, 16, 1);
    text-align: center;
}
.hnav-hamburger-btn {
    position: relative;
    display: block;
    height: 100%;
}
.hnav-hamburger-btn::after {
    position: absolute;
    bottom: calc(50% - 18px);
    left: 50%;
    display: block;
    width: 100%;
    color: #fff;
    content: "MENU";
    text-align: center;
    text-decoration: none;
    font-size: 1.0rem;
    font-family: "Montserrat", sans-serif;
    transition: all .4s;
    transform: translateX(-50%);
}

/* .hnav-hamburger-btn:not(.open):hover::after {
    content: 'OPEN';
} */

.hnav-hamburger-btn.open::after {
    content: "CLOSE";
}
.hnav-hamburger-btn span {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 1;
    margin: auto;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all .5s cubic-bezier(.645, .045, .355, 1);
}
.hnav-hamburger-btn span:nth-of-type(1) {
    top: calc(50% - 15px);
    transition: all .4s;
}
.hnav-hamburger-btn span:nth-of-type(2) {
    top: calc(50% - 9px);
    transition: all .2s ease .2s;
}
.hnav-hamburger-btn span:nth-of-type(3) {
    top: calc(50% - 3px);
    transition: all .4s;
}
.hnav-hamburger-btn.open span:nth-of-type(1) {
    transform: translateY(6px) rotate(135deg);
}
.hnav-hamburger-btn.open span:nth-of-type(2) {
    opacity: 0;
}
.hnav-hamburger-btn.open span:nth-of-type(3) {
    transform: translateY(-6px) rotate(-135deg);
}


/* .fnav
-------------------------------------------------------- */
.fnav {
    width: 100%;
    /* background: rgba(255, 255, 255, 1); */
}
.fnav-inner {
    margin: 0 auto;
    padding: 0 14px;
    max-width: 1640px;
    width: 100%;
    /* background: rgba(255, 255, 255, 1); */
}

/* fnav-ttl */
.fnav-ttl {
    margin-bottom: 1em;
    padding: 1em 1.25em 1em;
    border-radius: 4px;
    background: #e5e5e5;
    font-size: 2.2rem;
}

/* fnav-search */
.fnav-search {
    padding: 25px 0 25px;
    /* background: rgba(255, 255, 255, 1); */
}

/* fnav-widget */
.fnav-widget {
    padding: 25px 0 25px;
    /* background: rgba(255, 255, 255, 1); */
}

/* fnav-tag */
.fnav-tag {
    padding: 25px 0 25px;
    /* background: rgba(255, 255, 255, 1); */
}
.fnav-tag ul {
    display: flex;

    flex-wrap: wrap;
    justify-content: flex-start;
}
.fnav-tag ul li {
    margin: 0 .5em .5em 0;
}
.fnav-tag ul li a {
    display: inline-block;
    padding: .5em .8em;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.4;
}
.fnav-tag ul li a span::before {
    margin-right: 1px;
    content: "#";
}

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


/* .profile（この記事を書いた人）
-------------------------------------------------------- */
.profile {
    display: flex;
    margin: 30px auto;
    padding: 30px;
    background: #f8f8f8;
    /* border: 5px solid #f3f3f3; */

    flex-wrap: wrap;
    justify-content: space-between;
}
.profile-ttl {
    margin-bottom: 15px;
    padding: 0;
    width: 100%;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.6;
}
.profile-thumbnail {
    width: 120px;
}
.profile-thumbnail img {
    /* border: 2px solid #d4524b; */
    /* border-radius: 50%; */
}
.profile-info {
    margin: 15px auto 0;
}
.profile-info p {
    margin: 0;
    word-break: break-all;
    letter-spacing: .05em;
    font-weight: 400;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", sans-serif;
}
.profile-info .description {
    margin-bottom: .5em;
    font-size: 1.4rem;
}
.profile-info .url {
    color: #497768;
    font-size: 1.3rem;
}
.profile-info .url a {
    color: #497768;
}

/* .writter-follow */
.writter-follow {
    padding-top: 10px;
    font-size: 0;
}
.writter-follow .follow-btn {
    display: inline-block;
}
.writter-follow .follow-btn a {
    display: block;
    margin: 0 .3em .3em 0;
    width: 36px;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    line-height: 36px;
}
.writter-follow .follow-btn a .ico {
    position: relative;
    top: -2px;
}
.writter-follow .follow-btn a:hover {
    text-decoration: none;
}

/* brand-color */
.writter-follow .follow-btn a.follow-btn-twitter {
    background-color: #00acee;
    background-color: rgba(0, 172, 238, 1);
    background-color: #212121;
    background-color: rgba(33, 33, 33, 1);
}
.writter-follow .follow-btn a.follow-btn-facebook {
    background-color: #3b5998;
    background-color: rgba(59, 89, 152, 1);
}
.writter-follow .follow-btn a.follow-btn-instagram {
    background: radial-gradient(circle farthest-corner at 32% 106%, #ffe17d 0, #ffcd69 10%, #fa9137 28%, #eb4141 42%, transparent 82%), linear-gradient(135deg, #234bd7 12%, #c33cbe 58%);
    background-color: #d93177;
    background-color: rgba(217, 49, 119, 1);
}
.writter-follow .follow-btn a.follow-btn-youtube {
    background-color: #f00;
    background-color: rgba(255, 0, 0, 1);
}
.writter-follow .follow-btn a.follow-btn-line {
    /* background-color: #1dcd00; */
    background-color: #00b900;
    background-color: rgba(0, 185, 0, 1);
}
.writter-follow .follow-btn a.follow-btn-tiktok {
    background-color: #000;
    background-color: rgba(0, 0, 0, 1);
}
.writter-follow .follow-btn a.follow-btn-pinterest {
    /* background-color: #cb2027; */
    background-color: #e60023;
    background-color: rgba(230, 0, 35, 1);
}

/* tb（768px以上の場合に適用） */
@media (min-width: 768px) {
    .profile-info {
        margin: 0 0 0 25px;

        flex: 1;
    }
}


/* .scroll-point（ページ内リンクレスポンシブ対応）
-------------------------------------------------------- */
a.scroll-point {
    display: block;
    margin-top: -60px;
    padding-top: 60px;
    height: 1px;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    a.scroll-point {
        display: block;
        margin-top: -79px;
        padding-top: 79px;
    }
}


/* .tab-menu（tab-menu.js）
-------------------------------------------------------- */
.tab-menu {
    overflow: hidden;
    width: 100%;
}

/* .tab-menu-list */
.tab-menu-list {
    display: flex;
    padding: 0;
    width: 100%;

    align-items: flex-end;
    justify-content: space-between;
}
.tab-menu-list li {
    position: relative;
    display: flex;
    margin: 0 1px 0 0;
    padding: .5em .2em;
    border-radius: 0 0 0 0;
    background-color: #e5e5e5;
    text-align: center;
    cursor: pointer;
    transition: all .2s ease-out;

    flex: 1;
    justify-content: center;
    align-items: center;
}
.tab-menu-list li:last-child {
    margin-right: 0;
}
.tab-menu-list li.current {
    background-color: rgba(255, 96, 16, 1);
    color: #fff;
}
.tab-menu-list li.current::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 6, 61, 1);
    content: "";
}

/* .tab-menu-box */
.tab-menu-box {
    padding: 20px;
    width: 100%;
    border: 1px solid #e5e5e5;
}
.tab-menu-box-fade,
.tab-menu-box-hover {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0;
    opacity: 0;
}
.tab-menu-box-fade.show,
.tab-menu-box-hover.show {
    overflow: visible;
    height: auto;
    opacity: 1;
}

/* .tab-menu-box-fade */
.tab-menu-box-fade.show {
    transition: opacity .4s ease-in-out;
}

/* .tab-menu-box-hover */
.tab-menu-box-hover {
    cursor: pointer;
}
.tab-menu-box-hover.show {
    transition: opacity 1.0s ease-in-out;
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .tab-menu-list li {
        padding: 1em .4em;
    }
}


/* .fixbnr（fixbnr.js）
-------------------------------------------------------- */
.fixbnr {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 101;
    display: none;
    padding: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;
}

/* .fixbnr-txt */
.fixbnr-txt {
    margin: 0;
    padding: 8px 0 0;
    background-color: rgba(27, 72, 159, .9);
    box-shadow: 0 -1px 5px #a0a0a0;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.0rem;
}
.fixbnr-txt .free {
    margin-left: 10px;
    padding: .2em .6em;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.0rem;
}

/* .fixbnr-btn */
.fixbnr-btn {
    padding: 4px 0 6px;
    background-color: rgba(27, 72, 159, .9);
}
.fixbnr-btn-sp ul,
.fixbnr-btn-pc ul {
    display: flex;
    margin: 0 1%;
    padding: 4px 10px 0;

    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: space-between;
}
.fixbnr-btn-sp ul .btn-fixbnr-sp {
    display: block;
    margin: 0;
    padding: 14px 22px;
    width: 100%;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    background: #f3f3f3;
    background: linear-gradient(to bottom, #fff 0, #f3f3f3 100%);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, .15);
    color: #1b489f;
    text-shadow: 0 1px 0 #fff;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.2;
}
.fixbnr-btn-sp ul .btn-fixbnr-sp .ico {
    position: relative;
    top: -1px;
    margin: 0 5px 0 0;
    color: #1b489f;
    font-size: 1.4rem;
}

/* sp（0px～480px未満の場合に適用） */
@media (min-width: 0) and (max-width: 480px) {
    .fixbnr-btn-sp ul .btn-fixbnr-sp {
        padding: 8px 12px;
    }
}

/* sp（0px～768px未満の場合に適用） */
@media (min-width: 0) and (max-width: 767.98px) {
    .fixbnr-btn-sp ul li {
        width: 48.5%;
    }
    .fixbnr-btn-sp ul li:last-child {
        margin-right: 0;
    }
    .fixbnr-btn-sp ul .btn-fixbnr-sp {
        font-size: 1.4rem;
    }
}

/* tb（768px～1200px未満の場合に適用） */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .fixbnr-btn-sp ul li {
        width: 48.5%;
    }
    .fixbnr-btn-sp ul li:last-child {
        margin-right: 0;
    }
    .fixbnr-btn-sp ul .btn-fixbnr-sp {
        font-size: 1.4rem;
    }
}

/* pc（1200px以上の場合に適用） */
@media (min-width: 1200px) {
    .fixbnr {
        z-index: 99;
        padding: 12px 0 0;
    }
    .fixbnr-txt {
        padding: 5px 0 0;
        /* color: rgba(27, 72, 159, 1); */
        font-size: 1.4rem;
        /* background-color: rgba(255, 255, 255, 1); */
    }
    .fixbnr-txt-inner {
        display: inline-block;
        margin: 0 auto;
        width: 720px;
    }
    .fixbnr-btn {
        padding: 4px 0 0;
    }
    .fixbnr-btn-pc {
        position: relative;
        margin: 0 auto;
        width: 1200px;
    }
    .fixbnr-btn-pc::before {
        position: absolute;
        bottom: 0;
        left: 50%;
        z-index: 1;
        display: block;
        margin: 0 auto;
        width: 1200px;
        height: 115px;
        background-image: url(../../assets/img/common/bg_fixbnr.png);
        content: "";
        transform: translateX(-50%);
    }
    .fixbnr-btn-pc ul {
        position: relative;
        z-index: 2;
        margin: 0 22%;
        padding: 0 0 8px;
    }
    .fixbnr-btn-pc ul li {
        width: 44%;
    }
    .fixbnr-btn-pc ul li:last-child {
        margin-right: 0;
        width: 53%;
    }
    .fixbnr-btn-pc-info-tel {
        display: block;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 3.6rem;
        line-height: 1.2;
    }
    .fixbnr-btn-pc-info-tel .ico {
        position: relative;
        top: -1px;
        margin-right: 5px;
    }
    .fixbnr-btn-pc-info-time {
        display: block;
        color: #fff;
        font-size: 1.1rem;
    }
    .fixbnr-btn-pc-mail {
        font-size: 1.8rem;
    }
    .fixbnr-btn-pc ul .btn-fixbnr-pc {
        display: block;
        margin: 0;
        padding: 16px 22px;
        width: 100%;
        border: 1px solid #e6000f;
        border-radius: 5px;
        background: #cd001f;
        background: linear-gradient(to bottom, red 0, #cd001f 100%);
        box-shadow: 2px 3px 10px rgba(0, 0, 0, .15);
        color: #fff;
        text-shadow: 0 -1px 0 #cd001f;
        font-weight: 700;
        line-height: 1.4;
    }
    .fixbnr-btn-pc ul .btn-fixbnr-pc .ico {
        position: relative;
        top: -1px;
        margin: 0 5px 0 0;
        color: #fff;
        font-size: 1.8rem;
    }
    .fixbnr-btn-pc ul .btn-fixbnr-pc:hover {
        color: #fff;
    }
}
