html[lang="ja"] {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    width: 100%;
}

/* body {
    display: block;
    word-wrap: break-word;
    text-size-adjust: 100%;
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    font-weight: 400;
    line-height: 1.5;
} */

main {
    max-width: 1480px;
    margin: auto;
    height: auto;
    margin-top: 30px;
}

/* @media (max-width: 552px) {
    main {
        min-width: 552px;
    }
} */

.wrapper {
    display: flex;
    justify-content: space-between;
    margin: auto;
    /* justify-content: space-around; */
    align-items: center;
    height: 115px;
    align-items: center;
    max-width: 1480px;
}



#main-header {
    position: fixed;
    top: 0;
    /* 上の余白をなくす */
    width: 100%;
    background-color: transparent;
    color: white;
    transition: background-color 1s ease;
    z-index: 1000;
}

#main-header.scrolled {
    /* background-color: rgba(0, 0, 0, 0.9); */
    background-color: #DCF5F5;
    /* スクロール時の背景色 */
}

h1 {
    color: black;
    margin: 0 65px;
}

@media (max-width: 928px) {
    h1 {
        margin-left: -33px;
    }
}

@media (max-width: 330px) {
    h1 {
        font-size: 20px;
        margin-left: -33px;
    }
}

h2 {
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 330px) {
    h2 {
        display: none;
    }
}

.h2-sp-only {
    display: none;
}

@media screen and (max-width: 330px) {
    .h2-sp-only {
        display: block;
        text-align: center;
        margin: 0;
    }
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0 98px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    padding: 20px;
}

.content {
    height: 2000px;
    /* スクロール可能な範囲を確保 */
}




/* ハンバーガーメニューここから */

@media (min-width: 929px) {

    .reserable-menu-ul,
    .hamburger-menu {
        display: none;
    }
}

@media (max-width: 928px) {

    .menu-btn {
        position: fixed;
        top: 27px;
        right: 13px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }

    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: black;
        position: absolute;
    }

    .menu-btn span:before {
        bottom: 8px;
    }

    .menu-btn span:after {
        top: 8px;
    }

    /* 三本線を「×」マーク */

    #menu-btn-check:checked~.menu-btn span {
        background-color: rgba(255, 255, 255, 0);
        /*メニューオープン時は真ん中の線を透明にする*/

    }

    #menu-btn-check:checked~.menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #menu-btn-check:checked~.menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #menu-btn-check {
        display: none;
    }



    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color: #3584bb;
    }

    .menu-content .reserable-menu-ul {
        padding: 35px 10px 0;
    }

    .menu-content .reserable-menu-ul .reserable-menu {
        border-bottom: solid 1px #a3e2e4;
        list-style: none;
    }

    .menu-content .reserable-menu-ul .reserable-menu a {
        display: block;
        /* width: 100%; */
        font-size: 24px;
        box-sizing: border-box;
        color: black;
        text-decoration: none;
        padding: 25px 15px 25px 0;
        position: relative;
    }


    .menu-content .reserable-menu-ul .reserable-menu a::before {
        content: "";
        width: 7px;
        height: 7px;
        /* border-top: solid 2px #ffffff; */
        /* border-right: solid 2px #ffffff; */
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 16px;
    }

    @media (max-width: 595px) {}



    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        /*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: #daf4f5;
        background: linear-gradient(to top, #daf4f5 0%, #daf4f5 95%, #f4fcfc 95%, #f4fcfc 100%);
        transition: all 0.5s;
        /*アニメーション設定*/
        text-align: center;
    }

    #menu-btn-check:checked~.menu-content {
        left: 0;
        /*メニューを画面内へ*/
    }


    .reserable-ul {
        background-color: #f4fcfc;
        z-index: -3;
        line-height: 3;
    }

    .reserable-li {
        text-align: start;
    }


    a.reserable-a {
        color: black;
        text-decoration: none;
        font-size: 32px;
        font-weight: 600;
    }


    .hamburger-app-btn-inr-text,
    .hamburger-app-btn-inr-text-bottom {
        position: relative;
        top: -66px;
        left: -10px;
        /* width: 84%; */
        font-size: 30px;
    }

    @media (max-width: 595px) {

        .hamburger-app-btn-inr-text,
        .hamburger-app-btn-inr-text-bottom {
            font-size: 20px;
            position: relative;
            top: -55px;
        }
    }

    .hamburger-app-btn-inr-text-bottom {
        font-size: 30px;
        position: relative;
        top: -94px;
        left: 34px;
    }

    @media (max-width: 595px) {

        .hamburger-app-btn-inr-text-bottom {
            font-size: 20px;
            position: relative;
            left: 29px;
            top: -71px;
        }
    }

    @media (max-width: 411px) {
        .hamburger-app-btn-inr-text-bottom {}
    }

    .hamburger-app-img {
        align-items: center;
        width: 58px;
        position: relative;
        left: -41px;
        bottom: -37px;
    }

    @media (max-width: 595px) {

        .hamburger-app-img {
            position: relative;
            left: -9px;
        }
    }

    .hamburger-app-btn {
        display: flex;
        /* display: ruby; */
        justify-content: center;
        align-items: center;
        /* padding: 34px 102px; */
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
        justify-content: center;
        margin: auto;
        border-radius: 100vh;
        background-color: white;
        cursor: pointer;
        align-items: center;
        text-decoration: none;
        font-size: 1.6rem;
        font-weight: 700;
        /* line-height: 4; */
        width: 42%;
        color: #28a745;
        border: 2px solid #28a745;
        transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        /* height: 60px; */
        font-size: 35px;
        width: 62%;
        height: 112px;
        margin-top: 30px;
        box-shadow: 0px 9px 5px rgba(74, 74, 74, 0.1);
    }

    @media (max-width: 595px) {

        .hamburger-app-btn {
            width: 80%;
        }
    }

}

@media (max-width: 929px) {

    nav ul,
    .hamburger-app-btn {
        display: none;
    }
}





/*  html 新しく作ったもの */
/*====================================================*/
.p-features-ttl-main {
    font-weight: bold;
    display: block;
}

@media only screen and (max-width: 768px) {
    .p-features-ttl-main {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 769px) {
    .p-features-ttl-main {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media print,
screen and (min-width: 910px) {
    .p-features-ttl-main {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

@media only screen and (min-width: 1080px) {
    .p-features-ttl-main {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 768px) {
    .p-features-ttl-main sup {
        font-size: 10px;
        font-size: 1rem;
    }
}

@media only screen and (min-width: 769px) {
    .p-features-ttl-main sup {
        font-size: 12px;
        font-size: 1.2rem;
    }
}


/* @media only screen and (max-width: 768px) {
    .p-mv {
        background: url("../images/reserable/パス 2.png") no-repeat 0 0;
        background-size: auto 1040px;
        padding-bottom: 40px;
        z-index: 2;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv {
        background: url("../images/reserable/パス 2.png") no-repeat 50% 100%;
        background-size: cover;
        height: 430px;
        padding-top: 50px;
        z-index: 2;
    }
} */
@media only screen and (max-width: 768px) {
    .p-mv {
        background: url("../images/reserable/パス 2.png"), url("../images/reserable/パス 1.png") no-repeat 0 0;
        background-size: auto 1480px;
        padding-bottom: 40px;
        z-index: 2;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv {
        background: url("../images/reserable/パス 2.png"), url("../images/reserable/パス 1.png") no-repeat 50% 100%;
        background-size: cover;
        height: 430px;
        padding-top: 50px;
        z-index: 2;
    }
}




/* @media only screen and (max-width: 768px) {
    .p-mv .cover-overlay2 {
        background: no-repeat url("../images/reserable/パス 1.png")no-repeat 0 0;
        background-size: auto 514px;
        padding-bottom: 40px;
        z-index: 1;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv .cover-overlay2 {
        background: no-repeat url("../images/reserable/パス 1.png")no-repeat 50% 100%;
        background-size: cover;
        height: 430px;
        padding-top: 50px;
        z-index: 1;
    }
} */

@media print,
screen and (min-width: 910px) {
    .p-mv .cover-overlay2 {
        height: 600px;
        padding-top: 160px;
    }
}

@media only screen and (min-width: 1080px) {
    .p-mv .cover-overlay2 {
        height: 760px;
        padding-top: 200px;
    }
}

@media only screen and (max-width: 768px) {
    .p-mv-inr {
        margin: 0 25px;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv-inr {
        margin: 0 30px;
        position: relative;
    }
}

@media only screen and (min-width: 1080px) {
    .p-mv-inr {
        width: 100%;
        max-width: 1200px;
        padding: 0 50px;
        margin: 0 auto;
    }
}

.p-mv-ttl {
    color: #fff;
    font-weight: bold;
    line-height: 1.5;
    opacity: 1;
    position: relative;
    left: 1%;
    bottom: -51px;
    text-align: start;
    font-size: 40px;
}

@media only screen and (max-width: 768px) {
    .p-mv-ttl {
        display: none;
    }
}


@media only screen and (min-width: 769px) {
    .p-mv-ttl {
        /* font-size: 28px; */
        /* padding: 0 0 30px; */
        font-size: 20px;

    }
}

@media only screen and (max-width: 440px) {
    .p-mv-ttl {
        font-size: 15px;
        /* padding: 0 0 30px; */
    }
}

@media print,
screen and (min-width: 910px) {
    .p-mv-ttl {
        font-size: 22px;
        /* padding: 20px 0 50px; */
    }
}

@media only screen and (min-width: 1080px) {
    .p-mv-ttl {
        font-size: 31px;
        /* padding: 30px 0 90px; */
    }
}

.p-mv-img {
    border-radius: 20px;
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.3);
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .p-mv-img {
        width: 80%;
        max-width: 350px;
        margin: 0 auto;
        position: relative;
        top: 50px;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv-img {
        width: 290px;
        position: absolute;
        top: 0;
        right: -50px;
    }
}

@media print,
screen and (min-width: 910px) {
    .p-mv-img {
        width: 340px;
    }
}

@media only screen and (min-width: 1080px) {
    .p-mv-img {
        width: 460px;
        right: -50px;
    }
}

.p-mv-img img {
    width: 100%;
}

.p-mv-industry {
    overflow: hidden;
    opacity: 1;
    position: relative;
    left: -5%;
}

@media only screen and (min-width: 769px) {
    .p-mv-industry {
        width: calc(100% - 290px - 30px);
    }
}

@media print,
screen and (min-width: 910px) {
    .p-mv-industry {
        width: calc(100% - 340px - 50px);
    }
}

@media only screen and (min-width: 1080px) {
    .p-mv-industry {
        width: 490px;
    }
}

.p-mv-lead {
    line-height: 1.2;
    padding: 0 5px;
}

@media only screen and (max-width: 768px) {
    .p-mv-lead {
        font-size: 18px;
        font-size: 1.8rem;
        text-align: center;
        margin: 1.75em 0 .5em;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv-lead {
        font-size: 16px;
        font-size: 1.6rem;
        color: #031f88;
    }
}

@media print,
screen and (min-width: 910px) {
    .p-mv-lead {
        text-align: center;
    }

    .p-mv-lead br {
        display: none;
    }
}

@media only screen and (min-width: 1080px) {
    .p-mv-lead {
        font-size: 17px;
        font-size: 1.7rem;
    }
}

.p-mv-num {
    color: #031f88;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

@media only screen and (max-width: 768px) {
    .p-mv-num {
        font-size: 28px;
        font-size: 2.8rem;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv-num {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

@media only screen and (min-width: 1080px) {
    .p-mv-num {
        font-size: 28px;
        font-size: 2.8rem;
    }
}

.p-mv-industry-list {
    display: flex;
    flex-wrap: wrap;
    letter-spacing: -.05em;
    white-space: nowrap;
}

.p-mv-industry-list li {
    margin-top: 10px;
}

@media only screen and (max-width: 768px) {
    .p-mv-industry-list li {
        width: calc((100% - 15px) / 2);
    }

    .p-mv-industry-list li:nth-child(odd) {
        margin-right: 15px;
    }
}

@media only screen and (min-width: 769px) {
    .p-mv-industry-list li {
        width: calc((100% - 21px) / 3);
    }

    .p-mv-industry-list li:not(:nth-child(3n)) {
        margin-right: 10px;
    }
}

@media print,
screen and (min-width: 910px) {
    .l-header {
        opacity: 1;
        top: -50px;
        transition: none;
    }
}

.is-anime.p-mv-img {
    opacity: 1;
    transition: 1.5s;
}

@media only screen and (max-width: 768px) {
    .is-anime.p-mv-img {
        top: 0;
    }
}

@media only screen and (min-width: 769px) {
    .is-anime.p-mv-img {
        right: 0;
    }
}

@media only screen and (min-width: 1080px) {
    .is-anime.p-mv-img {
        right: 50px;
    }
}

.is-anime.p-mv-ttl {
    transition: 1s;
    opacity: 1;
    left: 0;
}

.is-anime.p-mv-industry {
    transition: 1s;
    opacity: 1;
    left: 0;
}

@media print,
screen and (min-width: 910px) {
    .is-anime.l-header {
        transition: .8s;
        opacity: 1;
        top: 0;
    }
}

.p-clients {
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .p-clients {
        padding: 30px 0 0;
    }
}

@media only screen and (min-width: 769px) {
    .p-clients {
        padding: 60px 0 0;
    }
}

@media only screen and (max-width: 768px) {
    .p-clients-ttl {
        width: 103px;
        margin: 0 auto 30px;
    }
}

@media only screen and (min-width: 769px) {
    .p-clients-ttl {
        width: 50%;
        max-width: 600px;
        margin: 0 0 30px;
    }

    .p-clients {
        padding: 30px 0 0;
    }
}

.p-clients-ttl img {
    width: 100%;
}

.p-clients-list.slick-slider {
    display: none;
}

.p-clients-list.slick-initialized.slick-slider {
    display: block
}


@media only screen and (max-width: 768px) {
    .p-clients-list {
        margin: 0 -50px 50px;
    }
}

@media only screen and (min-width: 769px) {
    .p-clients-list {
        margin: 0 0 60px;
    }
}

.p-clients-list .slick-slide {
    margin: 0 10px;
    pointer-events: auto;
}

.p-clients-list .slick-slide>div {
    height: 70px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.p-clients-list .slick-slide a {
    height: 70px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}


/* 101~126*/
/*====================================================*/


.cover-area {
    max-width: 1480px;
    margin: auto;
    position: relative;
    top: 0px;
    height: 68vw;
    margin-bottom: 20px;
    width: 100%;
    background: no-repeat url("../images/reserable/パス 1.png");
}



.cover-area .cover-overlay {
    margin: auto;
    top: 0px;
    height: 100vw;
    width: 100%;
    margin-bottom: 20px;
    background: no-repeat url("../images/reserable/パス 2.png");
}


.link-button {
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1480px;
    height: 100vh;
    z-index: 4;
    align-items: center;
}

.link-button-grid-item {
    display: flex;
    justify-content: space-around;
}

@media (max-width: 1430px) {
    .link-button-grid-item {
        position: relative;
        top: 90px;
    }
}

.household_square_button,
.p-mv-top1 {
    width: 100%;
    text-align: left !important;
    font-size: 1rem;
    height: 60px;
}

.lefticon {
    /* position: relative; */
    /* transform: translateY(282%) translateX(6%); */
    margin-left: 37px;
}

a.p-mv-btn1 {
    /* display: block;
    padding-left: calc(1.5rem + 31px + 20px);
    height: 60px;
    width: 100%;*/
    position: absolute;
    /* line-height: 3; */
    padding: 10px 40px;
    background-color: #25c7ab;
    color: #fff;
    /* ボタンのテキスト色 */
    text-decoration: none;
    font-size: 45px;
    font-weight: bold;
    letter-spacing: 10px;
}

@media (max-width: 505px) {
    a.p-mv-btn1 {
        width: 58%;
        font-size: 28px;
        display: flex;
        justify-content: center;
    }
}

.img-area {
    text-align: center;
    position: relative;
    top: 186px;
}

.img-area img {
    max-width: 82%;
    height: auto;
}

/* 1430px以下の幅で画像が縦になるように調整 */
@media (max-width: 1430px) {
    .img-area {
        position: relative;
        /* top: 373px; */
    }
}

.p-mv-ttl1 {
    text-align: left;
    flex-direction: column;
    justify-content: start;
    text-align: left;
    z-index: 4;
    font-size: 30px;
    color: white;
}

.p-mv-lead1 {
    font-size: 18px;
    color: #fff;
    transform: translateY(146%) translateX(0%);
    padding-top: 11px;
}


/* 料金
====================================================*/

#pricing {
    /* display: flex; */
    /* justify-content: center; */
    /* justify-content: space-between; */
    /* padding: 20px; */
    text-align: center;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 90px;
    /* background: linear-gradient(180deg, white, white 50%, #f5f5f5 50%, #f5f5f5 100%); */
    /*position: relative;*/
}


@media (max-width: 690px) {
    .pricing-img {
        margin: auto;
        width: 50%;
    }

}

/* @media (max-width: 1430px) {
    #pricing {
        margin-top: 90px;
    }
}

@media (max-width: 1270px) {
    #pricing {
        margin-top: 190px;
    }
}

@media (max-width: 1096px) {
    #pricing {
        margin-top: 290px;
    }
}

@media (max-width: 975px) {
    #pricing {
        margin-top: 290px;
    }
} */

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;    
    margin-bottom: 90px;        
}

.additional-container {
    height: 200px;
}

.additional-container::after {
    height: 60%;
    content: '';
    display: block;
    top: -420px;
    left: 0;
    width: 100%;
    height: 550px;
    position: relative;
    background-color: #f5f5f5;    
    z-index: -1;
}


@media (max-width: 1449px) {
    .additional-container::after {
        height: 75%;
        content: '';
        display: block;
        top: -420px;
        left: 0;
        width: 100%;
        height: 550px;
        position: relative;        
        background-color: #f5f5f5;
        z-index: -1;
    }
}

.pricing-container .pricing-container-item {
    width: 40%;
}

@media (max-width: 768px) {
    .pricing-container .pricing-container-item {
        width: 100%;
    }
}


.pricing-container .pricing-img {    
    width: 100%;
}

.pricing-ttl {        
    margin: 0 auto;    
    margin-bottom: 20px;
}

@media (max-width: 1429px) {
    .pricing-ttl {
        font-size: 25px;
        font-weight: 600;
    }
}

.pricing-ttl-p {
    /* display: grid;
    place-items: center; */
    display: flex;
    justify-content: center;
    width: 100%;
}

.additional-info {
    display: inline-block;
    font-size: 25px;
    background-color: #a0f4e4;
    line-height: 2;
    letter-spacing: 5px;
    margin: 6px auto;
    padding: 0 39px
}

@media (max-width: 768px) {
    .additional-info {
        font-size: 14px;
    }
}

/* .two-box { */
/* display: inline-block; */
/* display: flex;
    justify-content: center;
}
/*
.price-option {
    line-height: 15;
    border: 1px solid #ddd;
    padding: 10px;
    width: 30%;
    margin-right: 20px;
}


a.btn { */
/* display: flex; */
/* position: relative; */
/* display: inline-block; */
/* justify-content: center;
    display: block;
    margin: auto;
    border-radius: 100vh;
    background-color: #ACCEF7;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    width: 70%;
    color: white;
    text-align: center;
} */

/* .additional-cost {
    margin-top: 40px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 5px;
    line-height: 2;
} */

/* span.additional-cost-1,
span.additional-cost-2 {
    background: aquamarine;
    padding: 7px 10px;
} */

/* 主な機能　３つ
====================================================*/

#feature-introduction h2 {
    margin-bottom: 20px;
}

ul.p-function-main {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

li.p-function-main-item {
    list-style-type: none;
    margin: 0;
    width: 100%;
}

@media (min-width: 520px) {
    li.p-function-main-item {
        width: 50%;
    }
}

@media (min-width: 1025px) {
    li.p-function-main-item {
        width: 33%;
    }
}

.p-function-main-img img {
    margin: 0;
    /* border-radius: 20px; */
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
}

@media (max-width: 1430px) {
    .p-function-main-img {
        margin-top: 50px;
    }
}

.p-function-main-ttl {
    margin-left: 42px;
    margin-bottom: 0;
    font-size: 20px;
}

@media (max-width: 520px) {
    .p-function-main-ttl {
        display: none;
    }
}

.p-function-main-ttl-sa-only {
    display: none;
}

@media (max-width: 520px) {
    .p-function-main-ttl-sa-only {
        display: block;
        margin-left: 42px;
        margin-bottom: 0;
        font-size: 20px;
    }
}

@media (max-width: 1430px) {
    .p-function-main-ttl {
        font-size: 23px;
        margin-bottom: 15px;
    }
}

.p-function-main-ttl-sp-only {
    display: none;
}

@media (max-width: 765px) {
    .p-function-main-ttl-sp-only {
        display: block;
        /* margin-left: 46px; */
        /* margin: 0 42px; */
        font-size: 15px;
        line-height: 1.8;
    }
}

.p-function-main-text {
    margin-left: 46px;
    margin: 0 42px;
    font-size: 15px;
}

@media (max-width: 765px) {
    .p-function-main-text {
        display: none;
    }
}


.p-function-main-text-sp-only {
    display: none;
}

@media (max-width: 765px) {
    .p-function-main-text-sp-only {
        display: block;
        /* margin-left: 46px; */
        /* margin: 0 42px; */
        margin-left: 46px;
        margin: 0 42px;
        font-size: 15px;
    }
}

/* 機能のコンテナ
====================================================*/

section#feature-introduction-container {
    /* width: 100%; */
    /* display: flex;
    justify-content: center; */
    background-color: #d1f0f0;
}

.feature-introduction-ttl-p {
    display: flex;
    justify-content: center;
}

@media (max-width: 365px) {
    .introduction-of-features {
        width: 80%;
    }
}

.container-list div {
    width: 440px;
}



.container-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* コンテナの最大幅を指定 */
    width: 100%;
    max-width: 1500px;
    margin: 70px auto;
    padding: 70px 0;
}

.container-list>* {
    /* flex: 0 0 33.3333%; */
}

dt.container-number {
    background-color: #25c7ab;
    color: white;
    padding: 10px;
}

dl {
    /* border: 4px solid #3a59c4; */
    background-color: white;
    /* border-radius: 8px; */
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    flex: 1;
    margin: 10px 10px;
    height: 455px;
}

@media (max-width: 423px) {
    dl {
        height: auto;
        max-height: 512px;
        overflow-y: auto;
    }
}

.container-list-ttl {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 22px;
}

.container-list-explanatioin {
    font-size: 20px;
    font-weight: 100;
    text-align: left;
    margin: 22px 20px 0px 20px;
    letter-spacing: 3px;
    line-height: 1.5;
}

.container-list-explanatioin-icon {
    margin: 0 auto;
}




/* ご利用の流れ
====================================================*/
#process {
    text-align: center;
}


.process-step-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -25px;
}

@media (max-width: 1000px) {
    .process-step-container {
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
    }
}

.process-step {
    width: 25%;
    line-height: 1;
    border: 3px solid #25c7ab;
    border-radius: 15px;
}

@media (max-width: 1000px) {
    .process-step {
        width: 70%;
    }
}

.process-ttl-sub {

}

.arrow {
    font-size: 24px;
    padding: 0 25px
}

@media (max-width: 1000px) {
    .arrow {
        width: 100%;
        transform: rotate(90deg);
    }
}

.process-ttl {    
    margin-bottom: 40px;
    margin-top: 10px;
}

@media (max-width: 1430px) {
    .p-function-main-ttl {
        font-size: 22px;
    }
}

.process-step-ttl-number {
    color: #25c7ab;
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 600;
}

.process-step-ttl {
    font-size: 30px;
    margin-top: 25px;
    margin-bottom: 20px;
    /* font-weight: 100; */
}



/* フッター
====================================================*/

/* .footer-app {
    width: 100%;
} */

/* .footer-app-btn {
    justify-content: center;
    display: block;
    margin: auto;
    border-radius: 100vh;
    background-color: #ACCEF7;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    width: 70%;
    color: white;
    text-align: center;
}

.footer-app-container {
    background-color: #25c7ab;
} */

.footer-app {
    width: 100%;
    margin-top: 100px;
    position: absolute;
    align-items: center;

}

div.footer-app-container {
    position: relative;
    text-align: center;
    background-image: url("../images/reserable/hands-touching-smartphone.png");
    background-color: rgba(87, 203, 199, 0.4);
    background-size: cover;
    z-index: 2;
    justify-content: center;
    width: 100%;
    height: 100%;
}

div.footer-app-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(87, 203, 199, 0.8);
    z-index: -1000;
    /* 背景色を背景画像の下に配置 */
    pointer-events: none;
    /* イベントを無視 */
    border-radius: inherit;
    /* ボーダー半径を継承 */
}

.footer-app-title {
    padding-top: 100px;
    padding-bottom: 30px;
}

.footer-app-btn {
    display: flex;
    /* display: ruby; */
    justify-content: center;
    align-items: center;
    /* padding: 34px 102px; */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    justify-content: center;
    margin: auto;
    border-radius: 100vh;
    background-color: white;
    cursor: pointer;
    align-items: center;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 5;    
    color: #28a745;
    border: 2px solid #28a745;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;    
    
    min-width: 340px;
    width: 60%;
    height: 100px;
    position: relative;
    top: -42px;
}

.footer-app-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}




.footer-app-btn-inr-text {
    position: relative;
    /*top: -22px;*/
    width: 84%;
}

@media (max-width: 850px) {
    .footer-app-btn {
        width: 70%;
    }
    .footer-app-btn-inr-text {
        font-size: 19px;
        position: relative;
        top: -1px;
    }
}

@media (max-width: 550px) {    
    .footer-app-btn {
        width: 70%;
    }
    .footer-app-btn-inr-text {
        font-size: 19px;
    }
}

@media (max-width: 325px) {
    .footer-app-btn-inr-text {
        font-size: 15px;
    }
}


.footer-app-img {
    /* display: flex; */
    align-items: center;
    width: 80px;
    position: relative;
    left: -40px;
    bottom: -28px;
}

@media (max-width: 1214px) {
    img.footer-app-img {
        left: -8px;
    }
}

@media (max-width: 850px) {
    .footer-app-img {
        width: 50px;
        bottom: -17px;
    }
}



.footer-ttl-from {
    color: rgb(102, 249, 200);
    /* font-weight: 600; */
    font-size: 26px;
    margin: 0;
    color: white;
    position: relative;
    top: 19px;
}

.footer-ttl {    
    margin-bottom: 65px;
    margin-top: 10px;
    color: white;
}

@media (max-width: 850px) {
    .footer-ttl-from {
        font-size: 15px;
    }
}

@media (max-width: 850px) {
    .footer-ttl {
        font-size: 25px;
    }
}

@media (max-width: 410px) {
    .footer-ttl-from {
        font-size: 10px;
    }
}

@media (max-width: 410px) {
    .footer-ttl {
        font-size: 20px;
    }
}


/* 著作権 */


.footer-app-container-copy {
    background-color: #5c958a;
    padding: 10px;
    text-align: center;
}

.footer-app-p {
    margin-top: 10px;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    width: 97%;
}



@media (max-width: 1463px) {}