/*---------------------------------------------------------
                共通css
---------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1920px;
    background-repeat: no-repeat;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #FFF6F1;
}

p {
    color: #4C4C4C;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

main {
    margin: 0 calc((100% - 600px)/2);
    overflow: hidden;
}

@media screen and (max-width:600px) {
    main {
        width: 100%;
        margin: 0;
    }

    br.sp {
        display: block;
    }
}

/*---------------------------------------------------------
                footer
---------------------------------------------------------*/
footer {
    position: relative;
    width: 600px;
    margin: 0 auto;
    padding: 100px 0;
    background-color: #8DE8D6;
    color: #FFF;
    text-align: center;
}

footer small {
    font-family: "filicudi-solid", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@media screen and (max-width:600px) {
    footer {
        width: 100%;
        padding: 50px 0;
    }
}

/*---------------------------------------------------------
                background
---------------------------------------------------------*/
.background {
    position: fixed;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/img_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*---------------------------------------------------------
                menu
---------------------------------------------------------*/
.menu {
    position: fixed;
    top: 27vh;
    left: calc(55% - 600px);
    transform: translate(-50%, -50%);
    width: 17vw;
    padding: 3% 0;
    background-color: #fff;
    border: 1px solid #4C4C4C;
    border-radius: 30px;
}

.menu .title {
    width: 4vw;
    margin: 0 auto;
}

.menu .title img {
    width: 100%;
}

.menu nav {
    width: 11.4vw;
    margin: 40px auto 0;
}

.menu nav li {
    margin-bottom: 8%;
}

.menu nav li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.menu nav li:nth-of-type(1) {
    width: 11.4vw;
}

.menu nav li:nth-of-type(2) {
    width: 10vw;
}

.menu nav li:nth-of-type(3) {
    width: 8.75vw;
}

.menu nav li a {
    display: block;
    transition: 0.3s;
}
.menu nav li a:hover{
    transform: translateX(10px);
}

.menu nav li img {
    width: 100%;
}

@media screen and (max-width:1400px) {
    .menu {
        left: calc(60% - 600px);
    }
}

@media screen and (max-width:1250px) {
    .menu {
        left: calc(63% - 600px);
    }
}

@media screen and (max-width:1200px) {
    .menu {
        display: none;
    }
}

/*---------------------------------------------------------
                background_deco
---------------------------------------------------------*/



/*---------------------------------------------------------
                welcome
---------------------------------------------------------*/
#welcome {
    position: relative;
    width: 100%;
    height: 120vh;
    background-image: url(../img/img_welcome_bg.gif);
    background-size: cover;
    background-repeat: no-repeat;
}

#welcome .title {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#welcome p {
    font-family: "fatfrank", sans-serif;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #FFF;
}

#welcome .img {
    width: 500px;
    margin: 30px auto 0;
}

#welcome .img img {
    width: 100%;
}

#welcome .box {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation-name: scale;
    animation-delay: 2s;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    transform-origin: center;
}

@keyframes scale {
    0% {}

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}


#welcome .box a {
    display: block;
    font-family: "fatfrank", sans-serif;
    font-weight: 400;
    font-size: 40px;
    letter-spacing: 0.1em;
    line-height: 80px;
    text-align: center;
    text-decoration: underline;
    color: #FFF;
}

#welcome .box a:nth-last-of-type(1) {
    margin-top: 20px;
}

@media screen and (max-width:600px) {
    #welcome {
        width: 100%;
        height: 100vh;
    }

    #welcome p {
        font-size: 32px;
    }

    #welcome .title {
        width: 90%;
    }

    #welcome .img {
        width: 100%;
    }
}

@media screen and (max-width:450px) {
    #welcome .title {
        top: 45%;
    }

    #welcome .box a {
        font-size: 28px;
        line-height: 32px;
    }
}

/*---------------------------------------------------------
                reserve
---------------------------------------------------------*/
#reserve {
    position: relative;
    padding: 200px 0 100px;
    background-color: #AADBFF;
}

#reserve .title {
    width: 277.65px;
    margin: 0 auto;
}

#reserve .title img {
    width: 100%;
}

#reserve .box {
    margin-top: 40px;
    text-align: center;
}

#reserve .box p {
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 20px;
}

.contact {
    position: relative;
    width: 512px;
    margin: 100px auto 0;
    padding: 120px 0;
    border-radius: 40px;
    background-color: #fff;
    position: relative;
    border-image-source: url(../img/img_reserve_border.svg);
    border-image-slice: 100;
    border-image-width: 100px;
    border-image-outset: 20px;
    border-image-repeat: round;
}

.contact::before {
    content: "";
    display: block;
    width: 45.03px;
    height: 75.94px;
    background-image: url(../img/img_panda.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 112px;
    right: 15px;
    transform-origin: left top;
    animation: yurayura 2s linear infinite;
}

#reserve .deco p,
#reserve .deco img {
    width: 100%;
    height: 100%;
}

.contact table {
    width: 90%;
    margin: 30px auto 0;
}

.contact table tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
}

.contact table tr th {
    margin-bottom: 10px;
    min-width: 200px;
}

.contact table tr th p {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    font-size: 18px;
    text-align: left;
}

.contact table tr th p span {
    color: #6EC3EE;
}

.contact table tr td {
    width: 100%;
}

.contact td p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact table tr td input[type="text"],
.contact table tr td input[type="tel"],
.contact table tr td input[type="email"],
.contact table tr td textarea,
.contact table tr td select#day,
.contact table tr td select#time {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 3px solid #6EC3EE;
    border-radius: 5px;
    color: #686868 !important;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.contact table tr td.contact_message textarea {
    height: 150px !important;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}


.contact #attachment {
    height: 110px;
}

.contact td.birth p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.contact td.birth p span.wpcf7-form-control-wrap {
    display: flex;
    flex: 1;
}

.contact #year {
    flex: 1;
    margin: 0 10px 0 0;
}

.contact #day,
.contact #time {
    flex: 1;
    margin: 0 10px;
}

.contact #content {
    height: 310px;
}

.contact .ex {
    display: inline-block;
    width: 100%;
    margin-top: 6px;
    font-size: 14px;
    color: #161616;
    font-weight: 400;
}

.contact .ex {
    display: inline-block;
    width: 100%;
    margin-top: 6px;
    font-size: 14px;
    color: #848484;
}

.codedropz-upload-container {
    padding: 20px !important;
}

.codedropz-upload-handler {
    border: 1px solid #6EC3EE !important;
    border-radius: 0 !important;
}

.codedropz-upload-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
}

.codedropz-upload-inner span {
    color: #848484;
}

.cd-upload-btn {
    color: #3d8bff;
    margin-left: 4px;
}

.required {
    position: relative;
    padding-left: 15px;
}

.required.required::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url(../img/contact_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

}

.contact_annotation {
    font-size: 10px !important;
    margin-top: 10px;
}

.contact td.birth p.contact_annotation::before {
    display: contents;
    content: "※";
    font-size: 10px;
    color: #6EC3EE;
}

::placeholder {
    color: #C6C6C6;
    font-weight: 600;
    font-size: 16px;
}

/*名前デザイン*/
td.contact_name {
    display: flex;
    justify-content: space-between;
}

td.contact_name p {
    width: 45%;
}

/*同意チェックボックス*/
span.wpcf7-form-control.wpcf7-acceptance.optional {
    display: block;
    text-align: center;
    margin: 30px 0;
}

span.wpcf7-form-control.wpcf7-acceptance.optional a {
    color: #686868;
    font-weight: 400;
    text-decoration: underline;
}

span.wpcf7-list-item-label {
    font-size: 14px;
}

/*エラー表示*/
.wpcf7-not-valid-tip {
    margin-top: 0.5rem;
}

/*送信ボタン*/
.btn_area p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 56px;
}

.contact .btn {
    position: relative;
    width: 240px;
    margin: 0 auto;
}

.contact .btn::before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 97px;
    background-image: url(../img/img_btn_deco.svg);
    background-repeat: no-repeat;
}

.contact_btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    border: none;
    background: #6EC3EE;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s;
}

.contact_btn.is-inactive {
    flex: auto;
    display: block;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
    width: 240px;
    background: #ACACAC;
    border: 2px solid #FFF;
}

.contact_btn.is-active {
    flex: auto;
    display: block;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
    width: 240px;
    background: #6EC3EE;
    border: 2px solid #4C4C4C;
}

.contact_btn.is-active::before {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background-image: url(../img/img_btn_deco.svg);
}

.contact_btn.is-active:hover,
.contact_back:hover {
    cursor: pointer;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .2);
}

.contact_back {
    flex: 1;
    min-width: 100px;
    display: block;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    border: 2px solid #E3E3E3;
    background: #fff;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 16px !important;
}

.contact .file_upload {
    position: relative;
}

.contact #attachment {
    display: none;
}

.contact label[for="attachment"] {
    display: block;
    border: 1px solid #6EC3EE;
    width: 100%;
    padding: 20px;
    font-size: 14px;
    text-align: center;
}

.contact label[for="attachment"] span {
    color: #6EC3EE;
    margin-right: 10px;
}

.contact .min {
    display: block;
    font-size: 14px;
    margin-top: 4px;
    text-align: right;
    font-weight: 400;
}

.wpcf7-list-item-label a {
    transition: 0.3s;
}

.wpcf7-list-item-label a:hover {
    opacity: 0.7;
}

/* reCAPTCHA */
.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha_txt {
    color: #848484;
    font-size: 10px;
    text-align: center;
}

.recaptcha_txt a {
    color: #0094FF;
}

@keyframes yurayura {

    0%,
    100% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }
}

@media screen and (max-width:600px) {
    #reserve {
        padding: 100px 0;
    }

    .contact {
        width: 90%;
    }

    .contact table tr {
        padding: 10px;
    }

    .contact table tr td.contact_name {
        flex-direction: column;
    }

    .contact table tr td.contact_name p {
        width: 100%;
    }

    span.wpcf7-list-item-label {
        font-size: 12px;
    }
}

@media screen and (max-width:400px) {
    .contact {
        border-image-slice: 209;
        border-image-width: 209px;
    }

    .contact::before {
        top: 95px;
        right: 9px;
    }
}

/*---------------------------------------------------------
                access
---------------------------------------------------------*/
#access {
    background-color: #8DE8D6;
    padding-top: 170px;
}


#access .title {
    width: 233.65px;
    margin: 0 auto;
}

#access .title img {
    width: 100%;
}


#access .map_box {
    background-color: #FFF;
    margin: 150px 0 0;
    padding: 85px 0 110px 0;
    position: relative;
}

#access .map_box .area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px auto 80px;
}
#access .map_box .area a.tel{
    display: block;
    margin-top: 0.5rem;
    color: #4C4C4C;
    transition: 0.3s;
}
#access .map_box .area a.tel:hover{
    text-decoration: underline;
}

#access .map_box .area p {
    line-height: 1.4;
}

#access .map_box .area .img {
    width: 156px;
    transition: 0.3s;
}

#access .map_box .area .img:hover {
    transform: translate(10px);
}

#access .map {
    width: 487px;
    height: 323px;
    margin: 0 auto;
}

#access .map iframe {
    width: 100%;
    height: 100%;
}

#access .map_box p.txt {
    width: 487px;
    margin: 20px auto 0;
    line-height: 1.4;
}


.map_link_sp {
    display: none;
}

.bottom_item {
    width: 600%;
    height: 50px;
    background-color: #8DE8D6;
}

@media screen and (max-width:600px) {
    #access {
        padding-top: 100px;
    }

    #access .title {
        width: 65%;
    }

    #access .area {
        flex-direction: column;
    }

    #access .map {
        width: 95%;
    }

    #access .map_box p.txt {
        width: 95%;
    }
}

/*---------------------------------------------------------
                train
---------------------------------------------------------*/

.train_container {
    display: flex;
    overflow: hidden;
    background-color: transparent;
}

.train_container.top {
    position: absolute;
    top: -11%;
    left: 0;
}

.train_container.top .train_slide01 {
    display: flex;
    gap: 0;
    animation: train_slide01 30s -15s linear infinite;
}

.train_container.top .train_slide01 img {
    width: 473.81px;
}

.train_container.top .train_slide02 {
    display: flex;
    gap: 0;
    animation: train_slide02 30s linear infinite;
}

.train_container.top .train_slide02 img {
    width: 473.81px;
}

.train_container.bottom {
    position: absolute;
    bottom: -3%;
    left: 0;
}

.train_container.bottom .train_slide01 {
    display: flex;
    gap: 0;
    animation: train_slide03 30s -15s linear infinite;
}

.train_container.bottom .train_slide01 img {
    width: 473.81px;
}

.train_container.bottom .train_slide02 {
    display: flex;
    gap: 0;
    animation: train_slide04 30s linear infinite;
}

.train_container.bottom .train_slide02 img {
    width: 473.81px;
}

@keyframes train_slide01 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes train_slide02 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes train_slide03 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes train_slide04 {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width:600px) {
    .train_container.top {
        top: -9.2%;
    }

    .train_container.bottom {
        bottom: -2.8%;
    }

}