@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');

:root {
    --main-green: #51AF53;
    --main-orange: #FF9137;
    --light-orange: #FFF4EA;
}

html {
    font-size: 62.5%;
}

body {
    /* font-family: 'Zen Maru Gothic', sans-serif; */
    font-family: "Kiwi Maru", serif;
    color: #454545;
    /* font-weight: 500; */
}

section {
    padding-block: 5rem 8rem;
}

.common_inner {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 15px;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width:768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    section {
        padding-block: 3rem 5rem;
    }
}

/* header */

.header {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    height: 10rem;
    width: 100%;
    z-index: 9999;
    overflow: hidden;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.header_cta {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.header_cta img {
    position: absolute;
    bottom: 0;
    left: -100px;
}

.header_cta_link {
    background-color: var(--main-green);
    padding: 2rem 2.4rem;
    border-radius: 1rem;
}

.header_cta_link span {
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
}

@media screen and (max-width: 650px) {
    .header {
        height: 5rem;
    }

    .header_logo_img {
        width: 120px;
    }

    .header_cta img {
        display: none;
    }

    .header_cta_link {
        padding: 0.8rem 1.5rem;
    }

    .header_cta_link span {
        font-size: 1.5rem;
    }
}

/* fv */

.fv {
    background-color: var(--light-orange);
    padding-bottom: 0;
    padding-top: 10rem;
    overflow: hidden;
}

.fv_four_point {
    margin-top: 2rem;
}

.fv_four_point_list {
    display: flex;
    justify-content: center;
    gap: 0 1.5rem;
    flex-wrap: wrap;
}

.fv_four_point_list_item {
    width: 16%;
    text-align: center;
    background-color: var(--main-orange);
    border-radius: 1rem;
}

.fv_four_point_list_item span {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    font-weight: 400;
    color: #ffffff;
}

.fv_h2 {
    margin-top: 3rem;
    text-align: center;
}

.fv_h2_text {
    /* font-size: 5.8rem; */
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
    text-align: center;
    font-weight: 500;
}

.fv_h2_text span {
    display: inline-block;
    background-image: linear-gradient(to bottom,
            transparent 60%,
            #c1ffc2 60%);
    background-repeat: no-repeat;
    animation: marker 1s ease-in-out forwards;
}

@keyframes marker {
    from {
        background-size: 0%;
    }

    to {
        background-size: 100%;
    }
}

.fv_container {
    position: relative;
    display: flex;
    gap: 0 1.5rem;
}

.fv_right>* {
    display: block;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.fv_left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.fv_left picture {
    display: inline-flex;
    justify-content: center;
}

.fv_cta_inner {
    border: var(--main-orange) 3px dashed;
    border-radius: 2rem;
    text-align: center;
    background-color: #ffffff;
    padding: 2rem 1.5rem;
}

.fv_h3 {
    font-size: clamp(2.5rem, 2.6vw, 3.5rem);
    display: inline-block;
    background-image: linear-gradient(to bottom,
            transparent 60%,
            #F2EFA3 60%);
    background-repeat: no-repeat;
}

.fv_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.5rem);
}

.cta_link {
    display: inline-block;
    background-color: var(--main-green);
    text-align: center;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
}

.cta_link span {
    color: #ffffff;
    /* font-size: 3.5rem; */
    font-size: clamp(2.2rem, 2.6vw, 3.5rem);
    font-weight: 500;
}

@media screen and (max-width:768px) {
    .fv_inner {
        padding-bottom: 13rem;
    }

    .fv_h2 {
        margin-top: 2rem;
    }

    .fv_container {
        flex-direction: column-reverse;
        justify-content: space-between;
        margin-top: 1rem;
    }

    .fv_left {
        align-items: center;
    }

    .fv_left img {
        width: 70%;
        position: relative;
        top: 0px;
    }

    .fv_right {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .fv_right>* {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 7rem;
        position: absolute;
        bottom: -100px;
    }

    .fv_right picture {
        display: none;
    }

    .fv_cta_inner {
        display: block;
        width: 100%;
    }

}

@media screen and (max-width: 650px) {
    .fv {
        padding-top: 5rem;
    }

    .fv_four_point_list {
        gap: 1.5rem;
    }

    .fv_four_point_list_item {
        width: 46%;
    }
}

/* best */

.frame_title_inner {
    position: relative;
    max-width: 80rem;
    margin-inline: auto;
    background-color: var(--light-orange);
    border-radius: 2rem;
    padding: 3rem 2rem;
}

.frame_title_inner::before,
.frame_title_inner::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 3px;
    pointer-events: none;
    background:
        repeating-linear-gradient(90deg,
            #ff8a24 0 8px,
            transparent 8px calc(8px * 2));
}



.frame_title_inner::before {
    top: 40px;
    left: -50px;
    transform: rotate(-45deg);
}

.frame_title_inner::after {
    bottom: 40px;
    right: -60px;
    transform: rotate(-45deg);
}

.frame_h2 {
    text-align: center;
    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    line-height: 2;
    font-weight: 500;
}

.frame_h2_02 {
    text-align: center;
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 2;
}

.frame_h2 span {
    color: var(--main-orange);
}

.frame_text {
    text-align: center;
    margin-top: 3rem;
}

.frame_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 2;
}

.convey {
    position: relative;
    margin-top: 16rem;
}

.convey_list {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0 3rem;
}

.convey_item {
    position: relative;
    width: 50%;
    padding: 8rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid var(--main-orange);
    background-color: var(--light-orange);
    border-radius: 2rem;
}

.convey_item_01::before,
.convey_item_02::before {
    position: absolute;
    content: '';
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 172px;
    height: 172px;
    background-repeat: no-repeat;
}

.convey_item_01::before {
    background-image: url(../images/best_01.svg);
}

.convey_item_02::before {
    background-image: url(../images/best_02.svg);
}

.convey_text {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.convey_h3 {
    text-align: center;
    text-align: -webkit-center;
}

.convey_h3 span {
    font-size: clamp(2.4rem, 2.6vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 1px;
}

.convey_para {
    margin-top: 3rem;
}

.convey_para p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    font-weight: 400;
    line-height: 1.8;
}

.ourStrong {
    margin-top: 8rem;
}

.ourStrong_container {
    display: flex;
    justify-content: center;
    gap: 0 3rem;
}

.ourStrong_text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ourStrong_h3 {
    position: relative;
    background-color: var(--main-orange);
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 5rem;
    padding: 2rem 3rem;
}

.ourStrong_h3::before {
    position: absolute;
    content: '';
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 34px 18.5px 0 18.5px;
    border-color: var(--main-orange) transparent transparent transparent;
}

.ourStrong_h3 span {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 500;
}

.ourStrong_list {
    margin-top: 5rem;
}

.ourStrong_item {
    position: relative;
    font-size: 2rem;
    padding-left: 3.3rem;
    line-height: 2;
}

.ourStrong_item::before {
    position: absolute;
    content: '';
    background-image: url(../images/checkmark.svg);
    background-repeat: no-repeat;
    width: 25px;
    height: 23px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.frame_sp {
    display: none;
}

.frame_pc {
    display: block;
}

@media screen and (max-width:768px) {
    .frame_sp {
        display: block;
    }

    .frame_pc {
        display: none;
    }

    .frame_title_inner::before,
    .frame_title_inner::after {
        content: "";
        position: absolute;
        width: 120px;
        height: 3px;
        pointer-events: none;
        background:
            repeating-linear-gradient(90deg,
                #ff8a24 0 8px,
                transparent 8px calc(8px * 2));
    }

    .frame_title_inner::before {
        top: 30px;
        left: -50px;
        transform: rotate(-45deg);
    }

    .frame_title_inner::after {
        bottom: 30px;
        right: -60px;
        transform: rotate(-45deg);
    }

    .convey {
        margin-top: 13rem;
    }

    .convey_list {
        flex-direction: column;
    }

    .convey_item {
        width: 100%;
        padding-top: 6rem;
    }

    .convey_item_02 {
        margin-top: 12rem;
    }

    .convey_para {
        margin-top: 2rem;
    }

    .ourStrong {
        margin-top: 3rem;
    }

    .ourStrong_container {
        flex-direction: column;
    }

    .ourStrong_img {
        text-align: center;
        text-align: -webkit-center;
    }

    .ourStrong_container img {
        width: 50%;
    }

    .ourStrong_h3 {
        padding-inline: 1.8rem;
    }

    .ourStrong_h3::before {
        bottom: unset;
        top: -33px;
        transform: translateX(-50%) rotate(180deg);
    }

    .ourStrong_text {
        margin-top: 5rem;
    }

    .ourStrong_list {
        margin-top: 2rem;
    }
}









/* point */
.point_pc {
    display: block;
}

.point_sp {
    display: none;
}

.point_title {
    text-align: center;
}

.point_title img {
    max-width: 100%;
}

.point_container {
    margin-top: 5rem;
}

.point_item {
    position: relative;
    display: flex;
    border: var(--main-orange) 3px dashed;
    padding: 4rem 3rem;
    border-radius: 2rem;
    align-items: center;
    background-color: #ffffff;
}

.point_item:not(:first-child) {
    margin-top: 3rem;
}

.point_item::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    width: 210px;
    height: 130px;
    right: 6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.point_item_01::before {
    background-image: url(../images/point_num_01.svg);
}

.point_item_02::before {
    background-image: url(../images/point_num_02.svg);
}

.point_item_03::before {
    background-image: url(../images/point_num_03.svg);
}

.point_item_04::before {
    background-image: url(../images/point_num_04.svg);
}

.point_item_05::before {
    background-image: url(../images/point_num_05.svg);
}

.point_item>* {
    position: relative;
    z-index: 1;
}

.point_text {
    margin-left: 3rem;
}

.point_h3 {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    font-weight: 500;
}

.point_text p {
    line-height: 2;
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    margin-top: 2rem;
}

@media screen and (max-width:900px) {
    .point_pc {
        display: none;
    }

    .point_sp {
        display: block;
    }
}

@media screen and (max-width:768px) {
    .point_title img {
        width: 314px;
    }
}

@media screen and (max-width:640px) {
    .point_item::before {
        width: 89px;
        height: 55px;
        right: unset;
        left: 2rem;
        top: 2rem;
        transform: unset;
        background-size: contain;
    }

    .point_item {
        padding: 2rem 1.5rem;
        flex-direction: column;
    }

    .point_item img {
        width: 45%;
    }

    .point_text {
        margin-left: 0;
        margin-top: 3rem;
    }

    .point_text p {
        margin-top: 1.5rem;
    }
}

/* common cta */

.common_cta {
    background-color: var(--main-orange);
}

.cta_baige {
    background-color: var(--light-orange);
    padding-block: 0 5rem;
}

.common_cta_padding_bottom,
.common_cta_padding_top {
    position: relative;
}

.common_cta_padding_bottom {
    padding-bottom: 10rem;
}

.common_cta_padding_top {
    padding-top: 10rem;
    padding-bottom: 3rem;
}

.common_cta_padding_bottom::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 59px;
    bottom: -30px;
    left: 0;
    background-image: url(../images/page_round_up.svg);
    background-repeat: no-repeat;
    background-size: 200%;
    background-position-x: center;
}

.common_cta_padding_top::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 75px;
    top: 0;
    left: 0;
    background-image: url(../images/page_round_down.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-x: center;
}

.common_cta_inner {
    max-width: 94rem;
}

.common_cta_container {
    position: relative;
    border: var(--main-orange) 3px dashed;
    border-radius: 2rem;
    text-align: center;
    text-align: -webkit-center;
    background-color: #ffffff;
    padding: 2.7rem 1.5rem;
}

.common_cta_container::before,
.common_cta_container::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    width: 152px;
    height: 152px;
}

.common_cta_container::before {
    background-image: url(../images/common_cta_person_01.svg);
    right: 50%;
    transform: translate(-160%, -50%);
}

.common_cta_container::after {
    background-image: url(../images/common_cta_person_02.svg);
    left: 50%;
    transform: translate(160%, -50%);
}

.common_cta_h3 {
    font-size: clamp(2.2rem, 2.6vw, 3.5rem);
    display: inline-block;
    background-image: linear-gradient(to bottom, transparent 60%, #F2EFA3 60%);
    background-repeat: no-repeat;
    font-weight: 500;
}

.common_cta_h3 span {
    font-size: clamp(2rem, 2.6vw, 2.5rem);
}

.common_cta_link {
    display: block;
    background-color: var(--main-green);
    text-align: center;
    border-radius: 1rem;
    padding: 1rem 2rem;
    margin-top: 2rem;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    width: 45%;
}

.common_cta_link span {
    color: #ffffff;
    font-size: clamp(2.2rem, 2.6vw, 3.5rem);
    font-weight: 500;
}

.no_round_cta {
    padding-block: 5rem;
}

@media screen and (max-width:860px) {
    .common_cta_container::before {
        transform: translate(-137%, -50%);
    }

    .common_cta_container::after {
        transform: translate(137%, -50%);
    }
}

@media screen and (max-width:768px) {
    .common_cta_padding_bottom {
        padding-top: 3rem;
        padding-bottom: 7rem;
    }

    .common_cta_padding_top {
        padding-top: 5rem;
    }

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

    .common_cta_link {
        width: 100%;
    }
}

/* whats */
.whats {
    background-color: var(--light-orange);
}

.whats_h2 {
    text-align: center;
    text-align: -webkit-center;
}

.whats_container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8rem;
}

.whats_container>* {
    width: 47%;
}

.whats_h3 {
    position: relative;
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 1.7;
    display: inline-block;
    background-color: #ffffff;
    padding: 2.2rem 3rem;
    border-radius: 10rem;
    font-weight: 500;
}

.whats_h3_01 span {
    display: block;
}

.whats_h3_01::before {
    position: absolute;
    content: '';
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 17px 0 17px 38px;
    border-color: transparent transparent transparent #FFFFFF;
}

.whats_h3_02::before {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 34px 19px 0 19px;
    border-color: #FFFFFF transparent transparent transparent;
}

.whats_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.6rem);
    margin-top: 3rem;
    line-height: 2;
}

.program_container {
    margin-top: 5rem;
}

.problem_list {
    margin-top: 3rem;
}

.problem_item {
    position: relative;
    padding-left: 3rem;
    font-size: clamp(1.6rem, 2.1vw, 2rem);
    line-height: 2;
}

.problem_item::before {
    position: absolute;
    content: '';
    background-image: url(../images/whats_checkmark.svg);
    background-repeat: no-repeat;
    left: 0;
    top: 50%;
    transform: translateY(-28%);
    width: 100%;
    height: 100%;
}

.program_h2 {
    text-align: center;
    text-align: -webkit-center;
}

.program_h2 span {
    position: relative;
    display: inline-block;
    font-size: clamp(4.1rem, 4.1vw, 6rem);
    font-weight: 500;
}

.program_h2 span::before {
    position: absolute;
    content: '';
    width: 5rem;
    height: 0.3rem;
    background-color: var(--main-orange);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.program_h2_last {
    margin-top: 5rem;
}

.program_list {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 3rem;
}

.program_item {
    width: 50%;
    padding: 2rem 3rem;
    background-color: var(--light-orange);
    border-radius: 1rem;
}

.program_h3 {
    font-size: clamp(2rem, 2.6vw, 2.6rem);
    font-weight: 400;
}

.program_text p {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
    line-height: 1.8;
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .program_list {
        flex-direction: column;
    }

    .program_item {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .program_list .program_item:last-child {
        margin-top: 2rem;
    }
}



.whats_container:last-child .whats_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8rem;
}

.whats_outro {
    margin-top: 16rem;
}

.whats_outro_inner {
    max-width: 96rem;
    margin-inline: auto;
}

.whats_outro_container {
    position: relative;
    background-color: #ffffff;
    border-radius: 20rem;
    padding: 11rem 0 5rem;
    text-align: center;
}

.whats_outro_container::before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    background-image: url(../images/whats_04.svg);
    background-repeat: no-repeat;
    width: 424px;
    height: 197px;
}

.hearing_h3 span {
    font-size: clamp(2rem, 2.6vw, 3.2rem);
    line-height: 2;
    font-weight: 500;
    display: inline-block;
    border-bottom: var(--main-orange) 2px dashed;
}

.whats_outro_container p {
    margin-top: 3rem;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 2;
    font-weight: 500;
}

.whats_sp {
    display: none;
}

@media screen and (max-width:768px) {
    .whats_sp {
        display: block;
    }

    .whats_h2 img {
        width: 363px;
    }

    .whats_container {
        margin-top: 3rem;
    }

    .whats_container>* {
        width: 100%;
    }

    .whats_container_01 {
        flex-direction: column-reverse;
    }

    .whats_container_02 {
        flex-direction: column;
    }

    .whats_img {
        text-align: center;
        text-align: -webkit-center;
    }

    .whats_img img {
        max-width: 100%;
        width: 400px;
    }

    .whats_h3_01::before {
        position: absolute;
        content: '';
        left: 50%;
        top: -28px;
        transform: translateX(-50%);
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 19px 34px 19px;
        border-color: transparent transparent #FFFFFF transparent;
    }

    .whats_text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .whats_container_01 .whats_text,
    .whats_container_02 .whats_text {
        margin-top: 3rem;
    }

    .whats_container:last-child .whats_text {
        margin-top: 3rem;
    }

    .whats_text p {
        margin-top: 2rem;
    }

    .whats_outro {
        margin-top: 13rem;
    }

    .whats_outro_container {
        border-radius: 2rem;
        padding: 11rem 0 5rem;
    }
}

@media screen and (max-width:480px) {
    .whats_outro_container::before {
        background-size: 70%;
        background-position: center;
    }

    .whats_outro_container {
        border-radius: 2rem;
        padding: 6rem 0 3rem;
    }
}

/* if */
.if {
    position: relative;
}

.if::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 35px;
    bottom: 0px;
    left: 0;
    background-image: url(../images/page_round_up.svg);
    background-repeat: no-repeat;
    background-size: 200%;
    background-position-x: center;
}

.if_inner {
    max-width: 117rem;
}

.if_title {
    text-align: center;
}

.if_h2 {
    font-size: clamp(2.5rem, 2.6vw, 5rem);
    font-weight: 500;
    line-height: 1.7;
}

.if_h2 span {
    display: inline-block;
    background-image: linear-gradient(to bottom,
            transparent 60%,
            #FFC9C9 60%);
    background-repeat: no-repeat;
}

.if_container {
    position: relative;
    border-radius: 5rem;
    overflow: hidden;
}

.if_container_01 {
    text-align: center;
    background-color: var(--light-orange);
    padding-block: 6rem 13rem;
    margin-top: 5rem;
}

.if_container_01::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/if_01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: 86px;
}

.if_container_01 .if_h3 {
    font-size: clamp(2.5rem, 2.6vw, 3.3rem);
    line-height: 1.7;
}

.if_container_01 .if_h3 span {
    color: var(--main-orange);
    font-weight: 500;
    font-size: clamp(3.4rem, 2.6vw, 4.5rem);
}

.if_container_02 {
    display: flex;
    gap: 0 1.5rem;
    margin-top: 5rem;
    background-color: var(--main-orange);
    padding: 2rem;
}

.if_container_02>* {
    width: 50%;
}

.if_container_02 .if_h3 {
    font-size: clamp(2rem, 5.6vw, 3.2rem);
    background-color: var(--light-orange);
    border-radius: 5rem;
    padding: 5rem 9rem;
}

.if_container_02 .if_h3 span {
    color: var(--main-orange);
    font-weight: 500;
}

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

.if_item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    padding: 0.5rem 0 0.5rem 2rem;
    border-radius: 4rem;
}

.if_num {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-orange);
    color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    aspect-ratio: 1 / 1;
}

.if_pc {
    display: block;
}

.if_sp {
    display: none;
}

@media screen and (max-width:1150px) {
    .if_container_02 {
        flex-direction: column;
    }

    .if_container_02>* {
        width: 100%;
    }

    .if_container_02 .if_h3 {
        text-align: center;
        padding-inline: 0;
    }

    .if_list {
        margin-top: 1rem;
    }

    .if_item {
        margin-top: 1rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width:600px) {
    .if_pc {
        display: none;
    }

    .if_sp {
        display: block;
    }

    .if_container_01 {
        padding-block: 2rem 6rem;
        margin-top: 5rem;
    }

    .if_container_01::before {
        background-size: 50%;
        background-position: center;
        width: 374px;
        height: 42px;
    }

    .if_container_02 .if_h3 {
        padding: 2rem 0;
    }
}

/* worst */
.worst {
    background-color: var(--light-orange);
}

.worst_intro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5rem;
}

.worst_h2 {
    font-size: clamp(2.3rem, 2.6vw, 3.3rem);
    font-weight: 500;
    line-height: 1.7;
}

.worst_h2 span {
    display: inline-block;
    background-image: linear-gradient(to bottom,
            transparent 60%,
            #FFC9C9 60%);
    background-repeat: no-repeat;
}

.worst_triangle {
    text-align: center;
    text-align: -webkit-center;
    margin-top: 5rem;
}

.worst_triangle span {
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 50px 90px 0 90px;
    border-color: #C7C7C7 transparent transparent transparent;
}

.worst_list_container {
    margin-top: 5rem;
}

.worst_list {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 2rem 9rem 4rem;
    border-radius: 5rem;
}

.worst_item {
    display: inline-block;
    background-color: #D6D6D6;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    font-weight: 500;
    padding: 2rem;
    border-radius: 5rem;
    margin-right: 2rem;
    margin-top: 2rem;
}

.worst_outro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5rem;
    margin-top: 8rem;
}

.worst_outro img {
    width: 456px;
    max-width: 100%;
}

.worst_outro_text {
    background-color: #ffffff;
    border-radius: 5rem;
    padding: 3.5rem;
}

.worst_outro_text p {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-top: 2rem;
    line-height: 2;
}

.worst_outro_text p:first-child {
    margin-top: 0;
}

.worst_line {
    border-bottom: var(--main-orange) 3px dashed;
}

.worst_orange {
    color: var(--main-orange);
    font-weight: 500;
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

@media screen and (max-width:768px) {
    .worst_intro {
        flex-direction: column;
    }

    .worst_h2 {
        text-align: center;
        margin-top: 3rem;
    }

    .worst_list {
        padding: 1rem 1.5rem 3rem;
        border-radius: 2rem;
        justify-content: space-between;
    }

    .worst_item {
        flex-wrap: nowrap;
        padding: 1rem;
        margin-right: 0;
        width: 46%;
        text-align: center;
    }

    .worst_outro {
        margin-top: 3rem;
        flex-direction: column;
    }

    .worst_outro img {
        width: 70%;
        max-width: 100%;
    }

    .worst_outro_text {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }
}

/* hours */
.hours_title {
    text-align: center;
    text-align: -webkit-center;
}

.table_inner {
    max-width: 70rem;
    margin-inline: auto;
}

.hours_table {
    width: 100%;
    margin-top: 5rem;
    border-collapse: collapse;
    background-color: var(--light-orange);
}

.hours_table tr:first-child {
    border-bottom: var(--main-orange) 3px solid;
}

.hours_table th {
    border-right: var(--main-orange) 3px solid;
    max-width: fit-content;
}

.hours_table th,
.hours_table td {
    text-align: center;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    padding-block: 3rem;
}

.hours_guide p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.hours_guide p:last-child {
    color: #884747;
}

.about_and_map {
    display: flex;
    justify-content: space-between;
    gap: 0 3rem;
    margin-top: 5rem;
}

.about_and_map>* {
    width: 50%;
}

.about_table {
    border-collapse: collapse;
}

.about_table tr:not(:last-child) {
    border-bottom: #454545 1px solid;
}

.about_table th,
.about_table td {
    font-size: clamp(1.4rem, 2.6vw, 1.5rem);
    padding-block: 1.5rem;
}

.about_table th {
    text-align: right;
    min-width: 70px;
    font-weight: 500;
}

.about_table td {
    text-align: left;
    padding-left: 2rem;
}

.hours_sp {
    display: none;
}

.map_link a {
    display: block;
    color: var(--main-orange);
    font-size: 1.6rem;
    text-decoration: underline;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    .hours_sp {
        display: block;
    }

    .hours_title img {
        width: 27rem;
    }

    .hours_table,
    .about_table {
        margin-top: 3rem;
    }

    .about_and_map {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
    }

    .about_and_map>* {
        width: 100%;
    }

    .map_img {
        margin-top: 2rem;
    }
}

/* step */
.step {
    background-color: var(--light-orange);
    padding-bottom: 5rem;
}

.step_title {
    text-align: center;
    text-align: -webkit-center;
}

.step_container {
    margin-top: 8rem;
}

.step_list {
    display: flex;
    justify-content: space-between;
}

.step_item {
    position: relative;
    width: calc(100% / 3 - 15px);
    overflow: hidden;
    border-radius: 3rem;
    background-color: #ffffff;
}

.step_num {
    text-align: center;
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: var(--main-orange);
    padding-block: 1rem;
    color: #ffffff;
}

.step_img {
    margin-top: 3rem;
    text-align: center;
    text-align: -webkit-center;
}

.step_text {
    padding: 0 1.5rem 2rem;
}

.step_h3 {
    text-align: center;
    margin-top: 2rem;
}

.step_h3 span {
    display: block;
    font-size: 3rem;
    font-weight: 500;
    border-bottom: 3px dashed var(--main-orange);
}

.step_item p {
    font-size: clamp(1.6rem, 2.6vw, 1.8rem);
    line-height: 1.8;
    margin-top: 2rem;
}

.step_item p span {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 1rem;
}

@media screen and (max-width:768px) {
    .step_h2 img {
        width: 36rem;
    }

    .step_container {
        margin-top: 5rem;
    }

    .step_list {
        flex-direction: column;
    }

    .step_item {
        width: 100%;
        margin-top: 2rem;
    }

    .step_item:first-child {
        margin-top: 0;
    }
}

/* footer cta */
.footer_cta {
    display: none;
}

@media screen and (max-width:650px) {
    .footer_cta {
        position: fixed;
        display: block;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 9999;
        background-color: var(--light-orange);
        border-top: 3px solid var(--main-orange);
    }

    .footer_cta_inner {
        position: relative;
        padding: 0.8rem 1.5rem;
        display: flex;
        justify-content: end;
    }

    .footer_cta_person {
        position: absolute;
        left: 2rem;
        bottom: 0;
    }

    .footer_cta_link {
        background-color: var(--main-green);
        padding: 2rem 1rem;
        display: flex;
        align-items: center;
        text-align: center;
        text-align: -webkit-center;
        border-radius: 1.5rem;
        width: 80%;
        justify-content: center;
    }

    .footer_cta_link span {
        font-size: 1.8rem;
        color: #ffffff;
    }
}

/* footer */

footer {
    align-content: center;
    align-items: center;
    background: rgb(255, 145, 55);
    flex-direction: column;
    flex-wrap: nowrap;
    height: 81px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.copyright {
    text-align: center;
}

.copyright small {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
}

@media screen and (max-width:650px) {
    footer {
        padding-bottom: 16rem;
    }

    .copyright {
        margin-top: 3rem;
    }
}

/* chart */
.chart {
    margin-top: 8rem;
}

.chart_title {
    text-align: center;
    text-align: -webkit-center;
}

.chart_h2 img {
    width: 50%;
}

.pie_chart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 3rem;
    margin-top: 5rem;
}

.pie_chart>* {
    width: 50%;
}

.pie_chart_text {
    background-color: #ffffff;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 1px 3px 6px var(--main-orange);
}

.pie_chart_text p {
    font-size: clamp(1.8rem, 2.6vw, 2rem);
    line-height: 1.8;
}

.pie_chart_right {
    display: block;
    font-size: 1.4rem;
    text-align: right;
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .chart {
        margin-top: 3rem;
    }

    .chart_h2 img {
        width: 100%;
    }

    .pie_chart {
        flex-direction: column-reverse;
        gap: unset;
        margin-top: 3rem;
    }

    .pie_chart>* {
        width: 100%;
    }

    .pie_chart_text {
        margin-top: 3rem;
    }
}