@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
@font-face {
  font-family: "AlteDIN";
  src: url(css/fonts/din1451alt.woff2) format("woff2"),
  url(css/fonts/din1451alt.woff) format("woff"),
  url(css/fonts/din1451alt.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: #000;
}

/* 基本フォント: 明朝 */
/**/
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 #0063ae;
  text-align: left;
  padding: 10px 20px;
  line-height: 1.875;
}
.tbl th{
  width: 28.57%;
  background: #eeeeee;
  font-weight: 500;
}
.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-position: center;
  background-size: cover;
}
.pg_header .container{
  height: 350px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 共通の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 0;
}
header .hdr1{
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
header .hdr1 .hdr_logo{
}
header .hdr1 .hdr_contact{
}
header .hdr1 .hdr_contact a + a{
  margin-left: 10px;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 17px;
  color: #000000;
}
.gnav > ul{
  width: 1140px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
  
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  width: 100%;
  position: relative;
}
.gnav > ul > li + li{
  border-left: 1px solid #d9d9d9;
}
.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: #000;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
  opacity: 0.8;
}
.gnav li a span{
  display: block;
  font-weight: 500;
  font-size: 12px;
}

.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: 580px;
  background-image: url('/img/mv_bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 100px;
}


.ftr_contact{
  display: flex;
}
.ftr_contact li{
  width: 50%;
}
.ftr_contact li.btn1{
  text-align: right;
  background: #0063ae;
}
.ftr_contact li.btn2{
  text-align: left;
  background: #004b84;
}

footer .ftr1{
  margin-top: 35px;
  margin-bottom: 40px;
}
footer .ftr1 .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .ftr1 .box1{
  width: 43.75%;
  text-align: center;
  font-weight: 500;
  line-height: 1.875;
}
footer .ftr1 .box2{
  width: 56.25%;
}

footer .ftr1 .ftr_logo .txt{
  margin-bottom: 10px;
}
footer .ftr1 .ftr_addr{
  margin-top: 20px;
}

footer .ftr2{
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
footer .ftr2 .ftr_links{
  display: flex;
  justify-content: center;
  color: #383635;
  padding: 30px 0;
}
footer .ftr2 .ftr_links li{
  padding: 0 25px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  position: relative;
}
footer .ftr2 .ftr_links li + li:before{
  content: "/";
  position: absolute;
  left: 0;
}


footer .copy{
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 20px 0;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  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: #0163ae;
  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: calc(100% - 130px);
  /*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 #0063ae;
  border-bottom: 1px solid #0063ae;
  border-left: 1px solid #0063ae;
  border-right: 1px solid #0063ae;
}
.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: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
}
.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: #0063ae;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-family: "Noto Serif JP";
  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;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 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 + 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: 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: #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 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{
  font-size: 23px;
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-family: "Noto Sans JP";
  font-weight: 400;
}
.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: 18px;
  
  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
}
.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;
}

h1, h2, h3, h4, h5, h6{
  font-family: "Noto Serif JP";
  font-weight: 600;
}

.tt1{
  /*font-family: "Noto Serif JP";*/
  font-weight: 600;
  font-size: 38px;
  line-height: 1.4;
  color: #FFF;
  text-shadow: 0px 2px 4.6px rgba(0, 0, 0);
}
.tt1 span{
  display: block;
  font-size: 24px;
  font-weight: 500;
}
.tt2{
  /*font-family: "Noto Serif JP";*/
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.tt2 span{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0063ae;
  letter-spacing: 0.04em;
}
.tt2:after{
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  background: #0063ae;
  margin: 10px auto 0;
}
.tt3{
  font-size: 34px;
  /*font-family: "Noto Serif JP";*/
  font-weight: 600;
  text-align: center;
  color: #000000;
  margin-bottom: 50px;
}
.tt3:after{
  content: "";
  display: block;
  margin: 5px auto 0;
  width: 100px;
  height: 5px;
  background: #0063ae;
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}


.read_more{
  display: flex;
  justify-content: center;
}
.read_more a{
  width: 270px;
  max-width: 100%;
  padding: 12px 10px;
  border: 1px solid #0063ae;
  font-size: 16px;
  font-weight: bold;
  color: #0063ae;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.read_more a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
}
.read_more a:hover{
  background: #0063ae;
  color: #FFF;
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  margin-top: 55px;
}
.pg_home .section#sec2{
  margin-top: 90px;
}
.pg_home .section#sec3{
  margin-top: 90px;
}
.pg_home .section#sec4{
  margin-top: 90px;
}



.home_msg1{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 25px;
}

.home_feature_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 35px;
}
.home_feature_items .item{
  width: 33.333%;
  padding-left: 20px;
  padding-right: 20px;
}
.home_feature_items .item .inner{
  background: #f3f3f3;
  border-bottom: 5px solid #0063ae;
  padding-bottom: 20px;
  height: 100%;
}
.home_feature_items .item .img{
  position: relative;
  text-align: center;
}
.home_feature_items .item .img img{
  width: 100%;
}
.home_feature_items .item .num{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-family: "AlteDIN", "Noto Sans JP", sans-serif;
  color: #FFF;
  background: #0063ae;
  letter-spacing: 0.02em;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.home_feature_items .item .title,
.home_feature_items .item .txt{
  font-weight: 500;
  padding: 0 15px;
  letter-spacing: 0.06em;
}
.home_feature_items .item .title{
  font-size: 23px;
  text-align: center;
  margin-top: 35px;
}
.home_feature_items .item .txt{
  font-size: 15px;
  line-height: 1.86;
  margin-top: 5px;
}

/* サービス */
.home_service_wrap{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url('/img/home/service_bg.jpg');
  padding: 60px 0;
}

.home_service_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.home_service_items .item{
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}
.home_service_items .item:nth-child(n+3){
  margin-top: 30px;
}
.home_service_items .item .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  background: #FFF;
  box-shadow: 0px 3px 4.6px 0.4px rgba(0, 0, 0, 0.41);
  position: relative;
  text-decoration: none;
}
.home_service_items .item .inner:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: #024475;
  color: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_service_items .item .inner:hover{
  opacity: 0.8;
}

.home_service_items .item .box1{
  width: 120px;
  text-align: center;
}
.home_service_items .item .box2{
  width: calc(100% - 120px - 30px);
  padding: 20px 0;
  margin-right: 30px;
}
.home_service_items .item .title{
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 28px;
}
.home_service_items .item .txt{
  font-weight: 500;
  font-size: 15px;
  line-height: 1.86;
  padding-right: 30px;
  letter-spacing: 0.06em;
}


/* 当事務所について */
.home_aboutus_wrap{
  background-repeat: no-repeat;
  background-image: url('/img/home/aboutus_bg.jpg');
  background-position: center top;
  height: 540px;
  margin-bottom: 30px;
}

.home_aboutus_tt{
  text-align: center;
  font-size: 28px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  color: #024475;
  line-height: 1.5;
  margin-bottom: 25px;
}
.home_aboutus_txt{
  text-align: center;
  line-height: 2.25;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.home_posts_wrap{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.home_posts_wrap .box{
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.home_posts_wrap .inner{
  padding-top: 20px;
  border-top: 5px solid #0063ae;
}



.home_post_items{
  margin-bottom: 40px;
}
.home_post_items .item{
  padding-bottom: 20px;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
  padding-right: 30px;
}
.home_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%);
}

.home_post_items .item + .item{
  margin-top: 20px;
}

.home_post_items .item .date{
  font-size: 15px;
  color: #5a5a5a;
  margin-bottom: 10px;
}
.home_post_items .item .title{
  font-weight: 600;
}
.home_post_items .item .title a{
  display: block;
}


/* **********************************
 *  
 * ********************************* */
.pg_service{
  
}
.pg_service .section#sec1{
  margin-top: 100px;
}
.pg_service .section#sec2{
  
}
.pg_service .section#sec3{
  
}

.pg_service .home_service_items{
  
}
.pg_service .home_service_items .item{
  width: 100%;
}
.pg_service .home_service_items .item:nth-child(n+2){
  margin-top: 50px;
}
.pg_service .home_service_items .item .inner{
  padding: 25px 0;
}
.pg_service .home_service_items .item .title{
  margin-bottom: 10px;
}




/* **********************************
 *  
 * ********************************* */
.pg_manage{
  
}
.pg_manage .section#sec1{
  
}
.pg_manage .section#sec2{
  padding-top: 80px;
  padding-bottom: 115px;
  border-bottom: 3px solid #dcdcdc;
}
.pg_manage .section#sec3{
  padding-top: 80px;
  padding-bottom: 115px;
  border-bottom: 3px solid #dcdcdc;
}
.pg_manage .section#sec4{
  padding-top: 80px;
  padding-bottom: 115px;
  border-bottom: 3px solid #dcdcdc;
}
.pg_manage .section#sec5{
  padding-top: 80px;
}

.manage_header{
  background: #eeeeee;
  padding: 60px 0;
}

.manage_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.manage_nav li{
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.manage_nav li .inner{
  display: block;
  height: 100%;
  background: #0063ae;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  padding: 10px 15px;
}
.manage_nav li:nth-child(n+3){
  margin-top: 20px;
}
.manage_nav li .title{
  font-size: 20px;
  font-family: "Noto Serif JP";
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #FFF;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.manage_nav li .txt{
  font-size: 15px;
  line-height: 1.46;
}
.manage_nav li .txt:after{
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  
  display: block;
  background: #FFF;
  color: #0063ae;
  text-align: center;
  line-height: 16px;
  margin-top: 5px;
}

.manage_header_msg{
  text-align: center;
}
.manage_header_msg .txt1{
  font-size: 24px;
  font-family: "Noto Serif JP";
  font-weight: 600;
}
.manage_header_msg .txt2{
  line-height: 1.875;
  margin-top: 15px;
}


.manage_tt1{
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  text-align: center;
  background: #eeeeee;
  border-bottom: 2px solid #0063ae;
  margin-bottom: 35px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.manage_tt2{
  font-size: 26px;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #0063ae;
  margin-bottom: 30px;
  padding-bottom: 5px;
  letter-spacing: 0.06em;
}
.manage_tt2.md{
  font-size: 21px;
}

.manage_block1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 65px;
}
.manage_block1 + .manage_block1{
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px dotted;
}

.manage_block1 .box1{
  /*width: 60.71%;*/
  width: 62%;
}
.manage_block1 .box2{
  width: 33.92%;
}
.manage_block1 .title{
  font-size: 21px;
  margin-bottom: 15px;
}
.manage_block1 .title.blue{
  color: #0063ae;
}
.manage_block1 .txt + .title{
  margin-top: 30px;
}

.manage_block1 .txt{
  line-height: 1.875;
}
.manage_block1 .txt ul.list1{
  list-style: disc;
  padding-left: 1.5em;
  color: #0063ae;
}

.manage_block1 .txt ul.list2{
  
}
.manage_block1 .txt ul.list2 li{
  position: relative;
  padding-left: 1em;
}
.manage_block1 .txt ul.list2 li:before{
  content: "■";
  color: #0063ae;
  position: absolute;
  left: 0;
}

.manage_block1 .txt ul.point{
  width: 560px;
  max-width: 100%;
  margin-top: 25px;
}
.manage_block1 .txt ul.point li{
  display: flex;
  align-items: center;
  background: #eeeeee;
  font-size: 15px;
  font-weight: 500;
}
.manage_block1 .txt ul.point li + li{
  margin-top: 5px;
}
.manage_block1 .txt ul.point li span{
  background: #0063ae;
  color: #FFF;
  padding: 6px 14px;
  margin-right: 25px;
}


.tt2 + .manage_block1{
  margin-top: 40px;
}


.manage_flow_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -12.5px;
  margin-right: -12.5px;
  margin-bottom: 40px;
}
.manage_flow_items .item{
  width: 33.333%;
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.manage_flow_items .item:nth-child(n+4){
  margin-top: 25px;
}
.manage_flow_items .item .inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  background: #FFF;
  box-shadow: 0px 3px 4.6px 0.4px rgba(0, 0, 0, 0.41);
  position: relative;
  text-decoration: none;
}
.manage_flow_items .item .inner:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: #024475;
  color: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.manage_flow_items .item:last-child .inner:after{
  content: "";
}
/*.manage_flow_items .item .inner:hover{
  opacity: 0.8;
}*/

.manage_flow_items .item .box1{
  height: 100%;
  padding: 20px 30px 20px 25px;
}

.manage_flow_items .item .title{
  font-family: "Noto sans JP";
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.manage_flow_items .item .title:after{
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #0063ae;
  margin-top: 5px;
}
.manage_flow_items .item .txt{
  line-height: 1.86;
  padding-right: 30px;
}

/* ５つの経営指標 */
.manage_goal_items{
  
}
.manage_goal_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -13px;
  margin-right: -13px;
}
.manage_goal_items li{
  display: flex;
  align-content: center;
  
  width: 33.333%;
  padding-left: 13px;
  padding-right: 13px;
}
.manage_goal_items li:nth-child(n+4){
  margin-top: 35px;
}
.manage_goal_items li em{
  width: 65px;
  padding: 13px 0;
  background: #0063ae;
  color: #FFF;
  font-size: 15px;
  text-align: center;
  
}
.manage_goal_items li span{
  width: calc(100% - 65px);
  background: #eeeeee;
  font-size: 16px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

/* 会社設立トータルサポート */
.manage_support_msg{
  padding-top: 10px;
  margin-bottom: 50px;
}
.manage_support_msg .txt1{
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 21px;
  text-align: center;
}
.manage_support_msg .txt2{
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
  border: 3px solid #e60012;
  position: relative;
  padding: 16px 10px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 25px;
  letter-spacing: 0.05em;
}
.manage_support_msg .txt2:before{
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  border: 1px solid #e60012;
}
.manage_support_msg .txt2 em{
  color: #e60012;
}


.manage_block2{
  background: #eeeeee;
  padding-top: 15px;
  padding-bottom: 50px;
  margin-bottom: 60px;
}
.manage_support_items{
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px;
  margin: 0 -15px;
}
.manage_support_items .item{
  width: 33.333%;
  padding-left: 17.5px;
  padding-right: 17.5px;
}
.manage_support_items .item:nth-child(n+4){
  margin-top: 25px;
}
.manage_support_items .item .inner{
  background: #FFF;
  padding: 0 5px;
  padding-bottom: 10px;
  height: 100%;
}
.manage_support_items .item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid #0063ae;
  padding-top: 10px;
  padding-bottom: 10px;
}
.manage_support_items .item .title.left{
  text-align: left;
}
.manage_support_items .item .title span{
  background: #0063ae;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  display: inline-block;
  width: 110px;
  padding: 2px;
  margin-right: 15px;
}
.manage_support_items .item .txt{
  line-height: 1.875;
  padding: 10px 5px ;
  min-height: 100px;
}

.manage_support_items.md{
  
}
.manage_support_items.md .item{
  width: 50%;
}
.manage_support_items.md .item:nth-child(n+3){
  margin-top: 15px;
}
.manage_support_items.md .item .inner{
  padding-bottom: 0;
}
.manage_support_items.md .item .txt{
  min-height: 0;
  font-weight: 500;
}

.manage_merit_msg1{
  line-height: 1.875;
}
.manage_merit_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 25px -10px;
}
.manage_merit_items .box1,
.manage_merit_items .box2{
  width: 49.10%;
  padding: 10px 10px;
  color: #FFF;
  border-radius: 5px;
}
.manage_merit_items .box1{
  background: #0063ae;
}
.manage_merit_items .box2{
  background: #01284e;
}
.manage_merit_items .title{
  background: #FFF;
  color: #111111;
  text-align: center;
  border-radius: 5px;
  padding: 8px;
}
.manage_merit_items .txt{
  font-size: 15px;
  padding: 15px 0;
}
.manage_merit_items ul{
  list-style: disc;
  padding-left: 1.5em;
}

.manage_cash_msg1{
  text-align: center;
  margin-bottom: 40px;
  padding-top: 15px;
}
.manage_cash_msg1 .txt1{
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 21px;
}
.manage_cash_msg1 .txt2{
  margin-top: 15px;
}

.manage_cash_msg2{
  font-size: 24px;
  font-family: "Noto Serif JP";
  color: #0063ae;
  text-align: center;
}


/* 経営計画支援サービス */
.manage_plan_msg1{
  text-align: center;
  line-height: 1.75;
  margin-bottom: 70px;
}
.manage_plan_msg1 .bold{
  font-size: 20px;
  font-weight: bold;
  color: #0063ae;
  margin: 15px 0;
}

.manage_plan_msg1 + .manage_plan_block1{
  margin-top: -25px;
}

.manage_plan_block1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.manage_plan_block1 .box1,
.manage_plan_block1 .box3{
  width: 33.92%;
  border-radius: 5px;
  padding: 10px;
}
.manage_plan_block1 .box1{
  background: #0063ae;
}
.manage_plan_block1 .box2{
  width: calc(100% - 67.84% - 12px);
  font-size: 30px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.manage_plan_block1 .box2 span{
  display: inline-block;
  border-bottom: 3px solid #e60012;
  padding-bottom: 2px;
}
.manage_plan_block1 .box2 span:after{
  content: "";
  display: block;
  height: 3px;
  background: #e60012;
}
.manage_plan_block1 .box2 em{
  color: #0063ae;
}
.manage_plan_block1 .box3{
  background: #00736d;
}
.manage_plan_block1 .inner{
  background: #FFF;
  border-radius: 5px;
  height: 100%;
}
.manage_plan_block1 .title{
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
}
.manage_plan_block1 .title span{
  display: block;
  font-size: 20px;
  font-weight: bold;
}
.manage_plan_block1 .box1 .title{
  border-bottom: 2px solid #0063ae;
}
.manage_plan_block1 .box3 .title{
  border-bottom: 2px solid #00736d;
}

.manage_plan_block1 .txt{
  line-height: 1.75;
  padding: 10px;
}


.manage_plan_items{
  margin-bottom: 60px;
}
.manage_plan_items .item{
  
}
.manage_plan_items .item + .item{
  margin-top: 10px;
}
.manage_plan_items .item .inner{
  background: #eeeeee;
  padding: 15px 18px;
}
.manage_plan_items .item .title{
  font-weight: bold;
  font-family: "Noto Sans JP";
  margin-bottom: 10px;
}
.manage_plan_items .item .title:after{
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0063ae;
  margin-top: 10px;
}
.manage_plan_items .item .title.blue{
  color: #0063ae;
}
.manage_plan_items .item .txt{
  line-height: 1.75;
}

.manage_plan_items ol{
  padding-left: 1.5em;
  margin-top: 15px;
}
.manage_plan_items ol li{
  
}
.manage_plan_items ul{
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 15px;
}

/* **********************************
 *  相続
 * ********************************* */
.pg_inherit{
  
}
.pg_inherit .section#sec1{
  
}
.pg_inherit .section#sec2{
  margin-top: 100px;
}
.pg_inherit .section#sec3{
  
}

.inherit_flow_items{
  padding: 0 15px;
}
.inherit_flow_items .item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  padding: 15px;
}
.inherit_flow_items .item + .item{
  margin-top: 20px;
}
.inherit_flow_items .item .box1{
  /*width: 77.06%;*/
  width: 80%;
}
.inherit_flow_items .item .box2{
  width: 18.34%;
}
.inherit_flow_items .item .title{
  font-size: 18px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.inherit_flow_items .item .title span{
  display: inline-block;
  background: #0063ae;
  color: #FFF;
  /*padding: 0 25px;*/
  width: 110px;
  padding: 2px 0;
  text-align: center;
}
.inherit_flow_items .item .txt{
  line-height: 1.875;
}
.inherit_flow_items .item .help{
  border: 1px solid #0063ae;
  padding: 2px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  width: 350px;
  max-width: 100%;
  margin-top: 10px;
}
.inherit_flow_items .item .help dt{
  background: #0063ae;
  color: #FFF;
  padding: 6px 5px;
  margin-right: 10px;
}
.inherit_flow_items .item .help dd{
  padding: 6px 5px;
}


/* **********************************
 *  補助金・助成金
 * ********************************* */
.pg_subsidy{
  
}
.pg_subsidy .section#sec1{
  
}
.pg_subsidy .section#sec2{
  margin-top: 100px;
}
.pg_subsidy .section#sec3{
  
}

/* **********************************
 *  介護
 * ********************************* */
.pg_nursing{
  
}
.pg_nursing .section#sec1{
  
}
.pg_nursing .section#sec2{
  margin-top: 100px;
}
.pg_nursing .section#sec3{
  
}


.nursing_msg{
  text-align: center;
  color: #0063ae;
  font-weight: 500;
  margin-top: 30px;
  padding: 0 10px;
}
.nursing_bn{
  text-align: center;
  margin-top: 100px;
}


/* **********************************
 *  プラン
 * ********************************* */
.pg_plan{
  
}
.pg_plan .section#sec1{
  
}
.pg_plan .section#sec2{
  margin-top: 80px;
}
.pg_plan .section#sec3{
  
}

.plan_block1{
  background: #eeeeee;
  padding: 20px;
}
.plan_block1 + .plan_block1{
  margin-top: 35px;
}
.plan_block1 .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  padding: 50px 25px;
  border-radius: 10px;
}
.plan_block1 .box1{
  width: 30%;
}
.plan_block1 .box2{
  width: 69%;
}

.plan_block1 .title{
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto sans JP";
  line-height: 1.4;
  padding-left: 1em;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 3px solid #0063ae;
}
.plan_block1 .title em{
  font-size: 20px;
  font-weight: 700;
  border-right: 2px solid #0063ae;
  padding-right: 20px;
  margin-right: 20px;
  
}
.plan_block1 .title span{
  color: #0063ae;
  font-weight: 700;
  border-right: 1px solid #676767;
  padding-right: 25px;
  margin-right: 25px;
}
.plan_block1 .txt1{
  line-height: 1.875;
  
}
.plan_block1 .txt2{
  font-size: 15px;
  line-height: 1.875;
  margin-top: 20px;
}
.plan_block1 ul{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 30px;
}
.plan_block1 ul li{
  width: 28.75%;
  margin: 0 10px;
  padding: 10px 0;
  background: #0063ae;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  
}
.plan_block1 ul li:nth-child(n+4){
  margin-top: 15px;
}

.plan_block1 .price{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.plan_block1 .price dt{
  font-size: 18px;
  font-weight: bold;
}
.plan_block1 .price dt .p1{
  display: block;
  color: #0063ae;
}
.plan_block1 .price dt .p2{
  display: block;
  text-align: center;
  color: #e70808;
  border-top: 1px dotted #111111;
  padding-top: 5px;
  margin-top: 5px;
}
.plan_block1 .price dd{
  width: 300px;
}
.plan_block1 .price dd a{
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #0063ae;
  padding: 11px 10px;
  position: relative;
}
.plan_block1 .price dd a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* **********************************
 *  
 * ********************************* */
.pg_office{
  
}
.pg_office .section#sec1{
  
}
.pg_office .section#sec2{
  margin-top: 100px;
}
.pg_office .section#sec3{
  margin-top: 70px;
}
.pg_office .section#sec4{
  margin-top: 70px;
}
.pg_office .section#sec5{
  margin-top: 100px;
  padding-top: 90px;
  border-top: 3px solid #dcdcdc;
}

.office_block1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted;
}
.office_block1 .box1{
  width: 71.42%;
}
.office_block1 .box2{
  width: 25.53%;
}
.office_block1 .txt{
  margin-bottom: 40px;
}
.office_block1 .history{
  font-size: 15px;
  width: 560px;
  max-width: 100%;
}
.office_block1 .history + .history{
  margin-top: 18px;
}
.office_block1 .history dt{
  font-weight: 500;
  border-bottom: 2px solid #dcdcdc;
  position: relative;
  padding: 2px 0;
}
.office_block1 .history dt:after{
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  background: #0063ae;
  position: absolute;
  top: 100%;
  left: 0;
}
.office_block1 .history dd{
  margin-top: 10px;
  line-height: 1.86;
}

.pg_office .manage_block1 + .manage_block1{
  border-top: 0;
  padding-top: 0;
}

.office_seminar_msg{
  line-height: 1.75;
  margin-bottom: 25px;
}

.office_staff{
  
}
.office_staff + .office_staff{
  margin-top: 30px;
}
.office_staff .title{
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 16px;
  color: #0063ae;
  border: 1px solid #0063ae;
  border-left-width: 5px;
  padding: 10px 25px;
  margin-bottom: 20px;
}
.office_staff dl{
  background: #eeeeee;
  padding: 0 10px;
}
.office_staff dl + dl{
  margin-top: 10px;
}
.office_staff dl dt,
.office_staff dl dd{
  padding: 10px 15px;
}
.office_staff dl dt{
  font-weight: bold;
}
.office_staff dl dd{
  border-top: 2px solid #FFF;
}

/* **********************************
 *  
 * ********************************* */
.pg_faq{
  
}
.pg_faq .section#sec1{
  margin-top: 100px;
}


.faq_items{
  
}
.faq_items .item{
  background: #eeeeee;
  padding: 20px 15px;
}
.faq_items .item + .item{
  margin-top: 25px;
}
.faq_items .item dl{
  background: #ffffff;
  border: 1px solid #8dafc8;
  padding: 20px 30px;
}
.faq_items .item dt,
.faq_items .item dd{
  position: relative;
  padding-left: 35px;
  line-height: 1.875;
}
.faq_items .item dt{
  font-size: 18px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  border-bottom: 1px dotted;
  padding-bottom: 15px;
  
}
.faq_items .item dd{
  margin-top: 15px;
  padding-bottom: 10px;
}
.faq_items .item dt:before,
.faq_items .item dd:before{
  font-size: 24px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  line-height: 1.4;
  position: absolute;
  left: 0;
}
.faq_items .item dt:before{
  content: "Q.";
  color: #0063ae;
}
.faq_items .item dd:before{
  content: "A.";
  color: #fb6a0a;
}
.faq_items .item dd ol{
  padding-left: 1.5em;
}


/* **********************************
 *  
 * ********************************* */
.pg_blog{
  
}
.pg_blog .section#sec1{
  margin-top: 80px;
}



/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  margin-top: 90px;
}
.pg_company .section#sec2{
  margin-top: 70px;
}
.pg_company .section#sec3{
  
}

.pg_company .map iframe{
  
}
.pg_company .addr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
}
.pg_company .addr li{
  width: 49.10%;
  display: flex;
  align-items: center;
  background: #eeeeee;
  font-size: 15px;
  font-weight: 500;
}
.pg_company .addr li:nth-child(n+3){
  margin-top: 10px;
}
.pg_company .addr li span{
  background: #0063ae;
  color: #FFF;
  width: 100px;
  text-align: center;
  padding: 6px 0;
  margin-right: 25px;
}



/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{
  
}
.pg_contact .section#sec1{
  margin-top: 100px;
}
.pg_contact .section#sec2{
  
}
.pg_contact .section#sec3{
  
}

.contact_tt{
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 23px;
  text-align: center;
  margin-bottom: 25px;
}
.contact_txt{
  margin: 0 8%;
  margin-bottom: 30px;
  line-height: 1.875;
}


.section#privacy{
  margin-top: 100px;
}
