/* page all */

* {
    box-sizing: border-box;
}

body {
    color: #181818;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 24px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    overflow-x: hidden;
    width: 1920px;
}

a {
    text-decoration: none;
}

a,
a:hover,
a:visited {
    color: inherit;
}

ul {
    list-style: none;
    padding-left: 0;
}

/* page all */

@media screen and (min-width:1025px) {
    /* 1025px以上の画面サイズで適用されるスタイル */

    .tb {
        display: none;
    }

    .sp {
        display: none;
    }

    .mv-sp {
        display: none;
    }

    /* header */
    .wrapper {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .header-fixed {
        align-items: center;
        background-color: #099795;
        display: flex;
        height: 56px;
        justify-content: center;
        max-width: 1920px;
    }

    .menu {
        color: #fff;
        display: flex;
        gap: 50px;
        font-size: 16px;
        letter-spacing: 0.04em;
        padding-left: 0;
    }

    .nav:hover {
        opacity: 0.5;
        transition: 0.3s;
    }

    /* header */

    /* mv */
    .mv {
        display: block;
        margin-top: 56px;
    }

    /* sec1 */
    .sec1 {
        margin: 100px 0 100px 0;
        padding: 0 2vw 0 2vw;
    }

    .text-sec1 {
        font-size: 30px;
        font-weight: bold;
        line-height: 45px;
        text-align: center;
    }

    .flex-sec1 {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: center;
        margin-top: 50px;
    }

    .frame-sec1 {
        width: 24vw;
    }

    .frame-text-sec1 {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
    }

    .text-sec1-btm {
        color: #009e9c;
        font-size: 24px;
        text-align: right;
        padding-right: 200px;
    }

    /* sec1 */

    /* sec2 */
    .sec2 {
        background-color: #f1ffff;
        padding: 100px 0 100px 0;
    }

    .contents {
        width: 58vw;
        margin: 0 auto;
    }

    .sec-title {
        color: #fff;
        background-color: #099795;
        font-size: 24px;
        font-weight: bold;
        padding: 20px 0;
        text-align: center;
    }

    .table {
        border: 1px solid #181818;
        border-collapse: collapse;
        font-size: 16px;
        letter-spacing: 0.04em;
        margin: 50px 0 30px 0;
        width: 100%;
    }

    .table th,
    .table td {
        padding: 14px;
        border: 1px solid #181818;
        font-size: 20px;
    }

    .table th {
        background-color: #cceceb;
        text-align: left;
        width: 26%;
    }

    .table td {
        background-color: #fff;
        width: 74%;
    }

    .list-sec2 {
        font-size: 16px;
        letter-spacing: 0.04em;
    }

    ul.list-sec2 li {
        padding-bottom: 4px;
    }

    ul.list-sec2 li:last-of-type {
        padding-bottom: 0px;
    }


    a.btn {
        display: block;
        width: 30vw;
        height: 60px;
        margin: 50px auto 0;
        background-color: #fff;
        color: #009e9c;
        border: solid 3px #009e9c;
        border-radius: 50px;
        box-sizing: border-box;
        line-height: 58px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        position: relative;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    a.btn::before,
    a.btn::after {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        content: "";
        vertical-align: middle;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    a.btn::before {
        right: 19px;
        width: 28px;
        height: 3px;
        background: #009e9c;
    }

    a.btn::after {
        right: 20px;
        width: 16px;
        height: 16px;
        border-top: 3px solid #009e9c;
        border-right: 3px solid #009e9c;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    a.btn:hover {
        background-color: #009e9c;
        color: #ffffff;
    }

    a.btn:hover::before {
        background: #ffffff;
    }

    a.btn:hover::after {
        border-top: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
    }

    /* sec3 */
    .sec3 {
        padding: 100px 0 100px 0;
    }

    .flex-sec3 {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: flex-start;
        margin-top: 50px;
    }

    .frame-sec3 {
        width: 16vw;
        text-align: center;
    }

    .flex-eq {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 5px;
    }

    .flex-icon {
        width: 32px;
        height: auto;
        margin-right: 10px;
    }

    .flex-eq-wifi {
        margin-top: 50px;
        width: 16vw;
    }

    .flex-icon-wifi {
        width: 32px;
        height: auto;
        margin: 0 auto;
    }

    .text-sec3 {
        padding-top: 10px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        margin-top: 10px;
    }

    .center {
        text-align: center;
    }

    .frame-title-sec3 {
        display: inline-block;
        position: relative;
        border-bottom: 5px solid #ddd;
        padding: 2px 0;
        margin-top: 100px;
        font-size: 22px;
        font-weight: bold;
    }

    .frame-title-sec3:before {
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 34%;
        height: 5px;
        content: '';
        background: #099795;
    }

    .map {
        margin: 50px 0 50px 0;
    }

    .map img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }

    .img-sec3:first-of-type {
        margin-bottom: 50px;
    }

    .img-sec3 {
        width: 100%;
        height: auto;
    }

    .frame-text-sec3 {
        font-size: 20px;
        text-align: center;
        padding-top: 5px;
    }

    /* sec3 */

   /*sec4 */
    .sec4 {
        background-color: #f1ffff;
        padding: 100px 0 100px 0;
    }

    .inner {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
    }

    .step {
        margin-top: 50px;
    }

    .step-sp {
        display: flex;
        align-items: center;
        width: 24vw;
    }

    .step-item {
        border-top: 0;
    }

    .step-item:nth-of-type(1) {
        border-top: 0;
    }

    .step-item-content {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 50px;
        max-width: 1100px;
        display: flex;
        align-items: center;
    }

    .step-item-content.one {
        padding-top: 0;
    }

    .step-item-content-number {
        position: relative;
        margin-right: 40px;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        background: #009e9c;
        color: #fff;
        font-size: 36px;
    }

    .step-item-content-number {
        margin-right: 20px;
        width: 100px;
        height: 100px;
        line-height: 40px;
        font-size: 16px;
        text-align: center;
    }

    .step-item-content-number span {
        font-size: 42px;
        font-weight: bold;
    }

    .step-item-content-number-line {
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 2px;
        height: 380px;
        background: #009e9c;
    }

    .step-item-content-title {
        margin-right: 48px;
        flex-basis: 14vw;
        color: #009e9c;
        font-size: 24px;
        font-weight: bold;
    }

    .step-item-content-description {
        line-height: 35px;
        font-size: 20px;
        width: 30vw;
        font-weight: normal;
    }

    /* sec4 */

    /* sec5 */
    .sec5 {
        padding: 100px 0 70px 0;
    }

    .img-sec5 img {
        margin-top: 50px;
        width: 100%;
        height: auto;
    }

    /*  sec 6 */

    a.btn-rsv {
        display: block;
        width: 100%;
        height: 226px;
        margin: 50px auto 0;
        background-color: #fabe00;
        color: #181818;
        text-align: center;
        text-decoration: none;
        font-size: 36px;
        padding: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 70px;
        position: relative;
    }

    a.btn-rsv:hover {
        opacity: 0.7;
        transition: 0.3s;
    }

    .flex-rsv {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .rev-icon {
        width: 70px;
        height: auto;
    }

    .btn-text {
        font-weight: bold;
    }

    .mail {
        font-size: 30px;
        padding-top: 30px;
    }

    .flex-btn-arrow {
        display: inline-block;
        vertical-align: middle;
        color: #181818;
        line-height: 1;
        position: relative;
        width: 1.5em;
        height: 0.1em;
        background: currentColor;
        position: absolute;
        right: 4%;
    }

    .flex-btn-arrow::before {
        content: '';
        width: 0.65em;
        height: 0.65em;
        border: 0.1em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        transform: rotate(45deg);
        transform-origin: top right;
        position: absolute;
        top: 50%;
        right: -0.05em;
        box-sizing: border-box;
    }

    .text-sec6 {
        text-align: center;
        margin: 30px 0 100px 0;
    }

    /* sec6 */

}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* 769px~1024pxの画面サイズで適用されるスタイル */

    .tb {
        display: inline-block;
    }

    .mv-sp {
        display: none;
    }


    /* header */
    .wrapper {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .header-fixed {
        align-items: center;
        background-color: #099795;
        display: flex;
        height: 56px;
        justify-content: center;
        max-width: 1920px;
    }

    .menu {
        color: #fff;
        display: flex;
        gap: 50px;
        font-size: 16px;
        letter-spacing: 0.04em;
        padding-left: 0;
    }

    .nav:hover {
        opacity: 0.5;
        transition: 0.3s;
    }

    /* header */

    /* mv */
    .mv {
        margin-top: 56px;
        display: block;
    }

    /* sec1 */
    .sec1 {
        margin: 100px 0 100px 0;
        padding: 0 6vw 0 6vw;
    }

    .text-sec1 {
        font-size: 24px;
        font-weight: bold;
        line-height: 36px;
        text-align: center;
    }

    .flex-sec1 {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: center;
        margin-top: 50px;
    }

    .frame-sec1 {
        width: 24vw;
    }

    .frame-text-sec1 {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    .text-sec1-btm {
        color: #009e9c;
        font-size: 24px;
        text-align: right;
        padding-right: 50px;
    }

    /* sec1 */

    /* sec2 */
    .sec2 {
        background-color: #f1ffff;
        padding: 100px 0 100px 0;
    }

    .contents {
        width: 58vw;
        margin: 0 auto;
    }

    .sec-title {
        color: #fff;
        background-color: #099795;
        font-size: 24px;
        font-weight: bold;
        padding: 20px 0;
        text-align: center;
    }

    .table {
        border: 1px solid #181818;
        border-collapse: collapse;
        font-size: 16px;
        letter-spacing: 0.04em;
        margin: 50px 0 30px 0;
        width: 100%;
    }

    .table th,
    .table td {
        padding: 14px;
        border: 1px solid #181818;
        font-size: 20px;
        line-height: 35px;
    }

    .table th {
        background-color: #cceceb;
        text-align: left;
        width: 26%;
    }

    .table td {
        background-color: #fff;
        width: 74%;
    }

    .list-sec2 {
        font-size: 16px;
        letter-spacing: 0.04em;
    }

    ul.list-sec2 li {
        padding-bottom: 4px;
    }

    ul.list-sec2 li:last-of-type {
        padding-bottom: 0px;
    }

    a.btn {
        display: block;
        width: 40vw;
        height: 60px;
        margin: 50px auto 0;
        background-color: #fff;
        color: #009e9c;
        border: solid 3px #009e9c;
        border-radius: 50px;
        box-sizing: border-box;
        line-height: 58px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        position: relative;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    a.btn::before,
    a.btn::after {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        content: "";
        vertical-align: middle;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    a.btn::before {
        right: 19px;
        width: 28px;
        height: 3px;
        background: #009e9c;
    }

    a.btn::after {
        right: 20px;
        width: 16px;
        height: 16px;
        border-top: 3px solid #009e9c;
        border-right: 3px solid #009e9c;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    a.btn:hover {
        background-color: #009e9c;
        color: #ffffff;
    }

    a.btn:hover::before {
        background: #ffffff;
    }

    a.btn:hover::after {
        border-top: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
    }

    /* sec3 */
    .sec3 {
        padding: 100px 0 100px 0;
    }

    .flex-sec3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        ;
        margin-top: 50px;
    }

    .frame-sec3 {
        width: 16vw;
        text-align: center;
    }

    .frame-sec3:nth-child(4) {
        margin-top: 50px;
    }

    .frame-sec3:nth-child(5) {
        margin-top: 50px;
    }

    .flex-eq {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 5px;
    }

    .flex-icon {
        width: 32px;
        height: auto;
        margin-right: 10px;
    }

    .flex-eq-wifi {
        margin-top: 70px;
        width: 16vw;
    }

    .flex-icon-wifi {
        width: 32px;
        height: auto;
        margin: 0 auto;
    }

    .text-sec3 {
        padding-top: 10px;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .center {
        text-align: center;
    }

    .frame-title-sec3 {
        display: inline-block;
        position: relative;
        border-bottom: 5px solid #ddd;
        padding: 2px 0;
        margin-top: 100px;
        font-size: 18px;
        font-weight: bold;
    }

    .frame-title-sec3:before {
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 34%;
        height: 5px;
        content: '';
        background: #099795;
    }

    .map {
        margin: 50px 0 50px 0;
    }

    .map img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }

    .flex-sec3-img {
        display: flex;
        justify-content: center;
        gap: 70px;
        margin-top: 50px;
    }

    .img-sec3:first-of-type {
        margin-bottom: 50px;
    }

    .img-sec3 {
        width: 100%;
        height: auto;
    }


    /* sec3 */

    /*sec4 */
    .sec4 {
        background-color: #f1ffff;
        padding: 100px 0 100px 0;
    }

    .inner {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
    }

    .step {
        margin-top: 50px;
    }

    .step-sp {
        display: flex;
        align-items: center;
        width: 28vw;
    }


    .step-item {
        border-top: 0;
    }

    .step-item:nth-of-type(1) {
        border-top: 0;
    }

    .step-item-content {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 50px;
        max-width: 1100px;
        display: flex;
        align-items: center;
    }

    .step-item-content.one {
        padding-top: 0;
    }

    .step-item-content-number {
        position: relative;
        border-radius: 50%;
        background: #009e9c;
        color: #fff;
        margin-right: 20px;
        width: 80px;
        height: 80px;
        line-height: 24px;
        font-size: 16px;
        text-align: center;
        padding: 10px;
    }

    .step-item-content-number span {
        font-size: 34px;
        font-weight: bold;
    }

    .step-item-content-number-line {
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 2px;
        height: 300px;
        background: #009e9c;
    }

    .step-item-content-title {
        margin-right: 36px;
        flex-basis: 14vw;
        color: #009e9c;
        font-size: 24px;
        font-weight: bold;
    }

    .step-item-content-description {
        line-height: 24px;
        font-size: 16px;
        width: 30vw;
        font-weight: normal;
    }

    /* sec4 */

    /* sec5 */
    .sec5 {
        padding: 100px 0 70px 0;
    }

    .img-sec5 img {
        margin-top: 50px;
        width: 100%;
        height: auto;
    }

    /*  sec 6 */

    a.btn-rsv {
        display: block;
        width: 100%;
        height: 226px;
        margin: 50px auto 0;
        background-color: #fabe00;
        color: #181818;
        text-align: center;
        text-decoration: none;
        font-size: 26px;
        line-height: 40px;
        padding: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 70px;
        position: relative;
    }

    a.btn-rsv:hover {
        opacity: 0.7;
        transition: 0.3s;
    }

    .flex-rsv {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px
    }

    .rev-icon {
        width: 70px;
        height: auto;
    }

    .btn-text {
        font-weight: bold;
    }

    .mail {
        font-size: 26px;
        padding-top: 30px;
    }

    .flex-btn-arrow {
        display: inline-block;
        vertical-align: middle;
        color: #181818;
        line-height: 1;
        position: relative;
        width: 1.5em;
        height: 0.1em;
        background: currentColor;
        position: absolute;
        right: 4%;
    }

    .flex-btn-arrow::before {
        content: '';
        width: 0.65em;
        height: 0.65em;
        border: 0.1em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        transform: rotate(45deg);
        transform-origin: top right;
        position: absolute;
        top: 50%;
        right: -0.05em;
        box-sizing: border-box;
    }

    .text-sec6 {
        text-align: center;
        margin: 30px 0 100px 0;
    }

    /* sec6 */

}

@media screen and (max-width:768px) {
    /* 768px以下の画面サイズで適用されるスタイル */

    .sp {
        display: inline-block;
    }

    .tb {
        display: none;
    }

    .mv {
        display: none;
    }


    /* header */
    .wrapper {
        display: none;
    }

    /* header */

    /* mv */
    .mv-sp {
        display: block;
        width: 100%;
        height: auto;
    }


    /* sec1 */
    .sec1 {
        margin: 70px 0 70px 0;
        padding: 0 6vw 0 6vw;
    }

    .text-sec1 {
        font-size: 20px;
        font-weight: bold;
        line-height: 35px;
        text-align: center;
    }

    .flex-sec1 {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin-top: 50px;
    }

    .frame-sec1 {
        width: 36vw;
    }

    .frame-text-sec1 {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
    }

    .text-sec1-btm {
        color: #009e9c;
        font-size: 18px;
        text-align: right;
        padding-right: 50px;
    }

    /* sec1 */

    /* sec2 */
    .sec2 {
        background-color: #f1ffff;
        padding: 70px 0 70px 0;
    }

    .contents {
        width: 80vw;
        margin: 0 auto;
    }

    .sec-title {
        color: #fff;
        background-color: #099795;
        font-size: 20px;
        font-weight: bold;
        padding: 20px 0;
        text-align: center;
    }

    .table {
        border: 1px solid #181818;
        border-collapse: collapse;
        font-size: 16px;
        letter-spacing: 0.04em;
        margin: 30px 0 30px 0;
        width: 100%;
    }

    .table th,
    .table td {
        padding: 4px;
        border: 1px solid #181818;
        font-size: 16px;
        line-height: 24px;
    }

    .table th {
        background-color: #cceceb;
        text-align: left;
        width: 30%;
    }

    .table td {
        background-color: #fff;
        width: 74%;
    }

    .list-sec2 {
        font-size: 16px;
        letter-spacing: 0.04em;
    }

    ul.list-sec2 li {
        padding-bottom: 4px;
    }

    ul.list-sec2 li:last-of-type {
        padding-bottom: 0px;
    }

    a.btn {
        display: block;
        width: 80vw;
        height: 60px;
        margin: 50px auto 0;
        background-color: #fff;
        color: #009e9c;
        border: solid 3px #009e9c;
        border-radius: 50px;
        box-sizing: border-box;
        line-height: 58px;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        position: relative;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    a.btn::before,
    a.btn::after {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        content: "";
        vertical-align: middle;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    a.btn::before {
        right: 19px;
        width: 28px;
        height: 3px;
        background: #009e9c;
    }

    a.btn::after {
        right: 20px;
        width: 16px;
        height: 16px;
        border-top: 3px solid #009e9c;
        border-right: 3px solid #009e9c;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    a.btn:hover {
        background-color: #009e9c;
        color: #ffffff;
    }

    a.btn:hover::before {
        background: #ffffff;
    }

    a.btn:hover::after {
        border-top: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
    }

    /* sec3 */
    .sec3 {
        padding: 70px 0 70px 0;
    }

    .flex-sec3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        ;
        margin-top: 50px;
        gap: 30px;
    }

    .frame-sec3 {
        width: 36vw;
        text-align: center;
    }

    .flex-eq {
        flex-direction: column;
        padding-top: 5px;
    }

    .flex-icon {
        width: 26px;
        height: auto;
        margin-right: 10px;
        margin: 0 auto;
    }

    .flex-eq-wifi {
        width: 36vw;
        margin-top: 30px;
    }

    .flex-icon-wifi {
        width: 32px;
        height: auto;
        margin: 0 auto;
    }

    .text-sec3 {
        padding-top: 10px;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .center {
        text-align: center;
    }

    .frame-title-sec3 {
        display: inline-block;
        position: relative;
        border-bottom: 5px solid #ddd;
        padding: 2px 0;
        margin-top: 50px;
        font-size: 18px;
        font-weight: bold;
    }

    .frame-title-sec3:before {
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 34%;
        height: 5px;
        content: '';
        background: #099795;
    }

    .map {
        margin: 30px 0 30px 0;
    }

    .map img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }

    .flex-sec3-img {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 50px;
    }

    .img-sec3:first-of-type {
        margin-bottom: 30px;
    }

    .img-sec3 {
        width: 100%;
        height: auto;
    }

    .frame-text-sec3 {
        font-size: 16px;
        text-align: center;
        padding-top: 5px;
    }

    /* sec3 */

    /*sec4 */
    .sec4 {
        background-color: #f1ffff;
        padding: 70px 0 70px 0;
    }

    .inner {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
    }

    .step {
        margin-top: 50px;
    }

    .step-sp {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .step-item {
        border-top: 0;
    }

    .step-item:nth-of-type(1) {
        border-top: 0;
    }

    .step-item-content {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 30px;
        max-width: 1100px;
        align-items: center;
    }

    .step-item-content.one {
        padding-top: 0;
    }

    .step-item-content-number {
        position: relative;
        border-radius: 50%;
        background: #009e9c;
        color: #fff;
        width: 80px;
        height: 80px;
        line-height: 24px;
        font-size: 16px;
        text-align: center;
        padding: 10px;
    }

    .step-item-content-number span {
        font-size: 34px;
        font-weight: bold;
    }

    .step-item-content-number-line {
        display: none;
    }

    .step-item-content-title {
        color: #009e9c;
        font-size: 24px;
        font-weight: bold;
    }

    .step-item-content-description {
        line-height: 24px;
        font-size: 16px;
        width: 80vw;
        font-weight: normal;
        margin-top: 20px;
    }

    /* sec4 */

    /* sec5 */
    .sec5 {
        padding: 70px 0 70px 0;
    }

    .img-sec5 img {
        margin-top: 30px;
        width: 100%;
        height: auto;
    }

    /*  sec 6 */

    a.btn-rsv {
        display: block;
        width: 100%;
        height: 160px;
        margin: 50px auto 0;
        background-color: #fabe00;
        color: #181818;
        text-align: center;
        text-decoration: none;
        font-size: 20px;
        line-height: 35px;
        padding: 10px 10px 40px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 70px;
        position: relative;
        margin-top: 0;
    }

    a.btn-rsv:hover {
        opacity: 0.7;
        transition: 0.3s;
    }

    .flex-rsv {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px
    }

    .rev-icon {
        width: 36px;
        height: auto;
    }

    .btn-text {
        font-weight: bold;
    }

    .mail {
        font-size: 16px;
        line-height: 35px;
        padding-top: 6px;
    }

    .flex-btn-arrow {
        display: inline-block;
        vertical-align: middle;
        color: #181818;
        line-height: 1;
        position: relative;
        width: 1.5em;
        height: 0.1em;
        background: currentColor;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        bottom: 40px;
    }

    .flex-btn-arrow::before {
        content: '';
        width: 0.65em;
        height: 0.65em;
        border: 0.1em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        transform: rotate(45deg);
        transform-origin: top right;
        position: absolute;
        top: 50%;
        right: -0.05em;
        box-sizing: border-box;
    }

    .text-sec6 {
        text-align: center;
        margin: 30px 0 100px 0;
    }

    /* sec6 */

}