@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
@font-face {
  font-family: "BASKVILL";
  src: url(css/fonts/BASKVILL.woff2) format("woff2"),
  url(css/fonts/BASKVILL.woff) format("woff"),
  url(css/fonts/BASKVILL.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: #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: 1140px;
  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;
  margin-top: 25px;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 330px;
}

/* 共通の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;*/
  padding-top: 40px;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
header .hdr1 .hdr_logo{
}
header .hdr1 .hdr_contact{

}
header .hdr1 .hdr_contact a + a{
  margin-left: 20px;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
}
.gnav > ul > li{
  position: relative;
}
.gnav > ul > li+li{
  border-left: 1px solid #67bfd5;
  padding-left: 50px;
}
.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;
}
.gnav li a:hover{
  /*background: #333;*/
  color: #67bfd5;
}

.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: 620px;
  
  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;
  margin-top: 50px;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  padding-top: 90px;
}

footer .ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
  margin-bottom: 100px;
}
footer .ftr1 .box1{
  width: 500px;
}
footer .ftr1 .box2{
  width: 480px;
  padding-top: 30px;
}
footer .ftr_logo{
  
}
footer .ftr_addr{
  margin-top: 20px;
  font-weight: 500;
  line-height: 2.18;
}
footer .ftr_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .ftr_links li{
  line-height: 1;
  min-width: 190px;
  margin-top: 25px;
}
footer .ftr_links li:before{
  content: "□";
  color: #00a7c6;
  margin-right: 12px;
}


footer .copy{
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  background: #00a7c6;
  color: #FFF;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #83d7e9;
  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: #00a7c6;
  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;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 10px;
}
.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;
  font-size: 25px;
  font-weight: bolder;
  background: #00a7c6;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 15px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  vertical-align: middle;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
  font-weight: bold;
  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;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}

.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: 8px 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="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;
}

.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{
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #00a7c6;
  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 input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}


/* サイトマップ */
.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 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;
}
.privacy_items .item + .item{
  margin-top: 30px;
}
.privacy_items .item h4{
  font-size: 16px;
  background: #e5f6f9;
  border-left: 6px solid #00a7c6;
  padding: 5px 0;
  padding-left: 10px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  line-height: 1.875;
}
.privacy_items .item h4 + .txt{
  padding-left: 1em;
}
.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;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.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: 0 0 50px;
}


.tt1{
  height: 260px;
  background-image: url('/img/tt1_bg.jpg');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: #00a7c6;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  padding-top: 70px;
  margin-bottom: 50px;
}
.tt1 em{
  font-weight: 500;
  font-family: "BASKVILL","Noto Serif JP",serif;
  font-weight: normal;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}
.tt1 .t1{
  display: block;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
.tt1 .t2{
  display: inline-block;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  font-family: "Noto Serif JP",serif;
  color: #111111;
  letter-spacing: 0.1em;
}
.tt2{
  
}
.tt2 span{
  
}
.tt3{
  text-align: center;
}
.tt3 span{
  display: inline-block;
  border-top: 1px solid #00a7c6;
  border-bottom: 1px solid #00a7c6;
  padding: 5px 5px;
  font-size: 30px;
  font-weight: 500;
  font-family: "Noto Serif JP",serif;
  letter-spacing: 0.1em;
  background: #FFF;
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

.read_more{
  
}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  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;
  right: 15px;
}
.read_more a:hover{
  opacity: 0.9;
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  
}
.pg_home .section#sec2{
  margin-top: 170px;
}
.pg_home .section#sec3{
  
}

.home_promiss_wrap{
  margin-top: -125px;
}

.home_promiss_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*margin-left: -35px;*/
  /*margin-right: -35px;*/
  margin-top: 10px;
  margin-bottom: 50px;
  list-style: none;
}
.home_promiss_items li{
  width: 47.32%;
  /*width: 50%;*/
  /*padding-left: 35px;*/
  /*padding-right: 35px;*/
  font-weight: 500;
  padding: 20px 0 18px 22px;
  border-bottom: 1px dotted;
  position: relative;
}
.home_promiss_items li:nth-child(n+3){
  margin-top: 10px;
}
.home_promiss_items li em{
  font-family: "BASKVILL","Noto Serif JP",serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
  /*margin-right: 5px;*/
  position: absolute;
  left: 0;
  
}

.home_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home_blc1 + .home_blc1{
  margin-top: 170px;
}
.home_blc1 .box1,
.home_blc1 .box2{
  width: 50%;
  position: relative;
}
.home_blc1 .box1{
  height: 460px;
  
  background-position: right center;
  background-size: cover;
}
.home_blc1 .box2{
  padding-left: 40px;
  padding-right: 0;
}

.home_blc1 .inner{
  display: block;
  width: 520px;
  max-width: 100%;
  position: relative;
}

.home_blc1 .title_bg{
  font-family: "BASKVILL","Noto Serif JP",serif;
  font-weight: normal;
  font-size: 163px;
  color: #bef4fd;
  white-space: nowrap;
  line-height: 1;
  text-align: right;
  position: absolute;
  right: 0;
  left: -100%;
  
  -webkit-transform: translate(0, -42%);
  transform: translate(0, -42%);
}
.home_blc1 .title{
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 42px;
  border-bottom: 1px solid #c9c9c9;
  margin-top: 30px;
  margin-bottom: 40px;
}
.home_blc1 .title .inner{
  text-align: center;
}
.home_blc1 .txt{
  line-height: 1.8125;
}
.home_blc1 .read_more{
  margin-top: 100px;
}

.home_blc1:nth-child(even){
  
}
.home_blc1:nth-child(even) .box1{
  order: 2;
  background-position: left center;
}
.home_blc1:nth-child(even) .box2{
  order: 1;
  padding-left: 0;
  padding-right: 40px;;
}
.home_blc1:nth-child(even) .title_bg{
  text-align: left;
  
  right: -100%;
  left: 0;
}
.home_blc1:nth-child(even) .inner{
  margin-left: auto;
}
.home_blc1:nth-child(even) .txt{
  padding-left: 10px;
}

.section#contact{
  background: #eeeeee;
  margin-top: 100px;
  padding: 100px 0;
  
}

.cmn_contact_items{
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
  border-radius: 10px;
}
.cmn_contact_items .item{
  width: 50%;
  padding: 50px 15px;
  text-align: center;
}
.cmn_contact_items .item:nth-child(2n){
  border-left: 2px solid #eeeeee;
}
.cmn_contact_items .item .title{
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 30px;
}
.cmn_contact_items .item .title span{
  display: block;
  font-size: 16px;
  margin-top: 20px;
  letter-spacing: 0.1em;
}
.cmn_contact_items .item .title:after{
  content: "";
  display: block;
  width: 200px;
  max-width: 100%;
  height: 3px;
  background: #00a7c6;
  margin: 24px auto 0;
}

/* **********************************
 *  
 * ********************************* */
.pg_aboutus{
  
}
.pg_aboutus .section#sec1{
  
}
.pg_aboutus .section#sec2{
  margin-top: 140px;
}
.pg_aboutus .section#sec3{
  margin-top: 100px;
}

.aboutus_tt1{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 50px;
  padding-bottom: 10px;
  position: relative;
}
.aboutus_tt1 span{
  font-family: "BASKVILL","Noto Serif JP",serif;
  font-weight: normal;
  font-size: 100px;
  color: #e0fafe;
  white-space: nowrap;
  line-height: 1;
  text-align: right;
  position: relative;
  bottom: -10px;
}
.aboutus_tt1:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #c9c9c9;
  position: absolute;
  bottom: 0;
  /*right: 600px;*/
  right: 53.75%;
}

.aboutus_tbl{
  
}
.aboutus_tbl th,
.aboutus_tbl td{
  border: 1px solid #00a7c6;
  padding-top: 15px;
  padding-bottom: 15px;
}
.aboutus_tbl th{
  width: 300px;
  background: #e0fafe;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: left;
  /*padding-left: 36.6%;*/
  padding-left: 110px;
}
.aboutus_tbl td{
  padding-left: 50px;
}

.aboutus_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aboutus_blc1 .box1{
  width: 26.78%;
}
.aboutus_blc1 .box2{
  width: 66%;
}
.aboutus_blc1 .box2 h3{
  background: #eeeeee;
  color: #00a7c6;
  font-weight: 500;
  font-size: 16px;
  padding: 20px 25px;
  margin-bottom: 25px;
}
.aboutus_blc1 .box2 h3 em{
  font-family: "Noto Serif JP", serif;
}
.aboutus_blc1 .box2 h4{
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
}
.aboutus_blc1 .box2 h4:after{
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: #00a7c6;
  margin-top: 10px;
}
.aboutus_blc1 .box2 ul{
  margin-bottom: 35px;
}
.aboutus_blc1 .box2 ul li{
  
}
.aboutus_blc1 .box2 ul li + li{
  margin-top: 5px;
}
.aboutus_blc1 .box2 .txt{
  border-top: 1px dotted #00a7c6;
  line-height: 1.875;
  padding: 25px ;
}
.aboutus_blc1 .box2 .inner{
  padding-left: 25px;
  padding-right: 25px;
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}

.page_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_list li{
  width: 44.64%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  padding-right: 30px;
}
.page_list li:nth-child(n+3){
  margin-top: 35px;
}
.page_list li a{
  display: block;
  border: 1px solid #00a7c6;
  border-left: 5px solid #00a7c6;
  padding: 25px 25px;
  text-decoration: none;
  position: relative;
}
.page_list li a:after{
  content: "";
  width: 60px;
  height: 8px;
  background-image: url('/img/link_r.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.page_list li a:hover{
  background: #e4f6fa;
  color: #00a7c6;
}


.service_tt{
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 45px;
}
.service_tt span{
  display: block;
  font-family: "BASKVILL","Noto Serif JP",serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 1;
  color: #00a7c6;
  position: relative;
  letter-spacing: 0;
  
}
.service_tt span:first-letter{
  text-transform: uppercase;
}
.service_tt span:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #c9c9c9;
  position: absolute;
  left: 0;
  top: 54%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
}

.service_blc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_blc1 .box1{
  width: 51.78%;
}
.service_blc1 .box2{
  width: 41.07%;
}
.service_blc1 .box1{
  line-height: 1.875;
}
.service_blc1 .box1 p + p{
  margin-top: 2em;
}
.service_blc1 .box1 b{
  font-weight: 500;
}

.service_list_wrap{
  background: #eeeeee;
  padding: 15px;
  margin-top: 80px;
}
.service_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.service_list > li{
  border: 5px solid #e0fafe;
  background: #FFF;
  font-weight: 500;
  line-height: 1.875;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 3em;
  padding-right: 15px;
  position: relative;
}
.service_list > li:before{
  content: "■";
  color: #00a7c6;
  position: absolute;
  left: 1em;
}

.service_list.half > li{
  width: 48.62%;
}
.service_list.half > li:nth-child(n+3){
  margin-top: 15px;
}

.service_list.full > li{
  width: 100%;
}
.service_list.full > li + li{
  margin-top: 15px;
}

.service_list .sub{
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.service_list .sub li{
  text-indent: -1em;
  padding-left: 1em;
  margin-right: 30px;
  font-weight: normal;
}
.service_list .sub li:last-child{
  margin-right: 0;
}

/**/

.service_flow_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -3em;
  margin-right: -18px;
  margin-top: 40px;
}
.service_flow_items .item{
  width: 25%;
  padding-left: 18px;
  padding-right: 18px;
}
.service_flow_items .item:nth-child(n+5){
  margin-top: 30px;
}

.service_flow_items .item .inner{
  
}
.service_flow_items .item .img{
  
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.service_flow_items .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.service_flow_items .item .img span{
  position: absolute;
  bottom: 5px;
  right: 5px;
  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #FFF;
  color: #00a7c6;
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  
}
.service_flow_items .item .txt{
  font-weight: normal;
  line-height: 1.625;
  margin-top: 5px;
  
}


/**/
.service_back{
  margin-top: 50px;
}
.service_back a{
  display: block;
  margin-right: 30px;
  margin-left: auto;
  width: 250px;
  border: 1px solid #00a7c6;
  padding: 10px 25px;
  /*font-family: "Noto Serif JP", serif;*/
  font-weight: 500;
  /*letter-spacing: 0.1em;*/
  text-decoration: none;
  text-align: center;
  position: relative;
}
.service_back a:after{
  content: "";
  width: 60px;
  height: 8px;
  background-image: url('/img/link_r.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.service_back a:hover{
  background: #e4f6fa;
  color: #00a7c6;
}




/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_access{
  
}
.pg_access .section#sec1{
  
}
.pg_access .section#sec2{
  
}
.pg_access .section#sec3{
  
}

.access_map{
  margin-bottom: 10px;
}
.access_txt{
  line-height: 1.875;
}
.access_txt b{
  font-weight: 500;
}


/* **********************************
 *  会社概要
 * ********************************* */
.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: 20px;
}
.contact_msg1{
  text-align: center;
  line-height: 1.875;
  margin-bottom: 75px;
}
.contact_msg2{
  text-align: center;
  line-height: 1.875;
  margin-bottom: 30px;
}

.pg_contact .privacy{
  margin-top: 80px;
}
