@charset "utf-8";

article{background-color: var(--GrayColor);}
/*-----------------------------------MainVisual*/
#MainVisual{
    height: 720px;
    position: relative;
    margin-bottom: 55px;
}
#MainVisual #container{ height: 100%}
#MainVisual #theTarget{}
#MainVisual #theTarget div{
    height: 720px;
    background-position: center;
    background-size: cover;
}
#MainVisual .skippr-nav-container{ display:none}
#MainVisual .skippr-previous{
    left: 1%;
}
#MainVisual .skippr-next{
    right: 1.5%;
}
#MainVisual #theTarget .MV01{ background-image: url(../../images/Theme/MV_alcohol03.webp)}
#MainVisual #theTarget .MV02{ background-image: url(../../images/Theme/MV_festival01.webp)}
#MainVisual #theTarget .MV03{ background-image: url(../../images/Theme/MV_alcohol01.webp);background-position: center bottom;}
#MainVisual #theTarget .MV04{ background-image: url(../../images/Theme/MV_festival02.webp); background-position: center bottom;} 
#MainVisual #theTarget .MV05{ background-image: url(../../images/Theme/MV_alcohol02.webp)}
#MainVisual #theTarget .MV06{ background-image: url(../../images/Theme/MV_festival03.webp)}




#MainVisual h1{
    position: absolute;
    top: 0;
    z-index: 97;
    left: 5%;
    width: 310px;
    box-sizing: border-box;
    background-color: rgb(255 255 255 / 85%);
    padding: 20px 25px 20px 25px;
}


#MainVisual h1:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 155px solid rgb(255 255 255 / 85%);
  border-right: 155px solid rgb(255 255 255 / 85%);
  border-bottom: 20px solid transparent;
}

#MainVisual .MainTxt{
    position: absolute;
    bottom: 55px;
    right: 70px;
    z-index: 99;
    font-size: 17px;
}

#MainVisual .MainTxt p{}
#MainVisual .MainTxt p + p{
    margin-top: 2em;
}
#MainVisual .MainTxt span{
    display: block;
    background-color: #fff;
    line-height: 1;
    padding: 4px 1px 5px 5px;
    width: fit-content;
    margin: 9px 0 0 auto;
}
#MainVisual .MainTxt span + span{}

/*----------------------------------MainIntro*/
#MainIntro{
    width: 910px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: 65px;
}
#MainIntro .photo{
    width: 250px;
}
#MainIntro .photo.left{
    order: 1;
}
#MainIntro .photo.right{
    order: 3;
}
#MainIntro dl{
    order: 2;
    text-align: center;
    padding: 0 30px;
    flex: 1;
}
#MainIntro dt{
    font-size: 27px;
    padding-bottom: 10px;
}
#MainIntro dd{
    font-size: 17px;
}
#MainIntro dl br{}


/*-----------------------------------------MainContents*/
#MainContents{
    margin: 0 auto;
    min-width: var(--MinWidth);
    padding-bottom: 80px;
    width: var(--Width);
    max-width: var(--MaxWidth);
}
#MainContents .Entry{display: flex;}
#MainContents .Entry:nth-of-type(even){
    flex-direction: row-reverse;
}
#MainContents .Entry .photo{
    width: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#MainContents .Entry .photo .new{
    position: absolute;
    top: 0;
    z-index: 1;
    left: 40px;
    background-color: var(--PointColor);
    font-size: 45px;
    font-weight: bold;
    width: 126px;
    text-align: center;
    padding: 10px 0 6px 0;
    line-height: 1;
}
#MainContents .Entry .photo .new:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 63px solid var(--PointColor);
  border-right: 63px solid var(--PointColor);
  border-bottom: 13px solid transparent;
}
#MainContents .Entry:nth-of-type(even) .photo .new{
    left: auto;
    right: 40px;
}
#MainContents .Entry .Main{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 40px 40px 40px;
}
#MainContents .Entry .Main .icon{
    width: 190px;
    margin-bottom: 3px;
}
#MainContents .Entry .Main h2{
    font-size: 34px;
    padding-bottom: 3px;
}
#MainContents .Entry .Main h3{
    font-size: 19px;
    padding-bottom: 15px;
}
#MainContents .Entry .Main .txt{
    line-height: 1.8;
}
#MainContents .Entry .Main .txt + .txt{
    padding-top: 1em;
}
#MainContents .Entry .Main .btn{
    margin-top: 25px;
    width: 70%;
}
#MainContents .Entry .Main .btn a{font-size: 17px;}
#MainContents .Entry#alcohol .Main{
    background-color: var(--Color_alcohol_thin);
}
#MainContents .Entry#festival .Main{
    background-color: var(--Color_festival_thin);
}

#MainContents .Entry#alcohol .Main .btn a:hover{
    background-color: var(--Color_alcohol_dark);
}
#MainContents .Entry#festival .Main .btn a:hover{
    background-color: var(--Color_festival_dark);
}