@charset "UTF-8";
#first_view {
    height: 37vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#first_view .txt_box {
    width: 35vw;
    max-width: 500px;
    text-align: center;
}

#first_view .txt_box .catch {
    display: inline-block;
    font-size: max(1.8vw,16px);
    background: var(--gd);
    color: white;
    line-height: 1;
    padding: 0.3em 1.5em 0.4em;
    border-radius: 1em;
    letter-spacing: 0.15em;
}

#first_view .txt_box .catch span {
    font-size: 85%;
}

#first_view .txt_box img {
    width: 100%;
    margin: 2.5vw 0;
}

#first_view .txt_box h1 .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#first_view .txt_box .copy {
    font-size:max(1.2vw,13px);
    line-height: 2.2;
}

#first_view .img_box {
    width: 55vw;
    height: 27.5vw;
    position: relative;
}

#first_view .img_box img {
    height: 100%;
}

#first_view .img_box .bace {
    width: 100%;
}

#first_view .img_box .item1,#first_view .img_box .item2,#first_view .img_box .item3 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    animation-name: fadein_fv;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-direction: normal;
    opacity: 0;
}

#first_view .img_box .item1 {
    animation-delay: 0.4s;
}

#first_view .img_box .item2 {
    left: auto;
    right: 0;
    animation-delay: 0.7s;
}

#first_view .img_box .item3 {
    animation-delay: 1s;
}

@keyframes fadein_fv {
    0% {
        opacity: 0;
        transform:translate(0px,-3vw);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0vw);
    }
}

#first_view .air {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url(../img/wave_bg.svg);
    background-size: 1000px 100px;
    z-index: 0;
}

#first_view .air.air1 {
    animation: wave 40s linear infinite;
    z-index: -1;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

#first_view .air.air2 {
    animation: wave2 30s linear infinite;
    z-index: -2;
    opacity: 0.4;
    animation-delay: -5s;
    bottom: 10px;
}

#first_view .air.air3 {
    animation: wave 60s linear infinite;
    z-index: -3;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
}

#first_view .air.air4 {
    animation: wave2 10s linear infinite;
    z-index: -4;
    opacity: 0.6;
    animation-delay: -5s;
    bottom: 20px;
}

@keyframes wave {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;   }
}

@keyframes wave2 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: -1000px;   }
}

#overview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3vw;
}

#overview img {
    width: 30vw;
    max-width: 400px;
}

#overview p {
    width: 45vw;
    text-align: justify;
    font-size: max(0.9vw,12px);
    line-height: 2;
    letter-spacing: 0.1em;
    background: white;
    padding: 2vw;
    border: 2px solid var(--sub);
    border-radius: 10px;
}

#overview p span {
    display: block;
    font-size:max(2vw,16px);
    line-height: 1.5;
    margin-bottom: 0.5em;
    color: var(--sub);
    text-align: center;
}

@media screen and (max-width: 767px) {
    #first_view {
        height: auto;
        flex-wrap: wrap;
        padding: 5vw;
    }

    #first_view .txt_box {
        width: 100%;
    }

    #first_view .txt_box .catch {
        font-size: max(2vw, 14px);
    }

    #first_view .txt_box img {
        width: 100%;
        max-width: 300px;
        margin: 5vw auto;
    }

    #first_view .txt_box .copy {
        font-size: max(1.2vw, 13px);
        line-height: 2;
    }

    #first_view .img_box {
        width: 90vw;
        height: 45vw;
        margin-top: 5vw;
    }

    #overview {
        padding-bottom: 5vw;
        flex-direction: column-reverse;
    }

    #overview img {
        width: 50vw;
        margin-top: 3vw;
    }

    #overview p {
        width: 80vw;
        padding: 4vw;
        border: 1px solid var(--main);
    }

    #overview p span {
        font-size:max(3.5vw,16px);
    }
}

/*===========================================
       特徴設定
===========================================*/
#point_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vw 0;
}

#point_list li {
    width: 70vw;
    background-color: var(--bg2);
    padding: 1vw 2vw;
    display: flex;
    align-items: center;
    position: relative;
    gap: 5%;
}

#point_list li .number {
    position: absolute;
    top: -0.5em;
    left: 0.5em;
    font-size: max(3vw, 24px);
    color: var(--sub);
    line-height: 1;
}

#point_list li img {
    width: 30%;
}

#point_list li dl {
    width: 65%;
}

#point_list li dl h3 {
    font-size: max(1.7vw, 20px);
    line-height: 1.5;
    letter-spacing: 0.1em;
    opacity: 0;
}

#point_list li dl dd {
    margin-top: 1em;
    font-size: max(1.2vw, 14px);
    text-align: justify;
    opacity: 0;
}

#point_list li.on dl h3,#point_list li.on dl dd {
    animation-name: fadein_point;
    animation-fill-mode: forwards;
    animation-duration: 0.7s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: normal;
}

#point_list li.on dl dd {
    animation-delay: 0.3s;
}

@keyframes fadein_point {
    0% {
        opacity: 0;
        transform:translate(0px,20px);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0px);
    }
}

@media screen and (max-width: 767px) {
    #point_list {
        gap: 7vw 0;
    }

    #point_list li {
        width: 85vw;
        padding: 4vw;
        flex-wrap: wrap;
        gap: 5%;
    }

    #point_list li img {
        width: 60%;
        margin: 0 auto 10px;
    }

    #point_list li dl {
        width: 100%;
    }

    #point_list li dl h3 {
        font-size: max(2vw, 16px);
    }

    #point_list li dl dd {
        font-size: max(1.1vw, 13px);
    }
}

/*===========================================
       機能設定
===========================================*/
#function_list {
    width: 90%;
    margin: 0 auto;
}

#function_list li {
    display: flex;
    align-items: center;
    gap: 5%;
}

#function_list li:not(:last-child) {
    margin-bottom: 5vw;
}

#function_list li:nth-child(2n) {
    flex-direction: row-reverse;
}

#function_list li .txt_box {
    width: 50%;
}

#function_list li img {
    width: 45%;
    height: auto;
    opacity: 0;
}

#function_list li:nth-child(2n-1).on img {
    animation-name: fadein_func1;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: normal;
}

@keyframes fadein_func1 {
    0% {
        opacity: 0;
        transform:translate(-50px,0px);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0px);
    }
}

#function_list li:nth-child(2n).on img {
    animation-name: fadein_func2;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-direction: normal;
}

@keyframes fadein_func2 {
    0% {
        opacity: 0;
        transform:translate(50px,0px);
    }

    100% {
        opacity: 1;
        transform:translate(0px,0px);
    }
}

#function_list li .txt_box .funcnum {
    font-size: max(1.5vw, 18px);
    color: var(--sub);
    display: flex;
    align-items: center;
    gap: 0.3em;
    position: relative;
    line-height: 1;
}

#function_list li .txt_box .funcnum .oswald {
    font-size: 200%;
}

#function_list li .txt_box .funcnum::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: var(--sub);
    margin-left: 0.5em;
}

#function_list li .txt_box h3 {
    font-size: max(1.5vw, 24px);
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin: 1em 0 0.5em;
}

#function_list li .txt_box .txt {
    font-size: max(1vw, 14px);
    text-align: justify;
}

@media screen and (max-width: 767px) {
    #function_list {
        width: 90%;
    }

    #function_list li {
        flex-wrap: wrap;
    }

    #function_list li:not(:last-child) {
        margin-bottom: 10vw;
    }

    #function_list li:nth-child(2n) {
        flex-direction: row;
    }

    #function_list li .txt_box {
        width: 100%;
    }

    #function_list li img {
        width: 100%;
        margin: 5vw auto 0;
    }

    #function_list li .txt_box .funcnum {
        font-size: max(2vw, 16px);
    }

    #function_list li .txt_box h3 {
        font-size: max(1.6vw, 16px);
    }

    #function_list li .txt_box .txt {
        font-size: max(1.1vw, 13px);
    }
}

/*===========================================
       料金設定
===========================================*/
.price_dl {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    font-size: max(1.3vw, 16px);
    padding: 0 3vw;
}

.price_dl:first-of-type {
    align-items: flex-end;
    padding-bottom: 1em;
    margin-bottom: 1.5em;
    border-bottom: 2px solid var(--sub);
}

.price_dl:last-of-type {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px dotted var(--sub);
}

.price_dl > dt {
    width: 30%;
    letter-spacing: 0.1em;
    padding-top: 0.5em;
}

.price_dl > dd {
    width: 70%;
}

.price_dl > dd .p_txt {
    text-align: right;
    color: var(--accent);
}

.price_dl > dd .p_txt .oswald {
    font-size: 150%;
}

.price_inner_dl {
    display: flex;
    align-items: flex-end;
    line-height: 1.2;
    padding: 0 0em 0 1em;
    text-align: justify;
}

.price_inner_dl:not(:last-of-type) {
    border-bottom: 1px dotted var(--sub);
    margin-bottom: 0.6em;
    padding-bottom: 0.6em;
}

.price_inner_dl dt {
    width: 70%;
}

.price_inner_dl dd {
    width: 30%;
}

.price_inner_dl dd .p_txt {
    color: var(--sub);
}

.kome_box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 95%;
    margin: 0 auto;
    gap: 5%;
}

.kome_box img {
    width: 20%;
}

.kome_list {
    width: 60%;
    margin-top: 3vw;
}

.kome_list li {
    text-indent: -1.2em;
    padding-left: 1.2em;
    font-size: max(1vw, 15px);
    line-height: 1.5;
    color: #555;
}

.kome_list li:before {
    content: "※";
    margin-right: 0.2em;
}

.kome_list li:not(:last-of-type) {
    margin-bottom: 0.5em;
}

/*-- 比較 --*/
#hikaku {
    background-color: var(--bg2);
    padding: 3vw;
    margin-top: 5vw;
}

#hikaku h3 {
    font-size: max(1.8vw, 18px);
    text-align: center;
    margin-bottom: 1em;
    letter-spacing: 0.1em;
}

#hikaku table {
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
}

#hikaku table th,#hikaku table td {
    padding: 1em 0.5em;
    text-align: center;
    line-height: 1.3;
    font-size: max(1vw, 14px);
    vertical-align: middle;
    font-weight: normal;
    background-color: white;
}

#hikaku table thead th {
    background-color: var(--main);
    color: white;
}

#hikaku table thead th:nth-child(n+4) {
    background-color: var(--sub);
}

#hikaku table thead th:first-child {
    background: none;
}

#hikaku table thead th span {
    font-size: 90%;
    display: block;
}

#hikaku table tbody th {
    background-color: #ddd;
}

#hikaku table tbody tr:first-child {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

#hikaku table tbody tr:first-child th {
    background-color: var(--accent);
    color: white;
    font-weight: bold;
}

#hikaku table tbody tr:first-child td {
    text-decoration: underline;
    text-decoration-color: #fff697;
    text-decoration-thickness: 5px;
    text-decoration-skip-ink: none;
    text-underline-offset: -2px;
}

#hikaku table tbody td span.noto5 {
    font-size: 90%;
}

#hikaku .kome {
    font-size: max(1vw, 12px);
    color: #777;
    text-align: right;
    margin-top: 0.5em;
}

#hikaku .kome:before {
    content: "※";
    margin-right: 0.2em;
}

@media screen and (max-width: 767px) {
    .price_dl {
        width: 100%;
        font-size: max(2vw, 14px);
        padding: 0 3vw;
    }

    .price_dl > dd .p_txt .oswald {
        font-size: 130%;
    }

    .price_inner_dl {
        padding: 0 0em 0 0.5em;
    }

    .price_inner_dl:not(:last-of-type) {
        margin-bottom: 0.6em;
        padding-bottom: 0.6em;
    }

    .price_inner_dl dt {
        width: 60%;
    }

    .price_inner_dl dd {
        width: 40%;
    }

    .kome_box {
        width: 95%;
        gap: 5%;
    }

    .kome_box img {
        width: 25%;
    }

    .kome_list {
        width: 70%;
        margin-top: 5vw;
    }

    .kome_list li {
        font-size: max(1.6vw, 12px);
    }
    
    /*-- 比較 --*/
    #hikaku {
        padding: 3vw;
    }

    #hikaku h3 {
        font-size: max(2.4vw, 15px);
    }
    
    #table_wrap {
        overflow-x: auto;
        width: 100%;
    }

    #hikaku table {
        width: 200%;
        overflow-x: scroll;
    }

    #hikaku table th,#hikaku table td {
        font-size: max(2vw, 12px);
    }

    #hikaku table thead th:first-child {
        background-color: var(--bg2);
        position: sticky;
        top: 0;
        left: 0;
    }

    #hikaku table tbody th {
        background-color: #ddd;
        position: sticky;
        top: 0;
        left: 0;
    }

    #hikaku .kome {
        font-size: max(1vw, 12px);
    }
}

/*===========================================
       cta設定
===========================================*/
.cta {
    background: var(--gd);
    padding: 60px 20px;
}

.cta .txt {
    text-align: center;
    color: #ff7;
    font-size: max(1.7vw, 15px);
    letter-spacing: 0.3em;
    line-height: 1;
    margin-bottom: 1.5em;
}

.cta div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}

.cta div img {
    width: 330px;
}

.cta div .btn {
    text-align: center;
    background: white;
    line-height: 1;
    padding: 0.6em 5em 0.7em;
    font-size: max(1.2vw, 15px);
    border-radius: 20px;
    color: var(--main);
    letter-spacing: 0.1em;
    transition: all 0.2s;
}

.cta div .btn:hover {
    background-color: #ff7;
}

@media screen and (max-width: 767px) {
    .cta {
        padding: 40px 20px;
    }

    .cta .txt {
        font-size: max(3vw, 13px);
        margin-bottom: 2em;
    }

    .cta div {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 7vw;
    }

    .cta div img {
        width: 250px;
    }

    .cta div .btn {
        font-size: max(2vw, 15px);
    }
}