/*
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{
}
@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;
  transition:all .3s;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  text-decoration: none;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{

}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{

}
.tbl td{

}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  padding: 0 15px;
  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{
  margin: 37px 0 0 200px;
  height: 300px;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  position: relative;
}
.pg_header:before{
  content: "";
  background: #74c4df;
  position: absolute;
  width: 106.7%;
  top: 25px;
  left: -500px;
  bottom: -7px;
  z-index: -1;
}
.pg_header .container{
  display: flex;
  height: 419px;
}*/

.pg_header{
  margin-top: 30px;
  padding-bottom: 15px;
  position: relative;
}
.pg_header .container{
  height: 100%;
  padding-bottom: 15px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.pg_header .container:after{
  content: "";
  width: 1000%;
  height: calc(100% - 23px);
  position: absolute;
  right: 15px;
  bottom: 0;
  background: #74c4df;
  z-index: -1;
}
.pg_header .img{
  max-width: 1420px;
  width: 74%;
  height: 120px;
  margin-left: auto;
  position: relative;
  background-position: center center;
  background-size: cover;
  /*z-index: 1;*/
}
.pg_header .txt{
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pg_header .tt1{
  max-width: 240px;
  width: 100%;
  background: #74c4df;
  font-size: 22px;
  padding-top: 9px;
  font-weight: 700;
  letter-spacing: 0.075em;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  z-index: 3;
  line-height: 1.35;
}


@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
  /*.pg_header{
    margin: 16px 0 0 25px;
    height: 180px;
    background-size: cover;
  }
  .pg_header:before{
    width: 100.7%;
    height: 100%;
    top: 20px;
    left: -25px;
    bottom:auto
  }
  .pg_header .container{
    height: auto;
  }*/
}
@media (min-width: 768px){
  .pg_header{
    margin-top: 60px;
    padding-bottom: 23px;
  }
  .pg_header .container{
    padding-bottom: 20px;
  }
  .pg_header .img{
    height: 250px;
  }
  .container {
    width: 720px;
  }
  .pg_header .tt1{
    max-width: 540px;
    font-size: 30px;
  }
  /*.pg_header{
    margin: 37px 0 0 140px;
  }
  .pg_header:before{
    left: -140px;
    height: 100%;
  }
  .pg_header .container{
    height:auto;
  }*/
}
@media only screen and (min-width:992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1024px){
  .pg_header .img{
    height: 300px;
  }
  /*.pg_header .container{
    height: 300px;
  }*/
}
@media (min-width: 1200px){
  .container {
    width: 1140px;
  }
  .pg_header .img{
    height: 380px;
  }
  /*.pg_header{
    margin: 37px 0 0 200px;
    height: 300px;
  }
  .pg_header:before{
    left: -400px;
    bottom: -35px;
  }
  .pg_header .container{
  }
  .pg_header:before{
    height: 100%;
  }*/
}
@media (min-width: 1800px){
  /*.pg_header{
    margin: 58px 0 0 500px;
    height: 380px;
  }*/
  .pg_header:before{
    left: -502px;
    bottom: 0;
  }
  .pg_header .container{
  }
}

/* 共通の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{
}
header .hdr1{
  display: flex;
}
header .hdr1 .hdr_logo{
  width: 51%;
}
header .hdr1 .hdr_logo a{
  display: inline-block;
}
header .hdr1 .hdr_logo a:hover{
  /*filter: brightness(1);*/
  text-decoration: none;
  opacity: 0.7;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  width: 41.5%;
  padding: 0 7px 0 0;
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
}
.gnav1{
  justify-content: end;
  margin-top: 23.5px;
  margin-right: 15px;
}
.gnav2{
  justify-content: space-between;
  margin-top: 20.5px;
  margin-left: 8px;
}

.gnav li a{
  font-family: Noto Serif JP;
  text-decoration: none;
  text-align: center;
  display: block;
}
.gnav li.hdr_normal a:hover{
  text-decoration: none;
  color:#99d1e5;
  opacity: 1;
}
.hdr_contact{
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.hdr_contact a{
  text-decoration: none;
}
.hdr_contact:hover{
  background:#73d2f5;
  color: #fff;
  border-left: 1px solid #73d2f5;
  border-bottom: 1px solid #73d2f5;
}
.hdr_circle a:hover{
  background: #181818;
  color: #fff;
}
.gnav li a:hover span{
  color: #181818;
}
.hdr_circle a:hover{
  background: #181818;
  color: #fff;
}
.hdr_circle{
  padding: 0 7px;
}
.hdr_circle a{
  font-weight: 600;
  font-size: 14px;
  color: #939393;
  border: 1px solid #939393;
  border-radius: 30px;
  line-height: 1.7;
  width: 126px;
}
/*.hdr_normal{
  padding: 0 22.5px;
}*/
.hdr_normal a{
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  width: 100%;
}
.hdr_normal a span{
  font-weight: 500;
  font-size: 12px;
  color: #99d1e5;
}

.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;
  text-decoration: none;
}
.hdr_contact{
  padding: 50px 0 0;
  font-size: 18px;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  width: 7.7%;
  color: #fff;
  background: #f1c141;
  border-radius: 0 0 0 30px;
  position: relative;
  z-index: 1;
  
}
.hdr_contact:hover{
  text-decoration: none;
}
.hdr_contact:before{
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  display: block;
  width: 100%;
}


.mv{
  position: relative;
  /*  height: 69vh;*/
  /* background-image: url(/img/mv.jpg); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mv .img{
  margin-top: 20px;
  width: 85%;
  text-align: end;
  position:relative;
  margin-left: auto;
}
.mv .img:before{
  content: "";
  background: #64bbdb;
  position: absolute;
  width:100vw;
  height: 76.92%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  background-image: url(/img/top/mv_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.mv .img img{
  width: 100%
}
.mv .title{
  font-family: Noto Serif JP;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.075em;
  text-shadow: 3px 3px 11px #ffffff;
  position: absolute;
  top: 47%;
  left: 9.25%;
  font-size: 45px;
}
.mv .title span{
  margin-top: 10px;
  font-size: 25px;
}

@media only screen and (max-width: 767px){
  .gnav.active {
    transform: translateX(0%);
    text-align: center;
  }
  header .hdr1 .hdr_logo{
    width: 85%;
  }
  .gnav,
  header .hdr1 .hdr_contact{
    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;
    width: 100%;
  }
  .gnav > ul{
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }
  .gnav1{
    order: 2;
  }
  .gnav2{
    order: 1;
  }
  .hdr_circle,
  .hdr_normal{
    padding: 0;
    margin-top: 35px;
  }
  .hdr_circle{
    width: 50%;
  }
  .hdr_normal{
    width: 100%;
  }
  .hdr_circle a{
    margin: 0 auto;
    color: #000;
    border-color: #99d1e5;
  }
  .hdr_circle a,
  .hdr_normal a{
    font-size: 16px;
  }
  .hdr_normal a span{
    font-size: 15px;
  }
}
@media(max-width:767px){
  .mv {
    margin-top: 0;
    background-position: top;
    text-align: center;
    /*    height: 35vh;*/
  }
  .mv .img{
    width: 100%;
  }
  .mv .img img{
    width: 100%
  }
  .mv .title{
    color: #fff;
    top: 60%;
    left: 2.25%;
    letter-spacing: 0.001em;
    font-size: 20px;
  }
  .mv .title span{
    font-size: 13px;
  }
  .mv_box{
    width: 85%;
  }
  .mv .img img{
    object-fit: cover;
    height: 250px;
  }
}
@media(min-width:768px){
  header .hdr1 .hdr_logo{
    width: 35%;
  }
  .gnav{
    width: 80%;
    padding: 0 0.5px 0 0;
  }
  .gnav1,
  .gnav2{
    margin: 10px 10px 0;
  }
  .hdr_circle/*,
  .hdr_normal*/{
    padding: 0px 5px;
  }
  .hdr_circle a{
    font-size: 12px;
    width: 70px;
  }
  .hdr_normal a{
    font-size: 10px;
  }
  .hdr_normal a span{
    font-size: 8px;
  }
  .hdr_contact{
    padding: 15px 0 0;
    font-size: 8px;
    width: 10%;
    display: block;
  }
  .mv{
    /*    height: 40vh;*/
  }
  .mv .img{
    /*    width: 85%;
        margin-left: auto;*/
  }
  .mv .img{
    width: 85%;
    margin-left: auto;
    margin-top: 40px;
  }
  .mv .title{
    top: 50%;
    left: 2.25%;
    letter-spacing: 0.0075em;
    font-size: 25px;
  }
  .mv .title span{
    font-size: 14px;
  }
}
@media(min-width:1024px){
  .gnav{
    width: 55.5%;
  }
  .hdr_circle a{
    font-size: 15px;
    width: 85px;
  }
  .hdr_normal a{
    font-size: 13px;
  }
  .hdr_normal a span{
    font-size: 10px;
  }
  .hdr_contact{
    padding: 25px 0 0;
    font-size: 15px;
    min-width: 100px;
  }
  .mv{
    /*    height: 50vh;*/
  }
  .mv .img img{
    /*    width: 85%*/
  }
  .mv .img{
    margin-top: 60px;
  }

  .mv .title{
    top: 50%;
    left: 2.25%;
    letter-spacing: 0.075em;
    font-size: 32px;
  }
  .mv .title span{
    font-size: 19px;
  }
}
@media(min-width:1200px){
  header .hdr1 .hdr_logo{
    width: 51%;
  }
  .gnav{
    width: 44%;
    padding: 0 7px 0 0;
  }
  .gnav1{
    margin-top: 23.5px;
    margin-right: 15px;
  }
  .hdr_circle{
    padding: 0 7px;
  }
  .hdr_circle a{
    font-size: 14px;
    width: 126px;
  }
  .gnav2{
    margin-top: 20.5px;
    margin-left: -40px;
    margin-right: 23px;
  }
  /*  .hdr_normal{
      padding: 0 22.5px;
    }*/
  .hdr_normal a{
    font-size: 13px;
  }
  .hdr_normal a span{
    font-size: 12px;
  }
  .hdr_contact{
    padding: 50px 0 0;
    font-size: 18px;
    width: 10.7%;
    min-width: 148px;
  }
  .mv{

    background-size: cover;
  }
  .mv .img img{
    /*    width: 100%*/
  }

  .mv .title{
    top: 47%;
    left: 9.25%;
    font-size: 45px;
  }
  .mv .title span{
    letter-spacing: 0.073em;
    font-size: 25px;
  }
}
@media(min-width:1520px){
  .gnav{
    width: 60%;
  }
  .gnav2{
    margin-left: 30px;
  }
  .hdr_normal a{
    font-size: 15px;
  }
  .hdr_contact{
    width: 7.7%;
  }
  .mv .img{
    width: auto;
  }
}
@media(min-width:1700px){
  .gnav{
    width: 41.5%;
  }
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 200px;
}

footer .ftr1{
  padding: 20px 0 30px;
  background: #daebf1;
  text-align: center;
  border-top: 1px solid #fff;
}
footer .tt_en{
  color: #e6f1f5;
}
footer .tt_en:first-letter{
  color: #b3dced;
}
footer .tt_ja{
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
}
footer .ftr1 .text{
  margin-top: 27px;
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
}
footer .ftr1 .tel:before{
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 10px;
}
footer .ftr1 .tel{
  margin-top: 17px;
  font-family: Outfit;
  font-size: 43px;
  letter-spacing: 0.075em;
  color: #73d2f5;
}
footer .ftr1 .btn{
  
}
footer .ftr1 .btn a{
  margin: 0 auto;
}

footer .ftr2{
  padding: 80px 0 72px;
  background: #f6fdff;
}
footer .ftr2 .container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .ftr2 .box1{
  width: 42.5%;
}
footer .ftr2 .box1 a:hover{
  opacity: 0.7;
}
footer .ftr2 .box1 .sb_title,
footer .ftr2 .box1 .title,
footer .ftr2 .address,
footer .ftr2 .tel{
  font-family: Noto Sans JP;
  letter-spacing: 0.075em;
}
footer .ftr2 .box1 .sb_title,
footer .ftr2 .box1 .title{
  font-weight: 700;
}
footer .ftr2 .box1 .sb_title{
  font-size: 15px;
}
footer .ftr2 .map{
  margin-top: 30px;
}
footer .ftr2 .map iframe{
  height: 247px;
}
footer .ftr2 .address,
footer .ftr2 .tel{
  font-weight: 400;
  font-size: 16px;
}
footer .ftr2 .address{
  margin-top: 8px;
  line-height: 1.75;
}
footer .ftr2 .tel{
  margin-top: 1px;
}
footer .ftr2 .tel:before{
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}
footer .ftr2 .box1 .title{
  font-size: 38px;
}
footer .ftr2 .box2{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 43%;
}
footer .ftr_links{
  margin-top: -100px;
  margin-right: 24px;
  display: flex;
  flex-direction: column;
}
footer .ftr_links li{
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 2.05;
}
footer .ftr_links li:before{
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
  color: #73d2f5;
}

footer .copy{
  text-align: center;
  background: #f6fdff;
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.075em;
  padding: 10px 0;
  border-top: 1px solid #73d2f5;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  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;
  margin: 0;
}
.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: #eed557;
  color: #FFF;
  text-decoration: none;
}
.f ooter_fix ul li.btn1 a {
    background: #64bbdb;
}

.footer_fix ul li.btn2 a {
    background: #64bbdb;
}


@media(max-width:767px){
  footer{
    margin-top: 80px;
  }
  footer .ftr2{
    padding: 50px 0 32px;
  }
  footer .ftr2 .box1{
    width: 100%;
  }
  footer .ftr2 .box1 a{
    text-align: center;
    width: 85%;
    display: block;
    margin: 0 auto;
  }
  footer .ftr2 .box1 .tel{
    text-align: center;
  }
  footer .ftr2 .box1 .tel a{
    width: auto;
    display: inline-block;
    text-align: center;
  }
  footer .ftr2 .box1 a img{
    width: 90%;
  }
  footer .ftr2 .box2{
    display: none;
  }
  footer .ftr2 .address{
    text-align: center;
  }
  footer .ftr1 .text{

  }
  footer .ftr1 .tel{
    margin-top: 16px;
    font-size: 30px;
  }
  .footer_fix{
    display: block;
  }
  footer .ftr_links{
    margin-top: 0;
  }
  footer .copy{
    padding-bottom: 50px;
  }
  footer .ftr1{
    padding: 20px 0 28px;
  }
}
@media(min-width:768px){
  footer{
    margin-top: 140px;
  }
  footer .ftr2 .box1{
    width: 40%;
  }
  footer .ftr2 .box2{
    width: 55%;
  }
  footer .ftr_links{
    margin-top: -165px;
  }
  footer .ftr_links li{
    font-size: 13px;
  }
}
@media(min-width:1024px){
  footer{
    margin-top: 200px;
  }
  footer .ftr2 .box1{
    width: 42.5%;
  }
  footer .ftr2 .box2{
    width: 47%;
  }
  footer .ftr_links li{
    font-size: 15px;
  }
}
@media(min-width:1200px){
  footer .ftr2 .box2{
    width: 43%;
  }
  footer .ftr_links{
    margin-top: -100px;
  }
}


/* 検索フォーム */
.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{
  margin-top: 22px;
}
.post_items .item:nth-child(n+2){
  margin-top: 27px;
}
.post_items .item a{
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post_items .item a:hover{
  text-decoration: none;
  color: #2fbbf5;
}
.post_items .item .date,
.post_items .item .category{
  font-family: Outfit;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.075em;
}
.post_items .item .date{
  width: 15.5%;
}
.post_items .item .category{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.075em;
  width: 135px;
  color: #2fbbf5;
  border: 2.05px solid #2fbbf5;
  border-radius: 30px;
  text-align: center;
}
.post_items .item .title{
  padding-left: 28px;
  font-weight: 500;
  font-size:  16px;
  letter-spacing: 0.075em;
  width: 66%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
  text-decoration: none;
}
.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;
}

@media(max-width:767px){
  .post_items .item a{
    padding: 0;
  }
  .post_items .item .date{
    width: 35.5%;
  }
  .post_items .item .category{
    width: 100px;
  }
  .post_items .item .title {
    width: 100%;
    padding-left: 8px;
  }
}
@media(min-width:768px){
  .post_items .item .date{
    width: 25.5%;
  }
  .post_items .item .category{
    width: 100px;
  }
  .post_items .item .title{
    padding-left: 0px;
    margin-top: 10px;
  }
}
@media(min-width:1024px){
  .post_items .item .date{
    width: 20%;
  }
  .post_items .item .category{
    width: 135px;
  }
  ;
  .post_items .item .title {
    width: calc(100% - 135px - 104px);
  }
}
@media(min-width:1200px){
  .post_items .item .date{
    width: 15.5%;
  }
  .post_items .item .title{
    padding-left: 28px;
  }
  .post_items .item .title{
    padding-left: 28.5px;
    margin-top: 0;
  }
}

/* item */
.items{
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.items .item{
  width: 50%;
  padding: 0 15px;
}
.items .item:nth-child(n+3){
  margin-top: 30px;
}
.items .item .inner{
  padding: 27px 25px 0 30px;
  background: #f8f7f7;
  height: 350px;
  position: relative;
}
.items .item1 .inner,
.items .item1 .inner:after{
  border-radius: 0 30px 0 30px;
}
.items .item2 .inner,
.items .item2 .inner:after{
  border-radius: 50px 0 50px 0;
}
.items .item1 .inner:after,
.items .item2 .inner:after{
  content: "";
  position: absolute;
  border: 1px solid #85cde7;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.items .item .nbr,
.items .item .title{
  text-align: center;
  font-family: Noto Serif JP;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #024189;
}
.items .item .nbr{
  font-size: 34px;
  padding-bottom: 5px;
  position: relative;
}
.items .item .nbr:after{
  content: "";
  position: absolute;
  border-bottom: 1px solid #024189;
  width: 30px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.items .item .title{
  margin-top: 15px;
  font-size: 24px;
  line-height: 1.35;
}
.items .item .text{
  margin-top: 25px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
}

@media(max-width:767px){
  .pg_corporate .section#sec1:before{
    height: auto;
  }
  .items{
    margin: 0;
    justify-content: center;
  }
  .items .item{
    width: 100%;
    padding: 0;
  }
  .items .item:nth-child(2){
    margin-top: 30px;
  }
  .items .item .inner{
    padding-bottom: 20px;
    height: 100%;
    ;
    max-height: 500px;
  }
  .items .item .title{
    font-size: 20px;
  }
  .pg_contact #sec1 .tt2,
  .pg_outline #sec1 .tt2,
  .pg_flow #sec1 .tt2,
  .pg_about_us #sec1 .tt2,
  .pg_access #sec1 .tt2{
    margin-top: 0;
  }

}
@media(min-width:768px){
  .items .item{
    padding: 0 5px;
  }
  .items .item .inner{
    height: 100%;
    ;
    min-height:420px;
    padding: 10px 25px 0 30px;
  }
  .items .item .title{
    font-size: 20px;
  }
  .items .item .text{
    margin-top: 0px;
    letter-spacing: 0.001em;
  }
}
@media(min-width:1024px){
  .items .item .inner{
    height: 100%;
    ;
    padding: 27px 29px 30px 30px;
    max-height: 400px;
  }
  .items .item .text{
    margin-top: 5px;
    letter-spacing: 0.05em;
  }
}
@media(min-width:1200px){
  .items .item{
    padding: 0 15px;
  }
  .items .item .inner{
    height: auto;
    min-height: 350px;
    max-height: 380px;
  }
  .items .item .title{
    font-size: 24px;
  }
  .items .item .text{
    margin-top: 25px;
  }
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  color: #73d2f5;
  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;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{

}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;

  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{

}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  margin: 36px 0px 42px;
  display: flex;
  list-style: none;
  overflow-x: auto;
  align-items: center;
}
.breadcrumb li {
  font-family: Noto Serif JP;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.075em;
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 5px;
}
.breadcrumb li a{
  position: relative;
  padding-right: 16px;
}
.breadcrumb li a:after{
  content: "＞";
  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%);
}

/* **********************************
 *  メイン
 * ********************************* */
.main{
  margin-top: 36px;
}

/*.tt1{
  font-family: Noto Serif JP;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.075em;
  line-height: 2;
  background: #74c4df;
  width: 38%;
  position: absolute;
  bottom: 5px;
  left: -95px;
}*/
.tt2{
  text-align: center;
}
/*#sec1 .tt2 {
  margin-top: -72px;
}*/
.tt_en,
.tt_ja{
  font-family: Noto Serif JP;
  font-weight: bold;
  letter-spacing: 0.075em;
}
.tt_en{
  font-size: 130px;
  color: #e4f3f7;
}
.tt_en:first-letter{
  color: #b1ddef;
}
.tt_ja{
  margin-top: -85px;
  font-size: 38px;
}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

@media(max-width:767px){
  .breadcrumb li{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .breadcrumb li:nth-child(3){
    width: 60%;
  }
  /*.tt1{
    width: 90%;
    left: -25px;
    bottom: 0;
    letter-spacing: 0.001em;
    font-size: 17px;
    padding-left: 10px;
    padding-top: 12px;
    padding-bottom: 0px;
  }*/
  /*#sec1 .tt2 {
    margin-top: -100px;
  }*/
  .tt_en{
    font-size: 48px;
  }
  .tt_ja{
    margin-top: -40px;
    font-size: 20px;
  }

  .top_about_us .btn a{
    max-width: 240px;
  }
  .pg_home .section#sec3{
    padding-top: 40px;
  }
}
@media(min-width:768px){
  .breadcrumb{
    margin: 38px 0px 90px;
  }
  /*.tt1{
    font-size: 25px;
    bottom: -1px;
    left: -100px;
    width: 70%;
    padding-top: 15px;
    line-height: 1;
  }*/
  .tt_en{
    font-size: 100px;
  }
  .tt_ja{
    margin-top: -70px;
    font-size: 30px;
  }
}
@media(min-width:1024px){

  .breadcrumb{
    margin: 38px 0px 90px;
  }
  /*.tt1{
    font-size: 27px;
    width: 57%;
  }*/
  .tt_en{
    font-size: 130px;
  }
  .tt_ja{
    margin-top: -85px;
    font-size: 38px;
  }
}
@media(min-width:1200px){
  .breadcrumb{
    margin: 38px 0px 115px;
  }
  /*.tt1{
    font-size: 30px;
    width: 50%;
  }*/
}
@media(min-width:1450px){
  /*{
    width: 38%;
    left: -95px;
  }*/
}
@media(min-width:1600px){
  .tt1{
  }
}
/* ボタン */
.btn a{
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  display: block;
  max-width: 285px;
  width: 100%;
  padding: 10px 0 13px;
  color: #fff;
  background: #eed557;
  border-radius: 30px;
  position: relative;
  box-shadow: 1.286px 1.532px 1.98px 0.02px rgba(0, 0, 0, 0.1);
}
.btn a:after{
  content: "";
  background: url(/img/btn.png) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 20%;
  height: 10px;
  transform: translateY(-50%);
}
.btn a:hover{
  text-decoration: none;
  background: #73d2f5;
}

/* haikei */
/*.haikei1,
.haikei2,
.haikei3,
.haikei4{
  position: relative;
}
.haikei1:before,
.haikei2:before,
.haikei3:before,
.haikei4:before{
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.haikei1:before{
  background: #d3edf6;
  border-radius: 0 0 200px 0;
}
.haikei2:before{
  background: linear-gradient(#fff 0%, #85cee8 30%, #85cee8 70%, #fff 100%);
}
.haikei3:before{
  background: #d3edf6;
  border-radius: 155px 0 155px 0;
}
.haikei4:before{
  background: #d3edf6;
  border-radius: 155px 0 0 0;
}*/

/* 詳しく見る サンプル */
.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: 98px;
}
.pg_home .section#sec2{
  margin-top: 102px;
  padding: 32px 0 97px;
  position: relative;
}
.pg_home .section#sec2:after{
  content: "";
  width: 100%;
  height: 100%;
  background: url(/img/cmn_bg.png);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 0 50px 0;
}
.pg_home .section#sec3{
  padding-top: 150px;
  color: #fff;
  background: url(/img/top/top_nikoiti.png)top center no-repeat;
  background-size: cover;
  height: 1885px;
}
.pg_home .section#sec4{
  margin-top: 142px;
}

/* top 新着情報 */
.top_topics{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_topics .box2{
  width: 69%;
}
.top_topics .tt_ja,
.top_topics .tt_en{
  font-weight: 700;
  color: #73d2f5;
}
.top_topics .tt_ja{
  margin-top: 0;
  font-size: 50px;
  font-weight: 700;
}
.top_topics .tt_en{
  margin-top: -7px;
  font-size: 16px;
}
.top_topics .btn{
  margin-top: 43px;
}
.top_topics .post_items .item:nth-child(n+4){
  display: none;
}

/* top みなと上本町税理士法人について */
.top_about_us{
  text-align: center;
}
.top_about_us .tt_en{
  color: #e4f2f7;
}
.top_about_us .tt_en:first-letter{
  color: #b1ddef;
}
.top_about_us .text{
  margin-top: 20px;
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.9;
}
.top_about_us .btn{
  margin-top: 43px;
}
.top_about_us .btn a{
  left: 50%;
  transform: translateX(-50%);
}

/* 業務内容 *//* ご相談の流れ */
.top_service .tt_en{
  color: #def1f9;
}
.top_flow .tt_en{
  color: #afddee;
  text-align: end;
}
.top_service .tt_en:first-letter{
  color: #83b7ca;
}
.top_flow .tt_en:first-letter{
  color: #73bad3;
}
.top_service .tt_ja,
.top_flow .tt_ja{
  text-shadow: 1.286px 1.532px 1.98px rgba(0, 0, 0, 0.3);
}
.top_flow .tt_ja{
  text-align: end;
}

.top_service{
  position: relative;
}
.top_service:after{
  content: "";
  border-bottom: 2px solid #fff;
  position: absolute;
  width: 175%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -13.5%;
}
.top_service .service_items{
  margin: 46px -10px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_service .service_items .item{
  width: 50%;
  padding: 0 15px
}
.top_service .service_items .item:nth-child(2){
  margin-top: 50px;
}
.top_service .service_items .img{
  position: relative;
}
.top_service .service_items .nbr,
.top_service .service_items .btn{
  position: absolute;
}
.top_service .service_items .nbr{
  font-family: Noto Serif JP;
  font-weight: 700;
  font-size: 70px;
  letter-spacing: 0.075em;
  text-shadow: 1.286px 1.532px 4.95px rgba(0, 0, 0, 0.15);
  top: -36px;
  left: -3px;
}
.top_service .service_items .btn{
  width: 100%;
  max-width: 285px;
  bottom: -26px;
  right: 0;
}
.top_service .service_items .text{
  margin-top: 42px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.9;
}
.top_flow{
  margin-top: 155px;
}
.top_flow .flow_items{
  margin-top: 50px;
  border: 5px solid #349dc4;
  background: #fff;
  padding: 20px 28px;
  background-image:url(/img/top/bg2.jpg);
  background-repeat: repeat;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_flow .flow_items .item{
  width: 47.74%;
  padding: 0 0;
}
.top_flow .flow_items .item .inner{
  color: #000;
  padding: 0;
  position: relative;
}
.top_flow .flow_items .item .inner:first-child{
  /*  border-right: 1px dotted #349dc4;
    border-bottom: 1px dotted #349dc4;*/
}
.top_flow .flow_items .item .inner:last-child{
  /*  border-top: 1px dotted #349dc4;
    border-left: 1px dotted #349dc4;*/
}

.top_flow .flow_items .item .nbr{
  font-family: Outfit;
  font-weight: 500;
  font-size: 55px;
  letter-spacing: 0.075em;
  line-height: 1;
}
.top_flow .flow_items .item .blue{
  color: #18a9df;
}
.top_flow .flow_items .item .img,
.top_flow .flow_items .item .text{
  text-align: center;
}
.top_flow .flow_items .item .img{
  margin-top: -20px;
}
.top_flow .flow_items .item .text{
  font-family: Noto Serif JP;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.075em;
  margin-top: 14px;
}
/*.top_flow .img{
  text-align: center;
  margin-top: 50px;
}*/
.top_flow .btn{
  margin-top: 50px;
}
.top_flow .btn a{
  left: 50%;
  transform: translateX(-50%);
}

/* アクセス */
.top_access{
}
.top_access .tt_en,
.top_access .tt_ja{
  text-align: center;
}
.top_access .tt_en{
  color: #dff1f8;
}
.top_access .tt_en:first-letter{
  color: #d2dee4;
}
.top_access .tt_ja{

}
.top_access .outer{
  margin-top: 30px;
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
}
.top_access .map{
  width: 50.75%;
}
.top_access .map iframe{
  width: 100%;
  height: 400px;
}
.top_access .inner{
  width: 49.25%;
  position: relative;
}
.top_access .in1{
  /*  background: #73d2f5;*/
  background: url(/img/top/top_access1.png)no-repeat;
}
.top_access .in2{
  /*  background: #50a4c2;
    background: #3f90ac;*/
  background: url(/img/top/top_access2.png)no-repeat;
}
.top_access .inner .in_text{
  position: absolute;
  top: 19%;
  bottom: 5%;
}
.top_access .in1 .in_text{
  width: 45.5%;
  left: 6%;
}
.top_access .in2 .in_text{
  width: 50%;
  right: 3.25%;
}
.top_access .inner .title,
.top_access .inner .address,
.top_access .inner .tel{
  font-family: Noto Serif JP;
  color: #fff;
}
.top_access .inner .title{
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.075em;
  text-align: center;
}
.top_access .inner .address,
.top_access .inner .tel{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.75;
}
.top_access .inner .address{
  margin-top: 12px;
  border-top: 1px solid #fff;
  padding-top: 12px;
}
.top_access .inner .tel{
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
}
.top_access .inner .tel:before {
  content: "\f879";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}
.top_access .inner .btn{
  margin-top: 30px;
}
.top_access .inner .btn a{
  margin: 0 auto;
}

@media(max-width:767px){
  .pg_home .section#sec1{
    margin-top: 0px;
  }
  .pg_home .section#sec3{
    height: auto;
    padding-top: 40px;
  }
  .pg_home .section#sec2,
  .pg_home .section#sec4{
    margin-top: 70px;
  }
  .top_topics{
    justify-content: center;
  }
  .top_topics .tt_ja{
    font-size: 28px;
  }
  .top_topics .tt_en{
    text-align: center;
  }
  .top_topics .box2{
    width: 100%;
  }
  .top_about_us .text{
    text-align: justify;
  }
  .top_service .tt_en,
  .top_flow .tt_en{
    font-size: 50px;
  }
  .top_service:after{
    bottom: -4.5%;
  }
  .top_flow{
    margin-top: 55px;
  }
  .top_service .tt_ja,
  .top_flow .tt_ja{
    font-size: 24px;
    margin-top: -36px;
  }
  .top_service .service_items .item{
    width: 100%;
  }
  .top_flow .flow_items .item{
    width: 100%;
    padding: 0 0;
  }
  .top_access .map{
    width: 100%;
    order: 1;
  }
  .top_access .map iframe{
    height: 200px;
  }
  .top_access .inner{
    margin-top: 15px;
    width: 100%;
    height: auto;
    order: 2;
  }
  .top_access .inner .in_text{
    position: relative;
    width: 100%;
    top:inherit;
    left: inherit;
    right: inherit;
    transform: none;
    padding: 42px 20px 32px;
  }
  .top_topics .btn.sp{
    width: 100%;
  }
  .top_topics .btn.sp a{
    margin: 0 auto;
  }
  .top_flow .flow_items{
    padding: 20px 16px;
  }
  .top_flow .flow_items .item{
    padding: 0 0 16px;
  }
  .top_flow .flow_items .item:nth-child(n+2) .inner{
    padding-top: 20px;
  }
  .top_flow .flow_items .item:nth-child(n+2) .inner:after{
    content: "";
    display: block;
    border-top: 1px dashed #349dc4;
    width: 102.85%;
    height: 1px;
    position: absolute;
    top:0;
    left:0;
    ;
  }

}
@media(min-width:768px){
  .pg_home .section#sec1{
    margin-top: 0px;
  }
  .pg_home .section#sec2{
    margin-top: 70px;
  }
  .pg_home .section#sec2:after{
    border-radius: 0 0 80px 0;
  }
  .pg_home .section#sec4{
    margin-top: -100px;
  }
  .top_topics .box1{
    width: 26%;
  }
  .top_topics .box2{
    width: 70%;
  }
  .top_access .in1 .in_text,
  .top_access .in2 .in_text{
    width: 93%;
  }
  .top_topics .tt_ja{
    font-size: 40px;
  }
  .top_topics .btn{
    margin-top: 50px;
  }
  .post_items .item .title{
    width: 100%;
  }
  .top_flow .flow_items{
    padding: 20px 11px;
  }
  .top_flow .flow_items .item:nth-child(odd) .nbr{
    padding-left: 16px;
  }
  .top_flow .flow_items .item:nth-child(odd) .inner:after{
    content: "";
    display: block;
    border-right: 1px dashed #349dc4;
    height: 99.85%;
    width: 1px;
    position: absolute;
    top:5px;
    right: -15px;
    ;
  }
  .top_flow .flow_items .item:nth-child(n+3) .inner:before{
    content: "";
    display: block;
    border-top: 1px dashed #349dc4;
    width: 102.85%;
    height: 1px;
    position: absolute;
    top:-2px;
    left:0;
    ;
  }
  .top_flow .flow_items .item:nth-child(n+4) .inner:before{
    left: auto;
    right: 0;
  }
  .top_flow .flow_items .item:nth-child(n+3){
    margin-top: 16px;
  }
  .top_flow .flow_items .item:nth-child(n+3) .inner{
    padding-top: 16px;
  }
}
@media(min-width:1024px){
  .pg_home .section#sec2{
    margin-top: 100px;
  }
  .pg_home .section#sec2:after{
    border-radius: 0 0 200px 0;
  }
  .pg_home .section#sec4{
    margin-top: 0px;
  }
  .top_topics .box1{
    width: 30%;
  }
  .top_topics .box2{
    width: 62%;
  }
  .top_topics .tt_ja{
    font-size: 50px;
  }
  .top_topics .btn{
    margin-top: 43px;
  }
  .post_items .item .title{
    width:auto;
  }
  .top_flow .flow_items .item:nth-child(odd) .inner:after{
    right: -20px;
    ;
  }
}
@media(min-width:1200px){
  .pg_home .section#sec1{
    margin-top: 98px;
  }
  .pg_home .section#sec2{
    margin-top: 102px;
  }
  .pg_home .section#sec3{
    padding-top: 165px;
  }
  .pg_home .section#sec4{
    margin-top: 142px;
  }
  .top_topics .box1{
    width: 30%;
  }
  .top_topics .box2{
    width: 68.5%;
  }
  .top_access .in1 .in_text{
    width: 50%;
  }
  .top_access .in2 .in_text{
    width: 55%;
  }
  .post_items .item .title{
    width: calc(100% - 117px - 135px);
  }
  .top_flow .flow_items .item:nth-child(odd) .inner:after{
    right: -25px;
  }

}


/* **********************************
 *  みなと上本町税理士法人について
 * ********************************* */
.pg_about_us{

}
.pg_about_us .section#sec1{
  padding-bottom: 87px;
  position: relative;
}
.pg_about_us .section#sec1:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/img/cmn_bg.png);
  background-position: 100% 100%;
  border-radius: 9% 0 9% 0;
  background-repeat: left top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.pg_about_us .section#sec2{
  padding-top: 100px;
  padding-bottom: 125px;
  position: relative;
}
.pg_about_us .section#sec2 .container{
  position: relative;
  z-index: 5;
}
.pg_about_us .section#sec2:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/img/about_us/bg5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.pg_about_us .section#sec3{
  margin-top: 107px;
  padding-bottom: 105px;
}
.pg_about_us .tt2{
  padding-top: 33px;
}
.pg_about_us #sec2 .tt2 .tt_en{
  color: #bee4f3;
}
.pg_about_us #sec2 .tt2 .tt_en:first-letter{
  color: #83cdea;
}
.pg_about_us #sec3 .tt2 .tt_en{
  margin-top: 15px;
  font-size: 120px;
}
.message,
.strong,
.introduction .name_box,
.introduction .career,
.introduction .affiliation{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message{
  margin-top: 68px;
}
.strong{
  margin-top: 87px;
}
.message .box1,
.strong .box2 .point .title,
.introduction .name_box .txt .name{
  font-family: Noto Serif JP;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.075em;
}
.message .box2,
.strong .box2 .point .text,
.introduction .name_box .txt .text{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
}
.message .box1{
  margin-top: 112px;
  line-height: 2;
  color: #024189;
  width: 50%;
}
.message .box2{
  border-left: 1px solid #000;
  padding: 30px 0 30px 87px;
  width: 50%;
}
.strong .box1{
  width: 50%;
}
.strong .box2{
  width: 45.8%;
  margin-top: 3px;
}
.strong .box2 .point:last-child,
.strong .box2 .point .text{
  margin-top: 25px;
}
.strong .box2 .point .title{
  display: flex;
  align-items: flex-end;
  position: relative;
  line-height: 1;
}
.strong .box2 .point .title .tt span{
  background: linear-gradient(transparent 75%, #f0d649 0%);
}
.strong .box2 .point .title .nbr span{
  font-size: 42px;
  position: relative;
}
.strong .box2 .point .title .nbr span:before{
  content: "";
  position: absolute;
  height: 15px;
  left: 0;
  right: -5px;
  bottom: 2px;
  z-index: -1;
  /* 黄色ラインのダブり 
  background: linear-gradient(transparent 45%, #f0d649 0%);*/
}
.strong .box2 .point .title .nbr span:after{
  content: "｜";
  font-size: 26px;
  padding: 0 8px 0 2px;
}
.introduction:last-child{
  margin-top: 120px;
}
.introduction .name_box{
  margin-top: 85px;
}
.introduction .name_box .txt{
  margin-top: 65px;
  width: 45%;
}
.introduction .name_box .txt .name{
  font-weight: 700;
}
.introduction .name_box .txt .name span{
  font-size: 18px;
  padding-right: 15px;
}
.introduction .name_box .txt .text{
  margin-top: 18px;
}
.introduction .name_box .img{
  width: 48.7%;
}
.introduction .career,
.introduction .affiliation{
  padding: 28px 0;
  background: #f8f7f7;
  position: relative;
}
.introduction .career{
  margin-top: 79px;
}
.introduction .affiliation{
  margin-top: 22px;
}
.introduction .career:after,
.introduction .affiliation:after{
  content: "";
  border: 1px solid #85cde7;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.introduction .career .title,
.introduction .career .text,
.introduction .affiliation .title,
.introduction .affiliation .text{
  font-family: Noto Serif JP;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.introduction .career .title,
.introduction .affiliation .title{
  margin-top: 115px;
  padding-left: 103px;
  font-size: 24px;
  text-align: center;
}
.introduction .career .title{
  margin-top: 115px;
  width: 42%;
}
.introduction .affiliation .title{
  margin-top: 61px;
  width: 42%;
}
.introduction .career .text,
.introduction .affiliation .text{
  font-size: 16px;
  line-height: 2.6;
  width: 57.7%;
  position: relative;
}
.introduction .career .text{
  width: 57.7%;
  position: relative;
}
.introduction .career .text:before{
  content: "";
  position: absolute;
  top: 15px;
  left: 7px;
  bottom: 15px;
  border-left: 1px solid #85cde8;
}
.introduction .career .text li span:before{
  content: "●";
  color: #85cde8;
  padding-right: 34px;
}
.introduction .career .text li span:after{
  content: "｜";
  padding: 0 16px 0 17px;
}
.introduction .affiliation .text{
  width: 57.7%;
}
.introduction .affiliation .text li:before{
  content: "〇";
  color: #85cde8;
  padding-right: 34px;
}

@media(max-width:767px){
  .pg_about_us .section#sec1{
    padding-bottom: 46px;
  }
  .pg_about_us .section#sec1:after{    
    border-radius: 50px 0 50px 0;
  }
  .pg_about_us .section#sec2{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pg_about_us .section#sec3{
    margin-top: 0;
    padding-bottom: 30px;
  }
  .pg_about_us #sec3 .tt2 .tt_en{
    font-size: 37px;
  }
  .pg_about_us #sec3 .tt2 .tt_ja{
    margin-top: -26px;
  }
  .message .box1,
  .message .box2,
  .strong .box1,
  .strong .box2,
  .strong .box2 .point .title,
  .strong .box2 .point .text,
  .introduction .name_box .txt .name,
  .introduction .name_box .txt .text,
  .introduction .name_box .txt,
  .introduction .name_box .img,
  .introduction .career .title,
  .introduction .career .text,
  .introduction .affiliation .title,
  .introduction .affiliation .text{
    width: 100%;
  }
  .message .box1,
  .strong .box2 .point .title,
  .introduction .name_box .txt .name{
    font-size: 20px;
    text-align: justify;
  }
  .message{
    margin-top: 0;
  }
  .message .box1{
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 0.001em;
  }
  .message .box2{
    padding: 0;
    border: none;
  }
  .strong .box2 .point .title{
    align-items: end;
  }
  .strong .box2 .point .title:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 37px;
    bottom: -7px;
    z-index: -1;
    background: linear-gradient(transparent 75%, #f0d649 0%);
  }
  .strong .box2 .point .title .nbr span,
  .strong .box2 .point .title .nbr span:after,
  .strong .box2 .point .title .tt span{
    background: none;
  }
  .strong .box2 .point .title .tt span{
    line-height: 1;
  }
  .introduction .name_box{
    margin-top: 50px;
  }
  .introduction .name_box .img{
    order: 1;
  }
  .introduction .name_box .txt{
    margin-top: 20px;
    order: 2;
  }
  .introduction .career .title,
  .introduction .affiliation .title{
    margin: 0;
    padding: 0;
  }
  .introduction .career .text,
  .introduction .affiliation .text{
    padding: 0 25px;
  }
  .introduction .career .text:before{
    left: 32.5px;
  }
  .introduction .career .text li{
    margin-left: 27px;
  }
  .introduction .career .text li span:before{
    position: absolute;
    left: 25px;
  }
  .introduction .career .text li span:after{
    padding: 0;
  }
  .introduction .affiliation .text li:before{
    padding-right: 5px;
  }
  .pg_about_us .strong{
    margin-top: 42px;
  }
  .pg_about_us .section#sec3 .introduction .name_box{
    margin-top: 40px;
  }
  .introduction:last-child{
    margin-top: 70px;
  }
}
@media(min-width:768px){
  .pg_about_us .section#sec1:after {
    border-radius: 80px 0 80px 0;
  }
  .pg_about_us #sec3 .tt2 .tt_en{
    margin-top: 15px;
    font-size: 75px;
  }
  .message .box1,
  .strong .box2 .point .title,
  .introduction .name_box .txt .name{
    font-size: 22px;
    text-align: justify;
  }
  .message .box1{
    width: 47%;
  }
  .message .box2{
    padding-left: 45px;
  }
  .strong .box2 .point .title .nbr span{
    font-size: 30px;
  }
  .strong .box2 .point .title:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 37px;
    bottom: -7px;
    z-index: -1;
    background: linear-gradient(transparent 75%, #f0d649 0%);
  }
  .strong .box2 .point .title .nbr span,
  .strong .box2 .point .title .tt span{
    background: none;
  }
  .introduction .name_box .txt{
    margin-top: 0px;
  }
  .pg_about_us .tt2{
    padding-top: 50px;
  }

}
@media(min-width:1024px){
  .pg_about_us .section#sec1:after {
    border-radius: 150px 0 150px 0;
  }
  .message .box1{
    width: 50%;
  }
  .message .box2 {
    padding-left: 65px;
  }
  .strong .box2 .point .title:after{
    display: none;
  }
  .strong .box2 .point .title .nbr span {
    font-size: 42px;
  }
  .strong .box2 .point .title .nbr span:before{
    bottom: 5px;
    background: linear-gradient(transparent 45%, #f0d649 0%);
  }
  .strong .box2 .point .title .tt span{
    background: linear-gradient(transparent 75%, #f0d649 0%);
  }

  .pg_about_us .tt2{
    padding-top: 33px;
  }
  .pg_about_us .strong{
    margin-top: 87px;
  }
}
@media(min-width:1200px){
  .pg_about_us #sec3 .tt2 .tt_en{
    margin-top: 15px;
    font-size: 120px;
  }
  .message .box1,
  .strong .box2 .point .title,
  .introduction .name_box .txt .name{
    font-size: 26px;
  }
  .message .box2{
    padding-left: 87px;
  }
  .strong .box2 .point .title .nbr span:before{
    bottom: 4px;
    background: linear-gradient(transparent 40%, #f0d649 0%);
  }
  .introduction .name_box .txt{
    margin-top: 65px;
  }
}



/* **********************************
 *  法人のご相談/個人の相談
 * ********************************* */
.pg_corporate .section#sec1,
.pg_individual .section#sec1{
  /*  padding-bottom: 100px;*/
  position: relative;
}
.pg_individual .section#sec1{
  padding: 50px 0;
}
.pg_corporate .section#sec1{
  /*  background: url(/img/corporate.png)top center no-repeat;
    height:auto;
    position: relative;*/
  position: relative;
}
.pg_individual .section#sec1:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/img/cmn_bg.png);
  background-position: left top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  border-radius: 50px 0 50px 0;
}
.pg_corporate .section#sec1:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/img/cmn_bg.png);
  background-position: left top;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;

}
.corporate{
  padding-top: 124px;
}
.individual{
  padding-top: 0;
}
.corporate .items,
.individual .items{
  margin-top: 48px;
}

@media(max-width:767px){
  .pg_corporate .section#sec1{
    background-repeat: repeat;
    height: auto;
    padding-bottom: 50px;
  }
  .pg_corporate .section#sec1:before{
    border-radius: 50px 0 50px 0;
  }
  .corporate{
    padding-top: 30px;
  }
  .corporate .items,
  .individual .items{
    margin-top: 36px;
  }
}
@media(min-width:768px){
  .pg_corporate .section#sec1{
    padding-bottom: 60px;
  }
  .pg_corporate .section#sec1:before{
    border-radius: 80px 0 80px 0;
  }
  .pg_individual .section#sec1{
    padding: 52px 0 80px;
  }
  .pg_individual .section#sec1:before{
    border-radius: 80px 0 80px 0;
  }
  .corporate{
    padding-top: 52px;
  }
  .corporate .items{
    margin: 0 -15px;
  }
  .corporate .items,
  .individual .items{
    margin-top: 50px;
  }
}
@media(min-width:1024px){
  .pg_corporate .section#sec1{
    padding-bottom: 90px;
  }
  .pg_corporate .section#sec1:before,
  .pg_individual .section#sec1:before{
    border-radius: 150px 0 150px 0;
  }
  .pg_individual .section#sec1{
    padding: 52px 0 100px;
  }
  .corporate{
    padding-top: 52px;
  }
  .corporate .items,
  .individual .items{
    margin-top: 48px;
  }
}
@media(min-width:1200px){
  .corporate{
    padding-top: 52px;
  }
}


/* **********************************
 *  
 * ********************************* */
.pg_{

}
.pg_ .section#sec1{

}
.pg_ .section#sec2{

}
.pg_ .section#sec3{

}

