/*
Theme Name: Custom
Author: tnc project
Version: 1.0
*/

/*** CSS Reset ***/
*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

address {
    font-style: normal;
}

/*** page:all ***/
html {
    font-family: "Noto Sans JP", sans-serif;
}

body {
    position: relative;
    background: #000;
    line-height: 1.15em;
    overflow-x: hidden;
}

/* fixed menu */
.menubtn {
    cursor: pointer;
    position: fixed;
    z-index: 100001;
    right: 11px;
    top: 11px;
    height: auto;
    display: none;
}

@media (max-width: 1280px) {
    .menubtn {
        display: block;
    }
}

.menuarea {
    position: fixed;
    z-index: 100000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0px;
    right: 0px;
    opacity: 0;
    pointer-events: none;
    transition: 1s;
}

.menuarea.active {
    opacity: 1;
    pointer-events: all;
}

.menubtn::before {
    display: block;
    content: "";
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    right: -80px;
    top: -85px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.menubtn .menubtnInner {
    position: relative;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.menubtn .bar-top,
.menubtn .bar-center,
.menubtn .bar-bottom {
    display: flex;
    position: absolute;
    height: 4px;
    width: 30px;
    border-radius: 5px;
    justify-content: center;
    transition: 0.5s;
}

.menubtn .bar-top::before,
.menubtn .bar-center::before,
.menubtn .bar-bottom::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
}

.menubtn .bar-center::before {
    margin-top: 10px;
}

.menubtn .bar-bottom::before {
    margin-top: 20px;
}

/* open */
.menubtn.open .bar-top::before {
    animation: animeOpen_top 1s forwards;
}

.menubtn.open .bar-center::before {
    animation: animeOpen_center 1s forwards;
}

.menubtn.open .bar-bottom::before {
    animation: animeOpen_bottom 1s forwards;
}

@keyframes animeOpen_top {
    0% {
        width: 100%;
        margin-top: 0px;
        transform: rotate(0deg);
    }

    40% {
        width: 4px;
        margin-top: 10px;
        transform: rotate(0deg);
    }

    50% {
        width: 4px;
        margin-top: 10px;
        transform: rotate(45deg);
    }

    100% {
        width: 100%;
        transform: rotate(45deg);
        margin-top: 10px;
    }
}

@keyframes animeOpen_center {
    0% {
        width: 100%;
    }

    50% {
        width: 4px;
    }

    100% {
        width: 4px;
    }
}

@keyframes animeOpen_bottom {
    0% {
        width: 100%;
        margin-top: 20px;
        transform: rotate(0deg);
    }

    40% {
        width: 4px;
        margin-top: 10px;
        transform: rotate(0deg);
    }

    50% {
        width: 4px;
        margin-top: 10px;
        transform: rotate(-45deg);
    }

    100% {
        width: 100%;
        transform: rotate(-45deg);
        margin-top: 10px;
    }
}

/* close */
.menubtn.close .bar-top::before {
    animation: animeClose_top 1s forwards;
}

.menubtn.close .bar-center::before {
    animation: animeClose_center 1s forwards;
}

.menubtn.close .bar-bottom::before {
    animation: animeClose_bottom 1s forwards;
}

@keyframes animeClose_top {
    0% {
        width: 100%;
        transform: rotate(45deg);
        margin-top: 10px;
    }

    40% {
        width: 4px;
        transform: rotate(45deg);
        margin-top: 10px;
    }

    50% {
        width: 4px;
        transform: rotate(0deg);
        margin-top: 10px;
    }

    100% {
        width: 100%;
        transform: rotate(0deg);
        margin-top: 0px;
    }
}

@keyframes animeClose_center {
    0% {
        width: 4px;
    }

    50% {
        width: 4px;
    }

    100% {
        width: 100%;
    }
}

@keyframes animeClose_bottom {
    0% {
        width: 100%;
        transform: rotate(-45deg);
        margin-top: 10px;
    }

    40% {
        width: 4px;
        transform: rotate(-45deg);
        margin-top: 10px;
    }

    50% {
        width: 4px;
        transform: rotate(0deg);
        margin-top: 10px;
    }

    100% {
        width: 100%;
        transform: rotate(0deg);
        margin-top: 20px;
    }
}

#scrollTopBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    background: #ee9f3e;
    border: solid 2px #fff;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transition: 1s;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

#scrollTopBtn::before {
    display: inline-block;
    content: "";
    width: 14px;
    height: 14px;
    border-top: solid 4px #fff;
    border-left: solid 4px #fff;
    transform: rotate(45deg);
    position: relative;
    top: 2px;
}

#scrollTopBtn:hover {
    transform: scale(1.1);
}

#scrollTopBtn.active {
    opacity: 1;
    pointer-events: all;
}

.tCenter {
    text-align: center;
}

.tLeft {
    text-align: left;
}

.tRight {
    text-align: right;
}

.b {
    font-weight: bold;
}

.dIb {
    display: inline-block;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.p10 {
    padding: 10px;
}

.p20 {
    padding: 20px;
}

.p30 {
    padding: 30px;
}

.font-lll {
    font-size: clamp(20px, 12vw, 62px);
    line-height: 1.1em;
}

.font-ll {
    font-size: clamp(18px, 8vw, 35px);
    line-height: 1.1em;
}

.font-l {
    font-size: clamp(16px, 7vw, 28px);
    line-height: 1.1em;
}

.font-ml {
    font-size: clamp(14px, 6vw, 20px);
    line-height: 1.1em;
}

.font-s {
    font-size: clamp(11px, 5vw, 13px);
}

.imgAuto {
    max-width: 100%;
    height: auto;
}

.flex {
    display: flex;
}

.brown {
    color: #5d4037;
}

.green {
    color: #02717b;
}

/*** page:home ***/
body.home .bgimg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

body.home .bgimg>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

body.home main {
    position: relative;
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    background-image: radial-gradient(circle, #333333 0%, #000000 80%);
    padding-bottom: 90px;
    border-left: solid 5px #c1ba7f;
    border-right: solid 5px #c1ba7f;
}

body.home h1 img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 5px 2px rgba(36, 36, 36, 0.15));
}

body.home #sec_maintext {
    border: 3px solid transparent;
    /* 枠線の幅を確保し、色は透明に */
    border-image: linear-gradient(to bottom, #7d622d, #fade69, #7d622d);
    /* グラデーションを指定 */
    border-image-slice: 1;
    /* グラデーションの切り出し方を指定（必須） */
    margin: 10px 15px;
    padding: 12px 12px 20px;
}

body.home #sec_date h2 {
    letter-spacing: 0.1em;
    line-height: 2.5em;
}

body.home #sec_datas {
    padding: 0 25px;
}

body.home #sec_datas .datalist {
    border-collapse: separate;
    border-spacing: 0 5px;
}

body.home #sec_datas .datalist th {
    min-width: 5em;
}

body.home #sec_ticketinfo {
    border: solid 3px #fff;
    margin: 15px;
    padding: 12px;
}

body.home #sec_ticketinfo h3 {
    border: solid 1px #333;
    padding: 2px 5px;
    min-width: 120px;
    text-align: center;
}

body.home #sec_ticketinfo .flex {
    gap: 10px;
}

body.home #sec_ticketinfo .ticketlist {
    border-collapse: separate;
    border-spacing: 0 8px;
}

body.home #sec_ticketinfo .ticketlist th {
    min-width: 8em;
}

body.home #sec_ticketinfo {
    padding: 12px;
}

body.home #sec_maininfo {
    padding: 0px 12px;
}


body.home #sec_sponsor .inner {
    background: #fff;
    border-radius: 15px;
    margin: 0 15px;
    padding: 20px 15px 50px;
}

body.home #sec_sponsor .ttl {
    text-align: center;
    font-size: 150%;
    line-height: 1em;
}

body.home #sec_sponsor .ttl span {
    display: inline-block;
    border: solid 1px #000;
    padding: 5px 10px;
}

body.home #sec_sponsor .list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

body.home #sec_sponsor .list li {
    width: calc(50% - 5px);
}

body.home #sec_sponsor .list li img {
    width: 100%;
    height: auto;
}



body.home #sec_contact .contactBtn {
    background: #ffee58;
    color: #01579b;
    font-weight: bold;
    display: inline-block;
    border-radius: 50px;
    padding: 10px 20px;
    min-width: 300px;
    text-decoration: none;
    line-height: 1.2em;
    font-size: 150%;
    position: relative;
}

body.home #sec_contact .contactBtn::before {
    position: absolute;
    display: block;
    content: "";
    border: solid 1px #01579b;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 3px;
    left: 3px;
    border-radius: 50px;
}

body.home #sec_contact .infobox {
    border: solid 2px #000;
    padding: 25px;
    margin-left: 15px;
    margin-right: 15px;
}

body.home #sec_contact .infobox h3 span {
    display: inline-block;
    border: solid 1px #000;
    padding: 2px 5px;
}

body.home #sec_contact .flex {
    flex-wrap: wrap;
}

body.home #sec_eventshop>.inner {
    background: #e0f4c9;
    border-radius: 20px;
    padding: 20px 15px 40px;
    margin: 0 12px;
}

body.home #sec_eventshop .flex {
    display: flex;
    gap: 15px;
    width: 100%;
}

body.home #sec_eventshop .flex li {
    width: 50%;
}

body.home #sec_eventshop .flex li img {
    width: 100%;
    height: auto;
}

body.home #sec_eventshop .pdflist {
    display: flex;
    justify-content: center;
}

body.home #sec_eventshop .pdflist a {
    display: block;
    background: #ffa726;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    gap: 30px;
    justify-content: center;
}

/* leftArea rightArea */
body.home .leftArea {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 300px - 60px - 140px), -50%);
    width: 280px;
    height: auto;
    max-height: 90vh;
}

body.home .rightArea {
    display: block;
    position: fixed;
    right: 50%;
    top: 50%;
    transform: translate(calc(50% + 455px), -50%);
    width: 280px;
}

@media (max-width: 1280px) {

    body.home .leftArea,
    body.home .rightArea {
        display: none;
    }
}



/* btmMsg */
body.home .btmMsg {
    text-align: center;
    color: #D8CCA3;
    font-weight: bold;
}


body.home #gt_float_wrapper {
    text-align: center;
    margin-top: 10px;
}


/* common styles */
.styleText1 {
    color: #fff;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.25),
        1px 1px 0 #131313,
        -1px -1px 0 #131313,
        -1px 1px 0 #131313,
        1px -1px 0 #131313,
        0px 1px 0 #131313,
        0px -1px 0 #131313,
        -1px 0px 0 #131313,
        1px 0px 0 #131313;
    font-weight: bold;
    line-height: 1.1em;
}

.styleText2 {
    color: #fad154;
    text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.3),
        1px 1px 0 #302910,
        -1px -1px 0 #302910,
        -1px 1px 0 #302910,
        1px -1px 0 #302910,
        0px 1px 0 #302910,
        0px -1px 0 #302910,
        -1px 0px 0 #302910,
        1px 0px 0 #302910;
    font-weight: bold;
    line-height: 1.1em;
}

.styleBtn {
    display: inline-block;
    border-radius: 50px;
    background: #fff;
    border: solid 1px #2252a3;
    color: #2252a3;
    font-weight: bold;
    text-decoration: none;
    padding: 2px 10px;
}

.styleList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 14px;
    justify-content: center;
}

@media (max-width: 640px) {
    .styleList {
        font-size: 85%;
        gap: 5px 5px;
    }
}

.styleList li {
    width: calc(50% - 7px);
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 10px 10px 20px;
    border: solid #0d47a1 1px;
}

.styleList li .img {
    margin: 10px 0px;
}

.styleList li .img img {
    width: 100%;
    height: auto;
}

.styleList li .ttl {
    background: #00897b;
    color: #FFF;
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    font-size: 120%;
    line-height: 1.2em;
    position: relative;
}

.type2 .styleList li .ttl {
    background: #1951a6;
}

.styleList li .ttl::before {
    position: absolute;
    display: block;
    content: "";
    border: solid 1px #fff;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    left: 7px;
    top: 7px;
    border-radius: 12px;
}

@media (max-width: 640px) {
    .styleList li .ttl::before {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        left: 5px;
        top: 5px;
    }
}

.styleList li .ttl .small {
    font-size: 80%;
}

.tabArea>.tabs {
    display: flex;
    width: 100%;
}

.tabArea>.tabs li {
    cursor: pointer;
    width: 50%;
    text-align: center;
}

.tabArea>.tabs li h2 {
    font-weight: bold;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.3);
    font-size: 40px;
    line-height: 1em;
    background: #c9c9c9;
    border: solid 4px transparent;
    color: #fff;
    padding: 5px;
    margin: 5px 10px;
}

@media (max-width: 640px) {
    .tabArea>.tabs li h2 {
        font-size: 20px;
    }
}

.tabArea>.tabs li.active h2 {
    background: #d4f3f7;
    border: solid 4px #d4f3f7;
    color: #222;
    margin: 0px;
    padding: 10px;
}

.tabArea>.datas>.data {
    display: none;
    background: #d4f3f7;
    padding: 30px 20px;
    position: relative;
}

.tabArea>.datas>.data::before {
    display: block;
    position: absolute;
    content: "";
    border: solid 2px #19958a;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    left: 8px;
    top: 8px;
}

@media (max-width: 640px) {
    .tabArea>.datas>.data {
        padding: 10px 5px;
    }

    .tabArea>.datas>.data::before {
        width: calc(100% - 8px);
        height: calc(100% - 8px);
        left: 4px;
        top: 4px;
    }
}

.tabArea>.datas>.data.type2::before {
    border: solid 2px #1951a6;
}

.tabArea>.datas>.data.active {
    display: block;
}

.styleTtl {
    text-align: center;
}

.styleTtl>.inner {
    display: inline-block;
    position: relative;
    color: #02717b;
    background: #fff;
    padding: 25px;
    font-size: 175%;
    border: solid 5px #02717b;
    border-radius: 15px;
    text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
    line-height: 1.5em;
}

@media (max-width: 640px) {
    .styleTtl>.inner {
        padding: 15px;
        font-size: 140%;
        border: solid 5px #02717b;
        border-radius: 10px;
        text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
    }
}

.styleTtl>.inner::before {
    position: absolute;
    display: block;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: solid 2px #02717b;
    top: 5px;
    left: 5px;
    border-radius: 15px;
}



@media (max-width: 640px) {
    .sp-dNone {
        display: none;
    }

    .sp-tLeft {
        text-align: left;
    }
}