/* 
制作用WordpressテーマCSSです。
フォーマットはBONESを元に、よく使うものを盛り込んでいます。
元から入っていたBONESのCSSは制作でいらない、使ってないものはごっそり消してます。

■normalize.min.cssについて
http://www.initializr.com/
から生成したものを元に改良して読み込んでいます。
改良する時ははnormalize.cssを変更して圧縮したものを読み込むか、
下の@importでnormalize.cssを読み込むようにしてください。

■addstyle.cssについて
共同開発用のサブCSSファイルです。
同時にCSSを触るとき、ファイルを上書きしない為のものです。

ーーーCSSのレスポンシブ設定ーーー
スマホ表示のみ対応

iphone 6pulsの横を基準に736pxでブレイクポイントを設置してます。
基本iphoneの縦向きに合わせて組んでます。
ipad以上はJSでviewvort切り替えて横1300pxでPCを表示するように設定してます。


*/

@charset "UTF-8";
@import url("normalize.css"); 
@import url("plugin.css"); 

/* ==========================================================================
   font-famiry CSS ※2017best 
   ========================================================================== */


   @font-face {
   	font-family: "Yu Gothic";
   	src: local("Yu Gothic Medium");
   	font-weight: 100;
   }
   @font-face {
   	font-family: "Yu Gothic";
   	src: local("Yu Gothic Medium");
   	font-weight: 200;
   }
   @font-face {
   	font-family: "Yu Gothic";
   	src: local("Yu Gothic Medium");
   	font-weight: 300;
   }
   @font-face {
   	font-family: "Yu Gothic";
   	src: local("Yu Gothic Medium");
   	font-weight: 400;
   }
   @font-face {
   	font-family: "Yu Gothic";
   	src: local("Yu Gothic Bold");
   	font-weight: bold;
   }
   @font-face {
   	font-family: "Helvetica Neue";
   	src: local("Helvetica Neue Regular");
   	font-weight: 100;
   }
   @font-face {
   	font-family: "Helvetica Neue";
   	src: local("Helvetica Neue Regular");
   	font-weight: 200;
   }

   body {
    /* font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', "游ゴシック",YuGothic, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
    font-family: 'Noto Sans JP','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  }

  /* IE10以上 */
   /* @media all and (-ms-high-contrast: none) {
   	body {
   		font-family: Verdana, Meiryo, sans-serif;
   	}
    } */




/* ==========================================================================
   over resetCSS ※サイト制作に合わせてリセットCSSを上書きするセクション 
   ========================================================================== */


   html {
   	color: #222;
   	font-size: 18px;
   	line-height: 1;
   }

   html.fontbig-on{
   	font-size: 18px;
   }

   ::-moz-selection {
   	background: #b3d4fc;
   	text-shadow: none;
   }

   ::selection {
   	background: #b3d4fc;
   	text-shadow: none;
   }

   body{
   	overflow-x: hidden;
   	/* -ms-transform-origin: 50% 0;
   	transform-origin: 50% 0;
   	transform: scale(1.0); */
   	zoom: 1; /*firefox効かないけどどうするか？、transform-olignだとposition;fixedがおかしくなるので引き続き調査*/
   	transition: transform .3s cubic-bezier(.55,0,.1,1);
   }


   hr {
   	display: block;
   	height: 1px;
   	border: 0;
   	border-top: 1px solid #ccc;
   	margin: 1em 0;
   	padding: 0;
   }

   audio,
   canvas,
   iframe,
   img,
   svg,
   video {
   	vertical-align: middle;
   }

   fieldset {
   	border: 0;
   	margin: 0;
   	padding: 0;
   }

   textarea {
   	resize: vertical;
   }

   .browserupgrade {
   	margin: 0.2em 0;
   	background: #ccc;
   	color: #000;
   	padding: 0.2em 0;
   }


   h1,h2,h3,h4,h5,h6,h7{margin: 0 0 1rem 0;}
   /* 見出しの下マージンが邪魔な場合はここを0にしてから組んで下さい。 */
   p{margin:0;}

   @media only screen and (max-width: 736px) {
   	h1,h2,h3,h4,h5,h6,h7{margin: 0 0 0.5rem 0;}
   }

   /* link */
   a,
   a:link,
   a:hover,
   a:visited,
   a:active{color: #333;}

   a:link{opacity: 1; text-decoration: none; transition: all .3s cubic-bezier(.55,0,.1,1);}
   a:hover{opacity: 0.7;}


/* ==========================================================================
   共通CSS 
   ========================================================================== */

   img{max-width: 100%;}

   #logo,
   #main-visual figure,
   #movie-profile,
   #youtube,
   #director
   {text-align: center;}

   /* リキッドレイアウト用のサイズ指定ラッパークラス */
   .common-wrap{
   	max-width: 960px;
   	margin: 0 auto;
   	display: block;
    padding: 0 10px;
  }

  /* clearfix */
  .clear::after{
    content: "";
    clear: both;
    display: block;
  }

  .arrowlink-box.ar-white{border-color: #fff; color: #fff;}

  .topbtn a{
    position: fixed;
    right:20px;
    bottom:20px;
    /* display:none; */
    width: 50px;
    height:50px;
    text-align:center;
    line-height: 50px;
    font-size: 25px;
    background:#6eb92b;
    color:#fff;
    border-radius: 5px;
    z-index:9999;
  }

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

   .topbtn a{bottom: 60px;}
 }

 @media only screen and (max-width: 736px) {
  .common-wrap{
    max-width: 100%;
  }

  .topbtn a{
    position: fixed;
    right:20px;
    width: 40px;
    height:40px;
    text-align:center;
    line-height: 40px;
    font-size: 20px;
  }

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

    .topbtn a{
      bottom: 20px;
    }

  }


}

/* ==========================================================================
   helper CSS ※あると便利なCSS特集 
   ========================================================================== */

   /* hidden PC,SP表示非表示 */

   .sp-only,.sp-only img{display: none !important;}

   /* youtube responsive */
   #youtube{
   	max-width: 860px;
   	margin: 0 auto 2rem;
   }

   .youtube-resp {
   	position: relative;
   	height: 0;
   	padding: 30px 0 47.97%; /*16:9比率 */
   	overflow: hidden;
   }

   .youtube-resp iframe {
   	position: absolute;
   	top: 0;
   	left: 0;
   	width: 100% !important;
   	height: 100% !important;
   }

   .pdf-box{
    max-width: 620px;
    margin: 0 auto 40px;
    position: relative;
    height: 0;
    padding: 30px 0 143%;
    overflow: hidden;
  }

  .pdf-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }



  .img100{width: 100%;}

  .snsbtn{text-align: center;}


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

    img{margin:0 auto;display: block;}

    .pc-only,.pc-only img{display: none !important;}
    .sp-only,.sp-only img{display: block !important;}

  }

/* ==========================================================================
   text装飾 CSS
   ========================================================================== */

   .t-justify{text-align: justify;}
   .fontbig{font-size: 40px; font-weight: bold;}
   .fontmiddle2{font-size: 25px; font-weight: bold;}
   .fontmiddle{font-size: 15px; font-weight: bold;}
   .fontsmall{font-size: 0.8rem;} /*SPで読める最小サイズ*/
   .normal{font-weight: normal; font-size: 1em;}
   .bold{font-weight: bold;}
   .red{color: #cf0037;}
   .kc-orange{color: #f9801e}
   .kc-blue{color: #21ade5}

   .ul-text{text-decoration: underline;}
   a.ul-text{text-decoration: underline;}

   .t_right,
   .entry-content p.t_right{text-align: right;}
   .t_left,
   .entry-content p.t_left{text-align: left;}
   .t_center,
   .entry-content p.t_center{text-align: center;}

   ul.text-indent{margin-left: 1em; text-indent:-1em;  padding:10px 0;}

   .mincyo{font-family: 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;}

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


    .fontbig{font-size: 24px; font-weight: bold;}
    .fontmiddle2{font-size: 18px; font-weight: bold;}
    ul.text-indent{font-size: 11px;}
  }


/* ==========================================================================
   layout CSS
   ========================================================================== */

   /* common culm */
   .col{
   	width: 100%;
    display: flex;
    flex-wrap: wrap;
  }


  .col2{
    display: block;
    width: calc(50% - 20px);
    vertical-align: top;
  }

  .col2:nth-of-type(odd){margin-right: 20px;}
  .col2:nth-of-type(even){margin-left: 20px;}

  /* 左を右に入れ替え、スマホ用 */
  .col2.col-right{float: right;}

  .col3 > li, .col4 > li{
    display: block;
    width: 25%;
    padding: 0 10px;
  }

  .col3 .col4{margin:0 -10px;}

  .col3 > li{width: calc(100% / 3); padding: 0 10px;}

  /* 共通margin */
  .m80{margin-bottom: 80px;}
  .m60{margin-bottom: 60px;}
  .m40{margin-bottom: 40px;}
  .m20{margin-bottom: 20px;}

  /* 中ページ用共通マージン */
  .m200{margin-bottom: 200px;}
  .m120{margin-bottom: 120px;}
  .mt1{margin-bottom: 1em;}
  .mt2{margin-bottom: 2em;}
  .mt3{margin-bottom: 3em;}

  /* サイドバーあり */
  .sidebar-style{display: flex;}
  .sidebar-style #main{width: 70%;}
  .sidebar-style #sidebar1{width: 30%; margin-left: 60px;}

  @media only screen and (max-width: 736px) {
    .col{display: block;}
    .col:first-child{margin-bottom: 2em;}
    .col2{
     display: block;
     width: 100%;
     float: none;
   }

   .col2:nth-of-type(odd){margin-right: 0;}
   .col2:nth-of-type(even){margin-left: 0;}

   /* 左を右に入れ替え、スマホ用 */
   .col2.col-right{float: none;}

   .col3 > li,
   .col4 > li{
     padding: 0;
   }

   .col3 > li{width: 100%; float: none;}

   .col4 > li{width: 50%;}

   .col4{margin:0;}

   .m80{margin-bottom: 40px;}
   .m60{margin-bottom: 30px;}
   .m40{margin-bottom: 20px;}

   /* 中ページ用共通マージン */
   .m200{margin-bottom: 100px;}
   .m120{margin-bottom: 60px;}
   .mt1{margin-bottom: 0.5em;}
   .mt2{margin-bottom: 1em;}
   .mt3{margin-bottom: 1.5em;}

   /* スマホのみのマージン */
   .spm1{margin-bottom: 1em;}

   /* サイドバーあり */
   .sidebar-style{display: block;}
   .sidebar-style #main{width: 100%;}
   .sidebar-style #sidebar1{width: 100%; margin-left: 0px;}

 }


/* ==========================================================================
   form parts CSS ※BONESのもの
   ========================================================================== */
   input[type="text"],
   input[type="password"],
   input[type="datetime"],
   input[type="datetime-local"],
   input[type="date"],
   input[type="month"],
   input[type="time"],
   input[type="week"],
   input[type="number"],
   input[type="email"],
   input[type="url"],
   input[type="search"],
   input[type="tel"],
   input[type="color"],
   select,
   textarea,
   .field {
   	height: 40px;
   	line-height: 40px;
   	padding: 0 12px;
   	/* margin-bottom: 14px; */
   	font-size: 1em;
   	color: #333;
   	border-radius: 1px;
   	vertical-align: middle;
   	box-shadow: none;
   	border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 400px;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-transition: background-color 0.24s ease-in-out;
    transition: background-color 0.24s ease-in-out;
  }

  #wp_form input[type="text"],
  #wp_form input[type="password"],
  #wp_form input[type="datetime"],
  #wp_form input[type="datetime-local"],
  #wp_form input[type="date"],
  #wp_form input[type="month"],
  #wp_form input[type="time"],
  #wp_form input[type="week"],
  #wp_form input[type="number"],
  #wp_form input[type="email"],
  #wp_form input[type="url"],
  #wp_form input[type="search"],
  #wp_form input[type="tel"],
  #wp_form input[type="color"],
  #wp_form select,
  #wp_form textarea
  {box-shadow: 1.7px 2.2px 0.4px 1px rgba(76,11,11,0.3) inset;}
  .box_row input{margin: 3px 3px 13px 0px !important;}



  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    color:#000;
    background-color: #f7f8fa; }
    input[type="text"].error, input[type="text"].is-invalid,
    input[type="password"].error,
    input[type="password"].is-invalid,
    input[type="datetime"].error,
    input[type="datetime"].is-invalid,
    input[type="datetime-local"].error,
    input[type="datetime-local"].is-invalid,
    input[type="date"].error,
    input[type="date"].is-invalid,
    input[type="month"].error,
    input[type="month"].is-invalid,
    input[type="time"].error,
    input[type="time"].is-invalid,
    input[type="week"].error,
    input[type="week"].is-invalid,
    input[type="number"].error,
    input[type="number"].is-invalid,
    input[type="email"].error,
    input[type="email"].is-invalid,
    input[type="url"].error,
    input[type="url"].is-invalid,
    input[type="search"].error,
    input[type="search"].is-invalid,
    input[type="tel"].error,
    input[type="tel"].is-invalid,
    input[type="color"].error,
    input[type="color"].is-invalid,
    select.error,
    select.is-invalid,
    textarea.error,
    textarea.is-invalid,
    .field.error,
    .field.is-invalid {
     color: #fbe3e4;
     border-color: #fbe3e4;
     background-color: white;
     background-position: 99% center;
     background-repeat: no-repeat;
     background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
     outline-color: #fbe3e4; }
     input[type="text"].success, input[type="text"].is-valid,
     input[type="password"].success,
     input[type="password"].is-valid,
     input[type="datetime"].success,
     input[type="datetime"].is-valid,
     input[type="datetime-local"].success,
     input[type="datetime-local"].is-valid,
     input[type="date"].success,
     input[type="date"].is-valid,
     input[type="month"].success,
     input[type="month"].is-valid,
     input[type="time"].success,
     input[type="time"].is-valid,
     input[type="week"].success,
     input[type="week"].is-valid,
     input[type="number"].success,
     input[type="number"].is-valid,
     input[type="email"].success,
     input[type="email"].is-valid,
     input[type="url"].success,
     input[type="url"].is-valid,
     input[type="search"].success,
     input[type="search"].is-valid,
     input[type="tel"].success,
     input[type="tel"].is-valid,
     input[type="color"].success,
     input[type="color"].is-valid,
     select.success,
     select.is-valid,
     textarea.success,
     textarea.is-valid,
     .field.success,
     .field.is-valid {
      color: #e6efc2;
      border-color: #e6efc2;
      background-color: white;
      background-position: 99% center;
      background-repeat: no-repeat;
      background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
      outline-color: #e6efc2; }
      input[type="text"][disabled], input[type="text"].is-disabled,
      input[type="password"][disabled],
      input[type="password"].is-disabled,
      input[type="datetime"][disabled],
      input[type="datetime"].is-disabled,
      input[type="datetime-local"][disabled],
      input[type="datetime-local"].is-disabled,
      input[type="date"][disabled],
      input[type="date"].is-disabled,
      input[type="month"][disabled],
      input[type="month"].is-disabled,
      input[type="time"][disabled],
      input[type="time"].is-disabled,
      input[type="week"][disabled],
      input[type="week"].is-disabled,
      input[type="number"][disabled],
      input[type="number"].is-disabled,
      input[type="email"][disabled],
      input[type="email"].is-disabled,
      input[type="url"][disabled],
      input[type="url"].is-disabled,
      input[type="search"][disabled],
      input[type="search"].is-disabled,
      input[type="tel"][disabled],
      input[type="tel"].is-disabled,
      input[type="color"][disabled],
      input[type="color"].is-disabled,
      select[disabled],
      select.is-disabled,
      textarea[disabled],
      textarea.is-disabled,
      .field[disabled],
      .field.is-disabled {
       cursor: not-allowed;
       border-color: #cfcfcf;
       opacity: 0.6; }
       input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
       input[type="password"][disabled]:focus,
       input[type="password"][disabled]:active,
       input[type="password"].is-disabled:focus,
       input[type="password"].is-disabled:active,
       input[type="datetime"][disabled]:focus,
       input[type="datetime"][disabled]:active,
       input[type="datetime"].is-disabled:focus,
       input[type="datetime"].is-disabled:active,
       input[type="datetime-local"][disabled]:focus,
       input[type="datetime-local"][disabled]:active,
       input[type="datetime-local"].is-disabled:focus,
       input[type="datetime-local"].is-disabled:active,
       input[type="date"][disabled]:focus,
       input[type="date"][disabled]:active,
       input[type="date"].is-disabled:focus,
       input[type="date"].is-disabled:active,
       input[type="month"][disabled]:focus,
       input[type="month"][disabled]:active,
       input[type="month"].is-disabled:focus,
       input[type="month"].is-disabled:active,
       input[type="time"][disabled]:focus,
       input[type="time"][disabled]:active,
       input[type="time"].is-disabled:focus,
       input[type="time"].is-disabled:active,
       input[type="week"][disabled]:focus,
       input[type="week"][disabled]:active,
       input[type="week"].is-disabled:focus,
       input[type="week"].is-disabled:active,
       input[type="number"][disabled]:focus,
       input[type="number"][disabled]:active,
       input[type="number"].is-disabled:focus,
       input[type="number"].is-disabled:active,
       input[type="email"][disabled]:focus,
       input[type="email"][disabled]:active,
       input[type="email"].is-disabled:focus,
       input[type="email"].is-disabled:active,
       input[type="url"][disabled]:focus,
       input[type="url"][disabled]:active,
       input[type="url"].is-disabled:focus,
       input[type="url"].is-disabled:active,
       input[type="search"][disabled]:focus,
       input[type="search"][disabled]:active,
       input[type="search"].is-disabled:focus,
       input[type="search"].is-disabled:active,
       input[type="tel"][disabled]:focus,
       input[type="tel"][disabled]:active,
       input[type="tel"].is-disabled:focus,
       input[type="tel"].is-disabled:active,
       input[type="color"][disabled]:focus,
       input[type="color"][disabled]:active,
       input[type="color"].is-disabled:focus,
       input[type="color"].is-disabled:active,
       select[disabled]:focus,
       select[disabled]:active,
       select.is-disabled:focus,
       select.is-disabled:active,
       textarea[disabled]:focus,
       textarea[disabled]:active,
       textarea.is-disabled:focus,
       textarea.is-disabled:active,
       .field[disabled]:focus,
       .field[disabled]:active,
       .field.is-disabled:focus,
       .field.is-disabled:active {
        background-color: #d5edf8; }

        input[type="password"] {
         letter-spacing: 0.3em; }

         textarea {
          max-width: 100%;
          min-height: 120px;
          line-height: 1.5em; }

          /* フォーム調整 */
          input[type="text"],
          input[type="password"],
          input[type="datetime"],
          input[type="datetime-local"],
          input[type="date"],
          input[type="month"],
          input[type="time"],
          input[type="week"],
          input[type="number"],
          input[type="email"],
          input[type="url"],
          input[type="search"],
          input[type="color"],
          select,
          textarea,
          .field
          {max-width: 100%;}

          form span.req{color: red; margin-left: 10px;}

          form button,
          html form input[type="button"],
          input[type="reset"],
          input[type="submit"]
          {border:none; background: #f9801e; color: #fff; padding: 10px 80px; border-radius: 5px; font-size: 25px; margin: 0 16px;}

          input[type="submit"].back{background: #103b5a;}

          form h4{margin-bottom: 0;}
          form p{margin-bottom: 16px;}

          .searchform div > *{display: inline-block; vertical-align: unset;}
          .searchform input[type="search"]{width: 50%;}
          #searchsubmit{border:none; background: #6eb92b; color: #fff; padding: 13px 10px; border-radius: 5px; font-size: 16px; margin: 0; transform: translateY(2px);}


/* ==========================================================================
   toppage CSS 
   ========================================================================== */


/*************************
H1, H2, H3, H4, H5 STYLES
*************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
	text-rendering: optimizelegibility;
	font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
/* removing text decoration from all headline links */ }
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
	text-decoration: none; }

	h1, .h1 {
		font-size: 2.5em;
		line-height: 1.333em; }

		h2, .h2 {
			font-size: 1.75em;
			line-height: 1.4em;
			margin-bottom: 0.375em; }

			h3, .h3 {
				font-size: 1.125em; }

				h4, .h4 {
					font-size: 1.1em;
					font-weight: 700; }

					h5, .h5 {
						font-size: 0.846em;
						line-height: 2.09em;
						letter-spacing: 2px; }

/* −−−−−−−−−−−−−−−−−−−−−−----------------------------------------------------

header用CSS

−−−−−−−−−−−−−−−−−−−−−−------------------------------------------------------- */
/* ヘッダー固定用スペース */
/* .header{padding-bottom: 64px;} */

.header-wrap{
	position: relative;
	max-width: 950px;
 width: 100%;
 background: #fff;
 z-index: 9999;
 transition: background .3s cubic-bezier(.55,0,.1,1);
 margin: 0 auto;
 font-size: 14px;
}

/* JSで背景色変更用クラス */
.header-wrap.backcolor{background: #dfebce;}

.inner-header{
 width:100%;
 display: flex;
 flex-wrap: nowrap;
 justify-content: space-between;
}

.logo{
 /* width: 200px; */
 margin:0;
 padding-top: 10px;
}

.logo a{
 padding: 12px 0;
 position: relative;
 z-index: 10001;
}

.gakkenlogo{display: block;}

.footer-col .logo a{position: static;}

.header-line{
 margin: 12px 0;
 border-color: #f2f2f2;
}



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


  .header-line
  {display: none;}

  .logo{padding:10px 0;}
  .logo img{margin:0 0 0 10px;}
  .logo img.gakkenlogo{margin:0 0 5px 10px;}

}



/* global navi */


nav.global-nav > ul{
  display: flex;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
  
}

nav.global-nav li{
  vertical-align: top;
  flex: 1;
  text-align: center;
  background: #fff;
}


#menu-item-743,
#menu-item-745,
#menu-item-747,
#menu-item-748,
#menu-item-1214
{display: none;}

@media only screen and (max-width: 736px) {
  #menu-item-743,
  #menu-item-745,
  #menu-item-747,
  #menu-item-748,
  #menu-item-1214
  {display: block;}

}



nav.global-nav > ul > li > a{
  display: block;
  text-align: center;
  transition: color .3s cubic-bezier(.55,0,.1,1);
  border-right: 1px solid #ccc;
  padding: 10px 0;
  position: relative;
  line-height: 1.2;
}

nav.global-nav > ul > li:first-child > a{
  border-left: 1px solid #ccc;
}

nav.global-nav > ul > li:nth-of-type(1) > a::after,
nav.global-nav > ul > li:nth-of-type(2) > a::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: #6eb92b;
  font-size: 10px;
}

nav.global-nav li a span{
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
}


/* ドロップダウンメニュ- */
nav.global-nav > ul{
  height: 36px;
}

nav.global-nav li{
  position: relative;
}

nav.global-nav li li{
  height: 0;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.55,0,.1,1);
}

nav.global-nav li:hover > ul.sub-menu > li{
  height: 100%;
  overflow: visible;
  padding: 14px 0;
  border-top: 1px dashed #ccc;
  transition: transform .3s cubic-bezier(.55,0,.1,1);
}






/* その他 */
.global-nav .contact-btn{
  background: #e60012;
  padding: 20px 40px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  line-height: 1;
}

.header-info{width: calc(100% - 214px);}

.telinfo_area{text-align: right; padding-top: 10px;}
.telinfo_area img{margin-left: 10px;}

.telinfo_area .tel {
  color: #023886;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.telinfo_area .tel:last-child {
  margin-bottom: 0;
}
.telinfo_area .tel span {
  font-size: 16px;
  position: relative;
  padding-left: 35px;
}
.telinfo_area .tel span.tel01:before {
  position: absolute;
  content: "";
  background: url(/cmn/svg/tel.svg) no-repeat 0 0 / 30px auto;
  width: 30px;
  height: 20px;
  left: 0;
}
.telinfo_area .tel span.tel02:before {
  position: absolute;
  content: "";
  background: url(/cmn/svg/free_call.svg) no-repeat 0 0 / 30px auto;
  width: 30px;
  height: 25px;
  left: -1px;
  top: 50%;
  margin-top: -11px;
}

.othernav_area{
  /* width: calc(100% - 200px); */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 10px;
}

.othernav_area nav{width: 35%; padding-top: 10px;}

.othermenu{
  display: flex;
  flex-wrap: wrap;
}

.othermenu li{
  margin: 0 15px 8px 0;
  font-size: 11px;
  letter-spacing: 1px;
}

#menu-submenu.othermenu li{
  font-size: 14px;
}

.othermenu li::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 3px;
  color: #6eb92b;
}

.headerform-area{
  display: table;
  margin: 0 0 0 auto;
}

.member-btn,
.info-btn{margin-right: 10px;}
.form-btn a,
.member-btn a,
.info-btn a{
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
}

.form-btn a{background: #6eb92b;}
.member-btn a{background: #fabe00;}
.info-btn.ver1 a{background: #eb6e8f;}
.info-btn.ver2 a{background: #21ade5;}
.info-btn.ver3 a{background: #f08336;}

.form-btn a::before,
.member-btn a::before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.form-btn a::before{ content: "\f0e0";}
.member-btn a::before{ content: "\f023";}

/* newtopics */

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

  .header-info{display: none;}

  nav.global-nav li a{
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }

  nav.global-nav .sub-menu a{
    border-bottom: none;
    padding: 0;
  }


  nav.global-nav li a span{
    display: inline;
    position: static;
    transform: none;
  }

  nav.global-nav li .global-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
  }
  nav.global-nav li .global-btn .form-btn,
  nav.global-nav li .global-btn .info-btn {
    width: 49%;
    margin-right: 0;
  }
  nav.global-nav .global-btn a {
    padding: 15px 0;
    border-bottom: none;
    font-size: 12px;
  }
  nav.global-nav .form-btn a:before {
    content: none;
  }
  nav.global-nav li .global-btn .info-btn.ver1,
  nav.global-nav li .global-btn .info-btn.ver2 {
    margin-bottom: 10px;
  }

}

/* −−−−−−−−−−−−−−−−−−−−−−----------------------------------------------------

モーダルメニュー

−−−−−−−−−−−−−−−−−−−−−−------------------------------------------------------- */

/* modal */
.modal-btn{
 position: absolute;
 top:10px;
 right:10px;
 display: none;
 color: #6eb92b;
 width: 40px;
 height: 40px;
 font-size: 40px;
 background: none;
 z-index: 10000;
 border-style: none;
 padding: 0;
 margin: 0;
}

.modal-btn i{
  position: absolute;
  top: 0;
  left: 0;
}

/* .modal-off{
   display: table;
   height: 70px;
   width: 100%;
   } */

   nav.global-nav ul.top-sabnav{display: none;}

   @media only screen and (max-width: 736px) {
    /* @media only screen and (max-width: 1025px) { */
     /* モーダルメニュー用クラス */
     nav.global-nav ul.modal-off{
      transform: translateX(-100%);
      transition: transform .3s cubic-bezier(.55,0,.1,1);
      height: 0;
      display: block;
      position: absolute;
    }
    nav.global-nav ul.modal-on{transform: translateX(0) !important; height: 100%; z-index: 9999;}
    .modal-btn{display: block;}
    nav.global-nav ul.top-sabnav{display: block;}

  }


/**********************
メインスライダー
***********************/

.top-slider{position: relative; overflow: hidden;}

.topmetaslide::after{
 position: absolute;
 display: block;
 content: "";
 padding-top: 50%;
 background: url('../images/slide-overcurve.svg') no-repeat;
 background-size: contain;
 background-position: center bottom;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 z-index: 2;
 width: 100%;
 bottom: -2px;
}
.metaslider.topmetaslide .flex-control-nav{
 z-index: 3;
 bottom: -30px;
}
.metaslider.topmetaslide .flex-control-paging li a.flex-active{background: #6eb92b !important;}

.metaslider.topmetaslide .flexslider .flex-direction-nav li a{background-image: url('../images/bg_direction_nav-green.png'); height: 62px;}
.metaslider.topmetaslide .flexslider .flex-direction-nav li a{top: 50%;}

.metaslider.topmetaslide .flexslider:focus-within .flex-next, .metaslider.topmetaslide .flexslider:hover .flex-next{right: 40px;}
.metaslider.topmetaslide .flexslider:focus-within .flex-prev, .metaslider.topmetaslide .flexslider:hover .flex-prev{left: 40px;}

/* バナースライド */
.sub-slider{padding: 40px 0;}
.metaslider.subslider .flexslider .flex-direction-nav li a{background-image: url('../images/bg_direction_nav.png');}
.metaslider.subslider .flexslider .flex-direction-nav li a{top: 57%;}
.metaslider.subslider  .flexslider:focus-within .flex-next,
.metaslider.subslider  .flexslider:hover .flex-next{right: -40px;}
.metaslider.subslider  .flexslider:focus-within .flex-prev,
.metaslider.subslider  .flexslider:hover .flex-prev{left: -40px;}


ol.flex-control-nav {
 transform: translateY(-40px);
}

.metaslider .flexslider {
	margin-bottom: 0 !important;
}

.flex-viewport {overflow: visible !important;}

.theme-default .nivo-controlNav a{background: url('../images/bullets.png') no-repeat !important; }


.flex-control-paging li a{background: #ccc !important;}
/* .flex-control-paging li a.flex-active{background: #6eb92b !important;} */


@media only screen and (max-width: 1100px) {
  #metaslider-id-29 .flex-viewport {overflow: hidden !important;}
}
@media only screen and (max-width: 736px) {

	.metaslider > div{margin: 0 0 20px 0;}
  .metaslider.subslider{padding:0 10px;}

  .metaslider.subslider .flexslider .flex-direction-nav{display: none;}

}

/*********************
Index Only(PC) 
*********************/


/* −−−−−−−−−−−−−−−−−−−−−−コンテンツエリア−−−−−−−−−−−−−−−−−−−−−− */

.kinkyutaiou{
 max-width: 950px;
 margin: 0 auto 40px;
}
.kinkyutaiou a{
 display: block;
 padding: 10px 0;
 text-align: center;
 color: #CA250E;
 border:1px solid #CA250E;
 font-weight: bold;
 font-size: 18px;
 text-decoration: underline;
}

.freesystem-service{
 max-width: 950px;
 margin: 0 auto 40px;
}
.freesystem-service a{
 display: block;
 padding: 20px 0;
 text-align: center;
 color: #FFF;
 background: #37b472;
 font-weight: bold;
 font-size: 18px;
 text-decoration: underline;
 border-radius: 5px;
}


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

 .kinkyutaiou a,
 .freesystem-service a{
  font-size: 16px;
  line-height: 1.6;
}

}

.content-wrap{
	/* max-width: 1300px; */
	margin: 0 auto;
}

.area-box{
	padding: 80px 0;
	margin: 0 auto;
}

a.common-link{
 background: #6eb92b;
 font-size: 14px;
 display: table;
 width: auto;
 margin: 0 auto;
 line-height: 1;
 text-align: center;
 padding: 10px 50px;
 color: #fff;
 border-radius: 100px;
 font-weight: bold;
 letter-spacing: 2px;
 transform: translate(0px, 0px);
 box-shadow: 3px 3px rgba(0, 0, 0, 0.2);
 transition: all .3s cubic-bezier(.55,0,.1,1);
 position: relative;
}

a.common-link:hover{
 opacity: 1;
 background: #4e8e14;
 transform: translate(3px, 3px);
 box-shadow: 0px 0px rgba(0, 0, 0, 0.2);
 transition: all .3s cubic-bezier(.55,0,.1,1);
}

a.common-link::after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}



/* 見出し */

.main-header{
 text-align: center;
 font-size: 25px;
 /* font-weight: bold; */
 line-height: 1.5;
 color: #f9801e;
}

.area-box p.common-text{
 font-size: 15px;
 font-weight: bold;
 text-align: center;
}



.common-title{
 font-size: 30px;
 font-weight: 900;
 text-align: center;
 color: #6eb92b;
 letter-spacing: 2px;
 position: relative;
 margin-bottom: 40px;
}

.common-title::after{
 position: absolute;
 content: url('../images/common-title-circle.png');
 left: 50%;
 transform: translateX(-50%);
 bottom: -26px;
}





.main-title i{font-size: 13px; color: #b2b2b2; font-style: normal;}

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

 .main-header{font-size: 18px;}

 .area-box p.common-text{font-size: 12px;}

	/* .main-title span{font-size: 26px;}

   .main-icontitle span::before,
   .main-icontitle span::after{
      content: none;
      } */

      .big-title{font-size: 22px;}

      .common-title,
      .common-title.small{
       font-size: 23px;
       text-align: center;
     }

   }

   /* 各コンテンツの背景色、高さ、画像設定 ----------------------------------------------------------------*/

   .area-box p{
    line-height: 2;
    text-align: justify;
  }

  .area-box p.t_center{
    text-align: center;
  }

  /* 背景画像設定 */
  .backimg01{background-image: url('../images/backimg01.gif');}
  .backimg02{background-image: url('../images/backimg02.gif');}



  /* −−−−−−−−−−−−−−−−−−−−−−各コンテンツ用CSS−−−−−−−−−−−−−−−−−−−−−− */


  /* お知らせ・イベント情報 */
  .spriteback{
    background-size: auto auto;
    background-color: rgba(248, 247, 248, 1);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(243, 241, 243, 1) 8px, rgba(243, 241, 243, 1) 16px );
  }

  .new-topics{
    background: #fff;
    padding: 50px;
    border-radius: 10px;
  }

  .new-topics li{
    margin-bottom: 40px;
    font-size: 11px;
  }
  .new-topics li:last-child{
    margin-bottom: 0px;
  }
  .new-topics li .day{}
  .new-topics li .cate{
    display: inline-block;
    margin: 0 20px;
    padding: 5px 0px;
    width: 9em;
    text-align: center;
    border-radius: 3px;
    background: #6eb92b;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', "游ゴシック",YuGothic, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  }
  .new-topics li .cate + .cate {
    margin-left: 0;
  }
  .new-topics li .text{
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    font-size: 16px;
    line-height: 1.4;
  }

  .new-topics li .cate_7{background: #21ade5;}
  .new-topics li .cate_6{background: #eb6e8f;}
  .new-topics li .cate_12{background: #f08336;}
  .new-topics li .end{
    width: 5em;
    background: #f00;
  }

  .news-area a.common-link{margin: 0 auto 40px;}

  a.member-link{
    display: block;
    padding: 14px 0 16px;
    color: #6eb92b;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: 3px solid #bfbfbf;
    background: #fff;
    border-radius: 5px;
    letter-spacing: 2px;
  }
  a.member-link span{
    font-size: 15px;
    display: inline-block;
    transform: translateY(-2px);
  }

  /* お子さまの年齢から選ぶ */
  .ageselect-area .common-title::after{content: none;}

  .age-title{position: relative;}

  .age-title::before,
  .age-title::after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .age-title::before{
    content: url('../images/age-title-l.png');
    left: -164px;
    top: calc(50% + 10px);
  }
  .age-title::after{
    content: url('../images/age-title-r.png');
    right: -100px;
  }

  .ageselect-area .col{align-items: flex-start;}
  .ageselect-area .col li{padding:0 10px; flex:1;}


  /* pickipおすすめコース */
  .pickup-area{
    background: #eb6e8f;
    
  }

  .courseslider-wrap{
    overflow: hidden;
    overflow-x: hidden;
    padding: 0px 0 74px;
  }

  .waveline-d, .waveline-u {position: relative;}
  .waveline-u::before {top: -10px;}
  .waveline-d::after {bottom: -10px;}
  .waveline-d::before, .waveline-u::after {
    position: absolute;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 10px;
    z-index: 9999;
  }

  .waveline-u.pink::before{background: url(../images/waveline-up-pink.png) repeat-x;}
  .waveline-d.pink::after{background: url(../images/waveline-down-pink.png) repeat-x;}

  .pickup-area .common-title{color: #fff;}
  .pickup-area .common-title::after{content: none;}

  .pickup-title img{
   max-width: 212px;
   margin:0 14px 0 0;
 }

 .pickup-title::before,
 .pickup-title::after{
   position: absolute;
 }
 .pickup-title::before{
   content: url('../images/pickup-title-l.png');
   left: -70px;
 }
 .pickup-title::after{
   content: url('../images/pickup-title-r.png');
   right: -70px;
 }

 /* スライダー */
 .metaslider.pickup-slider .flexslider .slides > li{
   transform: scale(0.7, 0.7);
   transition: transform .3s cubic-bezier(.55,0,.1,1);
 }

 .metaslider.pickup-slider .flexslider .slides > li.flex-active-slide{
   transform: scale(1, 1);
   transition: transform .3s cubic-bezier(.55,0,.1,1);
 }

 .metaslider.pickup-slider .flexslider .slides > li img{
   border-radius: 15px;
   margin:0 20px;
   box-shadow: 5px 5px rgba(0, 0, 0, 0.2);
 }

 .metaslider.pickup-slider .flexslider .flex-direction-nav li a{background-image: url('../images/bg_direction_nav.png');}
 .metaslider.pickup-slider .flexslider .flex-direction-nav li a{top: 51%;}
 .metaslider.pickup-slider  .flexslider:hover .flex-prev{left: -1px;}
 .metaslider.pickup-slider  .flexslider:hover .flex-next{right: -42px;}

 .metaslider.pickup-slider .flex-control-nav{transform: translateX(300px);}

 .metaslider.pickup-slider .flex-control-paging li a.flex-active {
  background: #fabe00 !important;
}

/* スライダーキャプション */
.metaslider.pickup-slider .caption-wrap{
 background: none;
 opacity: 1;
 left: 17px;
 bottom: -70px;
 line-height: 1.5;

}

.metaslider.pickup-slider .caption{
 font-size: 20px;
 font-weight: 900;
 text-align: center;
 letter-spacing: 2px;
}

.metaslider.pickup-slider .caption i{margin-right: 10px;}


/* 子どもたちに「学びたくなる学び」を */

.manabi-area{
 background: url('../images/manabi-backimg.jpg') ;
 background-size: contain;
 background-position: center;
}

.manabi-area .common-title{margin:0 auto 20px;}
.manabi-area .common-title::after{content: none;}


/* 独自の教材と指導で、楽しく学べる */

.movie-area{
 background: #fabe00;
 position: relative;
}

.movie-area .common-wrap{
  overflow: hidden;
  overflow-x: hidden;
}

.movie-area::before {top: 20px;}
.movie-area::after {bottom: 20px;}
.movie-area::before, .movie-area::after {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 13px;
}

.movie-area::before,
.movie-area::after{background: url(../images/movie-area-line.png) repeat-x;}

.movie-area .common-title{color: #fff; margin-bottom: 10px;}
.movie-area .common-title::after{content: none;}

.movie-title{
  max-width: 500px;
  margin: 0 auto 40px;
  color: #fff;
  text-align: center;
  position: relative;
}

.movie-title .common-title{
  position: relative;
  top: 8px;
  margin-left: 10px;
  font-weight: 600;
} 
.movie-title img{
 margin:0 10px 0 0;
}

.movie-title::before,
.movie-title::after{
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
}
.movie-title::before{
 content: url('../images/movie-title-l.png');
 left: -250px;
}
.movie-title::after{
 content: url('../images/movie-title-r.png');
 right: -250px;
}

.movie-subtitle{
  font-size: 22px;
  display: block;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.movieLst_wrap {
  margin: 0 0 40px;
}
.movieLst_lst {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 50px;
}
.movieLst_box {
    width: 520px;
    box-sizing: border-box;
}
@media only screen and (max-width: 736px) {
  .movieLst_wrap {
    margin: 0 0 20px;
  }
  .movieLst_lst {
      display: block;
  }
  .movieLst_box {
      width: 100%;
  }
  #mv02, #mv03 {
      display: block !important;
  }
}


/* フッターバナー */
.banner-menu .col{align-items: flex-end;}

.course-area ul.col{
 align-items: flex-end;
}

.col2:nth-of-type(odd),
.col2:nth-of-type(even){margin:0 10px;}

.footer-banner img{width: 100%;}
.footer-banner .col2{width: 50%;}
.footer-banner .col2:nth-of-type(odd),
.footer-banner .col2:nth-of-type(even){margin:0;}



/* 
-----------------------------------------------------------------------
SP
-----------------------------------------------------------------------
*/
@media only screen and (max-width: 736px) {


/* 
SP用flexbox順番並び替え
sectionの間になにかタグは入れないようにする。
*/

#index-main{
  display: flex;
  flex-wrap: wrap;
}

#index-main > section.area-box{width: 100%;}
#index-main > section.area-box.news-area{order: 0;}
#index-main > section.area-box.ageselect-area{order: 4;}
#index-main > section.area-box.pickup-area{order: 3;}
#index-main > section.area-box.manabi-area{order: 1;}
#index-main > section.area-box.movie-area{order: 2;}
#index-main > section.area-box.course-area{order: 5;}
#index-main > section.area-box.fbanner-area{order: 7;}

.movieLst_lst .movieLst_box {
  margin: 0 auto 20px;
  max-width: 520px;
}
.movieLst_lst .movieLst_box:last-child {
  margin-bottom: 0;
}

/* 各セクションのマージン */
.sub-slider{padding:0;}
.area-box{padding: 40px 0;}
.movie-area {padding: 40px 20px;box-sizing: border-box;}

/* 以下各コンテツの調整（上記の並び替え順に記述） */

/* 子どもたちに「学びたくなる学び」を */
.area-box.manabi-area{padding: 40px 0 80px;}


/* 動画ギャラリー */
.movie-area::after,
.movie-title::before,
.movie-title::after{display: none;}

.movie-area::before{
  content: "";
  width: 100%;
  height: 70px;
  background: url('../images/movie-spheader.svg') no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  top: -69px;
}

.movie-title img{margin:0 auto;}
.movie-title .common-title{margin:0;}
.movie-subtitle{font-size: 14px; letter-spacing: 0;}



/* PICKUPおすすめコース */
.pickup-title::before, .pickup-title::after{content: none;}
.metaslider.pickup-slider .flexslider:hover .flex-next {right: -1px;}
.metaslider.pickup-slider .flexslider .slides > li img{margin:0;}
.pickup-title img{margin:0 auto 10px;}

/* お子さまの年齢から選ぶ */
.area-box.ageselect-area{padding: 100px 0 40px;}
.age-title::before{content: none;}
.age-title::after{
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: -75px;

}

.ageselect-area .col li{
  margin-bottom: 30px;
  padding: 0 20px;
}

/* お知らせ・イベント */
.new-topics{
  padding: 10px;
}

.new-topics li{
  margin: 0 5px 10px;
  overflow: hidden;
  border-radius: 10px;
}

.new-topics li .day{font-size: 10px;}
.new-topics li .cate{
  padding: 3px 5px;
  margin: 0 0 5px 10px;
  font-size: 10px;
}
.new-topics li .cate + .cate {
  margin-left: 10px;
}
.new-topics li .text{
  display: block;
  line-height: 1.4;
  padding-bottom: 5px;
}

.member-btn{margin:0;}
.member-btn a,
.member-btn span{
  letter-spacing: 0;
}

a.member-link span{
  font-size: 12px;
}

/* フッターバナーエリア */
.area-box.fbanner-area{padding:0px 0 40px;}
.fbanner-area .banner-menu{padding:0 30px;}
.fbanner-area .col .col2{margin:0 0 20px;}

.footer-banner .col .col2{margin:0; width: 100%;}







}

/*********************
SIDEBAR STYLES 
*********************/

.sidebar h3{
 background: #f9801e;
 color: #fff;
 padding: 10px;
 border-radius: 5px;
}

.sidebar ul{
 margin-bottom: 20px;
}

.sidebar ul li{
 border-bottom: 1px solid #eee;
 padding: 10px;
}




/*********************
FOOTER STYLES 
*********************/

.footer {color: #333;}

/* フッターメニュー周り */
.footer-area > .col2:first-child{width: 34%;}
.footer-area > .col2:last-child{width: 66%; padding-left: 30px;}

.footer-area > .col2:nth-of-type(odd),
.footer-area > .col2:nth-of-type(even){margin:0;}


.footer-logo-wrap{position: relative;}
.footer-logo-wrap::after{
 content: url('../images/character.png');
 position: absolute;
 bottom: -23px;
 right: -26px;
 z-index: 9999;
}

.footer-logo-wrap a.common-link{color: #fff;}
#menu-footer-menu.othermenu li{margin-right: 20px;}

.footer-logo img{max-width: 222px;}

.footer-menu{
 justify-content:space-between;
 align-items: flex-start;
}
.footer-menu li{
 font-size: 13px;
 line-height: 2em;
}



.footer-copyright{
 padding: 10px 0;
 font-size: 12px;
 background: #6eb92b;
 color: #fff;
 text-align: center;
 position: relative;
}
.footer .common-wrap {
  padding-bottom: 20px;
}






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

  .footer-area > .col2:first-child{width: 100%;}
  .footer-menu-area{display: none;}

  .footer-logo-wrap{padding:0 10px 40px;}
  .footer-logo img{max-width: 100%;}
  .form-btn{
    text-align: center;
  }

  .form-btn a{
    padding: 20px 0;
    width: 100%;
  }

  .footer-logo-wrap::after {
    bottom: -51px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }


}

/* ==========================================================================
   wordpress CSS
   ========================================================================== */



/*********************
POSTS & CONTENT STYLES
*********************/
#content {
	/*margin-top: 1.5em;*/
	margin-top: 0;
}


/* 固定ページ、投稿ページ共通デフォルト設定 -------------------------------------------------- */

/* 行間設定 */
.entry-content{line-height: 2; font-size: 18px;}


/* 固定ページ用デフォルト設定 -------------------------------------------------- */

.hentry {
	/* background-color: white; */
	/*border-radius: 3px;*/
	margin-bottom: 1.5em;
/*border: 1px solid #cccccc;*/ }
.hentry header {
	/* border-bottom: 1px solid #f8f9fa; */
/*padding: 1.5em;*/ }
.hentry footer {
	/*padding: 1.5em;*/
/*border-top: 1px solid #f8f9fa;*/ }
.hentry footer p {
	margin: 0; }

	/* end .hentry */
	.single-title,
	.page-title,
	.entry-title {
		margin: 0; }

		/* want to style individual post classes? Booya! */
		/* post by id (i.e. post-3) */
		/* general post style */
		/* general article on a page style */
		/* general style on an attatchment */
		/* sticky post style */
		/* hentry class */
		/* style by category (i.e. category-videos) */
		/* style by tag (i.e. tag-news) */
		/* post meta */
		.byline {
			color: #9fa6b4;
			font-style: italic;
			margin: 0; }

     @media only screen and (max-width: 736px) {
      /* .hentry{padding: 0 10px;} */
    }

    /* single.php用 */
    #blog-content p{margin-bottom: 1em;}

    /* カスタム投稿用 -------------------------------------------------- */

    .single-blog a{color: #f9801e; text-decoration: underline;}

    .blog-title{
      color: #f9801e;
      font-size: 30px;
      border-bottom: 2px solid #f9801e;
      padding-bottom: 20px;
      margin-bottom: 40px;
    }

    .blog-images{ text-align: center; margin-bottom: 40px;}

    .blog-date, .blog-category{
      display: inline-block;
      border-radius: 5px;
      text-align: center;
      padding: 5px;
      margin-bottom: 20px;
    }
    .blog-date{background:#f9801e; color: #fff;}
    .blog-category{border:1px solid #f9801e;}
    .blog-category a{color: #f9801e;}

    .tags a{background:#dfebce; color: #103b5a; border-radius: 5px; text-align: center; padding: 5px;}

    .blog-category.blog-tags{border:none;}
    .blog-category.blog-tags a{
      border:1px solid #f9801e;
      border-radius: 5px;
      text-align: center;
      margin-right: 10px;
      padding: 2px 5px;
      line-height: 1;
      font-size: 16px;
    }
    

    .pagination{line-height: 1.6;}

    @media only screen and (max-width: 736px) {
     .blog-title{font-size: 18px; line-height: 1.4;}
   }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/

/* カテゴリ */
.pagination {
	display: table;
	background-color: white;
	white-space: nowrap;
	padding: 0;
	clear: both;
	border-radius: 3px;
 /* width: 100%; */
 margin: 0 auto;
}

.pagination li {
 /* width: 50%; */
 padding: 0;
 margin: 0;
 display: table-cell;
}
.pagination li:first-child{text-align: left;}
.pagination li:last-child{text-align: right;}

.pagination a, .pagination span {
	margin: 0;
	text-decoration: none;
	padding: 0;
	line-height: 1em;
	font-size: 1em;
	font-weight: normal;
	padding: 0.5em;
	min-width: 1em;
}

.pagination a:hover,
.pagination a:focus,
.pagination span:hover,
.pagination span:focus { color: #e60012; }

.pagination .current {cursor: default; color: #e60012; }

.pagination .current:hover,
.pagination .current:focus {color: #e60012; }

/* end .bones_page_navi */
/* fallback previous & next links */
/* .wp-prev-next .prev-link { float: left; }
.wp-prev-next .next-link { float: right; } */


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

.pagination {
	white-space: normal;
}

 .pagination,
 .pagination li {
  display: block;
  width: 100%;
  white-space: unset;
}

.pagination li{margin-bottom:10px;}

}


/* シングル -------------------------------------*/

/* エディタークラス */
.alignleft,
.aligncenter,
.alignright{display: block;}

.aligncenter{margin:0 auto;}
.alignright{margin: 0 0 0 auto;}


#pagination {
  display: table;
  background-color: white;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
 width: 100%;
}

#pagination li {
 width: 50%;
 padding: 0;
 margin: 0;
 display: table-cell;
}
#pagination li:first-child{text-align: left;}
#pagination li:last-child{text-align: right;}

#pagination a, #pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
}

#pagination a:hover,
#pagination a:focus,
#pagination span:hover,
#pagination span:focus { color: #e60012; }

#pagination .current {cursor: default; color: #e60012; }

#pagination .current:hover,
#pagination .current:focus {color: #e60012; }

/* end .bones_page_navi */
/* fallback previous & next links */
/* .wp-prev-next .prev-link { float: left; }
.wp-prev-next .next-link { float: right; } */


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

#pagination {
	white-space: normal;
}

#pagination,
#pagination li {
  display: block;
  width: 100%;
  white-space: unset;
}

#pagination li{margin-bottom:10px;}

}


/* ==========================================================================
   検索結果ページ
   ========================================================================== */

.search-contents{}
.search-title a{color: #6eb92b; font-weight: bold;}
.search-contents .hentry header{border:none;}
.search-contents .hentry{
  line-height: 1.6;
  border-color: #ccc;
  border-style: solid;
  border-width: 0 0 1px 0;
  padding: 16px;
  margin: 0;
}

.search-contents .article-footer a{
  background:#269a65;
  padding:3px;
  border-radius: 3px;
  color: #fff;
  line-height: 1;
  font-size: 12px;

}


@media only screen and (max-width: 736px) {
  .searchbox input{max-width: 100%;}
  .searchbox{padding: 16px;}
}








/* ==========================================================================
   Print styles
   ========================================================================== */

   @media print {
   	*,
   	*:before,
   	*:after {
   		background: transparent !important;
   		color: #000 !important;
   		box-shadow: none !important;
   		text-shadow: none !important;
   	}

   	a,
   	a:visited {
   		text-decoration: underline;
   	}

   /* 	a[href]:after {
   		content: " (" attr(href) ")";
   	}

   	abbr[title]:after {
   		content: " (" attr(title) ")"; 
   	}
    */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
      content: "";
    }

    pre,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
    }

    thead {
      display: table-header-group;
    }

    tr,
    img {
      page-break-inside: avoid;
    }

    img {
      max-width: 100% !important;
    }

    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3;
    }

    h2,
    h3 {
      page-break-after: avoid;
    }
  }

/* ===================
display 
======================*/
@media only screen and (min-width: 737px) {
  .c-pc{
    display: block;
  }
  .c-sp{
    display: none;
  }
  .c-pc-in{
    display: inline;
  }
  .c-sp-in{
    display: none;
  }
}
@media only screen and (max-width: 736px) {
  .c-pc{
    display: none;
  }
  .c-sp{
    display: block;
  }
  .c-pc-in{
    display: none;
  }
  .c-sp-in{
    display: inline;
  }
}
