@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
    list-style: none;
    vertical-align: baseline;
    text-decoration: none;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --base-text-color: #333333;
}

html {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    font-size: 62.5%;
    overflow-x:hidden;
}

body {
    -webkit-overflow-scrolling: touch;
    min-height: 100vh;
    color:var(--base-text-color);
    font-size: 1.6rem;
    line-height: 1.86;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow:hidden;
    
    animation-name:loading;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-delay:0.4s;
    opacity:0;
}

@keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

div, main, section {
  position: relative;
  display: block;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height:auto;
}

a {
    text-decoration: none;
    -webkit-transition-duration: 0.35s;
    -moz-transition-duration: 0.35s;
    -ms-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
}

a:hover {
    opacity:0.7;
    filter: alpha(opacity=70);
    -moz-opacity:0.7;
}

a:link, a:visited {
    color:var(--base-text-color);
    text-decoration:none;
}

.sp{
    display: none;
}


.hero_logo_asahi{
    position: absolute;
    /*width:115.0073px;
    left:10px;
    top:15px;*/
    width:7.18795625vw;
    left:0.625vw;
    top:0.9375vw;    
    line-height: 1;
    z-index: 10;
}

/********* グローバルナビ *********/
.gnav{
    display: block;
    width: 935px;
    height:90px;
    margin: 0 auto;
    background: #FF9696;
    background: linear-gradient(135deg,rgba(255, 150, 150, 1) 25%, rgba(242, 218, 2, 1) 100%);
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
    filter: drop-shadow(7px 7px 5px rgba(0,0,0,0.2));
    position: absolute;
    left:0;
    right:0;
    /*top:795px;*/
    top:49.6875vw;
    bottom:0;
    z-index: 20;
}

.gnav ul{
    display: flex;
    column-gap: 8px;
    justify-content: center;
    padding-top: 15px;
}

.gnav li{
    background-color: #fff;
    display: block;
    height:60px;
    text-align: center;
    font-size:16px;
    line-height: 1.375;
    border-radius: 30px;
    font-weight: 600;
    padding-top: 19px;
    cursor: pointer;
    position: relative;
}

.gnav li.current{
    color:#FF7D7D;
}

.gnav li:hover{
    color:#FF7D7D;
}

.gnav li:nth-of-type(1){
    width:120px;
}

.gnav li:nth-of-type(2){
    width:190px;
}

.gnav li:nth-of-type(3){
    width:170px;
    padding-top: 7px;
}

.gnav li:nth-of-type(4){
    width:170px;
}

.gnav li:nth-of-type(5){
    width:120px;
}

.gnav a{
    position: absolute;
    width: 100%;
    height: 100%;
    left:0;
    top:0;
}

.hamburger{
    display: none;
}


.fixednav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    top:0;
    z-index:100;
    height:0;
    display:none;
    background-color: red;
}

.fixednav .gnav{
    top:30px;
}

/*************************/

/********* セクションの見出しのパーツ *********/
.sec_heading{
    width: 353px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 35px;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.sec_heading_bg{
    line-height: 0;
}

.sec_heading span{
    position: absolute;
    left: 0;
    top:62px;
    width:100%;
}

.sec_heading_2l span{
    position: absolute;
    left: 0;
    top:45px;
    width:100%;    
}

.nakaguro{
    position: static !important;
    margin-left: -0.125em;
    margin-right: -0.125em;
}


/*************************/


/********* ボタンのシェブロン *********/
.btn_chevron{
    width: 10.5908px;
    position: absolute;
    right:16px;
    top:30px;
}
/*************************/

/********* SNSシェア *********/
.sns_link_heading{
    text-align: center;
    font-weight: 500;
    font-size:26px;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 99px;
    margin-bottom:35px;
}

.sns_link{
    display: flex;
    justify-content: center;
    gap:33px;
    margin-bottom:87px;
}

.sns_link li{
    width:58px;
    line-height: 0;
}

.sns_link li:nth-last-of-type(1){
    width:48.3333px;
    padding-top: 4.5px;
}

.sns_link li:hover{
    opacity: 0.7;
}
/*************************/


/********* フッター *********/
footer{
    /*height:615px;*/
    position: relative;
    padding-top:75px;
    padding-bottom: 27px;
    padding-left:20px;
    padding-right:20px;
    background-color: #fff;
}

footer::before{
    content: "";
    position: absolute;
    left:-50px;
    bottom:-50px;
    width:calc(100% + 100px);
    height:calc(98.5% + 50px);
    background: #FF9696;
    background: linear-gradient(135deg,rgba(255, 150, 150, 0.2) 25%, rgba(242, 218, 2, 0.2) 100%);
    -ms-filter: blur(15px);
    filter: blur(15px);
}

.footer_container{
    width:992px;
    margin:0 auto;
}

.credit_link{
    display: flex;
}

.credit_link li{
    font-size: 17px;
    line-height: 47px;
    width: 170px;
    height:47px;
    margin-right: 15px;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 28px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 28px;
    background-color: #fff;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.credit_link li a{
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
}

.credit_link li:hover{
    opacity: 0.7;
}

.credit_link li:nth-of-type(1){
    width:auto;
    background-color:transparent;
    border-radius: 0;
    margin-right: 18px;
}

.credit_link li:nth-of-type(1):hover{
    opacity: 1;
}


.credit_link li img{
    width: 131px;
    position: relative;
    top:4.5px;
}

.credit_link+.credit_link{
    margin-top:26px;
}

.footer_event_name{
    font-size: 19px;
    line-height: 1;
    font-weight: 600;
    margin-top: 59px;
    margin-bottom: 12px;
}

.footer_event_contact{
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 55px;
}

.footer_event_contact span{
    margin-right: 0.25em;
}

.footer_adv_credit{
    font-size: 12px;
    line-height: 1.66666667;
    font-weight: 600;
    margin-bottom: 10px;
}

.copyright{
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 20px;
    font-weight: 600;
}
/*************************/

/********* 追従ボタン *********/
.follow_btn{
    width: 250px;
    height:80px;
    margin: 0 auto;
    background: #FF9696;
    background: linear-gradient(135deg,rgba(255, 150, 150, 1) 25%, rgba(242, 218, 2, 1) 100%);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    filter: drop-shadow(7px 7px 7px rgba(0,0,0,0.15));
    text-align: center;
    color: #fff;
    font-size: 20px;
    /*line-height: 25px;*/
    line-height: 1;
    font-weight: 600;
    /*padding-top: 15px;*/
    padding-top: 29px;
    position: relative;
    cursor: pointer;
    position: fixed;
    right:30px;
    bottom:30px;
    z-index: 10;
}
/*************************/

/********* 読了位置 *********/
.readend{
    line-height: 0;
    height: 0;
}
/*************************/

/*20251203-------------------------------------*/
.p-gf__main__menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content:flex-start;
}
.p-gf__main__menu a {
  display: inline-block;
  width: auto;
  margin: 10px auto 0;
  text-align: center;
  font-size: 12px;
/*  line-height: 1.4rem;*/
  line-height: 1.86666667;
  font-weight: 600;
  color: #333;
}
.p-gf__main__menu a:hover {
  text-decoration: underline;
}
.p-gf__main__menu ul li {
  margin: 0 0 0 0.75rem;
}
.p-gf__main__menu ul li:nth-child(1) {
  margin: 0;
}
.p-gf__main__menu ul li::after {
  content: "|";
  color: rgba(0,0,0,0.3);
  margin: 0 0 0 0.75rem;
  padding: 0 0 0 0;
  font-size: 14px;
}
.p-gf__main__menu ul li:nth-last-child(1)::after {
  content: "";
}
@media (max-width: 834px) {
  .p-gf__main__menu ul {
    justify-content: space-between;
  }
  .p-gf__main__menu ul li {
    margin: 0;
  }
  .p-gf__main__menu ul li::after {
    content: "";
    margin: 0 0 0 0.75rem;
  }
  .p-gf__main__menu a {
    text-decoration: underline;
  }
}
/*---------------------------------------------*/


@media (min-width: 835px) {
    .gnav{
        display: block !important;
    }
}


@media (max-width: 834px) {
    .pc{
        display: none;
    }

    .sp{
        display: block;
    }

    body{

    }

    .hero_logo_asahi{
        position: absolute;
        /*
        width:98px;
        left:10px;
        top:11px;
        */
        width:26.13333333vw;
        left:2.66666667vw;
        top:2.93333333vw;
    }

    .hamburger{
        display: block;
        position: fixed;
        right:3.46666667vw;
        top:3.46666667vw;
        width: 11.73333333vw;
        height: 11.73333333vw;
        border-radius: 50%;
        background: #FF9696;
        background: linear-gradient(135deg,rgba(255, 150, 150, 1) 25%, rgba(242, 218, 2, 1) 100%);
        z-index: 100;
    }

    .hamburger_line01,  .hamburger_line02,  .hamburger_line03{
        width:6.93333333vw;
        height: 0.53333333vw;
        background-color: #fff;
        border-radius: 0.26666667vw;
        position: absolute;
        left:2.4vw;
        transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        transform-origin: center;
    }

    .hamburger_line01{
        top:3.73333333vw;
    }

    .hamburger_line02{
        top:5.6vw;
    }

    .hamburger_line03{
        top:7.46666667vw;
    }

    .batsu .hamburger_line01{
         transform:translateY(1.86666667vw) rotate(-45deg);
    }

    .batsu .hamburger_line02{
        display: none;
    }

    .batsu .hamburger_line03{
         transform:translateY(-1.86666667vw) rotate(45deg);
    }


    .gnav{
        background: none;
        background-color: #fff;
        width: 100%;
        height:100%;
        border-radius:0;
        filter:none;
        position: fixed;
        left:0;
        top:0;
        display: none;
    }

    .gnav::before{
        content: "";
        position: absolute;
        left:0;
        top:0;
        width: 100%;
        height: 100%;
        background: #FF9696;
        background: linear-gradient(135deg,rgba(255, 150, 150, 0.35) 25%, rgba(242, 218, 2, 0.35) 100%);
    }

    .gnav ul{
        display: flex;
        flex-direction: column;
        row-gap: 4vw;
        align-items: center;
        padding-top: 0;
        padding-bottom:0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 50.66666667vw;
    }

    .gnav li{
        background-color: #fff;
        display: block;
        height:16vw;
        text-align: center;
        font-size:4.26666667vw;
        line-height: 1.375;
        border-radius: 8vw;
        padding-top: 5.06666667vw;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .gnav li:nth-of-type(1),
    .gnav li:nth-of-type(2),
    .gnav li:nth-of-type(3),
    .gnav li:nth-of-type(4),
    .gnav li:nth-of-type(5){
        width: 100%;
    }

    .gnav li:nth-of-type(3){
        padding-top: 1.86666667vw;
    }

    .sec_heading{
        width: 74.66666667vw;
        font-size: 6.66666667vw;
        line-height: 9.33333333vw;
    }

    .sec_heading span{
        top:12.26666667vw;
    }

    .sec_heading_2l span{
        /*top:8.26666667vw;*/
        /*top:28px;*/
        top:7.46666667vw;
    }

    .follow_btn{
        width: 58.66666667vw;
        height:17.33333333vw;
        border-top-left-radius: 6.66666667vw;
        border-top-right-radius: 6.66666667vw;
        border-bottom-left-radius: 10.66666667vw;
        border-bottom-right-radius: 10.66666667vw;
        filter: drop-shadow(1.6vw 1.6vw 1.6vw rgba(0,0,0,0.15));
        font-size: 4.53333333vw;
        /*line-height: 6.13333333vw;*/
        line-height: 1;
        /*padding-top: 2.13333333vw;*/
        /*padding-top: 22px;*/
        padding-top: 5.86666667vw;
        right:5.33333333vw;
        bottom:5.33333333vw;
    }

    .btn_chevron{
        width: 2.4vw;
        right:4.26666667vw;
        top:6.13333333vw;
    }

    .sns_link_heading{
        font-size:6.93333333vw;
        margin-top: 26.4vw;
        margin-bottom:9.33333333vw;
    }

    .sns_link{
        gap:8.8vw;
        margin-bottom:23.2vw;
    }

    .sns_link li{
        width:15.46666667vw;
    }

    .sns_link li:nth-last-of-type(1){
        width:12.88888vw;
        padding-top: 1.2vw;
    }

    .footer_container{
        width:89.33333333vw;
        margin:0 auto;
    }

    .credit_link{
        flex-wrap: wrap;
        row-gap: 4.53333333vw;
    }

    .credit_link li{
        font-size: 4.53333333vw;
        line-height: 12.53333333vw;
        width: 34.66666667vw;
        height:12.53333333vw;
        margin-right: 5.06666667vw;
        border-top-left-radius: 4.8vw;
        border-bottom-left-radius: 7.46666667vw;
        border-top-right-radius: 4.8vw;
        border-bottom-right-radius: 7.46666667vw;
    }

    .credit_link li:nth-of-type(1){
        margin-right: 4.8vw;
    }

    .credit_link li:nth-of-type(2) img{
       width:26.66666667vw;
       position: relative;
       top:0.26666667vw;
    }

    .credit_link li:nth-of-type(3),.credit_link li:nth-of-type(5){
        margin-right: 0;
    }

    .credit_link li:nth-of-type(4){
        margin-left: 13.86666667vw;
    }

    .credit_link+.credit_link{
        margin-top:6.93333333vw;
    }

    .footer_event_name{
        font-size: 5.06666667vw;
        margin-top: 15.73333333vw;
        margin-bottom: 3.2vw;
    }

    .footer_event_contact{
        font-size: 3.73333333vw;
        line-height: 6.4vw;
        margin-bottom: 14.66666667vw;
    }


    .footer_adv_credit{
        font-size: 3.2vw;
        line-height: 1.66666667;
        margin-bottom: 2.66666667vw;
    }

    .copyright{
        font-size: 3.2vw;
        margin-top: 5.33333333vw;
    }

}



/* ■■■ ここからアニメ設定 ■■■ */
/*==================================================
ふわっ
===================================*/

.fadeUpTrigger{
    opacity: 0;
    /*transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);*/
    transition: opacity 1s ease, transform 1s ease;

	transform: translateY(2.5rem);
}

/* タイミング */
.fadeUpTrigger.type1 {
    transition-delay: 1.2s;
}

.fadeUpTrigger.type2 {
    transition-delay: 1.4s;
}

.fadeUpTrigger.type3 {
    transition-delay: 1.6s;
}

/* 下から */
.fadeUp{
	transform: translateY(0);
    opacity:1;
}
