@charset "utf-8";
/*-------reset--------*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, header, footer, aside, main, figure, figcaption, nav, section {
  display: block;
}
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #333;
}
a:focus {
  outline: none;
}
a:hover {
  cursor: pointer;
  opacity: 0.8;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
table, td, th {
  border-collapse: collapse;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"], input[type="reset"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus, input[type="reset"]::focus {
  outline-offset: -2px;
}
/*=====pc_mode=====*/
/*-----共通------*/
body {
  font-family:"Zen Maru Gothic","Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}
a {
  color: #333;
}
.tb_style {
  display: none !important;
}
.sp_style {
  display: none !important;
}
.flex {
  display: flex;
}
.flex.between {
  justify-content: space-between;
}
.flex.center {
  justify-content: center;
}
.flex.reverse {
  flex-direction: row-reverse;
}
.bold {
  font-weight: bold;
}
.text_red{
    color: #FF3800;
}
.fadeinUp {
  animation-name: fadein-up;
  animation-duration: 1s; /*アニメーション時間*/
  animation-timing-function: ease-out; /*アニメーションさせるイージング*/
  animation-delay: 0; /*アニメーション開始させる時間*/
  animation-iteration-count: 1; /*繰り返し回数*/
  animation-direction: normal; /*往復処理をするかどうか*/
  animation-fill-mode: backwards; /*アニメーション後のスタイル*/
}
img {
  width: 100%;
    display: block;
}
.content_wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
    background-color: #fff;
}
.content_wrap.round{
    border-radius: 40px;
    background-color: #fff;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 10%);
}
.inner_wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.text_center {
  text-align: center;
}
.g_font_r {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
/*--------ふわっと--------*/
.fadeInDown {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
h2.h2_style{
    text-align: center;
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
h2.h2_style:before{
    content: "";
    padding: 10px 45px;
    background-image: url("../images/color_circle.png");
    background-repeat: no-repeat;
    background-size: 65px;
    background-position: left center;  
}
h2.h2_style:after{
    content: "";
    padding: 10px 45px;
    background-image: url("../images/color_circle.png");
    background-repeat: no-repeat;
    background-size: 65px;
    background-position: right;  
}

/*======header=====*/

.headernav_wrap {
background-image: url("../images/topbottom.png");
background-size: 180px;
background-repeat: repeat-x;
background-position: top;
position: fixed;
margin: 0 auto;
top:0;
left: 0;
right: 0;
z-index: 888;
background-color: rgba(255, 255, 255, .9);
/*box-shadow: 2px 2px 8px rgb(0 0 0 / 10%);*/
transition: all 0.5s ease;
padding-top: 19px;
padding-bottom: 10px;
}
/*------header_nav------*/
#nav_toggle, .sp_nav {
  display: none;
}
.top_logo {
    width: 22%;
  max-width: 340px;
  margin-right: 6px;
  margin-left: 15px;
  margin-top: 5px;
    padding-bottom: 2px;
}
.r_nav {
  padding-right: 30px;
}
.r_nav.flex {
  align-items: center;
}
.r_nav li {
  margin-right: 1.5em;
}
.r_nav li a {
  font-size: 17px;
  display: block;
}
.r_nav li a:hover {
  opacity: 1;
}


.r_nav li a.first::before {
    opacity: 0;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_red_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;
    transition: .2s;

}
.r_nav li a.second::before {
    opacity: 0;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_yellow_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;
    transition: .2s;

}
.r_nav li a.third::before {
    opacity: 0;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_green_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;
    transition: .2s;

}
.r_nav li a.fourth::before {
    opacity: 0;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_blue_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;
    transition: .2s;
}
.r_nav li a.first:hover::before {
    opacity: 1;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_red_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;

}
.r_nav li a.second:hover::before {
    opacity: 1;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_yellow_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;

}
.r_nav li a.third:hover::before {
    opacity: 1;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_green_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;

}
.r_nav li a.fourth:hover::before {
    opacity: 1;
    content: "";
    padding: 10px;
    background-image: url("../images/circle_blue_s.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;
}
.contact_btn_c{
    display: none;
}
.header_buy_btn {
  background-color: #FF7900;
  color: #fff;
  font-size: 17px;
    text-align: center;
  padding: 6px 15px 6px 0px;
  transition: .5s;
  border-radius: 10px;
    margin-right: 15px;
    width: 160px;
}
.header_buy_btn:before {
  content: "";
  padding: 20px;
  background-image: url("../images/icon_cart.png");
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center;
}
.header_buy_btn:hover {
  filter: brightness(110%);
}
.header_contact_btn {
    text-align: center;
  background-color: #43BF00;
  color: #fff;
  font-size: 17px;
  padding: 6px 10px 6px 0px;
  transition: .5s;
  border-radius: 10px;
    margin-right: 15px;
    width: 160px;
}
.header_contact_btn:before {
  content: "";
  padding: 20px;
  background-image: url("../images/icon_mail.png");
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center;
}
.header_contact_btn:hover {
  filter: brightness(110%);
}
/*------main_visual------*/
.fadein {
  animation-name: fade-in;
  animation-duration: 2s; /*アニメーション時間*/
  animation-timing-function: ease-out; /*アニメーションさせるイージング*/
  animation-delay: 0; /*アニメーション開始させる時間*/
  animation-iteration-count: 1; /*繰り返し回数*/
  animation-direction: normal; /*往復処理をするかどうか*/
  animation-fill-mode: backwards; /*アニメーション後のスタイル*/
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------slider------*/
.main_visual{
  position: relative;
}
.swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal none;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
_:-ms-lang(x)::-ms-backdrop, .swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
  animation: none;
}
.slide-img {
  width: 100%;
  overflow: hidden;
}
.slide-img img {
  width: 100%;
  margin: 0 auto;
}
.swiper-container {
  position: relative;
  overflow: visible !important;
/*  width: 92%;*/
width: 100%;
  max-width: 1500px;
  margin: 0 auto 45px!important;
  top: 100px;
  padding-bottom: 115px !important;
}
.swiper-wrapper {
  position: absolute;
top: 9px;
  overflow: hidden !important;
  width: 96% !important;
  margin: 0 auto;
  border-radius: 60px;
}
.slider_item-content{
    position: absolute;
    z-index: 300;
}
img.slider_item-content.mv_bg{
    position: absolute;
    z-index: 200;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
    width: 96%;
    max-width: 1450px;
    aspect-ratio: 5 / 2.5;
}
.slider_item-content.midashi{
    width: 42%;
    bottom: 20%;
    left: 6%;
}
.slider_item-content.chara{
    width: 33%;
    position: absolute;
    z-index: 300;
    bottom: 8%;
    display: flex;
    right: 5.5%;
}
.slider_item-content.chara img{
    width: 20%;
    max-width: 95px;
}

/****--------- ジャンプ ---------****/
.jump1{
  animation:jump1 7s 1;
    animation-delay: 1s;
}
@keyframes jump1{
  0%{transform:translate(0,0px);}
  3%{transform:translate(0,-25px);}
  5%{transform:translate(0,0px);}
  6%{transform:translate(0,-5px);}
  7%{transform:translate(0,0px);}
  100%{transform:translate(0,0px);}
}
.jump2{
  animation:jump2 7s 1;
    animation-delay: 1.2s;
}
@keyframes jump2{
  0%{transform:translate(0,0px);}
  3%{transform:translate(0,-25px);}
  5%{transform:translate(0,0px);}
  6%{transform:translate(0,-5px);}
  7%{transform:translate(0,0px);}
  100%{transform:translate(0,0px);}
}

.jump3{
  animation:jump3 7s 1;
        animation-delay: 1.4s;
}
@keyframes jump3{
  0%{transform:translate(0,0px);}
  3%{transform:translate(0,-25px);}
  5%{transform:translate(0,0px);}
  6%{transform:translate(0,-5px);}
  7%{transform:translate(0,0px);}
  100%{transform:translate(0,0px);}
}

.jump4{
  animation:jump4 7s 1;
        animation-delay: 1.6s;
}
@keyframes jump4{
  0%{transform:translate(0,0px);}
  3%{transform:translate(0,-25px);}
  5%{transform:translate(0,0px);}
  6%{transform:translate(0,-5px);}
  7%{transform:translate(0,0px);}
  100%{transform:translate(0,0px);}
}

.jump5{
  animation:jump5 7s 1;
        animation-delay: 1.8s;
}
@keyframes jump5{
  0%{transform:translate(0,0px);}
  3%{transform:translate(0,-25px);}
  5%{transform:translate(0,0px);}
  6%{transform:translate(0,-5px);}
  7%{transform:translate(0,0px);}
  100%{transform:translate(0,0px);}
}
.slidein {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

/*------section/top_content------*/
#top_content{
    background-image: url("../images/bg_color.jpg");
    background-repeat: repeat;
    background-size: 100%;
    padding-top: 45px;
    padding-bottom: 60px;
}
#top_content .content_wrap{
    padding: 70px 20px 30px;
    text-align: center;
    background-image: url("../images/chara_panda2.png");
    background-repeat: no-repeat;
    background-position: top 5% right 5%;
    background-size: 80px;
}
#top_content .inner_content{
    width: 95%;
    max-width: 940px;
    margin: 0 auto;
}
#top_content h2{
    font-size: 26px;
    margin-bottom: 1em;
}
#top_content h2:before{
    content: "";
    padding: 30px;
    background-image: url("../images/rogomark.png");
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: left;
}
#top_content .text_red{
    font-size: 18px;
    margin-bottom: 1em;
}
#top_content .lead{
    text-align: left;
    margin-bottom: .5em;
}
#top_content .under_text{
    text-align: left;
    margin-bottom: .5em;
}
#top_content .youtube{
    width: 100%;
    max-width: 520px;
    margin: 80px auto 30px;
    aspect-ratio: 5 / 2.8;
}
.youtube .triangle{
    font-size: 18px;
    margin-bottom: .5em;
}
.youtube .triangle:before{
    content: "";
    padding: 10px;
    background-image: url("../images/text_left.png");
    background-position: left;
    background-size: 12px;
    background-repeat: no-repeat;
}
.youtube .triangle:after{
    content: "";
    padding: 10px;
    background-image: url("../images/text_right.png");
    background-position: right;
    background-size: 12px;
    background-repeat: no-repeat;
}
.main_btn{
    color: #E28000;
    font-size: 18px;
    display: block;
    border-radius: 50px;
    width: 90%;
    max-width: 400px;
    border: 1px solid #FFB900;
    transition: .5s;
    padding: .6em 1em .5em .6em;
    margin: 60px auto;
    text-align: center;
    position: relative;
}
.main_btn:after{
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #FFB900;
    width: 0;
    height: 0;
    position: absolute;
    top: 51%;
    right: 30px;
    transform: translateY(-50%);
    transition: .3s;
}
.main_btn:hover{
    color: #fff;
    background-color:#FFB900;
    opacity: 1;
}
.main_btn:hover:after{
    border-color: transparent transparent transparent #fff;
    right: 20px;
}

/*------section/katsuyou------*/
#katsuyou{
    background-image: url("../images/wave1.jpg"),url("../images/wave2.png");
    background-position: top,bottom;
    background-size: 100%;
    background-repeat: repeat-x;
    background-color: #FFDED6;
    padding-top: 70px;
    padding-bottom: 90px;
}
#katsuyou .content_wrap{
    padding: 60px 20px;
    text-align: center;
    background-image: url("../images/chara_rabbit2.png");
    background-repeat: no-repeat;
    background-position: top 4% left 4%;
    background-size: 76px;
}
#katsuyou .inner_content{
    width: 95%;
    max-width: 840px;
    margin: 0 auto;
}
#katsuyou .lead{
    margin-bottom: 1em;
}
#katsuyou .ribbon_style{
    color: #DB7C00;
    font-size: 18px;
    width: 100%;
    max-width: 600px;
    margin: 30px auto 20px;
    background-image: url("../images/ribbon_yellow_top.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
#katsuyou ul.flex.circle{
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;;
    flex-wrap: wrap;
    justify-content: space-between;
}
#katsuyou ul.flex.circle li{
    width: 24%;
    margin-bottom: 10px;
}
#katsuyou .inner_text{
    margin-bottom: 1em;
    text-align: left;
}
#katsuyou ul.flex.image{
    margin: 0 auto 30px;;
    justify-content: space-between;
}
#katsuyou ul.flex.image li{
    width: 24%;
}
#katsuyou ul.flex.image li p{
    font-size: 15px;
    margin-top: 3px;
}

/*------section/play------*/
#play{
    background-image: url("../images/wave3.png");
    background-position:bottom;
    background-size: 100%;
    background-repeat: repeat-x;
    background-color: #FFF5C5;
    padding-top: 30px;
    padding-bottom: 90px;
}
#play .content_wrap{
    padding: 60px 20px;
    padding-bottom: 30px;
    background-image: url("../images/chara_bear2.png");
    background-repeat: no-repeat;
    background-position: bottom 5% right 5%;
    background-size: 80px;
}
#play .inner_content{
    width: 95%;
    max-width: 840px;
    margin: 0 auto;  
}
#play .top_text{
    margin-bottom: 1em;
}
#play ul.image{
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
#play ul.image li{
    width: 32%;
    text-align: center;
}
#play ul.image li .bg_blue{
    background-color: #DBE7E9;
    font-size: 15px;
    margin-top: 5px;
}
#play .under_text{
    margin-bottom: 2em;
}
#play .wrap_youtube{
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}
#play .youtube{
    width: 48%;
    margin-bottom: 20px;
    text-align: center;
    aspect-ratio: 5 / 2.8;
}

/*------section/mind------*/
#mind{
    background-image: url("../images/wave4.png");
    background-position:bottom;
    background-size: 100%;
    background-repeat: repeat-x;
    padding-top: 30px;
    padding-bottom: 90px;
    background-color: #D1EFB1;
}
#mind h2{
    margin-bottom: 2em;
}

#mind .content_wrap{
    border-radius: 2px;
        padding: 60px 20px;
    padding-bottom: 30px;
    background-image: url("../images/chara_kame2.png");
    background-repeat: no-repeat;
    background-position: top 5% left 25%;
    background-size: 70px;
}
#mind .under_text{
    width: 95%;
    max-width:900px;
    margin: 0 auto;
}
#mind .under_text p{
    margin-bottom: 1em;
}
/*------section/voice------*/
#voice{
    padding-top: 80px;
    padding-bottom: 100px;
    background-image: url("../images/chara_penguin2.png"),url("../images/wave5.jpg");
    background-repeat: no-repeat,repeat-x;
    background-position: top 8% right 28%,bottom;
    background-size: 72px,100%;
    background-color: #DAF7FB;
}
#voice h2{
    margin-bottom: 50px;
}
#voice .wrap{
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
}
#voice .wrap li{
    background-color: #fff;
    border-radius: 15px;
/*    box-shadow: 2px 2px 8px rgb(0 0 0 / 10%);*/
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 16px;
}
#voice .wrap li .title{
    width: 120px;
    line-height: 2.8;
    font-weight: bold;
    text-align: center;
}
#voice .wrap li.first{
    border: 2px solid #DADFDF;
}
#voice .wrap li.first .title{
    background-color: #DADFDF;
    border-radius: 20px;
}
#voice .wrap li.second{
    border: 2px solid #B2E5FF;
}
#voice .wrap li.second .title{
    background-color: #B2E5FF;
    border-radius: 20px;
}
#voice .wrap li.third{
    border: 2px solid #FFDEE4;
}
#voice .wrap li.third .title{
    background-color: #FFDEE4;
    border-radius: 20px;
}
#voice .wrap li.fourth{
    border: 2px solid #FFEEAC;
}
#voice .wrap li.fourth .title{
    background-color: #FFEEAC;
    border-radius: 20px;
}
#voice .wrap li.fifth{
    border: 2px solid #CDEEAC;
}
#voice .wrap li.fifth .title{
    background-color: #CDEEAC;
    border-radius: 20px;
}
#voice .wrap li .text_r{
    width: calc(100% - 120px);
    line-height: 1.4;
    padding-left: 1em;
}

/*------section/voice------*/
#insta{
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url("../images/bg_mono.jpg");
    background-repeat: repeat;
    background-size: 100%;
}
#insta h2{
    font-size: 26px;
    text-align: center;
    margin-bottom: 40px;
}
#insta h2:before{
    content: "";
    padding: 22px;
    background-image: url("../images/instamark.png");
    background-size: 36px;
    background-position: left;
    background-repeat: no-repeat;
}
#insta .insta_wrap{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
ul.lightwidget__posts{
    margin-bottom: 50px;
}
.lightwidget__footer{
    margin-top: 50px;
}

/*------section/manual_dl------*/
#manual_dl{
    padding-top: 70px;
    padding-bottom: 70px;
}
#manual_dl a{
    display: block;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding-right: 100px;
}

/*------section/buy------*/
#buy{
    background-image: url("../images/chara_panda3.png");
    background-repeat: no-repeat;
    background-position: top 10% center;
    background-size: 75px;
    text-align: center;
    padding-top: 135px;
    padding-bottom: 75px;
    background-color: #FBF8EE;
}
#buy h2{
    font-size: 22px;
    background-image: url("../images/ribbon_yellow.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    max-width: 800px;
    padding: .3em;
    margin: 0 auto 30px;
}
#buy .lead{
    margin-bottom: 2em;
}
#buy ul{
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
/*    justify-content: space-between;*/
}
#buy ul li{
    width: 70%;
    max-width: 300px;
/*    width: 30%;*/
/*    max-width: 250px;*/
}

/*------footer------*/
footer {
padding-top: 80px;
padding-bottom: 20px;
background-image: url("../images/topbottom.png");
background-size: 180px;
background-repeat: repeat-x;
background-position: bottom;
}
footer .footer_logo{
    display: block;
    margin: 0 auto 20px;
    width: 95%;
    max-width: 380px;
}
footer .footer_chara{
    width: 95%;
    max-width: 360px;
    margin: 0 auto 30px;
}
footer .footer_btn{
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}
footer .footer_btn a{
    margin-right: 5px;
    margin-left: 5px;;
}
footer nav {
  margin-top: 60px;
  margin-bottom: 30px;
}
footer nav ul {
  justify-content: center;
  align-items: center;
}
footer nav ul li {
  margin-right: .6em;
  margin-left: .6em;
  padding-right: 1.2em;
  border-right: 1px solid #443a3a;
}
footer nav ul li:last-child {
  border-right: none;
}
footer nav ul li a {
  display: block;
  font-size: 14px;
}
.copyright {
  text-align: center;
}
.copyright a {
  font-size: 14px;
}
