body {
    background-color: #f9f9f9;
    color: #543e3f;
    font-family:"游ゴシック体", "メイリオ", sans-serif;
}

a:hover {
    opacity: 0.5;
}

img {
    max-width: 100%;
}

/*header*/

header {
    width: 100%;
    background-color: #fff;
}

h1 {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

header {
    background-color: #eee;
}

header img {
    width: 100%;
}

header a:hover {
    opacity: 1;
}

/*nav*/

nav {
    max-width: 900px;
    background-color: #ffc958;
    padding: 15px 0;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 2;
    margin: auto;
}

nav ul {
    font-size: 1em;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    text-align: center;
    width: calc(100%/7);
    border-right: 1px solid #3a070c;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul li:last-of-type {
    border-right: none;
}

nav ul li a {
    color: #3a070c;
    display: block;
}

.sp_nav div.next {
    width: 10%;
    background-color: #350f13;
    position: relative;
    display: none;
}

.nav_main {
    width: 100%;
}

@media screen and (max-width: 425px) {
    nav {
        max-width: none;
        width: 100%;
        padding: 0;
    }
    nav ul {
        width: 90%;
        overflow-x: scroll;
        overflow-y: hidden;
        justify-content: flex-start;
        padding: 2% 0;
    }
    nav ul li {
        flex: 0 0 auto;
        width: 40%;
    }
    .nav_main {
        width: 90%;
    }
    .sp_nav {
        display: flex;
    }
    .sp_nav div.next {
        display: block;
    }
    .sp_nav div.next::after {
        content: "";
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent transparent #ffffff;
        width: 0;
        height: 0;
        top: calc(50% - 10px);
        left: calc(50% - 5px);
        position: absolute;
    }
}

/*news*/

.news {
    max-width: 900px;
    margin: 3% auto;
}

.news-month-header {
    text-align: center;
    position: relative;
}

.news-month-header div {
    font-size: 1.8em;
    font-weight: bold;
}

.news-month-header div::after {
    content: '';
    width: 25px;
    height: 3px;
    margin: .8% auto 1.2%;
    display: block;
    background-color: #ffab00;
}

.news-month-header span {
    font-size: 1em;
    display: block;
    color: #a7a7a7;
}

.news-month {
    margin: 2% 0;
    border-top: 3px solid #cacaca;
    border-bottom: 3px solid #cacaca;
    display: flex;
    flex-wrap: wrap;
}

.news-month dt {
    width: 15%;
    padding: 2% 0%;
    border-bottom: 1px solid #cacaca;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 20px;
}

.news-month dt:last-of-type {
    border-bottom: none;
}

.news-month dt p {
    font-size: 1.8em;
    margin-right: 3%;
}

.news-month dt div {
    font-size: 0.5em;
    margin-bottom: 2%;
    width: calc(15px + 0.5em);
    height: calc(15px + 0.5em);
    display: flex;
    color: #ffffff;
    background-color: #3a070c;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
}

.news-month dd {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid #cacaca;
    min-height: 20px;
    padding: 1% 0 1% 2%;
}

.news-month dd:last-of-type {
    border-bottom: none;
}

i.gg-chevron-right-o {
    margin-right: .5%;
    transform: scale(0.8);
    color: #ffab00;
    flex: 0 0 auto;
}

.news-month dd p {
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 425px) {
    .news-month {
        width: 95%;
        margin: 2% auto;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .news-month dt {
        border-bottom: none;
        width: 100%;
        padding: 2% 0 0;
        justify-content: flex-start;
    }
    .news-month dd {
        padding: 2%;
        width: 100%;
    }
    .news-month dt p {
        margin-right: 1%;
        height: auto;
    }
}

/*main*/

main {
    min-height: 85vh;
    word-wrap: break-word;
}

.content {
    max-width: 900px;
    margin: 3% auto;
    font-size: 1.2em;
}

.content a {
    color: #ff8001;
    font-weight: bold;
}

.content h2 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.8;
    margin: 3% 0;
    background: linear-gradient(to right, #ff6800, #ffb100);
    color: #fff;
    border-left: 10px solid #64311c;
    padding-left: 1%;
}

.content h3 {
    font-weight: bold;
    color: #ffffff;
    background-color: #ff6800;
    font-size: 1.2em;
    line-height: 1.8;
    padding-left: 1%;
    margin: 3% 1% 1%;
}

.content h4 {
    font-weight: bold;
    font-size: 1.2em;
    margin: 3% 1% 1%;
}

.content p {
    margin: 1%;
    color: #350f13;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.content strong {
    color: #f44336;
}

.content span {
    font-weight: bold;
}

.content span.red {
    color: #f44336;
}

.content iframe {
    width: 100%;
}

.content dl {
    display: flex;
    flex-wrap: wrap;
    margin: 1%;
    ;
}

.content dl dt, .content dl dd {
    margin: 1%;
    padding: 1%;
}

.content dl dt {
    background: #dbdbdb;
    text-align: center;
    align-items: center;
    color: #545454;
    width: 26%;
    font-weight: normal;
    display: flex;
    justify-content: center;
}

.content dl dd {
    width: 66%;
}

.content table {
    border-collapse: separate;
    border-spacing: 6px;
    margin: 1%;
    min-width: 80%;
}

.content th {
    font-weight: normal;
    background: #dbdbdb;
    text-align: center;
    color: #545454;
    vertical-align: middle;
}

.content ul {
    list-style: disc;
    margin: 1% 1% 1% 4%;
}

.content ol {
    margin: 1% 1% 1% 4%;
    list-style: revert;
}

.content li {
    margin: 1.5% 0;
}

.content th, .content td {
    padding: 1.5%;
}

.content th {
    min-width: 11em;
}

table.qanda_text {
    border-collapse: collapse;
    border-top: 2px solid #ff7000;
    border-bottom: 2px solid #ff6a01;
    background-color: #fff;
    width: 98%;
    margin: 3% 1%;
}

.qanda_text th {
    width: 3em;
    min-width: auto;
    text-align: right;
    vertical-align: top;
    background-color: #fff;
    font-weight: bold;
}

.qanda_text tr {
    border-bottom: 1px dotted #ff6900;
}

.event-list {
    display: flex;
    padding: 2% 1%;
    justify-content: flex-start;
}

.event-list a, .event-list div {
    padding: 1%;
    color: #64311c;
    width: calc(100%/4);
}

.event-list a {
    display: block;
}

.event-list span.no-img{
    width: 100%;
    height: 120px;
    background-color: rgb(150, 150, 150);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-list p {
    font-size: 0.8em;
    font-weight: normal;
}

.event-list span {
    font-weight: bold;
}

.event-list a img{
    background-color: #dbdbdb;
}

a.circle_btn {
    width: 100%;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.8em;
    background-color: #bfe26a;
    color: #7eb200;
    line-height: 1.4;
    text-align: center;
    display: block;
    border: 3px solid #fff;
    background-image: url(../images/btn_bg_1.png);
    background-repeat: no-repeat;
    background-position: 98% center;
    padding: 1% 2% 1% 1%;
}

a.btn, span.btn {
    width: 100%;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.8em;
    background-color: #ffc958;
    color: #d65f0d;
    line-height: 1.7;
    text-align: center;
    display: block;
    border: 3px solid #fff;
    padding-right: 5%;
    position: relative;
}

a.btn::before, span.btn::before {
    content: "";
    width: 0;
    height: 9;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: calc(50% - 10px);
    right: 1%;
}

span.btn {
    background-color: #c5c5c5;
    color: #333333;
    background-image: none;
    padding-right: 0;
}

.modal-wrapper {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 60px 10px;
    text-align: center;
}

.modal-wrapper:not(:target) {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
    display: inline-block;
    height: 100%;
    margin-left: -.05em;
    vertical-align: middle;
    content: "";
}

.modal-wrapper .modal-window {
    box-sizing: border-box;
    display: inline-block;
    z-index: 20;
    position: relative;
    max-width: 1300px;
    padding: 30px 30px 15px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .6);
    vertical-align: middle;
}

.modal-wrapper .modal-window .modal-content {
    max-height: 80vh;
    overflow-y: auto;
}

.modal-overlay {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
}

.modal-overlay:hover {
    opacity: 1;
}

.modal-wrapper .modal-close {
    z-index: 20;
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    color: #0a4324;
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
}

.kaikestu {
    border: 2px solid #1faa39;
    margin: 3%;
}

.kaikestu h3 {
    margin: 0;
    text-align: center;
}

#qanda {
    margin: -6% auto 3%;
    padding: 6% 0 0;
}

.content_banner {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin: 2% auto;
}

.content_banner p {
    margin: 1% auto;
}

.ticket_area {
    display: flex;
    margin: 2% auto;
    position: relative;
}

.ticket_block {
    margin: 1%;
}

.ticket_block h3 {
    font-size: 1em;
    background: transparent;
    color: #000000;
}

.ticket_block p {
    font-size: 0.9em;
}

.ticket_block a.ticket_btn {
    display: block;
    margin: 1% auto;
    padding: 4%;
    font-weight: bold;
    background-color: #ff6d00;
    color: white;
    text-align: center;
    position: relative;
}

.ticket_block a.ticket_btn::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: calc(50% - 10px);
    right: calc(5% - 5px);
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

h3.event_logo {
    text-align: center;
    margin: 2% 0;
    padding: 0;
    background-color: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h3.event_logo img {
    object-fit: contain;
    height: 100%;
}

.list_tabbtn_area {
    display: flex;
    align-items: center;
}

.circlelist_area {
    margin: -5% auto 0;
    padding: 5% 0 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    border-bottom: 4px solid #fd944b;
}

.circlelist_area:last-of-type{
    border-bottom:none;
}

.tab_btn {
    margin: 0 3%;
}

.listblock {
    width: calc(94%/3);
    margin: 1% 1% 2%;
    position: relative;
}

.listblock_link {
    display: flex;
    width: 21%;
    flex-wrap: wrap;
    position: absolute;
    top: 55%;
    right: 3%;
}

.listblock_link a, .listblock_link span {
    width: calc(92%/2);
    margin: 2%;
}

.listblock_link span {
    opacity: 0.5;
}

.circlelist_tab_content {
    border-bottom: 5px solid #ffc958;
    margin-top: -7%;
    padding-top: 7%;
}

.circlelist_tab_content:last-of-type {
    border-bottom: none;
}

a.top_btn {
    width: 80px;
    height: 80px;
    background-color: #ff6800;
    z-index: 1;
    position: fixed;
    bottom: 3%;
    right: 1%;
    border-radius: 100%;
    opacity: 0.7;
}

a.top_btn span {
    border-width: 0 15px 28px 15px;
    border-color: transparent transparent #ffffff transparent;
    width: 0;
    height: 0;
    position: absolute;
    top: calc(50% - 18px);
    right: calc(50% - 15px);
}

a.top_btn:hover {
    opacity: 1;
}

div.kaikestu {
    border: 2px solid #ff6800;
    margin: 3%;
}

div.kaikestu h3 {
    margin: 0;
    text-align: center;
}

.service_banner {
    display: flex;
    flex-wrap: wrap;
}

.service_banner a {
    width: 49%;
    margin: 0.5%;
}

.pop {
    width: 100%;
    position: relative;
    margin-top: -5%;
    padding-top: 5%;
}

.pop a, .pop span {
    display: block;
    position: absolute;
}

.pop span {
    opacity: 0.5;
}

.pop_btn1 {
    top: 44.5%;
    left: 25%;
    width: 50%;
}

.pop_btn2 {
    top: 77%;
    left: 25%;
    width: 50%;
}

.pop_btn3 {
    top: 69.5%;
    left: 25%;
    width: 50%;
}

.pop img {
    width: 100%;
}

div.content span.junbi::after, div.content div.junbi::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #424242;
    opacity: 0.7;
    top: 0;
    left: 0;
}

div.content span.junbi::before, div.content div.junbi::before {
    content: "準備中";
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    font-weight: bold;
    font-size: 300%;
    top: 0;
    left: 0;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.flex_block{
    display: flex;
    max-width: 900px;
    margin:auto;
}

.flex_block .content{
    width: 50%;
    margin-right: 2%;
}
.flex_block .content:last-of-type{
    margin-right: 0;
}

.content ul.slick-dots{
    margin: -2% 0;
}

@media screen and (max-width: 768px) {
    .listblock {
        width: calc(94%/2);
    }
    a.top_btn {
        opacity: 1;
    }

    .flex_block{
        display: block;
        max-width: none;
        margin:auto;
    }

    .flex_block .content{
        width: 100%;
        margin-right: auto;
    }
}

@media screen and (max-width: 425px) {
    .event-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .event-list a {
        width: 50%;
    }
    .content dl dt {
        width: 100%;
    }
    .content dl dd {
        width: 100%;
    }
    a.circle_btn {
        font-size: 1.2em;
        background-size: 1.5%;
        width: 100%;
    }
    a.btn, span.btn {
        font-size: 1.5em;
        background-size: 1.5%;
        line-height: 1.2;
        width: 100%;
        padding: 2% 10% 2% 1%;
    }
    .content {
        font-size: 1em;
        width: 95%;
    }
    .content h2 {
        font-size: 1.2em;
    }
    .content iframe {
        height: 40vh;
    }
    .ticket_area {
        display: flex;
        flex-wrap: wrap;
    }
    .ticket_block a.ticket_btn {
        padding: 2%;
    }
    .ticket_block a.ticket_btn::after {
        top: calc(50% - 8px);
        right: calc(2% - 8px);
        border-width: 8px;
    }
    .listblock {
        width: 100%;
        margin: 1%;
    }
    .list_tabbtn_area {
        flex-wrap: wrap;
    }
    .tab_btn {
        margin: 1%;
        width: 48%;
        height: 20vw;
        text-align: center;
    }
    .tab_btn img {
        height: 100%;
        object-fit: contain;
    }
    .list_tabbtn_area a {
        width: calc(100%/2);
    }
    .circlelist_tab_content {
        margin-top: -15%;
        padding-top: 15%;
    }
    a.top_btn {
        height: 50px;
        width: 50px;
        bottom: 3%;
        right: 2%;
    }
    a.top_btn span {
        border-width: 0 10px 18px 10px;
        top: calc(50% - 12px);
        right: calc(50% - 10px);
    }
}

/*footer*/

footer {
    background-color: #3a070c;
}

address {
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

address div {
    border-right: 1px solid #fff;
    padding: 0 20px;
    width: calc(100%/2);
}

address div:last-of-type {
    border-right: none;
}

@media screen and (max-width: 425px) {
    address {
        flex-wrap: wrap;
    }
    address div {
        border: none;
        padding: 2% 5%;
        width: 100%;
    }
}