@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1181px) {

    .body1 {
        width: 100%;
        background-image: url(../img/contact-background1.webp);
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }


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

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

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

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        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: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

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

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 30px;
        font-family: "Tilt Warp", serif;
        ;
    }


    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        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: #fff;
        width: 45%;
    }

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

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

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

    .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%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .body2 {
        width: 55%;
        margin-left: 37%;
        background-color: white;
        border-radius: 50px;
        border: 1px solid #d23918
    }

    .header {
        /* background-color: cornflowerblue; */
        width: 100%;
        margin-top: 5%;
    }

    .header h1 {
        color: #d23918;
        font-size: 100px;
        font-weight: bold;
        font-family: "Tilt Warp", serif;
        text-align: center;
        letter-spacing: 5px;
    }

    .header h2 {
        color: #d23918;
        font-size: 25px;
        font-weight: normal;
        text-align: center;
        letter-spacing: 2px;
        font-family: "Zen Kaku Gothic New", serif;
        padding-bottom: 10px;
    }

    .container {
        /* background-color: blanchedalmond; */
        width: 68%;
        margin: 5% 15% 5%;
        padding-bottom: 5%;
        font-family: "Zen Kaku Gothic New", serif;
    }

    .box {
        margin-bottom: 5%;
    }

    .box p {
        background-color: white;
        color: #d23918;
        font-size: 24px;
        margin-bottom: 5px;
        letter-spacing: 1.5px;
    }

    .box input,
    select {
        width: 100%;
        height: 65px;
        margin-bottom: 5%;
        border: 2px solid black;
        border-radius: 30px;
        font-size: 20px;
        padding: 0px 15px;
        box-sizing: border-box;
    }

    .box textarea {
        width: 100%;
        height: 150px;
        margin-bottom: 5%;
        border: 2px solid black;
        border-radius: 30px;
        font-size: 20px;
        padding: 20px 15px;
        box-sizing: border-box;
        line-height: 25px;
    }

    .btn,
    a.btn,
    button.btn {
        line-height: 2;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
    }

    .button input {
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 1rem 4rem;
        font-size: 20px;
        font-weight: bold;
        border: 2px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
    }

    .button input:hover {
        color: #fff;
        background: #d23918;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 10%;
        text-align: center;
        margin: 0 auto;
        padding: 5% 0%;
    }

    .footer1 img {
        width: 30%;
    }

    .footer1 p {
        font-family: "Tilt Warp", serif;
        ;
        color: white;
        font-size: 20px;
    }

}


























/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1180px) {

    .body1 {
        width: 100%;
        background-image: url(../img/contact-background2.webp);
        background-attachment: fixed;
        background-size: contain;
        background-repeat: repeat;
        /* background-position: center; */
        padding-top: 50px;
        padding-bottom: 50px;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
    　5-2-4 MENUがCLOSEに
    ===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }


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

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

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

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        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: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

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

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 30px;
        font-family: "Tilt Warp", serif;
        ;
    }


    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        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: #fff;
        width: 45%;
    }

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

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

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

    .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%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .body2 {
        width: 85%;
        margin: 0 auto;
        background-color: white;
        border-radius: 50px;
        border: 1px solid #d23918
    }

    .header {
        /* background-color: cornflowerblue; */
        width: 100%;
        margin-top: 5%;
    }

    .header h1 {
        color: #d23918;
        font-size: 80px;
        font-weight: bold;
        font-family: "Tilt Warp", serif;
        text-align: center;
        letter-spacing: 5px;
    }

    .header h2 {
        color: #d23918;
        font-size: 25px;
        font-weight: normal;
        text-align: center;
        letter-spacing: 2px;
        font-family: "Zen Kaku Gothic New", serif;
        padding-bottom: 10px;
    }

    .container {
        /* background-color: blanchedalmond; */
        width: 68%;
        margin: 5% 15% 5%;
        padding-bottom: 5%;
        font-family: "Zen Kaku Gothic New", serif;
    }

    .box {
        margin-bottom: 5%;
    }

    .box p {
        background-color: white;
        color: #d23918;
        font-size: 24px;
        margin-bottom: 5px;
        letter-spacing: 1.5px;
    }

    .box input,
    select {
        width: 100%;
        height: 65px;
        margin-bottom: 5%;
        border: 2px solid black;
        border-radius: 30px;
        font-size: 20px;
        padding: 0px 15px;
        box-sizing: border-box;
    }

    .box textarea {
        width: 100%;
        height: 150px;
        margin-bottom: 5%;
        border: 2px solid black;
        border-radius: 30px;
        font-size: 20px;
        padding: 20px 15px;
        box-sizing: border-box;
        line-height: 25px;
    }

    .btn,
    a.btn,
    button.btn {
        line-height: 2;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
    }

    .button input {
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 1rem 4rem;
        font-size: 20px;
        font-weight: bold;
        border: 2px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0.5s;
        box-sizing: border-box;
    }

    .button input:hover {
        color: #fff;
        background: #d23918;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 20%;
        text-align: center;
        margin: 0 auto;
        padding: 5% 0%;
    }

    .footer1 img {
        width: 20%;
    }

    .footer1 p {
        color: white;
        font-size: 20px;
        font-family: "Tilt Warp", serif;
        ;
    }

}
























/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {

    .body1 {
        width: 100%;
        background-image: url(../img/contact-background2.webp);
        background-attachment: fixed;
        background-size: contain;
        background-repeat: repeat;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }


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

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

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

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        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: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

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

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 20px;
        font-family: "Tilt Warp", serif;
        ;
    }


    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        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: #fff;
        width: 45%;
    }

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

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

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

    .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%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .body2 {
        width: 85%;
        margin: 0 auto;
        background-color: white;
        border-radius: 50px;
        border: 1px solid #d23918
    }

    .header {
        /* background-color: cornflowerblue; */
        width: 100%;
        margin-top: 30px;
    }

    .header h1 {
        color: #d23918;
        font-size: 50px;
        font-weight: bold;
        font-family: "Tilt Warp", serif;
        text-align: center;
        letter-spacing: 3px;
    }

    .header h2 {
        color: #d23918;
        font-size: 16px;
        font-weight: normal;
        text-align: center;
        letter-spacing: 2px;
        font-family: "Zen Kaku Gothic New", serif;
        padding-bottom: 10px;
    }

    .container {
        /* background-color: blanchedalmond; */
        width: 80%;
        margin: 0 auto 30px auto;
        padding-bottom: 5%;
        font-family: "Zen Kaku Gothic New", serif;
    }

    .box {
        margin-bottom: 5%;
    }

    .box p {
        background-color: white;
        color: #d23918;
        font-size: 16px;
        margin-bottom: 5px;
        letter-spacing: 1.5px;
    }

    .box input,
    select {
        width: 100%;
        height: 60px;
        margin-bottom: 5%;
        border: 1px solid black;
        border-radius: 30px;
        font-size: 16px;
        padding: 0px 10px;
        box-sizing: border-box;
    }

    .box textarea {
        width: 100%;
        height: 150px;
        margin-bottom: 5%;
        border: 1px solid black;
        border-radius: 30px;
        font-size: 16px;
        padding: 20px 15px;
        box-sizing: border-box;
        line-height: 25px;
    }

    .btn,
    a.btn,
    button.btn {
        line-height: 2;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0s;
        transition: all 0s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
    }

    .button input {
        display: block;
        text-align: center;
        text-decoration: none;
        margin: auto;
        padding: 10px 30px;
        font-size: 14px;
        font-weight: bold;
        border: 2px solid #d23918;
        background: #fff;
        color: #d23918;
        border-radius: 100vh;
        transition: 0s;
        box-sizing: border-box;
    }

    .button input:hover {
        color: #fff;
        background: #d23918;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 20%;
        text-align: center;
        margin: 0 auto;
        padding: 40px 0;
    }

    .footer1 img {
        width: 45%;
    }

    .footer1 p {
        color: white;
        font-size: 12px;
        font-family: "Tilt Warp", serif;
        ;
        font-weight: normal;
    }

}