@charset "UTF-8";
/*
Theme Name: MY-THEME
*/

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

/* 基本フォント: ゴシック */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body{
  font-family:  '游ゴシック体','Yu Gothic', 'YuGothic', 'Noto Sans Japanese', 'Hiragino Kaku Gothic Pro', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

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

a{
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}
a:hover{
  text-decoration: none;
  opacity: 0.7;
}

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

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

/* 動画埋め込みのレスポンシブ対応 */
.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%;
}



/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
}
.container{
  width: 1020px;
  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_section{
  width: 100%;
  margin-bottom: 50px;
  padding: 0 0; 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  padding: 15px 0;
}


/* 共通の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 .hdr_logo{
  padding: 5px 0 5px 30px;
  display: flex;
  float: left;
}
header .hdr_logo .logo img{
  height: 76px;
  font-size: 10px;
}
header .hdr_contact{
  float: right;
}
header .hdr_contact a{
  font-size: 17px;
  width: 175px;
  display: block;
  background: #BBD659;
  color: #fff;
  text-align: center;
  padding: 19px 0;
  position: relative;
}
header .hdr_contact a:before{
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0 0 84px 25px;
  border-color: transparent transparent #BBD659 transparent;
  position: absolute;
  top: 0;
  left: -25px;
}
header .hdr_contact a i{
  display: block;
  padding-bottom: 5px;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.gnav > ul{
  padding: 30px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 18px;
}
.gnav > ul > li{
  width: auto;
  position: relative;
}
.gnav > ul > li.sp{
  display: none;
}
.gnav li a{
  color: #393f4c;
  text-decoration: none;
  display: block;
  padding: 0 10px;
  font-weight: bold;
}

.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: 500px;
  
  background: #CCC;
  /*background-image: url('/img/mv.jpg');*/
  /*background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mv .mv_box{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}*/


/* **********************************
 *  フッター
 * ********************************* */
footer{

}

footer .ftr1{
  padding: 40px 0;
  background: #fff;
}
footer .ftr1 .ftr_links{
  display: flex;
  justify-content: space-between;
}
footer .ftr1 .ftr_links li{
  font-size: 16px;
  text-align: center;
}
footer .ftr1 .ftr_links li a{
  color: #BBD659;
  font-weight: bold;
}
footer .ftr1 .ftr_links li a:before{
  content: "";
  display: inline-block;
  padding-right: 10px;
  background: url(../../../img/top/arrow1_2x.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
}

footer .ftr2{
  padding: 80px 0;
  background: #BBD659;
  color: #fff;
}
footer .ftr2 .flex{
  font-size: 16px;
  line-height: 30px;
  align-items: center;
  justify-content: space-between;
}
footer .ftr2 .box{
  width: 30%;
  display: flex;
  justify-content: center;
}
footer .ftr2 .btn{
  padding: 5px 0;
  max-width: 280px;
  width: 100%;
  border: 2px solid #fff;
  text-align: center;
  display: block;
  margin-left: auto;
}
footer .ftr2 .btn a{
    display: block;
}

footer .copy{
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 17px;
  
  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: 37%;
}
.footer_fix ul li.contact a{
  background: #35abe3;
}
.footer_fix ul li.tel a{
  background: #ffc0c2;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li.btn2 a{
  background: #F0E68C;
  color: #555d66;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #4072b3;
  color: #FFF;
}

.footer_fix ul li.btn2 a:hover{
  opacity: 1;
}


/* 検索フォーム */
.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_list{
  padding: 0 0;
}
.post_list .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
}
.post_list .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_list .item .img{
  
}
.post_list .item .date{
  width: 100px;
}
.post_list .item .category{
  width: 150px;
  padding: 0 10px;
}
.post_list .item .category span{
  display: block;
  background: #CCC;
  text-align: center;
  padding: 3px;
}
.post_list .item .title{
  font-weight: normal;
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_list .item .title a{
  display: block;
}

.post_list .item .excerpt{
  
}
.post_list .item .more{
  
}


/* ページ送り */
.pagination{
  text-align: center;
}
.pagination .page-numbers{
  display: inline-block;
  font-size: 18px;
  border: 1px solid #CCC;
  padding: 5px 10px;
  margin-bottom: 5px;
  color: #1e1e1e;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #EEE;
}

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

/* コンタクトフォーム */
.contact_form{
  width: 100%;
}
.contact_form tr{
  border-bottom: 1px dashed #999;
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #eb6100;
  font-size: 17px;
  font-weight: normal;
  float: right;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}
.contact_form dl dt{
  width: 90px;
}
.contact_form dl dd{
  width: calc(100% - 90px);
}
.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #13b5b1;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}



/* **********************************
 *  メイン
 * ********************************* */
.home .main{
  padding: 100px 0 0;
}
.main{
  min-height: 500px;
  padding: 0 0 50px;
}


/* **********************************
 *  トップページ
 * ********************************* */
.home .mv{
  height: 763px;
  background: url(http://cocoro.kiddotest2.xyz/wp-content/uploads/2023/01/66858758.jpg) no-repeat center;
  background-size: cover;
  text-align: left;
  position: relative;
}
.home .mv .mv_box {
  max-width: 840px;
  position: absolute;
  right: 50px;
  bottom: 80px;
  text-align: left;
  font-size: 17px;
  line-height: 28px;
  color: #1980b0;
  text-shadow: 0 0 8px #fff, 
    0 0 8px #fff, 
    0 0 8px #fff, 
    0 0 8px #fff;
}
.home .mv .large{
  font-size: 44px;
  margin-bottom: 50px;
}
.home .mv .scroll{
  font-size: 17px;
  color: #BBD659;
  font-weight: bold;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1px;
}
.home .mv .scroll a:before{
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: url(../../../img/top/arrows.png) no-repeat center top;
  margin: 0 auto 10px;
}

.home .bg {
    padding: 80px 0;
    /* background: url(../../../img/top/bg1.jpg) no-repeat top center; */
    background: #bbd6593d;
}
.flex{
  display: flex;
}
.home .worries{
  background-size: cover;
}
.home .worries .flex.n1{
  margin: 0 0 50px;
}
.home .worries .flex .txt{
  color: #191a1c;
}
.home .worries .flex.n1 .txt{
  width: 60%;
  letter-spacing: 0.28px;
}
.home .worries .flex.n1 .img{
  width: 40%;
  padding-left: 20px;
  text-align: right
}
.home .worries .flex .txt h4{
  font-size: 23px;
  padding-bottom: 5px;
  margin-bottom: 40px;
  font-weight: normal;
  border-bottom: 2px solid #191a1c;
}
.home .worries .flex .txt p{
  font-size: 16px;
  line-height: 35px;
}
.home .worries .flex.n2{
  justify-content: space-between;
}
.home .worries .flex.n2 .point{
  width: 30%;
}
.home .worries .flex.n2 .point .icon{
  margin-right: 5%;
  width: 30%;
}
.home .worries .flex.n2 .point .txt{
  width: 65%;
}
.home .worries .flex.n2 .point .txt p{
  line-height: 27px;
}

/* サービス内容 */
.home .service .ttl{
  font-size: 26px;
  margin-bottom: 50px;
  text-align: center;
  color: #191a1c;
}

.home .service .ttl span{
  font-size: 16px;
  padding: 5px 0 5px 0px;
  display: block;
  font-weight: normal;
}
.home .service .container > .txt{
  line-height: 25px;
  max-width: 425px;
  margin: 0 auto 50px;
  padding: 30px 50px;
  text-align: center;
  border-top: 2px solid #191a1c;
  border-bottom: 2px solid #191a1c;
  color: #191a1c;
}
.home .service .flex{
  flex-wrap: wrap;
  justify-content: space-between;
}
.home .service .flex .box{
  width: 48.5%;
  margin-bottom: 30px;
  color: #191a1c;
}
.home .service .flex .box h3{
  font-size: 20px;
  margin-bottom: 20px;
}
.home .service .flex .box .img{
  margin-bottom: 20px;
}
.home .service .flex .box .txt,
.home .service .flex .box .btn{
  font-size: 17px;
  line-height: 23px;
}
.home .service .flex .box .btn{
  margin: 10px 0;
  font-weight: bold;
}
.home .service .flex .box .btn:before{
  content: "";
  display: inline-block;
  padding-right: 10px;
  background: url(../../../img/top/arrow1_2x.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
}

/* お知らせ */
.home .news .ttl,
.home .blog .ttl{
  font-size: 24px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-align: left;
  color: #191a1c;
  border-bottom: 2px solid #191a1c;
}
.home .news .ttl span,
.home .blog .ttl span{
  font-size: 17px;
  padding: 5px 10px;
  display: inline-block;
  font-weight: normal;
}
.center{
  text-align: center;
}
.home .news,
.home .blog{
  padding-bottom: 120px;
  margin-bottom: 0;
}
.home .news .container,
.home .blog .container{
  position: relative;
}
.home .news ul{
  background: #fff;
}
.home .news li a{
  font-size: 17px;
  padding: 20px 20px;
  display: flex;
  justify-content: flex-start;
  background: url(../../../img/top/arrow1_2x.png) no-repeat 98% center;
  background-size: 12px 12px;
}
.home .news li a .date{
  width: 20%;
  display: inline-block;
}
.home .news li a .title{
  width: 70%;
  color: #191a1c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home .news .btn,
.home .blog .btn{
  font-size: 17px;
  position: absolute;
  right: 10px;
  top: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}
.home .news .btn a:before,
.home .blog .btn a:before{
  content: "";
  display: inline-block;
  padding-right: 10px;
  background: url(../../../img/top/arrow1_2x.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
}

/* 採用情報 */
.home .recruit{
  padding: 80px 0;
  margin-bottom: 0;
  background: url(../../../img/top/img6.jpg) no-repeat top right; 
}
.home .recruit .clearfix{
  min-height: 250px;
  margin-bottom: 60px;
  color: #191a1c;
  position: relative;
}
.home .recruit .clearfix h2{
  font-size: 12px;
  letter-spacing: 3px;
  position: absolute;
  bottom: 0;
}
.home .recruit .clearfix h2 span{
  font-size: 26px;
  padding-right: 10px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: inline-block;
}
.home .recruit .clearfix .large{
  font-size: 26px;
  line-height: 48px;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  text-shadow: 0 0 8px #fff, 
    0 0 8px #fff, 
    0 0 8px #fff, 
    0 0 8px #fff, 
    0 0 8px #fff, 
    0 0 8px #fff;
}
.home .recruit .flex{
  font-size: 17px;
  line-height: 28px;
}
.home .recruit .flex .txt{
  width: 63%;
}
.home .recruit .flex .btn{
  width: 37%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home .recruit .flex .btn a{
  padding: 5px 0;
  display: block;
  max-width: 204px;
  width: 100%;
  text-align: center;
  border: 2px solid #191a1c;
}

/* ブログ */
.home .blog .flex{
  align-items: stretch;
}
.home .blog .listbox{
  align-items: stretch;
}
.home .blog .item{
  width: 23%;
  min-height: 282px;
  background: #f7f7f7;
}
.home .blog .item .img{
  width: 100%;
  height: 141px;
  background: #adadad;
}
.home .blog .item .txt{
  font-size: 17px;
  line-height: 23px;
  padding: 10px;
  letter-spacing: 1px;
}
.home .blog .item .date{
  font-size: 11px;
}
.home .blog .item .title{
  font-size: 17px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.kaisyamei {
    font-size: 18px;
    line-height: 40px;
    color: #bbd659;
    width: 50%;
	font-family: mincho;
	font-weight: bold;
}

@media (max-width: 767px){
.kaisyamei {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 2;
	font-family: mincho;
	font-weight: bold;
}
}	

@media screen and (min-width: 767px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 767px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}