@charset "utf-8";

/* ==========================================
   横スクロール・右隙間防止の全体修正
   ========================================== */

html, body {
    overflow-x: hidden;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .wrapper, main {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .text_overlay1,
    .text_overlay3 {
        right: 0 !important;
    }
    .block_03 .title_02,
    .block_03 .title_03,
    .block_03 .title_04,
    .block_07 .title_02,
    .block_07 .title_03,
    .block_07 .title_04,
    .block_08 .title_02,
    .block_08 .title_03,
    .block_08 .title_04 {
        width: 90% !important;
        box-sizing: border-box;
    }
    .block_08_1 {
        padding: 10rem 7rem 1rem 7rem !important;
        box-sizing: border-box;
    }
    .block_09 .card_02 .headline_group {
        margin-left: auto !important;
        align-items: flex-end;
    }
    .block_12 .info_list {
        width: 90% !important;
        padding-left: 20px !important;
        box-sizing: border-box;
    }
    .block_12 .info_label {
        margin-left: -20px !important;
    }
}
body {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #000;
    min-height: 100vh;
    background-color: #ffffff;
}
html {
      scroll-behavior: smooth;
}
.section {
      padding-top: 2rem;
}
.sidebar_border {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 7.5rem;
    border: 0.1rem solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vertical_text {
    transform: rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-size: 3.6rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.1em;
}
.vertical_text span {
    margin-right: 123rem;
    margin-left: -120rem;
}

.wrapper {
    position: relative;
    width: 50rem;
    margin: 0 auto;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .wrapper {
        position: relative;
        width: 100%;
        margin: 0 auto;
        background: #fff;
    }
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    z-index: 99;
    width: 20rem;
    margin-left: 1.2rem;
}
@media screen and (max-width: 768px) {
    .logo {
        z-index: 99;
        width: 17rem;
        margin-left: 1.2rem;
    }
}
.header_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 99;
}
.logo_02 {
    font-size: 1.57rem;
    margin-right: 8rem;
    padding-top: 0.7rem;
}
@media screen and (max-width: 768px) {
    .logo_02 {
        font-size: 1.57rem;
        margin-right: 14vw;
        padding-top: 0.7rem;
    }
}
.nav {
    position: fixed;
    top: 40.5rem;
    left: calc(50% + 30rem);
    transform: translateY(-50%);
    background-color: #ffffff;
    z-index: 1000;
    width: 30rem;
    border: 0.2rem solid #000000;
    border-radius: 0 0 1.2rem 1.2rem;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav a{
    text-decoration: none;
    color: #000;
}
.nav a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}
.nav_01 {
    width: 17%;
}
.nav_02 {
    width: 40%;
    margin: 2rem auto;
}
.menu_toggle {
    display: none;
}
/*@media screen and (max-width: 768px) {
    .menu_toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: 2.8rem;
        height: 2rem;
        background: #fff;
        border: none;
        cursor: pointer;
        z-index: 2000;
        padding: 0;
    }
    .menu_toggle span {
        display: block;
        width: 100%;
        height: 0.25rem;
        background-color: #000000;
        border-radius: 0.2rem;
        transition: all 0.3s ease;
    }
    .menu_toggle.is-active span:nth-child(1) {
        transform: translateY(0.85rem) rotate(45deg);
    }
    .menu_toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .menu_toggle.is-active span:nth-child(3) {
        transform: translateY(-0.85rem) rotate(-45deg);
    }
    .nav {
        position: fixed;
        top: 5rem; 
        right: 0;
        left: auto;
        width: calc(100% - 3rem); 
        max-width: 320px;
        height: auto;
        max-height: calc(100vh - 7rem);
        overflow-y: auto;
        padding: 2rem 1.5rem;
        background: #ffffff;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1500;
    }
    .nav.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
*/
@media screen and (max-width: 768px) {
    .menu_toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.6rem;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        width: 3.2rem;           /* ボタンの幅 */
        height: 3.2rem;          /* ボタンの高さ */
        border-radius: 0.5rem;   /* 変更: 50%から0.5remにして角丸に */
        background: #fff;
        border: none;
        cursor: pointer;
        z-index: 2000;
        padding: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* 薄い影（不要なら削除） */
    }
    .menu_toggle span {
        display: block;
        width: 2rem;
        height: 0.25rem;
        background-color: #000000;
        border-radius: 0.2rem;
        transition: all 0.3s ease;
    }
    
    /* アニメーション（バツ印になる動き） */
    .menu_toggle.is-active span:nth-child(1) {
        transform: translateY(0.85rem) rotate(45deg);
    }
    .menu_toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .menu_toggle.is-active span:nth-child(3) {
        transform: translateY(-0.85rem) rotate(-45deg);
    }
    
    /* メニュー本体 */
    .nav {
        position: fixed;
        top: 5rem; 
        right: 0;
        left: auto;
        width: calc(100% - 3rem); 
        max-width: 320px;
        height: auto;
        max-height: calc(100vh - 7rem);
        overflow-y: auto;
        padding: 2rem 1.5rem;
        background: #ffffff;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1500;
    }
    .nav.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

main {
    width: 100%;
    margin: -6rem auto 0 auto;
    position: relative;
    background: #fff;
}

.fv {
    background-image: url('../img/pict_01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top 6rem center;
    position: relative;
    width: 100%;
    height: 95rem;
}
@media screen and (max-width: 768px) {
    .fv {
        height: 210vw;
    }
}
.text_overlay1 {
    position: absolute;
    top: 4rem;
    right: 1rem;
}
.text_overlay1_svg {
    margin-top: 7rem;
}
@media screen and (max-width: 768px) {
    .text_overlay1 {
        position: absolute;
        top: 4rem;
        right: -1rem;
    }
    .text_overlay1_svg {
        width: 80%;
        margin-top: 15vw !important;
    }
}
.text_overlay2 {
    position: absolute;
    top: 7rem;
    left: 1rem;
}
.text_overlay2_svg {
    margin-top: 4rem;
}
@media screen and (max-width: 768px) {
    .text_overlay2_svg {
        width: 80%;
        margin-top: 15vw !important;
    }
}
.text_overlay3 {
    position: absolute;
    top: 63rem;
    right: 0;
}
.text_overlay2_svg {
    margin-top: 4rem;
}
@media screen and (max-width: 768px) {
    .text_overlay3 {
        position: absolute;
        top: 140vw;
        right: -5rem !important;
    }
    .text_overlay3_svg {
        width: 80%;
    }
}
.text_overlay4 {
    position: absolute;
    top: 66rem;
    right: 0;
}
@media screen and (max-width: 768px) {
    .text_overlay4 {
        position: absolute;
        top: 150vw;
        right: 0;
    }
}
.block_01 {
    background-image: url('../img/pict_02.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 70rem;
    z-index: 5;
}
@media screen and (max-width: 768px) {
    .block_01 {
        background-image: url(../img/pict_02.svg);
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        width: 100%;
        height: 160vw;
        z-index: 5;
    }
}
.block_01 .title_01 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #C4F74D;
    text-align: center;
    padding-top: 3rem;
}
.block_01 .title_02 {
    font-size: 2.65rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding-top: 1.5rem;
}
.block_01 .title_03 {
    background-image: url('../img/fukidashi_01.svg');
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 2rem;
    text-align: center;
    position: absolute;
    top: 19rem;
    left: 2rem;
    width: 41rem;
    height: 10rem;
    padding-top: 0.7rem;
}
@media screen and (max-width: 768px) {
    .block_01 .title_03 {
        background-image: url(../img/fukidashi_01.svg);
        background-size: contain;
        background-repeat: no-repeat;
        font-size: 4vw;
        text-align: center;
        position: absolute;
        top: 44vw;
        left: 0.7rem !important;
        width: 85%;
        height: 18vw;
        padding-top: 1.8vw;
    }
}
.block_01 .title_04 {
    background-image: url('../img/fukidashi_02.svg');
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 2rem;
    text-align: center;
    position: absolute;
    top: 30.2rem;
    right: 2rem;
    width: 41rem;
    height: 10rem;
    padding-top: 0.7rem;
}
@media screen and (max-width: 768px) {
    .block_01 .title_04 {
        background-image: url('../img/fukidashi_02.svg');
        background-size: contain;
        background-repeat: no-repeat;
        font-size: 4vw;
        text-align: center;
        position: absolute;
        top: 70vw;
        right: -1.5rem !important;
        width: 90%;
        height: 18vw;
        padding-top: 1.8vw;
        padding-right: 5vw;
    }
}
.block_01 .title_05 {
    background-image: url('../img/fukidashi_01.svg');
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 2rem;
    text-align: center;
    position: absolute;
    top: 41.7rem;
    left: 2rem;
    width: 41rem;
    height: 10rem;
    padding-top: 0.7rem;
}
@media screen and (max-width: 768px) {
    .block_01 .title_05 {
        background-image: url('../img/fukidashi_01.svg');
        background-size: contain;
        background-repeat: no-repeat;
        font-size: 4vw;
        text-align: center;
        position: absolute;
        top: 96vw;
        left: 0.7rem !important;
        width: 90%;
        height: 18vw;
        padding-top: 1.8vw;
        padding-right: 5vw;
    }
}
.block_01 .title_06 {
    background-image: url('../img/fukidashi_02.svg');
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 2rem;
    text-align: center;
    position: absolute;
    top: 53.2rem;
    right: 2rem;
    width: 41rem;
    height: 10rem;
    padding-top: 0.7rem;
}
@media screen and (max-width: 768px) {
    .block_01 .title_06 {
        background-image: url('../img/fukidashi_02.svg');
        background-size: contain;
        background-repeat: no-repeat;
        font-size: 4vw;
        text-align: center;
        position: absolute;
        top: 122vw;
        right: -1.5rem !important;
        width: 90%;
        height: 18vw;
        padding-top: 1.8vw;
        padding-right: 5vw;
    }
}
.block_02 {
    background-image: url('../img/pict_03.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -5rem;
    margin-top: -1rem;
    z-index: 0;
    position: relative;
    width: 100%;
    height: 65rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .block_02 {
        background-image: url('../img/pict_03.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center 0;
        margin-top: -1rem;
        z-index: 0;
        position: relative;
        width: 100%;
        height: 140vw;
        text-align: center;
    }
}
.block_02 .title_01_1 {
    position: absolute;
    top: 1rem;
    left: 0;
}
@media screen and (max-width: 768px) {
    .block_02 .title_01_1 {
        position: absolute;
        top: 4vw;
        left: 0;
    }
}
.block_02 .title_01_2 {
    position: absolute;
    top: 2.5rem;
    left: 9rem;
}
@media screen and (max-width: 768px) {
    .block_02 .title_01_2 {
        position: absolute;
        top: 10vw;
        left: 12vw;
    }
}
.block_02 .title_01_3 {
    position: absolute;
    top: 8.6rem;
    right: 0;
}
@media screen and (max-width: 768px) {
    .block_02 .title_01_3 {
        position: absolute;
        top: 26vw;
        right: 0;
    }
}
.block_02 .title_02_1 {
    font-size: 1.71rem;
    position: absolute;
    top: 37vw;
    left: 6vw;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
}
@media screen and (max-width: 768px) {
    .block_02 .title_02_1 {
        font-size: 1.71rem;
        position: absolute;
        top: 115vw;
        left: 16vw;
        color: #fff;
        background-color: #000;
        padding: 0.2rem 0.5rem;
    }
}
.block_02 .title_02_2 {
    font-size: 1.71rem;
    position: absolute;
    top: 38.6vw;
    left: 8.5vw;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
}
@media screen and (max-width: 768px) {
    .block_02 .title_02_2 {
        font-size: 1.71rem;
        position: absolute;
        top: 121vw;
        left: 25vw;
        color: #fff;
        background-color: #000;
        padding: 0.2rem 0.5rem;
    }
}
.block_02 .title_03 {
    font-size: 1.45rem;
    text-align: center;
    position: absolute;
    top: 41vw;
    left: 5vw;
}
@media screen and (max-width: 768px) {
    .block_02 .title_03 {
        font-size: 1.45rem;
        text-align: center;
        position: absolute;
        top: 129vw;
        left: 12vw;
    }
}

.block_03 {
    background-image: url('../img/pict_04.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    margin-top: 3rem;
}
.block_03 .title_01 {
    padding-top: 4rem;
    text-align: center;
}
.block_03 .title_02 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 30rem !important;
    margin: 2.5rem auto 0 auto;
}
.block_03 .title_03 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 30rem !important;
    margin: 0 auto;
}
.block_03 .title_04 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 38rem !important;
    margin: 0 auto;
}
.block_03 .title_05 {
    font-size: 1.71rem;
    font-weight: bold;
    text-align: center;
    margin-top: 5rem;
}
.block_03 .title_06 {
    font-size: 1.45rem;
    text-align: center;
    margin: 1rem auto;
    width: 72%;
}

.block_04 {
    padding: 0 2rem;
    background-color: #C4F74D;
}
.block_04 .title_01 {
    padding-top: 4rem;
    text-align: center;
}
.block_04 .card {
    display: flex;
    background-color: #ffffff;
    border: 0.2rem solid #000000;
    width: 100%;
    margin-top: 2.5rem;
}
.block_04 .card_number {
    width: 6rem;
    border-right: 0.2rem solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.15rem;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 900;
}
.block_04 .card_content {
    padding: 1.5rem;
    flex: 1;
}
.block_04 .card_title {
    display: inline-block;
    background-color: #000000;
    color: #C4F74D;
    font-size: 1.7rem;
    padding: 0.4rem 1rem 0.2rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.block_04 .card_text {
    font-size: 1.32rem;
}
.block_04 .info_container {
    padding: 3rem 0 3rem 2rem;
    border-radius: 0.8rem;
    width: 100%;
    margin: 0 auto;
}
.block_04 .info_row {
    display: flex;
    align-items: center;
    margin-bottom: 2.4rem;
    gap: 1.6rem;
}
.block_04 .info_row:last-child {
    margin-bottom: 0;
}
.block_04 .info_label {
    background-color: #000;
    color: #fff;
    font-size: 1.84rem;
    padding: 1rem 0;
    width: 11rem;
    text-align: center;
    border-radius: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.block_04 .info_content {
    flex: 1;
    font-size: 1.5rem;
    font-weight: bold;
}
.block_04 .highlight_num {
    font-size: 2.4rem;
    font-weight: bold;
    padding: 0 0.1rem;
}
.block_04 .note {
    font-size: 1.35rem;
    display: block;
}


.block_05 {
    padding: 0 2rem 4rem 2rem;
    background-color: #F3F3F3;
}
.block_05 .title_01 {
    padding-top: 6rem;
    text-align: center;
}
.block_05 .card {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border: 0.2rem solid #000000;
    border-radius: 1.6rem 1.6rem 0 0;
    overflow: hidden;
    margin-top: 5rem;
}
.block_05 .badge_num {
    position: absolute;
    top: 0;
    right: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .block_05 .badge_num {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .block_05 .badge_num img {
        width: 80%;
    }
}
.block_05 .badge_num_2 {
    position: absolute;
    top: 0;
    left: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .block_05 .badge_num_2 {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .block_05 .badge_num_2 img {
        width: 80%;
    }
}
.block_05 .card_top {
    padding: 2rem 3rem;
}
@media screen and (max-width: 768px) {
    .block_05 .card_top {
        padding: 1rem 2rem 0 2rem;
    }
    .block_05 .card_top img {
        width: 50%;
    }
}
.block_05 .pict_06_1 img,
.block_05 .pict_06_2 img,
.block_05 .pict_06_3 img {
    margin: 1rem 3rem 3rem 3rem;
}
@media screen and (max-width: 768px) {
    .block_05 .pict_06_1 img,
    .block_05 .pict_06_2 img,
    .block_05 .pict_06_3 img {
        margin: 2rem;
        width: 90%;
    }
}
.block_05 .card_middle {
    border-top: 0.2rem solid #000000;
    padding: 3rem;
    font-size: 1.58rem;
}
.block_05 .card_middle .highlight {
    background-color: #c4f74d;
    font-weight: bold;
}
.block_05 .card_bottom1 {
    background-color: #c4f74d;
    border-top: 0.2rem solid #000000;
    padding: 0.8rem 1.6rem;
    font-size: 1.58rem;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 900;
}
.block_05 .card_bottom2 {
    background-color: #c4f74d;
    border-top: 0.2rem solid #000000;
    padding: 1.6rem;
    font-size: 1.8rem;
    font-weight: bold;
}
.block_05 .card_bottom2_2 {
    background-color: #c4f74d;
    border-top: 0.2rem solid #000000;
    padding: 3.2rem 1.6rem;
    font-size: 1.8rem;
    font-weight: bold;
}
.block_05 .title_02 {
    font-size: 1.84rem;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.block_06 {
    background-color: #F3F3F3;
}
.block_06_1 {
    background-image: url('../img/pict_07.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    width: 100%;
    padding: 6.5rem 2rem 1rem 2rem;
}
.block_06_2 {
    background-color: #c0c0c0;
    width: 100%;
    padding: 3rem 2rem 1rem 2rem;
}
.block_06 .title_01 {
    text-align: center;
}
.block_06 .card {
    width: 100%;
    background-color: #ffffff;
    border: 0.2rem solid #000000;
    border-radius: 1.6rem;
    padding: 1.6rem;
}
.block_06 .card_header {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-bottom: 3rem;
}
.block_06 .point_badge {
    background-color: #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-shrink: 0;
}
.block_06 .title {
    font-size: 2.1rem;
    font-weight: bold;
}
.block_06 .highlight {
    background-color: #c4f74d;
    font-weight: bold;
}
.block_06 .card_body {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}
.block_06 .left_content {
    flex: 1;
}
.block_06 .description {
    font-size: 1.58rem;
}
.block_06 .note {
    font-size: 1.1rem;
}
.block_06 .right_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.block_07 {
    padding: 0 0 4rem 0;
    background-color: #F3F3F3;
}
.block_07 .title_01 {
    padding-top: 5rem;
    text-align: center;
}
.block_07 .title_02 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 36rem !important;
    margin: 4.5rem auto -0.1rem auto;
}
.block_07 .title_03 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 33rem !important;
    margin: 0 auto;
}
.block_07 .title_04 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 21rem !important;
    margin: 0 auto;
}
.block_07 .title_05 {
    font-size: 1.71rem;
    font-weight: bold;
    text-align: center;
    margin-top: 3.5rem;
}
.block_07 .title_06 {
    font-size: 1.45rem;
    text-align: center;
    margin: 1rem auto;
    width: 72%;
}
.block_07 .card {
    width: 82%;
    background-color: #ffffff;
    border: 0.2rem solid #000000;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 2.5rem;
}
.block_07 .card_header {
    width: 100%;
    background-color: #bbee55;
    border-bottom: 0.2rem solid #000000;
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.84rem;
    color: #000000;
}
.block_07 .card_body {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4rem;
}
.block_07 .step_text {
    font-size: 1.7rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin: 0.4rem 0;
}
.block_07 .arrow_down {
    width: 0;
    height: 0;
    border-left: 0.6rem solid transparent;
    border-right: 0.6rem solid transparent;
    border-top: 0.7rem solid #dcdcdc;
    margin: 0.3rem 0;
}
.block_07 .badge_final {
    background-color: #000000;
    color: #bbee55;
    font-size: 2.1rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 2.5rem;
    text-align: center;
    margin-top: 0.6rem;
    width: 80%;
}
@media screen and (max-width: 768px) {
    .block_07 .badge_final {
        background-color: #000000;
        color: #bbee55;
        font-size: 4vw;
        font-weight: bold;
        padding: 1rem 2rem;
        border-radius: 2.5rem;
        text-align: center;
        margin-top: 0.6rem;
        width: 80%;
    }
}


.block_07 .container {
    background-color: #f2f2f2;
    padding-top: 3rem;
    width: 100%;
    margin: 0 auto;
}
.block_07 .card2 {
    background-color: #ffffff;
    border-radius: 8rem 0 8rem 0;
    padding: 4rem 2rem;
    text-align: center;
}
.block_07 .title_07 {
    font-size: 1.71rem;
    font-weight: bold;
    color: #000000;
    letter-spacing: 0.05em;
}
.block_07 .pill_wrapper {
    position: relative;
    display: inline-block;
    margin: 3rem auto;
    width: 90%;
}
.block_07 .pill_wrapper::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    width: 100%;
    height: 100%;
    background-color: #c4f74d;
    border: 0.2rem solid #000000;
    border-radius: 999rem;
    z-index: 1;
}
.block_07 .pill_content {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border: 0.2rem solid #000000;
    border-radius: 999rem;
    padding: 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 1.71rem;
    color: #000000;
}
.block_07 .pill_row {
    display: flex;
    gap: 1.5rem;
    white-space: nowrap;
    align-items: center;
}
.block_07 .pill_content_text1 {
    font-size: 2.1rem;
    font-weight: bold;
    margin-top: 2rem;
}
.block_07 .pill_content_text2 {
    font-size: 1.71rem;
    text-align: left;
    margin-top: 0.5rem;
    padding: 0 2rem;
}
.block_07 .pill_content_text3 {
    font-size: 2.1rem;
    margin: 1.5rem 0 2rem 0;;
}
.block_07 .highlight {
    background-color: #c4f74d;
}
.pill_wrapper2 {
    position: relative;
    width: 95%;
    margin: 5rem auto 3rem auto;
}
.pill_wrapper2::before {
    padding: 1.5rem;
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 100%;
    height: 100%;
    background-color: #c4f74d;
    border: 0.2rem solid #000;
    border-radius: 4rem;
}
.pill_content2 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 0.2rem solid #000;
    border-radius: 4rem;
    z-index: 1;
}
.block_08 {
    padding: 0 0 4rem 0;
    background-color: #F3F3F3;
}
.block_08 .title_01 {
    padding-top: 2rem;
    text-align: center;
}
.block_08 .title_02 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 41rem !important;
    margin: 3rem auto 0 auto;
}
@media screen and (max-width: 768px) {
    .block_08 .title_02 {
        font-size: 5.7vw;
        font-weight: bold;
        color: #fff;
        background-color: #000;
        padding: 0.2rem 0.5rem;
        width: 92vw !important;
        margin: 3rem auto 0 auto;
    }
}
.block_08 .title_03 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 20rem !important;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .block_08 .title_03 {
        font-size: 5.7vw;
        font-weight: bold;
        color: #fff;
        background-color: #000;
        padding: 0.2rem 0.5rem;
        width: 46vw !important;
        margin: 0 auto;
    }
}
.block_08 .title_04 {
    font-size: 2.63rem;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    padding: 0.2rem 0.5rem;
    width: 41rem !important;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .block_08 .title_04 {
        font-size: 5.7vw;
        font-weight: bold;
        color: #fff;
        background-color: #000;
        padding: 0.2rem 0.5rem;
        width: 92vw !important;
        margin: 0 auto;
    }
}
.block_08_1 {
    background-image: url('../img/pict_12.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 74rem;
    margin-top: 4rem;
    padding: 7rem 7rem 1rem 7.5rem;
    font-size: 1.71rem;
}
@media screen and (max-width: 768px) {
    .block_08_1 {
        background-image: url('../img/pict_12.svg');
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 150vw;
        margin-top: 4rem;
        padding-top: 9rem !important;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
        padding-bottom: 0 !important;
        font-size: 1.71rem;
    }
}
.block_09 {
    padding: 0 0 2rem 0;
    background-color: #F3F3F3;
}
.block_09 .title_01 {
    padding-top: 2rem;
    text-align: center;
}
.block_09 .card {
    position: relative;
    margin: 6rem 0;
}
.block_09 .divider {
    border: none;
    border-top: 0.1rem solid #000;
    margin: 4rem 0;
}
.block_09 .number {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 8.43rem;
    font-weight: 100;
    line-height: 1;
    letter-spacing: -0.2rem;
    margin: 0;
}
.block_09 .card_01 .number {
    position: absolute;
    top: -1.5rem;
    left: 0;
    z-index: 2;
}
.block_09 .card_02 .number {
    position: absolute;
    top: -1.5rem;
    right: 0;
    z-index: 2;
}
.block_09 .tags {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 2;
    position: relative;
}
.block_09 .card_01 .tags {
    align-items: flex-end;
    margin: 0 2rem 1rem 0;
}
@media screen and (max-width: 768px) {
    .block_09 .card_01 .tags {
        align-items: flex-end;
        margin: 0 0 1rem 0;
        padding-top: 1.3rem;
    }
}
.block_09 .card_02 .tags {
    align-items: flex-start;
    margin: 0 0 0 2rem;
}
@media screen and (max-width: 768px) {
    .block_09 .card_02 .tags {
        align-items: flex-start;
        margin: 0;
        padding-top: 1.3rem;
    }
}
.block_09 .image_box1,
.block_09 .image_box2,
.block_09 .image_box3 {
    position: relative;
    width: 400px;
    height: auto;
    overflow: hidden;
}
.block_09 .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.block_09 .card_01 .image_box1,
.block_09 .card_01 .image_box3 {
    margin-top: -1rem;
    margin-left: 2.5rem;
}
.block_09 .card_02 .image_box2 {
    margin-top: 0rem;
    margin-left: 7rem;
}
@media screen and (max-width: 768px) {
    .block_09 .image_box1,
    .block_09 .image_box2,
    .block_09 .image_box3 {
        position: relative;
        width: 100%;
        height: 56vw;
        overflow: hidden;
        margin-left: 0 !important;
    }
}
.block_09 .headline_group {
    position: relative;
    z-index: 3;
}
.block_09 .card_01 .headline_group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.84rem;
    font-weight: bold;
    margin-left: 2.5rem;
}
.block_09 .card_01 .line_1 {
    display: inline-block;
    padding: 0 0.6rem;
    background-color: #fff;
    border-top: 0.1rem solid #000;
    border-left: 0.1rem solid #000;
    border-right: 0.1rem solid #000;
    position: relative;
    z-index: 2;
}
.block_09 .card_01 .line_2 {
    display: inline-block;
    padding: 0 0.6rem;
    background-color: #fff;
    border-left: 0.1rem solid #000;
    border-bottom: 0.1rem solid #000;
    border-right: 0.1rem solid #000;
    border-top: 0.1rem solid #000;
    margin-top: -0.1rem;
    position: relative;
    z-index: 1;
}
.block_09 .card_02 .headline_group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.84rem;
    font-weight: bold;
    margin-left: 14rem;
}
.block_09 .card_02 .line {
    display: inline-block;
    padding: 0 0.6rem;
    background-color: #fff;
    position: relative;
}
.block_09 .card_02 .line_1 {
    border-top: 0.1rem solid #000;
    border-left: 0.1rem solid #000;
    border-right: 0.1rem solid #000;
    border-bottom: 0.1rem solid #000;
    z-index: 1;
}
.block_09 .card_02 .line_2 {
    border-top: 0.1rem solid #fff;
    border-left: 0.1rem solid #000;
    border-right: 0.1rem solid #000;
    border-bottom: 0.1rem solid #000;
    margin-top: -0.1rem;
    z-index: 2;
}
.block_09 .card_02 .line_3 {
    border-top: none;
    border-left: 0.1rem solid #000;
    border-right: 0.1rem solid #000;
    border-bottom: 0.1rem solid #000;
    margin-top: -0.1rem;
    z-index: 3;
}
.block_10 {
    padding: 0 0 4rem 0;
    background-color: #F3F3F3;
}
.block_10 .title_01 {
    padding-top: 0;
    text-align: center;
}
.block_10 .comparison_grid {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 2fr;
    width: 85%;
    margin: 4rem auto;
}
.block_10 .grid_cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.2rem 0;
}
.block_10 .label_cell {
    background-color: transparent;
    font-size: 1.47rem;
    font-weight: bold;
    border-bottom: 0.2rem solid #000000;
}
.block_10 .logo_cell {
    background-color: #ffffff;
    border-left: 0.2rem solid #000000;
    border-right: 0.2rem solid #000000;
    border-bottom: 0.2rem solid #000000;
}
.block_10 .logo_header {
    background-color: #ffffff;
    border: 0.2rem solid #000000;
    font-family: 'Inter', sans-serif;
    font-size: 2.9rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #000;
    margin-top: -2rem;
    min-height: 8rem;
}
.block_10 .salon_cell {
    background-color: #b0b0b0;
    font-size: 1.31rem;
    border-right: 0.2rem solid #000000;
    border-bottom: 0.2rem solid #000000;
}
.block_10 .salon_header {
    font-size: 1.3rem;
    font-weight: bold;
    border-top: 0.2rem solid #000000;
}
.block_10 .main_text {
    font-size: 1.71rem;
    font-weight: bold;
    line-height: 1.3;
}
.block_10 .sub_text {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.3;
}
.block_11 {
    padding: 0 0 4rem 0;
    background-color: #F3F3F3;
}
@media screen and (max-width: 768px) {
    .block_11 {
        padding: 0 0 8rem 0;
        background-color: #F3F3F3;
    }
}
.block_11 .title_01 {
    padding-top: 0;
    text-align: center;
}
.block_11 .faq_accordion {
    border: 2px solid #000;
    width: 90%;
    margin: 5rem auto;
}
@media screen and (max-width: 768px) {
    .block_11 .faq_accordion {
        border: 2px solid #000;
        width: 90%;
        margin: 5rem auto 0 auto;
    }
}
.block_11 .faq_accordion .accordion_item {
    width: 100%;
}
.block_11 .faq_accordion .accordion_header {
    background-color: #000;
    color: #fff;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 80px;
    user-select: none;
}
.block_11 .faq_accordion .icon_q {
    color: #c4f74d;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.63rem;
    font-style: italic;
    margin-right: 15px;
    line-height: 1;
}
.block_11 .faq_accordion .question_text {
    font-size: 1.97rem;
}
.block_11 .faq_accordion .accordion_header::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 75px;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.73rem;
    font-weight: 300;
    border-left: 2px solid #000;
}
.block_11 .faq_accordion .accordion_item.is-open .accordion_header::after {
    content: "—";
    font-size: 2.5rem;
    font-weight: bold;
}
.block_11 .faq_accordion .answer_wrap {
    display: none;
    background-color: #fff;
    border-top: 2px solid #000;
}
.block_11 .faq_accordion .answer_content {
    padding: 20px 16px;
    display: flex;
    align-items: center;
}
.block_11 .faq_accordion .icon_a {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.63rem;
    font-style: italic;
    margin-right: 15px;
}
.block_11 .faq_accordion .answer_text {
    font-size: 1.97rem;
}


.block_12 {
    padding: 0 0 4rem 0;
    background-color: #F3F3F3;
}
.block_12 .title_01 {
    padding-top: 0;
    text-align: center;
}
.block_12 .info_list {
    margin: 3rem auto;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* 行間の余白 */
    width: 85%;
}
.block_12 .info_row {
    background-color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 8px 30px 8px 0;
    box-sizing: border-box;
}
.block_12 .info_label {
    background-color: #000000;
    color: #ffffff;
    border-radius: 35px;
    padding: 7px 20px;
    font-size: 1.84rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-left: -60px; 
    z-index: 1;
    width: 13rem;
}
.block_12 .info_value {
    color: #000000;
    font-size: 1.84rem;
    padding-left: 1rem;
    margin: 0;
}
.block_12 .info_value .note {
    display: block;
    font-size: 1.5rem;
}

.block_13 {
    width: 100%;
    height: 94rem;
    background-color: #F3F3F3;
    position: relative;
    z-index: 1;
    background-image: url('../img/pict_18.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 11rem;
}
@media screen and (max-width: 768px) {
    .block_13 {
        width: 100%;
        height: 189vw;
        background-color: #F3F3F3;
        position: relative;
        z-index: 1;
        background-image: url('../img/pict_18.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center 23vw;
    }
}
.block_13 .pict_18_title1 {
    position: absolute;
    top: 0;
    left: 0;
}
.block_13 .pict_18_title2 {
    position: absolute;
    top: 22rem;
    left: 4rem;
}
@media screen and (max-width: 768px) {
    .block_13 .pict_18_title2 {
        position: absolute;
        top: 17rem;
        left: 4rem;
    }
}
.block_13 .pict_18_text {
    position: absolute;
    top: 50rem;
    left: 4rem;
    font-size: 1.9rem;
    font-weight: bold;
    color: #fff;
    width: 65%;
}
@media screen and (max-width: 768px) {
    .block_13 .pict_18_text {
        position: absolute;
        top: 47rem;
        left: 4rem;
        font-size: 1.7rem;
        font-weight: bold;
        color: #fff;
        width: 80%;
    }
}
.block_13 .pict_18_title3 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.block_14 {
    padding: 4rem 0;
    background-color: #000;
}
@media screen and (max-width: 768px) {
    .block_14 {
        padding: 2rem;
        background-color: #000;
    }
}
.block_14 .title_01 {
    padding: 0;
    text-align: center;
}
footer {
    width: 50rem;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    footer {
        width: 100%;
        margin: 0 auto;
    }
}
.cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.cta.is-active {
    opacity: 1;
    visibility: visible;
}
.cta-button {
    display: inline-block;
    text-decoration: none;
}
.cta .line {
    max-width: 105% !important;
}
@media screen and (max-width: 768px) {
    .cta {
      position: fixed;
      bottom: 0;
      left: 0;
      transform: translateX(0);
      z-index: 9999; /* 他の要素の上に表示させる */
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    .cta.is-active {
      opacity: 1;
      visibility: visible;
    }.cta-button {
        display: inline-block;
        text-decoration: none;
    }
    .cta .line {
        max-width: 100% !important;
    }
}
    
.inview_up{
	opacity: 0;
}
.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(5rem);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
.inview_left{
	opacity: 0;
}
.fadeLeft {
    animation-name:fadeLeftAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translate(-5rem, -5rem);
  }
  to {
    opacity: 1;
	transform: translate(0, 0);
  }
}

.thumbnail-btn {
    width: 40rem;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
@media screen and (max-width: 768px) {
    .thumbnail-btn {
        width: 100%;
        cursor: pointer;
        border-radius: 8px;
        transition: 0.3s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
}
.thumbnail-btn:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}
.modal-content video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    background-color: #000;
}
.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover {
    color: #ccc;
}






