@charset "UTF-8";

/* ==========================================================================
変数・共通ルール
========================================================================== */
:root {
--red: #e04c31;
--primary-orange: #ff9600;
--border-color: #dacfb3;
--dotted-line: #f2b235;
--font-base: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

/*#########################################################

要素関連

#########################################################*/

html {
    /* width: 100%; */
    /* scroll-behavior: smooth; */
}
body {
    width: 100%;
    font-family: var(--font-base);
    box-sizing: border-box;
    font-size: 1.2rem;
    color: #242424;
    margin: 0;
    padding: 0;
}
div.wrapper {
    background-image: 
        url('../img/bg_pattern01.png'),
        url('../img/bg_pattern02.png'),
        url('../img/bg_img_bottom.png');
    background-repeat: repeat, repeat-y, repeat-x;
    background-size:80%,100%, 13%;
    background-position: center top, center top, left bottom;
    background-color: #00befd;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
}

p {
    font-size: 1.1rem;
    margin: 1rem auto;
    line-height: 1.5;
}

a {
    transition: opacity 0.3s;
    
    &:hover {
        opacity: 0.8;
    }
}


img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    
    /* コピーガード */
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.red {
    color: var(--red);
}

.pt15 {
    padding-top: 15px;
    display: inline-block;
}

.pr10 {
    padding-right: 10px;
}
.pr40 {
    padding-right: 25px;
}
.pr85 {
    padding-right: 85px;
}
.pl10{
    padding-left: 10px;
}

.pt20 {
    padding-top: 20px;
}



.font-redsmall {
    color: var(--red);
    font-size: 0.9rem;
}

div.importancont{
    margin-top: 20px;
    box-sizing: border-box;
    text-align: center;
    color: red;
    font-weight: bold;
    font-size:1.3rem;
}


/* SPの長押し禁止 */
img{
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
/* クリック枠削除 */
*:focus {
    outline: none;
}
a,div.icon-wrap{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

@media screen and (max-width: 748px) {
    div.wrapper {
        background-image: 
            url('../img/bg_pattern01.png'),
            url('../img/bg_pattern02_sp.png'),
            url('../img/bg_img_bottom.png');
        background-repeat: repeat, repeat-y, repeat-x;
        background-size:120%,100%, 26%;
        background-position: center top, center top, left bottom;
        background-color: #00befd;

    }
}



/*#########################################################

ヘッダー

#########################################################*/
header#header {
    height: 65px;
    width: 100%;
    background: #ffffff;
}
.logo {
    /* width: 1100px; */
    margin: 0 auto;

}
.logo a {
    padding-left: 10px;
    width: 220px;
    display: block;
    line-height: 60px;
}
.logo a img {
    width: 100%;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .logo a {
        width: 150px;
        line-height: 45px;
    }
    header#header  {
        height: 47px;
    }
}


/*#########################################################

メインイメージ

#########################################################*/
div#main-img {
    background-image: 
        url('../img/main_bg_img.png'), 
        url('../img/main_bg_img02.png');
    background-repeat: no-repeat, repeat-x;
    background-size: 100%, auto;
    background-position:center top, center bottom;
    position: relative;
    z-index: 100;
}
div.main-img__conts {
    overflow: hidden;
    width: 100%;
    background: url("../img/main_img_pc.png") no-repeat bottom center;
    background-size: 70%;
    padding-top: 33%;

}


@media screen and (max-width: 640px) {
    div.main-img__conts {
        background: url("../img/main_img_sp.png") no-repeat top center;
        background-size: 100%;
        padding-top: 93%;
        padding-right: 0;
    }
}


/*#########################################################

ナビ

#########################################################*/
section#intro {
    text-align: center;
    padding: 40px 20px;
}

section#intro h2.intro-topic{ 
    margin:40px auto 30px;
    width: 750px;
}
nav{
    width: 1000px;
    margin: 0 auto;
}
nav div{
    width: 600px;
    margin: 0 auto;
    padding-bottom:30px;
    padding-top: 40px;
}

ul.link-topic {
    display: flex;
    justify-content:space-between;
    list-style: none;
    padding: 0;  
}

ul.link-topic li {
    width: 31%;
}

ul.link-topic li a {
    display: block;
    transition: transform 0.2s;
}

ul.link-topic li a:hover {
    opacity: 1;
    /* transform: translateY(-5px); */
}
@media screen and (max-width: 1110px) {
    nav {
        width: 90%;
    }
    section#intro h2.intro-topic{ 
        margin:40px auto 30px;
        width: 75%;
    }
    
}
@media screen and (max-width: 768px) {
    section#intro h2.intro-topic{ 
        width: 85%;
    }
    nav {
        width: 96%;
    }
    nav div{
        width: 80%;
    }
    ul.link-topic li {
        width: 32.5%;
    }
}
@media screen and (max-width: 640px) {
    section#intro {
        text-align: center;
        padding: 40px 2% 20px;
    }
    div.main-img__conts {
        background: url("../img/main_img_sp.png") no-repeat top center;
        background-size: 100%;
        padding-top: 93%;
        padding-right: 0;
    }
    section#intro h2.intro-topic{ 
        margin:0px auto 30px;
        width: 94%;
    }

    nav div{
        padding-bottom:20px;
        padding-top: 0px;
        width: 85%;
    }
    nav {
        width: 100%;
    }
}


/*#########################################################

コンテンツ共通設定

#########################################################*/


section.content-section {
    max-width: 1000px; 
    width: 100%; 
    margin: 30px auto 0;
    padding:0 0 60px;
    position: relative;
    box-sizing: border-box;
}



div.content {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 7% 60px;
    border: 6px solid #1c81d7;
    z-index: 1;
    position: relative;
    box-sizing: border-box;
}

h2.topicttl {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #ff9600;
    font-weight: bold;
    gap: 8px;
    width: 60%;
    min-width: 500px;
    margin: 0 auto 30px;
}

p.subttl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65%;
    margin: 0 auto 60px;
    gap: 8px;
}

div.event-image.main-img {
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #ccc;
}

div.event-image.main-img img {
    width: 100%;
}

h3.infottl {
    font-size: 1.7rem;
    color: #ff7e00;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
}

p.desc-text {
    color: #444444;
    line-height: 1.5;
    margin-bottom: 60px;
    text-align: justify;
}


p.info-conts {
    font-size: 0.9rem;
    color: #e04c31;
    line-height: 1.5;
    margin: 15px 0;
} 

/* 画像リスト */
ul.gallery-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 60px 0;
}

ul.gallery-list li {
    flex: 1;
}

ul.gallery-list div.event-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ボタン */
div.btn-detail-wrap {
    width: 40%;
    min-width: 300px;
    text-align: center;
    margin: 40px auto 0;
    box-sizing: border-box;
}

a.btn-detail {
    display: block;
}

/* SNSボタン */
div.btn-detail-wrap-sns {
    /* width: 40%;
    min-width: 300px; */
    text-align: center;
    margin: 40px auto 0;
    box-sizing: border-box;
}
ul.sns-buttons {
    display: flex;
    justify-content: center;
    gap:5%;
    list-style: none;
    padding: 0;
    margin: 40px auto 40px;
}

ul.sns-buttons li {
    width: 35%; 
}

ul.sns-buttons li a {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 1110px) {
    section.content-section {
        width: 90%;
    }
    h2.topicttl {
        width: 65%;
        min-width: auto;
    }
    
    p.subttl {
        width: 70%;
    }
    
}
@media screen and (max-width: 768px) {
    h2.topicttl {
        width: 75%;
        min-width: auto;
    }
    p.subttl {
        width: 100%;
    }
    ul.sns-buttons {
        gap:3%;
    }
    ul.sns-buttons li {
        width: 50%; 
        box-sizing: border-box;
    }
}

@media screen and (max-width: 640px) {
    div.content {
        border-radius: 15px;
    }
    p.desc-text {
        line-height: 1.4;
        margin-bottom: 40px;

    }
    
    section.content-section {
        margin: 20px auto 0;
        padding:0 0 40px;
        width: 94%;
    }
    h2.topicttl {
        width: 85%;
    }
    h3.infottl {
        font-size: 1.4rem;
    }
    p.subttl {
        width: 100%;
        margin: 0 auto 8%;
    }
    div.content {
        padding: 40px 5% 40px;
        border: 3px solid #1c81d7;
    }
    div.event-image{
        width: 100%;
    }
    div.btn-detail-wrap {
        width: 70%;
        min-width: auto;
        margin: 0px auto 0;
    }
}

/*#########################################################

キャラ

#########################################################*/

section.content-section:nth-child(1 of .content-section) {
    margin-top: 60px;
}
section.content-section:nth-child(2 of .content-section) {
    margin-top: 40px; 
}
section.content-section:nth-child(3 of .content-section) {
    margin-top: 0px; 
}

div.charabox {
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

div.chara04,div.chara05,div.chara06 {
    position: absolute;
} 

div.chara01 {
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

div.chara02 {
    width: 60%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

div.chara03 {
    width: 34%;
    left: 30px;
}

div.chara04 {
    top: 10px;
    width: 22%;
    left: 80%;
    animation: fuwafuwa 2.5s ease-in-out infinite;
}

@keyframes fuwafuwa {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
div.chara05 {
    bottom: 0px;
    width: 12%;
    left: -30px;
    animation: kata 3.5s infinite linear;
    transform-origin: bottom center;
    animation-delay: 3s;
}

@keyframes kata{
    0%   { transform: rotate(0deg); }
    5%   { transform: rotate(10deg); } 
    10%  { transform: rotate(-2deg); }
    15%  { transform: rotate(4deg); }
    20%  { transform: rotate(0deg); }  
    100% { transform: rotate(0deg); }
}


div.chara06 {
    bottom: 10px;
    width: 12%;
    left: 90%;
    animation: katakata 3.5s infinite linear;
    transform-origin: bottom center;
    animation-delay: 4s;
}

@keyframes katakata{
    0%   { transform: rotate(0deg); }
    5%   { transform: rotate(-10deg); } 
    10%  { transform: rotate(2deg); }
    15%  { transform: rotate(-4deg); }
    20%  { transform: rotate(0deg); }  
    100% { transform: rotate(0deg); }
}


@media screen and (max-width: 768px) {
    section.content-section:nth-child(1 of .content-section) {
        margin-top: 40px;
    }
    section.content-section:nth-child(2 of .content-section) {
        margin-top: 0px; 
    }
    section.content-section:nth-child(3 of .content-section) {
        margin-top: 0px; 
    }
    div.chara01 {
        width: 90%;
    }
    
    div.chara02 {
        width: 70%;
    }
    
    div.chara03 {
        width: 46%;
}
    
    div.chara04 {
        width: 30%;
        left: 68%;
    }

    div.chara05 {
        width: 18%;
        left: 0px;
    }
    div.chara06 {
        bottom:-1%;
        width: 20%;
        left: auto;
        right: 0px;
    }
    
}

@media screen and (max-width: 640px) {
    section.content-section:nth-child(1 of .content-section) {
        margin-top: 20px;
    }
    section.content-section:nth-child(2 of .content-section) {
        margin-top: 0px; 
    }
    section.content-section:nth-child(3 of .content-section) {
        margin-top: 0px; 
    }
    div.chara05 {
        bottom: 0;
        }
    div.chara06 {
        bottom:-10px;

    }
}

/*#########################################################

コンテンツ内イベントinfo

#########################################################*/

dl.event_info_list {
    width: 100%;
    margin: 30px 0;
    text-align: left;
}
dl.event_info_list dt {
    font-size: 1.05rem;
    font-weight: bold;
    color: #242424;
    display: flex;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 10px;
}

dl.event_info_list dt::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #ffd200;
    border-radius: 50%;
    margin-right: 10px;
}

dl.event_info_list dd {
    font-size: 1.1rem;
    color: #242424;
    line-height: 1.4;
    margin-left: 0; 
    margin-bottom: 25px;
    /* padding-left: 24px; */
}
dl.event_info_list dd span.sub-txt {
    color: #555555;
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
}

dl.event_info_list dd span.caution-txt {
    font-size: 0.9rem;
    color: #f25737; 
    display: block;
    margin-top: 5px;
    line-height: 1.5;
}

/* 画像掲載 */
ul.gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul.gallery-list li {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 7.5px);
}

ul.gallery-list li div.event-image img {
    width: 100%;
    display: block;
    border-radius: 0px;
}

p.info-conts.text-center {
    text-align: center;
}
@media screen and (max-width: 640px) {
    ul.gallery-list {
        display: block;
    }
    
    ul.gallery-list li {
        flex:auto;
        max-width: initial;
        width: 100%;
        padding: 10px 0 10px ;
    }
}


/*#########################################################

コンテンツボックス表示アニメーション

#########################################################*/
section.content-section.effect.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}
section.content-section.effect.fade-in.e-end {
    opacity: 1;
    transform: translateY(0);
}



/*#########################################################

バナー

#########################################################*/

section.shopbanner{
    margin: 0 auto;
    padding: 60px 0 100px;
    width: 700px;
}
section.shopbanner a{
    display: block;
}
@media screen and (max-width: 1110px) {

}
@media screen and (max-width: 768px) {
    section.shopbanner{
        width: 90%;
        padding: 40px 0 60px;
    
    }
}


/*#########################################################

フッター

#########################################################*/
footer#footer {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    width: 100%;
    background: #ff9600;
    position: absolute;
}
div#footer-box {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0 10px;
}
div.logo-sub {
    width: 135px;
}
div.logo-sub img {
    width: 100%;
}
ul.link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.9375rem;
}
ul.link-list li {
    padding: 0 20px;
}
ul.link-list li a {
    color: #ffffff;
    text-decoration: none;
}
p.footer_copy {
    text-align: center;
    font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
    div#footer-box {
        display: block;
    }
    div.logo-sub {
        margin: 0 auto 20px;
    }
}


/*#########################################################

TOPへ戻る

#########################################################*/
p#page-top {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 60px;
    z-index: 100;
}
p#page-top a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    display: block;
}
p#page-top a img {
    width: 100%;
}
p#page-top a:hover {
    text-decoration: none;
    opacity: 1;
}
/* buruburu hoverアニメ */
p#page-top a.buruburu {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px transparent;
    box-shadow: 0 0 1px transparent;
}
p#page-top a.buruburu:hover {
    -webkit-animation-name: buruburu;
    animation-name: buruburu;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
/* buruburu アニメ */
@-webkit-keyframes buruburu {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
@keyframes buruburu {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

