/*
Theme Name: あつまれ！はたらくくるま2025
Theme URI:
Version: 1.0
Author: takami
Author URI: https://yoshida-designbu.com/
License: takami
*/


 /*----------
 common
 ----------*/
*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 62.5%;
}

body{
    font-size: min(1.5rem, 3.6vw);
    font-family: "Roboto",'Zen Kaku Gothic Antique', 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: var(--c-dBrown);
    font-weight: 500;
    position: relative;
}

:root{
    --mainColor:#fff364;
    --mainColor2:#fff793;
    --c-dBrown:#4b3e2f;
    --c-white:#fefefe;
    --c-yg:#b2cc41;
    --c-lYg:#d8e6a0;
    --c-pink:#e8aaae;
    --c-lPink:#f3d5d6;
    --c-blue:#77c0d1;
    --c-lBlue:#bbdfe8;
    --c-green:#70b17d;
    --c-orange:#e4934b;
    --c-red:#d54845;
    --c-wanted:#f77a82;
    --text-white:#fefefe;
    --c-gray:#9d9f9e;
    --b-dashed:dashed 1px var(--c-dBrown);
    --b-brown:solid 3px var(--c-dBrown);
    --font-224rem:min(2.24rem,5vw);
    --font-183rem:min(1.83rem,4vw);
    --font-14rem:min(1.3rem,3.24vw);
    --section-margin:min(8rem,16vw);
    --bgw-margin:min(3rem,6vw);
    --titleB-margin:min(16px,4vw);
    --ps-margin:min(32px,6.5vw);
    --b-radius:min(1em,4vw);
    --ls-0:0;
    --transition:.4s cubic-bezier(.37,.49,.35,1.28);
    --cha-contents-width: min(530px,35vw);
}

li{
    list-style: none;
}

a{
	text-decoration:none;
    color: var(--c-dBrown);
    position: relative;
    transition: var(--transition);
}

img{
    max-width:100%;
    height: auto;
    box-sizing: border-box;
    vertical-align: bottom;
}

table{
    clear: both;
    border-collapse: collapse;
    width: 100%;
}

tr{
    border-bottom: solid 1px #e9e9e9;
}

th{
    padding: 12px 0 12px 12px;
    vertical-align: top;
}

td{
    padding: 12px;
}

.contents{
    margin: 0 6%;
}

.contents-wrapper{
    background: var(--c-white);
    padding: var(--bgw-margin);
    border: var(--b-brown);
    margin-bottom: var(--section-margin);
    position: relative;
}

/*--404--*/
.notFound{
    margin-top: min(8rem,16vw);
    text-align: center;
}

.notFound h2{
    font-size: min(14rem,34vw);
    line-height: 1;
}

.notFound h2 span{
    display: block;
    font-size: 36%;
}

.notFound p{
    padding: min(3rem, 5vw) 0;
}

.error-image{
    width: min(8rem, 16vw);
    margin: min(3rem) auto 0;
}

/*--title--*/
.contents-title{
    text-align: center;
    padding-bottom: min(1.24rem, 3vw);
}

.title-svg{
    fill: var(--c-dBrown);
    overflow: unset;
    height: min(3.5rem,6.7vw);
}

p.contents-title_sub{
    color: var(--c-orange);
    font-weight: 800;
    font-size: min(2.24rem, 5vw);
}

.scroll-SVGtitle path{
    opacity: 0;
}
.scroll-SVGtitle.is-active path{
    animation: slide-in var(--transition) forwards;
}

@keyframes slide-in{
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    70% {
        transform: translateY(-5%);
        opacity: 1;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.scroll-SVGtitle svg path:nth-of-type(1){
    animation-delay: 0s;
}
.scroll-SVGtitle svg path:nth-of-type(2){
    animation-delay: .05s;
}
.scroll-SVGtitle svg path:nth-of-type(3){
    animation-delay: .1s;
}
.scroll-SVGtitle svg path:nth-of-type(4){
    animation-delay: .15s;
}
.scroll-SVGtitle svg path:nth-of-type(5){
    animation-delay: .2s;
}
.scroll-SVGtitle svg path:nth-of-type(6){
    animation-delay: .25s;
}
.scroll-SVGtitle svg path:nth-of-type(7){
    animation-delay: .3s;
}
.scroll-SVGtitle svg path:nth-of-type(8){
    animation-delay: .35s;
}
.scroll-SVGtitle svg path:nth-of-type(9){
    animation-delay: .4s;
}
.scroll-SVGtitle svg path:nth-of-type(10){
    animation-delay: .45s;
}
.scroll-SVGtitle svg path:nth-of-type(11){
    animation-delay: .45s;
}
.scroll-SVGtitle svg path:nth-of-type(12){
    animation-delay: .5s;
}

/*--linkBox--*/
.linkBox{
    border:solid 2px var(--c-dBrown);
    border-radius: 9999px;
    color: var(--c-white);
    display: block;
    text-align: center;
    width: 80%;
    margin: auto;
    padding: min(1rem, 2vw);
    font-weight: 600;
    text-transform: uppercase;
}

.linkBox:has(.charactor){
    letter-spacing: -.05em;
}

.linkBox.--orange{
    background: var(--c-orange);
}
.linkBox.--pink{
    background: var(--c-pink);
}
.linkBox.--green{
    background: var(--c-green);
}
.linkBox.--toyopet{
    background:#70b17d;
}

.linkBox-list{
    display: flex;
    flex-direction: column;
    gap: min(2vw,1rem);
}

.-sb_subText{
    font-size: 1.4rem;
    display: block;
}

.contentsTitleArea{
    position: relative;
    z-index: 1;
}

/*--bread--*/
.breadcrumbs{
    font-size: min(1.24rem, 2.8vw);
    margin: 20px auto;
    text-align: center;
    color: var(--c-orange);
}

.breadcrumbs span{
    padding: 0 2px;
    font-weight: 500;
    color: var(--c-orange);
}

.breadcrumbs a{
    color: var(--c-orange);
    text-decoration: underline;
}

#page-top {
    position: absolute;
    top: min(2rem, 6vw);
    right: min(32px, 3vw);
    width: min(25rem, 16vw);
    z-index: 2;
}

#page-top a{
    display: block;
}

#page-top a:hover{
    transform: translateY(-6%);
}


/*---- youtube/googleMap -----*/
.googleMap{
    position: relative;
    padding-bottom: 65.25%;
    height: 0;
    overflow: hidden;
}

.googleMap iframe, .googleMap object, .googleMap embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube{
    position:relative;
    width:100%;
    padding-top:56.25%;
}

.youtube iframe{
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
}


/*--illust--*/
.c-decoImage{
    position: absolute;
}

.illust-flex{
    display: flex;
    align-items: baseline;
}

.i-child{
    width: min(58%);
}

/*--- animation ---*/
.a-katakata1{
    animation: katakata steps(1) 6s infinite;
}

.a-katakata2{
    animation: katakata steps(1) 8s infinite;
}

.a-katakata3{
    animation: katakata steps(1) 10s infinite;
}

@keyframes katakata{
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    10% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    20% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    30% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    40% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

.a-shine{
    animation: star 2.24s both infinite steps(1);
    animation-delay: .3s;
    transform-box: fill-box;
    transform-origin: center;
}
.a-shine2{
    animation: star 3s both infinite steps(1);
    animation-delay: .4s;
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes star{
    0% {
        transform: scale(.85);
    }
    48% {
        transform: scale(1);
    }
    50% {
        transform: scale(1);
    }
    52% {
        transform: scale(1);
    }
    100% {
        transform: scale(.85);
    }
}



.fuwafuwa {
    animation: fuwafuwa 4.2s infinite ease-in-out .8s alternate;
}

.fuwafuwa2 {
    animation: fuwafuwa 5s infinite ease-in-out .8s alternate;
}

@keyframes fuwafuwa {
    0% {
    transform:translate(0, 0);
    }
    50% {
        transform: var(--f-transform);
    }
    100% {
    transform:translate(0, 0);
    }
}

@keyframes fuwafuwa2 {
    0% {
        transform:translate(0, 0);
    }
    50% {
        transform: var(--f-transform);
    }
    100% {
        transform:translate(0, 0);
    }
}

.fuwafuwa-move1{
    --f-transform:translate(0, -5px);
}

.fuwafuwa-move2{
    --f-transform:translate(0, -8px);
}

.fuwafuwa-move3{
    --f-transform:translate(0, -10px);
}

.js-zoomIn{
    animation-name: scrollZoomInAnime;
    animation-delay: 0.5s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes scrollZoomInAnime{
    0% {
        transform: scale(0.4);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in2,
.menu-scrollFallIn{
    opacity: 0;
}

.fade-in2.is-active{
    animation: fadeInPopup .4s cubic-bezier(0.34, 1.56, 0.64, 1) .5s forwards;
}
@keyframes fadeInPopup {
    0%{
        transform: translate(0, 10px);
    }
    60%{
        transform: translate(0, -8px);
        opacity: 1;
    }
    100%{
        transform: translate(0, 0);
        opacity: 1;
    }
}

.menu-scrollFallIn.is-active{
    animation: scrollFallIn .4s ease-in-out forwards;
}
@keyframes scrollFallIn {
    0%{
        transform: translate(0, -30px);
    }
    100%{
        transform: translate(0, 0);
        opacity: 1;
    }
}


.gatagata{
    animation: gatagata 1.2s infinite;
}
@keyframes gatagata {
    20% {
        transform: translateY(-2px);
        animation-timing-function: cubic-bezier(.4,0,1,1.3);
    }
    25% {
        transform: translateY(0px);
    }
    55% {
        transform: translateY(-2px);
        animation-timing-function: cubic-bezier(.4,0,1,1.3);
    }
    60% {
        transform: translateY(0px);
    }
}

.chicachica{
    animation: chicachica 2s step-end infinite;
}
@keyframes chicachica {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.a-human{
    animation: human-jump 4s linear infinite -3s;
}
@keyframes human-jump {
    0% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(0);
    }
    24% {
        transform: translateY(-8%);
    }
    28% {
        transform: translateY(0);
    }
    32% {
        transform: translateY(-8%);
    }
    36% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}

.a-human2{
    animation: human-jump2 4s linear infinite 0s;
}
@keyframes human-jump2 {
    0% {
        transform: translateY(0) scale(1);
    }
    5% {
        transform: translateY(0) scale(1.06, .9);
    }
    10% {
        transform: translateY(-15%) scaleY(1.04);
    }
    15% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}
.a-human3{
    animation: human-shake 3.4s linear infinite .5s;
}
@keyframes human-shake {
    0% {
        transform: rotate(0);
    }
    20% {
        transform: rotate(0);
    }
    24% {
        transform: rotate(4deg);
    }
    28% {
        transform: rotate(-4deg);
    }
    32% {
        transform: rotate(4deg);
    }
    36% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}

.i-boy{
    animation: human-jump 3s linear infinite -3s;
}
.i-girl{
    animation: human-jump 3s linear infinite -5s;
}
.i-men{
    animation: human-jump 4s linear infinite -7s;
}

/*----text animation----*/
.slide-in {
	overflow: hidden;
    display: block;
}

.slide-in_inner {
    display: block;
    margin: 0 6%;
}

.leftAnimeInner,
.rightAnimeInner,
.page-leftAnimeInner,
.page-rightAnimeInner{
    opacity: 0;
}

.leftAnimeInner.is-active,
.page-leftAnimeInner.is-active {
    animation:text-left-to-right 1s 0.8s forwards cubic-bezier(0.22,1,0.1,1)
}

.rightAnimeInner.is-active,
.page-rightAnimeInner.is-active {
    animation:text-left-to-right 1s 0.8s forwards cubic-bezier(0.22,1,0.1,1)
}

@keyframes text-left-to-right {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@media screen and (min-width:1025px){
    /*--svg--*/
    .title-svg{
        height: min(3.5rem, 2.3vw);
    }

    #page-top{
        max-width: 70px;
        width: min(90px, 5vw);
    }
}

@media screen and (min-width:768px){
    /*--linkBox--*/
    .linkBox {
        --ease-out-cubic: cubic-bezier(.37,.49,.35,1.28);
        overflow: hidden;
        line-height: 1;
    }

    .linkBox:has(.charactor){
        letter-spacing: -.07em;
    }

    .linkBox:hover .charactor {
        translate: 0 -.3em;
        animation: hoverText var(--transition) .8s forwards;
    }

    .charactor {
        display: inline-block;
        translate: 0 0;
        transition: translate .2s var(--ease-out-cubic) calc(0.05s * var(--index));
    }

    a:hover .hover-jump{
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-animation: jump .4s ease-in-out,jumpsub .4s ease-in;
        animation: jump .4s ease-in-out,jumpsub .4s ease-in
    }
    @keyframes jump {
        0% {
            translate: 0 0
        }

        50% {
            translate: 0 -20%
        }

        100% {
            translate: 0 0
        }
    }
    @keyframes jumpsub {
        0% {
            scale: 1 1
        }

        10% {
            scale: 1.2 .8
        }

        20% {
            scale: .8 1
        }

        85% {
            scale: .8 1
        }

        90% {
            scale: 1 .8
        }

        100% {
            scale: 1 1
        }
    }
}


/*----------
  Header
----------*/
#js-top {
    opacity: 0;
    position: fixed;
    z-index: 3;
    transition: var(--transition);
    visibility: hidden;
    width: 100%;
}
#js-top.is-show {
    opacity: 1;
    transition: var(--transition);
    visibility: visible;
}

/*----------*/
/* hamburger
/*----------*/
.openbtn{
    cursor: pointer;
    position: relative;
    width: min(70px, 15vw);
    height: min(70px, 15vw);
    z-index: 200;
    background: var(--c-white);
    border: var(--b-brown);
    border-radius: 50%;
    transition: ease .5s;
}

.openbtn span{
    display: inline-block;
    transition: all .3s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 2px;
    background: var(--c-orange);
    width: 53%;
  }

.openbtn span:nth-of-type(1) {
    top: min(22px,5vw);
}
.openbtn span:nth-of-type(2) {
    top: min(30px,7vw);
}
.openbtn span:nth-of-type(3) {
    top: min(38px,9vw);
}


.openbtn.active span:nth-of-type(1){
    transform:translateX(-50%) rotate(-24deg);
    top: min(29px, 7vw);
}
.openbtn.active span:nth-of-type(2){
    display: none;
}
.openbtn.active span:nth-of-type(3){
    transform:translateX(-50%) rotate(24deg);
    top: min(30px, 7vw);
}

.openbtn small{
    position: absolute;
    bottom: 15%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -15%);
}

.g-nav{
    position: fixed;
    z-index: 100;
    top: 0;
    width:100%;
    height: 100vh;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    background: url(img/bg-deco.webp) repeat center;
    background-size: 190%;
}

#g-nav.panelactive{
    opacity: 1;
    visibility: inherit;
    overflow-x: hidden;
    overflow-y: auto;
}

.g-nav_wrapper{
    margin-top: min(48px, 22%);
    position: relative;
}

.g-nav_ticket{
    margin: 0 auto;
    transition: var(--transition);
    -webkit-transform: rotate(-10deg) translate(-20px, -30px);
    transform: rotate(-10deg) translate(-20px, -30px);
    opacity: 0;
}

#g-nav.panelactive .g-nav_ticket{
    transition-delay: .85s;
    -webkit-transform: rotate(0deg) translate(0px, 0px);
    transform: rotate(0deg) translate(0px, 0px);
    opacity: 1;
}

.g-nav_ticket a.linkBox{
    width: 100%;
    display: flex;
    gap: min(2vw,1rem);
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    padding: min(2rem, 3vw) min(1rem, 2vw);
    margin-bottom: min(3vw,2rem);
}

.g-nav_ticket a.linkBox .linkBox-svg{
    width: min(28vw, 12rem);
    display: block;
}

.g-nav_ticket a.linkBox .linkBox-text{
    font-size: min(4.24vw, 2rem);
}

.link-svg{
    fill: var(--c-white);
    display: block;
}

.linkBox-icon{
    width: min(7vw, 3rem);
}

li.-nav_menuItem{
    padding: min(14px, 3vw) 0;
    transition: .2s;
    -webkit-transform: rotate(-10deg) translate(-20px, -30px);
    transform: rotate(-10deg) translate(-20px, -30px);
    opacity: 0;
}

#g-nav.panelactive li.-nav_menuItem{
    transition: var(--transition);
    -webkit-transform: rotate(0deg) translate(0px, 0px);
    transform: rotate(0deg) translate(0px, 0px);
    opacity: 1;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(1){
    transition-delay: .4s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(2){
    transition-delay: .45s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(3){
    transition-delay: .5s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(4){
    transition-delay: .55s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(5){
    transition-delay: .6s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(6){
    transition-delay: .65s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(7){
    transition-delay: .7s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(8){
    transition-delay: .75s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(9){
    transition-delay: .8s;
}
#g-nav.panelactive li.-nav_menuItem:nth-of-type(10){
    transition-delay: .85s;
}

li.-nav_menuItem a{
    color: var(--c-dBrown);
    text-align: center;
    display: flex;
    align-items: center;
    gap: min(2vw, 1rem);
    text-align: left;
}
li.-nav_menuItem a span{
    display: block;
    font-size: min(1.4rem, 3.24vw);
    font-weight: 700;
}

li.-nav_menuItem img{
    display: block;
    height: min(2rem, 4.24vw);
}

img.contentsMenu-illust{
    position: absolute;
}

.g-nav_image1{
    left: 0;
    width: 12%;
    bottom: -5%;
}
.g-nav_image2{
    width: 14%;
    bottom: -5%;
    right: -5%;
}

.g-nav_car{
    animation: carAnimation 6s ease-in-out .2s infinite forwards;
    position: absolute;
    bottom: 0;
    width: min(16rem, 32vw);
}
.g-nav_car>img{
    animation: carRunAnimation .5s infinite;
}

.fixedInformation{
    z-index: 100;
    right: min(82px, 19vw);
    top: 18px;
    transition: ease .5s;
}

.fixedInformation a{
    width: min(70px,15vw);
    height: min(70px,15vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fixedInformation a img,
.openbtn{
    transition:var(--transition);
}

.fixedInformation ul{
    display: flex;
    gap: 6px;
}

.fixedLogo{
    z-index: 3;
    width: min(170px, 34vw);
}
.fixedLogo a:hover{
    opacity: .6;
}

.fixedMenu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    margin: min(16px,3vw) 12px 0;
}

.fixedMenu.is-hidden{
    opacity: 0;
    visibility: hidden;
}

.fixedMenu.is-hidden:has(.openbtn.active){
    opacity: 1;
}

.fixedMenu-wrapper{
    display: flex;
    align-items: center;
    gap: min(8px, 2vw);
}

.g-nav_mainMenu{
    margin-bottom: min(4vw, 4rem);
}

/*----------*/
/* site layout
/*----------*/
main.hk-container{
    position: relative;
    width: 100%;
    background-color: var(--mainColor2);
    background-image: url(img/bg-deco.webp);
    background-repeat: repeat;
    background-size: 60%;
    background-attachment: fixed;
}

.site-main {
    background: var(--mainColor);
    box-sizing: border-box;
    overflow: hidden;
    order:2;
}

/*----------
loading
----------*/
#js-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: var(--c-pink2);
    z-index: 100;
    overflow: hidden;
  }

.-loading_imagesWrapper{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

div.-logoAnimation_image{
    position: absolute;
    width: min(320px, 36vw);
    top: 90px;
    animation: carAnimation 8s ease-in-out 0s infinite forwards;
}

div.-logoAnimation_image img.-image_icon{
    width: min(240px, 36vw);
    animation: carRunAnimation .5s infinite;
}
@keyframes carRunAnimation {
    20% {
        transform: translateY(-4px);
        animation-timing-function: cubic-bezier(1, 0, 1, 1.3);
    }
    25% {
        transform: translateY(0px);
    }
    55% {
        transform: translateY(-3px);
        animation-timing-function: cubic-bezier(1, 0, 1, 1.3);
    }
    60% {
        transform: translateY(0px);
    }
}
@keyframes carAnimation {
    0% {
        right: -40%;
    }
    100% {
        right: calc(100% + 100px);
    }
}

div.-logoAnimation_image._image2{
    width: min(300px, 34vw);
    top: -180px;
    animation: carAnimation-left 8s ease-in-out 0s infinite forwards;
}
@keyframes carAnimation-left {
    0% {
        left: -40%;
    }
    100% {
        left: calc(100% + 83px);
    }
}

._hand-loading{
    opacity: 0;
    animation: deco-fadeIn .3s ease .9s normal forwards;
    position: relative;
    right: -4%;
}

.-loading_text{
    text-align: center;
    color: var(--c-pink);
    font-family: var(--font-en);
    font-size: min(3.24rem,5.4vw);
    font-weight: 900;
    text-transform: uppercase;
    animation: ladingGoBackAnime .4s ease 7.5s normal forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

.-loading_text.is-active {
    --opacity: 1;
    --scale: 1;
}
.char {
    display: inline-block;
    transform: scale(var(--scale, 0));
    opacity: var(--opacity, 0);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1), transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition-delay: calc(0.02s * var(--char-index));
}


.splashbg{
    display: none;
	content: "";
	position:fixed;
	transform: scale(0);
	background-color:var(--c-lPink);
	z-index: 999;
    top:50%;
    left:50%;
	width: 2rem;
	height: 2rem;
}

body.appear .splashbg{
    display: block;
    border-radius: 50%;
	animation-name:PageAnime;
	animation-duration:.8s;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
        display: block;
		transform: scale(0);
	}
	100% {
		transform: scale(100);
		display: none;
	}
}

@keyframes deco-fadeIn {
    0%{
        opacity: 0;
        transform: scale(0);
    }
    50%{
        opacity: 1;
        transform: scale(1.2);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ladingGoBackAnime {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(0);
    }
}

/*----------*/
/* KV
/*----------*/
.kv{
    position: relative;
    background: var(--mainColor);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kv .kv-main{
    z-index: 2;
    width: min(80vw, 60rem);
    margin-top: min(2rem, 5vw);
}

.is-loadActive .kv-main_inner{
    opacity: 0;
    animation:KV-fade-bottomIn .3s ease-out 1.4s normal forwards;
}
@keyframes KV-fade-bottomIn {
    0% {
        transform: scale(.8) translateY(8%);
    }
    50% {
        opacity: 1;
        transform: scale(1.4) translateY(-3%);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0%);
    }
}

.kv-main_inner p{
    width: min(60vw, 46rem);
    margin: 0 auto min(3vw, 1rem);
}

.kv>.kv-bg{
    position: absolute;
    top: -16%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 297%;
}

span.kv-cloud,span.kv-deco{
    position: absolute;
}
span.kv-cloud.-cloud1{
    width: min(20rem, 30vw);
    left: -9vw;
    bottom: 11%;
    z-index: 2;
}
span.kv-cloud.-cloud2{
    width: min(20rem, 28vw);
    right: -9%;
    top: min(150px, 18vw);
}

span.kv-deco.-deco_confetti1{
    width: min(7rem, 12vw);
    left: 4%;
    top: min(3rem, 6vw);
}
span.kv-deco.-deco_confetti2{
    width: min(5rem, 6vw);
    right: 4%;
    top: min(2rem, 4vw);
}
span.kv-deco.-deco_confetti3{
    width: min(15rem, 5vw);
    left: 8%;
    top: min(150px, 21vw);
}
span.kv-deco.-deco_confetti4{
    width: min(5vw, 3rem);
    right: 8vw;
    top: min(48vw, 43rem);
    z-index: 2;
}
span.kv-deco.-deco_confetti5{
    width: min(5vw, 3rem);
    left: 8vw;
    top: min(56vw, 40rem);
    z-index: 2;
}
span.kv-deco.-deco_confetti6{
    width: min(5vw, 3rem);
    left: 16vw;
    top: min(84vw, 61rem);
    z-index: 2;
}
span.kv-deco.-deco_confetti7{
    width: min(13vw, 11rem);
    right: 4vw;
    top: min(79vw, 57rem);
    z-index: 2;
}

/*----------*/
/* event date
/*----------*/
.eventDays{
    margin-top: -45vw;
    padding-bottom: min(48px, 16vw);
    position: relative;
    z-index: 1;
}

.event-zoomIn{
    animation-delay: 3.8s;
}

.eventDays-mainImage{
    margin: 0 0 0 min(8rem, 8vw);
    z-index: 1;
    position: relative;
}


@media screen and (min-width:1025px){
    #js-top{
        width: var(--cha-contents-width);
    }

    .fixedInformation a:hover img,
    .openbtn:hover{
        transform: scale(1.06);
    }

    /*----------*/
    /* KV
    /*----------*/
    .kv .kv-main{
        width: min(45rem, 30vw);
        margin-top: min(2rem, 5vw);
    }

    .kv-main_inner p{
        width: min(60vw, 28rem);
    }

    span.kv-cloud.-cloud1{
        width: min(13rem, 10vw);
        left: -10%;
        bottom: 12%
    }

    span.kv-cloud.-cloud2{
        top: min(9rem, 10vw);
        width: min(12rem, 9vw);
        right: -8%;
    }

    span.kv-deco.-deco_confetti1{
        width: min(6rem, 4vw);
        left: 4%;
        top: min(2rem, 1vw);
        z-index: 2;
    }
    span.kv-deco.-deco_confetti2{
        width: min(4rem, 2.4vw);
        right: 3%;
        top: min(2rem, 4vw);
    }
    span.kv-deco.-deco_confetti3{
        width: min(3rem, 2vw);
        top: min(11rem, 8vw);
    }
    span.kv-deco.-deco_confetti4{
        width: min(2vw, 3rem);
        right: min(2vw, 4rem);
        top: min(18vw, 25rem);
    }
    span.kv-deco.-deco_confetti5{
        width: min(2vw, 3rem);
        left: min(2vw, 3rem);
        top: min(21vw, 28rem)
    }
    span.kv-deco.-deco_confetti6{
        width: min(2vw, 3rem);
        left: min(4vw, 5rem);
        top: min(31vw, 45rem);
    }
    span.kv-deco.-deco_confetti7{
        width: min(5vw, 6rem);
        right: min(2vw, 3rem);
        top: min(29vw, 37rem);
    }

    /*----------*/
    /* event date
    /*----------*/
    .eventDays{
        margin-top: -44%;
    }

    .eventDays-mainImage{
        margin: 0 0 0 min(4rem, 8vw);
    }
}

@media screen and (min-width:769px){
}

/*----------*/
/* side content
/*----------*/
.fixed{
    position: fixed;
}

.pcMainImage{
    position: relative;
}

.site-mainImage{
    display: none;
}

.site-sideLeft{
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
    z-index: 1;
    display: none;
}

.site-sideRight{
    order: 3;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 1;
    display: none;
}

.site-sideRight_ticket.ticketInfo{
    position: absolute;
    bottom: 0;
    width: min(77%, 38rem);
    right: 0;
    z-index: 1;
    margin: 0;
}

.ticketInfo-kusa{
    position: relative;
}
.ticketInfo-kusa>p{
    color: var(--c-white);
    text-align: center;
    position: absolute;
    bottom: 12%;
    right: 5%;
    width: 71%;
    font-size: min(2.24rem, 3.24vw);
    font-weight: 600;
}

.ticketInfo-bubble{
    position: absolute;
    width: min(33vw);
    left: -51%;
    bottom: 0;
}

.ticketInfo-ticketImage{
    position: absolute;
    width: min(32%);
    z-index: 1;
    left: 1%;
    top: -12%;
}

.ticketInfo-parkingImage{
    position: absolute;
    width: min(32%);
    right: 6%;
    top: -66%;
}

@media screen and (min-width:1025px){
    .site-mainImage{
        position: fixed;
        top: 0;
        left: 0;
        background: var(--mainColor);
        overflow: hidden;
        width: 100%;
        display: block;
    }

    .site-mainImage img.pcMainImage-image{
        padding-top: 1vw;
        display: block;
        width: 100%;
    }

    .site-mainImage_bg{
        position: absolute;
        width: 100%;
        top: -5vh;
        left: 0;
        z-index: -1;
    }

    .site-mainImage>.mainImage-cloud{
        width: min(11vw);
        top: 2vw;
        left: 22%;
        z-index: -1;
    }
    .site-mainImage>.mainImage-cloud2{
        width: min(14vw);
        top: 7vw;
        left: -7vw;
        z-index: -1;
    }
    .site-mainImage>.mainImage-cloud3{
        width: min(9vw);
        right: 24vw;
        top: 3vw;
        z-index: -1;
    }
    .site-mainImage>.mainImage-cloud4{
        width: min(15vw);
        left: -4vw;
        top: 21vw;
        z-index: 7;
    }
    .site-mainImage>.mainImage-cloud5{
        width: min(15vw);
        right: -9vw;
        top: 14vw;
        z-index: 7;
    }

    .pc-confetti1{
        width: 5vw;
        top: -1vw;
        left: 6vw;
    }
    .pc-confetti2{
        width: 3vw;
        top: 12vw;
        left: 2vw;
        transform: rotate(34deg);
    }
    .pc-confetti3{
        width: 2vw;
        top: .5vw;
        left: 20vw;
        z-index: -1;
    }
    .pc-confetti4{
        width: 2vw;
        top: 1vw;
        left: 30vw;
        z-index: -1;
    }
    .pc-confetti5{
        width: 2vw;
        top: 7vw;
        right: 2vw;
    }
    .pc-confetti6{
        width: 5vw;
        top: 11vw;
        right: 4vw;
    }
    .pc-confetti7{
        width: 5vw;
        top: 1vw;
        right: 21vw;
        transform: scale(-1, 1);
    }
    .pc-confetti8{
        width: 3vw;
        top: 1vw;
        right: 5vw;
        transform: rotate(-20deg);
    }
    .pc-confetti9{
        width: 2.4vw;
        top: 6vw;
        right: 30vw;
        transform: rotate(14deg);
    }

    .site-sideRight{
        width: calc((100% - var(--cha-contents-width)) / 2);
        height: 100dvh;
        display: block;
    }

    .site-sideRight_menuList{
        z-index: 1;
        background: #f8f4e4;
        border: var(--b-brown);
        padding: min(4vw, 2rem);
        position: relative;
        width: min(88%,46rem);
        margin: 17vw auto 0;
    }
    .site-sideRight_menuList::after,
    .site-sideRight_menuList::before{
        position: absolute;
        content: "";
    }

    .site-sideRight_menuList::after{
        background: var(--c-dBrown);
        width: .3rem;
        height: 100%;
        z-index: -4;
        top: 0;
        right: .8%;
    }
    .site-sideRight_menuList::before{
        background: url(img/m-legs.svg) no-repeat center;
        background-size: 100%;
        width: 88%;
        height: 32%;
        left: 50%;
        bottom: -12%;
        transform: translate(-50%, 29%);
        z-index: -3;
    }

    .site-sideRight_menuList>ul{
        display: flex;
        flex-wrap: wrap;
        position: relative;
        justify-content: space-around;
        gap: min(2vw, 1rem);
    }

    .site-sideRight_menuList>ul li{
        width: calc((100% - calc(min(2vw, 1rem) * 2)) / 3);
    }

    .site-sideRight_menuList>ul li img{
        transition: var(--transition);
    }
    .site-sideRight_menuList>ul li a img:hover{
        transform: translateY(-6px);
    }

    .site-sideRight_menuList .illust-wrap{
        width: min(19%);
        left: 12%;
        bottom: -37%;
    }

    .site-sideLeft{
        width: calc((100% - var(--cha-contents-width)) / 2);
        display: block;
    }

    .pc-busStop{
        width: min(6rem, 13%);
        top: 58%;
        left: 19%;
    }
    .pc-women{
        width: min(32rem, 18%);
        bottom: 15%;
    }
    .pc-boy{
        width: min(32rem, 13%);
        bottom: 9%;
        left: 21%;
    }
    .pc-kitchenCar{
        width: min(18vw,30rem);
        top: 24vw;
        left: 10%;
    }
    .pc-bus{
        width: min(25vw, 40rem);
        top: 74%;
        left: 16vw;
    }

}

/*----------*/
/* top menu list
/*----------*/
.contentsMenuList{
    position: relative;
    z-index: 1;
}

.contentsMenuList .contents{
    z-index: 1;
    background: #f8f4e4;
    border: var(--b-brown);
    padding: min(4vw, 4rem);
    position: relative;
}
.contentsMenuList .contents::after{
    position: absolute;
    content: "";
    background: var(--c-dBrown);
    width: .3rem;
    height: 100%;
    z-index: -4;
    top: 0;
    right: .8%;
}

.contentsMenuList-wrapper{
    position: relative;
}
.contentsMenuList-wrapper::after{
    position: absolute;
    content: "";
    background: url(img/m-legs.svg) no-repeat center;
    background-size: 100%;
    width: 79%;
    height: 39%;
    z-index: -4;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 66%);
}

ul.contentsMenuList-main{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-around;
    gap: min(2vw,1rem);
}

ul.contentsMenuList-main li{
    width: calc((100% - calc(min(2vw,1rem) * 2)) / 3);
}

.contentsMenuList ul li img{
    transition:var(--transition);
}

.contentsMenuList .-decoImage_kusa{
    width: min(33vw, 18rem);
    left: 0;
    top: -22%;
    z-index: -1;
}

.contentsMenuList .illust-wrap{
width: min(19vw, 15rem);
    display: flex;
    align-items: baseline;
    bottom: -46%;
    left: 5vw;
}
.contentsMenuList .illust-wrap>.i-girl{
    width: min(59%);
}

.ticketInfo{
    position: relative;
    margin: min(32vw) 0 9vw auto;
    bottom: 0;
    width: min(64vw);
    right: 0;
    z-index: 1;
}

.ticketInfo a p{
    text-align: center;
    color: var(--c-white);
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translate(-50%, -12%);
    width: 90%;
    font-size: min(1.6rem,4vw);
}

.policeCar{
    position: relative;
    width: min(68vw, 66%);
    margin: 0 auto;
}

.policeCar>.illust-wrap{
    width: min(13vw, 7rem);
    bottom: 0;
    left: -19%;
}
.policeCar>.illust-wrap2{
    width: min(12vw, 6rem);
    bottom: 0;
    left: min(6vw, 4rem);
}

/*----------*/
/* main contents
/*----------*/
/*-- road bg --*/
.roadBg-main{
    position: relative;
    margin-top: max(-140px, -60%);
}
.roadBg-main::before{
    position: absolute;
    content: "";
    background: url(img/index-bg.png) no-repeat top;
    background-size: 100%;
    width: 100%;
    height: 100%;
}

.indexWrap{
    position: relative;
    background: url(img/bg-deco.webp) repeat center;
    background-size: 210%;
    padding-bottom: min(18%);
}

.indexWrap-mountain{
    margin-bottom: -5vw;
    z-index: 1;
    position: relative;
}


/*-- Intro --*/
.intro{
    margin-bottom: min(9vw, 6rem);
    position: relative;
}

.intro-mainImage{
    position: relative;
}

.intro-shobosha{
    width: min(75vw, 63rem);
    margin: 0 auto min(3vw, 1rem);
}

.intro-bubble{
    width: min(82vw,64rem);
    margin: 0 auto;
}

.intro-tigo{
    width: min(17vw, 12rem);
    right: min(5vw, 5rem);
    bottom: -9%;
}

.intro-mainImage>.illust-wrap{
    bottom: 0;
    left: min(18vw, 15rem);
    bottom: -15%;
    width: min(12vw, 9rem);
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
}

/*-- concept --*/
.concept{
    position: relative;
}

.concept .title-svg{
    height: min(3.64rem, 5.5vw);
}

.concept p.contents-title_sub{
font-size: min(2rem, 4vw);
}

.concept-text p{
    line-height: 2;
}

/*-- instagram --*/
.instagram{
    position: relative;
    margin-top: min(17vw, 16rem);
}

.instagram .contents-wrapper{
    margin-bottom: var(--section-margin);
    position: relative;
    padding:calc(var(--bgw-margin) * 1.5) var(--bgw-margin);
}

h2.title-instagram{
    width: min(73vw, 40rem);
    position: absolute;
    left: min(10vw);
    top: -16%;
}

.instagram-links{
    width: min(28vw, 15rem);
    position: relative;
    margin-left: auto;
    margin-right: min(3vw);
    margin-bottom: min(-11%);
    z-index: 1;
}

.instagram-links a{
    display: block;
}

.instagram-topCarImage{
    margin: min(40px, 10vw) min(50px, 6vw) max(-52px, -8vw);
    z-index: 1;
    position: relative;
}

.iceCar{
    width: min(66vw, 70%);
    margin: 0 auto min(29vw, 16rem);
}

.instagram .c-decoImage{
    width: min(32vw, 16rem);
    z-index: 2;
    bottom: -11%;
    left: 0;
}

#sbi_images,#sb_instagram{
    padding: 0!important;
}

/*-- toyopet --*/
.toyopetCharacter{
    z-index: 2;
    position: relative;
    margin: 0 min(36px, 8vw) min(142px, 21vw);
}

.toyopetCharacter-sponsor{
    margin-bottom: calc(var(--ps-margin) * 1.5);
}

.toyopetCharacter-image{
    display: flex;
    align-items: baseline;
    justify-content: center;
    position: relative;
}

.toyopetCharacter>.-decoImage_kusa{
    width: min(37vw, 26rem);
    z-index: 2;
    right: -9vw;
}

.toyopetCharacter span.-sb_deco{
    margin: 0 min(72px, 12vw) min(12px, 3vw);
    display: block;
    width: min(92%);
    margin: 0 auto;
}

.toyopetCharacter-link{
    text-align: center;
    color: var(--toyopetColor);
    --toyopetColor: #005952;
    margin-top: min(3vw, 2rem);
}

.toyopetCharacter-link .linkBox{
    padding: min(4vw, 2rem);
    font-size: min(5vw, 2.24rem);
    margin: min(6vw, 3rem) auto 0;
    width: 100%;
}

.toyopetCharacter-link a img:nth-of-type(2){
    width: 63%;
    margin: 0 auto;
}

.toyopetCharacter-link h3{
    width: 68%;
    padding-bottom: min(32px, 7vw);
    margin: 0 auto;
}

.character-mainImage{
    width: 64%;
}
.character-name{
    width: 36%;
}

.character-name.-name-tigo{
    margin-right: -8%;
}
.character-name.-name-pigo{
    margin-left: -8%;
    z-index: -1;
}


@media screen and (min-width:1025px){
    /*----------*/
    /* main contents
    /*----------*/
    /*-- road bg --*/
    .indexWrap{
        padding-bottom: min(12%);
    }

    /*----------*/
    /* top menu list
    /*----------*/
    .contentsMenuList .contents{
        padding: min(4vw, 2rem);
    }
    /*-- concept --*/
    .concept .title-svg{
        height: min(2.64rem, 1.8vw);
    }

    .contentsMenuList .illust-wrap{
        width: min(19vw, 9rem);
        left: min(5vw, 3rem);
    }

    .policeCar>.illust-wrap{
        width: min(5vw, 7rem);
    }

    .policeCar>.illust-wrap2{
        width: min(5vw, 6rem);
    }

    /*-- instagram --*/
    .instagram{
         margin-top: min(7vw, 8rem);
    }

    h2.title-instagram{
        width: min(25vw, 33rem);
        left: min(3vw, 6rem);
        top: -15%;
    }

    .instagram-links{
        width: min(10vw, 13rem);
    }

    .iceCar{
        margin: 0 auto min(13vw, 16rem);
    }

    .toyopetCharacter{
        margin: 0 min(36px, 8vw) min(142px, 11vw);
    }

    /*-- ticket --*/
    .ticketInfo{
        margin: min(14vw, 16rem) 0 min(9vw, 4rem) auto;
        width: min(64vw, 65%);
    }

    .ticketInfo-bubble{
    width: min(33vw, 50%);
    }

    .ticketInfo-kusa>p{
        font-size: min(89%, 3rem);
    }

    .toyopetCharacter-link .linkBox{
        letter-spacing: -.3rem;
    }

    /*-- Intro --*/
    .intro-shobosha{
        width: min(28vw, 40rem);
        margin: 0 auto min(3vw, 1rem);
    }

    .intro-bubble{
        width: min(30vw, 43rem);
    }

    .intro-mainImage>.illust-wrap{
        left: min(7vw, 11rem);
        width: min(5vw, 7rem);
    }
    .intro-tigo{
        width: min(6vw, 9rem);
        right: min(2vw, 3rem);
    }


    /*-- toyopet --*/
    .toyopetCharacter>.-decoImage_kusa{
        right: -15%;
        width: min(19vw, 26rem);
    }
}

@media screen and (min-width:769px){
    .contentsMenuList ul li img:hover{
        transform: translateY(-8px);
    }
}

/*----------*/
/* Topics
/*----------*/
.index-news{
    position: relative;
    z-index: 1;
    margin: 0 auto calc(var(--section-margin) * 1.5);
}

.news-titleImage{
    width: min(33vw,15rem);
    margin: 0 auto -5%;
    z-index: 1;
    position: relative;
}

.index-newsWrap{
    position: relative;
}

.index-news_titleWrap{
    position: relative;
}

.index-news_titleWrap>.illust-wrap{
    width: min(17vw, 8rem);
    top: 0;
    left: min(8vw, 4rem);
}
.index-news_titleWrap>.illust-wrap .i-boy{
    position: absolute;
    z-index: 1;
    width: min(72%);
    bottom: 0;
    right: -33%;
}

.index-news_titleWrap>.illust-wrap2{
    width: min(16vw, 7rem);
    top: 0;
    right: min(9vw, 6rem);
    transform: scale(-1, 1);
}

.c-decoImage.-decoImage_shoberu{
    width: min(44vw, 26rem);
    right: min(2vw,1rem);
    bottom: -20%;
}

.news .contents-wrapper{
    padding: 24px 24px 10%;
    position: relative;
}

.topics-list a{
    font-weight: 500;
}

.topics-list a h3{
    font-weight: 500;
}

.topics-list ul li{
    padding: min(16px, 3vw) 0;
    border-bottom: var(--b-dashed);
}

.topics-list ul li h4{
    padding-top: 2px;
    line-height: 1.4;
    font-weight: 500;
}

.date{
    color: var(--c-orange);
    font-weight: 400;
    font-size: min(1.4rem,3.4vw);
    letter-spacing: 0.04em;
}

.new-text{
    text-transform: uppercase;
    font-size: min(1.4rem, 2.8vw);
    color: var(--c-green);
    font-weight: 600;
}

.postnav{
    text-align: center;
    padding-top: 50px;
}

.newsLink{
    position: relative;
    margin: min(3rem, 8vw) 0 0 0;
    width: min(18rem, 34vw)
}

/*----------*/
/* Supporter
/*----------*/
.supporter{
    position: relative;
    z-index: 1;
}

.supporter h2.contents-mainTitle{
    position: absolute;
    width: min(27rem, 50vw);
    left: min(44px, 9vw);
    top: -5%
}

.supporter .contents-wrapper{
    padding: 24px;
}

.supporter>.illust-wrap{
    right: min(10vw);
    top: min(-5.4%);
    width: min(28vw);
}

.supporter-list{
    text-align: center;
    padding: var(--bgw-margin);
    margin-bottom: 24px;
    margin-bottom: min(6rem, 6vw);
}

.supporter-list h4{
    color: var(--c-orange);
    border-bottom: solid 2px var(--c-orange);
    font-size: min(2rem, 4.4vw);
    line-height: 1.5;
    padding-bottom: min(16px, 3vw);
    margin-bottom: min(24px, 6vw);
    font-weight: 600;
}

.supporter-list h4 span{
    display: block;
}

.supporter-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 12px min(10px,2vw);
    justify-content: center;
}

.supporter-list ul li {
    width: calc((100% - calc(min(10px,2vw) * 2)) / 3);
}

.supporter-list ul.supporterMain,
.supporter-list ul.supporterMain2,
ul.supporterCar{
    margin-bottom: calc(var(--ps-margin)* 1.5);
}

.supporter-list ul.supporterMain li,
ul.supporterCar li {
    width: calc((100% - 12px) / 2);
}
.supporter-list ul.supporterMain li:nth-of-type(1),
.supporter-list ul.supporterMain li:nth-of-type(2){
    width: calc((100% - 80px) / 1);
}

.supporter-list ul.supporterMain2 li{
    width: calc((100% - 36px) / 2);
}

@media screen and (min-width:1025px){
    .index-news_titleWrap>.illust-wrap2{
        width: min(6vw, 7rem);
        right: min(3vw, 6rem);
    }
    .index-news_titleWrap>.illust-wrap{
        left: min(2vw, 4rem);
        width: min(6vw, 8rem);
    }

    .c-decoImage.-decoImage_shoberu{
        width: min(14vw, 22rem);
    }

    .supporter h2.contents-mainTitle{
        top: -5%;
        width: min(24rem, 18vw);
        left: min(44px, 2vw);
    }

    .supporter>.illust-wrap{
        right: min(10vw, 3rem);
        top: min(-6.4%);
        width: min(14rem, 11vw);
    }
}

@media screen and (min-width:769px){
    .topics-list a:hover{
        opacity: 0.6;
    }
}


/*----------
 footer
----------*/
footer{
    background: url(img/footer-bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    text-align: center;
    position: relative;
    padding: min(10rem, 14vw) 0 0px;
    z-index: 1;
    margin-top: -16%;
}

.footer-information{
    font-size: min(2.4rem, 4.24vw);
    letter-spacing: 0;
    text-align: center;
    padding: 0 min(24px, 6vw) min(4vw, 24px);
    z-index: 1;
    position: relative;
    color: var(--text-white);
}

.footer-information h4{
    padding-bottom: 8px;
}

.footer-information p a{
    width: min(42rem, 57vw);
    display: block;
    margin: min(10px, 2vw) auto 0;
}
.footer-information p a img{
    display: block;
}

small.copyright{
    color: var(--c-dBrown);
    text-align: center;
    display: block;
    padding-bottom: 16px;
    font-size: min(1.24rem, 2.4vw);
    font-weight: 400;
}

/*--------------*/
/*レスポンシブ基本CSS
/*--------------*/
.pcheader{
    display:block;
}

.pc{
    display:none;
}

.mobile{
    display: none!important;
}

@media screen and (min-width:1025px){
    .site-main{
        z-index: 2;
        position: relative;
        border-left: solid 2px var(--c-dBrown);
        border-right: solid 2px var(--c-dBrown);
        width: var(--cha-contents-width);
    }
    main.hk-container{
        display: flex;
    }

    .g-nav{
        width: var(--cha-contents-width);
    }

    footer{
        padding: 8% 0 0px;
        margin-top: -18%;
    }

    .footer-information{
        font-size: min(2rem, 1.3vw);
        padding: 0 min(24px,6vw) min(2vw, 24px);
    }
    .footer-information p a{
        width: min(32rem, 21vw);
    }

    .footer-information p a:hover{
        opacity: 0.6;
    }

}

@media screen and (min-width:769px){
    body{
        font-size: min(1.4rem,3.83vw);
    }

    .fixedInformation{
        right: min(82px, 10vw);
    }

    .fixedLogo{
        right: min(340px, 44vw);
    }

    li.-nav_menuItem a:hover{
        transform: scale(1.05);
    }

    small.copyright{
        font-size: min(1.24rem, 1vw);
    }

}