@charset "UTF-8";


/*------------------------------
Default styling 
--------------------------------*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.main {
    overflow: hidden;
    max-width: 1090px;
    margin: 0 auto;
}

.h2 .ruby,
.ain-visual-dayp,
.header-nav-item-p2 {
    font-family: "Kaisei HarunoUmi", serif;
    font-weight: 400;
    font-style: normal;
}


.ain-visual-dayp {
    font-weight: 500;
}

p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


/*------------------------------
Reusable classes 
--------------------------------*/

.application-button {
    position: relative;
    display: inline-block;
    width: 95px;
    height: 95px;
    border: 1px solid;
    box-shadow: 1px 2px 4px #b0b0b0;
    background-color: #E6ADCE;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.application-button-line {
    width: 95%;
    height: 95%;
    border: 1px solid #ffffff;
    background-color: #FFE9F4;
    border-radius: 50%;
}

.application-button:hover .application-button-line {
    background-color: #ffdae4;
}

.application-button p {
    position: absolute;
    display: inline-block;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
}

.application-span {
    font-weight: 700;
}


.h2 {
    position: relative;
    display: inline-block;
    padding: 20px 0 0 50px;
}

.h2::after {
    content: "01";
    position: absolute;
    top: -20px;
    left: 0px;
    font-size: 60px;
    color: #bebebe;
    z-index: -1;
}

.h2 {
    margin-bottom: 30px;
    /* margin: 0 auto; */
}

.h2 .ruby {
    font-size: 50px;
}

.ruby .rt {
    font-size: 14px;
    ruby-align: center;
}

.container {
    padding: 50px 30px;
}

.container-div-p4,
.main-concept-p {
    border-left: 1px solid #000;
    padding-left: 15px;
}




@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8rem);
    }

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


.container,
.main-visual-img,
.video {
    view-timeline-name: --fadeTimeline;
    view-timeline-axis: block;

    animation: fadeIn linear both;
    animation-timeline: --fadeTimeline;
    animation-range: entry 0% cover 40%;
}



/* .main-visual-smoke {
    position: relative;
}

.main-visual-smoke::before {
    position: absolute;
}

.main-visual-img {
    position: absolute;
    animation-name: fadein2;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}


@keyframes fadeIn2 {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(20px);
    }
} */


/*------------------------------
video 
--------------------------------*/

.main-movie {
    padding: 80px 0;
    background-image: url(../img/fashion_show_back.webp);
    background-size: cover;
    background-position: center;
}

.video {
    /* max-width: 100%; */
    width: 100%;
}



/*------------------------------
header 
--------------------------------*/

.header {
    width: 100%;
    height: 67px;
    background-color: #F2E8EE;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    /* padding: 15px 0 15px 10px; */
}

.header-container {
    width: 100%;
    /* height: 50px; */
    display: flex;
}

.h1 {
    width: 200px;
    /* width: 50%; */
    padding: 10px 0 15px 10px;
}

/* ハンバーガー共通 */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 23px;
    cursor: pointer;
    z-index: 10000;
    position: absolute;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #000;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ハンバーガーがアクティブ（クリック）時 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    /* 真ん中の線を消す */
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ナビゲーション */
nav {
    display: none;
    position: fixed;
    width: 50%;
    height: 70vh;
    left: 50%;
    background-color: #F2E8EE;
}

nav.open {
    display: block;
    /* text-align: center; */
    transform: translateX(0);
}

nav.open+.application-button-main {
    /* display: block; */
    text-align: center;
}

nav.open .application-button-menu {
    display: block;
}

.header-nav-menu {
    margin: 50px 0;
}

.header-nav-item {
    padding: 10px 0;
    text-align: center;
}


.header-nav-item-p1 {
    font-size: 7px;
}

.header-nav-item-p2 {
    font-size: 15px;
}

/* ボタン */
.application-button-div {
    width: 100%;
    height: auto;
    text-align: right;
    position: fixed;
    position: absolute;
    z-index: 1000;
    position: relative;
    top: 80px;
    right: 130px;
    /* left: 70vh; */
}

.application-button-div1 {
    width: 100%;
    height: auto;
    z-index: 1000;
    margin-top: 30px;
    display: inline-block;
    text-align: center;
}

.application-button-a {
    display: inline-block;
}

.application-button-main {
    position: fixed;
    z-index: 1000;
}



/*------------------------------
main-visual 
--------------------------------*/


.main-visual {
    background-image: url(../img/main_visual_back.webp);
}

.main-visual-smoke {
    padding: 150px 0 10px 0;
    background-image: url(../img/26mc_back_mainvisual.webp);
    background-repeat: no-repeat;
    background-size: 130%;
}




.main-day-logo {
    margin: 0 10px 20px 10px;
}

.ain-visual-dayp {
    display: inline-block;
    font-size: 27px;
    letter-spacing: 0.2em;
    background: linear-gradient(152deg, rgba(230, 41, 138, 1) 0%, rgba(135, 47, 142, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ain-visual-day {
    font-size: 60px;
}

.dayp-sta {
    font-size: 20px;
    letter-spacing: 0.1em;
}




.main-visual-line:first-child {
    font-size: 17px;
}


.main-visual-p {
    margin: 0 10px;
    font-size: 14px;
    font-weight: 600;
}

.main-visual-p::before {
    content: "<< ";
    font-weight: 100;
}

.main-visual-p::after {
    content: " >>";
    font-weight: 100;
}

.visual-button-span {
    font-weight: 800;
    color: #233860;
}


/*------------------------------
main-concept
--------------------------------*/

.main-concept {
    background-image: linear-gradient(180deg, rgba(255, 246, 251, 0.9) 15%, rgba(241, 238, 240, 0.9) 44%, rgba(250, 252, 255, 0.9) 99%);
    /* padding-bottom: 45px; */
}

.concept-container {
    background-image: url(../img/main_concept_back.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 20%;
}

.main-concept-h3 {
    font-size: 22px;
    margin-left: 20px;
    padding-top: 40px;
    padding-bottom: 15px;
    line-height: 25px;
}

.main-concept-p {
    text-align: left;
    font-size: 12px;
    /* padding-top: 15px; */
    /* padding-bottom: 30px; */
    margin-top: 15px;
}

.main-concept-div-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 380px;
    background-color: #000000;
}

.main-concept-div-ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
    position: absolute;
}

.main-concept-div-li {
    width: auto;
    flex: 0 0 auto;
    padding: 10px;
    transition: transform 0.3s ease-in-out;
}

.main-concept-div-li img {
    width: 220px;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* --- サムネイル --- */
.concept-thumbnails {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.concept-thumbnail {
    width: 70px;
    height: 50px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
}

.concept-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concept-thumbnail.active {
    opacity: 1;
    border-color: #555;
}

ruby {
    font-size: 50px;
}

rt {
    font-size: 14px;
}



/*------------------------------
main-thema
--------------------------------*/

.main-thema {
    background-image: linear-gradient(180deg, rgba(250, 252, 255, 0.9) 21%, rgba(238, 248, 254, 0.9) 96%);
}

.h2-thema::after {
    content: "02";
}

#main-thema {
    padding-top: 45px;
}

.h2-thema::after {
    content: "02";
}

.container-thema {
    height: 110vh;
    background-image: url(../img/main_thema_back.webp);
    background-repeat: no-repeat;
    background-size: 250%;
    background-position: center;
    padding: 0 30px;
    padding-top: 45px;
}

.container-h3 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 10px;
    padding-top: 30px;
    padding-bottom: 17px;
}

.main-thema-img {
    display: none;
}



.container-div {
    line-height: 20px;
}

.main-overview-date {
    padding-top: 50px;
}

.container-div-p1 {
    font-size: 30px;
}

.container-div-p2 {
    font-size: 9px;
}

.container-div-p3 {
    font-size: 16px;
}

.container-div-p4 {
    font-size: 12px;
    line-height: 23px;
}



/*------------------------------
main-overview
--------------------------------*/

.h2-over {
    margin: 45px 0 0 30px;
}

.h2-over::after {
    content: "03";
}

.live-button,
.traffic-button,
.traffic-button-main-overview {
    padding: 5px 0;
    margin-bottom: 10px;
}

.live-button {
    background: #FFF4F4;
    background: linear-gradient(100deg, rgba(255, 244, 244, 1) 6%, rgba(255, 246, 242, 1) 29%, rgba(255, 230, 237, 1) 100%);
}

.traffic-button,
.traffic-button-main-overview {
    background: #FFE9F4;
    background: linear-gradient(90deg, rgba(255, 233, 244, 1) 0%, rgba(227, 202, 255, 1) 100%);
}

.main-visual-line,
.main-visual-line-main-overview {
    padding: 15px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    text-align: center;
}

.live-button:hover {
    background: #FFF4F4;
    background: linear-gradient(100deg, #FFEEEE 6%, #ffebe3 29%, #FFD1DD 100%);
}

.traffic-button:hover,
.traffic-button-main-overview:hover {
    background: #FFE9F4;
    background: linear-gradient(90deg, #FFDDEE 0%, #D7B3FF 100%);
}


.main-overview-date-schedule-h3,
.main-overview-date-schedule-h3-1,
.main-overview-date-schedule-div4-h3,
.apply-div-h3 {
    margin-left: 20px;
}



.main-overview {
    /* padding: 0 30px; */
    padding-bottom: 45px;
    background-image: linear-gradient(180deg, rgba(238, 248, 254, 0.9) 4%, rgba(255, 234, 234, 0.9) 15%, rgba(255, 248, 248, 0.9) 32%, rgba(255, 241, 243, 0.9) 56%, rgba(253, 241, 252, 0.9) 76%, rgba(252, 240, 240, 0.9) 99%);
}

.main-overview-container2 {
    padding: 0 30px;
}

.main-overview-date {
    padding-bottom: 50px;
}


.main-overview-date-schedule-div1 {
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url(../img/main_insta_back.webp);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 30%;
}

.main-overview-date-div {
    width: 280px;
    display: inline-block;
    display: flex;
    background-color: #fff;
    justify-content: center;
    padding: 10px 20px;
    margin-left: 50px;
}

.main-overview-date-day-p {
    padding-right: 15px;
}

.main-overview-date-day1 {
    padding-left: 10px;
    border-left: 1px solid #000;
}

.main-overview-date-img {
    display: none;
}

.main-overview-date-h3,
.main-overview-date-schedule-h3,
.main-overview-date-schedule-h5 {
    font-size: 20px;
}

.main-overview-date-h3 {
    position: relative;
    /* top: 10px; */
    left: 30px;
    width: 50%;
}

.main-overview-date-day-p,
.main-overview-date-day-p1,
.main-overview-date-day-p2 {
    font-size: 17px;
}

.main-overview-date-schedule-h4 {
    width: 140px;
    font-size: 15px;
    border: solid 1px #000000;
    margin-top: 27px;
}

/*  */
.main-overview-date-schedule-div {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 180px;
    margin-left: 20px;
}

.time-schedule-th-time,
.time-schedule-th,
.main-overview-date-schedule-p,
.time-schedule-th-time1 {
    font-size: 13px;
}

.time-schedule-th-time {
    padding-left: 50px;
}

.time-schedule-th1 {
    font-size: 12px;
}

/* スケジュール表 */
/* テーブル全体をタイムライン風レイアウトに */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    /* 行の間に余白 */
    position: relative;
}

/* ▼ 緑の縦線 */
table::before {
    content: "";
    position: absolute;
    left: 105px;
    /* 時間の横あたり */
    top: 90px;
    width: 1px;
    height: 60%;
    background: #000000;
}

/* 行の基本スタイル */
tbody tr {
    position: relative;
}

/* ▼ 時間（左側の数字） */
.time-schedule-th-time,
.time-schedule-th-time1 {
    width: 80px;
    padding-right: 10px;
    text-align: right;
    font-weight: bold;
    vertical-align: top;
    /* color: #333; */
    border: none;
    background: none;
}

.time-schedule-th-time1 {
    position: relative;
    top: 30px;
}

/* ▼ イベントの右側カード */
.time-schedule-th,
.time-schedule-th1,
tbody td {
    padding-left: 20px;
}

/* 補足行（時間なし）はインデント調整 */
tbody td,
.time-schedule-th1 {
    /* margin-left: 20px; */
    /* display: block; */
}

/* 見栄え微調整 */
table caption {
    margin-bottom: 20px;
    padding-top: 25px;
}

/* 作品展示 */

.exhibition_of_works-li {
    padding-top: 40px;
}

.exhibition_of_works-h4 {
    border: solid 1px #000000;
    width: 70px;
}

.time-schedule-ul1 {
    width: 50%;
    height: auto;
    border-left: 1px solid #333;
    margin: 0 28px;
    margin-top: 10px;
    padding-left: 10px;
    /* padding: 0 35px; */
}

.time-schedule-li1,
.time-schedule-li2 {
    font-size: 15px;
    /* padding-top: 10px; */
    /* margin: 0 35px; */
}

.time-schedule-li1 {
    /* padding-top: 5px; */
    padding-bottom: 6px;
}

.time-schedule-li2 {
    padding-top: 6px;
    /* padding-bottom: 5px; */
}

/* ハイライト */

.main-overview-date-schedule-highlights-div {
    padding-top: 60px;
    background-color: #fff;
    padding-bottom: 20px;
}



.main-overview-date-schedule-h3 {
    position: relative;
    top: 40px;
    /* left: 10px; */
    width: 50%;
}

/* ハイライト_画像 */

.main-overview-date-schedule-highlights-figure {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.main-overview-date-schedule-highlights-img {
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.main-overview-date-schedule-highlights-img.active {
    display: block;
    opacity: 1;
}

/* ドット */
.nav-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.nav-container .dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.nav-container .dot.active {
    background: #000;
}


/*  */
.main-overview-date-schedule-div2 {
    /* background-color: #fff; */
    padding-bottom: 50px;
}


.figcaption-h4 {
    font-size: 16px;
}

/* 表彰式 */
.main-overview-date-schedule-div3 {
    padding-top: 50px;
    padding-bottom: 35px;
}

.main-overview-date-schedule-h3-1 {
    font-size: 20px;
    position: relative;
    top: 40px;
    /* left: 10px; */
    width: 50%;
}

.main-overview-date-schedule-ceremony {
    padding-top: 60px;
    background-color: #fff;
    /* padding-left: 10px; */
    /* padding-right: 10px; */
    padding-bottom: 30px;
}


.main-overview-date-schedule-figcaption-h4 {
    font-size: 13px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-overview-text {
    font-size: 11px;
    line-height: 20px;
    line-height: 20px;
    border-left: 1px solid #333;
    padding-left: 15px;
    /* margin: 20px 0; */
}

.main-overview-text1 {
    font-size: 11px;
    line-height: 20px;
    /* padding-bottom: 20px; */
    line-height: 20px;
    border-left: 1px solid #333;
    /* 線の太さ、種類、色を指定 */
    padding-left: 8px;
    /* テキストと線の間の余白 */
    margin: 5px 0;
}

/* 会場 */
.main-overview-date-schedule-div4 {
    padding-top: 35px;
}

.main-overview-date-schedule-div4-h3 {
    font-size: 20px;
    position: relative;
    top: 40px;
    /* left: 10px; */
    width: 50%;
}

.main-overview-date-schedule-venue-div {
    padding-top: 60px;
    background-color: #fff;
}

.main-overview-date-schedule-venue-div1 {
    text-align: center;
    padding-top: 14px;
    padding-bottom: 30px;
}

.main-overview-date-schedule-p {
    font-size: 17px;
    text-align: center;
}

.main-overview-date-schedule-venue-div-1 {
    padding-bottom: 25px;
}

.main-overview-date-schedule-venue-div2 {
    margin: 0 50px 20px 50px;
    line-height: 13px;
    border-left: 1px solid #333;
    padding-left: 15px;
}

.main-overview-date-schedule-p1 {
    font-size: 15px;
}

.main-overview-date-schedule-p2 {
    font-size: 9px;
    color: #FF0004;
}

.traffic-button-main-overview {
    margin: 0 15px;
}

/* お申し込み */
.apply {
    padding-top: 97px;
}

.apply-div-h3 {
    font-size: 20px;
    position: relative;
    top: 40px;
    /* left: 10px; */
    width: 50%;
}

.apply-div {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
}

.apply-div1 {
    padding: 0 30px;
}

.precautions-ul {
    padding: 0 13px;
}

.apply-p2 {
    padding-top: 8px;
    padding-bottom: 3px;
}

.apply-p1 {
    font-size: 14px;
}

.precautions-p {
    width: 70px;
    font-size: 12px;
}

.apply-p2,
.apply-p3 {
    font-size: 10px;
}

.apply-p2 {
    color: #FF0004;
}

/* 注意事項 */
.precautions-li1,
.precautions-li2 {
    font-size: 11px;
    list-style: inside;
}

.precautions-div {
    display: flex;
    padding-top: 40px;
    padding-bottom: 24px;
}

.precautions-line {
    display: block;
    width: 90%;
    height: 0;
    border-top: 1px solid black;
    margin: 9px 0 0px 20px;
}


/*------------------------------
main-instaLive
--------------------------------*/

.h2-insta::after {
    content: "04";
}



/*------------------------------
main-comment
--------------------------------*/

.h2-comment::after {
    content: "05";
}


/*------------------------------
insta live
--------------------------------*/

.insta-button-a {
    display: inline-block;
}

.insta-button {
    width: 110px;
    height: 110px;
}

.main-instalive {
    background-image: linear-gradient(180deg, rgba(252, 240, 240, 0.9) 3%, rgba(250, 232, 232, 0.9) 34%, rgba(255, 250, 244, 0.9) 94%);

}

.insta-container {
    /* background-image: url(../img/26mc_back_instagram.webp); */
    background-image: url(../img/main_insta_back.webp);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: right;
}

.main-instalive-p {
    font-size: 13px;
    max-width: 470px;
    margin: 0 auto;
}

.instalive-p-bottom {
    margin-bottom: 10px;
}

.instalive-p-bottom2 {
    margin-bottom: 50px;
}

.main-instalive-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-h3 {
    margin-bottom: 5px;
}

.live-ul {
    border-left: 2px solid #000;
    padding-left: 10px;
}

.live-ul-spacing,
.main-overview-date-spacing {
    letter-spacing: 0.1em;
}

/*------------------------------
main-comment
--------------------------------*/

.main-comment {
    background-image: linear-gradient(179deg, rgba(255, 250, 244, 0.9) 10%, rgba(254, 248, 247, 0.9) 40%, rgba(251, 241, 240, 0.9) 68%, rgba(242, 246, 249, 0.9) 90%);
}

.comment-container {
    padding-bottom: 60px;
}

.comment-name {
    text-align: center;
}

.comment-name img {
    width: 250px;
    box-shadow: 2px 4px 4px #b0b0b0;
    margin-bottom: 20px;
}

.comment-name-bottom {
    margin-bottom: 30px;
}

.comment-text {
    padding: 15px 20px;
    border: 1px solid #000;
    background-color: #F3F2F2;
    line-height: 1.7em;
}

.comment-text-bottom {
    margin-bottom: 20px;
}

/*------------------------------
footer
--------------------------------*/

.footer {
    background-image: url(../img/main_visual_back.webp);
}

.footer-container {
    padding: 15px;
}

.foot-logo,
.foot-sns {
    margin-bottom: 15px;
}


.foot-logo {
    width: 185px;
}

.address {
    font-size: 13px;
    margin-bottom: 30px;
}

.address-span {
    font-size: 14px;
}

.address-sp {
    display: none;
}

.footer-address-span {
    display: inline-block;
    transform: translateY(-2px);
}


.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.foot-sns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.square {
    width: 27px;
}

.youtube {
    width: 32px;
}

.foot-small {
    font-size: 8px;
}

.fotter-botann {
    display: flex;
    gap: 10px;
}