html {
    scroll-behavior: smooth;
    position: relative;
}




body {
    font-size: 16px;
    font-family: "Klee One", cursive;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;

    line-height: 1.5;
    background-color: #F0EFEB;
    background-blend-mode: lighten;
    background-repeat: repeat-y;
    background-position: center;
}

.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



body#index {
    background-color: #4A8B7F;
}

h1 {
    writing-mode: vertical-rl;
}



/* ローディング画面 */
/* Loading Block */
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 4s 2s ease-in-out;
    background-color: #6f8d47;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-image: url(../images/logo.svg); */
    animation: sk-scaleout 4.0s 1 ease-in-out both;

}.spinner p {
    font-size: 60px;
     font-family: "Zen Kaku Gothic New", sans-serif;
    writing-mode: vertical-rl;
}



.wave {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.2);
	margin: 0 auto;
	width: 100vw;
	height: 100%;
	background-color: rgba(255,255,255,.1);
    animation: sk-scaleout 4.0s 1 ease-in-out both;
}

.wave::before {
	position: absolute;
	bottom: -150%;
	left: -50%;
	border-radius: 50% 50% / 50% 70%;
	width: 200%;
	height: 200%;
	content: "";
        background-image: linear-gradient(80deg, #43986e, 0%, #5bac9c 50%, #43986e 100%);
	animation: wave-anime linear 6s infinite;
}
@keyframes wave-anime {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}

.footer_wave {position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.parallax > use {
    animation: move-forever 12s linear infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
}
.parallax > use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
}
@keyframes move-forever {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
.editorial {
    display: block;
    width: 100%;
    height: 3em;
    max-height: 100vh;
    margin: 0;
  bottom: 0px;
	opacity:0.7;
}

@media (max-width: 50em) {
    .editorial {
        height: 10vw;
    }
}

/* Loading Animation */
@keyframes sk-scaleout {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
} 

/* Hide Loading Block */
.loaded {
    opacity: 0;
    visibility: hidden;
}


body.active {

    overflow: hidden;
    height: 100%;
}


/* フェードイン用表記 */
.animation {
    opacity: 0;
    transition: all 2s;
}

.fadeIn {
    opacity: 1;
}




/* メニューの外側を設定 */

header {
    width: 100%;
    height: 80px;
    border: 1px solid #F0EFEB;
    background-color: #296c5d;
}

.nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 20;
    transition: all 0.6s;
    z-index: 100;
    background-color: #536969d9;
    background-image: url(../images/back02.svg);
    background-blend-mode: lighten;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* メニュー内の設定 */
.nav ul {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
    gap: 16px;
    text-align: center;
    background-color: #53696975;

}

.nav ul li {
    font-size: 18px;
    font-weight: 1.8;
    padding: 20px;
    color: #F0EFEB;
}

.nav.active {
    right: 0;
}


/* ボタンデザイン */

.btn-trigger {
    position: fixed;
    border-radius: 50%;
    border: 1px solid #F0EFEB;
    background-color: #1f4f44;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin: 10px;
    z-index: 1000;
    right: 0;
}

.btn-trigger span {

    position: absolute;
    left: 7px;
    width: 75%;
    height: 2px;
    background-color: #F0EFEB;
    border-radius: 4px;
}

.btn-trigger,
.btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
    top: 20px;
}

.btn-trigger span:nth-of-type(2) {
    top: 30px;
}

.btn-trigger span:nth-of-type(3) {
    top: 40px;
}


/*=============================
#btn01
=============================*/
#btn01.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-25deg);
}

#btn01.active span:nth-of-type(2) {
    opacity: 0;
}

#btn01.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(25deg);
}



/* sliderデザイン */
.sl_img {
    width: 100%;
}

.sl_img_inner div {
    text-align: center;
}


.sl_img_inner div img {
    width: 275px;
    height: auto;
    object-fit: cover;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
}

.slick-disabled {
    display: none;
}

img {
    vertical-align: bottom;
}

p {
    color: #F0EFEB;

}

a {
    text-decoration: none;
    color: #F0EFEB;
}


article {
    margin-bottom: 100px;
}


.fstv {
    display: flex;
    border-bottom: 1px solid #F0EFEB;
    justify-content: space-between;
}

.fstv h1 {
    position: relative;
    order: 2;
    color: #F0EFEB;
    font-size: 40px;
    padding: 10px;
    letter-spacing: 10px;
    border-left: solid #fff 1px;
    /* border-bottom: solid #fff 5px; */
}

.fstv h1::after {
    position: absolute;
    content: "";
    width: 20vw;
    /* width: calc(20vw - 15px); */
    height: 5px;
    background-color: #fff;
    bottom: 0;
    right: 0;
}

.fstv h1 span {
    border: 1px solid #fff;
    padding: 10px;
    border-left: none;
    box-sizing: border-box;
}


.fstv .fstv_inner {
    order: 1;
    border-right: 1px solid #F0EFEB;
    width: 80vw;
}

.fstv .fstv_inner .main_kv {
    height: 70vh;
    width: 100%;
    background-image: url(../images/main_v.jpg);
    background-size: cover;
    background-position: center;
}

.fstv .fstv_inner h2 {
    padding: 20px 0px;
    font-size: 15px;
    color: #F0EFEB;
    text-align: center;
    border-bottom: 1px solid #F0EFEB;
}

.fstv .fstv_inner .fstv_p {
    display: flex;
    align-items: baseline;
    margin: 10px 15px;
    justify-content: center;
    border-bottom: 1px solid #F0EFEB;

}

.fstv .fstv_inner .fstv_p p {
    color: #F0EFEB;
    font-size: 20px;

}

.fstv .fstv_inner .fstv_p p:first-of-type {
    writing-mode: vertical-rl;
    font-size: 12px;
}


.fstv .fstv_inner .fstv_p p span {
    font-weight: bold;
    font-size: 35px;
}

.art_objective h3 {
    position: relative;
    padding-top: 50px;
    margin: 0px auto 50px;
    text-align: center;
    font-size: 30px;
    color: #F0EFEB;
}


.art_objective h3::after {
    position: absolute;
    content: "";
    width: 70%;
    max-width: 700px;
    border-bottom: #F0EFEB double 3px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.art_objective p {
    position: relative;
    width: 70%;
    max-width: 500px;
    color: #F0EFEB;
    padding: 20px;
    margin: 0 auto;
}

.art_objective p::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #F0EFEB;
    position: absolute;
    bottom: 0;
    right: 0;
}

.art_objective p::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #ffffffdc;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

main {
    background-color: #F0EFEB;
}

main article {
    padding-top: 50px;
}

main h3 {
    position: relative;
    margin: 50px auto;
    text-align: center;
    font-size: 30px;
    color: #4F4F2C;
    /* border-bottom: #fff double 3px; */
}


main h3::after {
    position: absolute;
    content: "";
    width: 70%;
    max-width: 700px;
    border-bottom: #4F4F2C double 3px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.about dl {

    padding: 20px 0px;
    margin: 20px 10px;

}

.about dl .about_inner {
    padding-top: 10px;
    width: 80%;
    max-width: 550px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #424242;
}

.about dl .about_inner dt {
    font-size: 18px;
    font-weight: bold;
}

.about figure {
    text-align: center;
    margin: 40px auto;
}

.about figure img {
    width: 80%;
    max-width: 500px;
    height: auto;
}

.news dl {

    padding: 20px 0px;
    margin: 20px 10px;

}

.news dl .news_inner {
    padding-top: 10px;
    width: 80%;
    max-width: 550px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #424242;
}

.info {
    margin-bottom: 0px;
}

.info .info_inner {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;
}

.info .info_inner p {
    color: #000;
    margin-bottom: 10px;
    max-width: 500px;
    margin: 0 auto;
}


.ticket_btn {
    margin: 10px;
    background-color: #7D7D61;
    border-radius: 50%;
    border: 1px solid #fff;
    position: fixed;
    width: 90px;
    height: 90px;
    padding: 10px;
    font-size: 15px;
    bottom: 0;
    right: 0;
    text-align: center;
    align-items: center;
}

.ticket_btn p {
    margin: 10px auto;
}







footer {
    padding-top: 20px;
    background-color: #D2CEC2;
    color: #4F4F2C;
    margin-top: auto;
}


footer ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
    justify-content: space-between;


}

footer ul li {
    text-align: center;
    color: #4F4F2C;
    width: 50%;
    padding: 8px;
    list-style-type: none;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
}

footer ul li:nth-of-type(2n) {
    border-left: none;
}

footer ul li:nth-of-type(3) {
    border-top: none;
}

footer ul li a {
    color: #000;

}

footer p {
    text-align: center;
    color: #4F4F2C;

}

footer p:nth-of-type(2) {
    font-size: 30px;
    font-weight: bold;
}

footer p small {
    font-size: 12px;
}

#ticket main{
    padding-bottom: 100px;


}


/* ボタンデザイン */

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}

.btn_o {
    width: 204px;
    margin: 20px auto;
    background-color: #F0EFEB;
}


.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    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;
    color: #F0EFEB;
    border-radius: 0.5rem;
}

a.btn-svg {
    font-weight: 700;
    line-height: 54px;

    width: 204px;
    height: 54px;
    padding: 0;

    cursor: pointer;
    text-decoration: none;

    background-color: transparent;
}

a.btn-svg svg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

a.btn-svg svg rect {
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;

    stroke: #000;
    stroke-width: 1;
    stroke-dasharray: 200px, 16px;
    stroke-dashoffset: 70px;
}

a.btn-svg:hover svg rect {
    stroke-dashoffset: 284px;
}

a.btn-svg span {
    color: #4d4d4d;
}

/* スクロールデザイン */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.scroll_down {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroll_down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
}

.scroll_down a {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    z-index: 2;
    width: 15px;
    padding: 0px 2px 110px;
    color: #F0EFEB;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: .2s;
    overflow: hidden;
    margin: auto;
}

.scroll_down a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #A2AEAE;
}

.scroll_down a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #F0EFEB;
}

.scroll_down a:hover {
    opacity: .5;
}

#type01 a:after {
    animation: sdl01 3.0s cubic-bezier(1, 0, 0, 1) infinite;
}



@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

/* コンタクトフォーム */
.contact {

    background-color: #cccccc5d;
    padding: 40px 40px 100px 40px;
    margin-bottom: 0px;
}

.contact h2 {
    font-size: 24px;
    text-align: center;
    border-bottom: solid 1px #F0EFEB;

}

.Form {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    margin-bottom: 100px;
}

.Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .Form-Item {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }
}

.Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label {
        max-width: inherit;
        display: flex;
        align-items: center;
        font-size: 15px;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: #649C6E;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 32px;
        font-size: 10px;
    }
}

.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Input {
        margin-left: 0;
        margin-top: 18px;
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .Form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }
}

.Form-Btn {
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #649C6E;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 480px) {
    .Form-Btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
    }
}

#ticket header,
#goods header {
    position: relative;
    background-image: url(../images/kasou_header.jpg);
    /* background-color: #404F2C; */
    width: 100%;
    height: 100px;
    background-position: 25% 70%;
    background-size: cover;
    /* padding: 20px; */

}

#ticket header::after,
#goods header::after {
    position: absolute;
    content: "";
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #404F2C;
}

/* .ticket {
    padding: 100px;
} */

.table_design12 {
    border-collapse: collapse;
    table-layout: fixed;
    width: 90%;
    max-width: 700px;
    /* min-width: 700px; */
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

.table_design12 thead th {

    padding: 1em .8em;
    border-bottom: 2px solid#4F4F2C;
}

.table_design12 td {
    color: #4F4F2C;
    padding: 1em;
}

.table_design12 thead th:not(:first-child) {
    color: #4F4F2C;
    font-size: 1.5rem;
    padding: 0.5em;
}

.table_design12 thead th span {
    font-size: .8rem;
}

.table_design12 thead th:nth-child(3) {
    /* background-color: #f88400; */
    position: relative;
}

.table_design12 thead th:nth-child(3)::before {
    content: '';
    width: 100%;
    height: 10px;
    position: absolute;
    /* background-color: #f88400; */
    left: 0;
    bottom: 100%;
}

.table-scroll {
    margin-bottom: 100px;
}

.table_design12 tbody th,
.table_design12 tbody td {
    border-bottom: 2px solid #4F4F2C;
    color: #404F2C;
}

@media screen and (max-width: 787px) {
    .table-scroll {
        overflow-x: auto;
    }
}

.gids figure {
    text-align: center;

}


.gids figure img {
    width: 80%;
    max-width: 500px;
        padding: 10px;
    border: #404F2C 1px solid;
}



.gids section {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.gids section h4 {
    text-align: center;
    font-weight: normal;
    font-size: 25px;
    margin-top: 20px;
}

.gids section p {
    color: #000;
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    font-weight: normal;
    font-size: 15px;
    text-align: center;
}


.gids section:last-child {
    width: 80%;
    padding: 30px;
    border: 1px solid #000;

}

.goods {
    width: 80%;
    padding: 30px;
    margin: 50px auto 100px;

}



.goods p {
    color: #000;
    text-align: center;

}

@media screen and (min-width: 480px) {}

@media screen and (min-width: 600px) {

/* .fstv h1 span {
    padding-left: 1px;
} */

.fstv h1 {
    padding-right: 5%;
    font-size: 50px;
}

.about dl .about_inner {
    display: flex;
    justify-content: left;
    padding-left: 80px;
}
.about dl .about_inner dt {
    width: 120px;
    text-align: end;
}
.about dl .about_inner dd {
    margin-left: 20px;
}
.news dl .news_inner {
    display: flex;
    justify-content: left;
}
.news dl .news_inner dt {
    width: 120px;
    text-align: end;
}
.news dl .news_inner dd {
    margin-left: 20px;
}

.fstv .fstv_inner .fstv_p {
    padding-bottom: 10px;
}
}



@media screen and (min-width: 980px) {
    .fstv h1 {
    font-size: 60px;
}

.fstv .fstv_inner .fstv_p p:first-of-type {
    font-size: 15px;
}
.fstv .fstv_inner .fstv_p p span {
    font-size: 50px;
}

.fstv .fstv_inner .fstv_p p {
    font-size: 40px;
}

}