body {
    margin: 0;
}

/* ↓タイトルバー↓ */
.taitle_bar {
    position: relative;
}

.taitle_bar img {
    width: 100%;
}

/* PC用のスタイル */
@media screen and (min-width: 900px) {
    .title_img_PC {
        display: block; /* MV_text_areaを表示 */
    }

    .title_img_SP {
        display: none; /* mobile_text_areaを非表示 */
    }
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 899px) {
    .title_img_PC {
        display: none; /* MV_text_areaを非表示 */
    }

    .title_img_SP {
        display: block; /* mobile_text_areaを表示 */
    }
}

.title_bar_company {
    position: absolute;
    top: 65%; /* 垂直方向に中央揃え */
    left: 50%; /* 水平方向に中央揃え */
    transform: translate(-50%, -50%); /* 中央に位置調整 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title_en {
    margin-bottom: 5px; /* 適宜マージンを調整 */
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(12px, 0.7vw, 14px);
    letter-spacing: 7px;
    color: #fff;
    white-space: nowrap
}

.underline {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(28px, 1.6vw, 32px);
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    color: #fff;
    white-space: nowrap
}

.underline:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* 下線の上下位置調整 */
    display: inline-block;
    width: 36px; /* 下線の幅 */
    height: 3px; /* 下線の太さ */
    transform: translateX(-50%); /* 位置調整 */
    background-color: #fff; /* 下線の色 */
}
/* ↑タイトルバー↑ */


/* ↓MVV↓ */
.policy {
    margin: 4.2% 25%;
}

.policy_01 {
    margin-bottom: 5%;
}

h1 {
    margin-bottom: 2%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
}

p {
    margin: 1.5% 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

h2 {
    margin: 4% 0 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
}

ol {
    margin: 1.5% 0;
    padding-left: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
}

.policy_02 {
    margin: 0;
}

.policy_03 {
    margin: 12% 0 0;
}

.end {
    margin-top: 8%;
    text-align: right;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
}

.policy_date {
    margin: 5% 0 20%;
}

h3 {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/* スマートフォン用のスタイル */
@media screen and (max-width: 786px) {
    .policy {
        margin: 20% 10%;
    }
}
/* ↑MVV↑ */