﻿@charset "UTF-8";

/* ==========================================================
   break-points
   ========================================================== */
:root {
    /* 
        Large PC : min-width: 1280px
        Small PC : min-width: 1160px
        PC       : min-width: 920px
        Tab      : min-width: 768px
    */

    --maxWidth: 1280px;
    --maxContentWidth: 1180px;
}

/* ==========================================================
   font-family
   ========================================================== */
:root {
    --gothic: "Public Sans", sans-serif;
    --mincho: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --garamond: 'EB Garamond', serif;
    --garaAndMin: 'EB Garamond', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    --roboto: 'Roboto', sans-serif;
    --lato: 'Lato', sans-serif;
    --fontAwesome: "Font Awesome 5 Free";
}

/* ==========================================================
   parts size
   ========================================================== */
:root {
    --header-height: 80px;
    --top-nav-height: 65px;
    --product-nav-height: 110px;
}

/* ========================================
   base
   ======================================== */
::selection {
    background: #b3d4fc;
    color: #000;
}

/* Firefox用 */
::-moz-selection {
    background: #b3d4fc;
    color: #000;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
    font-size: 62.5% !important;
}

body {
    letter-spacing: .15rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--gothic);
    font-feature-settings: "palt";
    font-size: 16px;
    color: #383838;
    line-height: 1.7em;
    word-wrap: break-word;
}

@media print {
    /* 全て非表示 */
    body * {
        visibility: hidden;
        margin: 0;
        padding: 0;
        height: 0;
    }
    /* 特定箇所のみ表示 */
    .print-area, .print-area * {
        visibility: visible;
    }
    .print-area {
        position: absolute;
        top: 0;
        left: 0;
    }
}

h1 {
    border-bottom: 1px solid #898989;
    margin: 0 auto 10px;
    padding: 60px 0 30px;
    text-align: center;
    width: 100%;
}

@media screen and (min-width: 920px) {
    h1 {
        margin: 0 auto 20px;
    }
}

    h1 > small {
        display: block;
        margin-top: 20px;
        font-size: 0.5em;
        color: #686868;
    }

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #151515;
    transition: 0.2s;
}

    a:hover {
        opacity: 0.7;
    }

button {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    appearance: none;
    text-align: left;
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

hr.right_align,
hr.left_align {
    border: none;
    border-top: 2px solid #343434;
    width: 85%;
}

hr.right_align {
    margin-left: auto;
    margin-right: 0;
}

hr.left_align {
    margin-left: 0;
    margin-right: auto;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="email"],
textarea {
    border: 1px solid #aeaeae;
    border-radius: 0;
    margin: 7px auto;
    font-size: 16px;
    font-family: sans-serif;
    outline: none;
    -webkit-transition: background 0.2s linear;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: background 0.2s linear;
    width: 100%;
}

    input[type="text"]:focus,
    input[type="number"]:focus,
    input[type="tel"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border: 1px solid rgb(216, 130, 155);
    }

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="email"] {
    padding: 2px 16px;
    height: 50px;
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
}

    input[type="text"]:-moz-read-only,
    input[type="number"]:-moz-read-only,
    input[type="tel"]:-moz-read-only,
    input[type="password"]:-moz-read-only,
    input[type="email"]:-moz-read-only {
        background: none;
        border: none;
    }

    input[type="text"]:read-only,
    input[type="number"]:read-only,
    input[type="tel"]:read-only,
    input[type="password"]:read-only,
    input[type="email"]:read-only {
        background: none;
        border: none;
    }

select {
    border: 1px solid #aeaeae;
    height: 50px;
    margin: 0 auto;
    padding: 2px 16px;
    font-family: sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

    select:focus,
    select:hover {
        cursor: pointer;
        outline: 0;
    }

/* ボタン基本 */
.btn {
    position: relative;
    background: none;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-size: 1.0em;
    transition: 0.3s;
    cursor: pointer;
}

/* 第1ボタン */
.btn_primary {
    position: relative;
    display: block;
    border: 1px solid #898989;
    border-radius: 0;
    padding: 18px 16px;
    font-weight: 500;
    font-size: 13px;
    color: #000000;
    width: 80%;
    box-sizing: border-box;
}

    .btn_primary:after {
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
        font-size: 10px;
        content: "▶";
    }

    .btn_primary:hover {
        border: 1px solid #454545;
        background-color: #454545;
        color: #ffffff;
    }

@media screen and (min-width: 920px) {
    .btn_primary {
        width: 100%;
        max-width: 300px;
    }
}

/* 第2ボタン */
.btn_secondary {
    position: relative;
    display: block;
    background-color: #383838;
    border: 1px solid #383838;
    border-radius: 0;
    padding: 18px 16px;
    font-weight: 500;
    font-size: 13px;
    color: #ffffff;
    width: 80%;
    box-sizing: border-box;
}

    .btn_secondary:after {
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);
        font-size: 10px;
        content: "▶";
    }

    .btn_secondary:hover {
        background-color: #565656;
        border: 1px solid #565656;
        color: #ffffff;
    }

@media screen and (min-width: 920px) {
    .btn_secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* 実行系ボタン（進む・未来）*/
.btn_submit {
    background-color: #A80000;
    border-radius: 0;
    margin: 0 12px;
    padding: 14px 10px;
    font-weight: normal;
    color: #ffffff;
    width: 80%;
    max-width: 350px;
    box-sizing: border-box;
}
    .btn_submit:hover {
        background-color: #8f0101;
        color: #ffffff;
    }

/* キャンセル系ボタン（戻る・過去） */
.btn_cancel {

}

/* 戻るボタン */
.btn_back {
    position: relative;
    display: block;
    border: 1px solid #898989;
    border-radius: 0;
    padding: 14px 16px;
    font-size: 14px;
    color: #000000;
    width: 80%;
    box-sizing: border-box;
}

    .btn_back:before {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        font-size: 10px;
        content: "◀";
    }

    .btn_back:hover {
        border: 1px solid #454545;
        background-color: #454545;
        color: #ffffff;
    }

@media screen and (min-width: 920px) {
    .btn_back {
        width: 100%;
        max-width: 300px;
    }
}

/* 印刷ボタン */
.btn_print {
    position: relative;
    display: block;
    border: 1px solid #898989;
    border-radius: 0;
    padding: 18px 16px;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    width: 80%;
    box-sizing: border-box;
}

    .btn_print:hover {
        border: 1px solid #454545;
        background-color: #454545;
        color: #ffffff;
    }

@media screen and (min-width: 920px) {
    .btn_print {
        width: 100%;
        max-width: 300px;
    }
}

/* ボタン配置 */
.btn_position {
    position: relative;
    display: block;
    width: 100%;
}

    .btn_position > .center,
    .btn_position > .left,
    .btn_position > .right {
        margin: 0 auto;
    }

@media screen and (min-width: 920px) {
    .btn_position > .center {
        margin: 0 auto;
    }

    .btn_position > .left {
        margin-left: 0;
        margin-right: auto;
    }

    .btn_position > .right {
        margin-left: auto;
        margin-right: 0;
    }
}

/* No Data Message */
.nodata_msg {
    background-color: #fefefe;
    border: 1px solid #898989;
    margin: 20px auto;
    padding: 40px 35px;
    width: 100%;
    max-width: var(--maxContentWidth);
    box-sizing: border-box;
}

/* スクロールバーの全体的な幅・高さ */
.scroll-on::-webkit-scrollbar {
    width: 8px;
}

/* スクロールバーの背景 */
.scroll-on::-webkit-scrollbar-track {
    background-color: #ffffff;
}

/* スクロールバーのつまみ */
.scroll-on::-webkit-scrollbar-thumb {
    background-color: #898989;
    border-radius: 8px;
}

/* マウスオーバー時の色 */
.scroll-on:hover::-webkit-scrollbar-thumb {
    background-color: #565656;
}

/* パンくずリスト */
.breadcrumb {
    font-size: 0.9em;
}

@media (max-width: 920px) {
    .scroll_wrapper {
        display: block;
        margin: 0 auto;
        padding-bottom: 50px;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        width: 80%;
    }

        .scroll_wrapper:before {
            display: block;
            margin: 0 auto;
            text-align: left;
            font-family: var(--fontAwesome);
            font-weight: bold;
            font-size: 0.75em;
            color: #898989;
            content: "Scroll\00A0\f101";
            letter-spacing: 1px;
        }

        .scroll_wrapper::-webkit-scrollbar {
            display: block;
            height: 3px;
            width: 80%;
        }

        .scroll_wrapper::-webkit-scrollbar-track {
            background-color: #D4D4D4;
        }

        .scroll_wrapper::-webkit-scrollbar-thumb {
            background: #707070;
            border-radius: 4px;
        }

        .scroll_wrapper div {
            cursor: grab;
        }

            .scroll_wrapper div:active {
                cursor: grabbing;
            }

}

/* ローディング画面 */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
    z-index: 9999; /* 最前面に表示 */
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loadingText {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.1em;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================
   Bootstrap Overwrite
   ========================================================== */
.form-control {
    font-size: 16px;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
    height: calc(5.5rem + calc(var(--bs-border-width) * 2));
    line-height: calc(5.5rem + calc(var(--bs-border-width) * 2));
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    padding: 1rem 1.3em;
}

.form-floating > .form-control:not(:placeholder-shown) ~ label {
    top: 5px;
    background-color: transparent!important;
    font-size: 0.8em;
}

    .form-floating > .form-control:not(:placeholder-shown) ~ label::after {
        background-color: transparent;
    }

.form-label,
.form-label-required {
    font-size: 0.9em;
}

.form-floating > label {
    position: absolute;
    top: 1.0em;
    left: 1.5em;
    margin: 0;
    padding: 0;
    font-size: 0.8em;
    color: #565656;
    height: auto;
}

.form-check-input {
    border-color: #aeaeae;
    margin-top: .40em;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.nav-pills .nav-link {
    position: relative;
    background-color: transparent;
    border-bottom: 1px solid #cacaca;
    border-radius: 0;
    padding: 12px 14px;
    font-weight: bold;
    font-size: 0.9em;
    color: #565656;
    box-sizing: border-box;
}

    .nav-pills .nav-link:hover {
        border-bottom: 1px solid var(--bs-nav-link-color);
        color: var(--bs-nav-link-color);
        opacity: 1;
    }

        .nav-pills .nav-link:hover:after {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            font-family: var(--fontAwesome);
            font-size: 1.5em;
            content: "\f1b0";
        }

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        background-color: transparent;
        border-bottom: 1px solid rgb(168, 0, 0);
        border-right: none;
        color: rgb(168, 0, 0);
    }

        .nav-pills .nav-link.active:after,
        .nav-pills .show > .nav-link:after {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            font-family: var(--fontAwesome);
            font-size: 1.5em;
            content: "\f1b0";
            color: rgb(168, 0, 0);
        }

.text-success {
    font-size: 1.1em;
}

/* ==========================================================
   layout header
   ========================================================== */
.ly_header {
    position: absolute;
    top: 0;
    left: 0;
    height: var(--header-height);
}

.ly_header_wrap {
    position: fixed;
    background: 0px 0px;
    background-color: #ffffff;
    width: 100%;
    z-index: 1001;
    transform: translateY(0);
    transition: all ease-out .3s;
}

    .ly_header_wrap.top {
        background-color: transparent;
    }

    .ly_header_wrap.is_hidden {
        transform: translateY(calc(var(--header-height) * -1));
    }

    .ly_header_wrap.is_active {
        background-color: #ffffff;
        transition: none;
        opacity: 0.95;
    }

.bl_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.bl_header_menu {
    font-size: 1rem;
    width: 70px;
    height: var(--header-height);
}

@media screen and (min-width: 920px) {
    .bl_header_menu {
        width: 90px;
        height: 100%;
    }
}

.bl_header_menu .click_header_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: inherit;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s linear;
}

.bl_header_hamburger {
    position: relative;
    margin: 0px auto 2px;
    width: 32px;
    height: 22px;
    cursor: pointer;
}

    .bl_header_hamburger span {
        position: absolute;
        display: block;
        background-color: rgb(0, 0, 0);
        left: 0px;
        width: 100%;
        height: 2px;
        transition: 0.1s;
    }

    .bl_header_hamburger span:nth-of-type(1) {
        top: 0px;
    }

    .bl_header_hamburger span:nth-of-type(2) {
        top: calc(50% - 1px);
    }

    .bl_header_hamburger span:nth-of-type(3) {
        bottom: 0px;
    }

/* クリック時にハンバーガーを✕に変更 */
#menu-toggle:checked + .click_header_menu .bl_header_hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#menu-toggle:checked + .click_header_menu .bl_header_hamburger span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .click_header_menu .bl_header_hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.bl_header_btnName {
    margin: 8px auto 20px;
    font-weight: 500;
    font-size: 1.2em;
    line-height: 1;
    letter-spacing: 0.02em;
}
    .bl_header_btnName.menu:before {
        content: "MENU";
    }

@media screen and (min-width: 920px) {
    .bl_header_btnName {
        margin: 8px auto 23px;
    }
}

/* クリック時に「MENU」を「CLOSE」に変更 */
#menu-toggle:checked + .click_header_menu .bl_header_btnName.menu:before {
    content: "CLOSE";
}

.bl_header_logo {
    height: 95%;
}

@media screen and (min-width: 920px) {
    .bl_header_logo {
        margin-right: -80px;
    }
}

.bl_header_logo a {
    display: block;
    margin: 10px 0 0 20%;
    height: 70%;
    transition: 0.3s;
}

    .bl_header_logo a:hover {
        opacity: 0.7;
    }

@media screen and (min-width: 920px) {
    .bl_header_logo a {
        margin: 0 auto;
        height: 90%;
    }
}

.bl_header_logo img {
    margin-top: 10px;
    height: 95%;
    width: auto;
}

@media screen and (min-width: 920px) {
    .bl_header_logo img {
        height: 90%;
    }
}

.header_actions {
    display: flex;
    background: rgba(0, 0, 0, 0.75);
    font-size: 1rem;
    width: 140px;
    height: var(--header-height);
}

@media screen and (min-width: 920px) {
    .header_actions {
        width: 180px;
        height: 100%;
    }
}

.header_actions.hidden {
    background-color: transparent;
}

.bl_header_action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: inherit;
    width: 100%;
    height: 100%;
}

    .bl_header_action a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        border-right: 1px solid #898989;
        color: rgb(255, 255, 255);
        width: 100%;
        height: 100%;
    }

    .bl_header_action:hover {
        background: rgba(0, 0, 0, 0.45);
    }

    .bl_header_action:last-child a {
        border-right: none;
    }

.bl_nav {
    display: none;
    opacity: 0.95;
    transition: all ease-out .3s;
}

    .bl_nav.is_open {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: #ffffff;
        width: 100%;
        height: calc(100vh - var(--header-height));
        -webkit-overflow-scrolling: touch;
        z-index: 10002;
    }

@media screen and (min-width: 920px) {
    .bl_nav.is_open {
        width: 50%;
        max-width: 400px;
    }
}

.bl_nav_main {
    margin: 0 auto;
    padding: 5px 25px;
    width: 100%;
    max-width: var(--maxContentWidth);
    box-sizing: border-box;
}

@media screen and (min-width: 920px) {
    .bl_nav_main {
        padding: 5px 50px;
    }
}

ul.bl_nav_list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    ul.bl_nav_list li {
        border-bottom: 1px solid #898989;
        margin-bottom: 10px;
        padding-bottom: 10px;
        text-align: left;
        width: 100%;
    }

        ul.bl_nav_list li a:link,
        ul.bl_nav_list li a:visited {
            position: relative;
            display: block;
            vertical-align: middle;
            font-size: 1.2em;
            color: #151515;
        }

        ul.bl_nav_list li a:after {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            font-family: var(--fontAwesome);
            font-weight: 600;
            font-size: 0.8em;
            color: #454545;
            content: '\f105';
        }

@media screen and (min-width: 920px) {
    ul.bl_nav_list {
    }

        ul.bl_nav_list li {
            width: 80%;
        }
}

ul.bl_nav_links {
    display: flex;
    flex-wrap: wrap;
    margin: 15px auto;
    width: 100%;
}

    ul.bl_nav_links li {
        width: 50%;
    }

        ul.bl_nav_links li a:link,
        ul.bl_nav_links li a:visited {
            display: block;
            padding: 5px 0;
            text-align: left;
            font-size: 0.8em;
            color: #383838;
            letter-spacing: 0;
            box-sizing: border-box;
        }

@media screen and (min-width: 920px) {
    ul.bl_nav_links {
        flex-direction: inherit;
    }

        ul.bl_nav_links li {
            width: 100%;
        }

            ul.bl_nav_links li a:link,
            ul.bl_nav_links li a:visited {
                padding: 3px 0;
                font-size: 0.9em;
            }
}

/* ==========================================================
   layout body
   ========================================================== */
.ly_main {
    position: relative;
    width: 100%;
}

.ly_full {
    width: 100%;
}

.ly_content_wrap {
    margin: var(--header-height) auto;
    width: 100%;
}

.ly_content {
    margin: 0 auto;
    padding: 40px 0;
    width: 90%;
    max-width: var(--maxContentWidth);
    box-sizing: border-box;
}

.section {
    margin: 80px auto;
}

.section_grid {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 920px) {
    .section_grid {
        flex-direction: initial;
    }
}

.section_title {
    margin-bottom: 10px;
    font-size: 24px;
}

@media screen and (min-width: 920px) {
    .section_title {
        font-size: 30px;
    }
}

.section_title_sub {
    font-size: 13px;
}

@media screen and (min-width: 920px) {
    .section_title_sub {
        font-size: 16px;
    }
}

/* ページ内リンク */
ul.anchor_link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

    ul.anchor_link li a:link,
    ul.anchor_link li a:visited {
        position: relative;
        display: block;
        border-bottom: 1px solid #898989;
        padding: 5px 16px;
        box-sizing: border-box;
    }

    ul.anchor_link li a:after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        border-bottom: solid 2px #333;
        border-right: solid 2px #333;
        margin: auto;
        content: '';
        height: 6px;
        width: 6px;
        transform: rotate(45deg);
    }

/* ==========================================================
   layout footer
   ========================================================== */
.ly_footer {
    background-color: rgb(65, 65, 65);
    padding: 50px 5%;
    text-align: center;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

@media screen and (min-width: 920px) {
    .ly_footer {
        padding: 50px 8%;
    }
}

.footer_container {
    width: 100%;
}

.footer_nav {
}

@media screen and (min-width: 920px) {
    .footer_nav {
        display: initial;
    }
}

ul.footer_links_major {
    display: flex;
    width: 100%;
}

    ul.footer_links_major li {
        flex-grow: 1;
        border-right: 1px solid #ffffff;
        margin-bottom: 15px;
        text-align: center;
        width: auto;
    }

        ul.footer_links_major li a:link,
        ul.footer_links_major li a:visited {
            display: block;
            font-weight: normal;
            font-size: 0.8em;
            color: #ffffff;
            width: 100%;
            height: 100%;
        }

        ul.footer_links_major li:last-child {
            border-right: none;
        }

        ul.footer_links_major li a:after {
            display: none;
        }

@media screen and (min-width: 920px) {
    ul.footer_links_major {
        width: 100%;
    }

        ul.footer_links_major li {
            text-align: center;
            margin-bottom: 30px;
            width: calc(100% / 5);
        }

            ul.footer_links_major li a:link,
            ul.footer_links_major li a:visited {
                font-size: 1.1em;
            }
}

ul.footer_links_miner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 20px;
    width: 80%;
    gap: 5px;
}

    ul.footer_links_miner li {
        flex-grow: 1;
        text-align: center;
    }

        ul.footer_links_miner li a:link,
        ul.footer_links_miner li a:visited {
            font-weight: 100;
            font-size: 0.8em;
            color: #ffffff;
            letter-spacing: 0;
        }

@media screen and (min-width: 920px) {
    ul.footer_links_miner {
        width: 100%;
    }

        ul.footer_links_miner li {
            margin-bottom: 30px;
            width: calc(100% / 6 - 5px);
        }

            ul.footer_links_miner li a:link,
            ul.footer_links_miner li a:visited {
                font-size: 0.9em;
            }
}

.footer_social {
    margin: 10px auto 40px;
}

    .footer_social a:link,
    .footer_social a:visited {
        display: inline-block;
        margin: 0 10px;
        color: #ffffff;
        width: 36px;
        height: 36px;
    }

    .footer_social a svg {
        width: 100%;
    }

.footer_logo {
    margin-bottom: 40px;
    width: 100%;
}

    .footer_logo a {
        display: block;
        margin: 0 auto;
        width: 120px;
    }

        .footer_logo a img {
            filter: invert(100%);
        }

.footer_bottom {
    margin-top: 50px;
}

.copyright {
    font-weight: 300;
    font-size: 0.9em;
}

/* footer banner */
.footer_belt {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fefefe;
    border-top: 1px solid #ccc;
    text-align: center;
    height: 140px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

@media screen and (min-width: 920px) {
    .footer_belt {
        height: 80px;
    }
}

    .footer_belt.is_show {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }

/* ==========================================================
   slider options
   ========================================================== */
ul.dots_wrap {
    position: absolute;
    bottom: 5%;
    right: 10%;
    justify-content: center;
}

    ul.dots_wrap li {
        display: inline-block;
        background: #fff;
        border-radius: 50%;
        margin: 0 7px;
        width: 12px;
        height: 12px;
        cursor: pointer;
    }

        ul.dots_wrap li:hover,
        ul.dots_wrap li.slick-active {
            background: coral;
        }

        ul.dots_wrap li button {
            display: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            outline: none;
            padding: 0;
            border: none;
            background-color: transparent;
        }

/* ==========================================================
   entry
   ========================================================== */
.entry_row {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
}

@media screen and (min-width: 920px) {
    .entry_row {
        flex-direction: row;
    }
}

.entry_row .col {
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

    .entry_row .col:first-child {
        display: flex;
        flex-direction: column;
    }

.entry_title_wrapper {
    margin: 0;
}

@media screen and (min-width: 920px) {
    .entry_title_wrapper {
        margin: 20px 10%;
        width: auto;
    }
}

.entry_title_jp {
    font-size: 1.3em;
}

    .entry_title_jp:after {
        display: inline-block;
        border-top: 1px solid #686868;
        margin-left: 1.0em;
        content: "";
        height: 0.5em;
        width: 6em;
    }

@media screen and (min-width: 920px) {
    .entry_title_jp {
        font-size: 1.5em;
    }

        .entry_title_jp:after {
            width: 6em;
        }
}

.entry_title_en {
    margin-top: 14px;
    font-size: 0.9em;
}

.required_tag,
.optional_tag {
    display: inline-block;
    padding: 0 6px;
    text-align: center;
    font-size: 11px;
    box-sizing: border-box;
}

.required_tag {
    background-color: #A80000;
    color: #FFFFFF;
}

.optional_tag {
    background-color: #565656;
    color: #FFFFFF;
}

/* ==========================================================
   External Login
   ========================================================== */
.external_login {
    text-align: center;
    font-size: 0.9em;
}

.external_login_item {
    display: inline-block;
    margin: 0 10px;
    text-align: center;
}

@media screen and (min-width: 920px) {
    .external_login_item {
        margin-right: 20px;
    }
}

.external_login_item p {
    margin-top: 7px;
    font-size: 0.8em;
}

.btn_external_login {
    position: relative;
    display: inline-block;
    border-radius: 50px;
    margin: 0 auto;
    font-size: 0.9em;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
}

    .btn_external_login::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        content: "";
        display: inline-block;
        background-position: center;
        background-size: contain;
        width: 50px;
        height: 50px;
    }

    .btn_external_login[data-provider="google"]::before {
        background-image: url(/images/external/icon-google-color.png);
    }

    .btn_external_login[data-provider="line"]::before {
        background-image: url(/images/external/icon-line-color.png);
    }

/* ==========================================================
   show more
   ========================================================== */
.show_message {
    position: relative;
    overflow: hidden;
}

    .show_message:before {
        position: absolute;
        border-style: none;
        content: "";
        bottom: 0;
        z-index: 2;
        width: 100%;
        height: 50px;
    }

.show_more {
    padding: 20px 0;
    text-align: center;
    color: #383838;
    font-size: 0.9em;
    width: 100%;
    box-sizing: border-box;
}

    .show_more:after {
        font-weight: 600;
        content: "　＋";
        color: #383838;
    }

    .show_more.active:after {
        font-weight: 600;
        content: "　－";
        color: #383838;
    }

/* ==========================================================
   paging
   ========================================================== */
.pagination {
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    width: 100%;
}

    .pagination ul {
        display: flex;
        gap: 10px;
    }

        .pagination ul a:link,
        .pagination ul a:visited {
            display: block;
            padding: 8px 16px;
        }

@media screen and (min-width: 920px) {
    .pagination {
        margin-top: 100px;
    }

        .pagination ul {
            gap: 20px;
        }
}

.prev,
.next {
    color: #AC0E0E;
}

.current {
    display: block;
    background-color: #383838;
    padding: 8px 16px;
    color: #ffffff;
}