@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
/* paddingとborderを幅(width)と高さ(height)に含める*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Sarabun','Noto Sans JP','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
/*  font-size: 15px;*/
/*  line-height: 1.8;*/
  word-break: break-all;
  background-image: url("../img/logomark.svg");
  background-repeat: space;
  background-size:cover;
}

a {
  color: #313131;
  text-decoration: none;
  transition:color 0.2s;
}

a:hover {
  color: #e2b94b;
}

/*
a:hover img {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
*/

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  display: block;
}
/*メンテナンス用*/
.maintenance{
  font-size:2rem;
  text-align: center;
  margin:100px auto;
}

li {
  list-style: none;
}

/*----------------------------
ヘッダーメニューにホバーでプルダウンを追加
----------------------------*/
.menu > li.menu__single {
  position: relative;
  cursor: pointer;
}

li.menu__single ul.menu__second-level {
  position: absolute;
  top: 0px;
  left:-10px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  opacity:0;
  padding:10px;
  visibility: hidden;
  
}
ul.menu__second-level li{
  margin-bottom:1px;
  padding:5px;
/*  border-radius:5px;*/
/*  border-bottom:solid 1px;*/
  background: #ffffff;
  width:150px;
/*  border-bottom: 1px solid black;*/
}

.second_menujp{
  font-size:0.6rem;
  color:#AAAAAA;
}

li.menu__single:hover ul.menu__second-level {
  top: 30px;
  visibility: visible;
  opacity: 1;
  height:auto;
}
li.menu__single:hover {
  color:#c49b4f;
}





/*----------------------------
戻るボタン
-----------------------------*/
#backToTop {
  position: fixed;
  z-index: 9999;
  bottom: 25px;
  right: 25px;
}

#backToTop a {
  position:relative;
  display: block;
  text-decoration: none;
  color: #fff;
  width:40px;
  height:5px;
  padding: 00px;
  font-size:14px;
  font-weight: 600;
  background-color: #C99F4F;
}

#backToTop a:before{
  content:"";
  position:absolute;
  width: 0;
  height: 0;
  top:-28px;
  border-style: solid;
  border-width: 0 20px 25px 20px;
  border-color: transparent transparent #C99F4F transparent;
}
#backToTop a:after{
  content:"";
  position:absolute;
  bottom:-15px;
  left:2px;
  color:#C99F4F;
  font-size:12px;
}
/*--------------------------------
　全体
---------------------------------*/
/*body全体を囲う*/
#wrapper {
  width: 100%;
  overflow: hidden;
}

/*各コンテンツを囲う*/
.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

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

#header {

}

#header .logo a {
  color: #000;
  text-decoration: none;
}

/*--------------------------------
　globalnavi
---------------------------------*/

.gnav {
/*  background-color: #eee;*/
  padding: 20px 10px;
  position:fixed;
  top:0;
  left:0;
  z-index:100;
  width:100%;
  background-color: #fff;

  
}

/*ロゴとメニューを左右分割*/
.gnav_box {
  height: auto;
  padding:0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  height:auto;
  width:200px;
}



.gnav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap:wrap-reverse;
  font-weight: 700;

}

.gnav li {
  position: relative;
  padding: 0 20px 0 0;
  letter-spacing: 0.04rem;
  transition: color 0.3s;
}
@media (max-width: 860px){
  .gnav li {
    font-size:15px;
    padding-right: 15px;
  }
  .logo{
    width:160px;
  }
}

.jpmenu{
  position: absolute;
  bottom:-15px;
  left:50%;
  transform: translateX(-50%);
  width:100%;
  font-size:0.6rem;
}
.gnav_box li:not(:last-child) .jpmenu{
  color:#AAAAAA;
}


.onlinestore{
  color:#C99F4F ;
}
.onlinestore .jpmenu{
  color:#b49455;
}

.onlinestore:hover{
  color:#ffb100 ;
}

.onlinestore:hover .jpmenu{
  color:#ffb100 ;
}

.gnav_box li:not(:last-child):hover .jpmenu{
  color:#b49455 ;
}



@media (max-width: 768px){
  .logo{
    width:250px;
  }
}

/*===================
新トップエリア2021/1/21
====================*/
.topnew_img{
  margin:100px 20px 0px 20px;
}
.intoro{
  position:relative;
  background-color: #f28082;
  width:100%;
  margin:0 auto;
}
.intoro_inner{
  max-width: 800px;
  margin:0 auto;
  color:white;
  line-height: 2;
  letter-spacing: 3px;
  padding:20px;
}
.intoro_inner img{
  margin:20px auto;
}
.intoro_inner img:nth-child(1){
  margin-top:50px;
  width:70%;
}
@media (max-width: 767px){
  .intoro_inner img:nth-child(1){
    margin-top:20px;
  }
}
.intoro_inner h2{
  background-color:white;
  color:#f28082;
  text-align: center;
  font-size:2rem;
  margin-bottom:30px;
}
@media (max-width: 767px){
  .intoro_inner h2{
    font-size:1.3rem;
  }

}

.intoro_inner span{
  background-color:white;
  color:#f28082;
  margin:5px;
  padding:5px;
  font-weight: 600;
/*  white-space: nowrap;*/
}

/*特許　販売店募集修正*/
.copy{
  display:flex;
  margin:10px auto 20px auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.copy p, .copy a{
  padding:10px;
  width:45%;
  margin: 10px 20px;
  border-radius: 10px;
}
@media (max-width: 767px){
  .copy p, .copy a{
    width: 90%;
  }

}

.copy p{
  background-color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  border:solid 2px #bcbcbc;
}
.copy p span{
  font-size: 0.7rem;
  margin-left: 10px;
}

.copy a{
  background-color: #ea5148;
  color:white;
  font-weight: 600;
  transition: 0.3s;
}
.copy a:hover{
  background-color: #C99F4F;

}



/*==================
Swiperの設定 start
====================*/

/*スライダー*/
.swiper-container {
    width: 100%;
    height: auto;
    position:relative;
}
/*特許出願中*/
.patent{
  position:absolute;
  right:0;
  top:90px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  color:#c99f4f;
  padding:5px 15px;
  font-weight: 700;
  border-radius: 5px 0 0 5px ;
  font-size: 1.2rem;
}
.patentmini{
  font-size: 0.8rem;
}
/*モニター募集*/
.monitor{
  display: block;
  position:absolute;
  right:0;
  top:30px;
  z-index: 100;
  background-color: #ea5148;
  color:white;
  padding:10px 15px;
  font-weight: 700;
  border-radius: 5px ;
  font-size: 1.2rem;
  transition:0.3s;
}
.monitor:hover{
  right:20px;
}

.member_baner_top{
  margin-bottom:50px;
}


#section01 .swiper-container{
  padding-bottom: 50px;
}

/*画像切り替え*/
.pc { display: block !important; }
.sp { display: none !important; }
@media (max-width: 767px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
}

.swiper-slide img{
  width:100%;
}


/*ページネーション ●●●●●*/
.swiper-pagination-bullet{
    width: 13px;
    height: 13px;
    display: inline-block;
    border-radius: 100%;
    background: #bababa;
    opacity: 0.8;
    transition:color  0.2s;
    vertical-align: middle;
}
.swiper-pagination-bullet-active{
/*
    width: 20px;
    height: 20px;
*/
    background: #C99F4F;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}
/*スライドの三角ボタン*/
.swiper-button-prev:after, .swiper-button-next:after{
  color:rgba(255,255,255,0.8);
  transition:0.2s;
}
/*スライドの三角ボタンホバー*/
.swiper-button-prev:hover:after, .swiper-button-next:hover:after{
  color:#f5c43f;
}


/*----------------------
slider_new
------------------------*/
.slider_new_container{
  margin-bottom:100px;
}
.slider_new_box{
  background-color:#f4f4f4;

}

.slider_new_box {
  position: relative;
  width: 100%;
  padding-top:55.49%;
/*  border: 1px solid darkgray;*/
  overflow: hidden;
}


.slider_new_box a:link,
.slider_new_box a:visited,
.slider_new_box a:active{
  color: black;
}

.slider_new_box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.slider_new_box_text{
  display:block;
  margin-top:5px;
  font-size:0.9rem;
  line-height: 1.4;
  height:60px;
  overflow: hidden;
}

/*左右の矢印を削除*/
.swiper-button-prev:after,
.swiper-button-next:after {
  display:none;
}


/*----------------------
title
------------------------*/
.contents_title{
  display:flex;
  align-items: flex-end;
  margin-bottom:20px;
  padding-bottom:5px;
  border-bottom:solid 3px #cbcbcb;
}

.contents_title h2{
  font-size:1.5rem;
  position: relative;
}

.contents_title h2:before{
  position:absolute;
  content:"";
  width:110%;
  border-bottom:solid 3px #e0a951;
  bottom:-8px;
  left:0;
}

.contents_title_subtitle {
  margin-left:10px;
  margin-bottom:2px;
  display: flex;
  font-weight: 700;
  color:#cdcdcd;
}

/*
.contents_title_subtitle:before{
  border-top: 2px solid;
  content: "";
  width: 3em;
}
.contents_title_subtitle:before {
  margin-right: 0.5em;
}
.contents_title_subtitle:after {
  margin-left: 0.5em;
}
*/
/*-----------------------------
SNS
-----------*/
.sns_title{
  text-align: center;
  font-weight:700;
  font-size: 1.5rem;
  margin:0 auto 10px auto;
  width:100px;
  position: relative;
  border-bottom:solid 3px #cbcbcb;
  padding-bottom:5px;
}

.sns_title:before{
  position:absolute;
  content:"";
  width:50%;
  border-bottom:solid 3px #e0a951;
  bottom:-3px;
  left:50%;
  transform: translateX(-50%);
}

.snslink{
  font-weight: 700;
}
.snslink img{
  width:40px;
  height:40px;
  margin:10px;
  transition:0.6s;
}



.snslink img:hover{
/*  transform: rotateZ( 360deg ) ;*/
  animation-name: scale_updown;
  animation-duration: 0.3s;
}

@keyframes scale_updown {
  0% {
    transform:scale(1);
  }
  30% {
    transform:scale(1.1);
  }
  70% {
    transform:scale(0.95);
  }
  100% {
    transform:scale(1);
  }
}


.snslink p{
  margin-left:5px;
  margin-right:20px;
}


/*-----------------------------
innnerの設定
-----------*/
.wide_inner{
  padding:20px 56px;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 767px){
  .wide_inner{
    padding:20px;
  }
}

/*子要素を画面いっぱいに*/
.full {
  padding: 0 28px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.backfull {
  margin: 0 calc(50% - 50vw);
  padding: 5px calc(50vw - 50% + 0px);
  width: 100vw;
}


/*==============================
汎用素材
==============================*/
/*-----------------
flexbox
-------------------*/
.flex_box{
  display:flex;
  flex-wrap: wrap;
}
.flex_setting_CC{
  justify-content: center;
  align-items: center;
  margin:0 auto;
}
.flex_setting_CS{
  justify-content: center;
  align-items: flex-start;
  margin:0 auto;
}
.flex_setting_BC{
  justify-content:space-between;
  align-items: center;
  margin:0 auto;
}
.flex_setting_BS{
  justify-content:space-between;
  align-items: flex-start;
  margin:0 auto;
}

.flex_setting_fS_C{
  justify-content:flex-start;
  align-items: center;
  margin:0 auto;
}
.flex_setting_SC{
  justify-content:space-between;
  align-items: center;
  margin:0 auto;
}
.flexD_Rrev{
  flex-direction: row-reverse;
}
/*画像やテキストを内包するコンテナ*/
.flex_child_container{
  width:32%;
  height:100%;
  position:relative;
  margin-bottom:30px;
  overflow: hidden;
}

/*画像用コンテナ*/
.flex_child_imgboxA,flex_child_imgboxB{
  position: relative;
  width: 100%;
  padding-top:75%;
/*  overflow: hidden;*/
}
.flex_child_imgboxA{
  padding-top:75%;
}
.flex_child_imgboxB{
  padding-top:50%;
}

.flex_child_container img{
  position:absolute;
  top:0;
  left:0;
  transition:0.3s;
  width:100%;
}
.flex_child_imgboxB,flex_child_imgboxA:hover img{
  transform:scale(1.05);
}

.bigtext{
  font-size:1.4rem;
  font-weight: 700;
}
.flex_child_text{
  position:absolute;
  bottom:20px;
  left:30px;
  color:white;
  font-size:0.9rem;
  margin-top:10px;
}
.flex_child_text:before{
  content:"";
  position:absolute;
  left:-13px;
  width:1px;
  height:65px;
  top:3px;
  background-color:#ffffff;
}

/*親要素いっぱいにリンク範囲を拡大　親要素にrelative必須*/
.link100P{
  position:absolute;
  width:100%;
  height: 100%;
  top:-10px;
  left:0;
}
.mgb10{
  margin-bottom: 10px;
}
.mgb50{
  margin-bottom: 50px;
}
.mgb100{
  margin-bottom: 100px;
}
.mgt30{ margin-top:30px}
.mgt50{ margin-top:50px}
.mgt100{ margin-top:100px}
/*----------------------------
汎用素材
------------------------------*/
@media (max-width: 767px) {
  .sp_column_change{
    flex-direction: column;
    justify-content: center;
  }
  .flex_child_container{
    width:100%;
  }
  
}

.bgred{  background-color:#c13f20;}
.bgbule{  background-color:#258aa8;}
.bggreen{  background-color:#b1cb27;}
















/*トップのビデオ*/
.top_video video{
  width:100%;
    margin:0 auto;
}
.top_video h2{
  font-size:30px;
  margin: 20px auto ;
  text-align: center;
  line-height: 1.5;
  
/*
  background-color:#C99F4F;
  color: white;
*/
}
@media (max-width: 767px){
  .top_video h2{
    font-size:20px;
  }
}





/*--------------------------------
　section
---------------------------------*/

.section {
/*  background-color: #ddd;*/

line-height:1.5;
/*  padding: 10px 10px;*/
}

h1{
  font-size:36px;
  font-weight: 400;
  line-height:1.8;
  text-align: center;
  margin-bottom:50px;
}



/*===================
section01
====================*/
#section01 {
/*  固定ヘッダーの高さ*/
  margin-top:80px;
/*  margin-top:88.68px;*/
  margin-bottom:50px;
/*  height: 500px;*/
  position:relative;
}
/*===================
TOP 皇治
====================*/
.img_and_text{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom:100px;
  max-width:1000px;
  margin:150px auto;
}

.kouzi_imgbox,.textbox{
  width:50%;
  padding:10px;
}
.kouzi_imgbox{
 
/*  background-color:aqua;*/
}
@media (max-width: 841px) {
  .img_and_text{
    flex-direction: column-reverse;
  }
  .kouzi_imgbox,.textbox{
    width:100%;
    padding:10px;
  }
}





/*===================
section02 商品リスト
====================*/
#section02 {
    margin:50px auto 100px auto;
    padding: 0 10px;
}
.img_box{
  width:170px;
  margin-bottom:30px;
  padding:0 10px;
  box-sizing: border-box;
}

#section02 p{
  text-align: center;
  font-weight:700;
}
#section02 img{
  transition:0.1s;
  padding-bottom:10px;
}
#section02 img:hover{
  transform: scale(1.1);
  transition: .3s ease-in-out;
}
/*===================
section03 こんな方にお召し上がり
====================*/
#section03{
  margin:0 auto 100px auto;
}
.img_box03{
  width:230px;
  margin-bottom:30px;
  padding:0 10px;
  box-sizing: border-box;
}
#section03 img{
  height:200px;
  margin:0 auto 20px auto;
  
}

#section03 h2{
  font-size:28px;
  font-weight: 400;
  line-height:1.8;
  text-align: center;
  margin-bottom:50px;

}
#section03 p{
  text-align: center;
  font-weight:500;
  color:#D0A96C;
}

.flex{
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
  
}
/*===================
section04 WhatsNew
====================*/
#section04{
  max-width:800px;
  margin:0 auto 100px auto;
  padding:10px;
  padding-top: 100px;
  margin-top: -100px;
}
#section04 h2{
  font-size:36px;
}
.title{
  display:flex;
  align-items: center;
}
.subtitle {
  margin-left:20px;
  display: flex;
  align-items: center; /* 垂直中心 */
}
.subtitle:before, .subtitle:after {
  border-top: 1px solid;
  content: "";
  width: 2em; /* 線の長さ */
}
.subtitle:before {
  margin-right: 0.5em; /* 文字の右隣 */
}
.subtitle:after {
  margin-left: 0.5em; /* 文字の左隣 */
}

#section04 li{
  height:60px;
  display:flex;
  border-bottom:solid 1px #C99F4F;
  list-style: none;
  align-items: center;
  width:100%;
  position:relative;
  pointer-events: none;
  transition:0.3s;
}

#section04 li:hover{
  background-color: rgba(0,0,0,0.03);
}

#section04 li a:before{
  content:"";
  position: absolute;
  width:100%;
  height: 100%;
  top:0;
  left:0;
  pointer-events: auto;
}



/*新着日付*/
.new_date,.catego{
  font-size:12px;
  display: inline-block;
  min-width:30px;
  width:auto;
  font-weight: 500;

/*  background:#C99F4F;*/
  color:#6f6f6f;
  margin-right:10px;
/*  margin-bottom:5px;*/
  text-align: left;
  color:white;
}
.new_date{
  font-weight: 700;
  color: #aaaaaa;
  
}
/*新着分類*/
.catego{
  font-size:10px;
/*  background:#989898;*/
/*  border-bottom:1px solid #6f6f6f;*/
  position:relative;
  background-color: #C99F4F;
  padding:3px 5px;
}
.arrow{
  position: absolute;
  right:0;
  bottom:5px;
  width:20px;
  height:20px;
}

.read_more{
  display: block;
  margin-top:10px;
  margin-left: auto;
  width:150px;
  text-align: right;
  color:#C99F4F;
  font-weight: 600;
}
.read_more:hover{
  color:gray;
}

/*新着情報スライダー画像あり*/


/*===================
section05 パーフェクトミールとは
====================*/

#section05{
/*  max-width:800px;*/
  margin:0 auto 100px auto;
  padding-top: 170px;
  margin-top: -170px;
}

.backimg{
  content:"";
  width:100%;
  height:0;
  padding-top:50%;
  background-image: url("../img/Fitness-Girl-Eating-Salad.jpg");
  background-size: cover;
  position:relative;
  margin-bottom:20px;
}
.bg_text{
  position:absolute;
  right:40px;
  bottom:30px;
  color:white;
  text-align: right;
 
}
.bg_text h2{
  font-size:5em;
  line-height: 1;
/*  transform: rotate(-5deg);*/
}
.bg_text p{
  font-size:24px;
  font-weight:700;
}
.explanation{
  columns: 2;
  column-rule: 1px solid #cdcdcd;
  column-gap: 2em;
  line-height: 2;
}

/*===================
section06 大野DOJYO
====================*/
#section06{
/*  max-width:800px;*/
  margin:0 auto 100px auto;
  padding-top: 170px;
  margin-top: -170px;
}

.backimg_P{
  content:"";
  width:100%;
  height:0;
  padding-top:42.8%;
  background-image: url("../img/partner_top2.jpg");
  background-size: cover;
  position:relative;
  margin-bottom:20px;
}
.movielist{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom:50px;
}
.movie_con{
  width:30%;
  padding-top:10px;
}
/*埋め込み動画のレスポンシブ設定*/
.movie_em{
  position:relative;
  width:100%;
  height:0;
  padding-top:55.2%;
  overflow: hidden;
}
.movie_em iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.movie_con p{
  margin-top:10px;
}

.trainer{
  display:flex;
}
.trainer_con{
  display:flex;
  width:50%;
}

.trainer_con img{
  width:50%;
}
.trainer_text{
  padding:0 10px;
  font-size:0.9em;
}
.trainer_text p:first-child{
  font-size:1.2em;
  font-weight:800;
  margin-bottom:10px;
}
.trainer_text p:nth-child(2){
  font-size:0.9em;
  line-height: 1.6;
}


/*--------------------------------
  Footer
---------------------------------*/

#footer {

}

#footer .inner {
  padding: 20px 10px;
}
.footer-link{
  padding:0 20px;
}
#footer .footer-link a {
}

#footer .copyright {
  font-size: 12px;
}

#footer .copyright a {
/*  color: #333;*/
}


.footerA{
  background-color: #000000;
  color:#fff;
  padding: 40px 0 ;
}
.footerA ul:first-child{
  display:flex;
  justify-content: space-between;
}

.footer_inlist li{
  margin:20px 0px 20px 25px;;
  position:relative;
  
}
@media (max-width:900px) {
  .footer_inlist li{
    font-size:0.9em;
  }
}

.footer_inlist li:before{
  position: absolute;
  content:"";
  width:10px;
  border-bottom: solid 1px gray;
  left:-15px;
  bottom:8px;
}

.footerA a{
  color:white;
  width:100%;
  height:100%;
}

.footerA a:hover{
  color:#e2b848;
}
/*SHOP NEWS ABOUT PARTNER*/
.inlist_h{
  font-weight: 600;
  font-size:1.3em;
}
@media (max-width:900px) {
  .inlist_h{
    font-size:1.1em;
  }
}


  
.footerB{
  padding: 30px 20px ;
  background-color: #F1F1F1;
  line-height: 1.8;
}
.footerB_in{
  display:flex;
}
.footerB tel{
  
}
.footerBL{
  width:50%;

}
.footerBR{
  width:50%;
}
.footerBR ul{
  display:flex;
  flex-wrap: wrap;
  list-style:none;
  justify-content: flex-end;
}
.footerBR li{
  margin-left:30px;
}

.footerBR img{
  display: block;
  width:300px;
  margin-left:auto;
  margin-top: 20px;
}
.copyright{
  text-align: center;
}

.toggle-outer label{
  font-weight:700;
  cursor: pointer;
}
.toggle-outer label:hover{
  color:#c99f4f;
}

#toggle1{
  display: none;
}
.toggle-inner{
  display: none;
  line-height:1;
}
@media (max-width: 767px){
  .footerBL p{
    text-align: center;
  }
  .toggle-inner{
    line-height:1.5;
  }
}
#toggle1:checked ~ .toggle-inner{
  display: block;
}


/*-----------------
ふわっとフェードイン
--------------------*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s ;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}


/*---------------------------
media Queries 767
-----------------------------*/
@media screen and (max-width: 767px) {

  .explanation{
    font-size:0.9rem;
    padding:0 20px ;
  }
  
  .img_box{
    width:150px;

  }
  .gnav ul {
    display: none;
    
  }
  .trainer_con{
    width:100%;
    flex-direction: column;
  }
  .trainer_con img{
    width:100%;
    padding:10px;
  }
  .bg_text{
    right:20px;
    bottom:30px;
  }
  .bg_text h2{
    font-size:5.5em;
    line-height: 1;

  }
  .explanation{
    columns: 1;
  }
  .backimg,.backimg_P{
    height:500px;
    padding-top:40%;
    background-position: center bottom;
    background-size: cover;
    
  }
  #footer .inner {
    padding:0 10px;
  }
  
  .footer-link{
    padding:0 0px;
  }
  .footerA{
    padding: 0 ;
  }
  
  .footerA ul:first-child{
    flex-direction: column;
    align-items: center
  }
  .footer_inlist{
    display:none;
  }
  .footerA li{
    width:100%;
    text-align: center;

    padding:15px;
  }
  .footerA li:not(:last-child){
    border-bottom:1px solid gray;
  }
  
  .footerA li a{
    display: block;
    width:100%;
    height:100%;
  }
  
  .inlist_h{
    font-weight: 600;
    font-size:1.5em;
/*    border-bottom:solid 1px;*/
    padding: 0;
    line-height: 1.7
    
  }
  
  
  .footerB_in{
    flex-direction: column;
  }
  .footerBL{
    width:100%;
    margin-bottom:30px;
    text-align: center;
    font-size:0.9em;
  }
  .footerBR{
    width:100%;
 
  }
  .footerBR ul{
  flex-direction: column;
    align-items: center;
    line-height: 2;
  }
  .footerBR li {
    margin-left: 0;
  }
  
  .footerBR img{
    width:80%;
    margin:20px auto;
  }
  
  .block{
    display: block;
  }
  .none{
    display: none;
  }
}


/*===============================
media Queries 415
==========================*/
@media (max-width: 415px) {
  h1{
    font-size:18px;
    font-weight: 400;
    line-height:1.5;
  }
  #section03 h2{
    font-size:18px;
  }
  .img_box03{
    width:160px;
    margin-bottom:30px;
    padding:0 10px;
    box-sizing: border-box;
  }
  #section04 h2{
    font-size:30px;
  }
  #section04 li{
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size:0.9rem;
  }
  .new_date,.catego{
    margin-bottom:5px;
  }
  
  .title{
    flex-direction: column;
    margin-bottom:20px;
  }

  .subtitle{
    font-size:20px;
    margin:0;
  }
  #section04 li{
    height:80px;
  }
  .movielist{
    justify-content:center;
  }
  .movie_con{
    width:90%;
    margin-bottom:30px;
    text-align: center;

  }

  

/*
    column-rule: 1px solid #cdcdcd;
    column-gap: 2em;
    line-height: 2;
*/
  }

