/* デフォルトスタイル（最大幅1920px〜最小幅751px） */
body {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 70%;
    /* padding: 0 20px; */
}

/* タイトルエリア */
.policy-titleArea {
    text-align: center;
    margin-bottom: 40px;
}

.policy-textArea a {
    color: red;
    /* 文字色を赤に設定 */
    text-decoration: underline;
    /* 下線を表示 */
    transition: opacity 0.3s ease;
    /* ホバー時のアニメーション */
}

.policy-textArea a:hover {
    opacity: 0.6;
    /* ホバー時に不透明度を下げる */
}


.policy-title-ja {
    font-size: 3vw;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 900;
}

.policy-title-en {
    font-size: 2vw;
    color: #347E25;
    padding-top: 0;
    margin-top: 0;
    font-weight: bold;
}

/* テキストエリア */
.policy-textArea {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.policy-sec-title h2 {
    font-size: 2.1vw;
    position: relative;
    margin-bottom: 4vw;
}

.policy-sec-title h2 span {
    display: inline-block;
    width: 2vw;
    height: 2vw;
    background-color: #347E25;
    margin-right: 10px;
    vertical-align: middle;
}

.policy-sec-title p {
    font-size: 1.4vw;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* オリスト */
.policy-sec-title ol {
    font-size: 1.5vw;
    margin-left: 1%;
    margin-bottom: 30px;
}

.policy-sec-title ol li {
    margin-bottom: 10px;
}

.specified-title {
    font-weight: medium;
    text-align: center;
    /* 左右中央揃え（必要に応じて削除） */
    vertical-align: middle;
    /* 上下中央揃え */
}

/*特定商取引法について*/
/* タイトルエリア */
.specified-titleArea {
    text-align: center;
    margin-top: 15%;
    margin-bottom: 12%;
}

.specified-title-ja {
    font-size: 3vw;
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 900;
}

.specified-title-en {
    font-size: 2vw;
    color: #347E25;
    padding-top: 0;
    margin-top: 0;
    font-weight: bold;
}

/* テーブルスタイル */
.specified-table {
    width: 100%;
    margin: 0 auto 10%;
    border-collapse: separate;
    /* trのborderを有効にする */
    border-spacing: 0;
    /* セル間の隙間をなくす */
    font-size: 1.35vw;
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
}



.specified-lined-table tbody tr {
    position: relative;
}

.specified-lined-table tbody tr::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #95C035;
}

.specified-lined-table tbody tr:not(:last-child)::after {
    /* 各行の下に線を引く */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #95C035;
}

.specified-lined-table tbody tr+tr::before {
    top: auto;
    bottom: 0;
}

.specified-lined-table tbody tr+tr::after {
    top: auto;
    bottom: 0;
}

.specified-lined-table td {
    padding: 2vw;
    vertical-align: middle;
    /* 垂直方向で中央揃え */
    text-align: left;
    /* 水平方向は左揃え */
    /* font-weight: normal; */
}

.specified-lined-table td span {
    font-size: 0.8rem;
    line-height: 0.1;
    vertical-align: middle;
}


.specified-title {
    font-weight: 800;
    width: 35%;
    text-align: left;
}

td.specified-content {
    font-size: 1.5vw;
    /* フォントサイズ */
    line-height: 1.5;
    /* 行間 */
    padding: 10px;
    /* セル内の余白 */
    vertical-align: middle;
    padding-left: 3%;
    /* 上下方向の中央揃え */
}

td.specified-content span {
    font-size: 0.8rem;
    /* 小さいフォントサイズ */
    line-height: 1.3;
    margin-top: 5px;
    vertical-align: middle;
}

.specified-content a {
    color: #29A7DE;
    /* リンクの文字色 */
    text-decoration: underline;
    /* 下線を追加 */
    transition: opacity 0.3s ease;
    /* ホバー時のアニメーション */
}

.specified-content a:hover {
    opacity: 0.7;
    /* ホバー時の透明度調整 */
}


/* フッター */
.policy-footer {
    text-align: center;
    padding: 30px;
    background-color: #E3F0E7;
}

.policy-footer p {
    font-size: 1.8vw;
    color: #347E25;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.footer-title {
    font-size: 2.5vw;
}

.footer-ctaArea {
    padding: 4% 0 20px;
}

.footer-btnArea {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.footer-btnArea a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2vw;
}

.footer-btnArea a img:hover {
    opacity: 0.6;
}

.l-header {
    display: flex;
    justify-content: space-evenly;
    /* ロゴとナビゲーションを左右に配置 */
    align-items: center;
    padding-top: 1.25rem;
    /* ロゴ周りに余白を追加 */
    box-sizing: border-box;
    width: 100%;
    /* ヘッダー全体を幅いっぱいに広げる */
    margin: 0 auto;
    z-index: 10000;
}

.l-header__logo {
    width: 13.75rem;
    height: auto;
}

.l-header__nav {
    -moz-column-gap: 2.5rem;
    display: flex;
    column-gap: 2.5rem;
    align-items: center;
}

.l-header__list {
    -moz-column-gap: 2.5rem;
    display: flex;
    column-gap: 2.5rem;
    align-items: center;
    vertical-align: bottom;
    margin-top: 30px;
    margin-bottom: 0;

}

.l-header__item a {
    display: inline-block;
    padding: 0.25rem 0;
    font-weight: 700;
    font-size: clamp(0.35rem, 0.35rem + 0.55vw, 0.875rem);
    line-height: 4.7857142857;
    letter-spacing: 0em;
    list-style: none;
    color: #000;
    text-decoration: none;
}

.l-header__item a:hover {
    opacity: 0.7;
}

.l-header__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 1.875rem;
    background: #D9DD00;
    padding: 1rem 3.5rem 1.25rem 3.5rem;
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 0em;
    margin: 0 auto;
    text-decoration: none;
}


.l-header__btn a img {
    display: none;
    /* position: absolute;
top: 50%;
left: 1.25rem;
transform: translateY(-50%);
width: 1.25rem;
height: 0.8125rem; */
}

.l-header__btn a:hover {
    opacity: 0.7;
}

.l-drawer__icon {
    display: flex;
    /* position: fixed; */
    position: absolute;
    /* top: 11.25rem; */
    top: 2%;
    right: 2.5rem;
    justify-content: center;
    align-items: center;
    z-index: 100;
    /* border: 0.125rem solid #ffffff; */
    border-radius: 1.875rem;
    /* background: #263290; */
    aspect-ratio: 1;
    width: 6.25rem;
    height: auto;
}

.l-drawer__icon {
    display: none;
}

.l-drawer__icon .u-hidden--pc {
    display: none;
}


.l-drawer__icon.fixed-position {
    position: fixed;
    top: 3.125rem;
}

.l-drawer__icon .bar-wrap {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    aspect-ratio: 46/31;
    width: 2.875rem;
    height: auto;
}

.l-drawer__icon .bar {
    transition: all 0.3s ease;
    /* 変化のスムーズさを設定 */
    background: #000;
    /* デフォルトの色 */
    height: 0.125rem;
}

.l-drawer__icon.js-open .bar {
    background: #000;
    /* オープン状態の色 */
}

.l-drawer__icon .bar1 {
    width: 90%;
}

.l-drawer__icon .bar2 {
    width: 90%;
}

.l-drawer__icon .bar3 {
    width: 90%;
}

.l-drawer__icon.js-open .bar1 {
    transform: translateY(0.9375rem) rotate(45deg);
    width: 90%;
}

.l-drawer__icon.js-open .bar2 {
    display: none;
}

.l-drawer__icon.js-open .bar3 {
    transform: translateY(-0.9375rem) rotate(-45deg);
    width: 90%;
}

.l-drawer__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #284B1E;
    /* padding: 2.0625rem 1.5rem 1rem; */
    width: 100%;
    height: auto;
}

.l-drawer__logo {
    display: block;
    aspect-ratio: auto 150 / 48;
    width: 20%;
    height: auto;
}

.l-drawer__list {
    margin-top: 1.125rem;
    text-align: center;
}

.l-drawer__item {
    margin-bottom: 3.25rem;
}

.l-drawer__item a {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1;
    letter-spacing: 0em;
}

.l-drawer__btn-wrap {
    -moz-column-gap: 1.25rem;
    display: flex;
    column-gap: 1.25rem;
    justify-content: space-between;
    align-items: center;
}

.l-drawer__btn-wrap .btn {
    flex: 1;
}

.l-drawer__btn-wrap a {
    display: inline-block;
    border: 1px solid #F15F2C;
    border-radius: 1.25rem;
    padding: 2.5rem 0;
    width: 100%;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1;
    letter-spacing: 0em;
    text-align: center;
}

.l-drawer__btn-wrap .contact {
    background: #F15F2C;
    color: #ffffff;
}

.l-drawer__btn-wrap .download {
    border: 1px solid #F15F2C;
    background: #ffffff;
    color: #F15F2C;

}

ul {
    list-style: none;
}

/* a {
    transition: 0.3s;
    color: #000;
    text-decoration: none;
} */

img {
    width: 100%;
    height: 100%;
}

article {
    display: block;
    overflow: hidden;
}

/* メディアクエリ（最大幅750px） */
@media (max-width: 750px) {
    .wrapper {
        max-width: 100%;
        margin: 15% auto 0;
        width: 80%;
        /* padding: 0 20px; */
    }

    .policy-title-ja {
        font-size: 4vw;
    }

    .policy-title-en {
        font-size: 2.5vw;
    }

    .policy-sec-title h2 {
        font-size: 3vw;
    }

    .policy-sec-title p,
    .policy-sec-title ol {
        font-size: 2.5vw;
    }

    .footer-btnArea {
        display: flex;
    }

    .footer-btnArea a img {
        width: 90%;
    }

    .policy-textArea {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .policy-sec-title p {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .policy-sec-title p:last-child {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 3vw;
    }

    .policy-footer p {
        font-size: 2.5vw;
        color: #347E25;
    }

    .footer-btnArea a {
        margin: 0;
        padding: 0;
    }

    .policy-titleArea {
        text-align: center;
        margin-bottom: 10px;
    }

    .specified-title-ja {
        font-size: 4vw;
        /* モバイル版フォントサイズ */
    }

    .specified-title-en {
        font-size: 2.5vw;
        /* モバイル版フォントサイズ */
    }

    .specified-table {
        font-size: 2.5vw;
        /* モバイル版フォントサイズ */
    }

    /* ヘッダーを固定し、スクロールに追従させる */
    .l-header,
    article {
        width: 100%;
        max-width: 1200px;
        /* 必要に応じて変更可能 */
        margin: 0 auto;
        /* 中央寄せ */
        padding: 0;
        box-sizing: border-box;
        margin-left: auto;
        margin-right: auto;
    }

    .l-header {
        position: fixed;
        /* top: 20px; */
        /* left: 5%; */
        z-index: 200;
        background-color: white;
        width: 100%;
        margin: 0 auto;
    }

    .l-header__logo {
        text-align: left;
        width: 20%;
        height: auto;
        margin-top: 10px;
        margin-right: auto;
    }

    .l-header__logo img {
        margin-left: 25%;
    }

    .l-header__nav {
        display: none;
        /* スクロールに応じて隠れる */
        text-align: right;
        /* ナビゲーションを右揃え */
    }

    .l-header__list {
        display: flex;
        justify-content: space-around;
    }

    .l-header__item {
        list-style: none;
    }

    .l-header__btn {
        text-align: right;
    }

    .l-drawer__logo {
        margin-left: 5%;
    }

    .l-drawer__logo img {
        margin-top: 10%;
    }

    .l-drawer__icon {
        display: flex;
        position: fixed;
        top: 10px;
        right: 10px;
        justify-content: center;
        align-items: center;
        border-radius: 1.875rem;
        width: 3.5rem;
        height: 2.5rem;
        background-color: transparent;
        cursor: pointer;
        z-index: 11000;
        top: 0.5%;
    }

    /* ハンバーガーメニューのアイコンのバーラップ */
    .l-drawer__icon .bar-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 2.25rem;
        height: 1.5rem;
    }

    .l-drawer__icon .bar {
        background: #000;
        height: 0.2rem;
        width: 100%;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }

    /* オープン時のクロス変形 */
    .l-drawer__icon.js-open .bar1 {
        transform: translateY(0.65rem) rotate(45deg);
        width: 100%;
    }

    .l-drawer__icon.js-open .bar2 {
        opacity: 0;
    }

    .l-drawer__icon.js-open .bar3 {
        transform: translateY(-0.65rem) rotate(-45deg);
        width: 100%;
    }


    /* ハンバーガーメニューが開いた状態の背景 */
    .l-drawer__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background: #284B1E;
        /* padding: 2.0625rem 1.5rem 2.5rem; */
        width: 100%;
        height: auto;
        z-index: 9999;
    }

    /* ハンバーガーメニューのリンク */
    .l-drawer__list {
        margin-top: 2rem;
        text-align: center;
        padding-left: 0;
    }

    .l-drawer__item {
        margin-bottom: 3.25rem;
    }

    .l-drawer__item:last-child {
        margin-bottom: 0;
    }

    .l-drawer__item a {
        color: #ffffff;
        font-size: 5vw;
        font-weight: bold;
    }

    .cta-download {
        display: flex;
        text-align: center;
        width: 100%;
        background-color: #284B1E;
        margin: 0 auto;
        padding: 20px 0;
        justify-content: center;
    }

    .cta-download a {
        padding: 0 10px;
    }

    .specified-lined-table td span {
        font-size: 1.5vw;
        line-height: 0.1;
        vertical-align: middle;
    }

    td.specified-content {
        font-size: 2.5vw;
        /* フォントサイズ */
        line-height: 1.5;
        /* 行間 */
        padding: 10px;
        /* セル内の余白 */
        vertical-align: middle;
        padding-left: 3%;
        /* 上下方向の中央揃え */
    }

    td.specified-content span {
        font-size: 1.5vw;
        /* 小さいフォントサイズ */
        line-height: 1.3;
        margin-top: 5px;
        vertical-align: middle;
    }
}