* {
    font-family: "Expletus Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;


    font-family: "Bodoni MT";

    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;

    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;

    margin: 0;
    padding: 0;

}

p {
    font-size: 16px;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/* ===== 0) 黒バックでスタート ===== */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: #000;
    /* ← 真っ暗 */
    overflow: hidden;
    /* 途中でスクロールさせない */
    animation: bgSwitch 0s steps(1) 2.9s forwards;
    /* 0.8 秒後ピタッと色変更 */
}

body.modal-open {
    overflow: hidden !important;
}

.splash {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1000;
    background: #fff;
    /* フェード後に見える色 */
    opacity: 0;
    /* 最初は見えない */
    animation:
        fadeIn 0s ease-out forwards,
        /* 出現 */
        shrinkIn 1.3s ease-in 2.9s forwards;
    /* 4.2 秒後に退場 */

}



.splash img {
    width: 100%;
    height: 100%;
    filter: brightness(30%)
}

.splash h1 {
    display: inline;
    /* width: 100%; */
    /* height: 100%; */
    position: absolute;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    font-size: 13vw;
    left: 50px;
    bottom: 50px;
    white-space: nowrap;
    /* スタート地点：画面の右外（100vw = ビューポート幅ぶん右へ）
     0.8 秒後に 0.8 秒かけて左へスライド、ついでにフェードイン */
    animation: slideIn 0.8s ease-out 0.8s forwards;
    opacity: 0;
    z-index: 1000;
}

.splash h1 span {
    font-size: 90%;
    font-weight: 550;
}


/* ===== 3) アニメーション定義 ===== */
@keyframes fadeIn {

    /* 黒→白＋内容フェードイン */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {

    /* 右からスライド＋フェード */
    from {
        transform: translateX(100vw);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes shrinkIn {

    /* 縮み＆フェードアウト */
    to {
        transform: scale(3.8);
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

/* ===== 4) prefers-reduced-motion ===== */
@media (prefers-reduced-motion:reduce) {

    .splash,
    .catch {
        animation: none;
        opacity: 1;
    }
}

@keyframes bgSwitch {
    to {
        background: #fff;
        overflow: auto;
    }

    /* ← 好きな色に */
}





.skip-splash .splash {
    display: none
}

.skip-splash body {
    overflow: auto;
    background: #fff
}











/* ─── ❶ header 土台 ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: transparent;
    /* 初期は透明 */
    transition: background .3s ease, box-shadow .3s ease;
    z-index: 900;
    /* 背景の一番奥側 */
}

header.scrolled {
    background: rgba(73, 101, 255, 0.85);
    backdrop-filter: blur(6px);
    height: 75px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    z-index: 100;
}

/* ─── ❷ タイトルを縮小して header 上に乗せる ─── */
#eventTitle {
    transition: all .3s ease;
    transform-origin: top left;
}

#eventTitle.shrink h2 {
    /* font-size: 75px; */
    display: block;
    /* line-height: 15vw; */
}



#eventTitle.shrink {
    position: fixed;
    top: -15px;
    left: -15px;
    /* 好きな位置 */
    /* transform: scale(.35); */
    /* 35 % サイズ */
    z-index: 900;
    /* header の上に表示 */
    /* 背景が欲しければ追加しても◎
  background:rgba(0,0,0,.4); color:#fff;
  padding:.2rem .6rem; border-radius:.4rem;*/
}

#eventTitle.shrink h2 {
    font-size: 15px;
    line-height: 1.2;
    /* 文字サイズを小さく */
    margin: 0;
    padding: 0;
    /* 縮小時の余白をなくす */
}

#eventTitle.shrink h4 {
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    /* 縮小時の余白をなくす */
}

#eventTitle.shrink .square {
    position: relative;
    top: 0;
    left: 2px;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    /* 縮小時の余白をなくす */
}

#eventTitle.shrink .square::before {
    /* font-size: 1.2rem; */
    /* position: absolute; */
    top: 0;
    left: -2px;
    width: 20px;
    height: 20px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}


/* 既存の #eventTitle {...} / #eventTitle.shrink {...} は変更不要 */

/* 追加：リンク色を継承して下線を消す */
.eventTitle {
    color: inherit;
    text-decoration: none;
    margin-left: 0;
}

/* 名札が“縮小モード”になったときだけ手のマーク */
#eventTitle.shrink {
    cursor: pointer;
}

.menuContent nav ul {
    display: flex;
    gap: 15px;
    list-style-type: none;
    justify-content: end;
    position: fixed;
    position: fixed;
    justify-content: end;
    align-items: center;
    background-color: rgba(210, 231, 255, 0.9);
    right: 0;
    width: auto;
    height: 50px;
    text-align: center;
    z-index: 900;
    margin: 12px 30px;
    padding: 20px;
    border-radius: 25px;
}

.section {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

section {
    padding-bottom: 30px;
}

section .wrapper {
    display: block;
    position: relative;
    width: 70%;
    margin: 0 auto;
    max-width: 720px;
    height: auto;
}



.wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(0px);
}



.heroVisual {
    background-image: url("../images/heroVisual.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vw;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: end;
    color: white;
    padding: 0 0 3vw 0;
    max-width: 100%;
    position: relative;
    z-index: 100;
}

.subarea {
    display: flex;
    /* justify-content: space-between; */
    align-items: end;
    position: relative;
    /* padding-top: 20px; */
    padding-left: 5vw;
}

.date {
    position: relative;
    /* display: flex; */
    /* padding-left: 5vw; */
}

.date p {
    font-size: 3vw;
    font-weight: 800;
    font-family: "Noto serif JP";
    margin-bottom: 0;
}

.date p span {
    font-size: 5vw;
    font-family: "Noto Serif JP";
    font-weight: 700;
}



#crossHall {
    display: inline-block;
    position: relative;
    width: 30%;
    /* left: 5vw; */
    /* height: 50%; */
    /* right: 5vw; */
    filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, .9)) drop-shadow(0 0 6px rgba(255, 255, 255, .8)) drop-shadow(0 0 10px rgba(255, 255, 255, .6));
}



.heroVisual div h2 {
    font-family: "Noto Serif JP";
    font-size: 5vw;
    font-weight: 700;
    line-height: 8vw;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.square {
    display: inline-block;
    position: relative;
    font-family: "Noto Serif JP";
    font-weight: 700;
    left: 10px;
    color: #ffffff;
    margin: 0 10px 0 0;
    padding: 0;
    z-index: 900;
}

.square::before {
    content: "";
    display: inline-block;
    position: absolute;
    background: #ffb056;
    width: 6.5vw;
    height: 6.5vw;
    top: 1vw;
    left: -0.8vw;
    z-index: -900;
}

.eventTitle {
    /* display: flex;
    flex-direction: column;
    justify-content: end; */
    position: relative;
    margin-left: 5vw;
}

.eventTitle h2,
.eventTitle h4 {
    text-shadow: 3px 3px 10px rgb(252, 204, 72);
}


.eventTitle h4 {
    font-size: 2vw;
    font-family: "Noto Serif JP";
    font-weight: 600;
}

.eventTitle h2 {
    display: inline-block;
    width: auto;
    line-height: 100px;
    font-size: 4vw;
    background-image: linear-gradient(rgba(0, 0, 0, 0) 30%, rgba(119, 188, 255, 0.5) 100%);
    background-position: bottom 0px left 0px;
    width: fit-content;
}




.themeOfEvent {
    position: relative;
    display: block;
    /* width: 100vw; */
    /* height: 97vw; */
    /* max-height: 500px; */
    background-size: 100%;
    bottom: 0px;
}



#ensemble {
    font-size: 2.5rem;
    font-weight: 500;
    position: relative;
    left: -4px;
}


.themeOfEvent .wrapper {
    display: flex;
    position: relative;
    justify-content: space-around;
    max-width: 95%;
    /* top: -30px; */
    /* padding: 10%; */
    width: 100%;
    height: 40vw;
    /* background: url("../images/collaboration.png"); */
    background-repeat: no-repeat;
    background-size: 57%;
    background-position: right;

    /* z-index: inherit; */
    opacity: 1;
    background-color: white;
    /* left: 50px; */
    align-items: center;
    /* padding-left: 65px; */
    mask-image: linear-gradiet(to right,
            rgba(0, 0, 0, 0),
            /* 左端：透明 */
            rgba(0, 0, 0, 0.6) 10%,
            /* 左30%地点：完全表示 */
            rgba(0, 0, 0, 0.6) 50%,
            /* 右70%地点まで：完全表示 */
            rgba(0, 0, 0, 0)
            /* 右端：透明 */
        );
}

.themeOfEvent .sectionTitle {
    position: relative;
    bottom: 50px;
    height: auto;
    /* margin-bottom: 50px; */
    z-index: 2;
}

.concept {
    position: absolute;
    display: block;
    width: 90%;
    top: 12vw;
    /* height: 30vh; */
    z-index: 2;
    padding-left: 0;
    /* margin-left: -10%; */
    /* background-color: whitesmoke; */
}


#collaboration {
    position: absolute;
    min-width: 400px;
    /* height: 10vw; */
    width: 60vw;
    /* margin: 0 auto; */
    /* opacity: 0.7; */
    bottom: 0;
    /* left: 45px; */
    top: -10%;
    right: 0;
    z-index: -30;
}

.concept p {
    margin: 0;
    font-size: max(1.5vw, 17px);
    position: relative;
    left: 2px;
}

/* .collaboration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 17vh;
}

.nationCircle {
    position: absolute;
    display: inline-block;
    width: 16vw;
    height: 16vw;
    max-width: 140px;
    max-height: 140px;
    margin: 0;
    padding: 0;
    border: 5px solid white;
    border-radius: 50%;
    background: rgba(124, 137, 252, 0.596);
    text-align: center;
    color: white;
}

.instrumentCircle {
    position: absolute;
    display: inline-block;
    width: 16vw;
    height: 16vw;
    max-width: 140px;
    max-height: 140px;

    padding: 0;
    line-height: 160px;
    border: 5px solid white;
    border-radius: 50%;
    background: rgba(124, 137, 252, 0.596);
    text-align: center;
    vertical-align: middle;
    color: white;
}

.nationCircle h5,
.instrumentCircle h5 {
    position: relative;
    vertical-align: middle;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    font-size: large;
}

#shizuoka {
    top: 25vw;
    left: -6vw;
}

#california {
    top: 24vh;
    right: 8vw;
}

#piano {
    bottom: 21vh;
    left: 10vw;
}

#saxophone {
    bottom: 23vh;
    right: 12vw;
} */


/* コンセプトセクション */

.conceptTitle {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    top: -140px;
    left: -140px;
    /* float: left; */
    transform: rotate(-15deg);

}

.conceptTitle h3 {
    font-size: 130px;
    position: absolute;
    color: rgba(194, 194, 194, 0.5);
    /* top: 50px; */
    /* width: 100%; */
    height: auto;
    letter-spacing: -15px;
    z-index: 0;
}


.smallChar {
    display: inline-block;
    position: relative;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: center;
    padding-top: 0;
    transform: translateY(-40px);
}

/* .conceptTitle h3::bfore {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.7);
    top: -40px;
    left: -35px;
    filter: blur(7px);
    z-index: -1;
    border-radius: 50%;

} */

.contentsDescription {
    display: block;
    position: relative;
    /* left: 20px; */
    /* padding-right: 30px; */
    padding-left: 20px;
}





.contents {
    background-color: rgba(248, 227, 200, 1);
    position: relative;
    z-index: 30;
}

.openRehearsalWrapper {
    /* display: flex; */
    position: relative;
    width: 100%;
    /* margin-left: 15px; */
    margin-top: 0px;

}

.contentsTitleOpenRehearsal {
    display: inline-block;
    padding: .5em .5em;
    border-left: 10px solid #2589d0;
    border-bottom: 3px solid #d2d2d2;
    background-color: #f2f2f2;
    color: #333333;
    font-size: calc(1rem + .5vw);
    position: relative;
    width: 100%;
    height: auto;
}




.contentsTitle {
    display: inline-block;
    padding: .5em .5em;
    border-left: 10px solid #2589d0;
    border-bottom: 3px solid #d2d2d2;
    background-color: #f2f2f2;
    color: #333333;
    font-size: calc(1rem + .5vw);
    position: relative;
    width: 100%;
    height: auto;
}

.content1 {
    display: flex;
    position: relative;
    align-items: end;
}

.content2 {
    display: flex;
    position: relative;
    /* top: 110px; */
    /* margin-bottom: 120px; */
    padding-bottom: 50px;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    left: -20px;
}




#ricLesson {
    position: absolute;
    top: -80px;
    left: -100px;
    width: 160%;
    /* height: 100%; */
    object-fit: contain;
    filter: drop-shadow(0px 5px 4px black);
}








/* タイムテーブル */

.timeTableSection {
    /* display: flex; */
    width: 50%;
    flex-direction: column;
    position: relative;
    /* width: auto; */
    /* height: auto; */
    /* text-align: end; */
    /* margin: 0 auto; */
    justify-content: end;
    /* align-items: end; */
    bottom: -24px;
    /* right: -35px; */
}

.timeTableSection ul {
    display: block;
    position: relative;
    top: -24px;
    margin-bottom: 0;
}


.timeTable {
    table-layout: fixed;
    /* display:inline-table; */
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
    /* border: none; */
    caption-side: top;
    /* padding: 0px 0 0 24px; */
    margin: 0;
    width: auto;
    /* height: 100%; */
    position: relative;
    /* margin-left: 15px; */
    text-align: center;
    /* border-color: #fff; */
    /* font-size: 13px;
    letter-spacing: 0px; */
}

.timeTable tbody {
    position: relative;
    width: 100%;
}

.timeTable tbody tr {
    height: 50px;
}

.timeTable tbody tr th {
    padding-left: 13px;
    padding-right: 13px;
    background-color: rgba(255, 255, 255, 0.4);
    min-width: 80px;
    position: relative;
    width: auto;
}

.timeTable tbody tr td {
    position: relative;
    width: 100%;
    min-width: 200px;
    padding-left: 13px;
    padding-right: 13px;
    background-color: rgba(255, 255, 255, 0.4);
}

.timeTable tbody tr td p {
    margin: 0;
    padding: 0;
    font-size: small;
}

.content1 ul {
    /* border-top: 1px solid rgb(112, 112, 112); */
    /* list-style-type: none; */

    font-size: small;
    margin: 5px 0 0 20px;
    padding: 0;
    display: inline-block;
}

.content1 ul li {
    margin: 3px 0 0 0;
}


.openRehearsalRightSection {
    width: 50%;

}

.studyingRight div ul {
    display: inline-block;
    position: absolute;
    /* top: 150px; */
    /* width: 100%; */
    /* right: 30px; */
    /* padding-right: 50px; */
}

.studyingRight div ul li {
    font-weight: 300;
    margin: 5px 0;
}

.contentsImg {
    position: relative;
    display: inline;
    width: 50%;
    shape-margin: 5px;
    shape-outside: url(../images/lessonRic.png);
    float: left;
}






.concerts {
    position: relative;
    display: block;
    width: 100%;
    /* top: 100px; */
    /* margin-left: 15px; */
}

.nextStageEnsemble {
    display: block;
    position: relative;
    /* margin-left: 150px; */
    /* top: 0px; */
    /* z-index: 60; */
}

.premiumConcert {
    display: block;
    position: relative;
    margin-top: 35px;
    width: 100%;
    height: auto;
}

.premiumWrapper {
    position: relative;
    display: flex;
    align-items: end;
    padding: 0;
    padding-left: 25px;
}

.contentsImg2 {
    display: block;
    position: relative;
    width: 50%;
    height: auto;
    /* float: right; */
    margin: 0 0 0 1rem;
    /* z-index: 3; */
}



.contentsImg2 figcaption {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    height: 0;
}

#saxAndPianoInChurch1 {
    /* left: 0; */
    display: block;
    position: relative;
    top: 24px;
    width: 100%;
    height: auto;
    /* z-index: 1; */
    /* object-fit: contain; */
}

.contentsImg2::after {
    content: "アメリカで共演したときの様子";
    position: relative;
    /* height: 100%; */
    width: 100%;
    display: block;
    text-align: center;
    /* bottom: 20px; */
    background-color: rgba(202, 202, 202, 0.82);
    z-index: 1;
}

/* .studyingSection {
    display: flex;
    margin: 30px 0 70px 0;
} */

.listeningSection {
    display: block;
    margin-top: 100px;
}





.sectionTitle {
    display: block;
    position: relative;
    height: 100%;
    align-items: center;
    /* margin: 50px auto 0 auto; */
    width: 100%;
    /* align-items: start; */
    /* vertical-align: top; */
    padding: 20px 0 10px 0;
}


.sectionTitle h3 {
    position: relative;
    display: block;
    text-align: center;
    width: auto;
    /* vertical-align: top; */
    margin: 0px auto 0px auto;
}



.sectionTitle h3::before {
    content: attr(data-en);
    position: relative;
    width: 100%;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(119, 188, 255, 0.15);
    font-size: 60px;
    display: block;
    text-align: center;
    margin: 0 auto;
}





caption {
    width: auto;
}

.pctimeTable {
    margin: 0 auto 15px;
    width: 100%;
    left: 0;
}

.pctimeTable caption {
    padding: 0;
    margin: 0;

}



.participate {
    /* color: white; */
    /* background-color: #27427A; */
    /* border-radius: 0 15px 0 0; */
    margin: 0;
    /* padding: 0; */
}


.participateSection {

    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    margin-right: 50px;
    padding-top: 20px;

}

.participateSection h2 {
    font-size: 1.6rem;
    font-weight: 600;
}

.participateSection P {
    font-size: 1.1em;
    font-weight: 450;
}




#participateIMG {
    /* position: relative; */
    /* display: block; */
    /* object-fit: cover; */
    /* width: 50%; */
    /* height: auto; */
    margin: 0 0 -10px 15px;
    /* padding: 0; */
    float: right;
    shape-margin: 100px;
    border-radius: 100%;
    shape-outside: ellipse();
    top: -25px;
}

.advantagesSection {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 100px;
    padding: 0;
}

.advantagesSection ul {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 25px 0;

}

.advantagesSection ul li {
    width: 45%;
    padding: 0 0px 25px 0;
}

/* .advantagesSection ul li div {
    width: 50%;
} */




#participateBtn {
    width: 220px;
    height: 50px;
    border-radius: 30px;
    /* margin-right: 15px; */
}


.conversionButtons {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0;
    bottom: 0;
    right: 0;
}



.Ric_and_Hayato_Photo {
    position: relative;
    /* 相対位置に指定 */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%;
    height: 100%; */
    width: 270px;
    height: 270px;

    object-fit: cover;
    /* float: right; */
}



/* 演奏者情報 */

.players {
    background-color: #d2d2d2;
}

.eachPlayer {
    display: grid;
    margin: 0px auto;
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    grid-template-columns: 300px 1fr;
    grid-template-areas:
        "img txt"
        /* 1行目：A | B */
        "img txt2";
    /* 2行目：A | C */
    gap: 0.5rem;
    align-items: start;
    position: relative;
    padding-bottom: 30px;
}

.profileImage {
    /* max-height: 300px; */
    display: inline-block;
    position: relative;
    width: 250px;
    height: 250px;
    object-fit: cover;
    /* border: 1px solid black; */
    border-radius: 10px;
    margin: 0 0px 20px 20px;
    z-index: 1;
    /* order: 1;
    flex: 1 1 300px; */

}

.textCol {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.profileImgWrapper {
    grid-area: img;
}

.playerName {
    margin: 0px 0 15px 0;
    padding: 0;
    display: inline;
    position: relative;
    /* width: 100%; */
    /* order: 2;
    flex: 1 1 200px; */
    grid-area: txt;
}

.profileDescription {
    position: relative;
    /* margin-left: 13px; */
    /* width: 50%; */
    display: inline;
    /* order: 3;
    flex: 1 1 200px; */
    grid-area: txt2;
}

.playerName::before {
    content: "";
    display: inline-block;
    border-left: 2px solid #B59C63;
    border-right: 1px solid #B59C63;
    width: 5px;
    height: 25px;
    position: relative;
    top: 5px;
    left: -5px;
    /* -webkit-box-sizing: border-box; */
    /* box-sizing: border-box; */
}



.profDetail {
    display: block;
    margin-left: auto;
    text-align: end;
}

.profileTitle {
    font-size: medium;
    padding: 0.5rem 1rem;
    border-bottom: 3px solid #000;
    background: #f4f4f4;
    margin-top: 25px;
}

.profText {
    margin-left: 1rem;
}








.players h2,
.contents h2 {
    font-family: "Noto Serif JP";
    text-align: center;
    margin-bottom: 50px;

}

.players h2:before,
.players h2:after,
.contents h2:before,
.contents h2:after {
    content: '';
    position: relative;
    top: -10px;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: black;
}

.players h2:before,
.contents h2:before {
    left: 0;
}

.players h2:after,
.contents h2:after {
    right: 0;
}






/* 料金表 */

.feeWrapper .sectionTitle h3 {
    margin-bottom: 15px;
}

.feeTable tbody tr th {
    text-align: center;
}


.feeTable th,
.feeTable td {
    /* background-color: transparent; */
    padding: 20px;

}

.feeTable tbody tr td span {
    font-size: small;
    font-weight: 600;
    margin-left: 5px;
}

.dayFee th,
.dayFee td {
    color: #8f8f8f;
}

.feeDescription ul li {
    margin-bottom: 10px;
    list-style-type: square;
}

.cvtBtn {
    display: block;
    position: relative;
    border-radius: 0;
    width: auto;
    padding: 20px 40px;
    background-color: rgb(255, 252, 61);
    border-radius: 5px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: larger;
    box-shadow: 2px 2px 6px 0 black;
}

.cvtBtn::after {
    content: ">";
    display: inline-block;
    position: relative;
    right: -15px;
}

.ticketCaution h6 {
    background-color: rgb(249, 166, 151);
    display: block;
    position: relative;
    width: 100%;
    padding: 10px 20px;
    color: white;
}

.ticketCaution {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 20px auto;
    border: 1px solid rgba(249, 166, 151, 100);
}

.ticketCaution h6 {
    margin: 0;
    padding: 10px;
}

.ticketCaution ul {
    margin: 0;
    padding: 10px;
    display: block;
    position: relative;
    width: auto;
}

.ticketCaution ul li {
    position: relative;
    width: auto;
    margin-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.plusButton {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    /* background-color: #2C3E5C; */
    /* color: white; */
    border: #000 solid 1px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    cursor: pointer;
}


.advantageTitle {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.tableSectionWrapper,
.tableSectionWrapperTitle {
    background-color: #d2d2d2;
    padding: 0 20px;
}

.tableSectionWrapperTitle {
    padding-top: 5px;
    padding-bottom: 5px;
}

.tableSectionWrapper table thead tr th::before {
    /* background-color: #d2d2d2; */
    content: "■";
}

.tableSectionWrapperTitle h5 {
    display: inline-block;
    margin: 10px 0;
}

.tableSectionWrapper {
    position: relative;
    display: flex;
    /* justify-content: space-between; */
    width: auto;
    /* margin-left: 20px; */
    /* flex-wrap: wrap; */
    /* padding: 0; */
}

.payWayTable1 {
    position: relative;
    width: auto;
    max-width: 60%;
    margin-right: 20px;
}

.payWayTable2 {
    position: relative;
    width: 100%;
    max-width: 40%;
    /* padding-right: 10px; */
}



.payWayTable1,
.payWayTable2 {
    /* width: 100%; */
    /* max-width: 600px; */
    /* margin: 0 auto; */
    border-collapse: collapse;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    /* margin-right: 20px; */
}

.payWayTable1 tbody tr td ul {
    display: flex;
    flex-wrap: wrap;
}

.payWayTable1 tbody tr td ul li {
    padding-right: 50px;

}

.tableSectionWrapper table tbody tr td ul {
    position: relative;
    padding-right: 10px;
    padding-left: 20px;
    margin-left: 0;
}




/* 開催概要 */


.eventTable {
    position: relative;
    width: 100%;
    /* max-width: 690px; */
    max-width: 100%;
}


.itemName {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.eventTable tbody tr td dl div {
    display: flex;
}

.eventTable tbody tr td ul {
    list-style-type: square;
    /* padding: 0 0 0 25px; */
    margin: 0 0 0 0px;
}

.eventTable tbody tr td ul li {
    margin: 15px 0;
    padding: 10px;
}

.eventTable tbody tr td dl {
    margin-bottom: 0;
}



.oneEventDetail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* .oneEventDetail table tr {
    padding: 10px;
} */

.oneEventDetail table tr td,
.oneEventDetail table tr th {
    /* width: 100%; */
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
    border-bottom: 0.1px solid rgb(224, 224, 224);
    border-top: 0.1px solid rgb(224, 224, 224);
}

.oneEventDetail table tr td {
    padding-left: 30px;
    /* width: 70%; */
}

/* .modal.show .modal-dialog {
    z-index: 200;
}

.modal-backdrop.show {
    z-index: 0;
} */

.oneEventDetail table tr th {
    padding: 10px;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-align: center;
    /* width: 30%; */
    background-color: rgb(255, 248, 238);

}

/* dt {
    font-weight: 400;
} */

.tdthumbnail {
    /* text-align: center; */
    position: relative;
    width: 100%;
    /* max-width: calc(100% - 10px); */
    display: flex;
    justify-content: center;
}

.tdthumbnail div {
    /* margin: 0 5px; */
    position: relative;
    width: 100%;
    max-width: calc(670px / 2);
}

.tdthumbnail a {
    display: block;
}

.thumbnailImg {
    display: block;
    position: relative;
    width: 100%;
    max-width: calc(670px / 2);
}

.tdthumbnail div figcaption {
    text-align: center;
}

.frontFlyer {
    margin-right: 5px;
}

.backFlyer {
    margin-left: 5px;
}


.detailButton {
    display: block;
    margin-top: 10px;
}


.footer {
    text-align: center;
    /* margin-top: 50px; */
    padding: 30px 0;
    background-color: #2C3E5C;
    display: block;
    width: 100%;
    height: auto;
    color: white;
}

footer {
    background-color: #0C2D52;
    opacity: 0;
    /* 下にずらして見えない位置 */
    transform: translateY(-150%);
    transform: translateX(0);
    /* マウスも通り抜ける */
    transition: opacity 0.4s ease, transform 0.01s ease;
    transition: all 1s ease;
    /* 見えない間はクリック無効にするなら追加 */
    pointer-events: none;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
    transform: translateX(0);
    pointer-events: auto;
    width: 100%;
}


.footerLogoBox img {
    height: 60px;
}

.mailAddress {
    text-decoration: none;
    color: white;
}

/* .copyright {
    margin-bottom: 50px;
} */






@media screen and (max-width:800px) {



    .eachPlayer {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
    }

    .textCol {
        display: contents;
    }

    .profileImgWrapper {
        order: 1;
        margin: 0 auto;
    }

    .profileImage {
        margin: 0 auto 10px;
        position: relative;
        /* width: 100%; */
        /* height: auto; */
        object-fit: cover;

    }

    .profileDescription {
        /* display: flex;
        flex-direction: column; */
        order: 2;
    }

    .playerName {
        order: 0;
    }




    .concept {
        position: relative;
        top: 10px;
        text-align: center;
        /* padding-left: 0; */
        /* margin-left: 0; */
        margin: 0 auto;
        width: 100%;
    }


    .themeOfEvent .wrapper {
        position: relative;
        display: block;
        padding-top: 5%;
        /* max-width: fit-content; */
        height: 105vw;
    }

    #collaboration {
        position: relative;
        width: 100%;
        top: -5vw;
        right: auto;
        min-width: auto;
        z-index: 5000;
    }


    .concept p {
        font-size: 1.1rem;
        /* padding-left: 0; */
        /* left: 0; */
    }




    .openRehearsal {
        margin-left: 0;
        display: block;
    }

    .premiumWrapper {
        display: flex;
        flex-wrap: wrap;
        padding-right: 25px;
    }

    .contentsImg2 {
        margin: 0;
        width: 100%;
    }

    .circle {
        margin: 0 auto;
        width: 100%;
        left: 0;
    }


    #ricLesson {
        position: relative;
        display: inline;
        height: auto;
        /* width: 100%; */
        top: -125px;
        /* width: 65%; */
        left: -120px;
        /* shape-margin: 10px; */
        /* shape-outside: url(../images/lessonRic2.png); */
        /* float: right; */
        order: 0;
    }

    .openRehearsalRightSection {
        width: 100%;
    }

    .content2 {
        display: block;
    }

    .content1 {
        flex-wrap: wrap;
    }

    .contentsDescription {
        /* left: 15px; */
        padding-right: 10px;
        display: inline-block;
    }

    .contentsDescription {
        line-height: 1.6;
    }

    .timeTable {
        position: relative;
        /* width: 100%; */
        padding-right: 0;
        order: 2;
    }

    .timeTable tbody tr {
        position: relative;
        width: 100%;
    }

    .timeTable tbody {
        position: relative;
        width: 100%;
    }

    .timeTable tbody tr td {
        position: relative;
        width: 100%;
    }


    .studyingRight div {
        position: relative;
        right: 0;
        bottom: 20px;
        left: -10px;
    }
}









@media screen and (max-width:430px) {



    .subarea {
        padding-top: 0;
    }


    .menuContent {
        display: none;
    }










    section .wrapper {
        width: 90%;
        max-width: none;
    }

    .sectionTitle h3 {
        margin-bottom: 30px;
    }

    .conceptTitle {
        top: -130px;
        left: -50px;
    }



    .participateSection {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    #participateIMG {
        float: none;
        margin: 0 auto;
    }






    .advantagesSection ul {
        display: inline-block;
    }

    .advantagesSection ul li {
        width: 100%;
        padding: 0;
        margin: 25px 0;
    }

    .advantageTitle {
        margin-bottom: 2px;
    }

    .oneEventDetail tbody tr th {
        width: 35px;
    }

    .oneEventDetail tbody tr td {
        width: auto;
        padding: 10px 0 15px 15px;
    }

    .eventTable tbody tr th {
        white-space: nowrap;
        width: auto;
    }

    .advanceFee td h2,
    .dayFee td h2 {
        display: block;
        text-align: end;
    }

    .dayFee td span,
    .advanceFee td span {
        display: block;
        position: relative;
        margin-left: 0;
        text-align: end;
        right: -8px;
    }

    caption {
        position: relative;
        width: 100%;
    }

    .feeTable tbody tr th {
        padding: 10px;
        width: 85px;
    }


    .tableSectionWrapper {
        display: block;
        width: 100%;
        padding-bottom: 20px;
    }

    .payWayTable1,
    .payWayTable2 {
        width: 100%;
        max-width: none;
    }

    .payWayTable2 {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}