@charset "UTF-8";

/*PCサイズレスポンシブ*/
@media(min-width:1000px) {

    body {
        min-width: 1000px;

    }

    .container {
        width: 100%;
        height: auto;
        color: #5d5c5c;
    }

    .header {
        width: 100%;
        height: 130px;
    }

    .header img {
        width: 10%;
        height: 100%;
        object-fit: cover;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(242, 180, 243, 0.3);
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }


    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #615f5f;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 30px;
        right: 20px;
        cursor: pointer;
        width: 70px;
        height: 70px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fd91e0;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 27px;
    }

    .openbtn span:nth-of-type(3) {
        top: 40px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .navi {
        width: 100%;
        height: auto;
    }

    #top {
        width: 100%;
        height: auto;
        margin: 0 auto;
        animation: fadein 5s ease-out forwards;
    }

    @keyframes fadein {
        0% {
            opacity: 0
        }

        100% {
            opacity: 1
        }
    }

    .top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    #profile {
        width: 100%;
        height: auto;
        margin-top: 150px;
    }

    .title1 h2 {
        width: 100%;
        height: auto;
        font-size: 40px;
        position: relative;
    }

    .border {
        position: relative;
        font-size: 18px;
    }

    .border:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: solid 2px #fd91e0;
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-up {
        height: 600px;
        width: 100%;
    }

    .introduction {
        width: 100%;
        height: 600px;
        line-height: 200%;
        font-size: 20px;
        padding-top: 3%;
        text-align: center;
        background-image: url("../img/backcolor.png");
        background-size: 70%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        background-position: 50%;
        object-fit: cover;
    }


    #about {
        width: 100%;
        height: auto;
        margin-top: 50px;
    }


    .title2 h2 {
        font-size: 40px;
    }

    .aboutborder {
        position: relative;
        font-size: 18px;
    }

    .aboutborder:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: solid 2px #fd91e0;
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-up {
        height: 550px;
        width: 100%;
    }

    .explain {
        width: 100%;
        height: 550px;
        line-height: 200%;
        font-size: 20px;
        text-align: center;
        padding-top: 4%;
        background-image: url("../img/backcolor.png");
        background-size: 65%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        background-position: 50% 10%;
        object-fit: cover;
    }

    #point {
        width: 100%;
        height: auto;
        margin-top: 150px;
    }

    .title3 h2 {
        font-size: 40px;
        text-align: center;
        margin-bottom: 50px;
    }

    .pointborder {
        position: relative;
        text-align: center;
        font-size: 18px;
    }

    .pointborder:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        border-bottom: solid 2px #fd91e0;
        transform: translateX(-50%);
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-left {
        height: 250px;
        width: 80%;
    }

    .point1 {
        width: 100%;
        height: 250px;
        font-size: 20px;
        line-height: 200%;
        text-align: center;
        margin-left: 15%;
        padding-top: 3%;
        padding-right: 50%;
        background-image: url("../img/one.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    .scroll-fade-right {
        height: 300px;
        width: 80%;
    }

    .point2 {
        width: 100%;
        height: 300px;
        font-size: 20px;
        line-height: 200%;
        text-align: center;
        padding-left: 15%;
        background-image: url("../img/two.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-position: 83% 20%;
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    .point3 {
        width: 100%;
        height: 250px;
        font-size: 20px;
        line-height: 200%;
        text-align: center;
        margin-left: 15%;
        padding-top: 3%;
        padding-right: 53%;
        background-image: url("../img/three.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    .point4 {
        width: 100%;
        height: 300px;
        font-size: 20px;
        line-height: 200%;
        text-align: center;
        padding-left: 18%;
        background-image: url("../img/four.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-position: 83% 20%;
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    #question {
        width: 100%;
        height: auto;
        margin-top: 120px;
    }

    .title4 h2 {
        font-size: 40px;
        text-align: center;
        margin-bottom: 80px;
    }

    .border {
        position: relative;
        text-align: center;
        font-size: 18px;
    }

    .border:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        border-bottom: solid 2px #fd91e0;
        transform: translateX(-50%);
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    /*==================================================
アコーディオンのためのcss
===================================*/

    /*アコーディオン全体*/
    .accordion-area {
        list-style: none;
        width: 96%;
        color: #5d5c5c;
        max-width: 900px;
    
        margin: 0 auto;
    }

    .accordion-area li {
        margin: 10px 0;
    }

    .accordion-area section {
        border: 1px solid #ccc;
    }

    /*アコーディオンタイトル*/
    .title {
        position: relative;
        /*+マークの位置基準とするためrelative指定*/
        cursor: pointer;
        font-size: 1rem;
        font-weight: normal;
        padding: 3% 3% 3% 50px;
        transition: all .5s ease;
    }

    /*アイコンの＋と×*/
    .title::before,
    .title::after {
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background-color: #ccc;

    }

    .title::before {
        top: 48%;
        left: 15px;
        transform: rotate(0deg);

    }

    .title::after {
        top: 48%;
        left: 15px;
        transform: rotate(90deg);

    }

    /*　closeというクラスがついたら形状変化　*/
    .title.close::before {
        transform: rotate(45deg);
    }

    .title.close::after {
        transform: rotate(-45deg);
    }

    /*アコーディオンで現れるエリア*/
    .box {
        display: none;
        /*はじめは非表示*/
        background: #f3f3f3;
        margin: 0 3% 3% 3%;
        padding: 3%;
    }

    .footer {
        width: 100%;
        height: 250px;
        background-color: #f5dcf3;
        margin-top: 100px;
        padding-bottom: 50px;
    }

    .footer1 {
        width: 100%;
        height: 100%;
        padding-top: 30px;
        padding-left: 60px;
        line-height: 200%;
    }

    .footer2 {
        width: 100%;
        height: auto;
        text-align: center;
        background-color: #f5dcf3;
    }
}





/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {
    body {
        min-width: 600px;
        max-width: 999px;
    }

    .container {
        width: 100%;
        height: auto;
        color: #5d5c5c;
    }

    .header {
        width: 100%;
        height: 100px;
    }

    .header img {
        width: 15%;
        height: 100%;
        object-fit: cover;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(242, 180, 243, 0.3);
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }


    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #5d5c5c;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 20px;
        right: 20px;
        cursor: pointer;
        width: 70px;
        height: 70px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fd91e0;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 27px;
    }

    .openbtn span:nth-of-type(3) {
        top: 40px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .navi {
        width: 100%;
        height: auto;
    }

    #top {
        width: 100%;
        height: auto;
        margin: 0 auto;
        animation: fadein 5s ease-out forwards;
    }

    @keyframes fadein {
        0% {
            opacity: 0
        }

        100% {
            opacity: 1
        }
    }

    .top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #profile {
        width: 100%;
        height: auto;
        margin-top: 100px;
    }

    .title1 h2 {
        font-size: 30px;
        margin-top: 150px;
        position: relative;
    }

    .border {
        position: relative;
        font-size: 18px;
    }

    .border:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: solid 2px #fd91e0;
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-up {
        height: 450px;
        width: 100%;
    }


    .introduction {
        width: 100%;
        height: 450px;
        line-height: 200%;
        font-size: 15px;
        padding-top: 5%;
        text-align: center;
        background-image: url("../img/backcolor.png");
        background-size: 70%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        background-position: 70%;
        object-fit: cover;
    }

    #about2 {
        width: 100%;
        height: auto;
        margin-top: 50px;
    }

    .title2 h2 {
        font-size: 30px;
        margin-top: 150px;
    }

    .aboutborder {
        position: relative;
        font-size: 18px;
    }

    .aboutborder:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: solid 2px #fd91e0;
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-up {
        height: 400px;
        width: 100%;
    }

    .explain {
        width: 100%;
        height: 400px;
        line-height: 200%;
        font-size: 15px;
        text-align: center;
        padding-top: 4%;
        background-image: url("../img/backcolor.png");
        background-size: 65%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        background-position: 50% 10%;
        object-fit: cover;
    }

    #point {
        width: 100%;
        height: auto;
        margin-top: 50px;
    }

    .title3 h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 80px;
    }

    .border {
        position: relative;
        text-align: center;
        font-size: 18px;
    }

    .border:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        border-bottom: solid 2px #fd91e0;
        transform: translateX(-50%);
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-left {
        height: 180px;
        width: 80%;
    }

    .point1 {
        width: 100%;
        height: 180px;
        font-size: 15px;
        line-height: 200%;
        text-align: center;
        margin-left: 10%;
        padding-top: 3%;
        padding-right: 40%;
        background-image: url("../img/one.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    .scroll-fade-right {
        height: 250px;
        width: 80%;
    }

    .point2 {
        width: 100%;
        height: 250px;
        font-size: 15px;
        line-height: 200%;
        text-align: center;
        padding-left: 15%;
        background-image: url("../img/two.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-position: 85% 20%;
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    .point3 {
        width: 100%;
        height: 180px;
        font-size: 15px;
        line-height: 200%;
        text-align: center;
        margin-left: 10%;
        padding-top: 2%;
        padding-right: 45%;
        background-image: url("../img/three.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
        ;
    }

    .point4 {
        width: 100%;
        height: 200px;
        font-size: 15px;
        line-height: 200%;
        text-align: center;
        padding-left: 18%;
        background-image: url("../img/four.png");
        background-size: 15%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-position: 85% 20%;
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    #question {
        width: 100%;
        height: auto;
        margin-top: 80px;
    }

    .title4 h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 80px;
    }

    .border {
        position: relative;
        text-align: center;
        font-size: 18px;
    }

    .border:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        border-bottom: solid 2px #fd91e0;
        transform: translateX(-50%);
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    /*==================================================
アコーディオンのためのcss
===================================*/

    /*アコーディオン全体*/
    .accordion-area {
        list-style: none;
        width: 96%;
        max-width: 900px;
        margin: 0 auto;
    }

    .accordion-area li {
        margin: 10px 0;
    }

    .accordion-area section {
        border: 1px solid #ccc;
    }

    /*アコーディオンタイトル*/
    .title {
        position: relative;
        /*+マークの位置基準とするためrelative指定*/
        cursor: pointer;
        font-size: 1rem;
        font-weight: normal;
        padding: 3% 3% 3% 50px;
        transition: all .5s ease;
    }

    /*アイコンの＋と×*/
    .title::before,
    .title::after {
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background-color: #333;

    }

    .title::before {
        top: 48%;
        left: 15px;
        transform: rotate(0deg);

    }

    .title::after {
        top: 48%;
        left: 15px;
        transform: rotate(90deg);

    }

    /*　closeというクラスがついたら形状変化　*/
    .title.close::before {
        transform: rotate(45deg);
    }

    .title.close::after {
        transform: rotate(-45deg);
    }

    /*アコーディオンで現れるエリア*/
    .box {
        display: none;
        /*はじめは非表示*/
        background: #f3f3f3;
        margin: 0 3% 3% 3%;
        padding: 3%;
    }

    .footer {
        width: 100%;
        height: 180px;
        background-color: #f5dcf3;
        margin-top: 100px;
        padding-bottom: 30px;
    }

    .footer1 {
        width: 100%;
        height: 100%;
        font-size: 12px;
        padding-top: 30px;
        padding-left: 40px;
        line-height: 200%;
    }

    .footer2 {
        width: 100%;
        height: auto;
        font-size: 10px;
        text-align: center;
        background-color: #f5dcf3;
    }
}





/*SPサイズレスポンシブ*/
@media(max-width:599px) {
    body {
        max-width: 599px;
    }

    .container {
        width: 100%;
        height: auto;
        color: #5d5c5c;
    }

    .header {
        width: 100%;
        height: 60px;
    }

    .header img {
        width: 15%;
        height: 100%;
        margin-left: 10px;
        object-fit: cover;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: -120%;
        left: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(242, 180, 243, 0.3);
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        top: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }


    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #615f5f;
        font-size: 10px;
        text-decoration: none;
        padding: 5px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 3px;
        right: 8px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fd91e0;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 32px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .navi {
        width: 100%;
        height: auto;
    }

    #top {
        width: 100%;
        height: auto;
        margin: 0 auto;
        animation: fadein 5s ease-out forwards;
    }

    @keyframes fadein {
        0% {
            opacity: 0
        }

        100% {
            opacity: 1
        }
    }

    .top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #profile {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    .title1 h2 {
        font-size: 23px;
        text-align: center;
        margin-top: 50px;
        position: relative;
    }

    .border {
        position: relative;
        font-size: 18px;
    }

    .border:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: solid 2px #fd91e0;
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-up {
        width: 100%;
        height: auto;
    }

    .introduction {
        width: 100%;
        height: 300px;
        line-height: 180%;
        font-size: 12px;
        padding-top: 3%;
        text-align: center;
        background-image: url("../img/backcolor.png");
        background-size: 100%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        background-position: 50%;
        object-fit: cover;
    }

    #about {
        width: 100%;
        height: auto;
        margin-top: 50px;
    }

    .title2 h2 {
        font-size: 23px;
        margin-top: 20px;
    }

    .aboutborder {
        position: relative;
        font-size: 18px;
    }

    .aboutborder:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        border-bottom: solid 2px #fd91e0;
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .explain {
        width: 100%;
        height: 230px;
        line-height: 180%;
        font-size: 12px;
        text-align: center;
        padding-top: 2%;
        background-image: url("../img/backcolor.png");
        background-size: 85%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        background-position: 50% 35%;
        object-fit: cover;
    }

    #point {
        width: 100%;
        height: auto;
        margin-top: 80px;
    }

    .title3 h2 {
        font-size: 23px;
        text-align: center;
        margin-bottom: 20px;
    }

    .pointborder {
        position: relative;
        text-align: center;
        font-size: 18px;
    }

    .pointborder:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        border-bottom: solid 2px #fd91e0;
        transform: translateX(-50%);
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }

    .scroll-fade-left {
        height: 250px;
        width: 80%;
    }

    .point1 {
        width: 100%;
        height: 150px;
        font-size: 12px;
        line-height: 180%;
        text-align: center;
        padding-top: 30px;
        background-image: url("../img/one.png");
        background-position: 50% 30%;
        background-size: 25%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    .scroll-fade-right {
        height: 300px;
        width: 80%;
    }

    .point2 {
        width: 100%;
        height: 220px;
        font-size: 12px;
        line-height: 180%;
        text-align: center;
        padding-top: 40px;
        background-image: url("../img/two.png");
        background-position: 50% 40%;
        background-size: 25%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    .point3 {
        width: 100%;
        height: 170px;
        font-size: 12px;
        line-height: 180%;
        text-align: center;
        padding-top: 45px;
        background-image: url("../img/three.png");
        background-position: 50% 40%;
        background-size: 25%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
        ;
    }

    .point4 {
        width: 100%;
        height: 220px;
        font-size: 12px;
        line-height: 180%;
        text-align: center;
        padding-top: 45px;
        background-image: url("../img/four.png");
        background-position: 50% 50%;
        background-size: 25%;
        /* 背景画像のサイズを調整のため正方形に整形します。 */
        background-repeat: no-repeat;
        /* 背景画像を繰り返し表示しません。 */
        object-fit: cover;
    }

    #question {
        width: 100%;
        height: auto;
        margin-top: 100px;
    }

    .title4 h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 40px;
    }

    .border {
        position: relative;
        text-align: center;
        font-size: 18px;
    }

    .border:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        border-bottom: solid 2px #fd91e0;
        transform: translateX(-50%);
        animation: border_anim 3s linear forwards;
    }

    @keyframes border_anim {
        0% {
            width: 0%;
        }

        100% {
            width: 100%;
        }
    }


    /*==================================================
アコーディオンのためのcss
===================================*/

    /*アコーディオン全体*/
    .accordion-area {
        list-style: none;
        width: 96%;
        max-width: 900px;
        margin: 0 auto;
    }

    .accordion-area li {
        margin: 10px 0;
    }

    .accordion-area section {
        border: 1px solid #ccc;
    }

    /*アコーディオンタイトル*/
    .title {
        position: relative;
        /*+マークの位置基準とするためrelative指定*/
        cursor: pointer;
        font-size: 12px;
        font-weight: normal;
        padding: 3% 3% 3% 50px;
        transition: all .5s ease;
    }

    /*アイコンの＋と×*/
    .title::before,
    .title::after {
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background-color: #333;

    }

    .title::before {
        top: 48%;
        left: 15px;
        transform: rotate(0deg);

    }

    .title::after {
        top: 48%;
        left: 15px;
        transform: rotate(90deg);

    }

    /*　closeというクラスがついたら形状変化　*/
    .title.close::before {
        transform: rotate(45deg);
    }

    .title.close::after {
        transform: rotate(-45deg);
    }

    /*アコーディオンで現れるエリア*/
    .box {
        display: none;
        /*はじめは非表示*/
        background: #f3f3f3;
        font-size: 12px;
        margin: 0 3% 3% 3%;
        padding: 3%;
    }

    .footer {
        width: 100%;
        height: 130px;
        background-color: #f5dcf3;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .footer1 {
        width: 100%;
        height: 100%;
        font-size: 8px;
        padding-top: 20px;
        padding-left: 20px;
        line-height: 180%;
    }

    .footer2 {
        width: 100%;
        height: auto;
        font-size: 5px;
        text-align: center;
        background-color: #f5dcf3;
    }
}