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;
}


.sticky-wrapper {
    position: relative;
    height: auto; /* 画面の高さのn倍 */
    z-index: -1;
}

/* ugokutokoの設定 */
.ugokutoko {
    position: relative;
    height: 100vh; /* 画面いっぱい */
    overflow: hidden;
}

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

.toplogo {
    position: absolute;
    height: 20vw;
    width: 20vw;
    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(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.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: 9999; /* 最も手前にくるように高いz-indexを設定 */
}

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

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

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

.line-container.left .border-line {
    left: 2%;
    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: calc(100vh - 4vw);
    }
}

/* 画面外側の白線設定 */
.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: 0;
    left: 0;
    width: 100vw;
    height: 2vw;
}

.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の設定 */
.catch-copy {
    text-align: center;
    font-size: 2vw;
    font-weight: normal;
}

.copy{
    padding-top: 2vw;
}

.attt{
    font-size: 5vw;
}

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

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

.aboutdetail {
    padding-top: 15vw;
    text-align: center;
    font-size: 2vw;
}

.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 - 15vw); /* 画像がこの位置に固定される */
    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 #583F99)
    drop-shadow(0vw 0.5vw 0.5vw #583F99)
    drop-shadow(-0.5vw 0vw 0.5vw #583F99)
    drop-shadow(0vw -0.5vw 0.5vw #583F99);
    
}

.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;
    line-height: 3vw;
}

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

.buybtn{
    padding-top: 2vw;
}

.buybtn .button {
    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: 20vh;
    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: 20vh;
    padding-bottom: 0vh;
    text-align: center;
    font-size: 3vw;
}

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

.snsblock{
    display: flex;
    justify-content: space-between;
    padding-left: 20vw;
    padding-right: 20vw;
    padding-top: 5vw;
    height: auto;
    width: 60vw;
}

.instagram{
    position: relative;   
    height: 40vw;
    width: 25vw; 
    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: 100%;
}

.twitter{
    position: relative;
    height: 40vw;
    width: 25vw;
    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: 25vw !important;
}

.access{
    padding-top: 20vh;
    padding-bottom: 20vh;
    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: 160vw; 
    height: 90vw;
    position: relative;
    margin-left: -40vw; 
    margin-top: -15vw;  
}

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

.place{
    font-size: 2vw;
    padding-top: 5vw;
}

footer {
    background-color: #106a8f;
    color: white; 
    padding: 7vw 0;
    margin-left: 2%;
    margin-right: 2%;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 96%;
    z-index: 101;
}

.kokentext{
    background-color: #106a8f;
    height: 5vw;
}