@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #5d4d3a;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
} 

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video { 
  position: relative; 
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video, 
.responsive_video iframe, 
.responsive_video object, 
.responsive_video embed { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{
  
}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{
  
}
.tbl td{
  
}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}


.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  position: relative;
}
.pg_header:after{
  content: "";
  display: block;
  width: 100%;
  height: 67px;
  position: absolute;
  bottom: 0;
  background-image: url('/img/mv_cover.png?2');
  background-repeat: no-repeat;
  background-position: center top;
}
.pg_header .tt1{
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 2;
}

/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{
  
}
.listbox .item .date{
  
}
.listbox .item .txt{
  
}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  padding: 10px 0;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
header .hdr1 .hdr_logo{
  line-height: 1;
}
header .hdr1 .hdr_contact{
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  /*width: 100%;*/
  flex-grow: 1;
  position: relative;
}
.gnav > ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0 5px;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}


.mv{
  position: relative;
  height: 840px;
  
  background: #CCC;
  background-image: url('/img/mv.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mv:after{
  content: "";
  display: block;
  width: 100%;
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url('/img/mv_cover.png?2');
  background-repeat: no-repeat;
  background-position: center top;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  color: #FFF;
  padding: 35px 0 10px;
  /*margin-top: 200px;*/
}

footer .ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .box1{
  width: 50%;
}
footer .box2{
  width: 50%;
}

footer .ftr_logo{
  margin-bottom: 45px;
}
footer .ftr_addr{
  line-height: 1.875;
}

footer .ftr_contact{
  background: #FFF;
  color: #111;
  padding: 5px;
}
footer .ftr_contact .inner{
  border: 2px solid #84ccad;
  padding: 10px;
  font-weight: 500;
  text-align: center;
}
footer .ftr_contact .title{
  
  letter-spacing: 0.05em;
}
footer .ftr_contact .title span{
  display: inline-block;
  padding: 5px 30px;
  border-bottom: 1px solid;
}
footer .ftr_contact .btn1{
  letter-spacing: 0.05em;
}
footer .ftr_contact .btn1 span{
  display: inline-block;
  font-size: 31px;
}
footer .ftr_contact .btn1 span:first-letter{
  font-size: 38px;
}
footer .ftr_contact .btn1 a{
  font-size: 36px;
}
footer .ftr_contact .btn2{
  margin-top: 6px;
}
footer .ftr_contact .btn2 a{
  display: inline-block;
  width: 220px;
  max-width: 100%;
  background: #f29b76;
  padding: 5px;
}
footer .ftr_contact .btn2 i{
  margin-right: 5px;
}

footer .ftr_links{
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
footer .ftr_links li{
  padding: 0 25px;
  line-height: 1.1;
}
footer .ftr_links li+li{
  border-left: 1px solid;
}
footer .copy{
  background: #FFF;
  color: #111;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  margin-top: 60px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffa695;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #ff2700;
  color: #FFF;
  text-decoration: none;
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{
  
}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{
  
}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;
  
}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}



.breadcrumb_wrap{
  margin-top: -25px;
  position: relative;
  z-index: 2;
}
body.pg_slug_members .breadcrumb_wrap{
  margin-top: -20px;
}
body.post-type-archive-members-news .breadcrumb_wrap,
body.post-type-archive-members-gallery .breadcrumb_wrap,
body.single-members-news .breadcrumb_wrap{
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb li{
  display: inline;
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 80px 0 0;
}
body.home .main{
  padding-top: 0;
}
body.pg_slug_members .main{
  padding-top: 25px;
}
body.post-type-archive-members-news .main,
body.post-type-archive-members-gallery .main,
body.single-members-news .main{
  padding-top: 55px;
}


.tt1 {
  font-size: 28px;
  font-weight: 500;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #604c37;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 30px
}
.tt1:after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  margin: 15px auto 0;
  background-image: url(/img/gloval/coloful_dots_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.tt1.icon{
  
}
.tt1.icon:before{
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 15px;
}
.tt1.icon.icon1:before{
  height: 42px;
  background-image: url(/img/home/about_tt_icon.png);
}

.tt2{
  
}
.tt2 span{
  
}
.tt3{
  
}
.tt3 span{
  
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

/* 詳しく見る サンプル */
.read_more{
  
}
.read_more a{
  display: block;
  width: 250px;
  background: #ff2700;
  border-radius: 30px;
  margin: 0 auto;
  padding: 10px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.read_more a:hover{
  opacity: 0.9;
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  
}
.pg_home .section#sec2{
  margin-top: 110px;
}
.pg_home .section#sec3{
  margin-top: 130px;
}
.pg_home .section#sec4{
  margin-top: 115px;
}

/* 療育内容 */
.home_service_contents{
  margin-top: 50px;
  margin-bottom: 60px;
  padding: 80px 0;
  position: relative;
}
.home_service_contents:after{
  content: "";
  background: #fafafa;
  width: 100vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_service_contents .item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_service_contents .item + .item{
  margin-top: 80px;
}
.home_service_contents .item .box1{
  width: 39.28%;
}
.home_service_contents .item .box2{
  width: 59.82%;
  padding-top: 80px;
}

.home_service_contents .item:nth-child(even) .box1{
  order: 2;
}
.home_service_contents .item:nth-child(even) .box2{
  order: 1;
}

.home_service_contents .item .label{
  display: flex;
  justify-content: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}
.home_service_contents .item .label span{
  min-width: 132px;
  border-radius: 30px;
  padding: 6px 10px 10px;
  color: #FFF;
  text-align: center;
}
.home_service_contents .item .label.color1 span{
  background: #67bbcb;
}
.home_service_contents .item .label.color2 span{
  background: #f4be4f;
}
.home_service_contents .item .label.color3 span{
  background: #de5c56;
}
.home_service_contents .item .title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 20px;
}
.home_service_contents .item .title:after{
  content: "";
  display: block;
  height: 14px;
  background-image: url('/img/home/service_bdr.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 20px;
}
.home_service_contents .item .txt{
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
}

/* 活動方針 */
.home_activity_msg{
  font-size: 15px;
  line-height: 2.333;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}
.home_activity_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -55px;
}
.home_activity_items .item{
  width: 33.333%;
  padding: 0 55px;
}
.home_activity_items .item .inner{
  position: relative;
}
.home_activity_items .item .icon{
  position: absolute;
  top: -24%;
  z-index: 1;
}
.home_activity_items .item .icon.pos1{
  width: 51.666%;
}
.home_activity_items .item .icon.pos2{
  width: 55.333%;
  right: 0;
}
.home_activity_items .item .img{
  position: relative;
  z-index: 2;
}


.home_activity_items .item .txt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFF;
  text-align: center;
  padding: 10px 15px;
  position: absolute;
  bottom: 20px;
  left: -10px;
  right: -10px;
  z-index: 3;
}
.home_activity_items .item .txt.color1{
  background: #d78e98;
}
.home_activity_items .item .txt.color2{
  background: #d9985c;
}
.home_activity_items .item .txt.color3{
  background: #87b7dc;
}
.home_activity_items .item .txt:before,
.home_activity_items .item .txt:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_activity_items .item .txt:before{
  border-width: 25px 0 25px 15px;
  border-color: transparent transparent transparent #ffffff;
  left: 0;
}
.home_activity_items .item .txt:after{
  border-width: 25px 15px 25px 0;
  border-color: transparent #ffffff transparent transparent;
  right: 0;
}

/* 新着情報 */
.pg_home .news_cat_nav{
  padding-top: 30px;
}

.news_items_tab + .read_more{
  margin-top: 45px;
}

/* **********************************
 *  おひさまとは
 * ********************************* */
.pg_aboutus{
  
}
.pg_aboutus .section#sec1{
  
}
.pg_aboutus .section#sec2{
  margin-top: 100px;
}
.pg_aboutus .section#sec3{
  margin-top: 150px;
}

/*  */
.aboutus_msg_wrap{
  background-image: url('/img/home/about_bg.png');
  background-repeat: no-repeat;
  background-position: center top 65px;
}

.pg_aboutus .aboutus_msg_wrap{
  min-height: 550px;
}

.aboutus_msg_wrap .tt1{
  
}
.aboutus_msg_wrap .txt{
  font-size: 15px;
  line-height: 2.333;
  letter-spacing: 0.08em;
  text-align: center;
}

.aboutus_msg_wrap .read_more{
  margin-top: 35px;
}

/* 「おひさま」ってどんなところ？ */
.aboutus_place_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.aboutus_place_wrap .box1{
  width: 50%;
}
.aboutus_place_wrap .box2{
  width: 45.71%;
}
.aboutus_place_wrap .title{
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-image: url('/img/aboutus/check_bdr.png');
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.aboutus_place_wrap .title:before{
  content: "";
  width: 74px;
  height: 39px;
  background-image: url('/img/aboutus/check.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: -10px;
}
.aboutus_place_wrap .txt{
  font-size: 15px;
  line-height: 2.333;
  letter-spacing: 0.08em;
}
.aboutus_place_wrap .txt{
  
}

/* 対象 */
.aboutus_target_wrap{
  background-image: url('/img/aboutus/bg2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10px;
  margin-top: 50px;
  border-radius: 10px;
}
.aboutus_target_wrap .inner{
  padding: 15px 45px;
  border: 3px solid #FFF;
  border-radius: 10px;
  position: relative;
}
.aboutus_target_wrap .inner:before{
  content: "";
  width: 142px;
  height: 131px;
  background-image: url('/img/aboutus/icon1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  bottom: calc(100% + 2px);
  left: -10px;
}
.aboutus_target_wrap .txt{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.933;
  letter-spacing: 0.08em;
  color: #FFF;
}

/* 「おひさま」ができること */
.aboutus_cando_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -58px;
  padding-top: 15px;
}
.aboutus_cando_items .item{
  width: 33.333%;
  padding: 0 58px;
}
.aboutus_cando_items .item:nth-child(n+4){
  margin-top: 40px;
}
.aboutus_cando_items .item .inner{
  /*padding-right: 20px;*/
}
.aboutus_cando_items .item .img{
  margin-bottom: 5px;
}
.aboutus_cando_items .item .title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 5px;
  margin-left: 20px;
}
.aboutus_cando_items .item .txt{
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-left: 25px;
}


/* **********************************
 *  療育内容
 * ********************************* */
.pg_service{
  
}
.pg_service .section#sec1{
  
}
.pg_service .section#sec2{
  margin-top: 50px;
}
.pg_service .section#sec3{
  margin-top: 140px;
}

/* ポイント */
.service_points_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: 'Zen Maru Gothic', sans-serif;
  padding-top: 10px;
  margin-bottom: 30px;
}
.service_points_wrap .circle{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  font-size: 30px;
  color: #FFF;
}
.service_points_wrap .circle.color1{
  background: #67bbcb;
}
.service_points_wrap .circle.color2{
  background: #f4be4f;
}
.service_points_wrap .circle.color3{
  background: #de5c56;
}
.service_points_wrap .cross{
  font-size: 32px;
  padding: 0 16px;
}

.service_points_msg{
  font-size: 15px;
  line-height: 2.333;
  letter-spacing: 0.08em;
  text-align: center;
}

/**/
.service_check_wrap{
  padding-top: 65px;
  padding-bottom: 65px;
  position: relative;
}
.service_check_wrap:before{
  content: "";
  width: 100vw;
  background: #fafafa;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 0;
}
.service_check_wrap:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 54px 46px 0 46px;
  border-color: #fafafa transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.service_check_wrap .inner{
  position: relative;
  z-index: 1;
  background: #FFF;
  border-radius: 185px;
  padding: 70px 30px 70px;
  text-align: center;
}
.service_check_wrap .title{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 45px;
}
.service_check_wrap .txt{
  display: inline-block;
}
.service_check_wrap .list{
  display: inline-block;
  padding-left: 10px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: left;
}
.service_check_wrap .list li{
  padding-left: 35px;
  position: relative;
}
.service_check_wrap .list li + li{
  margin-top: 10px;
}
.service_check_wrap .list li:before{
  content: "\f00c";
  color: #ff4500;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.service_check_msg{
  font-size: 18px;
  line-height: 2.222;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 85px;
}
.service_check_msg p{
  display: inline;
  border-bottom: 1px dashed #ff4500;
  padding-bottom: 3px;
}

/* 療育カテゴリ */
.service_category_wrap{
  display: flex;
  flex-wrap: wrap;
  
}
.service_category_wrap .box1{
  width: 50%;
}
.service_category_wrap .box2{
  width: 50%;
}
.service_category_wrap .box1 .inner{
  padding-right: 15.17%;
}
.service_category_wrap .box2 .inner{
  padding-left: 15.17%;
}
.service_category_wrap .box1 .title{
  padding-right: 15.17%;
}
.service_category_wrap .box2 .title{
  padding-left: 15.17%;
}
.service_category_wrap .title{
  display: flex;
  align-items: center;
  height: 150px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}
.service_category_wrap .title:before{
  content: "";
  width: 25px;
  height: 4px;
  background: #FFF;
  border-radius: 2px;
  margin-right: 15px;
}
.service_category_wrap .title:after{
  content: "";
  width: 50vw;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.service_category_wrap .box1 .title:after{
  background: #edc6bf;
  right: 0;
}
.service_category_wrap .box2 .title:after{
  background: #fcf5a5;
  left: 0;
}
.service_category_wrap .title span{
}
.service_category_wrap .title span:before{
  
}

.service_category_wrap .img{
  margin-top: -30px;
  margin-bottom: 15px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.service_category_wrap .txt{
  font-size: 15px;
  line-height: 1.866;
  letter-spacing: 0.08em;
}
.service_category_wrap .title{
  
}

/* 療育プログラム内容 */
.service_program_wrap{
  margin-top: 130px;
}
.service_program_msg{
  font-size: 15px;
  line-height: 1.933;
  letter-spacing: 0.08em;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 40px;
}

.service_program_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -17.5px;
}
.service_program_items .item{
  width: 25%;
  padding: 0 17.5px;
}
.service_program_items .item:nth-child(n+5){
  margin-top: 100px;
}
.service_program_items .item .inner{
  
}
.service_program_items .item .img{
  border: 3px solid;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}
.service_program_items .item.color1 .img{
  border-color: #eee189;
}
.service_program_items .item.color2 .img{
  border-color: #bc9cf2;
}
.service_program_items .item.color3 .img{
  border-color: #f29c9f;
}
.service_program_items .item.color4 .img{
  border-color: #f68142;
}
.service_program_items .item.color5 .img{
  border-color: #8cad08;
}
.service_program_items .item.color6 .img{
  border-color: #04b79c;
}
.service_program_items .item.color7 .img{
  border-color: #407bcc;
}
.service_program_items .item .title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  /*height: calc(2em * 1.45);*/
  margin-bottom: 5px;
}
.service_program_items .item .txt{
  font-size: 15px;
  line-height: 1.933;
  padding-left: 10px;
}

/* **********************************
 *  一日のスケジュール
 * ********************************* */




/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  
}
.pg_company .section#sec3{
  
}


/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{
  
}
.pg_contact .section#sec1{
  
}
.pg_contact .section#sec2{
  
}
.pg_contact .section#sec3{
  
}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}



/* 連絡先 */
.contact_info{
  background: #ff2700;
  text-align: center;
  padding: 28px 20px 25px;
  margin-bottom: 65px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #FFF;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 22px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #ff2700;
  color: #FFFFFF;
  padding: 5px 18px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  vertical-align: middle;
  font-weight: bold;
}
.contact_info .box2 .tel a{
  display: block;
  letter-spacing: 0.02em;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* コンタクトフォーム */
.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 10px 15px 10px 20px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 310px;
  letter-spacing: 0.08em;
}
.contact_form td{
  font-size: 15px;
  letter-spacing: 0.16em;
}
.contact_form th.vtop{
  vertical-align: top;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 12px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}

/* MW WP Formの規定クラス */
/* checkbox, radio */
.mwform_check_box_wrap{
  padding: 6px 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item,
.mw_wp_form .mwform-checkbox-field.horizontal-item{
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
}

/**/
.mw_wp_form_confirm .addr_auto{
  display: none;
}
.mw_wp_form_confirm .addr_auto_box .zipcode i{
  background: none;
  padding: 0;
  font-size: inherit;
}

.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
  
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{
  
}

.contact_form_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 80px;
}
.contact_form_addr dd{
  width: calc(100% - 80px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}




.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{
  
}

.addr_auto_box button{
  margin-left: 20px;
}


.contact_form td input ,
.contact_form td textarea ,
.contact_form td select {
  padding: 7px 10px;
  max-width: 100%;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td textarea{
  height: 280px;
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}


.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 5px 5px;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */



.contact_form_acceptance{
  font-size: 17px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 40px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}


/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 35px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 12px 10px;
  width: 315px;
  margin: 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


/* **********************************
 *  プライバシーポリシー
 * ********************************* */
.pg_contact .privacy{
  margin-top: 105px;
}

.privacy_tt{
  text-align: center;
  margin-bottom: 55px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{
  
}
.privacy_items .item{
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;
  font-weight: 500;
  border-left: 6px solid #f0f0f0;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  line-height: 1.875;
}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{
  
}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


#wpmem_login{
  margin: 0 auto;
}
#wpmem_login legend{
  display: none;
}
#wpmem_login .form{
  display: block;
  /*width: 80%;*/
  margin: 0 auto;
}

.wpmem_msg{
  margin: 0 auto;
}