@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.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: none;
}

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


.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}


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){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:1200px){
  .pc:not(.md){
    display: block!important;
  }
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}



.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px){
  .container {
    width: 540px;
  }
}
@media (min-width: 768px){
  .container {
    width: 720px;
  }
}

@media (min-width: 992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    width: 1140px;
  }
}



.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 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: 0px 0;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
}
.hdr_left {
  margin-top: 10px;
  margin-left: 50px;
}
header .hdr1 .hdr_logo{
  line-height: 1;
}
header .hdr1 .hdr_contact{
}
.hdr_contact a {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Outfit", system-ui;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 0.6;
  background: #b4d4f4;
  padding: 32px 0;
  transition: all .3s;
  text-decoration: none;
  flex-direction: column;
}
.hdr_contact a:hover {
  background: #73a3d3;
}

/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.gnav > ul{
  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.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 {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4b8ec6;
  padding: 0;
  white-space: nowrap;
  display: block;
}
.gnav li a:hover {
  color: #4b8ec6;
  transition: 0.3s;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
}

.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;
}
.tel_outer {
  padding-right: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: 'Outfit';
  z-index: 2;
}

.mv{
  position: relative;
  /*background-image: url('/img/mv.jpg');*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_box{

}
.mv .mv_box .txt{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.91em;
  color: #fff;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
/*メインビジュアル高さ調整*/
.mv,
.mv .img,
.mv .mv_box .img img{
  height: 250px;
}





@media (min-width:768px){


  .hdr_top_navi_wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  .hdr_outer {
    display: flex;
    align-items: center;
  }

  .hdr_left {
    margin-top: 15px;
    margin-left: 15px;
  }

  .mv .mv_box .txt{
    font-size: 24px;
  }
  /*メインビジュアル高さ調整*/
  .mv,
  .mv .img,
  .mv .mv_box .img img{
    height: 450px;
  }
  /*ナビ透明度*/
  .gnav li,
  .gnav li a{
    transition: all .3s;
  }
  .gnav:hover li{
    opacity: 0.5;
  }
  .gnav li:hover{
    opacity: 1;
  }
  .gnav li:hover a{
    opacity: 1;
  }

}


@media (max-width:767px){
  header{
    padding: 10px 0;
  }
  /*  .gnav_outer,*/
  .hdr_contact,
  .tel_outer{
    display: none;
  }
  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;
    /* transition: all 0.2s; */
    transform: translateX(100%);
    padding: 15px;
  }
  .gnav.active {
    transform: translateX(0%);
    background: #f5f5f5;
  }
  .gnav > ul{
    flex-wrap: wrap;
  }
  .gnav > ul > li{
    padding: 28px 0;
    border-bottom: 1px solid #ccc;
  }
  .hdr_left{
    margin-top:0;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

}
@media (min-width: 768px) and (max-width:1023px){

  .gnav {
    align-items: center;
    font-size: 20px;
    width: calc(100% - 60px);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: flex !important;
    position: fixed;
    left: 100%;
    z-index: 1000000000;
    height: 0;
    /* background: #47a3cd; */
    /* padding: 20px 15px; */
    font-size: 16px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 1.8s;
    opacity: 0;
    background: #b4d4f4;
    box-shadow: 0 0 4px 0px #666;
    margin: 0;
  }
  .gnav.active {
    align-items: flex-start;
    left: 50%;
    right: inherit;
    top: 50%;
    height: auto;
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  .gnav .inner{
    width: 100%;
    ;
  }
  .gnav.active .inner ul{
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    /* border: 1px solid #000; */
    border-right: 1px solid #9f9f9f;
    border-left: 1px solid #9f9f9f;
    background: #f6f6f6;
  }
  .gnav li {
    width: 33.333%;
    padding: 100px 10px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.075em;
    text-align: center;
    color: #181818;
    display: block;
    height: auto;
    border-right: 1px solid #9f9f9f;
    border-bottom: 1px solid #9f9f9f;
    padding: 100px 0;
  }
  .gnav .gnav_box1 {
    width: 65px;
    padding: 30px 0;
  }
  .gnav .gnav_box2 {
    width: 65px;
    text-align: center;
    padding: 30px 0;
  }
  .hdr1 button{
    background: #fff;
    border: 0;
  }
  .gnav button{
    background: #b4d4f4;
    border: 0;
  }

  .hdr_menu_btn{
    padding: 0 10px;
  }
  .hdr_menu_btn button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width:1024px){
  header{
    padding: 0 0 0 16px;
    ;
  }
  .hdr_top_navi_wrap {
    margin-right: 32px;
  }
  .gnav li a{
    padding: 0 12px;
  }

  .mv .mv_box .txt{
    font-size: 24px;
  }
  /*メインビジュアル高さ調整*/
  .mv,
  .mv .img,
  .mv .mv_box .img img{
    height: 600px;
  }
}
@media (min-width:1200px){
  header{
    padding: 0 0 0 36px;
    ;
  }
  .gnav li a {
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #4b8ec6;
    padding: 24px 16px 0;
  }
  /*メインビジュアル高さ調整*/
  .mv,
  .mv .img,
  .mv .mv_box .img img{
    height: 820px;
  }
}

/* **********************************
 *  フッター
 * ********************************* */
footer{
  color: #181818;
}
.footer_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.frt1_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 610px;
}
footer .ftr1 {
  width: 100%;
  background-color: #b4d4f4;
  padding: 40px 15px 20px 15px;
  margin-bottom: 42px;
}
footer .ftr1 {
  order: 2;
}

footer .box1 {
  width: 100%;
  padding-right: 0px;
}
footer .box1 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.ftr_logo {
  text-align: center;
  width: 65%;
  margin-bottom: 30px;
}

footer .ftr_addr{
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.16em;
  text-align: center;
}

footer .ftr_contact{
  background: #FFF;
  color: #111;
  padding: 5px;
}
footer .ftr_contact .inner{
  border: 2px solid #84ccad;
  padding: 10px;
  font-weight: 500;
  text-align: center;
}
footer .ftr_contact .title{

  letter-spacing: 0.05em;
}
footer .ftr_contact .title span{
  display: inline-block;
  padding: 5px 30px;
  border-bottom: 1px solid;
}


footer .copy {
  color: #111;
  font-size: 14px;
  padding: 10px 0;
  margin-top: 26px;
  letter-spacing: 0.075em;
}
footer .copy a{
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.075em;
  font-weight: 500;
}
footer .box2 {
  width: 22.833%;
}

footer .ftr_links {
  display: flex;
  font-size: 14px;
  line-height: 2.85;
  letter-spacing: 0.160em;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}
footer .ftr_links li {
  padding: 0 0px;
  line-height: 1.1;
  margin-bottom: 24px;
}
footer .ftr_links li+li{

}
/* メニュー透明 */
ul.ftr_links  li,
ul.ftr_links .gnav li a{
  transition: all .3s;
}
ul.ftr_links:hover li{
  opacity: 0.3;
}
ul.ftr_links li:hover{
  opacity: 1;
}
ul.ftr_linksli:hover a{
  opacity: 1;
  color: #4b8ec6;
}

/* 右BOX */

footer .ftr2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  background-color: #73a3d3;
  width: 1002%;
  padding: 20px 10px 30px 10px;
}

footer .ftr2 {
  order: 1;
}
.ftr_contact_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
}
.ftr_contac_en {
  font-family: Outfit;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.2em;
  position: relative;
  margin-bottom: 16px;
}
.ftr_contac_en:after {
  content: "";
  width: 125px;
  height: 4px;
  background: url(/img/tt_bottom.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -22%;
  z-index: 0;
  transform: translateX(-50%);
}

.ftr_contac_jp {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.34em;
  margin-bottom: 12px;
}
.ftr_contac_phone {
  font-family: Outfit;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}
footer a.link_1 {
  display: block;
  font-weight: 500;
  letter-spacing: 0.075em;
  background-color: #ffff;
  color: #73a3d3;
  border: 1px solid #b4d4f4;
  padding: 15px 20px;
  border-radius: 30px;
  position: relative;
  text-decoration: none;
  margin: 0 15px;
  transition: 0.3s;
}
footer a.link_1:hover {
  background-color: #b4d4f4;
  color: #fff;
  border: 1px solid #b4d4f4;
}
.ftr_contac_mail {

}
.fas fa-envelope {

}

.footer_fix{
  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 .ftr_contact .btn1{
  letter-spacing: 0.05em;
}
footer .ftr_contact .btn1 span{
  display: inline-block;
  font-size: 31px;
}
footer .ftr_contact .btn1 span:first-letter{
  font-size: 38px;
}
footer .ftr_contact .btn1 a{
  font-size: 36px;
}
footer .ftr_contact .btn2{
  margin-top: 6px;
}
footer .ftr_contact .btn2 a{
  display: inline-block;
  width: 220px;
  max-width: 100%;
  background: #f29b76;
  padding: 5px;
}
footer .ftr_contact .btn2 i{
  margin-right: 5px;
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #4072b3;
  color: #FFF;
  text-decoration: none;
}
@media (max-width:320px){
  footer .copy {
    margin-left: 9px;
  }
  .footer_fix ul li a {
    font-size: 12px;
  }
}
@media (max-width:425px){
  footer .box2 {
    display: none;
  }
  footer .copy a {
    font-size: 13px;
  }
}
@media (min-width:768px){
  footer .box1 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .ftr_contac_phone {
    font-family: Outfit;
    font-size: 30px;
    margin-bottom: 40px;
  }
  .ftr_contac_jp {
    font-size: 24px;
    margin-bottom: 36px;
  }
  footer a.link_1 {
    padding: 15px 55px;
  }
  footer .ftr1{
    width: 100%;
    background-color: #b4d4f4;
    padding:102px 105px 20px 105px;
  }

  .ftr_logo {
    text-align: left;
    width: 100%;
  }
  footer .ftr_logo{
    margin-bottom: 95px;
  }
  footer .ftr_addr{
    text-align: left;
  }
  footer .copy{
    margin-top: 68px;
  }
  footer .copy {
    font-size: 15px;
  }
  footer a.link_1 {
    padding: 15px 23px;
  }
  .ftr_contac_jp {
    font-size: 21px;
  }
  .footer_fix{
    display: none;
  }
  footer .ftr1 {
    margin-bottom: 0px;
  }
  footer .ftr2 {
    padding: 35px 10px 40px 10px;
  }

}
@media (min-width:1024px){
  footer .ftr1 {
    width: 58.8%;
    padding: 102px 50px 0px 44px;
  }
  footer .ftr2 {
    position: relative;
    width: 41.2%;
    padding: 88px 50px 0px 50px;
  }
  footer a.link_1 {
    padding: 15px 30px;
  }
  footer .box1 {
    width: 85.33%;
  }
  footer .ftr1 {
    order: 1;
  }
  footer .ftr2 {
    order: 2;
  }
}
@media (min-width:1200px){
  footer .ftr1{
    padding:102px 100px 0px 100px;
  }
  footer a.link_1 {
    padding: 15px 55px;
  }
}
@media (min-width:1600px){
  footer .ftr1{
    width: 58.8%;
    background-color: #b4d4f4;
    padding:102px 255px 0px 282px;
    position: relative;
    z-index: 1;
  }
  footer .ftr1:before{
    content: "";
    height: 100%;
    background: #b4d4f4;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    left: -30%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
  }
  footer .ftr2:before {

  }

}

/* **********************************
 *  フッター ボトムアイコン
 * ********************************* */


.footer_fix {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #eee;
  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,
.footer_fix ul li.btn2{

}

.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #73a3d3;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li.btn1.yellow a {
  display: block;
  padding: 10px;
  color: #FF0;
  text-decoration: none;
}


/* footer上の段 */
.footer_top {
  background-color: #eef4e9;
  padding: 10px 0px 10px 12px;
  padding-top: 0;
  margin-bottom: 82px;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.075em;
  font-family: Noto Serif JP;
}
.footer_copy1 {
  font-size: 16px;
  padding-top: 19px;
  letter-spacing: 0.075em;
  font-weight: 700;
}
img.footer_img {
  padding-right: 7px;
  margin-top: -5px;
}

/* 黄色BOX */
.insaide{
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: center;
}
footer_top .item {
  width: 50%;
}
div#footer {
  border: 1px solid #fcdb57;
  background-color: #fcdb57;
  border-radius: 20px;
}

.footer_items {
  border: 1px solid #fcdb57;
  border-radius: 20px;
  margin: 15px 17px 17px 19px;
}
.footer_items {
  background: repeat;
  background-image: url(/img/footer/back_dots1.jpg);
}
.footer_items .items {
  width: 50%;
}
.footer_img {
  padding-left: 4px;
  padding-top: 4px;
}
.footer_items {
  padding: 20px 0px 20px 0px;
}
.footer_items .item .inner {
  padding: 0;
}
.footer_top .section#sec10 {
  margin-top: 73px;
  margin-bottom: 191px;
}

span.line {
  white-space: nowrap;
  padding-left: 10px;
  font-weight: 600;
}
.footer_text1 {
  font-size: 21px;
  letter-spacing: 0.075em;
  font-family: Noto Serif JP;
  font-weight: bold;
  line-height: 1.8;
}
.number1 {
  font-size: 38px;
  font-family: Outfit;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
span.number2 {
  font-size: 30px;
}
.number1 a{
  text-decoration: none;
}
.green_box {
  background-color: #a4cf7e;
  font-family: 'Noto Sans JP';
  font-size: 21px;
  padding: 7px 26px;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0em;
  transition: all .3s;
  border: 1px solid transparent;
}
.green_box:hover{
  background-color: #fff;
  border: 1px solid #a4cf7e;
}
.green_box:hover a:after{
  right: -10px;
  ;
}
.green_box a{
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}
.green_box a:after{
  content: "➡";
  display: block;
  font-size: 22px;
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  transition: all .3s;
}
footer_form {
  font-size: 16px;
  letter-spacing: 0;
  margin-right: 6px;
}
.contact img {
  padding-right: 16px;
  margin-left: -9px;
}

span.arr {
  font-size: 23px;
}
ul.left_navi {
  margin-right: 28px;
}

span.contact {
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}
span.arr {
  vertical-align: middle;
}
span.footer_form {
  font-size: 16px;
  margin-left: 4px;
}


.green_box a .txt1 img{
  margin-right: 5px;
}
.footer_text1 {
  font-size: 18px;
  padding-top: 10px;
}

@media(max-width:320px){

}

@media(max-width:375px){

  .green_box a:after {
    content: "➡";
    right: 0px;
  }

  .number1 {
    margin-top: 5px;
  }
}

@media(max-width:425px){
  .number1 {
    font-size: 27px;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    justify-content: center;
  }
}
@media(min-width:768px){
  .footer_fix {
    display: 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: #fff;
  margin-top: 10px;
  padding: 8px 7px 8px 21px;
  position: relative;
}
.post_items .item:last-child{
  /* border-bottom: 1px solid #CCC; */
}
.post_items .item .img{

}
.post_items .item a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
}
.post_items .item a:after {
  content: "→";
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
}
.post_items .item:hover {
  background: #c7e2f8;
  transition: 0.3s;
}

.post_items .item a:hover:after {
  position: absolute;
  right: 16px;
}
.post_items .item .date{
  width: 130px;
  font-family: Outfit;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.075em;
  color: #181818;
}
.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: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2.25;
  width: calc(100% - 50px);
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item .title a:hover {
  text-decoration: none;
}
.post_items .item a:after {
  content: "→";
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
}
.post_items .item.single_item {
  display: flex;
  flex-wrap: wrap;
  background:#fff;
}
.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;
}
.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;
}


@media (min-width:768px){
  .post_items .item a {
    display: flex;
    flex-direction: row;
    position: relative;
  }

  .post_items .item .title {
    width: calc(100% - 130px - 150px);
  }

}
@media (min-width:1024px){

  .post_items .item .title {
    margin-left: 38px;
  }
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}

.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #b4d4f4;
  padding: 5px 12px;
  margin: 4px 4px;
  color: #4b8ec6;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #b4d4f4;
}
span.page-numbers.current {
  color: #fff;
}
.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 {
  background: #bcbcbc;
  padding: 10px 60px;
}

/* 検索 */
.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;
  color: #4b8ec6;
}
.pagetop a i{
  font-size: 40px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 20px;
  letter-spacing: 0.075em;

}
.breadcrumb li{
  /*display: inline;*/
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 13px;
}
.breadcrumb li:last-child{
  font-weight: 400;
  white-space: normal;
}
.breadcrumb li a{
  position: relative;
  padding-right: 26px;
}
.breadcrumb li a:after {
  content: "＞";
  font-family: "Noto Sans JP";
  font-weight: 400;
  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%);
}*/

@media (min-width:768px){
  .pagination .nav-links{
    padding-top: 40px;
  }
  .pagination .nav-posts .page-archive a{
    padding: 10px 100px;
  }
}
@media (min-width:1024px){
  .pagination .nav-links{
    padding-top: 65px;
  }

}
@media (min-width:1200px){

}




/* **********************************
 *  メイン 共通
 * ********************************* */
.main{
  padding: 0 0 0px;
}
.container.top {
  margin-top: 50px;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.32em;
}
.tt1 span{
  display: block;
  position: relative;
  font-family: Outfit;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #73a3d3;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.tt1 span:before {
  content: "";
  width: 125px;
  height: 5px;
  background: url(/img/tt_bottom.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -22%;
  z-index: 1;
  transform: translateX(-50%);
}


.pg_header {
  height: 150px;
}

@media (min-width:768px){
  .pg_header {
    height: 350px;
  }
  .container.top {
    margin-top: 71px;
  }
}
@media (min-width:1024px){
  .pg_header {
    height: 400px;
  }
}
@media (min-width:1200px){
  .pg_header {
    height: 500px;
  }
}

/* 詳しく見る サンプル */
.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{

}
.pg_home .section#sec1 {
  margin-top: 50px;
}
.pg_home .section#sec2{
  margin-top: 70px;
}
.pg_home .section#sec3{
  margin-top: 50px;
}
.pg_home .section#sec4{
  margin-top: 70px;
}
/* TOPページのみ　タイトル消　h1 */
.page-id-7 .container.top {
  margin-top: 71px;
  display: none;
}

.top_block {

}
.top_block_item{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.top_block_item_box1{
  width: 100%
}
.top_block_item_box2{
  width: 100%
}
.top_block_text_tt{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.714;
  letter-spacing: 0.18em;
  margin-top: 15px;
}
.top_block_text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.075em;
  text-align: justify;
  margin-top: 15px;
}
.top_block_text_link a {
  -webkit-appearance: button;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  background-color: #f5f5f5;
  color: #73a3d3;
  border: 1px solid #b4d4f4;
  padding: 9px 65px;
  border-radius: 23px;
  position: relative;
  text-decoration: none;
  max-width: 221px;
  margin-top: 16px;
}
.top_block_text_link a:after{
  content: "→";
  font-size: 18px;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
  transition: 0.2s;
}
.top_block_text_link a:hover{
  background-color: #ffff;
  border: 1px solid #b4d4f4;
}
.top_block_text_link a:hover:after{
  right: 6px;
  color: #73a3d3;
  transition: 0.2s;
}
.top_block_img.img_fit{

}
.top_block_img.img_fit:before {
  content: "";
  display: block;
  padding-top: 73.5494%;
}
.top_block_img.img_fit:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  bottom: -2.1%;
  left: -2.1%;
  position: absolute;
  z-index: -1;
  border-radius: 0 0px 50px 0px;
}
/* box順番　入れ替え */
.top_block_item:first-child .top_block_item_box1 {
  order: 2;
}
.top_block_item:first-child .top_block_item_box2 {
  order: 1;
}
/* sec2 */
h2.titlet2{
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.32em;
}

h2.titlet2 span {
  display: block;
  position: relative;
  font-family: Outfit;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #73a3d3;
  text-transform: uppercase;
  margin-bottom: 15px;
}
h2.titlet2 span:before {
  content: "";
  width: 125px;
  height: 5px;
  background: url(/img/tt_bottom.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -22%;
  z-index: 1;
  transform: translateX(-50%);
}
/* sec2 業務案内 */

.top_service {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.top_service_item {
  position: relative;
  width: 100%;

}
/*.top_service_item:before{
  content: "";
  position: absolute;
  background-color: #b4d4f4;
  bottom: 0%;
  right: 0px;
  padding: 23px 0;
  width: 40px;
}*/
.top_service_item_area{
  padding: 0 60px 18px 62px;
  transition: all .2s;
}
.top_service_item_area:after{
  font-size: 20px;
  line-height: 1;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  color: #4b8ec6;
  right: 0;
  bottom:0;
  z-index: 5;
  width: 40px;
  height: 40px;
  background: #b4d4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
a.top_service_item_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0px 15px;
  margin-top: 20px;
  height: 100%;
}
a.top_service_item_inner:hover .top_service_item_area{
  background: #c7e2f8;
}
a.top_service_item_inner:hover .top_service_item_area:after{
  background: #fff;
}
.top_service_item_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
  position: relative;
  height: 100%;
}
.top_service_item_img{

}
.top_service_item_title{
  font-size: 21px;
  font-weight: 700;
  line-height: 1.714;
  letter-spacing: 0.075em;
  margin-top: 5px;
}
.top_service_item_text{
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.075em;
  margin-top: 15px;
}

/* sec4 */
.pg_home .section#sec4 {
  position: relative;
  margin-top: 150px;
  padding-top: 22px;
  padding-bottom: 50px;
  margin-bottom: 0px;
  background-color: #f5f5f5;
  position: relative;
}
.pg_home .section#sec4:after {
  content: "";
  height: 511px;
  background: url(/img/news/back1.jpg) center;
  position: absolute;
  z-index: 0;
  top: -36px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}
.pg_home .section#sec4 .item {
  border-radius: 10px;
  background: #fff;
  margin-top: 9px;
  padding: 7px 7px 7px 21px;
  position: relative;
}
.pg_home .section#sec4 .item:hover {
  background: #c7e2f8;
  transition: 0.3s;
}
.pg_home .item a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
}
.pg_home .item a:after {
  content: "→";
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
}
.pg_home .item a:hover:after {
  position: absolute;
  right: 16px;
}
.pg_home .date {
  width: 130px;
  font-family: Outfit;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.075em;
  color: #181818;
}
.pg_home h3.title.txt_ellipsis{
  font-family: Outfit;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.075em;
  color: #181818;
  width: calc(100% - 80px);
}
/* リンクボタン　*/
.top_read_more a {
  -webkit-appearance: button;
  position: relative;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;
  background-color: #f5f5f5;
  color: #73a3d3;
  border: 1px solid #b4d4f4;
  padding: 9px 89px;
  border-radius: 23px;
  text-decoration: none;
  max-width: 256px;
  margin-top: 16px;
  margin: 0 auto;
  transition: all .2s;
}
.top_read_more a:hover {
  background-color: #fff;

}
.top_read_more a:after {
  content: "→";
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
  transition: 0.3s;
}
.top_read_more a:hover:after {
  right: 14px;
}
.top_read_more {
  margin-top: 53px;
}

@media (max-width:767px){
  .tt1{
    font-size: 18px;
  }

  .top_block_text_tt{
    margin-top: 28px;
  }
  .top_block_text_link a{
    margin: 30px auto 0;
  }
  .top_service_item_area{
    padding: 0 16px 18px;
  }
  .top_service_item:nth-child(n+2){
    margin-top: 30px;
  }

  .com_price h2.tt1 a{
    width: 100%;
    font-size: 18px;
    padding: 24px;
  }
  .com_price h2.tt1 a{

  }

}
@media (min-width:768px){
  .pg_home .section#sec1 {
    margin-top: 118px;
  }
  .pg_home .section#sec2 {
    margin-top: 90px;
  }
  .pg_home .section#sec3 {
    margin-top: 90px;
  }
  .pg_home .section#sec4 {
    margin-top: 120px;
  }

  .top_block_item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .top_block_item_box1{
    width: 49.648%
  }
  .top_block_item_box2{
    width: 46.648%
  }
  .top_block_text_tt{
    margin-top: 0px;
  }
  .top_block_text_link a{
    padding: 10px 88px;
    max-width: 256px;
    margin-top: 45px;
  }

  /* box順番　入れ替え 768px */
  .top_block_item:first-child .top_block_item_box1 {
    order: 1;
  }
  .top_block_item:first-child .top_block_item_box2 {
    order: 2;
  }
  /*業務案内 768px */
  .top_service {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  h2.titlet2{
    font-size: 24px;
  }
  .top_service_item{
    width: 50%;
  }
  a.top_service_item_inner {
    margin-top: 20px;
  }
  .top_service_item_area {
    padding: 0 32px 18px 32px;
  }
  .top_news_wrap {
    padding: 30px 0 0px 0;
  }
  .pg_home .item a {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .pg_home h3.title.txt_ellipsis{
    width: calc(100% - 200px);
  }
  .top_read_more {
    margin-bottom: 0px;
  }

}
@media (min-width:1024px){
  .pg_home .section#sec2 {
    margin-top: 155px;
  }
  .pg_home .section#sec3 {
    margin-top: 140px;
  }
  .pg_home .section#sec4 {
    margin-top: 241px;
  }

  .top_block_item_box1{
    width: 45.648%
  }
  .top_block_item_box2{
    width: 48.648%;
  }
  .top_block_text_tt{
    font-size: 21px;
    margin-top: 0px;
  }
  .top_block_text {
    font-size: 16px;
    line-height: 2.25;
    margin-top: 32px;
    text-align: justify;
  }
  .pg_home h3.title.txt_ellipsis{
    margin-left: 38px;
    width: calc(100% - 130px - 150px);
  }

  .top_service_item_area{
    padding: 0 60px 18px 62px;
  }

}
@media (min-width:1200px){

}


/* **********************************
 *  02　法人のご相談
 * ********************************* */
.pg_corp{

}
.pg_corp .section#sec1{
  margin-top: 0px;
}
.pg_corp .section#sec2{
  margin-top: 0px;
}
.pg_corp .section#sec3{
  margin-top: 40px;
  margin-bottom: 140Px;
}


.corp_top_txt {
  display: flex;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2.25;
  margin-top: 20px;
  margin-bottom: 45px;
  text-align: justify;
}

/* sec2 */
.pg_corp .section#sec2 {
  margin-top: 105px;
  padding-top: 18px;
  padding-bottom: 50px;
  margin-bottom: 0px;
  background-color: #f5f5f5;
  position: relative;
}
.pg_corp .section#sec2::after {
  content: "";
  height: 511px;
  background: url(/img/news/back1.jpg) center;
  position: absolute;
  z-index: 0;
  top: -36px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}

.pg_corp .contact_tt {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.34em;
  margin-bottom: 30px;
  position: relative;
}


.pg_corp .contact_tt:after {
  content: "";
  width: 37px;
  height: 10px;
  background: url(/img/circle.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -60%;
  z-index: 0;
  transform: translateX(-50%);
}
.corp_item_outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 55px;
}
.corp_item {
  width: 100%;
  border: 1px solid #4b8ec6;
  margin-bottom: 30px;
}

.corp_item_inner {
  background-color: #fff;
  margin: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 98%;
  padding: 15px 15px;
}
.corp_item_img{

}
.corp_item_text_wrap{

}

.corp_item_text_title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.714;
  margin-top: 25px;
  text-align: center;
}
.corp_item_text {
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 2.25;
  text-align: justify;
  margin-top: 7px;
}

.corp_item_bottom_text {
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 2.25;
  text-align: center;
  margin-top: 0px;
  text-align: justify;
}


/* sec3 業務開始までの流れ */

.com_flow_outer {
  display: flex;
  margin-top: 75px;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.com_flow_item {
  width: 90%;
  background: #f5f5f5;
  border: 1px solid #4b8ec6;
  position: relative;
  margin-bottom: 55px;
}

.com_flow_item:before{
  content: "";
  display: block;
  border-top: 1px solid #fff;
  position: absolute;
  top: -1px;
  height: 13px;
  right: auto;
  width: calc(100% - 39%);
  z-index: 1;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.com_flow_item:after {
  transform: translate(-50%, 0);
  z-index: 0;
  content: "";
  display: block;
  height: 40%;
  position: absolute;
  bottom: -76px;
  right: 50%;
  border-left: 1px solid #4b8ec6;
  z-index: -1;
}
.com_flow_item:last-child:after{
  content: "";
  display: block;
  border: none;
}


.com_flow_item_inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.com_flow_item_number{
  display: flex;
  flex-direction: column;
  width: 60px;
  height: 60px;
  margin: 0 auto -22px;
  text-align: center;
  color: #fff;
  background: #b4d4f4;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  letter-spacing: 0.075em;
  margin-top: -30px;
}
span.flow {
  font-size: 14px;
  font-family: Outfit;
  margin-top: 5px;
}
span.tt_number {
  font-size: 20px;
  font-family: Outfit;
  line-height: 0.8;
  letter-spacing: 0.2em;
}
.com_flow_item_img{
  margin-top: 50px;
  margin-bottom: 8px;
}
.com_flow_item_text{
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
  padding-bottom: 16px;
}

/* sec3 料金案内 */

.com_price_outer {
  margin-top: 0px;
  margin-bottom: 64px;
}
.com_price{

}

.com_price h2.tt1 a {
  width: 90%;
  margin: 0 auto;
  background-color: #b4d4f4;
  display: block;
  padding: 39px;
  position: relative;
  color: #fff;
  transition: all .2s;
}
.com_price h2.tt1 a:hover {
  background-color: #73a3d3;
  transition: 0.3s;
}
.com_price .tt1 span {
  color: #fff;
}
.com_price h2.tt1 a:before {
  content: "";
  width: calc(100% - 23px);
  height: calc(100% - 23px);
  position: absolute;
  left: 11px;
  top: 11px;
  border: 1px solid #fff;
}



@media (max-width:320px){
  .corp_item_text_title {
    letter-spacing: 0.02em;
    font-size: 17px;
  }
}


@media (min-width:768px){
  .pg_corp .section#sec2 {
    margin-top: 100px;
    padding-top: 35px;
  }
  .pg_corp .section#sec3 {
    margin-top: 80px;
    margin-bottom: 120Px;
  }
  .pg_corp .contact_tt {
    font-size: 24px;
  }
  .corp_top_txt {
    margin-top: 34px;
    letter-spacing: 0.075em;
  }
  .corp_item_outer {
    margin-top: 87px;
  }
  .corp_item{
    width: 48.648%;
  }
  .corp_item_inner {
    padding: 33px 24px;
  }
  .corp_item_text_title{
    font-size: 19px;
    letter-spacing: 0em;
  }

  .corp_item_text{
    font-size: 16px;
  }
  .corp_item {
    margin-bottom: 54px;
  }


  /* sec3 業務開始までの流れ */

  .com_flow_outer {
    display: flex;
    justify-content: center;
    margin-top: 119px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .com_flow_item{
    width: 28%;
    margin: 0 17px 70px 17px;
  }
  .com_flow_item:after{
    content: "";
    display: block;
    border-top: 1px solid #4b8ec6;
    position: absolute;
    top: 52%;
    height: 0px;
    right: auto;
    width: calc(100% - 78%);
    z-index: 1;
    left: 109%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
  }
  .com_flow_item:nth-child(3):after{
    content: "";
    display: block;
    border: none;
  }

  .com_price_outer {
    margin-top: 40px;
    margin-bottom: 126px;
  }
  .com_price h2.tt1 a {
    width: 100%;
  }

}
@media (min-width:1024px){
  .pg_corp .section#sec2 {
    margin-top: 151px;
    padding-top: 53px;
  }

  .pg_corp .section#sec3{
    margin-top: 141px;
    margin-bottom: 197Px;
  }
  .com_flow_outer {
    display: flex;
    justify-content: space-between;
    margin-top: 119px;
    flex-direction: row;
  }
  .corp_item_inner{
    padding: 33px 57px;
  }
  .corp_item_bottom_text {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
  }
  .com_flow_item {
    width: 18%;
    margin: 0 ;
  }
  .com_flow_item:nth-child(3):after{
    content: "";
    display: block;
    border-top: 1px solid #4b8ec6;
    position: absolute;
    top: 52%;
    height: 0px;
    right: auto;
    width: calc(100% - 78%);
    z-index: 1;
    left: 109%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: -1;
  }
  .com_price_outer {
    margin-top: 120px;
    margin-bottom: 140px;
  }
  .corp_item_text_title{
    font-size: 21px;
    letter-spacing: 0.075em;
  }
}
@media (min-width:1200px){

}

/* **********************************
 *  04　料金案内
 * ********************************* */
.pg_price{

}
.pg_price .section#sec1 {
  margin-top: 72px;
  padding-top: 8px;
  padding-bottom: 80px;
  margin-bottom: 0px;
}

.pg_price .section#sec1 {
  position: relative;
  margin-bottom: 0px;
  background-color: #f5f5f5;
}

.pg_price .section#sec1:after {
  content: "";
  height: 511px;
  background: url(/img/news/back1.jpg) center;
  position: absolute;
  z-index: 0;
  top: -36px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}

.pg_price .contact_tt {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
  position: relative;
}
.pg_price .contact_tt:after {
  content: "";
  width: 37px;
  height: 10px;
  background: url(/img/circle.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -60%;
  z-index: 0;
  transform: translateX(-50%);
}

/* 料金一覧 */
.price_item_outer {
  margin-top: 60px;
}
.price_item{

}
.price_item_inner {
  display: flex;
  flex-direction: column;
}

.price_item_box1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  padding: 15px 10px 15px 10px;
}
.price_item_box2_wrap {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
.price_item_box_title{
  font-size: 17px;
  font-weight: 500;
  line-height: 1.714;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #4b8ec6;
  width: 100%;
  text-align: center;
  padding-bottom: 8px;
}


.price_item_box_price{
  font-size: 17px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 10px;
}

.price_item_box2 .price_item_box_price{
  margin-bottom: -18px;
}

span.par_box {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.075em;
  color: #fff;
  width: 95px;
  background: #b4d4f4;
  padding: 3px 13px;
  margin-right: 0px;
}
span.par_box.width {
  padding: 3px 13px;
}
span.zei {
  font-size: 13px;
  line-height: 2.25;
  letter-spacing: 0.075em;
}



.price_item_box2 {
  width: 100%;
  background: #fff;
  padding: 15px 10px 25px 10px;
  margin-bottom: 25px;
}

.price_item_box_under_text {
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: 0.075em;
  text-align: justify;
}
/* 相続・贈与のお客様 */
.price_item_box1.space {
  margin-top: 86px;
}
.price_item_box1.space {
  margin-top: 60px;
  margin-bottom: 9px;
}

.price_item_box3_wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.price_item_box3_text_wrap {
  padding: 10px 16px;
}

.price_item_box3 {
  width: 100%;
  background: #f5f5f5;
  padding-bottom: 14px;
  margin-top: 25px;
}
.price_item_box3_tt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.714;
  letter-spacing: 0.075em;
  text-align: center;
  border-bottom: 1px solid #b4d4f4;
  padding: 20px 0;
}

.price_item_box3_text{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
}


.price_item_box3_tex_bottomt {
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.075em;
  margin-top: 3px;
  text-align: justify;
}
@media (min-width:768px){

  .pg_price .section#sec1 {
    margin-top: 148px;
  }

  .pg_price .section#sec1 {
    margin-top: 80px;
    padding-top: 16px;
    padding-bottom: 140px;
  }
  .pg_price .contact_tt {
    font-size: 23px;
  }
  .price_item_box_title{
    font-size: 21px;
    padding-bottom: 16px;
  }

  .price_item_box_price{
    font-size: 21px;
    margin-top: 17px;
  }
  span.par_box {
    font-size: 16px;
  }
  .price_item_outer {
    margin-top: 84px;
  }
  .price_item_box1.space {
    margin-top: 86px;
  }
  .price_item_inner{
    flex-wrap: wrap;
    align-content: center;
  }
  .pg_price .contact_tt {
    font-size: 26px;
  }
  span.zei {
    font-size: 16px;
  }

  .price_item_box1 {
    padding: 31px 28px 29px 28px;
  }

  .price_item_box2_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 95px;
  }

  .price_item_box2 {
    padding: 28px 28px 0px 28px;
    margin-bottom: 0px;
    width: 48.648%;
  }
  .price_item_box_under_text {
    margin-top: 23px;
    font-size: 16px;
  }
  .price_item_box3_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 32px;
  }
  .price_item_box3{
    width: 48.648%;
  }
  .price_item_box3 {
    margin-top: 0px;
  }
  .price_item_box3_tt{
    font-size: 21px;
  }
  .price_item_box3_text{
    font-size: 21px;
  }
  .price_item_box_under_text {
    text-align: center;
  }
}
@media (min-width:1024px){
  .pg_price .section#sec1 {
    margin-top: 151px;
    padding-top: 53px;
    padding-bottom: 190px;
  }
  span.par_box {
    margin-right: 13px;
  }
  .price_item_box3_tex_bottomt{
    text-align: center;
  }
}
@media (min-width:1200px){
  .price_item_box1{
    padding: 31px 65px 29px 65px;
  }
  .price_item_box2 {
    padding: 31px 65px 0px 65px;
  }
  span.par_box {
    padding: 3px 28px;
    margin-right: 27px;
  }
  .price_item_box3_text_wrap {
    padding: 10px 10px;
  }

}

/* **********************************
 *  05 事務所案内
 * ********************************* */
.pg_office {

}
.pg_office .section#sec1 {
  margin-top: 50px;
}
.pg_office .section#sec2 {
  margin-top: 50px;
}
.pg_office .section#sec3{
  margin-top: 60px;
}
.pg_office .section#sec4 {
  margin-top: 50px;
  margin-bottom: 150px;
}

.pg_office h2.contact_tt {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.25em;
}
.pg_office h2.contact_tt:after{
  content: "";
  width: 37px;
  height: 10px;
  background: url(/img/circle.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -78%;
  z-index: 1;
  transform: translateX(-50%);
}

.office_title_text {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.714;
  letter-spacing: 0.10em;
  margin-top: 46px;
}
.office_mnage_wrap {
  position: relative;
  text-align: center;
  width: 100%;
  color: #fff;
  background: #b4d4f4;
  margin-top: 40px;
  padding: 28px 23px;
}
.office_mnage_wrap:before {
  content: "";
  width: calc(100% - 23px);
  height: calc(100% - 23px);
  position: absolute;
  left: 11px;
  top: 11px;
  border: 1px solid #fff;
}
.office_mnage_title{
  position: relative;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.714;
  letter-spacing: 0.075em;
}
.office_mnage_title:after{
  content: "";
  border-top: 1px solid #fff;
  position: absolute;
  bottom: -18px;
  width: 92px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.office_mnage_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.0em;
  margin-top: 32px;
  text-align: justify;
}
/* 税理士紹介 */

.office_tax_wrap {
  margin-top: 60px;
}

.office_tax_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

.office_tax_box1{
  width: 100%;
}
.office_tax_box2{
  width: 100%;
}
.office_tax_img.img_fit{

}
.office_tax_img.img_fit:before{
  content: "";
  display: block;
  padding-top: 72.380%;
}
.office_tax_text_wrap {
  margin-top: 10px;
}
.tax_text_wrap{

}
.office_tax_text_position{
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.075em;
  margin-bottom: 4px;
}
.office_tax_text_name {
  font-size: 21px;
  font-weight: 600;
  line-height: 0.714;
  letter-spacing: 0.18em;
  margin-bottom: 9px;
}
span.eng{
  font-family: Outfit;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.18em;
  color: #b4d4f4;
}

.office_tax_text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.075em;
  text-align: justify;
}
/* 写真シャドウ */
.office_tax_wrap:nth-child(even) .office_tax_box1
.office_tax_img.img_fit:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  bottom: -2.1%;
  left: 2.1%;
  position: absolute;
  z-index: -1;
}
.office_tax_wrap:nth-child(odd) .office_tax_box1
.office_tax_img.img_fit:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  bottom: -2.1%;
  left: -2.1%;
  position: absolute;
  z-index: -1;
}
/* sec3 */

.office_ov_wrap {
  margin-top: 60px;
}

.office_ov_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.office_ov_box1{
  width: 100%;
}
.office_ov_box2{
  width: 100%;
}
.office_ov_img.img_fit{

}
.office_ov_img.img_fit:before{
  content: "";
  display: block;
  padding-top: 72.380%;
}

.office_ov_table {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.075em;
  border-top: 1px solid #b4d4f4;
  padding: 14px 0;
}
.office_ov_table:last-child {
  border-bottom: 1px solid #b4d4f4;
}

.office_ov_table_tr {
  display: flex;
  flex-direction: column;
}
.office_ov_table_th{
  width: 100%;
}
.office_ov_table_td{
  width: 100%;
  font-size: 14px;
}
/* sec4 */

.office_access_wrap {
  margin-top: 65px;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.075em;
}
.office_access_wrap li{
  text-indent: -1em;
  padding-left: 1em;
  font-size:14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.office_access {
  margin-bottom: 20px;
}
@media (min-width:425px){
  .office_mnage_text{
    font-size: 14px;
    line-height: 2.25;
    letter-spacing: 0.075em;
    text-align: center;
  }

}

@media (min-width:768px){
  .pg_office .section#sec1 {
    margin-top: 60px;
  }
  .pg_office .section#sec2 {
    margin-top: 90px;
  }
  .pg_office .section#sec3 {
    margin-top: 90px;
  }
  .pg_office .section#sec4 {
    margin-top: 100px;
    margin-bottom: 150px;
  }

  /* sec1 */
  .pg_office h2.contact_tt{
    position: relative;
    font-size: 24px;
    letter-spacing: 0.34em;
  }
  .office_title_text {
    text-align: center;
    font-size: 21px;
    letter-spacing: 0.180em;
    margin-top: 60px;
  }

  .office_mnage_wrap{
    margin-top: 60px;
  }
  .office_mnage_wrap {
    padding: 38px 0;
  }
  .office_tax_wrap{
    margin-top: 90px;
  }
  .office_mnage_text{
    font-size: 16px;
  }

  /* sec2 */
  .office_tax_inner{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .office_tax_box1{
    width: 42.792%;
  }
  .office_tax_box2{
    width: 51.351%;
  }
  .office_tax_text_wrap {
    margin-top: 0px;
  }
  .office_tax_text_name{
    line-height: 1.714;
    margin-bottom: 20px;
  }
  .office_tax_text{
    font-size: 16px;
    line-height: 2.24;
  }

  /* box順番　入れ替え */
  .office_tax_wrap:nth-child(odd) .office_tax_box1 {
    order: 2;
  }
  .office_tax_wrapr:nth-child(odd) .office_tax_box2 {
    order: 1;
  }
  .office_tax_wrapr:nth-child(even) .office_tax_box1 {
    order: 1;
  }
  .office_tax_wrap:nth-child(even) .office_tax_box2 {
    order: 2;
  }
  /* sec3 */
  .office_ov_wrap {
    margin-top: 90px;
  }
  .office_ov_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .office_ov_box1{
    width: 42.792%;
  }
  .office_ov_box2{
    width: 48.648%;
  }
  .office_ov_table_td{
    font-size: 16px;
  }
  .office_ov_table{
    line-height: 2.24;
  }
  .office_access_wrap li{
    font-size: 16px;
    line-height: 2.25;
    letter-spacing: 0.075em;
    margin-bottom: 0px;
  }
  .office_access_wrap {
    margin-top: 88px;
  }
}
@media (min-width:1024px){
  .pg_office .section#sec1 {
    margin-top: 108px;
  }
  .pg_office .section#sec2 {
    margin-top: 142px;
  }
  .pg_office .section#sec3 {
    margin-top: 150px;
  }
  .pg_office .section#sec4 {
    margin-top: 138px;
    margin-bottom: 189px;
  }
  .office_mnage_wrap{
    margin-top: 91px;
  }
  .office_title_text {
    margin-top: 79px;
  }

  .office_ov_table_tr{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .office_ov_table_th{
    width: 17.592%;
  }
  .office_ov_table_td{
    width: 70.370%;
  }
}
@media (min-width:1200px){

}

/* **********************************
 *  お知らせ
 * ********************************* */
.pg_news{

}
.pg_news .main {
  padding: 0 0 0 0px;
}

.pg_news .section#sec1 {
  margin-top: 73px;
  padding-top: 15px;
  padding-bottom: 80px;
  background-color: #f5f5f5;
  position: relative;
}
.pg_news .section#sec1::after {
  content: "";
  height: 511px;
  background: url(/img/news/back1.jpg) center;
  position: absolute;
  z-index: 0;
  top: -36px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}


@media (min-width:768px){

  .pg_news .section#sec1 {
    margin-top: 90px;
    padding-top: 38px;
    padding-bottom: 140px;
    margin-bottom: 0px;
    background-color: #f5f5f5;
    position: relative;
  }

}
@media (min-width:1024px){
  .pg_news .section#sec1{
    margin-top: 150px;
    padding-top: 64px;
  }
  .pg_news .section#sec1 {
    padding-bottom: 196px;
  }

}
@media (min-width:1200px){

}

/* **********************************
 *  お知らせ詳細
 * ********************************* */


.pg_in_news{

}
.pg_in_news .section#sec1{
  margin-top: 73px;
  padding-top: 15px;
  padding-bottom: 80px;
  background-color: #f5f5f5;
  position: relative;
}
.pg_in_news .section#sec1::after {
  content: "";
  height: 511px;
  background: url(/img/news/back1.jpg) center;
  position: absolute;
  z-index: 0;
  top: -36px;
  bottom: 0;
  width: 100vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}

.pg_in_news .post_items .item {
  padding: 12px 15px 2px 15px;
  display: flex;
  position: relative;
  margin-bottom: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}


.pg_in_news .post_items .item.single_item .title {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.1;
  padding-bottom: 6px;
}
.pg_in_news .post_items .item .title {
  margin-left: 0px;
}
.pg_in_news .post_items .item .date {
  margin-left: 0px;
}
.pg_in_news .post_items .post_content {
  margin-top: 0px;
}

.pg_in_news .post_content p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.075em;
}

.pg_in_news .post_content img {
  margin-top: 5px;
  margin-bottom: 15px;
}

.pg_in_news .pagination {
  text-align: center;
  margin-top: 30px;
}
/* 一覧に戻る */

.pg_in_news .pagination .nav-posts .page-archive a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background-color: #f5f5f5;
  color: #73a3d3;
  border: 1px solid #b4d4f4;
  border-radius: 23px;
  position: relative;
  text-decoration: none;
  margin: 0 15px;
}
.pg_in_news .pagination .nav-posts .page-archive a:hover {
  display: block;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #fff;
  border: 1px solid #b4d4f4;
}

.pg_in_news .pagination .nav-posts .page-archive a:after {
  content: "→";
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
  transition: 0.2s;
}

.pg_in_news .pagination .nav-posts .page-archive a:hover:after {
  right: 5px;
  transition: 0.2s;
}

.pg_in_news .pagination .nav-posts {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg_in_news .pagination .nav-posts .page-prev {

}
.pg_in_news　.pagination .nav-posts .page-next a, .pagination .nav-posts .page-prev a {
  display: block;
  padding: 10px 50px;
  position: relative;
  display: block;
  border: 1px solid #b4d4f4;
  position: relative;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  padding: 0px;
}

.pagination .nav-posts .page-prev a:after {
  content: "\f054";
  right: 15px;
  color:#73a3d3;
  transition: 0.2s;
}
.pg_in_news .page-prev a:hover {
  background: #fff;
}
.pg_in_news .page-next a:hover {
  background: #fff;
}
.pagination .nav-posts .page-prev a:hover:after {
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-next, .pagination .nav-posts .page-prev {
  min-width: 35px;
}
.pg_in_news .pagination .nav-posts .page-next a, .pagination .nav-posts .page-prev a {
  display: block;
  border: 1px solid #b4d4f4;
  position: relative;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  padding: 0px;
}
.pagination .nav-posts .page-next, .pagination .nav-posts .page-prev {
  min-width :35px;
}
.pagination .nav-posts .page-next a:before {
  content: "\f053";
  left: 15px;
  color:#73a3d3;
  transition: 0.2s;
}
.pagination .nav-posts .page-next a:hover:before {
  content: "\f053";
  left: 10px;
}
@media (min-width:768px){
  .pg_in_news .post_items .item {
    padding: 38px 65px 10px 65px;
    display: flex;
    position: relative;
    margin-bottom: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pg_in_news .section#sec1{
    margin-top: 143px;
    padding-top: 64px;
    padding-bottom: 200px;
    margin-bottom: 0px;
    background-color: #f5f5f5;
    position: relative;
  }
  .pg_in_news .post_items .item {
    padding: 35px 65px 10px 65px;
  }
  .pg_in_news .post_items .item.single_item .title {
    font-size: 20px;
    padding-bottom: 9px;
  }
  .pg_in_news .post_content img {
    margin-top: 10px;
    margin-bottom: 27px;
  }
  .pg_in_news .post_content p {

    font-size: 16px;
    line-height: 2.25;
    letter-spacing: 0.1em;
    text-align: justify;
  }
  .pg_in_news .pagination .nav-posts .page-archive a {
    padding: 10px 90px;
  }
  .pg_in_news .pagination {
    text-align: center;
    margin-top: 80px;
  }
  .pg_in_news .pagination .nav-posts .page-archive a:after {
    right: 34px;
  }
  .pg_in_news .pagination .nav-posts .page-archive a:hover:after {
    right: 25px;
    transition: 0.2s;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1 {
  margin-top: 50px;
}
.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: 30px;
}

.pg_contact .tel_contactbox1 {
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.34em;
  margin-bottom: 30px;
  position: relative;
  margin-bottom: 85px;
}

.pg_contact .tel_contactbox1 {
  margin-bottom: 55px;
}
.pg_contact .tel_contactbox1:after{
  content: "";
  width: 37px;
  height: 10px;
  background: url(/img/circle.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -60%;
  z-index: -1;
  transform: translateX(-50%);
}

/* 連絡先 */
.contact_info{
  background: #b4d4f4;
  text-align: center;
  padding: 10px;
  margin-bottom: 144px;
}
.contact_info{
  margin-bottom: 50px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #FFF;
}
.contact_info .box2{
  background: #FFFFFF;
  padding: 11px 15px 21px 15px;
  line-height: 1;
}

.contact_info .box2 .icon {
  display: inline-block;
  font-size: 21px;
  font-weight: bolder;
  background: #b4d4f4;
  color: #FFFFFF;
  padding: 5px 18px;
  margin-right: 0px;
  vertical-align: middle;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  margin-top: 10px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-family: Outfit;
  font-size: 25px;
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.8em;
}
.contact_info .box2 .tel a {
  display: block;
  font-family: Outfit;
  font-size: 33px;
  font-weight: 400;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-top: 33px;
}

.contact_info .box2 .txt {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.16em;
}
span.txt_small {
  font-size: 12px;
  letter-spacing: 0;
}

.pg_contact .contact_tt {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.2em;
  position: relative;
  margin-bottom: 65px;
}

.pg_contact .contact_tt:after {
  content: "";
  width: 37px;
  height: 10px;
  background: url(/img/circle.png) center / contain;
  position: absolute;
  left: 50%;
  bottom: -60%;
  z-index: -1;
  transform: translateX(-50%);
}



@media (min-width:768px){
  .pg_contact .section#sec1 {
    margin-top: 50px;
  }
  .contact_info .box2 {
    background: #FFFFFF;
    padding: 28px 15px 31px 15px;
    line-height: 1;
  }

  .pg_contact .tel_contactbox1{
    margin-bottom: 85px;
  }
  .pg_contact .tel_contactbox1{
    font-size: 17px;
  }
  .contact_info .box2 .icon{
    font-size: 25px;
    margin-right: 20px;
    margin-top: 10px;
  }
  .contact_info .box2 .tel a{
    font-size: 44px;
  }
  .contact_info .box2 .txt{
    margin-top: 23px;
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  .contact_info {
    margin-bottom: 60px;
  }
  .pg_contact .contact_tt {
    font-size: 23px;
    letter-spacing: 0.4em;
    margin-bottom: 90px;
  }
  span.txt_small {
    font-size: 14px;
    letter-spacing: 0.16em;
  }
}
@media (min-width:1024px){
  .pg_contact .section#sec1 {
    margin-top: 103px;
  }
  .contact_info{
    margin-bottom: 136px;
  }
  span.txt_small {
    font-size: 15px;
  }
}
@media (min-width:1200px){

}








/* コンタクトフォーム */
.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th{
  padding: 10px 13px 10px 20px;
  font-weight: normal;
  text-align: left;
}


.contact_form td {
  padding: 10px 15px 11px 15px;
  font-weight: normal;
  text-align: left;
}

.contact_form th {
  background: #f0f0f0;
  width: 100%;
  letter-spacing: 0.08em;
}
.bikou {
  margin-bottom: -7px;
}
.contact_form td{
  font-size: 15px;
  letter-spacing: 0.16em;
}
span.mwform-radio-field-text {
  margin-left: -9px;
}
.contact_form th.vtop{
  vertical-align: top;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 11px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}

/* お問い合わせ内容 - 必須 */
span.require.up {
  margin-top: -20px;
}
/* MW WP Formの規定クラス */
/* checkbox, radio */
.mwform_check_box_wrap{
  padding: 6px 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item,
.mw_wp_form .mwform-checkbox-field.horizontal-item{
  display: inline-block;
  margin-left: 0;
  margin-right: 12px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

/**/
.mw_wp_form_confirm .addr_auto{
  display: none;
}
.mw_wp_form_confirm .addr_auto_box .zipcode i{
  background: none;
  padding: 0;
  font-size: inherit;
}

.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
dl.contact_form_consul {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  line-height: 2.25;
  letter-spacing: 0.08em;
}
.mwform_check_box_wrap1 span.mwform-checkbox-field-text {
  margin-left: -5px;
}
dl.contact_form_addr.ct1 {
  margin-bottom: 17px;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}
dl.contact_form_consul.space {
  margin-top: 36px;
}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);

}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.date dt.m,
.contact_form dl.date dt.d{
  width: 120px;
}
.contact_form dl.date dt.m select,
.contact_form dl.date dt.d select{
  width: calc(100% - 2em);
}
.contact_form dl.date dt.t{
  width: 150px;
}
.contact_form dl.date dt.t select{
  width: calc(100% - 5em);
}


.contact_form dl.addr dd{

}


.contact_form_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 12px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 75px;
}
.contact_form_addr dd{
  width: calc(100% - 80px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}




.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{

}

.addr_auto_box button{
  margin-left: 20px;
}


.contact_form td input ,
.contact_form td textarea ,
.contact_form td select {
  padding: 7px 10px;
  max-width: 100%;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td textarea {
  height: 172px;
  width: 100%;
}

.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"] {
  width: 150px;
}

.contact_form td .addr_auto {
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 0px;
  margin-top: 10px;
  padding: 5px 8px;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */



.contact_form_acceptance{
  font-size: 17px;
  letter-spacing: 0.08em;
  text-align: left;
  margin-top: 20px;
  ;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}
.txt_c {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}

.txt_c a {
  text-align: center;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: 63px;
  margin-bottom: 120px;
}

.contact_form_btns button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  display: block;
  font-weight: 500;
  letter-spacing: 0.075em;
  background-color: #f5f5f5;
  color: #73a3d3;
  border: 1px solid #b4d4f4;
  padding: 10px 90px;
  border-radius: 23px;
  position: relative;
  text-decoration: none;
  margin: 0 15px;
}
.contact_form_btns button:hover, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  background-color: #fff;
  color: #73a3d3;
  border: 1px solid #b4d4f4;
  transition: 0.2s;
}
.contact_form_btns button:after, html input[type="button"], input[type="reset"], input[type="submit"] {
  content: "→";
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
  transition: 0.2s;
}
.contact_form_btns button:hover:after, html input[type="button"], input[type="reset"], input[type="submit"] {
  right: 6px;
  color: #73a3d3;
  transition: 0.2s;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{




}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{

}
.contact_form_btns button[type="reset"]{

}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}

.txt_c {
  margin: 50px 0;
}

.txt_c a {
  position: relative;
  display: block;
  font-weight: 500;
  letter-spacing: 0.075em;
  background-color: #f5f5f5;
  color: #73a3d3;
  border: 1px solid #b4d4f4;
  padding: 10px 38px;
  border-radius: 23px;
  position: relative;
  text-decoration: none;
  margin: 40px 15px;
  width: 280px;
}
.txt_c a:hover {
  display: block;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #fff;
  border: 1px solid #b4d4f4;
}
.txt_c a:after {
  content: "→";
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #73a3d3;
  transition: 0.2s;
}
.txt_c a:hover:after {
  right: 5px;
  transition: 0.2s;
}

@media (max-width:375px){
  .mw_wp_form .mwform-radio-field.horizontal-item, .mw_wp_form .mwform-checkbox-field.horizontal-item {
    font-size: 14px;
    letter-spacing: 0.08em;
  }
}

@media (max-width:425px){
  .contact_form td [name$="_zipcode"], .contact_form td [name="zipcode"], .contact_form td [name="addr1"] {
    font-size: 13px;
    height: 40px;
  }
  .contact_form tr {
    display: flex;
    flex-direction: column;
  }
  .contact_form_btns input[type="submit"], .contact_form_btns input[type="button"], .contact_form_btns button {
    margin-bottom: 30px;
    width: 241px;
    padding: 10px 64px;
  }
}
@media (min-width:768px){
  .contact_form td .addr_auto {
    margin-left: 0px;
    margin-top: 10px;
  }
  .contact_form th{
    width: 285px;
  }
  .contact_form td [name$="_zipcode"],
  .contact_form td [name="zipcode"],
  .contact_form td [name="addr1"]{
    width: 180px;
  }

  .contact_form_btns {
    margin-top: 63px;
    margin-bottom: 130px;
  }
  .contact_form td .addr_auto {
    padding: 5px 5px;
  }
}
@media (min-width:1024px){
  .contact_form td input, .contact_form td textarea, .contact_form td select {
    padding: 6px 10px;
    border: 1px solid #d6d8d8;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.25em;
    margin-bottom: 1px;
  }
  .contact_form td textarea {
    height: 170px;
    width: 98%;
  }
  .contact_form td .addr_auto {
    margin-left: 11px;
    margin-top: 0px;
    padding: 0 13px;
  }
  .contact_form td{
    padding: 10px 15px 11px 33px;
  }
  .contact_form_btns {
    margin-top: 58px;
    margin-bottom: 201px;
  }
  .contact_form td input {
    max-width: 60%;
  }
  .contact_form td [name="addr2"] {
    max-width: 61%;
  }
  .contact_form td [name="zipcode"] {
    max-width: 37%;
  }
  .contact_form td [name="date1"] {
    max-width: 67%;
  }
  .contact_form td [name="date2"] {
    max-width: 67%;
  }
  dl.contact_form_addr.add select {
    width: 227px;
  }
}
@media (min-width:1200px){

}










/* **********************************
 *  プライバシーポリシー
 * ********************************* */

.privacy_box {
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-bottom: 17px;
  border: 1px solid #dedede;
  padding: 0px 7px 0px 13px;
  color: #181818;
  height: 284px;
  width: 100%;
  overflow: auto;
  text-align: left;
  background: #fff;
}
.privacy_box {
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.075em;
}
.privacy_box .item {
  margin-top: 7px;
}
.privacy_box .title {
  margin-top: 30px;
}
.privacy_box .item .txt {
  line-height: 2.25;
}
@media (min-width:768px){
  .privacy_box {
    font-size: 16px;
    letter-spacing: 0.09em;
    line-height: 2;
    margin-bottom: -2px;
    border: 1px solid #dedede;
    padding: 0px 30px 0px 13px;
    height: 235px;
    width: 100%;
    overflow: auto;
    text-align: left;
  }

}
@media (min-width:1024px){
  .privacy_box {
    width: 98%;
  }


}
@media (max-width: 767px) {
  .pg_home .section#sec3{
    margin-top: 80px;
  }
  .pg_home .section#sec4{
    margin-top: 110px;
  }
  .top_block_text_tt{
    font-size: 20px;
    letter-spacing: 0;
  }
  .top_block_text{
    font-size: 16px;
  }

  .com_price h2.tt1 a{
    width: 100%;
    font-size: 18px;
    padding: 24px;
  }
  .top_service_item_title{
    font-size: 18px;
  }
}
