@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #181818;
}

/* 基本フォント: 明朝 */
/**/
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;
  padding-bottom: 40px;
  
}
.pg_header{
  margin-bottom: 45px;
  display:none;
}
.pg_header .bg{
  height: 360px;
  margin-bottom: 30px;
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header .ttl{
font-size: 24px;
    padding: 28px 0;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    background: linear-gradient(to bottom, #2F4198 0%,#0F116D 100%);
    text-align: center;
    color: #fff;
}

/* 共通の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: 25px 0 0;
  margin-bottom: 5px;
 /* border-bottom: 6px solid #facd89;
  background: -moz-linear-gradient(top, #2F4198 0%, #0F116D 100%);
  background: -webkit-linear-gradient(top, #2F4198 0%,#0F116D 100%);
  background: linear-gradient(to bottom, #2F4198 0%,#0F116D 100%);*/

}
header .hdr1{
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
header .hdr1 .hdr_logo{
  width: 38%;
  display: flex;
  align-items: center;
}
.hdr_contact{
  width: 75%;
  padding-left: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hdr_contact .tel{  
  width: 210px;
  font-size: 18px;
  padding: 7px;
  margin-right: 10px;
  border: 1px solid #FF7337;
  color: #FF7337;
  display: block;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}
.hdr_contact .form{  
    width: 210px;
    font-size: 16px;
    padding: 9px;
    border: 1px solid #FF7337;
    color: #fff;
    background: #FF7337;
    display: block;
    text-align: center;
    border-radius: 5px;
	  font-weight: bold;
}
.hdr_contact a i{
  font-size: 16px;
  margin-right: 1em;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  margin-bottom: 15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
  border-right: 1px solid #FF7337;
  color: #fff;
}
.gnav > ul > li{
  border-left: 1px solid #FF7337;
  width: 100%;
  position: relative;
  line-height: 1.35;
}
.gnav > ul > li:after{
  width: 100%;
  height: 6px;
  background: #FF7337;
  display: block;
  position: absolute;
  bottom: -22px;
  left: 0;
  content: "";
}
.gnav li a:hover{
  color: #FF7337;
}
.gnav > ul > li.current_page_item:after{
  background: #FF7337;
}
.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{
  text-decoration: none;
  display: block;
  padding: 0 5px;
  font-weight: 500;
}

.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: 650px;

  /*background: #CCC;*/
  background-image: url('/img/topmv.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_box{

}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{

}
.mv .mv_box .img img{

}


/* **********************************
 *  フッター
 * ********************************* */
footer{
    padding: 50px 0 0;
	margin-top: -50px;
	color: #181818;
    /* border-top: 3px solid #fbd501;
    color: #fff;
	  background: -moz-linear-gradient(top, #2F4198 0%, #0F116D 100%);
  background: -webkit-linear-gradient(top, #2F4198 0%,#0F116D 100%);
  background: linear-gradient(to bottom, #2F4198 0%,#0F116D 100%);*/
}
footer .ftr1 .info{
  width: 50%;
}
footer .ftr1 .info .logo{
  margin-bottom: 40px;
}
footer .ftr1 .menu{
  width: 60%;
  padding-top: 15px;
  margin-left: -10%;
}
footer .ftr_links{
  display: flex;
  justify-content: flex-end;
}
footer .ftr_links li{
  text-align: center;
  line-height: 1;
}
footer .ftr_links li + li{
  padding-left: 22px;
  margin-left: 22px;
  border-left: 1px solid;
}
footer .ftr1 .menu .hdr_contact{  
  width: 100%;
  margin: 70px 0 0;
  padding: 0;
}


footer .copy{
  font-size: 14px;
  padding: 22px 0;
  margin-top: 48px;
  border-top: 1px solid #c9c9c9;
  text-align: center;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  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;
  border-top: 1px solid #ff8300;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 50%;
  border-right: 1px solid #ff8300;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px 3px;
  background: #ffffff;
  color: #ff8300;
  text-decoration: none;
}
.footer_fix ul li.form a{
  background: #ff8300;
  color: #ffffff;  
}
.footer_fix ul li a i{
  font-size: 22px;
  display: block;
}


/* 検索フォーム */
.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-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: #feebcf;
  text-align: center;
  padding: 28px 30px 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
  padding-left: 0.25em;
}
.contact_info .box2{
  margin-top: 15px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #f9b304;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.1em;
  padding-left: 0.8em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: block;
  margin-top: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 10px 50px 10px 20px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  width: 310px;
  padding: 14px 13px 10px 20px;
  background: #f0f0f0;
  vertical-align: top;
  letter-spacing: 0.08em;
}
.contact_form th .require{
  display: inline-block;
  padding: 0 11px;
  margin-top: 5px;
  color: #FFF;
  background: #b80000;
  font-size: 13px;
  float: right;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.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.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: 461px;
  padding: 6px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
  height: 280px;
}
.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{
  font-size: 17px;
  margin-top: 43px;
  letter-spacing: 0.1em;
  text-align: center;
}
.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"]{
  font-size: 18px;
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 14px;
  width: 314px;
  margin: 0 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.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{
  letter-spacing: 0.05em;
}
.privacy_items .item + .item{
  margin-top: 35px;
}
.privacy_items .item h4{
  font-size: 18px;

  border-left: 6px solid #ff8300;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
  font-weight: 500;
}
.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{
  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{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{

}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.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;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  /*padding: 25px 0 0;*/
}
.pg_home .section#sec1 .news_box{
  font-size: 17px;
  padding: 20px 25px;
  border: 1px solid #ff8300;
  border-radius: 10px;
}
.pg_home .section#sec1 .news_box dt{
  padding: 0 5px 10px;
  margin-bottom: 6px;
  border-bottom: 1px dotted #000;
  line-height: 1.64;
  color: #f02828;
  font-weight: 700;
}
.pg_home .section#sec1 .news_box dd{
  padding: 0 5px;
  line-height: 2;
}
.center{
  text-align: center;
}
.pg_home .section#sec2{
  padding: 88px 0;
}
.pg_home .section#sec2 h2{
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #ff8300;
}
.pg_home .section#sec2 p{
  line-height: 2.125;
}
.pg_home .section#sec3{  
  padding: 60px 0;
  background-image: url(http://mizokawakoumu.kiddotest2.xyz/wp-content/uploads/2022/09/bg1.jpg);
}
}
.pg_home .section#sec3 h2{
    font-size: 25px;
    margin-bottom: 45px;
    /* text-align: center; */
    color: #ffffff;
    line-height: 1.5;
    font-family: 'Hina Mincho', serif;
}

}
.pg_home .section#sec3 h2 span{
  font-size: 20px;
  letter-spacing: 0.2em;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.pg_home .section#sec3 .check .movie{
  width: 51.5%;
  padding-right: 50px;
}
.pg_home .section#sec3 .movie .bg{
  height: 100%;
  background: #c9c9c9;
}
.pg_home .section#sec3 .check .txt{
  width: 48.5%;
}
.pg_home .section#sec3 .txt h3{
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.54;
  color: #ffffff;
}
.pg_home .section#sec3 .txt li{
  font-size: 18px;
  padding: 8px 20px;
  background: #ffffff;
  border-radius: 5px;
  font-weight: 700;
}
.pg_home .section#sec3 .txt li + li{
  margin-top: 7px;
}
.pg_home .section#sec3 .btns{
  margin: 80px 0 0;
  justify-content: center;
}
.link_1{
  max-width: 340px;
  width: 100%;
  padding: 15px 0;
  margin: 0 40px;
  position: relative;
  background: #ffffff;
  color: #ff8300;
  display: block;
  text-align: center;
  font-weight: 700;
}
.link_1:after{
  content: "\f105";  
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.pg_home .section#sec4{
  padding: 90px 0 150px;
}
.pg_home .section#sec4 .txt{
  width: 52.5%;
  padding-right: 20px;
}
.pg_home .section#sec4 .txt h2{
  font-size: 22px;
  margin-bottom: 12px;
}
.pg_home .section#sec4 .txt .orange{  
  font-size: 18px;
  margin-bottom: 10px;
  color: #ff8300;
}
.pg_home .section#sec4 .txt p{
  line-height: 2;
}
.pg_home .section#sec4 .txt .link_1{
  max-width: 360px;
  padding: 14px 0;
  margin: 55px 0 0;
  border: 1px solid #ff8300;
}
.pg_home .section#sec4 .img{
  width: 47.5%;
  padding-top: 12px;
}

.pg_home .section#sec5{
  background: url(/img/top/bg_1.jpg) no-repeat center / cover;
}
.pg_home .section#sec5 .container{
  padding: 100px 0 105px;
  display: flex;
  justify-content: flex-end;
}
.pg_home .section#sec5 .txt{
  padding-right: 35px;
}
.pg_home .section#sec5 .text{
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  text-shadow: 0 0 5px #ffffff,
    0 0 5px #ffffff,
    0 0 5px #ffffff,
    0 0 5px #ffffff,
    0 0 5px #ffffff,
    0 0 5px #ffffff;
}
.pg_home .section#sec5 .link_1{
  max-width: 360px;
  padding: 14px 0;
  margin: 50px auto 0;
  border: 1px solid #ff8300;
}

.pg_home .section#sec6{
  padding: 80px 0 0;
}
.pg_home .section#sec6 .bg{
  max-width: 680px;
  padding: 5px;
  margin: -50px auto 0;
  background: #ff8300;
  color: #ffffff;
  position: relative;
}



/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1{
  padding: 35px 0 0;
}
.pg_contact .section#sec2{

}
.pg_contact .section#sec3{

}

.contact_tt{
  font-size: 23px;
  margin-bottom: 42px;
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: 400;
}

.pg_contact .privacy{
  margin-top: 75px;
}
.pg_contact .privacy .contact_tt{
  margin-bottom: 52px;
}

/* **********************************
 *  検体測定
 * ********************************* */
.pg_specimen .section#sec1 .center .link_2{
  margin: 50px auto;
}
.pg_specimen .section#sec1 .box{
  padding: 30px 20px 40px;
  margin: 100px 0 20px;
  border: 1px solid #ff8300;
  border-radius: 10px;
}
.pg_specimen .section#sec1 .box .ttl{
  max-width: 980px;
  font-size: 22px;
  padding: 8px;
  margin: -55px auto 30px;
  font-weight: 700;
  background: #ff8300;
  color: #ffffff;
  text-align: center;
  border-radius: 28px;
}
.pg_specimen .section#sec1 .box ul{
  margin: 0 -20px;
}
.pg_specimen .section#sec1 .box li{
  width: 50%;
  padding: 0 20px;
}
.pg_specimen .section#sec1 .box li:nth-child(n+3){
  margin-top: 15px;
}
.pg_specimen .section#sec1 .box li p{  
  font-size: 18px;
  padding: 7px 20px;
  background: #dcf2ac;
  font-weight: 700;
  border-radius: 5px;
}
.pg_specimen .section#sec1 .bg{  
  padding: 20px 0 12px;
  background: #ece5db;
  text-align: center;
}
.pg_specimen .section#sec1 .bg .ttl{  
  width: 300px;
  margin: 0 auto 15px;
  padding: 6px;
  font-weight: 700;
  color: #ffffff;
  background: #c64150;
  border-radius: 10px;
}
.pg_specimen .section#sec1 .bg p{
  line-height: 2.125;
}
.pg_specimen .section#sec2{
  padding: 155px 0 0;
}
.pg_specimen .section#sec2 .ttl{
  font-size: 30px;
  margin-bottom: 70px;
  text-align: center;
  position: relative;
}
.pg_specimen .section#sec2 .ttl span{
  width: 210px;
  display: inline-block;
  border-bottom: 3px solid #ff8300;
}
.pg_specimen .section#sec2 .ttl span:after{
  content: "";
  width: 100%;
  height: 3px;
  margin: 0 auto 3px;
  background: #ff8300;
  display: block;
}
.pg_specimen .section#sec2 .ttl i{
  display: inline-block;
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(25%);
}
.list_2{
  margin: 0 -40px;
  margin-top: 20px;
}
.list_2 .item{
  width: 20%;
  padding: 15px;
  display: flex;
}
.pg_specimen .section#sec2 .item:nth-child(n+3){
  margin-top: 50px;
}
.pg_specimen .section#sec2 .item .bg{
  width: 100%;
  padding: 20px 25px 10px;
  border: 8px solid #fadaa9;
  position: relative;
}
.pg_specimen .section#sec2 .item .bg i{
  position: absolute;
  left: 0;
  top: -40px;
}
.pg_specimen .section#sec2 .item h3{
  font-size: 18px;
  padding: 0 0 8px 85px;
  margin-bottom: 15px;
  line-height: 1.5;
  border-bottom: 1px solid #ff8300;
  letter-spacing: 0.08em;
}
.pg_specimen .section#sec2 .item .img{
  margin-bottom: 10px;
  text-align: center;
}
.pg_specimen .section#sec2 .item .desc{
  line-height: 1.5;
}
.pg_specimen .section#sec3{
  padding: 90px 0 0;
}
.pg_specimen .section#sec3 .fee + .fee{
  margin-top: 42px;
}
.pg_specimen .section#sec3 .fee .bold{
  margin-bottom: 5px;
}
.pg_specimen .section#sec3 .fee table{
  border-right: 1px solid #c9c9c9;
  border-top: 1px solid #c9c9c9;
}
.pg_specimen .section#sec3 .fee th,
.pg_specimen .section#sec3 .fee td{
  padding: 19px;
  border-left: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}
.pg_specimen .section#sec3 .fee th{
  font-weight: 500;
  background: #ebf3fb;
  text-align: center;
}
.pg_specimen .section#sec3 .fee th:first-of-type{
  width: 27%;
}
.pg_specimen .section#sec3 .fee th:nth-of-type(2),
.pg_specimen .section#sec3 .fee tbody > tr:first-of-type td:nth-child(3){
  width: 23%;
}
.pg_specimen .section#sec3 .fee th:nth-of-type(3),
.pg_specimen .section#sec3 .fee tbody > tr:not(:first-of-type) td:nth-of-type(2),
.pg_specimen .section#sec3 .fee tbody > tr:first-of-type td:nth-of-type(4){
  width: 50%;
}
.pg_specimen .section#sec3 .fee tbody > tr:first-of-type td:first-of-type{
  width: 10%;
}
.pg_specimen .section#sec3 .fee tbody > tr:first-of-type td:nth-of-type(2),
.pg_specimen .section#sec3 .fee tbody > tr:not(:first-of-type) td:nth-of-type(1){
  width: 17%;
}
.pg_specimen .section#sec3 .fee tbody td:last-of-type{
  padding: 15px 30px;
}
.link_2{
  max-width: 480px;
  font-size: 18px;
  padding: 21px;
  display: block;
  margin: 80px auto 0;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background: #ff8300;
  position: relative;
  border-radius: 10px;
}
.link_2:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* **********************************
 *  感染症予防対策
 * ********************************* */
.pre_tt{
  font-size: 22px;
  margin-bottom: 15px;
}
.orange.bold{
  font-size: 18px;
  margin-bottom: 5px;
  color: #ff8300;
}
.pg_prevention .section#sec1 p{
  line-height: 2;
}
.pg_prevention .section#sec1 .box{
  margin-top: 55px;
}
.pg_prevention .section#sec1 .box + .box{
  margin-top: 95px;
}
.pg_prevention .section#sec1 .box h3{  
  font-size: 18px;
  padding: 8px;
  margin-bottom: 20px;
  color: #ffffff;
  background: #448aca;
  text-align: center;
}
.pg_prevention .section#sec1 .box + .box h3{
  margin-bottom: 28px;
}
.pg_prevention .section#sec1 .box .ttl{
  font-size: 20px;
  margin-bottom: 25px;
  color: #005982;
  font-weight: 700;
  text-align: center;
}
.pg_prevention .section#sec2{
  padding: 135px 0 195px;
}
.list_3{
  margin: 0 -10px;
}
.list_3 .item{
  width: 33.33%;
  padding: 0 10px;
  display: flex;
}
.pg_prevention .section#sec2 .list_3{
  margin: 45px -10px 0;
}
.pg_prevention .section#sec2 .item .bg{
  width: 100%;
  border: 1px solid #009944;
}
.pg_prevention .section#sec2 .item h3{
  font-size: 16px;
  padding: 18px 0;
  font-weight: 500;
  background: #009944;
  color: #ffffff;
  text-align: center;
}
.pg_prevention .section#sec2 .item p{
  font-size: 15px;
  padding: 18px 11px;
}
.pg_prevention .section#sec3 .txt{
  width: 47%;
}
.pg_prevention .section#sec3 .txt h2{
  font-size: 22px;
  margin-bottom: 12px;
  padding: 0 5px;
  line-height: 1.5;
  border-bottom: 5px solid #ff8300;
}
.pg_prevention .section#sec3 .txt p{
  padding: 0 5px;
  line-height: 2.125;
}
.pg_prevention .section#sec3 .img{
  width: 53%;
  padding-top: 5px;
  padding-left: 50px;
  text-align: right;
}

/* **********************************
 *  患者様へ
 * ********************************* */
.pg_guide .section#sec1 dl + dl{
  margin-top: 70px;
}
.pg_guide .section#sec1 dt{
  font-size: 16px;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-bottom: 3px solid #b28850;
  border-left: 3px solid #b28850;
  background: url(/img/guide/ttl_dot.png) repeat-x left 93%;
}
.pg_guide .section#sec1 dd{
  letter-spacing: 0.01em;
}
.pg_guide .section#sec1 dd li{
  padding: 0 0 0 20px;
  position: relative;  
}
.pg_guide .section#sec1 dd li + li{
  margin-top: 20px;
}
.pg_guide .section#sec1 dd li:before{
  content: "■";
  color: #b28850;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
.pg_guide .section#sec1 dd .box{
  width: 373px;
  display: flex;
  border: 1px solid #c9c9c9;
}
.pg_guide .section#sec1 dd .box:nth-child(n+4){
  margin-top: 5px;
}
.pg_guide .section#sec1 dd .box:not(:nth-child(3n+1)){
  border-left: 0;
}
.pg_guide .section#sec1 dd .box p{
  padding: 10px;
  text-align: center;
}
.pg_guide .section#sec1 dd .box .ttl{
  width: 160px;
  border-right: 1px solid #c9c9c9;
  letter-spacing: 0.2em;
  padding-left: 1em;
  background: #efe3d3;
}
.pg_guide .section#sec1 dd .box p:not(.ttl){
  width: calc(100% - 160px);
}
.pg_guide .section#sec1 dd .orange{
  color: #ee6500;
}
.pg_guide .section#sec1 dd p + .orange{
  margin-top: 20px;
}

/* **********************************
 *  会社概要
 * ********************************* */
.pg_company .section#sec1{
  padding: 35px 0 0;
}
.common_tbl tr{
  border: 1px solid #c9c9c9;
}
.common_tbl th{
  width: 300px;
  padding: 15px 12px 14px 40px;
  background: #feebcf;
  border-right: 1px solid #c9c9c9;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.common_tbl td{
  padding: 15px 12px 14px 50px;
}
.pg_company .section#sec1 iframe{
  margin-top: 80px;
}

/* **********************************
 *  採用情報
 * ********************************* */
.pg_recruit .section#sec1{
  padding: 30px 0 0;
}
.pg_recruit .section#sec1 .txt{
  width: 52%;
  padding-right: 50px;
}
.pg_recruit .section#sec1 .img{
  width: 48%;
  padding-top: 5px;
  text-align: right;
}
.pg_recruit .section#sec1 .txt p{
  line-height: 2.25;
}
.pg_recruit .section#sec1 .txt .orange.bold {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.pg_recruit .section#sec1 .movie{
  margin: 80px 0 0;
}
.pg_recruit .section#sec2{
  padding: 100px 0;
}
.pg_recruit .rec_tt{
  font-size: 24px;
  padding: 8px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2em;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}
.pg_recruit .rec_tt:before,
.pg_recruit .rec_tt:after{
  content: "";
  display: inline-block;
  width: 27px;
  height: 25px;
  background: url(/img/recruit/ttl_i_1.png) no-repeat center / contain;
}
.pg_recruit .rec_tt:before{
  vertical-align: top;
  margin-right: 15px;
}
.pg_recruit .rec_tt:after{
  vertical-align: bottom;
  margin-left: 15px;
}
.pg_recruit .list_3{
  margin: 0 -45px;
}
.pg_recruit .item{
  padding: 0 45px;
  display: block;
}
.pg_recruit .item:nth-child(n+4){
  margin-top: 40px;
}
.pg_recruit .item .bold{
  font-size: 18px;
  margin: 8px 0 0;
  font-weight: 500;
  text-align: center;
}
.pg_recruit .item p:not(.bold){
  letter-spacing: 0.03em;
  line-height: 1.9;
}
.pg_recruit .item .img{
  text-align: center;
}
.pg_recruit .section#sec4{
  padding: 145px 0 0;
}