
/*============ 基本設定・リセット ============*/

* {
    box-sizing: border-box
}

*::before,
*::after {
    box-sizing: border-box
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    background: url(../img/bg.webp) repeat-y center top;
    background-size: contain;
}


a {
    transition: opacity .25s ease;
}

a img {
    display: block;
    transition: transform .25s ease;
    transform-origin: center center;
}

a:hover {
    opacity: .9;
}

a:hover img {
    transform: scale(1.05);
}
h1,
h2,
h3,
h4,
h5,
p,
dt,
dd,
li,
th,
td,
address,
strong,
em,
table,
dl,
ul,
ol,
img,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0)
}

h1,
h2,
h3,
h4,
h5,
p,
dt,
dd,
li,
th,
td,
a,
address,
strong,
em,
form,
input,
textarea,
select,
submit,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    color: inherit;
    line-height: inherit;
    font-family: inherit;
    font-size: inherit
}

a {
    border: none;
    color: inherit;
    word-wrap: break-word;
    text-decoration: underline;
    position: relative
}

a:hover {
    opacity: 1;
    text-decoration: none
}

a:hover {
    text-decoration: none
}

address,
em {
    font-style: normal
}

ul,
ol {
    list-style: none none outside
}

img {
    display: block;
    border: none
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem
}

.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loaded {
  opacity: 0;
  pointer-events: none;
}

body {
    color: #000;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-align: justify;
    background: linear-gradient(90deg, #aace36 0%, #aace36 50%, #ffd900 50%, #ffd900 100%);
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(-45deg, #ffffff, #ffffff 17px, transparent 17px, transparent 34px);
    mix-blend-mode: soft-light;
    opacity: 0.5;
}

a {
    text-decoration: none
}

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

/*============ スクロールアニメーション用クラス(.isActiveで発火) ============*/

.blur_in {
    transition: .75s linear;
    opacity: 0;
    filter: blur(16px)
}

.blur_in.isActive {
    opacity: 1;
    filter: blur(0)
}

.fade_in {
    transition: .75s linear;
    opacity: 0
}

.fade_in.isActive {
    opacity: 1
}

.slide_up {
    transition: transform .75s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s linear;
    transform: translateY(2rem);
    opacity: 0
}

.slide_up.isActive {
    transform: translateY(0);
    opacity: 1
}

.slide_left {
    transition: transform .75s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s linear;
    opacity: 0
}

.slide_left.isActive {
    transform: translate(0);
    opacity: 1
}

@media only screen and (min-width: 1000px) {
    .slide_left {
        transform: translateX(2rem)
    }
}

@media only screen and (max-width: 768px) {
    .slide_left {
        transform: translateY(2rem)
    }
}

.slide_right {
    transition: transform .75s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s linear;
    opacity: 0
}

.slide_right.isActive {
    transform: translate(0);
    opacity: 1
}

@media only screen and (min-width: 1000px) {
    .slide_right {
        transform: translateX(-2rem)
    }
}

@media only screen and (max-width: 768px) {
    .slide_right {
        transform: translateY(2rem)
    }
}

@media only screen and (min-width: 1000px) {

    .slide_up.delay,
    .slide_left.delay,
    .slide_right.delay {
        transition-delay: .125s
    }

    .slide_up.delay2,
    .slide_left.delay2,
    .slide_right.delay2 {
        transition-delay: .25s
    }

    .slide_up.delay3,
    .slide_left.delay3,
    .slide_right.delay3 {
        transition-delay: .375s
    }

    .slide_up.delay4,
    .slide_left.delay4,
    .slide_right.delay4 {
        transition-delay: .5s
    }

    .slide_up.delay5,
    .slide_left.delay5,
    .slide_right.delay5 {
        transition-delay: .625s
    }
}

/*============ サイトヘッダー(現状 display:none 運用) ============*/

@keyframes scroll-left {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}

header {
    z-index: 10;
    display: none
}

/*============ フッター ============*/

footer {
    width: 100%;
    background: #f57600;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 2rem 0 0;
    padding: 4rem 0
}

@media only screen and (max-width: 768px) {
    footer {
        margin-top: 2rem;
        padding: 2rem 0
    }
}

footer .cont {
    margin: 0 auto
}


    footer .cont {
        width: calc(100% - 4rem);
        display: flex;
        justify-content: center;
        gap: .5625rem;
        align-items: center
    }

@media only screen and (max-width: 768px) {
    footer .cont {
        flex-direction: column;
        gap: 0;
        width: max-content;
        max-width: 80%;
        align-items: flex-start;
    }
}

footer .cont h2 {
    display: inline-block;
    flex-shrink: 0;
    font-size: .8125rem;
    background: #fff;
    color: #000;
    padding: .5rem
}

footer .cont address {
    font-size: .8125rem;
    word-break: break-all;
    margin: .5rem 0 0 0;
}
footer .cont address .tel {
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    display: block;
}

/*============ 背景 ============*/

.main_bg {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.main_bg::before {
content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border: double 13px #fff;
    margin: 0.5%;
}

@media only screen and (max-width: 768px) {
    .main_bg::before {
        
    }
}

/*============ トップページ:メインビジュアル ============*/

#home.scroll #main #mainvisual .scroll {
    opacity: 0 !important
}

#home #main {
    position: relative;
    z-index: 1;
     overflow: hidden;
         padding: 0 0 8rem;
}

@media only screen and (max-width: 768px) {
#home #main {
    padding: 0 0 0rem;
}
}

#home #main #mainvisual {
    width: 100%;
    z-index: 1;
    position: relative;
    overflow-x: clip;
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual {
    }
}

#home #main #mainvisual.status .logo {
    opacity: 1;
    transform: scale(1);
}

#home #main #mainvisual.status2 .plus1 .plus {
    opacity: 1
}

#home #main #mainvisual.status2 .plus1 .text01 {
    opacity: 1;
    transform: translateX(0)
}

#home #main #mainvisual.status2 .plus1 .text02 {
    opacity: 1;
    transform: translateX(0)
}

#home #main #mainvisual .prelink.status2 .plus1 .text02 {
    opacity: 1;
    transform: translateX(0)
}


#home #main #mainvisual.status2 .abs01 {
    opacity: 1
}

#home #main #mainvisual.status2 .shimanekko {
    opacity: 1
}

#home #main #mainvisual.status2 .mamena {
    opacity: 1
}



#home #main #mainvisual.status2 .scroll {
    opacity: 1;
        transform-origin:center bottom;
animation:hazumu 1s ease-in alternate infinite;
}

#home #main #mainvisual .logobox {
    position: relative;
    padding: 3% 2%;
    width: 96%;
    box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
#home #main #mainvisual .logobox {
    position: relative;
    padding: 30% 0% 20%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}
}
#home #main #mainvisual .logo {
    width: 80%;
    height: auto;
    position: relative;
    /* top: 5%; */
    /* left: 50%; */
    transform: scale(0.5);
    transition: transform .375s;
    opacity: 0;
    max-width: 920px;
    margin: auto;
}
#home #main #mainvisual .logo .course{
    width: 78%;
    text-align: center;
    display: block;
    margin: auto;
    max-width: 600px;
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .logo {
        width: 100%;
        top: 16%;
    }

#home #main #mainvisual .logo .course{
        width: 88%;
    text-align: center;
    display: block;
    margin: auto;
    max-width: 600px;
}

#home #main #mainvisual .logo .mainlogo{
        width: 110%;
        max-width: 110%;
    margin-top: -3%;
    margin-left: 50%;
    transform: translateX(-50%);
}

}

#home #main #mainvisual .logo img {
    width: 100%;
    margin-top: -3%;

}

#home #main #mainvisual .plus1 {
max-width: 450px;
    width: 28%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .plus1 {
width: 40%;
    }
}




#home #main #mainvisual .plus1>div img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}


#home #main #mainvisual .abs01 {
    max-width: 18%;
    height: 9%;
    position: absolute;
    top: 5%;
    right: 4%;
    opacity: 0;
    transition: .25s;
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .abs01 {
max-width: 36%;
        /* height: 14%; */
        position: absolute;
        top: 3%;
    }
}

#home #main #mainvisual .abs01 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top center;
    object-position: top center
}



    #home #main #mainvisual .abs01 {
        display: block;
max-width: 36%;
        /* height: 14%; */
        position: absolute;
        top: 3%;
    }

#home #main #mainvisual .prelink{
    display: none;
}

@media only screen and (max-width: 480px) {

#home #main #mainvisual .prelink{
    width: 80%;
    margin: auto;
    display: block;
    bottom: 10%;
    transform: scale(1);
}
#home #main #mainvisual .prelink img{
animation: buruburu 2s linear infinite;
  scale: 1;
}

@keyframes buruburu{
 0%{transform:translateY(0)}
 7%{transform:translateY(-4px)}
 14%{transform:translateY(4px)}
 20%{transform:translateY(-4px)}
 32%{transform:translateY(4px)}
 40%{transform:translateY(0px)}
}
}


#home #main #mainvisual .shimanekko {
    max-width: 350px;
    width: 35%;
    height: auto;
    position: absolute;
    left: -3%;
    bottom: 7%;
    opacity: 0;
    transition: .25s;
    z-index: 2;
    animation: yurayura 3s linear infinite;
    scale: 1;
}

@keyframes yurayura{
	0%  {transform:rotate(0deg);}
	25% {transform:rotate(-2deg);}
	50% {transform:rotate(0deg);}
	75% {transform:rotate(2deg);}
	100% {transform:rotate(0deg);}
}


#home #main #mainvisual .shimanekko img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}


#home #main #mainvisual .mamena {
width: 30%;
    height: auto;
    position: absolute;
    top: 29%;
    right: -5%;
    opacity: 0;
    transition: .25s;
    z-index: 1;
    animation: yurayura 2.5s linear infinite;
  scale: 1;
}


#home #main #mainvisual .mamena img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .shimanekko{
        max-width: 40%;
        width: 40%;
        height: auto;
        position: absolute;
        left: 0%;
        bottom: -16%;
        opacity: 0;
        transition: .25s;
        z-index: 2;
    }
    #home #main #mainvisual .mamena {
        width: 30%;
        height: auto;
        position: absolute;
        top: 66%;
        right: 1%;

    }
}




#home #main #mainvisual .arrow {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    max-width: 32.6660125vw;
    width: 58.0729111111vh;
    height: 20.3945555556vh;
    position: absolute;
    top: 67.1111111111vh;
    left: 35.75vw
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .arrow {
        max-width: 77.1484375vw;
        width: 43.8888888889vh;
        width: 43.8888888889svh;
        height: 15.0777777778vh;
        height: 15.0777777778svh;
        top: 57.4444444444vh;
        top: 57.4444444444svh;
        left: 12.5vw;
        bottom: unset
    }
}

#home #main #mainvisual .arrow>div img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right top;
    object-position: right top
}

#home #main #mainvisual .arrow .text01 {
    width: 65.0786501719%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-2rem);
    opacity: 0;
    transition: .25s .75s
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .arrow .text01 {
        width: 65.1924050633%
    }
}

#home #main #mainvisual .arrow .text02 {
    width: 91%;
    position: absolute;
    top: 24%;
    right: 0;
    transform: translateX(-2rem);
    opacity: 0;
    transition: .25s 1s
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .arrow .text02 {
        width: 91%;
        top: 23%
    }
}

#home #main #mainvisual .scroll {
    max-height: 5vw;
    transition: .25s;
    position: fixed;
    left: 3rem;
    bottom: 5rem;
    opacity: 0;
}

@media only screen and (max-width: 768px) {
    #home #main #mainvisual .scroll {
    width: 20%;
    left: calc(50% - 10%);
    bottom: 30vw;
    position: relative;
    }
}

#home #main #mainvisual .scroll::after {
    content: "";
    width: 2px;
    height: 3rem;
    background: #fff;
    position: absolute;
    top: 1.75rem;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

#home #main #mainvisual .scroll span {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    letter-spacing: .15em;
    color: #fff
}

/*============ エントリーボタン(緑/オレンジ) ============*/

#home #main .entry_btn {

    margin: 3.75rem auto 0;


}



@media only screen and (min-width: 1000px) {

}


#home #main .entry_btn.orange .cont {
 
}


@media only screen and (min-width: 1000px) {
    #home #main .entry_btn.orange .cont .flex .txt img {
        width: 11.875rem;
        height: auto
    }
}


#home #main .entry_btn .cont {

}

@media only screen and (min-width: 1000px) {

}


#home #main .entry_btn .cont p {
    margin: 1rem 0 0
}

@media only screen and (max-width: 768px) {
    #home #main .entry_btn .cont p {
        font-size: 1rem
    }
}

#home #main .entry_btn .cont .arw {
    width: 5.5rem;
    border-radius: 0 .9375rem .9375rem 0;
    background: #458239;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

@media only screen and (max-width: 768px) {
    #home #main .entry_btn .cont .arw {
        display: none
    }
}

#home #main .entry_btn .cont .arw::after {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    top: 50%;
    left: calc(50% - .3125rem);
    transform: translate(-50%, -50%) rotate(-45deg)
}

@media only screen and (min-width: 1000px) {

}

@media only screen and (max-width: 768px) {

}

#home #main .entry_btn .cont .link span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@media only screen and (min-width: 1000px) {
    #home #main .entry_btn .cont .link span {
        display: none
    }
}

/*============ エントリー ============*/

#home #main #entry {
    width: 980px;
    margin: 0rem auto 0;
    padding: 2%;
    max-width: 94%;
}

@media only screen and (max-width: 768px) {
    #home #main #entry {
        width: 100%;
        margin-top: 0rem;
    }
}

#home #main #entry .lead {
animation: dokundokun 2000ms ease infinite;
}

@keyframes dokundokun {
  0%  { transform: scale(1); }
  15% { transform: scale(1.06); }
  30% { transform: scale(1); }
  45% { transform: scale(1.06); }
  70% { transform: scale(1); }
}

#home #main #entry .entry_btn {
    margin: 2rem auto 0
}

@media only screen and (max-width: 768px) {
    #home #main #entry .entry_btn {
        margin-top: 2rem
    }
}

/*============ 参加方法 ============*/

#home #main #participate {
    width: 980px;
    max-width: 94%;
    border-radius: 1.7rem;
    background: #fff;
    margin: 4rem auto 0;
    padding: 4rem 0
}

@media only screen and (max-width: 768px) {
    #home #main #participate {
        width: 88%;
        margin: 5rem auto 0;
        padding: 2rem 0.8rem 2rem;
        max-width: 94%;
        box-sizing: border-box;
    }
}

#home #main #participate .cont {
    width: 100%;
    max-width: 50rem;
    margin: 0 auto
}

#home #main #participate .cont h2 img {
    width: 100%
}


#home #main #participate .cont .c_info{
    background: #daf1fc;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 3rem auto;
    padding: 2% 1%;
    box-sizing: border-box;
    
}



#home #main #participate .cont .c_info li{
display: flex;
flex-wrap: wrap;
   width: 50%;
}
#home #main #participate .cont .c_info li figure{

    width: 28%;
}
#home #main #participate .cont .c_info li .text_box{
width: 72%;
    padding: 2% 3%;
    box-sizing: border-box;
    line-height: 140%;
}
#home #main #participate .cont .c_info li h3{
    display: block;
    border-bottom: 2px dotted cadetblue;
    padding: 0 0 5px;
    margin-bottom: 5px;
}
#home #main #participate .cont .c_info li p{
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0px;
}


@media only screen and (max-width: 768px) {
    #home #main #participate {
    flex-direction: column;
    }
    #home #main #participate .cont .c_info li{
        padding: 2%;
   width: 100%;
}
    #home #main #participate .cont .c_info li:first-child{
        margin-bottom: 3%;
}
}


#home #main #participate .cont .flow {
    margin: 2rem auto 0
}

#home #main #participate .cont .flow li{
margin: 1rem auto 3rem;
}

#home #main #participate .cont .flow li:after{
    margin: -1rem auto 0rem;
    content: "";
    background: url(../img/arrow.webp);
    width: 67px;
    height: 90px;
    background-size: cover;
    display: block;
    transform: translateX(-50%) scale(1);
    position: absolute;
    left: 47%;
    z-index: 8;
    transform-origin:center bottom;
animation:hazumu 1s ease-in alternate infinite;
}


@media only screen and (max-width: 768px) {
#home #main #participate .cont .flow li:after{
        width: 33px;
        height: 48px;
        position: absolute;
        margin: auto;
        left: 46%;
}

}


@keyframes hazumu {
      0% {

      transform:translateY(-20%) scale(1,1);
      }

      80% {

      transform:translateY(0%) scale(1,1);
      }

      100% {

      transform:translateY(0%) scale(1.1,0.9);
      }

}




#home #main #participate .cont .flow li:last-child{
    z-index: -1;
    position: relative;
}
#home #main #participate .cont .flow li:last-child::after{
content: none;
}

#home #main #participate .cont .flow li img{
     z-index: 1;
    position: relative;
}


@media only screen and (min-width: 1000px) {
    #home #main #participate .cont .flow {
        max-width: 49.3125rem;

    }
}

@media only screen and (max-width: 768px) {

}



#home #main .plus1_area {
    margin: 7rem auto 2rem;
    background: #fff28c;
    border-radius: 12px 12px 0 0;
    padding: 0% 2% 6%;
    box-sizing: border-box;
    text-align: center;
    width: 980px;
    max-width: 94%;
}

#home #main .plus1_area h3{
display: block;
    width: fit-content;
    margin: auto;
    /* padding: 3% 0; */
    max-width: 88%;
    /* transform: translateX(-50%) scale(1); */
    margin: auto;
    display: block;
}



@media only screen and (max-width: 768px) {
    #home #main #participate .cont .plus1 h3 {
        text-align: center
    }

}

#home #main .plus1_area p{
 text-align: justify;
    width: 86%;
    display: block;
    padding: 3% 0;
    margin: auto;
    font-size: 1.3rem;
    line-height: 150%;   
}

#home #main .plus1_area .list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
#home #main .plus1_area .list li{
width: 22%;
}
#home #main .plus1_area .list li img{

}

@media only screen and (max-width: 768px) {
#home #main .plus1_area .list li{
    width: 28%;
    min-width: 140px;
}
}


/*============ プレゼント ============*/

#home #main #present {
    margin: 3rem auto 0
}

@media only screen and (max-width: 768px) {
    #home #main #present {
        margin-top: 7.3125rem
    }
}

#home #main #present h2 img {
    margin: 0 auto
}


#home #main #present .present_box {
    width: 100%;
    margin: 20rem auto 0;
}

#home #main #present .present_box img{
    margin:auto;
}

#home #main #present .present_box.pc {
    background: url(../img/present-bg.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 1rem 0 5rem;
    max-width: 1400px;
    margin: 20rem auto 0;
}

.present_box.pc .present-item {
    width: 75%;
}

.present_box.pc .present-text {
    position: absolute;
    top: -23%;
    width: 7%;
    left: 30%;
}

.present_box.pc .present-hukidashi {
    position: absolute;
    top: -30%;
    width: 42%;
    right: 12%;
}

.present_box.mobile .present-text {
    position: absolute;
    top: 7%;
    width: 40%;
    left: 3%;
}

.present_box.mobile .present-hukidashi {
    position: absolute;
    top: -1%;
    width: 84%;
    right: -3%;
}

#home #main #present .present_box.mobile {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 10rem 2rem 2rem;
}

#home #main #present .present_box.mobile .present-item {
    width: 100%;
    margin: 2rem auto;
}

@media only screen and (max-width: 768px) {
    #home #main #present h2 img {
        width: 18.875rem
    }

#home #main #present .present_box {
    width: 90%;
    margin: 3rem auto 0
}

}


#home #main #present+.entry_btn {
    margin-top: 4rem
}

/*============ 謎解きウォーキングイベント ============*/

#home #main #nazotoki {
    width: 980px;
    max-width: 94%;
    padding: 0 2%;
    box-sizing: border-box;
    margin: 7rem auto 3rem
}

@media only screen and (max-width: 768px) {
    #home #main #nazotoki {
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    #home #main #nazotoki h2 {

    }
}

#home #main #nazotoki h2 img {
    width: 100%
}

#home #main #nazotoki .btn {
    margin: 2.625rem 0 0
}

@media only screen and (min-width: 1000px) {
    #home #main #nazotoki .btn::after {
        content: "";
        background: rgba(0, 0, 0, .25);
        border-radius: 1.0625rem;
        position: absolute;
        inset: 0;
        z-index: -1
    }
}

@media only screen and (max-width: 768px) {
    #home #main #nazotoki .btn {
        filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.25));
        margin-top: 2.375rem
    }
}

#home #main #nazotoki .btn .link {
    display: block;
    width: 100%;
    height: 8.75rem;
    border-radius: 1.0625rem;
    background: #c20000;
    position: relative;
    transition: .25s
}

@media only screen and (min-width: 1000px) {
    #home #main #nazotoki .btn .link {
        transform: translate(-0.625rem, -0.625rem)
    }

    #home #main #nazotoki .btn .link:hover {
        transform: translate(0, 0)
    }
}

@media only screen and (max-width: 768px) {
    #home #main #nazotoki .btn .link {
        border-radius: .53125rem;
        height: 5.625rem
    }
}

#home #main #nazotoki .btn .link::before {
    content: "";
    width: 4.9375rem;
    height: 100%;
    background: #920404;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 1.0625rem 1.0625rem 0
}

@media only screen and (max-width: 768px) {
    #home #main #nazotoki .btn .link::before {
        width: 2.75rem;
        border-radius: 0 .53125rem .53125rem 0
    }
}

#home #main #nazotoki .btn .link::after {
    content: "";
    width: .9375rem;
    height: .9375rem;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
    top: 50%;
    right: 1.875rem;
    transform: translate(-50%, -50%) rotate(-45deg)
}

@media only screen and (max-width: 768px) {
    #home #main #nazotoki .btn .link::after {
        right: .625rem
    }
}

#home #main #nazotoki .btn .link span {
    font-size: 1.5625rem;
    color: #fff100;
    font-weight: 900;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 11rem;
    transform: translateY(-50%)
}

@media only screen and (max-width: 768px) {
    #home #main #nazotoki .btn .link span {
        font-size: 1.25rem;
        left: 3rem
    }
}

/*============ その他イベント ============*/

#home #main #other {
    width: 100%;
    max-width: 70rem;
    position: relative;
    margin: 8rem auto 0;
       
}

@media only screen and (max-width: 768px) {
    #home #main #other {
        margin-top: 8rem;
                padding-bottom: 0rem;
    }
}
#home #main #other h2  {
    width: 75%;
    max-width: 620px;
    margin: auto;
    display: block;
}
#home #main #other h2 img {
    width: 100%
}

#home #main #other .list {
    display: flex;
    gap: 2rem 2%;
    flex-wrap: wrap;
    margin: 5rem 0 0;
    justify-content: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
    #home #main #other .list {

    }
}

#home #main #other .list>li {
    background: #fff;
    border-radius: 8px;
    width: 47%;
    padding: 2%;
    box-sizing: border-box;
    position: relative;
        display: grid;
    grid-template-rows: auto 1fr auto;
}

@media only screen and (max-width: 768px) {
    #home #main #other .list>li {
        width: 82%;
    }
}

#home #main #other .list>li::before {
    content: "";
    width: 1rem;
    height: auto;
    background:url(../img/flag.svg);
    
    top: 0;
    left: 0
}



#home #main #other .list>li h3 {
    display: block;
    
}
#home #main #other .list>li h3 img{
    max-height: 74px;
}

@media only screen and (max-width: 768px) {
    #home #main #other .list>li h3 {

    }
}

#home #main #other .list>li .title1{

}
#home #main #other .list>li .title2{
margin-top: -6%;
    width: 80%;
}
#home #main #other .list>li .title3{

}

#home #main #other .list>li h4{
font-size: 1.3rem;
    padding: 2% 1% 1%;
    line-height: 140%;
}
#home #main #other .list>li p{
     font-size: 1.1rem;
    padding: 1% 1% 3%;
    line-height: 140%;   
}

#home #main #other .list>li a {
width: 100%;
    /* height: 100%; */
    display: block;
    background: #458239;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    transition: .25s;
    padding: 15px 10px;
}

#home #main #other .list>li a:hover{
    background: yellow;
    color:#458239
}

#home #main #other .list>li a ul li {
    position: relative;
    margin: .6875rem 0 0
}

#home #main #other .list>li a ul li::before {
    content: "";
    width: .75rem;
    height: .75rem;
    background: #82cff4;
    border-radius: 50%;
    position: absolute;
    top: .28125rem;
    left: -1.25rem
}



#home #main #other .list>li a ul li:first-child {
    margin: 0
}

#home #main #other .list>li a ul li img {
    width: auto
}


#home #main #other .list>li a p {
    display: block;
    line-height: 1.5;
    margin: .5rem 0 0
}


.chara1{
    width: 150px;
    position: absolute;
    top: 12%;
    right: -3%;
    transform-origin: center bottom;
    animation: yurayura1 3s linear infinite;
}

.chara2 {
    width: 162px;
    position: absolute;
    bottom: -10%;
    left: -10%;
    transform-origin: center bottom;
    animation: yurayura2 3.4s linear infinite;
}


@media only screen and (max-width: 768px) {
.chara1{
    width: 80px;
    position: absolute;
    top: 6%;
    right: -3%;
}

.chara2 {
    width: 89px;
    position: absolute;
    bottom: 0%;
    left: 0%;
}
}


@keyframes yurayura1 {
  0% , 100%{
      transform: rotate(5deg);
  }
  50%{
      transform: rotate(-5deg);
  }
}
@keyframes yurayura2 {
  0% , 100%{
      transform: rotate(4deg);
  }
  50%{
      transform: rotate(-4deg);
  }
}


/*============ PC/SP表示切替・ルートサイズ ============*/

@media screen and (min-width: 769px) {
    .mobile{
        display: none!important;
    }

    html {
        font-size: 16px
    }


    img {
        display: block;
        height: auto
    }
}

@media screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
    .mobile {
        display:block;
    }

    html {
        width: 100%;
        height: 100%;
        font-size: 3.125vw;
        background-size: cover;
    }

    body {
        width: 100%;
        font-size: 1rem
    }

    img {
        display: block;
        max-width: 100%;
        width: 100%
    }
}

/*# sourceMappingURL=layout.min.css.map */