@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', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #383838;
}

/* 基本フォント: 明朝 */
/**/
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;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1120px;
  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;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

/* 共通の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:  0;
  border-top: 8px solid #0cceb5;
  border-bottom: 1px solid #CCC;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFF;
  z-index: 2;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 170px 20px 15px;
  position: relative;
}
header .hdr1 .hdr_logo{
  /*width: 225px;*/
  width: 260px;
  line-height: 1;
}
header .hdr1 .hdr_contact{
  position: absolute;
  top: 0;
  right: 5px;
}
header .hdr1 .hdr_contact a{
  
}
header .hdr1 .hdr_contact a+a{
  margin-left: 5px;
}

/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.gnav > ul > li{
  width: 100%;
  position: relative;
  padding: 0 20px;
}
.gnav > ul > li.menu-item-has-children> a:after{
  content: "\f107";
  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: 5px;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #0cceb5;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}
.gnav .sub-menu a{
  color: #FFF;
}


.mv{
  position: relative;
  height: 768px;
  
  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;
}
.mv .mv_box{
  text-align: right;
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  background: #f6f2dc;
  margin-top: 150px;
}

.ftr_contact_wrap{
  display: flex;
}
.ftr_contact_wrap .box1,
.ftr_contact_wrap .box2{
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 50%;
  height: 230px;
  position: relative;
}
.ftr_contact_wrap .box1{
  
}

.ftr_contact_wrap .box2{
  
}
.ftr_contact_wrap .box1 .inner,
.ftr_contact_wrap .box2 .inner{
  text-align: center;
  position: relative;
  z-index: 1;
}

.ftr_contact_wrap .box1:after,
.ftr_contact_wrap .box2:after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}
.ftr_contact_wrap .box1:after{
  background: #ff9748;
  right: 0;
  left: -2000px;
}
.ftr_contact_wrap .box2:after{
  background: #0cceb5;
  left: 0;
  right: -2000px;
}
.ftr_contact_wrap h4{
  font-size: 32px;
  font-weight: 500;
  color: #fff335;
}
.ftr_contact_wrap h4 em{
  display: block;
  font-size: 17px;
  font-weight: 700;
  font-family: "Lato";
  color: #FFF;
}
.ftr_contact_wrap .read_more{
  margin-top: 30px;
}
.ftr_contact_wrap .read_more a{
  width: 285px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 500;
  background: #FFF;
  color: #ff9748;
  padding: 12px 0;
}
.ftr_contact_wrap .box1 .read_more a{
  color: #ff9748;
}
.ftr_contact_wrap .box2 .read_more a{
  color: #0cceb5;
}



footer .ftr1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-top: 100px;
}
footer .ftr1 .box1{
  width: 300px;
}
footer .ftr1 .box2{
  width: 700px;
}

footer .ftr_links{
  display: flex;
  justify-content: flex-end;
}
footer .ftr_links + .ftr_links{
  margin-top: 15px;
}
footer .ftr_links li{
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 0 20px;
}
footer .ftr_links li:first-child{
}

footer .ftr2{
  
}
footer .ftr2 .container{
  display: flex;
  justify-content: space-between;
}
footer .ftr2 .box1{
  
}
footer .ftr2 .box2{
  text-align: right;
}

footer .ftr3{
  background: #d6fdf8;
  padding: 40px 0;
  text-align: center;
  line-height: 1.875;
}
footer .ftr3 .txt1{
  
}
footer .ftr3 .txt2{
  color: #ed1919;
  font-size: 12px;
  margin-top: 10px;
}

footer .copy{
  background: #0cceb5;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
}
footer .copy a{
  /*color: #111;*/
}

.ftr_links_btns{
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.ftr_links_btns li{
  
}
.ftr_links_btns li+li{
  margin-left: 8px;
}
.ftr_links_btns li a{
  width: 290px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  letter-spacing: 0;
}
.ftr_links_btns li a.color1{
  background: #ff9748;
}
.ftr_links_btns li a.color2{
  background: #0cceb5;
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #d6fdf8;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;  
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 82%;
}
.footer_fix ul li.btn2{
  width: 18%;
  display: flex;
}
.footer_fix ul li.btn1 img{
  max-height: 66px;
}
.footer_fix ul li a{
  width: 100%;
  display: block;
  padding: 10px;
  background: #0cceb5;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li.btn1 a{
  padding: 2px;
  background: #1dcd00;
}


/* 検索フォーム */
.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;
  z-index: 1;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  margin-right: 10px;
  /*font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  
  vertical-align: middle;
  border-radius: 5px;*/
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  font-family: "Lato";
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.contact_info .box2 .tel a{
  display: block;
  
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-weight: 700;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
}
.contact_form tr{
  border-top: 1px solid #b6d8d4;
}
.contact_form tr:last-child{
  border-bottom: 1px solid #b6d8d4;
}
.contact_form tr:nth-child(odd){
  background: #d6fdf8;
}

.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #ec0000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.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 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: 500px;
  max-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="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,
.contact_form td .wpcf7-form-control-wrap[class$="_zipcode"]{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before,
.contact_form td .wpcf7-form-control-wrap[class$="_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;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 5px;
}

.contact_form td .wpcf7-checkbox, 
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.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_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.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 input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


/* サイトマップ */
.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;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt {
}
.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;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;
  
  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  
}
.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{
  list-style: none;
  margin-top: 10px;
}
.privacy_items .item ol li{
  text-indent: -1em;
  padding-left: 1em;
}

.breadcrumb_wrap{
  background: #f2f2f2;
  padding: 10px 20px;
  margin-bottom: 200px;
}
.breadcrumb{
  display: flex;
  list-style: none;
  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;
  color: #0cceb5;
}
.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: 0 0 50px;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  width: 380px;
  /*height: 146px;*/
  padding: 30px 10px;
  background: rgba(39,39,39,0.4);
  color: #FFF;
  
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #e3ffe6;
  margin-top: 10px;
}

.tt2{
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  line-height: 1.4;
}
.tt2 em.s1{
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #0cceb5;
}
.tt2 em.s2{
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Lato";
  color: #ff9748;
  margin-top: 15px;
}
.tt2 em.s2:before{
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff9748;
  margin: 0 auto 10px;
}


.tt3{
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
.tt3 em{
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-family: "Lato";
  color: #ff9748;
  margin-top: 20px;
}
.tt3 em:before{
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ff9748;
  margin: 0 auto 10px;
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

/* 詳しく見る サンプル */
.read_more{
  
}
.read_more a{
  display: block;
  width: 330px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #ff9748;
  color: #FFF;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  /*content: "\f105";*/
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

ul.read_more{
  display: flex;
}
ul.read_more li{
  
}
ul.read_more li+li{
  margin-left: 5px;
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  background-image: url('/img/home/bg1_new.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.pg_home .section#sec1 .container{
  height: 590px;
  padding-bottom: 110px;
}
.pg_home .section#sec2{
  margin-top: 120px;
}
.pg_home .section#sec3{
  margin-top: 120px;
}
.pg_home .section#sec4{
  margin-top: 155px;
  padding-bottom: 180px;
  background-image: url('/img/home/bg4.png');
  background-size: auto;
  background-repeat: repeat;
}
.pg_home .section#sec5{
  background: #d6fdf8;
  background-image: url('/img/home/bg2.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 150px;
  margin-top: 280px;
}
.pg_home .section#sec6{
  background: #f6f2dc;
  margin-top: 200px;
  padding-bottom: 80px;
  background-image: url('/img/home/bg3.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  
}
.pg_home .section#sec7{
  margin-top: 200px;
  padding-bottom: 110px;
}

.pg_home .section#sec8{
  background: #d6fdf8;
  padding-top: 85px;
  padding-bottom: 170px;
}
.pg_home .section#sec9{
  background: #f6f2dc;
  padding-top: 90px;
  padding-bottom: 50px;
}
.pg_home .section#sec10{
  padding-top: 60px;
  /*padding-bottom: 175px;*/
}


.home_msg_box{
  /*width: 480px;*/
  /*width: 43.63%;*/
  padding-top: 80px;
  text-align: center;
}
.home_msg_box .title{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.55;
  color: #f07417;
}
.home_msg_box .txt1{
  margin-top: 25px;
}
.home_msg_box .txt2{
  line-height: 1.875;
  margin-top: 30px;
}
.home_msg_box .txt3{
  font-size: 12px;
  color: #ed1919;
  margin-top: 15px;
}

/**/
.home_movie_tt{
  text-align: center;
  margin-top: 135px;
  margin-bottom: 40px;
}
.home_movie_box .responsive_video{
  width: 86%;
  margin: 0 auto;
}


/* まるなげ賃貸ってなに？ */
.home_about_tt1{
  font-size: 59px;
  font-weight: 900;
  /*letter-spacing: 0.05em;*/
  text-align: center;
  margin-bottom: 30px;
}
.home_about_tt1 em{
  color: #ff9748;
}
.home_about_tt1 span{
  font-size: 42px;
}

.home_about_txt1{
  font-size: 21px;
  line-height: 1.76;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 80px;
}

.home_about_why{
  margin: 60px 0 80px;
  padding: 60px 0 30px;
  position: relative;
}
.home_about_why .txt{
  text-align: right;
}
.home_about_why .txt .ttl{
  margin-bottom: 15px;
  padding-right: 70px;
}
.home_about_why .txt .text{
  font-size: 20px;
  padding: 35px 40px;
  background: #d6fdf8;
  font-weight: 500;
  text-align: left;
}
.home_about_why .txt .text p{
  width: 66%;
  margin-left: auto;
  letter-spacing: 0.05em;
  line-height: 1.85;
}
.home_about_why .img{
  width: 33%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home_about_osusume{
  background: #f6f2dc;
  border: 4px solid #ff9748;
  border-radius: 10px;
  margin-top: 60px;
}
.home_about_osusume .title{
  background: #ff9748;
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  /*letter-spacing: 0.05em;*/
  text-align: center;
  padding-bottom: 13px;
}
.home_about_osusume .title:after{
  content: "";
  display: block;
  background: #FFF;
  width: 815px;
  max-width: 100%;
  height: 3px;
  margin: 0 auto;
}
.home_about_osusume .items_wrap{
  padding: 30px 35px;
}
.home_about_osusume .items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.home_about_osusume .items li{
  width: 100%;
  padding: 0 10px;
  background-image: url('/img/home/osusume_bg.png');
  border-radius: 10px;
  font-size: 28px;
  font-weight: 900;
  color: #FFF;
}
.home_about_osusume .items li:nth-child(n+2){
  margin-top: 30px;
}
.home_about_osusume .items li span{
  display: block;
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
  padding: 13px 0;
  /*letter-spacing: -0.05em;*/
  /*text-shadow: 0 0 5px #ff9748, 0 0 5px #ff9748, 0 0 5px #ff9748, 0 0 5px #ff9748, 0 0 5px #ff9748, 0 0 5px #ff9748, 0 0 5px #ff9748, 0 0 5px #ff9748;*/
  text-shadow: 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205, 0 0 4px #b95205;
}

.home_about_tt2{
  font-size: 39px;
  font-weight: 700;
  color: #0cceb5;
  margin-top: 60px;
  margin-bottom: 70px;
  text-align: center;
}
.home_about_txt2{
  font-size: 21px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 80px;
}
.home_about_txt2 em{
  color: #ff9748;
  font-weight: 700;
}
.home_about_txt2 strong{
  display: inline-block;
  font-weight: 700;
  position: relative;
}
.home_about_txt2 strong:after{
  content: "";
  display: block;
  background: #ffdf2d;
  height: 0.666em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/**/
.home_start_tt{
  color: #f5781a;
  font-size: 42px;
  letter-spacing: 0.05em;
  text-align: center;
  
}
.home_start_tt em{
  font-size: 54px;
}
.home_start_bg{
  text-align: center;
}

/* 比較 */
.home_hikaku_tt{
  text-align: center;
  margin-bottom: 70px;
}
.home_hikaku_tt img{
  max-width: 90%;
}
.home_hikaku_wrap{
  background: #FFF;
  border-radius: 10px;
  padding: 65px 15px;
  text-align: center;
  position: relative;
}
.home_hikaku_wrap + .home_hikaku_wrap{
  margin-top: 80px;
}
.home_hikaku_wrap.bdr{
  border: 3px solid #0cceb5;
}
.home_hikaku_wrap .title{
  width: 285px;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 700;
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home_hikaku_wrap .title.color1{
  background: #000;
  color: #FFF;
}
.home_hikaku_wrap .title.color2{
  background: #0cceb5;
  color: #FFF;
}
.home_hikaku_wrap .txt1{
  font-size: 24px;
  font-weight: 700;
  color: #16497f;
  text-align: center;
  margin-top: 75px;
  letter-spacing: 0.01em;
}
.home_hikaku_wrap .txt2{
  width: 890px;
  max-width: 90%;
  margin: 40px auto 0;
  padding: 12px 10px;
  background: #e60012;
  border-radius: 10px;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.01em;
}
.home_hikaku_wrap .txt2 strong{
  color: #fffc00;
}

/* 利用の流れ */
.home_flow_tt{
  text-align: center;
}
.home_flow_tt img{
  max-width: 90%;
}
.home_flow_wrap{
  text-align: center;
  margin: 50px 0 60px;
  padding: 30px 0; 
  background-image: url('/img/home/flow_bg.jpg');
}


/* その他のサービス */
.home_other_service_tt{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 102px;
  padding-bottom: 27px;
  background-image: url('/img/tt_bg1.png');
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 42px;
  font-weight: 700;
  color: #fff335;
  margin-top: -30px;
  margin-bottom: 60px;
  -webkit-transform: translate(0, -30px);
  transform: translate(0, -30px);
}

.home_other_service{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.home_other_service .item{
  width: 33.333%;
  padding-left: 30px;
  padding-right: 30px;
}
.home_other_service .item:nth-child(n+4){
  margin-top: 30px;
}
.home_other_service .item .inner{
  height: 100%;
  border: 3px solid #0cceb5;
  border-radius: 14px;
  background: #FFF;
  position: relative;
}
.home_other_service .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.home_other_service .item .img img{
  margin-top: -10px;
}
.home_other_service .item .title{
  background: #0cceb5;
  color: #fff335;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  border-radius: 5px 5px 0 0 ;
  padding: 2px 0 8px;
}
.home_other_service .item .txt{
  padding: 0 10px;
  margin-top: 10px;
  min-height: 160px;
}
.home_other_service .item b{
  color: #ff9748;
}
.home_other_service .item .read_more{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.home_other_service .item .read_more a{
  width: 220px;
  max-width: 100%;
  background: #0cceb5;
  font-size: 17px;
  padding: 8px 0;
}

/* 選ばれる理由 */
.home_reason_tt{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 433px;
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  line-height: 1.26;
  color: #FFF;
}
.home_reason_tt em{
  width: 100%;
  margin-top: 10px;
  font-size: 22px;
  color: #e3ffe6;
}

.home_reason_items{
  margin-top: -90px;
}
.home_reason_items .item{
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
  border-radius: 10px;
  padding: 22px 0;
  /*filter: drop-shadow(1px 2px 2px #ccc);*/
  box-shadow: 0 0 3px 1px #CCC;
}
.home_reason_items .item + .item{
  margin-top: 50px;
}
.home_reason_items .item .box1{
  width: 36%;
}
.home_reason_items .item .box2{
  width: 64%;
  padding: 0 30px;
}

.home_reason_items .item .title{
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  color: #0cceb5;
  margin-bottom: 30px;
}
.home_reason_items .item .title:before{
  content: "";
  width: 82px;
  height: 72px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.home_reason_items .item .title.no1:before{
  background-image: url('/img/home/reason_icon1.png');
}
.home_reason_items .item .title.no2:before{
  background-image: url('/img/home/reason_icon2.png');
}
.home_reason_items .item .title.no3:before{
  background-image: url('/img/home/reason_icon3.png');
}

.home_reason_items .item .txt{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

/* お客様の声 */
.home_voice_tt{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 433px;
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  line-height: 1.26;
  color: #FFF;
}
.home_voice_tt em{
  width: 100%;
  margin-top: 10px;
  font-size: 22px;
  color: #e3ffe6;
}


.home_voice_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: -80px;
  margin-bottom: 80px;
}
.home_voice_items .item{
  width: 25%;
  padding-left: 5px;
  padding-right: 5px;
  
}
.home_voice_items .item:nth-child(n+5){
  margin-top: 30px;
}
.home_voice_items .item .inner{
  /*min-height: 450px;*/
  background: #FFF;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 0 3px 1px #CCC;
  height: 100%;
}

.home_voice_items .item .head{
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
.home_voice_items .item .head .box1{
  width: 23.09%;
}
.home_voice_items .item .head .box2{
  width: 70.10%;
}
.home_voice_items .item .icon:before{
  content: "";
  display: block;
  padding-top: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.home_voice_items .item .icon.icon1:before{
  /*background-image: url('/img/voice_icon1.png');*/
  background-image: url('/img/voice/icon1.png');
}
.home_voice_items .item .icon.icon2:before{
  /*background-image: url('/img/voice_icon2.png');*/
  background-image: url('/img/voice/icon2.png');
}


.home_voice_items .item .title{
  font-size: 22px;
  font-weight: 700;
  color: #0cceb5;
  line-height: 1.34;
}
.home_voice_items .item .name{
  font-size: 16px;
  font-weight: 700;
  color: #ff9748;
}
.home_voice_items .item .txt{
  font-size: 15px;
}
.home_voice_items .item .txt strong{
  color: #ed1919;
}

.home_voice_items + .read_more{
  
}
.home_voice_items + .read_more a{
  width: 290px;
  max-width: 100%;
  font-size: 18px;
}




/* リンク */

.home_pglink_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.home_pglink_items .item{
  width: 33.333%;
  padding-left: 30px;
  padding-right: 30px;
}
.home_pglink_items .item:nth-child(n+4){
  margin-top: 30px;
}
.home_pglink_items .item .inner{
  height: 100%;
}
.home_pglink_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.home_pglink_items .item .box{
  background: #d6fdf8;
  padding: 40px 50px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.home_pglink_items .item .box:before{
  content: "";
  display: block;
  border: 1px dashed #0cceb5;
  border-radius: 6px;
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  /*z-index: -1;*/
}
.home_pglink_items .item .title{
  font-size: 24px;
  font-weight: 700;
}

.home_pglink_items .read_more{
  margin-top: 20px;
}
.home_pglink_items .read_more a{
  font-size: 17px;
  padding: 8px 0;
  background: #0cceb5;
}


/* **********************************
 *  申込みの流れ
 * ********************************* */
.pg_flow{
  
}
.pg_flow .section#sec1{
  
}

.flow_msg{
  /*font-size: 22px;*/
  /*font-weight: 500;*/
  text-align: center;
  margin-bottom: 70px;
}

.flow_items{
  
}
.flow_items .item{
  display: flex;
  justify-content: space-between;
}
.flow_items .item{
  background-image: url('/img/flow/bdr_bg1.png'), url('/img/flow/bdr_bg2.png');
  background-position: center top, center bottom;
  background-repeat: repeat-x;
  padding: 30px 0;
}
.flow_items .item .box1{
  display: flex;
  align-items: center;
  width: 20%;
  padding: 0 10px;
}
.flow_items .item .box2{
  width: 40.45%;
}
.flow_items .item .box3{
  width: 34.72%;
}
.flow_items .item .title{
  font-size: 30px;
  font-weight: 700;
  color: #ff9748;
  border-bottom: 2px solid #ffc89d;
  margin-bottom: 10px;
}
.flow_items .item .txt{
  
}
.flow_items .item .txt_s{
  font-size: 13px;
  margin-top: 10px;
}

.flow_items .item .read_more{
  margin-top: 25px;
}
.flow_items .item .read_more a{
  width: 220px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  margin: 0;
  letter-spacing: 0;
}

.flow_items .down{
  text-align: center;
  padding: 65px 0;
}

/* **********************************
 *  お客様の声
 * ********************************* */
.pg_voice{
  
}
.pg_voice .section#sec1{
  
}

.voice_msg{
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}

.voice_items{
  
}
.voice_items .item{
  display: flex;
  background: #d6fdf8;
  padding: 20px 0;
}
.voice_items .item+.item{
  margin-top: 40px;
}
.voice_items .item .box1{
  width: 21.36%;
  text-align: center;
}
.voice_items .item .box2{
  width: 78.64%;
  padding-left: 25px;
  padding-right: 25px;
}

.voice_items .item .icon{
  
}
.voice_items .item .area{
  font-weight: 500;
}
.voice_items .item .prof{
  font-size: 18px;
  font-weight: 700;
  color: #ff9748;
}
.voice_items .item .txt{
  background: #FFF;
  padding: 35px 50px;
  border: 1px solid #0cceb5;
  border-radius: 10px;
  line-height: 2;
  height: 100%;
  position: relative;
}
.voice_items .item .txt:before{
  content: "";
  width: 21px;
  height: 36px;
  background-image: url('/img/voice/comment_arrow.png');
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}
.voice_items .item .txt strong{
  color: #ed1919;
}

/* **********************************
 *  
 * ********************************* */
.pg_qa{
  
}
.pg_qa .section#sec1{
  
}

.qa_nav{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  margin-bottom: 115px;
}
.qa_nav li{
  width: 25%;
  padding: 0 12px;
}
.qa_nav li:nth-child(n+5){
  
}
.qa_nav li a{
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #0cceb5;
  text-align: center;
  border: 1px solid;
  border-radius: 8px;
  box-shadow: 3px 3px 0px 0px #4cdecd;
  padding: 13px 5px;
  position: relative;
}

.qa_nav li a:after{
  /*content: "\f054";*/
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.qa_wrap{
  
}
.qa_wrap+.qa_wrap{
  margin-top: 160px;
}
.qa_wrap .qa_title{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  color: #FFF;
  background-image: url('/img/qa/title_bg.png');
  padding: 12px 10px;
  margin-bottom: 70px;
  position: relative;
}
.qa_wrap .qa_title:after{
  content: "";
  display: block;
  background: #0cceb5;
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;
  right: 7px;
  z-index: 0;
}
.qa_wrap .qa_title span{
  position: relative;
  z-index: 1;
}

.qa_items{
  
}
.qa_items .item{
  
}
.qa_items .item+.item{
  margin-top: 45px;
}
.qa_items .item .title{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 30px;
}
.qa_items .item .title em{
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  font-family: "Lato";
  border-bottom: 3px solid #0cceb5;
  margin-bottom: 20px;
  padding-bottom: 5px;
  
}
.qa_items .item .title span{
  display: block;
}

.qa_items .item .txt{
  background: #f2f2f2;
  border-radius: 10px;
  padding: 50px 40px;
  line-height: 2;
  letter-spacing: 0.075em;
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.service_tt1{
  font-size: 40px;
  font-weight: 900;
  /*letter-spacing: 0.075em;*/
  line-height: 1.2;
  text-align: center;
  background: #f00000;
  color: #FFF;
  padding: 13px 0;
  margin-bottom: 45px;
  position: relative;
}
.service_tt1 em{
  color: #fff335;
}
.service_tt1:before{
  content: "";
  width: 66px;
  height: 66px;
  background-image: url('/img/marunage/point.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.service_tt1:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #f00000 transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.service_msg1{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.23;
  text-align: center;
  color: #f00000;
  margin-bottom: 50px;
}

.service_tt2{
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
}
.service_tt2 .dot{
  font-size: 55px;
  color: #ff9748;
  
  padding-top: .4em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1.3em .3em;
  background-image: radial-gradient(.15em .15em at center center,#ff9748,#ff9748 100%,transparent)
}
.service_msg2{
  text-align: center;
  letter-spacing: 0.04em;
}

.service_flow_tt{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  color: #FFF;
  background-image: url('/img/qa/title_bg.png');
  padding: 12px 10px;
  margin-bottom: 100px;
  position: relative;
}
.service_flow_tt:before{
  content: "";
  display: block;
  background: #0cceb5;
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;
  right: 7px;
  z-index: 0;
}
.service_flow_tt span{
  position: relative;
  z-index: 1;
}


.service_flow_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}
.service_flow_items .item{
  width: 33.333%;
  padding-left: 14px;
  padding-right: 14px;
}
.service_flow_items .item .inner{
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 5px 20px 15px;
}
.service_flow_items.col4 .item{
  width: 25%;
}
.service_flow_items.col4 .item .inner{
  padding: 5px 15px 15px;
}

.service_flow_items .item:not(:last-child) .inner:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 25px;
  border-color: transparent transparent transparent #007bff;
}
.service_flow_items .item .inner.color1,
.service_flow_items .item .inner.color1 .step{
  background: #7ae6fd;
}
.service_flow_items .item .inner.color2,
.service_flow_items .item .inner.color2 .step{
  background: #f5bddd;
}
.service_flow_items .item .inner.color3,
.service_flow_items .item .inner.color3 .step{
  background: #f9ca4c;
}
.service_flow_items .item .inner.color4,
.service_flow_items .item .inner.color4 .step{
  background: #a4f777;
}
.service_flow_items .item:not(:last-child) .inner.color1:after{
  border-color: transparent transparent transparent #7ae6fd;
}
.service_flow_items .item:not(:last-child) .inner.color2:after{
  border-color: transparent transparent transparent #f5bddd;
}
.service_flow_items .item:not(:last-child) .inner.color3:after{
  border-color: transparent transparent transparent #f9ca4c;
}
.service_flow_items .item:not(:last-child) .inner.color4:after{
  border-color: transparent transparent transparent #a4f777;
}

.service_flow_items .item .step{
  font-family: "Lato";
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: -45px auto 0;
  padding-top: 5px;
}
.service_flow_items .item .step em{
  display: block;
  font-size: 24px;
}
.service_flow_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}
.service_flow_items .item .title{
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
}
.service_flow_items .item .txt{
  margin-top: 10px;
}

.service_contact{
  margin-top: 120px;
  text-align: center;
}

/* 家電用 */
.pg_marunage1{
  
}
.pg_marunage1 #sec1{
  
}
.pg_marunage1 #sec2{
  margin-top: 135px;
}
.pg_marunage1 #flow,
.pg_marunage2 #flow,
.pg_marunage3 #flow{
  margin-top: 125px;
  padding: 65px 0;
  background: #d6fdf8;
}

.marunage1_otoku{
  padding: 0 38px 40px;
  background-image: url('/img/marunage/otoku_box_bg.png');
  background-size: cover;
  background-position: center;
  border: 4px solid #0cceb5;
}
.marunage1_otoku .otoku_tt{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 102px;
  padding-bottom: 25px;
  background-image: url('/img/marunage/otoku_tt_bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  font-size: 56px;
  color: #fff335;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.marunage1_otoku .otoku_tt em{
  font-size: 80px;
  font-family: "Lato";
  font-weight: 900;
}

.marunage1_otoku .otoku_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  
}
.marunage1_otoku .otoku_items .item{
  width: 33.333%;
  padding-left: 20px;
  padding-right: 20px;
}
.marunage1_otoku .otoku_items .item:nth-child(n+4){
  margin-top: 30px;
}
.marunage1_otoku .otoku_items .item .inner{
  height: 100%;
  padding: 15px;
  background: #0cceb5;
}

.marunage1_otoku .otoku_items .item .title{
  background: #d6fdf8;
  color: #3fd32f;
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}
.marunage1_otoku .otoku_items .item .txt{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff335;
  font-size: 45px;
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
}

.marunage1_imagepack{
  margin-top: 100px;
}

.marunage1_product_items{
  margin-top: 50px;
}
.marunage1_product_items .item{
  display: flex;
  align-items: center;
  min-height: 250px;
  border: 4px solid #7de8da;
  padding: 10px 10px;
  position: relative;
}
.marunage1_product_items .item.color1{
  border-color: #7de8da;
}
.marunage1_product_items .item.color2{
  border-color: #f97fc4;
}
.marunage1_product_items .item.color3{
  border-color: #39cae9;
}
.marunage1_product_items .item.color4{
  border-color: #f2b616;
}
.marunage1_product_items .item + .item{
  margin-top: 50px;
}
.marunage1_product_items .item .box1{
  width: 54%;
}
.marunage1_product_items .item .box2{
  width: 46%;
}
.marunage1_product_items .item .img_txt{
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  bottom: 5px;
}
.marunage1_product_items .item .set{
  display: flex;
  background: #e6e8e5;
  margin-top: 10px;
}
.marunage1_product_items .item .set dt,
.marunage1_product_items .item .set dd{
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.marunage1_product_items .item .set dt{
  background: #222222;
  color: #FFF;
  width: 90px;
  justify-content: center;
}
.marunage1_product_items .item .set dd{
  width: calc(100% - 90px);
  min-height: 60px;
  padding: 10px;
  line-height: 1.4;
}

.marunage1_product_msg{
  font-size: 38px;
  font-weight: 900;
  color: #ff9748;
  text-align: center;
  margin-top: 80px;
  line-height: 1.4;
}
.marunage1_product_support{
  margin-top: 70px;
}

/* 引越し */
.marunage2_teikei{
  background: #f6f2dc;
  padding: 0 50px 35px;
  margin-top: 140px;
  margin-bottom: 150px;
}
.marunage2_teikei_tt{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 102px;
  padding-bottom: 25px;
  background-image: url(/img/marunage/otoku_tt_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  font-size: 56px;
  color: #fff335;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.marunage2_teikei_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.marunage2_teikei_items li{
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
}
.marunage2_teikei_items li:nth-child(n+6){
  margin-top: 30px;
}



.marunage2_hikkoshi_msg{
  font-size: 40px;
  font-weight: 900;
  color: #ff9748;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.4;
}
.marunage2_hikkoshi_merit{
  display: flex;
  flex-wrap: wrap;
  margin-left: -22px;
  margin-right: -22px;
  margin-bottom: 60px;
}
.marunage2_hikkoshi_merit li{
  width: 50%;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 25px;
  font-weight: 700;
}
.marunage2_hikkoshi_merit li span{
  display: block;
  border: 3px solid #ff9748;
  border-radius: 40px;
  padding: 20px 35px;
}
.marunage2_hikkoshi_merit li span:before{
  /*content: "\f054";*/
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff9748;
  margin-right: 15px;
}

.marunage2_hikkoshi_bn{
  margin-top: 60px;
  text-align: center;
}


/* ライフライン */
.marunage3_support_tt{
  text-align: center;
  margin-top: 110px;
  margin-bottom: 70px;
}

.marunage3_support_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -33px;
  margin-right: -33px;
}
.marunage3_support_items li{
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
}
.marunage3_support_items li:nth-child(n+3){
  margin-top: 30px;
}



/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  margin-top: 120px;
}
.pg_company .section#sec3{
  
}

/**/

.company_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company_blc1 .box1{
  width: 53.63%;
  /*width: 54.63%;*/
  letter-spacing: -0.01em;
}
.company_blc1 .box2{
  width: 43.18%;
}

.company_blc1 .daihyo{
  text-align: right;
  font-weight: 700;
}
.company_blc1 .daihyo em{
  font-size: 20px;
}

/**/
.company_tbl{
  
}
.company_tbl tr{
  border-top: 1px solid #b6d8d4;
}
.company_tbl tr:last-child{
  border-bottom: 1px solid #b6d8d4;
}
.company_tbl tr:nth-child(odd){
  background: #d6fdf8;
  
}
.company_tbl th,
.company_tbl td{
  font-size: 16px;
  text-align: left;
  padding: 20px 30px;
  line-height: 1.875;
}
.company_tbl th{
  width: 180px;
  font-weight: 700;
  /*vertical-align: top;*/
}
.company_tbl td{
  
}




/* **********************************
 *  お問い合わせ
 * ********************************* */
.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;
}

.pg_contact .privacy{
  margin-top: 80px;
}



.form_plan_tt{
  background: #0cceb5;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.2;
  margin-bottom: 45px;
  padding: 10px;
}
.form_plan_tt .wpcf7-list-item-label{
  color: #fff335;
  font-size: 24px;
}
.form_plan_tt .wpcf7-form-control-wrap{
  border-left: 5px solid #fff335;
}
.form_plan_tt .wpcf7-form-control-wrap [type="checkbox"]{
  /*zoom: 1.5;*/
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.contact_form{
  margin-bottom: 50px;
}

.contact_form_msg{
  text-align: center;
  margin-bottom: 65px;
}
.contact_tt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 50px;
}