@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');*/

/*-----------------------------
　フォント
-----------------------------*/

/* Noto Sans JP （可変フォント） */
@font-face {
    font-family: "Noto Sans JP", sans-serif;
    src: url('../font/noto_sans/NotoSansJP-Thin.woff2') format('woff2');
    font-weight: 100 900; /* 可変フォントなら範囲を指定 */
    font-style: normal;
}

/* Crimson Text Regular */
@font-face {
    font-family: 'Crimson Text';
    src: url("../font/crimson/CrimsonText-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Crimson Text SemiBold */
@font-face {
    font-family: 'Crimson Text';
    src: url("../font/crimson/CrimsonText-SemiBold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Crimson Text Bold */
@font-face {
    font-family: 'Crimson Text';
    src: url("../font/crimson/CrimsonText-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*-----------------------------
　変数
-----------------------------*/
:root {
    --default-font-color: #333333;
    --main-color: #333333;
    --sub-color: #BFEF30;
    --fontfamily01: "Noto Sans JP", sans-serif;
    --fontfamily02: "Crimson Text", serif;
    --default-lineheight: 1.8em;
}
.crimson {
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: normal;
}

/*-------------------------------------*/
/*　　　 　　　　共通パーツ　　　　　　　*/
/*-------------------------------------*/

/*ーーーふわっと表示ーーー*/
.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*ーーーボタンーーー*/
.btn_mtg,
.btn_contact,
.btn_phone {
    display: flex;
    justify-content: center;
}

.btn_mtg a {
    background-color: var(--sub-color);
    color: #333;
    border: 1px solid var(--sub-color);
}

.btn_contact a,
.btn_phone a {
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid #fff;
}

.btn_mtg a::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 22px;
    background-image: url("../img/common/i_mtg.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.btn_contact a::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 20px;
    background-image: url("../img/common/i_contact.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.btn_phone a::before {
    content: "";
    display: inline-block;
    width: 29px;
    height: 25px;
    background-image: url("../img/common/i_phone.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.btn_mtg a,
.btn_contact a,
.btn_phone a {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 3px;
    gap: 10px;
}

/*ーーーEnglishーーー*/
.en_btn {
    border: unset;
    background-color: #fff;
    background-image: unset;
    display: flex;
    align-items: center;
}

.en_btn a {
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 15px;
    letter-spacing: 0;
    padding-left: 10px;
    margin-left: 15px;
    border-left: 1px solid #E8E8E8;
}

.en_btn::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("../img/common/i_en.png");
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 2px;
}

.en_btn {
    margin-left: 10px;
}

.en_btn select {
    width: 90px;
    border: unset;
    font-size: 14px;
    height: auto;
    min-height: 2.4em;
    padding: 0.2em; /* 矢印分の余白 */
    line-height: 1.5;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border-radius: 4px;

    /* ▼カスタム矢印 */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.3em center;
    background-size: 16px;
}

.en_btn a:hover {
    color: #333;
}

@media (max-width: 768px) {
    .en_btn a {
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    .en_btn::before {
        display: none;
    }
}

/*ーーー矢印ボタンーーー*/
.link-text.btn_arrow a {
    font-weight: 600;
    padding-right: 50px;
    background-image: url("../img/common/arrow.png");
    background-size: 45px;
    background-repeat: no-repeat;
    background-position: right top;
}

/*ーーースマホの時改行ーーー*/
.br_sp {
    display: none;
}

@media (max-width: 430px) {
    .br_sp {
        display: block;
    }
}


/*-------------------------------------*/
/*           loop             */
/*-------------------------------------*/

.loop_wrap .block_box {
    display: flex;
    overflow: hidden;
    gap: 5%;
    margin: 0 auto;
}

.loop_wrap .block_box img {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
    pointer-events: none;
    width: 200% !important;
}


@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/*-----------------------------
　全体
-----------------------------*/
html {
    height: 100%;
}

.MainContent {
    padding-top: 80px !important;
    position: relative;
    z-index: 1;
}

body {
    font-family: var(--fontfamily01);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: var(--default-lineheight);
    color: var(--default-font-color);
    background-color: unset;
    letter-spacing: .12em;
    font-feature-settings: "palt";
    max-width: 2560px;
    margin: 0 auto;
    counter-reset: number 0;
}


@media (min-width: 768px) {
    .main .none_430 {
        display: none;
    }
}

@media (max-width: 991px) {
    body {
        font-size: 15px;
    }
}

@media (max-width: 430px) {
    body {
        font-size: 14px;
    }
}

p {
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.5em;
    letter-spacing: .15em;
    font-weight: 600;
}

.container {
    padding: 0;
    width: 100%;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-right: 0px;
    padding-left: 0px;
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: none;
    }
}

.caret {
    display: none;
}

.layout_row::before,
.layout_row::after {
    display: none;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

a {
    display: inline-block;
    width: fit-content;
    color: var(--default-font-color);
    transition: .3s;
}

a:before, a:after {
    transition: .2s;
}

a:active, a:visited, a:focus, a:hover {
    text-decoration: none !important;
    outline: none;
}

a:hover, a:focus {
    opacity: .7;
    transition: .3s;
}

hr {
    margin: 0;
}

content {
    padding-top: 0 !important;
    overflow: hidden;
}

header h1 {
    font-size: 1em;
}

.full_width > .full_box {
    max-width: 1920px;
    margin: 0 auto !important;
}

@media (min-width: 1200px) {
    .container {
        width: unset;
    }
}

@media (min-width: 992px) {
    .container {
        width: unset;
    }
}

@media (min-width: 768px) {
    .container {
        width: unset;
    }
}

.container {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/*ドロップダウン設定*/
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: unset;
}

.dropdown-toggle {
    pointer-events: none;
}

.dropdown-toggle:hover {
    opacity: .7 !important;
}

/*ドロップダウン設定ここまで*/

/*-----------------------------
　ナビ再設定
-----------------------------*/
.open > .dropdown-menu {
    display: none;
}

header .navbox {
    position: relative;
}

.navbar-nav {
    float: none;
    margin: 0;
}

.navbar-nav > li {
    float: none;
}

header .container > .navbar-collapse {
    margin: 0;
    padding: 0;
}

header .navbar-nav > li > a {
    position: relative;
    color: var(--default-font-color);
    display: block;
}

footer .navbar-nav > li > a {
    padding: 0;
    position: relative;
    display: block;
    transition: .2s;
    margin: 15px 5px 0;
    white-space: nowrap;
    font-weight: 500;
}

footer .nav > li > a:hover, footer .nav > li > a:hover {
    background-color: transparent;
    opacity: .7;
    color: #333;
}

.navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    border-top: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.navbar-header {
    display: none;
}


/*-------------------------------------*/
/*           お客様の声            */
/*-------------------------------------*/
.sec_voice {
    padding: 100px 0 0;
    background-color: #F4F4F4;
}

.sec_voice h3 {
    margin-bottom: 30px;
    text-align: center;
}

.sec_voice .slick_voice {
    position: relative;
}

.voice .custompost_card_box_inner {
    border-radius: 10px;
    border: 1px solid #DCDDDB;
    padding: 40px 30px 30px;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 10px;
}

.voice .custompost_caption {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.voice .custompost_card_caption1_1 {
    width: 20%;
    margin-right: 20px;
}

.voice .custompost_card_caption1_0 {
    width: 80%;
    font-weight: 600;
}

.voice .custompost_caption2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.voice .custompost_card_caption2_0 {
    margin: 20px 0;
    font-size: 15px;
}

.voice .custompost_card_caption2_1 p {
    text-align: right;
    font-size: 14px;
}

.voice .slide-arrow {
    content: "";
    width: 35px;
    height: 35px;
    background-image: url("../img/common/arrow4.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 10;
    top: 50%;
}

.voice .next-arrow {
    right: 20px;
}

.voice .prev-arrow {
    left: 20px;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .sec_voice {
        padding: 60px 0 0;
    }

    .voice .slick_voice {
        width: 90%;
        margin: 0 auto;
    }

    .voice .custompost_card_box_inner {
        margin: 0 20px;
    }

    .voice .next-arrow {
        right: 0;
    }

    .voice .prev-arrow {
        left: 0;
    }
}

@media (max-width: 430px) {
    .voice .custompost_caption {
        flex-direction: column-reverse;
        height: auto;
        gap: 10px;
    }

    .voice .custompost_card_caption1_0 {
        width: 100%;
        text-align: center;
    }

    .voice .custompost_card_caption2_0 {
        margin: 10px 0;
    }

    .voice .custompost_card_box_inner {
        margin: 0;
    }
}


/*-----------------------------------------------------------------------------------------*/
/*　　　 　　　　header　　　　　　　　　*/
/*-----------------------------------------------------------------------------------------*/
@media (min-width: 1401px) {
    .h_sp {
        display: none !important;
    }
}

@media (max-width: 1400px) {
    .h_pc {
        display: none !important;
    }
}

header {
    background-color: #FFF9E2;
}

header .fixed_block {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transition: .2s;
    pointer-events: auto;
    max-width: calc(2560px - (16px * 2));
    background-color: #fff;
}

header .fixed_block::before, header .fixed_block::after {
    display: none;
}

header .h_sp,
header .h_pc {
    transition: 0.5s;
    background: #fff;
    height: 80px;
    padding: 0 15px;
    box-shadow: 0 0 10px #00000017;
}

/*  logo_box
---------------------------- */
header .logo_box {
    width: 260px;
    margin-left: 20px;
    transition: 0.5s;
}

header .logo_box .block_box {
    display: flex;
    align-items: center;
}

header .logo_box a:hover {
    opacity: unset;
}

/*  nav_box
---------------------------- */
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-nav:before,
.navbar-nav:after,
.container:after,
.nav:after,
nav:before {
    display: none;
}

header .nav_box {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
}

header .fixed_block .nav_box > div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: fit-content;
}

header .nav_box .navbar-nav {
    display: flex;
    margin-right: 23px;
    gap: 23px;
    justify-content: flex-end;
}

header .navbar-nav > li > a {
    font-size: 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: .3s;
    padding: 5px 0;
    margin: 0;
}

header .navbar-nav > li > a:hover {
    opacity: .7 !important;
    transition: .3s;
    background-color: unset;
}

/*ホバーアクション*/
header .navbar-nav > li:not(.dropdown) > a:hover {
    padding-bottom: 5px;
    position: relative;
}

header .navbar-nav > li:not(.dropdown) > a::before {
    background: #333;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

header .navbar-nav > li:not(.dropdown) > a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

/*ホバーアクションここまで*/
.dropdown:hover .dropdown-menu {
    display: block;
    padding: 5px 10px;
}

.dropdown-menu > li > a {
    color: var(--default-font-color) !important;
    padding: 5px 0;
    display: block;
}

header .navbar-nav > li > a {
    display: flex;
    gap: 5px;
}

header .navbar-nav > li.dropdown > a::after {
    display: flex;
    gap: 5px;
    content: "";
    background-image: url("../img/common/toggle.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
}

header .navbar-nav > li > a:hover::after {
    transform: scale(1.1);
    transition: .3s;
}

header .nav_box a.btn_mtg,
header .nav_box a.btn_contact {
    display: none;
}

.navbar-nav > li:nth-child(6),
.navbar-nav > li:nth-child(7) {
    display: none;
}

header .nav_box .btn_mtg a,
header .nav_box .btn_contact a {
    font-size: 13px;
    white-space: nowrap;
    padding: 10px 15px;
    gap: 8px;
}

header .nav_box .btn_mtg a {
    margin-left: 5px;
}

header .nav_box .btn_contact a:before {
    width: 22px;
    height: 17px;
}

header .nav_box a.btn_mtg:before {
    width: 22px;
    height: 18px;
}

@media (max-width: 1400px) {
    header .navbar-nav > li:not(.dropdown) > a:hover {
        padding-bottom: 20px;
        position: static;
        color: #fff;
    }

    header .navbar-nav > li:not(.dropdown) > a::before {
        display: none;
    }

}

@media (max-width: 900px) {
    .navbar-nav > li:nth-child(6),
    .navbar-nav > li:nth-child(7) {
        display: block;
    }

}

@media (max-width: 890px) {
    header .nav_box .btn_mtg a,
    header .nav_box .btn_contact a {
        display: none;
    }
}

@media (max-width: 730px) {
    header .h_sp {
        gap: 0;
        padding: 0 15px;
    }

    header .logo_box {
        margin: 10px 0;
        width: 220px;
    }
}

@media (max-width: 430px) {
    header .job_descriptions a,
    header .entry a {
        padding: 6px 25px;
    }

    header .logo_box {
        margin: 2px 0;
        width: 180px;
    }
}


/*　ham_box
-------------------------*/
.ham_box .navbar-nav {
    margin-top: 24px;
    margin-bottom: 16px;
    display: grid;
    margin-right: 8px;
}

.ham_box .navbar-nav::before, .ham_box .navbar-nav::after {
    display: none;
}

.ham_box .block_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ham_box .block_box .flex_box {
    order: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

/*　ham_icon
-------------------------*/
.ham_icon {
    height: 45px;
    z-index: 100;
}

.ham_icon button {
    width: 45px;
    height: 45px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border: none;
    margin-left: 10px;
}

.ham_icon button span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    transition: .4s;
}

.ham_icon button span:nth-child(1) {
    top: 19px;
}

.ham_icon button span:nth-child(2) {
    top: auto;
    bottom: 19px;
}

.is_open .ham_icon button span:nth-child(1) {
    transform: translateY(6px) rotate(-135deg);
    top: 16px;
}

.is_open .ham_icon button span:nth-child(2) {
    transform: translateY(-6px) rotate(135deg);
    bottom: 16px;
}

.hum_box {
    display: none;
}

@media (max-width: 1400px) {
    .h_sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .h_sp .nav_box .block_box {
        display: flex;
        align-items: center;
    }

    .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
        border-color: unset;
    }

    .hum_box {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        transform: translateY(-100%);
        transition: .7s;
        z-index: 99;
        background-color: #fff;
    }

    .hum_box.is_open {
        transform: translateY(0);
        transition: .7s;
    }

    .ham_box .navbar-nav {
        flex-direction: column;
        margin: 0;
        padding: 100px 30px 40px;
        position: relative;
        z-index: 99;
        background-color: #333;
        color: #fff;
    }

    header .navbar-nav > li {
        width: 100%;
        border-bottom: 1px solid #515151;
    }

    header .navbar-nav > li > a {
        width: 100%;
        padding: 20px 0;
        color: #fff;
    }

    /*ドロップダウンを1400px以下で非表示にしてます。*/
    /*非表示にしない場合はコメントアウトを消してください*/
    /*.hum_box .dropdown-menu {*/
    /*    position: static;*/
    /*    box-shadow: none;*/
    /*    border: none;*/
    /*    width: 100%;*/
    /*    background-color: #333;*/
    /*    border-radius: unset;*/
    /*}*/
    /*.dropdown:hover .dropdown-menu {*/
    /*    padding: 0px 5px 20px;*/
    /*}*/
    /*.dropdown-menu li {*/
    /*    width: 100%;*/
    /*}*/
    /*.hum_box .dropdown-menu li a {*/
    /*    margin: 5px auto;*/
    /*    color: #fff!important;*/
    /*}*/

}

@media (max-width: 430px) {
    .ham_icon button {
        margin-left: 0;
    }
}


/*-----------------------------
　フッター
-----------------------------*/
/*------------- cta ----------------*/
.cta {
    background-color: #333333;
    color: #fff;
    background-image: url("../img/common/terra.png");
    padding: 80px 0;
}

.cta h3 {
    font-size: clamp(25px, 5vw, 34px);
    margin-bottom: 20px;
}

.cta .layout_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta .text_box {
    width: 50%;
}

.cta .btn_box {
    width: 40%;
}

.cta .btn_box .btn_mtg {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }

    .cta .layout_row {
        flex-direction: column;
    }

    .cta .text_box,
    .cta .btn_box {
        width: 100%;
    }

    .cta .text_box {
        text-align: center;
    }

    .cta .btn_box {
        margin-top: 40px;
    }
}

/*-------------フッター ----------------*/
.footer .logo_box .block_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 20px;
}

.footer .logo_box .logo {
    width: 250px;
}

.footer .footer_inner {
    padding: 70px 0 10px;
}

.footer .footer_inner .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .footer_inner .navbar-nav .dropdown-menu {
    display: block;
    position: static;
    box-shadow: unset;
    border: unset;
    padding: 0;
}

.footer .footer_inner .navbar-nav .dropdown-menu a {
    padding: 5px .2em;
}

/*ホバーアクション*/
.footer .footer_inner .navbar-nav a {
    padding-bottom: 5px;
    position: relative;
}

.footer .footer_inner .navbar-nav a::before {
    background: #333;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
}

.footer .footer_inner .navbar-nav a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

/*ホバーアクションここまで*/
.footer .footer_inner .policy_pagetop .block_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin: 100px 0 10px;
}

.footer .footer_inner .page_top a {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url("../img/common/i_pagetop.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer .footer_inner .policy_btn a {
    font-size: 13px;
    border-bottom: 1px solid #333;
}

.footer .footer_inner .policy_btn a:hover {
    color: #333;
}

.footer .footer_inner .copyright {
    font-size: 12px;
    color: #C3C0BE;
}

.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: #333;
    width: 100%;
}

.cookie .flex_box {
    display: flex;
    width: 83%;
    margin: 0 auto;
    max-width: 1400px;
    align-items: center;
    padding: 40px 0;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie .txt {
    color: #fff;
}

.cookie .txt a {
    color: #fff;
    text-decoration: underline;
    margin-top: 5px;
    font-size: 15px;
}
.cookie .btn {
    display: flex  ;
    gap: 10px;
}

.cookie button {
    padding: 5px 25px;
    font-size: 18px;
}

@media (max-width: 768px) {

    .footer .footer_inner .navbar-nav {
        flex-direction: column;
    }

    .footer .footer_inner .policy_pagetop .block_box {
        justify-content: space-between;
    }

    .footer .logo_box .logo {
        width: 200px;
    }

    .cookie .flex_box {
        padding: 20px 0;
    }
}

/*-----------------------------
　下層共通
-----------------------------*/
.low_head {
    background-color: #333;
    background-image: url("../img/common/terra.png");
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: right center;
}

.low_head .bread {
    color: #333;
    background-color: #F4F4F4;
    padding: 5px 10px;
    font-size: 13px;
}

.low_head .bread a {
    color: #333;
}

.low_head h2 {
    color: #fff;
    margin-left: 5%;
    font-size: clamp(20px, 4vw, 23px);
    padding: 20px 0;
    font-weight: 500;
}

/*-----------------------------
　英語に翻訳した時に画像を変える
-----------------------------*/
/* デフォルト: auto（日本語表示） */
.img_ja {
    display: block;
}

.img_en {
    display: none;
}

/* 英語表示時（lang_enクラスが付いたとき） */
body.lang_en .img_ja {
    display: none;
}

body.lang_en .img_en {
    display: block;
}


/*スリック挙動制御*/
.slick-slider div { transition: none; }












