body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.section-wrapper {
    position: relative;
    height: auto; 
    z-index: -1;
}

/* ugokutokoの設定 */
.ugokutoko {
    position: relative;
    height: 100vh; 
    overflow: hidden;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20vw;
    height: 20vw;
    transform: translate(-50%, -50%);
}

.toplogo {
    position: absolute;
    height: 25vw;
    width: 25vw;
    min-height: 100%;
    min-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0; /* 初期状態は透明 */
    animation: logoFadeIn 2s forwards;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    66.67% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.kakomubou{
    position: fixed; /* 画面上部に固定 */
    top: 0; /* 画面上部からの距離0 */
    left: 0; /* 画面左端からの距離0 */
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* 四角のボーダーラインの設定 */
.border-line {
    position: absolute;
    background-color: #106a8f;
    opacity: 1;
    z-index: 9998; 
}

.line-container.top .border-line {
    top: 2vw;
    left: 2vw;
    width: 0;
    height: 1vw;
    animation: drawBorderHorizontal 1.5s forwards;
}

.line-container.right .border-line {
    right: 2vw;
    top: 2vw;
    height: 0;
    width: 1vw;
    animation: drawBorderVertical 1.5s forwards;
}

.line-container.bottom .border-line {
    bottom: 2vw;
    right: 2vw;
    width: 0;
    height: 1vw;
    animation: drawBorderHorizontal 1.5s forwards;
}

.line-container.left .border-line {
    left: 2vw;
    bottom: 2vw;
    height: 0;
    width: 1vw;
    animation: drawBorderVertical 1.5s forwards;
}

@keyframes drawBorderHorizontal {
    0% {
        opacity: 0.5;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 96%;
    }
}

@keyframes drawBorderVertical {
    0% {
        opacity: 0.5;
        height: 0;
    }
    100% {
        opacity: 1;
        height: 98%;
    }
}

.outer-border-line {
    position: fixed; /* 位置を固定 */
    background-color: white;
    z-index: 9999;
}

.outer-border-line.top {
    top: 0;
    left: 0;
    width: 100vw;
    height: 2vw;
}

.outer-border-line.right {
    top: 0;
    right: 0;
    width: 2vw;
    height: 100vh;
}

.outer-border-line.bottom {
    bottom: -98vw;
    left: 0;
    width: 100vw;
    height: 100vw;
}

.outer-border-line.left {
    top: 0;
    left: 0;
    width: 2vw;
    height: 100vh;
}


.about{
    padding-top: 40vh;
    padding-bottom: 20vh;
    text-align: center;
    font-size: 3vw;
}

.whats{
    font-family: "m-plus-2p", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 5vw;
    font-size: 5vw;
    letter-spacing: -0.1vw;
    padding-bottom: 7vw;
}

.atfes2023title{
    height: 5vw;
    margin-bottom: -0.75vw;
    opacity: 0;  /* 初期の透明度を0に設定 */
    transition: opacity 2s;  /* 透明度の変更に1秒かける */
}

.visible {
    opacity: 1;
}

.catch-copy {
    text-align: center;
    font-size: 2vw;
}

.copy{
    padding-top: 2vw;
}

.attt{
    font-size: 5vw;
}


.guest{
    padding-top: 20vh;
    padding-bottom: 0vh;
    text-align: center;
    font-size: 3vw;

}


.who{
    font-family: "m-plus-2p", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.1vw;
    color: #106a8f;
    font-size: 5vw;
}

.yokobou{
    height: 0.5vw; /* 指定された太さ */
    width: 70vw; /* 指定された横幅 */
    background-color: #106a8f; /* 指定された色 */
    margin: 1vw auto; /* 上下に1vwのマージンを適用し、左右は自動で中央に配置 */
    margin-top: -5vw;
}

.comingsoon{
    padding-top: 0vw;
    width: 60vw;
}

.guests{
    padding-top: 0vw;
    width: 60vw;
}

.fourguests{
    text-align: center;
    font-size: 2vw;
    font-weight: normal;
    padding-top: 5vw;
}

.events {
    display: flex;
    justify-content: space-between; /* 画像間のスペースを均等に分布 */
    position: sticky;
    top: calc(100vh - 100px); /* 画像がこの位置に固定される */
    padding-left: 20vw; /* 両端から10vwのスペースを確保 */
    padding-right: 20vw;
    z-index: 5;
    height: 15vw;
}

.eventlogo{
    width: 15vw;
    padding: 0 auto;
    text-align: center;
}

.events img {
    width: 12vw;
    height: 12vw;
    padding: auto;
    position: relative;
    transition: all 0.3s ease; /* スムーズな遷移を実現するためのトランジション */
    filter:drop-shadow(0.5vw 0vw 0.5vw #ffffff)
    drop-shadow(0vw 0.5vw 0.5vw #ffffff)
    drop-shadow(-0.5vw 0vw 0.5vw #ffffff)
    drop-shadow(0vw -0.5vw 0.5vw #ffffff);
}

.kumalogo:hover{
    transition: all 0.5s;
    width: 15vw;
    height: 15vw;
    transform: translate(0,-1.5vw);
    filter:drop-shadow(0.5vw 0vw 0.5vw #fb33db)
    drop-shadow(0vw 0.5vw 0.5vw #fb33db)
    drop-shadow(-0.5vw 0vw 0.5vw #fb33db)
    drop-shadow(0vw -0.5vw 0.5vw #fb33db);
    
}

.hebilogo:hover{
    transition: all 0.5s;
    width: 15vw;
    height: 15vw;
    transform: translate(0,-1.5vw);
    filter:drop-shadow(0.5vw 0vw 0.5vw #1696c0)
    drop-shadow(0vw 0.5vw 0.5vw #1696c0)
    drop-shadow(-0.5vw 0vw 0.5vw #1696c0)
    drop-shadow(0vw -0.5vw 0.5vw #1696c0);
}

.lionlogo:hover{
    transition: all 0.5s;
    width: 15vw;
    height: 15vw;
    transform: translate(0,-1.5vw);
    filter:drop-shadow(0.5vw 0vw 0.5vw #f3993a)
    drop-shadow(0vw 0.5vw 0.5vw #f3993a)
    drop-shadow(-0.5vw 0vw 0.5vw #f3993a)
    drop-shadow(0vw -0.5vw 0.5vw #f3993a);
}

.washilogo:hover{
    transition: all 0.5s;
    width: 15vw;
    height: 15vw;
    transform: translate(0,-1.5vw);
    filter:drop-shadow(0.5vw 0vw 0.5vw #a5200a)
    drop-shadow(0vw 0.5vw 0.5vw #a5200a)
    drop-shadow(-0.5vw 0vw 0.5vw #a5200a)
    drop-shadow(0vw -0.5vw 0.5vw #a5200a);
}


.ticket{
    padding-top: 25vw;
    padding-bottom: 0vw;
    text-align: center;
    font-size: 3vw;
}

.tickettitle{
    font-family: "m-plus-2p", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.1vw;
    color: #106a8f;
    font-size: 5vw;
}

.tickettext {
    text-align: left;
    font-size: 2vw;
}

ul{
    text-align: left;
    font-size: 2vw;
    padding-left: 18vw;
    padding-top: 2vw;
    width: 64vw;
    line-height: 3vw;
}

.buybtn{
    padding-top: 2vw;
}

.buybtn .button {
    padding-top: 2vw;
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid #106a8f;
    color: #106a8f;
    padding: 8px 16px;
    transition: background-color 0.3s, color 0.3s;  /* smooth transition effect */
}

.buybtn .button:hover {
    background-color: #106a8f;
    color: #ffffff;
}

.webcm{
    padding-top: 30vw;
    padding-bottom: 0vh;
    text-align: center;
    font-size: 3vw;
}

.webcmtitle{
    font-family: "m-plus-2p", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.1vw;
    color: #106a8f;
    font-size: 5vw;
}

video{
    padding-top: 5vw;
    width: 60vw;
}

.sns{
    padding-top: 30vw;
    padding-bottom: 0vw;
    text-align: center;
    font-size: 3vw;
    height: 290vw;
}

.snstitle{
    font-family: "m-plus-2p", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.1vw;
    color: #106a8f;
    font-size: 5vw;
}

.snsblock{
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 10vw;
    height: 40vw;
    width: 60vw;
}

.instagram{
    height: 100vw;
    width: 60vw; 
    overflow: scroll;
    border:0; 
    border-radius:3px; 
    box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);
}

.instagram-media{
    width:  calc(60vw - 16px);
}

@media screen and (max-width: 768px){
.instagram-media{
    min-width: 100% !important;
    margin: 0 -1px !important;
    border-right: none !important;
    border-left: none !important;
}
}

.twitter{
    margin-top: 50vw;
    padding-top: 0vw;
    height: 100vw;
    width: 60vw;
    overflow: scroll;
    border:0; 
    border-radius:3px; 
    box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);
}

.twitter-timeline{
    width: 100% !important;
}

.access{
    padding-top: 25vw;
    padding-bottom: 60vw;
    text-align: center;
    font-size: 3vw;
}

.accesstitle{
    font-family: "m-plus-2p", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.1vw;
    color: #106a8f;
    font-size: 5vw;
}

.map {
    width: 220%;  
    height: 220%; 
    position: relative;
    left: -60%; 
    top: -60%;   
}

.mapframe{
    width: 60vw;
    height: 30vw;
    overflow: hidden;
    margin: 5vw 20vw;
}

footer {
    background-color: #106a8f;
    color: white; 
    padding: 7vw 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.kokentext{
    background-color: #106a8f;
    width: 50vw;
}