@charset "UTF-8"; 

*{
    padding: 0;
    margin: 0;
}

.bungee-regular {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*  */
header {
    display: flex;
    padding: 1.0%;
    background-color: black;
}

h1 {
    font-size: 1.6vw;
    margin-left: 1vw;
    width: fit-content;
    color: white;
    line-height: 2.3;
}

h1 a {
    display: block;
    text-decoration: none;
    color: white;
}


nav {
    width: 50%;
    margin-left: auto;
}

nav ul {
    display: flex;
    list-style: none;   
}

nav ul li {
    width: 25%;
}

nav ul li a {
    display: block;
    text-align: center;
    line-height: 2;
    text-decoration: none;
    color: white;
    font-size: 1.3vw;
    font-weight: 700;
    transition: 1s;
}


nav ul li a:hover{
    color: black;
    transition: 1s;
    background-color: white;
    border: 0.5vw solid red;
    border-radius: 3vw;
}



/* --------ここからmain 背景色で共通の部分-------- */

main {
    position: relative;
    width: 100%;
    height: 240vw;
}

/* アニメ */

.box1 {
    position: absolute;
    top: 30vw;
    left: 30%;
    width: 40vw;
    height: 42vw;
    animation: width_anime1 2s ease-in-out forwards;
    z-index: -20000;
}

@keyframes width_anime1 {
    0% {
        background-color: rgb(211, 208, 64);
        transform: scale(0,0);
    }

    100% {
        background-color: rgb(240, 237, 99);
        transform: scale(3,9.5);
    }
}

.box4 {
    position: absolute;
    top: 15vw;
    left: 31%;
    width: 40vw;
    height: 40vw;
    border-radius: 20vw;
    animation: width_anime2 1.3s ease-in-out forwards;
    animation-delay: 1s;
    z-index: -20000;
}

@keyframes width_anime2 {
    0% {
        transform: scale(0,0);
    }

    70% {
        transform: scale(1.0,1.0);
    }

    80% {
        transform: scale(0.9,0.9);
    }

    90% {
        transform: scale(1.1,1.1);
    }

    100% {
        background-color: rgb(211, 208, 64);
        transform: scale(1,1);
    }
}




/* ticketmark */
#Ticket {
    width: 10vw;
    height: 10vw;
    position: fixed;
    top: 12vw;
    left: 5vw;
    border-radius: 12vw;
    background-color: white;
    border: solid red 1vw;
    z-index: 10000;
}


#Ticket:hover {
    transform: rotateY(360deg);
    transition: 1s;
}

#Ticket a {
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 2.6vw;
    font-weight: 900;
    line-height: 3.8;
    font-weight: 600;
    color: red;
}

/* topに戻るマーク */
#top {
    width: 8vw;
    height: 3vw;
    position: fixed;
    top: 90vw;
    right: 5vw;
    border-radius: 2vw;
    background-color: black;
    z-index: 9000;
}

#top a {
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 2.0vw;
    line-height: 1.5;
    font-weight: 600;
    color: white;
}

#top small {
    font-size: 0.8vw;
    line-height: 1.7;
}

/* メインビジュアル部分 */

.sake-rogo {
    width: 120%;
    padding-top: 3vw;
    margin-left: -8vw;

}

.sake-rogo img {
    width: 100%;
    vertical-align: bottom;
}



/*  */
.hukidashi01 {
    width: 10vw;
    height: 10vw;
    position: absolute;
    top: 20vw;
    right: 10vw;
    border-radius: 12vw;
    background-color: red;
    animation: hukidashi01 0.8s ease-in-out forwards;
}

/* hukidashi01のアニメーション */

@keyframes hukidashi01 {
    100% {
        transform: scale(2.0,2.0);
    }
}

.hukidashi01 p {
    font-size: 1.3vw;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    white-space: pre-wrap;
    margin-top: 2.8vw;
    color: white;
}



/*  */
.hukidashi02 {
    width: 8vw;
    height: 8vw;
    position: absolute;
    top: 40vw;
    left: 13vw;
    border-radius: 12vw;
    background-color: red;
    animation: hukidashi02 0.8s ease-in-out forwards;
}

@keyframes hukidashi02 {
    100% {
        transform: scale(2.0,2.0);
    }
}

.hukidashi02 p {
    font-size: 1.2vw;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    white-space: pre-wrap;
    margin-top: 1.7vw;
    color: white;
}


/* キャッチ＋リード */
.catch {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4vw;
}

.catch h2 {
    font-family: "Bungee", sans-serif;
    font-size: 5vw;
    text-align: center;
    animation: catch 0.5s ease-in-out forwards;
    animation-delay: 0.2s;
    letter-spacing: 0.1rem;
    white-space: pre-wrap;
}

@keyframes catch { 
    100% {
        transform: scale(1.4,1.4);
    }
}


.catch p:nth-of-type(1) {
    font-size: 4vw;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2vw;
    margin-top: 7vw;
}

.catch p:nth-of-type(2) {
    font-size: 2vw;
    font-weight: 600;
    text-align: center;
    white-space: pre-wrap;
    margin-bottom: 2vw;
}

/* 動くグラス1 */
.glass1 {
    position: relative;
    top: -22vw;
    left: 0vw;
    width: 15vw;
    height: 15vw;
    opacity: 0.5;
    animation: glassanime 2s ease-in-out infinite;
}

.glass image {
    width: 100%;
}

@keyframes glassanime {
    50% {

    }
    100% {    
        margin-left: 1200px;
    }   
    }



/* 日時 */

.day {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -8vw;
}

.day h2 {
    width: 38%;
    font-size: 2.7vw;
    padding: 0.3vw;
    border-radius: 3vw;
    text-align: center;
    font-family: Arial;
    margin-left: auto;
    margin-right: auto;
    background-color: #202020;
    color: white;
}


.day p:nth-of-type(1) {
    font-family: Arial;
    font-size: 5vw;
    font-weight: 600;
    text-align: center;
    margin-top: 2vw;
    color: #202020;
}

.day p:nth-of-type(1)  span{
    font-family: Arial;
    font-size: 2vw;
    font-weight: 600;
    text-align: center;
    margin-top: 2vw;
    color: #202020;
}

.day p:nth-of-type(2) {
    font-size: 2.5vw;
    font-weight: 600;
    line-height: 1.9;
    text-align: center;
    color: #202020;
    white-space: pre-wrap;
    margin-top: 1vw;
}

.day p:nth-of-type(2)  span{
    font-size: 1.7vw;
    font-weight: 600;
    line-height: 1.8;
    color: #202020;
}



/* 会場 */
.place {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
}

.place h2 {
    width: 38%;
    padding: 0.3vw;
    border-radius: 3vw;
    font-size: 2.7vw;
    text-align: center;
    font-family: Arial;
    margin-left: auto;
    margin-right: auto;
    background-color: #202020;
    color: white;
}


.place p:nth-of-type(1) {
    font-size: 3vw;
    font-weight: 800;
    text-align: center;
    margin-top: 1.8vw;
    color: #202020;
}

.place p:nth-of-type(2) {
    font-size: 1.8vw;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    color: #202020;
}

/*  */

.hukidashi03 {
    width: 8vw;
    height: 8vw;
    position: absolute;
    top: 110vw;
    right: 15vw;
    border-radius: 12vw;
    background-color: white;
    animation: hukidashi02 0.8s ease-in forwards;
    animation-delay: 0.4s;
}

@keyframes hukidashi03 {
    100% {
        transform: scale(2.0,2.0);
    }
}

.hukidashi03 p {
    font-size: 1.2vw;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    white-space: pre-wrap;
    margin-top: 1.7vw;
    color: red;
}



/* 窓3つ部分 */

.windows-parent {
    width: 100%;
    height: 50vw;
    display: flex;
}


.window01 , .window02 , .window03 {
    width: 30%;
    margin-top: 6vw;
}

.window01 , .window02 , .window03 , img {
     width: 100%;
}



/* 窓1の中身 */
.window01 p:nth-of-type(1) {
    position: relative;
    top: -36vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 2.5vw;
    font-weight: 600;
    white-space: pre-wrap;
    margin-bottom: 2vw;
    color: red;
}

.window01 p:nth-of-type(2) {
    display: none;
    position: relative;
    width: 60%;
    top: -40vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5vw;
    font-size: 1.0;
    text-align: justify;
    color: #202020;
}

.window01 .wine-ph {
    width: 70%;
    position: relative;
    top: -40vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9.0vw;
}

.window01 .wine-ph img {
    width: 100%;
    border-radius: 1vw;
    vertical-align: bottom;
}



/* 窓2の中身 */
.window02 p:nth-of-type(1) {
    position: relative;
    top: -36vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 2.5vw;
    font-weight: 600;
    white-space: pre-wrap;
    margin-bottom: 2vw;
    color: red;
}

.window02 p:nth-of-type(2) {
    display: none;
    position: relative;
    width: 60%;
    top: -38vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5vw;
    font-size: 1.0;
    text-align: justify;
    color: #202020;
}

.window02 .wine-ph {
    width: 70%;
    position: relative;
    top: -40vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9.0vw;
}


.window02 .wine-ph img {
    width: 100%;
    border-radius: 1vw;
    vertical-align: bottom;
}


/* 窓3の中身 */
.window03 p:nth-of-type(1) {
    position: relative;
    top: -36vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 2.5vw;
    font-weight: 600;
    white-space: pre-wrap;
    margin-bottom: 2vw;
    color: red;
}

.window03 p:nth-of-type(2) {
    display: none;
    position: relative;
    width: 60%;
    top: -38vw;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5vw;
    font-size: 1.0;
    text-align: justify;
    color: #202020;
}

.window03 .wine-ph {
    width: 70%;
    position: relative;
    top: -40vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9.0vw;
}


.window03 .wine-ph img {
    width: 100%;
    border-radius: 1vw;
    vertical-align: bottom;
}



/* information */

.information {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6vw;
}

.information p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.8vw;
    font-weight: 600;
    text-align: center;
}

.information ul {
    list-style-type: none;
}

.information ul li {
    padding: 1.5vw;
    font-size: 1.8vw;
    border-bottom: 0.2vw solid #202020;
    text-decoration: none;
}


.information ul li:nth-of-type(1) {
    border-top: 0.2vw solid #202020;
    border-bottom: 0.2vw solid #202020;
    margin-top: 2vw;
}

.information ul time {
    text-indent: 2em;
    font-size: 1.8vw;
    padding-right: 4vw;
    list-style-type: none;
}

/* ワイン部分 */
.wine {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16vw;
}

.wine h3{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 5.5vw;
    text-align: center;
}

.wine p{
    font-size: 2.5vw;
    margin-top: 0.5vw;
    text-align: center;
}

/*  */
.wine-parent01 {
    width: 100%;
    margin-top: 3vw;
    flex-wrap: wrap;
}

.wine-ch {
    width: 100%;
    margin-bottom: 8vw;
}



/* 写真部分 */
.wine-ch figure {
    width: 100%;    
    margin-bottom: 1.1vw;
    border-radius: 1vw;
    overflow: hidden;
}

.wine-ch figure img {
    width: 100%;   
    border-radius: 1vw;
    transition: 1s;
}

.wine-ch:hover figure img {
    transform: scale(1.2,1.2);
    transition: 1s;
    opacity: 0.5;
}



/* テキスト部分 */
.wine-ch figcaption {
    font-size: 2.5vw;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2vw;
}

.wine-ch figcaption span{
    font-size: 1.8vw;
    font-weight: 400;
}

/* read more部分 */
.wine-ch  p{
    width: fit-content;
    margin-left: auto;
    margin-right: auto; 
}

.wine-ch  p a {
    display: block;
    position: relative;
    text-decoration: none;
    width: fit-content;
    font-size: 1.8vw;
    color: black;   
}

.wine-ch  p a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 0%;
    height: 0.2vw;
    background-color: red;
    transition: 0.5s;
}

.wine-ch  p a:hover::before {
    width: 100%;
    transition: 0.5s;
}

/*  */

.wine-parent02 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 3vw;
}

/* 動くグラス2 */
.glass2 {
    position: relative;
    top: -5vw;
    left: 0vw;
    width: 15vw;
    height: 15vw;
    opacity: 0.5;
    animation: glassanime 2s ease-in-out infinite;
    z-index: -1;
}

.glass image {
    width: 100%;
}

@keyframes glassanime {
    100% {    
        margin-left: 1200px;
    }   
    }


/* ビール部分 */
.Beer {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
}

.Beer h3{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 5.5vw;
    text-align: center;
}

.Beer p{
    font-size: 2.5vw;
    margin-top: 0.5vw;
    text-align: center;
}

/*  */
.Beer-parent01 {
    width: 100%;
    margin-top: 3vw;
    flex-wrap: wrap;
}

.Beer-ch {
    width: 100%;
    margin-bottom: 8vw;
}



/* 写真部分 */
.Beer-ch figure {
    width: 100%;    
    margin-bottom: 1.1vw;
    border-radius: 1vw;
    overflow: hidden;
}


.Beer-ch figure img {
    width: 100%;   
    border-radius: 1vw;
    transition: 1s;
}


.Beer-ch:hover figure img {
    transform: scale(1.2,1.2);
    transition: 1s;
    opacity: 0.5;
}



/* テキスト部分 */
.Beer-ch figcaption {
    font-size: 2.5vw;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2vw;
}

.Beer-ch figcaption span{
    font-size: 1.8vw;
    font-weight: 400;
}

/* read more部分 */

.Beer-ch  p{
    width: fit-content;
    margin-left: auto;
    margin-right: auto; 
}


.Beer-ch  p a {
    display: block;
    position: relative;
    text-decoration: none;
    width: fit-content;
    font-size: 1.8vw;
    color: black;   
}


.Beer-ch  p a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 0%;
    height: 0.2vw;
    background-color: red;
    transition: 0.5s;
}

.Beer-ch  p a:hover::before {
    width: 100%;
    transition: 0.5s;
}



.Beer-parent02 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 3vw;
}


/* ここからサブ要素（下地ベージュ）の大きなくくり */

.base-foot {
    width: 100%;
    height: 190vw;
    background-color: #f4f27f;
}

/* Ticketのエリア */
.Ticket {
    width: 70%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 5vw;
    margin-top: vw;
    padding-top: 3vw;
    padding-bottom: 0vw;
    border-radius: 2vw;
    background-color: white;
}

.ticket-hukidasi {
    position: absolute;
    width: 30vw;
    height: 13vw;
    top: -5.5vw;
    right: 5vw;
    clip-path: polygon(0 25%, 100% 24%, 100% 75%, 75% 75%, 66% 100%, 57% 75%, 0% 75%);
    background-color: red;    
}

.ticket-hukidasi p {
    font-size: 3vw;
    font-weight: 600;
    line-height: 4;
    text-align: center;
    color: white;

}


.Ticket-child1 {
    display: none;
    width: 0%;
}


.irasuto {
    display: none;
    width: 100%;
    margin-left: 2vw;
    margin-top: 5vw;
}

.irasuto img {
    display: none;
    width: 100%;
}

/*  */
.Ticket-child2 {
    width: 70%;
    padding: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.Ticke-read {
    font-size: 2.8vw;
    font-weight: 600;
    line-height: 1.8;
    white-space: pre-wrap;
    color: red;
}

.fee-ch01 {
    font-family: Arial, ;
    font-size: 4.3vw;
    font-weight: 700;
    margin-top: 1vw;
}

.fee-ch01 span {
    font-size: 3vw;
    font-weight: 400;
}

.fee-ch01 small {
    font-size: 2vw;
    font-weight: 400;
}

.fee-ch02 {
    font-size: 2.2vw;
    line-height: 1.8;
    margin-top: 1vw;
}


/* F&Q */

.FQ {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12vw;
}

.FQ h4 {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 3.5vw;
    border-radius: 3vw;
    border: 0.6vw solid;
    color: red;
    background-color: white;
}

.FQ h4 span {
    font-size: 2vw;
    padding-top: 1vw;
    padding-bottom: 1vw;   
}

/*  */

.FQ-parent {   
    padding-top: 1vw;
    padding-bottom: 1vw;
    background-color: rgb(211, 208, 64, 0.5);
    margin-bottom: 3vw;
    font-size: 1.8vw;
    border-radius: 1vw;
}

.FQ-parent:nth-of-type(1) {
    margin-top: 2vw;
}

.FQ-ch {
    line-height: 2vw;
   
}


.details {
    width: 20%;
}

/* access */

.access {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8vw;
}

.access h4 {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 3.5vw;
    border-radius: 3vw;
    border: 0.6vw solid;
    color: red;
    background-color: white;
}

.access-parent {
    display: flex;
    width: 100%;
    margin-top: 2vw;
}

.access-left {
    width: 50%;
}

.access-left p:nth-of-type(1) {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 2vw;
    margin-top: 1vw;
}

.access-left p:nth-of-type(2) {
    font-size: 1.7vw;
    line-height: 1.7;
    font-weight: 400;
    white-space: pre-wrap;
}

/*  */
.access-right {
    width: 50%;
    height: 28vw;
}

.access-right iframe {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}


/* atention */
.atention {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8vw;
}

.atention h4 {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 3.5vw;
    border-radius: 3vw;
    border: 0.6vw solid;
    color: red;
    background-color: white;
}

.atention p {
    font-size: 1.5vw;
    line-height: 1.8;
    margin-top: 2vw;
    white-space: pre-wrap;
}


/* footer */
footer {
    width: 100%;  
}

.footer-container {
    display: flex;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------- */

.footer-leftbox {  
    width: 70%; 
    margin-top: 3vw;
}

.footerflex-box {
    display: flex;
    width: 100%;
}


.footer-leftbox h6 {  
    font-weight: 600;
    font-size: 1.5vw;
}

.footer-addressbox {
    background-color: ;
}

.footer-addressbox address {
    font-style: normal;
    font-size: 1.2vw;
    margin-top: 1vw;   
    line-height: 1.8;
    white-space: pre-wrap;
}


.footer-leftbox i {
    font-size: 3vw;
    
    margin-top: 1.5vw;
}

/*  */

.footer-logobox {
    width: 20%;
    margin-right: 7%;
}

.footer-logobox img {
    width: 100%;
    vertical-align: bottom;
}

/*  */

.footer-leftbox p {
    width: 8em;
    border-radius: 30px;
    margin-bottom: 2%;
    margin-left: 11vw;
    margin-top: 1vw;
    background-color: black;  
}

.footer-leftbox p a {
    text-decoration: none;
    display: block;
    text-align: center;
    line-height: 3;
    color: white;
    font-size: 1.2vw; 
    font-weight: 600;  
}

/* -------------------------- */

footer ul {
    list-style: none;
    width: 30%;
    margin-top: 3vw;
}

footer ul li {
    line-height: 1.5;
    }


footer ul a {
    text-decoration: none;
    font-size: 1.3vw;
    color: #202020;
    }


.copy {
    padding-top: 2%;
    padding-bottom: 2%;
    margin-top: 4%;
    font-size: 1.5vw;
    text-align: center;
    background-color: black;
    color: white;
}