@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500&display=swap');

/*** all ***/

*:focus {
    outline: none;
}

html {
    font-size: 16px;
}

body {
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: 0;
    overflow: hidden;
}

body, .font_sans-serif {
    font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

    input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
        display: none;
    }

    input[type="submit"]::focus, input[type="button"]::focus {
        outline-offset: -2px;
    }

textarea {
    overflow: auto
}
/* リセットCSS-------------------------------------------------------------------- */

/* フォント----------------------------------------------------------------------- */

:root {
    --font_zenmin: 'Zen Old Mincho', "YuMincho", "MS PMincho","Hiragino Mincho Pro", "Sawarabi Mincho", "serif" !important;
}

:root {
    --font_noto: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.font_kaku {
    font-family: var(--font_noto);
}

/*.font_min {
  font-family: var(--font_zenmin);
}*/



/* 追加T-style-------------------------------------------------------------------- */
.width_250-max {
    width: 100%;
    max-width: 250px;
}

.width_1100-max {
    width: 100%;
    max-width: 1100px;
}

.width_1200-max {
    width: 100%;
    max-width: 1200px;
}

.width_15 {
    width: 15px;
}

.width_25 {
    width: 25px;
}

.width_55per {
    width: 50%;
}


.posi_X_center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.posi_Y_center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.posi_abs_l {
    position: absolute;
    left: 0;
}

.posi_abs_r {
    position: absolute;
    right: 0;
}

.posi_abs_t {
    position: absolute;
    top: 0;
}

.z-index_top {
    z-index: 99;
}

.z-index_second {
    z-index: 98;
}

.linehight_1-2 {
    line-height: 1.2;
}

.pointer_none {
    pointer-events: none;
}

.border_rad50 {
    border-radius: 50px;
}

/*padding ---------------------*/

.pd_25px {
    padding: 25px;
}

.pd_15px {
    padding: 15px;
}

.pd_100px {
    padding: 100px;
}

/* 10% */
.pd_t-10per {
    padding-top: 10%;
}

.pd_b-10per {
    padding-bottom: 10%;
}

.pd_l-10per {
    padding-left: 10%;
}

.pd_r-10per {
    padding-right: 10%;
}

/* 15% */
.pd_t-15per {
    padding-top: 15%;
}

.pd_b-15per {
    padding-bottom: 15%;
}

.pd_l-15per {
    padding-left: 15%;
}

.pd_r-15per {
    padding-right: 15%;
}

/* 20% */
.pd_t-20per {
    padding-top: 20%;
}

.pd_b-20per {
    padding-bottom: 20%;
}

.pd_l-20per {
    padding-left: 20%;
}

.pd_r-20per {
    padding-right: 20%;
}

/* 25% */
.pd_t-25per {
    padding-top: 25%;
}

.pd_b-25per {
    padding-bottom: 25%;
}

.pd_l-25per {
    padding-left: 25%;
}

.pd_r-25per {
    padding-right: 25%;
}

/* 30% */
.pd_t-30per {
    padding-top: 30%;
}

.pd_b-30per {
    padding-bottom: 30%;
}

.pd_l-30per {
    padding-left: 30%;
}

.pd_r-30per {
    padding-right: 30%;
}
/* 追加T-style-------------------------------------------------------------------- */





/* ヘッダー-------------------------------------------------------------------- */
header {
    max-height: 70px;
    height: 100%;
}


/* 日本語・英語切り替え */
.language {
    position: relative;
    display: block;
    font-family: Arial, sans-serif;
}

.lang-btn {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}


.lang-icon {
    margin-right: 8px;
}

.lang-arrow {
    margin-left: 5px;
    font-size: 12px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none; /* 初期は非表示 */
    z-index: 10;
}

ul.lang-menu {
    background: var(--color2);
    border: solid 1px var(--color1_opa01);
}

.lang-menu.show {
    display: block; /* 表示を開始 */
    opacity: 1;
    transform: translateY(0);
}

.lang-menu li {
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-align: center;
}


/* ローディング------------------------------------------------------------------ */
#loader {
    top: 0;
    left: 0;
    z-index: 9999;
}

    #loader .loader_wrap {
        width: 200px;
        height: 200px
    }

        #loader .loader_wrap .loader_right, #loader .loader_wrap .loader_left {
            width: 100px;
            height: 100px;
            transform: rotate(45deg);
        }

        #loader .loader_wrap .loader_right {
            top: 50px;
            right: 48px
        }

        #loader .loader_wrap .loader_left {
            bottom: 49px;
            left: 49px
        }





/* ヘッダー-------------------------------------------------------------------- */

.bnr_right {
    top: 150px;
    right: 9px;
    writing-mode: vertical-rl;
}
/* ヘッダー-------------------------------------------------------------------- */



/*フッター-------------------------------------------------------------------- */
.copyright {
    background: var(--color3);
    color: var(--white);
    text-align: center;
    padding: 15px;
    font-size: clamp(10px,0.8vw,12px);
    z-index: 6;
    position: relative;
    justify-content: space-between;
}

.footer_policy_links {
    list-style: none;
    display: flex;
    gap: 1em;
    margin: 0;
    padding: 0;
}

    .footer_policy_links li a {
        color: var(--white);
        /*text-decoration: underline;*/
        white-space: nowrap;
    }

        .footer_policy_links li a:hover {
            color: #fff;
        }

@media screen and (max-width: 667px) {
    .footer_policy_links {
        display: grid;
        grid-template-columns: repeat(2, auto); /* 2列で内容幅に応じて調整 */
        gap: 4px 32px; /* 行間・列間のスペース調整 */
        list-style: none;
        padding: 0;
        margin: 0 0 8px 0;
        justify-content: start; /* 左寄せ */
        text-align: left;
    }

        .footer_policy_links li a {
            color: var(--white);
            /*text-decoration: underline;*/
            font-size: 0.85em;
            white-space: nowrap; /* 折り返しを防ぐ */
        }
}
/*ページトップ-------------------------------------------------------------------- */
#page-top {
    position: fixed;
    margin-bottom: 0px;
    right: 50px;
    z-index: 98;
}

#page-top {
    width: 50px;
    height: 50px;
    right: 0px;
    bottom: 0;
    z-index: 4;
    cursor: pointer;
}

    #page-top::before {
        position: absolute;
        content: "";
        width: 15px;
        height: 15px;
        background-image: url(../../img/user/page-top.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        margin: auto;
    }


/* レスポンシブ----------------------------------------------------------- */
/* ハンバーガーメニュー */
@media screen and (max-width: 1380px) {

    #header .menu_stick {
        display: block !important;
        width: 70px;
        height: 70px;
        z-index: 7;
        top: 50%;
        bottom: 0;
        right: 0px;
        box-sizing: border-box;
        padding: 0 25px;
        transform: translateY(-50%);
        cursor: pointer;
    }

        #header .menu_stick span {
            height: 2px;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            transition: 0.5s;
        }

            #header .menu_stick span:first-of-type {
                top: 14px
            }

            #header .menu_stick span:last-of-type {
                bottom: 14px
            }

        #header .menu_stick.stick_trans span:first-of-type, #header .menu_stick.stick_trans span:last-of-type {
            top: 0;
            bottom: 0;
            margin: auto;
            background-color: #fff
        }

        #header .menu_stick.stick_trans span:not(:first-of-type):not(:last-of-type) {
            background-color: transparent
        }

        #header .menu_stick.stick_trans span:first-of-type {
            transform: rotate(225deg)
        }

        #header .menu_stick.stick_trans span:last-of-type {
            transform: rotate(-225deg)
        }

    #header #sp_nav {
        top: 0;
        left: 0;
        z-index: 6
    }

    .language {
        margin-right: 70px;
    }

    nav#pc_nav .d_none_tb {
        display: none;
    }

    nav#sp_nav a {
        margin-bottom: 30px !important;
        /*▼2025-04-10▼*/
        display: flex;
        align-items: center;
        justify-content: center;
        /*---------------*/
    }
    /* .language{
    display: none;
  }

  .language_tb {
    display: block !important;
    margin-right: 20px;
  } */

}



/*ここからタブレット用（780px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 768px) {
    /* ヘッダー関連の調整 */
    header {
        max-height: 60px;
        height: 100%;
    }

    .lang-btn {
        height: 60px;
        padding: 6px 10px;
    }

    .language {
        margin-right: 60px;
    }

    /* ハンバーガーメニューの調整 */
    #header .menu_stick {
        width: 60px;
        height: 60px;
        padding: 0 20px;
    }

    #header .menu_stick span:first-of-type {
        top: 12px;
    }

    #header .menu_stick span:last-of-type {
        bottom: 12px;
    }

    /* スマホナビゲーション */
    #sp_nav ul {
        margin-top: 15px;
        width: 100%;
    }

    nav#sp_nav a {
        margin-bottom: 25px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ページタイトル */
    .page_title_wrap h2 {
        font-size: calc(1rem + 14px);
    }

    .page_title_wrap h2 span {
        font-size: calc(1rem + 8px);
    }

    /* ナビゲーションボタン */
    .nav-align-btn {
        height: 60px;
        padding: 0 10px;
        gap: 3px;
    }

    /* フッター */
    footer .footer_links {
        font-size: clamp(13px, 1.2vw, 15px);
        gap: 8px;
        padding: 0 15px;
    }

    .footer_policy_links {
        gap: 6px 20px;
    }

        .footer_policy_links li a {
            font-size: 0.9em;
        }
}

/*ここからスマホ用（750px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 667px) {

    /* ヘッダー----------------------------- */
    #sp_nav ul {
        margin-top: 20px;
        width: 100%;
    }

    header {
        max-height: 50px;
        height: 100%;
    }

    .lang-btn {
        height: 50px;
    }

    .language {
        margin-right: 50px;
    }

    nav#sp_nav a {
        margin-bottom: 20px !important;
    }

    #header .menu_stick {
        display: block !important;
        width: 50px;
        height: 50px;
    }

    .language_tb {
        margin-right: 0px;
    }
    /* ヘッダー----------------------------- */

    /* ページトップ-----------------------------*/
    #page-top {
        width: 40px;
        height: 40px;
        margin-bottom: 0px;
    }
    /* ページトップ-----------------------------*/

}





/* 下層ページタイトル */
/* page_title----------------------------------------------------- */

/* 共通疑似スタイル--------------------------------------------------- */
#page_title::before {
    content: '';
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}
/* 共通疑似スタイル--------------------------------------------------- */

#page_title::before {
    width: 100%;
    height: 100%;
    background: var(--color4_opa04);
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.page_title_wrap {
    z-index: 1;
}

    .page_title_wrap h2 {
        font-size: calc(1rem + 22px);
    }

        .page_title_wrap h2 span {
            font-size: calc(1rem + 12px);
        }

@media screen and (max-width: 768px) {
    .page_title_wrap h2 {
        font-size: calc(1rem + 18px);
    }
}

@media screen and (max-width: 667px) {
    .page_title_wrap h2 {
        font-size: calc(1rem + 8px);
    }

        .page_title_wrap h2 span {
            font-size: calc(1rem + 2px);
        }
}
/* page_title----------------------------------------------------- */


/*▼2025-0422--------------------------------------*/
.nav-align-btn {
    height: 70px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
    white-space: nowrap;
    padding: 0 12px;
    background-color: #e5ffe4;
    box-sizing: border-box;
}

@media screen and (max-width: 667px) {
    .nav-align-btn_sp {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .nav-align-btn_sp img {
            padding-left: 5px;
        }
}
/*▲2025-04-22-----------------------------------*/

/*2025-05-27*/
footer .footer_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: clamp(14px, 1.0vw, 16px);
    gap: 10px;
    width: min(100%, 950px);
    margin: 0 auto;
    box-sizing: border-box;
}

@media screen and (max-width: 667px) {
    footer .footer_links {
        padding-left: 20px;
        padding-right: 20px;
        row-gap: 10px;
        justify-content: left;
        width: min(100%, 950px);
        margin: 0 auto;
        box-sizing: border-box;
    }
}
