@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #181818;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
} 

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

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

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video { 
  position: relative; 
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video, 
.responsive_video iframe, 
.responsive_video object, 
.responsive_video embed { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{
  
}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{
  
}
.tbl td{
  
}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  padding: 0 10px; 
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  padding: 70px 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: 360px;
}

/* 共通の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-top: 84px;
}
header .hdr1{
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
header .inner{
  padding: 25px 32px 15px;  
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;
}
header .hdr1 .hdr_contact{
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  display: flex;
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  position: relative;
  line-height: 1;
}
.gnav > ul > li + li{
  border-left: 1px solid;
}
.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: 15px;
  text-decoration: none;
  display: block;
  padding: 0 15.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.gnav li a:hover{
  text-decoration: underline;
}

.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;
}
.gnav .l_1{
  width: 130px;
  font-size: 14px;
  margin-left: 5px;
  padding: 8px;
  display: block;
  border: 2px solid #006ebc;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: #006ebc;
}
.gnav .l_1:hover{
  background: #006ebc;
  color: #ffffff;
  text-decoration: none;
}
.gnav .l_2{
  width: 130px;
  font-size: 14px;
  margin-left: 6px;
  background: #006ebc;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #006ebc;
}
.gnav .l_2:hover{
  background: #ffffff;
  color: #006ebc;
  text-decoration: none;
}
.gnav .l_2 i{
  margin-right: 15px;
}


.mv{
  position: relative;
  height: 800px;
  
  background-image: url('/img/top/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{
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 5px #444;
  letter-spacing: 0.1em;
  text-align: center;
}
.mv .mv_box .txt .large{
  font-size: 50px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer {
  padding-top: 50px;
  border-top: 1px solid #898989;
}

footer .ftr1{
  margin-bottom: 45px;
}
footer .ftr_links{
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
footer .ftr_links li{
  text-align: center;
  line-height: 1;
  padding: 0 48.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
footer .ftr_links li:first-child{
  padding-left: 0;
}
footer .ftr_links li:last-child{
  padding-right: 0;
}
footer .ftr_links li + li{
  border-left: 1px solid;
}
footer .ftr1 .f_link{
  font-weight: 500;
  letter-spacing: 0.1em;
}
footer .ftr1 .f_link + .f_link{
  margin-left: 28px;
  font-weight: 400;
  letter-spacing: 0;
}
footer .ftr1 .f_link + .f_link:before{
  content: "〉";
}

footer .ftr2{
  margin-bottom: 55px;
}
footer .ftr2 .tel{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
footer .ftr2 .contact{
  width: 160px;
  font-size: 15px;
  padding: 2px;
  margin-left: 15px;
  border: 2px solid #006ebc;
  text-align: center;
  color: #006ebc;
  display: inline-block;
}
footer .ftr2 .contact i{
  margin-right: 8px;
}
footer .ftr2 .download{
  width: 240px;
  font-size: 15px;
  padding: 5px;
  margin: 14px 0 0 auto;
  border: 2px solid #006ebc;
  border-radius: 5px;
  text-align: center;
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}
footer .ftr2 .download:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
footer .ftr2 .container{
  display: flex;
  justify-content: space-between;
}
footer .ftr2 .box1{
  
}
footer .ftr2 .box2{
  text-align: right;
}
footer .ftr2 .contact:hover,
footer .ftr2 .download:hover{
  text-decoration: none;
  background: #016ebc;
  color: #ffffff;
}

footer .copy{
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 26.66%;
  border-right: 1px solid #ffffff;
}
.footer_fix ul li.btn2{
  width: 20%;
}
.footer_fix ul li a{
  font-size: 12px;
  height: 100%;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 5px 5px;
  background: #016ebc;
  color: #FFF;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.footer_fix ul li.btn2 a{
  background: #FFF;
  color: #016ebc;  
  border-top: 1px solid #016ebc;
}
.footer_fix ul li a i{
  width: 100%;
  font-size: 22px;
  margin-bottom: 5px;
  display: block;
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404 p,
.pg_404 .link_2{
  margin-top: 50px;
}

.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: 33px 0;
  margin-top: 100px;
  border-top: 1px solid;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px 0;
  display: flex;
  align-items: center;
  position: relative;
  letter-spacing: 0.05em;
}
.post_items .item + .item{
  margin-top: 5px;
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 195px;
}
.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-size: 16px;
  font-weight: 400;
  width: calc(100% - 195px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  /*padding-right: 1em;*/
}
/*.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
/*  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;*/
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
  font-weight: 500;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 2px solid #016ebc;
  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;
  padding: 10px 100px;
  border: 2px solid #016ebc
}
.pagination .nav-posts .page-next a:hover,
.pagination .nav-posts .page-prev a:hover,
.pagination .nav-posts .page-archive a:hover{
  text-decoration: none;
  background: #016ebc;
  color: #ffffff;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #eeeeee;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.contact_info .box2{
  font-size: 40px;
  margin: 44px 0 5px;
  line-height: 1;
  color: #2c8dd1;
  font-weight: 700;
  font-family: 'Cambay', sans-serif;
  letter-spacing: 0.08em;
}
.contact_info .box3{
  letter-spacing: 0.05em;
}

.contact_form{
  width: 100%;
}
.contact_form + p{
  margin: 55px 0 35px;
}
.contact_form + .contact_form{
  margin-top: 55px;
}
.contact_form tr{
}
.contact_form th,
.contact_form td{
  padding: 12px 0;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  width: 275px;
  padding: 20px 40px 0 0;
  vertical-align: top;
}
.contact_form th .require{
  width: 60px;
  display: inline-block;
  padding: 0 5px;
  margin: 4px 0;
  color: #ffffff;
  background: #e60012;
  font-size: 12px;
  font-weight: 500;
  float: right;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.contact_form th .require.blu{
  background: #006ebc;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{
  
}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 15px;
  max-width: 100%;
  border: 0;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  /*width: 500px;*/
  width: 100%;
  background: #eeeeee;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
  height: 264px;
  background: #eeeeee;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"]{
  width: 150px;
}
.contact_form td [name="addr1"],
.contact_form td .wpcf7-select{
  width: 286px;
  background: #eeeeee;
}
.contact_form td .lot{
  width: 146px;
  margin: 0 15px;
  display: inline-block;
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.contact_form td .wpcf7-checkbox, 
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


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

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 


.contact_form_acceptance{
  margin-top: 74px;
  letter-spacing: 0.05em;
  text-align: center;
}
.contact_form_acceptance a{
  display: inline-block;
  border-bottom: 1px solid;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}
.contact_form_acceptance input{
  margin-right: 15px;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  padding: 100px 0 0;
  text-align: center;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #006ebc;
  color: #FFF;
  border: 0;
  padding: 22px 10px;
  width: 350px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{
  margin-top: 85px;
}
.privacy_items .item{
  letter-spacing: 0.05em;
}
.privacy_items .item + .item{
  margin-top: 38px;
}
.privacy_items .item h4{
/*  font-size: 18px;  
  border-left: 6px solid #bbbbbb;
  padding-left: 15px;*/
  margin-bottom: 2px;
  font-weight: 500;
}
.privacy_items .item .txt{
  
}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{
  
}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item a{
  text-decoration: underline;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 50px 0 130px;
}
.home .main{
  padding: 20px 0 130px;
}

.tt1{
  font-size: 16px;
  margin-bottom: 35px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.1em;
}
.tt1 span{
  font-size: 60px;
  line-height: 1.1;
  display: block;
  font-weight: 500;
  font-family: 'Cambay', sans-serif;
}

.tt2{
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}
.tt3{
  
}
.tt3 span{
  
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

/* 詳しく見る サンプル */
.read_more{
  
}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}




/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact .tt1{
  margin-bottom: 85px;
}
.contact_form th,
.contact_form td{
  letter-spacing: 0.04em;
}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 80px;
}


/* **********************************
 *  Home
 * ********************************* */
.center{
  text-align: center;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.list_4{
  margin: 0 -20px;
}
.list_4 .item{
  width: 25%;
  padding: 0 20px;
}
.recommend_items .img:before{
  padding-top: 81%;
  content: "";
  display: block;
}
.recommend_items .inner{
  padding: 0 5px;
}
.recommend_items .bold{
  font-size: 16px;
  margin: 10px 0;
  font-weight: 500;
}
.recommend_items .desc{
  /*height: 108px;*/
  font-size: 15px;
}
.recommend_items .more{
  width: 150px;
  font-size: 15px;
  margin: 30px auto 0;
  padding: 2px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #006ebc;
  border-radius: 17px;
  color: #006ebc;
  display: block;
}
.pg_home .section#sec3{
  margin: 130px 0 70px;
  padding: 88px 0 80px;
  background: url(/img/top/bg_1.jpg?1) no-repeat center / cover;
}
.pg_home .section#sec3 .container,
.pg_home .section#sec5 .container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg_home .section#sec3 .bg{
  width: 450px;
  padding: 35px 20px 45px;
  background: rgba(255,255,255,0.9);
}
.pg_home .section#sec3 .tt1{
  letter-spacing: 0.05em;
}
.pg_home .section#sec3 .tt1 span{
  line-height: 1;
}
.link_1{
  width: 210px;
  font-size: 15px;
  margin: 45px auto 0;
  padding: 6px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #006ebc;
  border-radius: 21px;
  color: #006ebc;
  display: block;
  background: #ffffff;
}
.link_1:hover{
  background: #006ebc;
  color: #ffffff;
  text-decoration: none;
}
.pg_home .section#sec4 .flow + .center{
  margin: 42px 0 0;
  letter-spacing: 0.05em;
}
.pg_home .section#sec4 .link_1{
  margin-top: 25px;
}
.pg_home .section#sec5{
  margin: 80px 0 40px;
  padding: 80px 0 75px;
  background: url(/img/top/bg_2.jpg) no-repeat center / cover;
}
.pg_home .section#sec5 .bg{
  padding: 15px 15px 30px;
  background: rgba(255,255,255,0.9);
}
.pg_home .section#sec5 .tt1{
  margin-bottom: 15px;
}
.pg_home .section#sec5 .link_1{
  margin: 25px auto 0;
}
.pg_home .section#sec6{
  padding: 100px 0;
}
.pg_home .section#sec6 .tt1{
  margin-bottom: 10px;
}
.pg_home .section#sec6 .item{
  padding: 25px 0;
  display: flex;
  border-bottom: 1px dotted;
  line-height: 1;
}
.pg_home .section#sec6 .item .date{
  width: 145px;
  border-right: 1px solid;
  letter-spacing: 0.05em;
}
.pg_home .section#sec6 .item .title{
  width: calc(100% - 145px);
  padding-left: 60px;
}
.pg_home .section#sec6 .item .title a{
  display: block;
}
.pg_home .section#sec6 .link_1{
  margin-top: 50px;
}
.section#sec7{
  padding: 50px 0 80px;
}
.pg_home .section#sec7 .box{
  width: 50%;
  padding: 80px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg_home .section#sec7 .box.b1{
  background: url(/img/top/bg_3.jpg) no-repeat center / cover;
}
.pg_home .section#sec7 .box.b2{
  background: url(/img/top/bg_4.jpg) no-repeat center / cover;
}
.pg_home .section#sec7 .box .bg{
  width: 450px;
  padding: 20px 15px 40px;
  background: rgba(255,255,255,0.9);
}
.section#contact .box.b1{
  width: 63.5%;
  background: #006ebc;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section#contact .box.b1:hover{
  opacity: 0.7;
  text-decoration: none;  
}
.section#contact .box.b1:before{
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  content: "";
  left: 15px;
  top: 15px;
  position: absolute;
  display: block;
  border: 3px solid #ffffff;
}
.section#contact .box.b1 .tt1{
  margin-bottom: 20px;
}
.section#contact .box.b2{
  width: 36.5%;
  padding-left: 30px;
}
/* 共通 */
.section#contact .container > .bg{
  padding: 48px 40px 45px;
  background: #006ebc;
  color: #ffffff;
  position: relative;
  text-align: center;
  display: block;
}
.section#contact .container > .bg:hover{
  opacity: 0.7;
  text-decoration: none;  
}
.section#contact .container > .bg:before{
  width: calc(100% - 35px);
  height: calc(100% - 35px);
  content: "";
  left: 15px;
  top: 15px;
  position: absolute;
  display: block;
  border: 3px solid #ffffff;
}
.section#contact .container > .bg .large{
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
/* 導入事例のみ */
.section#contact .bg + .center{
  font-size: 18px;
  margin: 142px 0 -50px;
  letter-spacing: 0.05em;
}
.section#contact .bg + .center a{
  display: inline-block;
  border-bottom: 1px solid;
}

/* **********************************
 *  企業情報
 * ********************************* */
.pg_company .section#sec1{
  padding-bottom: 60px;
}
.pg_company .section#sec1 .tt2{
  margin-top: 80px;
}
.pg_company .section#sec1 .greeting{  
  line-height: 1.88;
  letter-spacing: 0.01em;
}
.pg_company .section#sec2 .box{
  width: 33.33%;
  padding: 20px 22px 10px;
  background: #51a4de;
}
.pg_company .section#sec2 .box:nth-child(even){
  background: #2c8dd1;
}
.pg_company .section#sec2 .box .ttl{
  padding: 3px 36px;
  margin-bottom: 10px;
  border: 1px solid #006ebc;
  line-height: 1.5;
  border-radius: 28px;
  background: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
}
.pg_company .section#sec2 .box .ttl span{
  padding-left: 17px;
  text-indent: -17px;
  display: inline-block;
}
.pg_company .section#sec2 .box .txt{
  padding: 0 3px; 
  color: #ffffff;
}
.pg_company .section#sec3 .bg{
  height: 380px;
  margin-bottom: 140px;
  background: url(/img/company/bg_1.jpg) no-repeat center / cover;
}
.pg_company .section table{
  letter-spacing: 0.05em; 
}
.pg_company .section th{
  width: 162px;
  padding: 15px 0;
  text-align: left;
  font-weight: 400;
  border-right: 1px solid;
}
.pg_company .section td{
  padding-left: 80px;
}
.pg_company .section#sec3 .flex{
  margin: 90px 0 0;
}
.pg_company .section#sec3 .txt,
.pg_company .section#sec3 .map{
  width: 50%;
  letter-spacing: 0.05em;
}
.pg_company .section#sec3 .txt dt{
  margin-bottom: 8px;
}
.pg_company .section#sec3 .txt dt:before{
  content: "■";
  color: #006ebc;
}
.pg_company .section#sec3 .txt dl + dl{
  margin-top: 50px;
}
.pg_company .pg_home .section#sec3{
  margin: 80px 0 83px;
}
.pg_company .pg_home .section#sec3 .bg{
  height: auto;
  margin-bottom: 0;
  background: rgba(255,255,255,0.9);
}


/* **********************************
 *  導入事例
 * ********************************* */
.pg_case .tt1{
  margin-bottom: 85px;
}
.pg_case .section#sec1{
  margin-bottom: 55px;
}
.pg_case .case_item{
  margin-top: 80px;
}
.pg_case .case_item .box{
  padding: 13px 13px 23px;
  border: 5px solid #e5e5e5;
}
.pg_case .case_item .ttl{  
  font-size: 18px;
  margin-bottom: 12px;
  padding: 14px 15px;
  background: #e5e5e5;
  font-weight: 400;
}
.pg_case .case_item .ttl strong{
  margin-left: 40px;
  display: inline-block;
  letter-spacing: 0.05em;
}
.pg_case .case_item .img{
  text-align: center;
}
.pg_case .case_item .txt{  
  padding: 0 12px;
  margin-top: 36px;
}
.pg_case .case_item .example{
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
}
.pg_case .case_item .example dt{
  width: 90px;
  padding: 6px 0;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.pg_case .case_item .example dd{
  width: calc(100% - 90px);
}
.pg_case .case_item .example dd a{
  min-width: 260px;
  padding: 5px 22px 5px 8px;
  margin: 3px 8px;
  display: inline-block;
  color: #ffffff;
  background: #2c8dd1;
  position: relative;
  line-height: 1.35;
}
.pg_case .case_item .example dd a:after{
  content: "\f105";  
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}


/* **********************************
 *  受託開発
 * ********************************* */
.pg_contracted .section#sec1 .tt1 + .center{
  margin: 85px 0 0;
}
.pg_contracted .section#sec1 .tt1 + .center p{
  letter-spacing: 0.05em;
}
.pg_contracted .section#sec1 .tt2{
  margin-bottom: 5px;
}
.pg_contracted .section#sec1 .images .center{
  margin-bottom: 50px;
}
.pg_contracted .section#sec1 .images .center span{
  font-size: 20px;
  margin-top: 68px;
  letter-spacing: 0.05em;
  line-height: 1.65;
  display: inline-block;
  border-bottom: 5px solid #7ecef4;
}
.pg_contracted .section#sec1 .images .flex{
  justify-content: space-between;
}
.pg_contracted .section#sec1 .images .flex .img:nth-child(2){
  margin-top: 20px;
  margin-right: 70px;
}
.pg_contracted .section#sec1 .goodBox{
  font-size: 20px;
  margin: 40px 0 0;
  padding: 24px;
  border: 3px solid #2c8dd1;
  font-weight: 500;
  border-radius: 10px;
  letter-spacing: 0.05em;
}
.pg_contracted .section#sec1 .goodBox i{
  margin-right: 15px;
  vertical-align: bottom;
  display: inline-block;
}
.u_arrow{
  margin: 50px auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 84px 430px 0 430px;
  border-color: #79acc5 transparent transparent transparent;
}
.pg_contracted .section#sec1 .point{
  margin-top: 40px;
}
.pg_contracted .section#sec1 .point + .point{
  margin: 80px 0;
}
.pg_contracted .section#sec1 .point .ttl{
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.pg_contracted .section#sec1 .point .ttl i{
  margin-right: 10px;
  vertical-align: bottom;
  display: inline-block;
}
.pg_contracted .section#sec1 .point .img{
  text-align: center;
}
.pg_contracted .section#sec1 .consul{
  padding: 48px 40px 45px;
  background: #006ebc;
  color: #ffffff;
  position: relative;
  text-align: center;
}
.pg_contracted .section#sec1 .consul:before {
    width: calc(100% - 35px);
    height: calc(100% - 35px);
    content: "";
    left: 15px;
    top: 15px;
    position: absolute;
    display: block;
    border: 3px solid #ffffff;
}
.pg_contracted .section#sec1 .consul .large {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.pg_contracted .section#sec1 .consul .flex{
  justify-content: space-around;
  position: relative;
  z-index: 5;
}
.pg_contracted .section#sec1 .consul a{
  width: 365px;
  font-size: 18px;
  padding: 10px;
  display: inline-block;
  background: #ffffff;
  text-align: center;
  color: #006ebc;
  border: 2px solid #ffffff;
}
.pg_contracted .section#sec1 .consul a:hover{
  background: #006ebc;
  color: #ffffff;
  text-decoration: none;
}
.pg_contracted .section#sec1 .consul a i{
  margin-right: 20px;
}
.pg_contracted .section#sec2 .tt2{
  margin-bottom: 40px;
}
.pg_contracted .section#sec2 .step dl{
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  background: #eeeeee;
  align-items: center;
}
.pg_contracted .section#sec2 .step dl + dl{
  margin-top: 10px;
}
.pg_contracted .section#sec2 .step dt{
  width: 165px;
  font-size: 24px;
  color: #006ebc;
}
.pg_contracted .section#sec2 .step dt span{
  font-size: 40px;
  padding-left: 10px;
}
.pg_contracted .section#sec2 .step dd{
  width: calc(100% - 165px);
}
.pg_contracted .section#sec2 .step dd .bold{
  font-size: 20px;
  font-weight: 500;
}

/* **********************************
 *  受注終了製品一覧
 * ********************************* */
.pg_discontinued .discount_list{
  padding: 42px 0 0;
  margin-top: 95px;
  border-top: 1px solid #000;
}
.discount_list dl{
  display: flex;  
}
.discount_list dl + dl{
  margin-top: 27px;
}
.discount_list dt{
  width: 195px;
  letter-spacing: 0.1em;
}
.discount_list dd{
  width: calc(100% - 195px);
}
.pg_discontinued .center{
  font-size: 18px;
  margin-top: 137px;
  letter-spacing: 0.05em;
}
.pg_discontinued .center a{
  display: inline-block;
  border-bottom: 1px solid #000000;
}


/* **********************************
 *  お知らせ
 * ********************************* */
.view-more-button{
  width: 250px;
  margin: 100px auto 0;
  padding: 8px;
  text-align: center;
  background: #ffffff;
  color: #362e2b;
  border: 1px solid #362e2b;
  display: block;
  letter-spacing: 0.05em;
}


/* **********************************
 *  採用情報
 * ********************************* */
.pg_recruit .section#sec1{
  position: relative;
}
.pg_recruit .section#sec1 .tt1{
  margin-bottom: 100px;
}
.pg_recruit .section#sec1 .flex{  
  min-height: 380px;
  align-items: flex-end;
}
.pg_recruit .section#sec1 .bg{
  width: 60%;
  padding: 45px 15px 45px 0;
  background: rgba(255,255,255,0.7);
  position: relative;
  z-index: 5;
  line-height: 2.375;
}
.pg_recruit .section#sec1 .img{
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: 0;
}
.pg_recruit .section#sec1 .img:before{
  padding-top: 380px;
  content: "";
  display: block;
}
.pg_recruit .section#sec2{
  padding-bottom: 0;
}
.pg_recruit .section#sec2 table{
  width: 100%;
}
.pg_recruit .section#sec2 th{
  width: 215px;
  padding: 10px 0;
  vertical-align: top;
  font-weight: 400;
  text-align: left;
}
.pg_recruit .section#sec2 td{
  padding: 11px 6px;
}
.link_2{  
  width: 350px;
  padding: 18px;
  margin: 130px auto 20px;
  display: block;
  text-align: center;
  background: #006ebc;
  color: #ffffff;
  border: 2px solid #006ebc;
}
.link_2:hover{
  text-decoration: none;
  background: #ffffff;
  color: #006ebc;
}


/* **********************************
 *  応募フォーム
 * ********************************* */
.pg_entry .tt1{
  margin-bottom: 88px;
}

/* **********************************
 *  ダウンロード一覧
 * ********************************* */
.pg_download .dl_item .item{
  margin-top: 100px;
  align-items: flex-start;
}
.pg_download .dl_item .item .img{
  width: 30.5%;
}
.pg_download .dl_item .item .img:before{
  padding-top: 72%;
  content: "";
  display: block;
}
.pg_download .dl_item .item .txt{
  width: 69.5%;
  padding-left: 60px;
  /*display: flex;
  flex-wrap: wrap;*/
}
.pg_download .dl_item .item .ttl{
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.065em;
}
.pg_download .dl_item .item .links{
  align-self: flex-end;
}
.pg_download .dl_item .item .link_2 {
  width: 400px;
  font-size: 18px;
  padding: 14px 0 14px 50px;
  margin: 10px 0 0;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.pg_download .dl_item .item .link_2 i{
  margin-right: 5px;
}

/* **********************************
 *  よくあるご質問
 * ********************************* */
.pg_faq .section#sec1 .flex{
  margin: 100px -15px 0;
}
.pg_faq .section#sec1 .flex .item{
  width: 50%;
  padding: 0 15px;
}
.pg_faq .section#sec1 .flex a{
  font-size: 18px;
  padding: 15px;
  text-align: center;
  display: block;
  background: #2c8dd1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid #2c8dd1;
}
.pg_faq .section#sec1 .flex a:hover{
  background: #ffffff;
  color: #2c8dd1;
  border: 2px solid #2c8dd1;
  text-decoration: none;
}
.pg_faq .section#sec1 .contact_info{
  margin: 80px 0 0;
}

.pg_faq .section#sec2 .menu{
  margin: 70px 0;
}
.pg_faq .section#sec2 .menu li{
  width: 25%;
  border: 1px solid #2c8dd1;
}
.pg_faq .section#sec2 .menu li + li{
  border-left: 0;
}
.pg_faq .section#sec2 .menu li a{
  padding: 15px 10px;
  display: block;
  text-align: center;
  position: relative;
}
.pg_faq .section#sec2 .menu li a:after{
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  line-height: 1;
}
.pg_faq .section#sec2 div[id*="q"]{
  margin-top: 90px;
}
.pg_faq .section#sec2 h3{
  font-size: 18px;
  padding: 0 0 8px;
  margin-bottom: 30px;
  border-bottom: 3px solid #2c8dd1;
}
.pg_faq .section#sec2 .qa_list dl{
  letter-spacing: 0.05em;
}
.pg_faq .section#sec2 .qa_list dl + dl{
  margin-top: 40px;
}
.pg_faq .section#sec2 .qa_list dt{
  font-size: 18px;
  margin-bottom: 18px;
  padding-left: 2.5em;
  font-weight: 700;
  position: relative;
}
.pg_faq .section#sec2 .qa_list dt span{
  margin-right: 10px;
  display: inline-block;
  letter-spacing: 0.08em;
  position: absolute;
  left: 0;
  top: 0;
}
.pg_faq .section#sec2 .qa_list dd{
  padding-left: 2.9em;
} 
.pg_faq .section#sec2 .qa_list dd a{
  text-decoration: underline;
}
.pg_faq .section#sec2 .qa_list dd a.link_1{
  margin: 10px 0 0;
  text-decoration: none;
}


/* **********************************
 *  製品案内
 * ********************************* */
.pg_products .section#sec1 .tt1{
  margin-bottom: 80px;
}
.pg_products .section#sec1 .tt2{
  margin-bottom: 30px;
}

.pg_products .section#sec2{
  padding: 82px 0 70px;
}
.pg_products .section#sec2 .flex{
  margin: 0 -15px;
}
.pg_products .section#sec2 .flex .item{
  width: 50%;
  padding: 0 15px;
}
.pg_products .section#sec2 .flex a{
  font-size: 18px;
  padding: 15px;
  text-align: center;
  display: block;
  background: #2c8dd1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid #2c8dd1;
}
.pg_products .section#sec2 .flex a:hover{
  background: #ffffff;
  color: #2c8dd1;
  border: 2px solid #2c8dd1;
  text-decoration: none;
}

.list_3{
  margin: 0 -40px;
}
.list_3 .item{
  width: 33.33%;
  padding: 0 40px;
}
.pg_products .section#sec3 .tt2{
  margin-bottom: 30px;
}
.pg_products .section#sec3 .item,
.pg_products .section#sec4 .item{
  margin-bottom: 40px;
}
.pg_products .section#sec3 .item .ttl,
.pg_products .section#sec4 .item .ttl{
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.pg_products .section#sec3 .item .img{
  border: 1px solid #c9c9c9;
}
.pg_products .section#sec4{
  padding-top: 30px;
}
.pg_products .section#sec4 .list_3{
  justify-content: center;
}
.pg_products .section#sec4 .center{
  font-size: 18px;
  margin: 100px 0 0;
  letter-spacing: 0.05em;
}
.pg_products .section#sec4 .center a{
  display: inline-block;
  border-bottom: 1px solid;
}
.pg_products .pg_home .section#sec5{
  padding: 85px 0;
  margin: 80px 0;
  background: url(/img/products/bg_case.jpg) no-repeat center / cover;
}
.pg_products .pg_home .section#sec5 .bg {
  padding: 30px 8px 40px;
}
.pg_products .pg_home .section#sec5 .tt1 {
  margin-bottom: 10px;
}
.pg_products .pg_home .section#sec5 .link_1 {
  margin: 10px auto 0;
}
.pg_products .pg_home .section#sec5 .center{
  letter-spacing: 0.07em;
}
.post-type-archive-products .section#contact .container > .bg,
.tax-products_cat .section#contact .container > .bg{
  padding: 95px 40px 88px;
}
.post-type-archive-products .section#contact .tt1,
.tax-products_cat .section#contact .tt1{
  margin-bottom: 12px;
}

/* タクソノミー */
.tax-products_cat .pg_header{
  background: url(/wp-content/uploads/2020/12/bg_case.jpg) no-repeat center / cover!important;
}
.pg_products.tax .section#sec1 .tt2 {
  margin-bottom: 42px;
}
.products_cat_list + .products_cat_list{
  margin-top: 45px;
}
.products_cat_list .products_ttl{
  font-size: 24px;
  padding: 5px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 900;
  border: 1px solid #2c8dd1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
.products_item .item{
  margin-bottom: 30px;
}
.products_item .item .img{
  padding: 15px;
  margin-bottom: 5px;
  border: 1px solid #c9c9c9;
}
.products_item .item .img span{
  display: block;
}
.products_item .item .img span:before{
  content: "";
  display: block;
  padding-top: 76%;
}
.pg_products.tax .section#sec1 .container > .center{
  font-size: 18px;
  margin-top: 100px;
  letter-spacing: 0.05em;
}
.pg_products.tax .section#sec1 .container > .center p + p{
  margin-top: 95px;
}
.pg_products.tax .section#sec1 .container > .center a{
  display: inline-block;
  border-bottom: 1px solid;
}

/* 詳細 */
.products_detail .img{
  width: 680px;
  max-width: 100%;
  margin: 0 auto 22px;
}
.products_detail .img:before{
  content: "";
  display: block;
  padding-top: 68%;
}
.products_detail .category,
.products_detail .title{
  font-size: 18px;
  font-weight: 500;
  line-height: 2.11;
  letter-spacing: 0.05em;
}
.products_detail .category span + span:before{
  content: "、";
}
.products_detail .category .cat_scene:before{
  content: "";
  display: block;
}
.products_detail .category .cat_category + span:before,
.products_detail .category .cat_scene + span:before{
  content: "：";
}
.products_detail .title br{
  display: none;
}
.products_detail .post_content{
  margin: 40px 0 85px;
}
.products_detail .point{
  margin: 0 0 60px;  
}
.products_detail .point li{
  padding-left: 35px;
  margin-bottom: 10px;
  line-height: 2.33;
  position: relative;
  letter-spacing: 0.01em;
}
.products_detail .point li .medium{
  font-size: 18px;
  font-weight: 500;
}
.products_detail .point li .txt{
  line-height: 1.5;
}
.products_detail .point li:before{
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #006ebc;
  position: absolute;
  left: 0;
  top: 1px;
}
.products_detail .features li{
  margin-bottom: 10px;
}
.products_detail .features li .medium{
  padding-left: 1em;
  line-height: 2.25;
  position: relative;
  font-weight: 500;
}
.products_detail .features li  .medium:before{
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
}
.products_detail .features li .txt{
  line-height: 1.5;
}
.products_detail .specification{
  margin: 92px 0 45px;
  padding: 37px 0 35px;
  border-top: 1px solid;
}
.products_detail .specification dl{
  display: flex;
  line-height: 2.625;
}
.products_detail .specification dt{
  width: 290px;
}
.products_detail .specification dd{
  width: calc(100% - 290px);
  padding-top: 8px;
  line-height: 1.85;
}
.products_detail .other{
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid; 
  }
.products_detail .links{
  margin: 145px -15px -60px;
  justify-content: center;
}
.products_detail .links .item{
  width: 50%;
  padding: 0 15px;
}
.products_detail .links .item{
  margin-bottom: 30px;
}
.products_detail .links .item a{
  font-size: 18px;
  padding: 15px 10px;
  display: block;
  background: #2c8dd1;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid #2c8dd1;
}
.products_detail .links .item a:hover{
  text-decoration: none;
  background: #ffffff;
  color: #2c8dd1;  
}
.products_detail .links .item a i{
  margin-right: 8px;
}