@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #181818;
  padding-top: 80px;
  /*scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);*/
}
:root {
    /* 変数定義 */
    --navbar-height: 80px;
}
/* 基本フォント: 明朝 */
/**/
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;
  }
}


.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}
.container-w{
  max-width: 100%;
  padding: 0 40px; 
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-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: 425px;
  position: relative;
}

/* 共通の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{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #FFF;
  background-color: #0e1df2;
  z-index: 2;
  padding: 0 40px 0 40px;
  background-image: url("/img/home/dots.png");

  height: var(--navbar-height);
}
.home header{
  background-color:rgba(14,29,242,0.7);
}
body.home{
  padding-top: 0;
}
header.home{
  background: #0e1df2;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
header .hdr1 .hdr_logo{
  line-height: 1;
}
header .hdr1 .hdr_contact{

}

.anchor-link {
    /* アンカーリンクが裏側に隠れるのを抑止。css変数使用。 */
    scroll-margin-top: var(--navbar-height);
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
  margin: 0 -22px;
}
.gnav > ul > li{
  position: relative;
  padding: 0 22px;
}
.gnav > ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  color: #FFF;
  text-decoration: none;
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.gnav li a em{
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.gnav li.contact a{
  font-size: 14px;
  border: 1px solid;
  padding: 6px;
  width: 130px;
  text-align: center;
}

.gnav li a:hover{

  /*background: #333;*/
  /*color: #FFF;*/
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}


.mv{
  position: relative;
  height: 500px;

  background: #CCC;
  /*background-image: url('/img/mv.jpg');*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_box{

}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{

}
.mv .mv_box .img img{

}

.mv_video{
  position: relative;
  overflow: hidden;
  border-top: 80px solid #000;
}
.mv_video:before{
  content: "";
  display: block;
  padding-top: 66.666%;
  padding-top: 42.8125%;
}
.mv_video video{
  width: auto;
  height: 156.20%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mv_video .volume{
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}
.mv_video .volume button{
  background: none;
  border: 0;
  color: #FFF;
  font-size: 30px;
}

@media (max-width:767px){
  .mv_video .volume button{
    font-size: 20px;
  }
}

.breadcrumb_wrap{
  margin-top:160px
}
/* **********************************
 *  フッター
 * ********************************* */
footer{
  background: #242caf;
  color: #FFF;
  padding: 60px 0 10px;
  margin-top: 200px;
}

footer .ftr1{
  display: block;
}
footer .box1{
  width: 100%;
  text-align: center
}
footer .box2{
  width: 100%;
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 20px 0;
  margin-top: 42px;
}

footer .ftr_logo{
  margin-bottom: 12px;
}
footer .ftr_logo p{
}
footer .ftr_addr{
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.142em;
}

footer .ftr_contact{
  background: #FFF;
  color: #111;
  padding: 5px;
}
footer .ftr_contact .inner{
  border: 2px solid #84ccad;
  padding: 10px;
  font-weight: 500;
  text-align: center;
}
footer .ftr_contact .title{

  letter-spacing: 0.05em;
}
footer .ftr_contact .title span{
  display: inline-block;
  padding: 5px 30px;
  border-bottom: 1px solid;
}
footer .ftr_contact .btn1{
  letter-spacing: 0.05em;
}
footer .ftr_contact .btn1 span{
  display: inline-block;
  font-size: 31px;
}
footer .ftr_contact .btn1 span:first-letter{
  font-size: 38px;
}
footer .ftr_contact .btn1 a{
  font-size: 36px;
}
footer .ftr_contact .btn2{
  margin-top: 6px;
}
footer .ftr_contact .btn2 a{
  display: inline-block;
  width: 220px;
  max-width: 100%;
  background: #f29b76;
  padding: 5px;
}
footer .ftr_contact .btn2 i{
  margin-right: 5px;
}

footer .ftr_links{
  display: flex;
  justify-content: center;
}
footer .ftr_links li{
  font-size: 14px;
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.2em;
  padding: 0 45px;
  line-height: 1.1;
 
}
footer .ftr_links li a{
   text-decoration: none;
}
footer .ftr_links li+li{
  border-left: 1px solid;
}
footer .copy{
  background: #242caf;
  font-weight: normal;
  color: #dadbeb;
  text-align: center;
  font-size: 12px;
  padding: 30px 0;
  margin-top: 4px;
  letter-spacing: 0.075em;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #1a1ef2;
  color: #FFF;
  text-decoration: none;
}

.section#ftr_contact{
  background: #f2f1f1;
  padding: 46px 0 75px;
  margin-bottom: -200px;
}

.ftr_contact_wrap .title{
  text-align: center;
}
.ftr_contact_wrap .title .en{
  font-size: 40px;
  font-weight: normal;
  letter-spacing: 0.025em;
  color:#181818;
  font-family:'Noto Serif JP', serif;
}
.ftr_contact_wrap .title .ja{
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 0.025em;
  color:#181818;
  font-family: 'Noto Serif JP', serif;
  padding: 10px 0;
}
.ftr_contact_wrap .ftr_content{
  text-align: center;
  margin-top: 10px;
}
.ftr_contact_wrap .ftr_content .text{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.025em;
  color:#181818;
  font-family: 'Noto Sans JP', sans-serif;
}
.ftr_contact_wrap .ftr_box{
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.ftr_contact_wrap .ftr_box .item{
  width: 50%;
}
.ftr_contact_wrap .ftr_tel{
  max-width: 410px;
  width: 100%;
  display: block;
  font-size: 24px;
  font-weight: normal;
  font-family: "Century Gothic";
  letter-spacing: 0.1em;
  text-align: center;
  padding:8px 0;
  color: #181818;
  border:1px solid #000000;
  margin: 0 auto;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.ftr_contact_wrap .ftr_tel:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #FFF;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.ftr_contact_wrap .ftr_tel:hover:before{
  transform-origin: left top;
  transform: scale(1, 1);
}


.ftr_contact_wrap .ftr_tel img{
  width: 230px;
  position: relative;
  z-index: 1;
}
.ftr_contact_wrap .read_more{
  margin:0 auto;
}
.ftr_contact_wrap .read_more a{
  max-width: 410px;
  width: 100%;
  padding: 18px 0;
  background-position: right 13px center;
  text-decoration: none;
}

/* 検索フォーム */
.pg_404{
  text-align: center;
  margin-top: 240px;
}
.pg_404 p{

}

.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;
}


/* 記事リスト */
.pg_news .section#sec1{
  margin-top: 240px;
}
.pg_single_news .section#sec1{
  margin-top: 240px;
}
.news_items .item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  border-bottom: 1px dotted #000000;
  padding: 20px 4px 20px 10px;
}
.news_items .item .date{
  width: 116px;
  font-size: 16px;
  font-family:'Noto Serif JP', serif;
  letter-spacing: 0.075em;
  color: #181818;
  font-weight:normal;
}
.news_items .item .title {
    width: calc(100% - 116px - 15px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news_items .item .title a{
  font-size: 16px;
  padding-right: 1em;
  padding-left: 42px;
  letter-spacing: 0.075em;
  font-weight:normal;
  color: #181818;
}









.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 24px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{

}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;

}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #4849e7;
  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;
  letter-spacing: 0.075em;
  line-height: 1.875em;
}
.post_items .post_content　p{
  
}
/* ページ送り(一覧) */
.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{
 
  
  
}
.pagination .page-numbers.prev:before{
 
  
  
}

/* ページ送り(詳細) */
.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: #4849e7;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
  color:#0e1df2;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb li{
  display: inline;
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 50px;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  position: absolute;
  bottom: -170px;
  left: 0;
}
.tt1 .ttt1{
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #353535;
  font-family: 'Noto Serif JP', serif;
  padding: 26px 0;
  margin-left: 9px;
  position: relative;
}

.tt1 .ttt1:before{
  display: block;
  content: "";
  width: 180px;
  border-top: 1px solid #000000;
  position: absolute;
  top: 0;
}
.tt1 span{
  display: block;
  font-size: 120px;
  color: #bfbebe;
  line-height: 1;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  /*text-transform: capitalize;*/
  margin-bottom: 20px;
}

.tt2{
  font-size: 120px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
  color: #bfbebe;
}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}
.g_title h2{
  font-size: 24px;
  letter-spacing: 0.075em;
  font-weight: normal;
  font-family: 'Noto Serif JP', serif;
  border-bottom: 5px solid #0e1df2;
  padding-bottom: 5px;
}
/* 詳しく見る サンプル */
.read_more{
  margin-top: 70px;
}
.read_more a{
  display: block;
  width: 430px;
  max-width: 100%;
  margin: 0 auto;
  padding: 22px 0;
  background: #0e1df2;
  /*background-image: url('/img/read_more_icon1.png');*/
  background-repeat: no-repeat;
  background-position: right 30px center;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0.075em;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.read_more a:after{
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 1;
  width: 70px;
  height: 24px;
  background-image: url('/img/read_more_icon1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
.read_more a:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #0a0d3e;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.read_more a:hover:before{
  transform-origin: left top;
  transform: scale(1, 1);
}

.read_more a.color2{
  background-color: #f2f1f1;
  /*background-image: url('/img/read_more_icon2.png');*/
  color: #181818;
}
.read_more a.color2:after{
  background-image: url('/img/read_more_icon2.png');
}
.read_more a.color2:hover{
  color: #FFF;
}
.read_more a.color2:hover:after{
  background-image: url('/img/read_more_icon1.png');
}

/*.read_more a:after{
  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%);
}*/

.title_box{
 position: relative;
 overflow: hidden;
}
.title_box .sub_text{
  font-size:20px;
  font-family: 'Noto Serif JP', serif;
  font-weight: normal;
}
.title_box .ttt2{
  font-size: 50px;
  font-weight: normal;
  font-family: 'Noto Serif JP', serif;
}
.title_box .bar{
  font-weight: normal;
    font-family: 'Noto Serif JP', serif;
  position: absolute;
  font-size: 50px;
  color: #ffffff;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  left: 104px;
  top: 27px;

}
.title_box .bar:after{
  content: "";
  width: 100%;
    display: block;
    position: absolute;
    bottom: -43px;
    left: 35px;
    right: 0;
    background: #0e1df2;
    z-index: -1;
    height: 68px;
  overflow: hidden;
}




/* **********************************
 *  Home
 * ********************************* */
.pg_home{
   padding-bottom: 125px;
}
.pg_home .section#sec1{
  background: #f2f1f1;
}
.pg_home .section#sec2{
  padding-top: 60px;
  padding-bottom: 100px;
}
.pg_home .section#sec3{
  background: #ebe6de;

}
.pg_home .section#sec4,
.pg_home .section#sec5,
.pg_home .section#sec6{
  padding-top: 130px;
  padding-bottom: 130px;
  background-size: cover;
}
.pg_home .section#sec4{
  background-color: #242caf;
  background-image: url('/img/home/contents_bg1.jpg');
}
.pg_home .section#sec5{
  background-color: #f2f1f1;
  background-image: url('/img/home/contents_bg2.jpg');
}
.pg_home .section#sec6{
  background-color: #242caf;
  background-image: url('/img/home/contents_bg1.jpg');
}
.pg_home .section#sec7{
  margin-top: 165px;
}
.pg_home .section#sec8{
  margin-top: 180px;
}
.home_concept_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 580px;
  position: relative;
}
.home_concept_wrap .inner{
  text-align: center;
  position: relative;
  z-index: 3;
}
.home_concept_wrap .title{
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-bottom: 20px;
}
.home_concept_wrap .txt{
  line-height: 2.25;
  letter-spacing: 0.075em;
}
.home_concept_wrap .bg1,
.home_concept_wrap .bg2{
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  transition: 4s all;
}
.home_concept_wrap .bg1{
  background-image: url('/img/home/concept_bg1.png');
  background-size: auto 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.home_concept_wrap .bg2{
  background-image: url('/img/home/concept_bg2.png');
  background-size: contain;
  z-index: 1;
  width: 385px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  
}
.home_concept_wrap .bg2.fadeIn{
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.home_concept_wrap .bg2:before{
  content: "";
  display: block;
  padding-top: 103.11%;
}

@media (max-width: 767px){
  .home_concept_wrap {
    height: 350px !important;
  }
  .home_concept_wrap .bg1{
    /*background-size: auto 80%;*/
  }
  .home_concept_wrap .bg2:before{
    padding-top: 65%;
  }
}


/**/
.home_tt1{
  font-size: 21px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
.home_tt1 em{
  display: block;
  font-size: 2.19em;
  font-weight: 600;
  color: #bfbebe;
  margin-bottom: 18px;
  letter-spacing: 0;
}
.home_tt1 em:after{
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #8d8d8d;
  margin: 5px auto 0;
}
.home_tt1 em.nobdr{
  margin-bottom: 0;
}
.home_tt1 em.nobdr:after{
  display: none;
}


.home_tt2{
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.075em;
  margin-bottom: 115px;
}
.home_tt2 em{
  display: block;
  font-size: 1.9166em;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.4;
}

/**/

/**/
.home_service_wrap{
  height: 649px;
  padding: 85px;
  position: relative;
  text-align: center;
  background-image: url('/img/home/service_bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home_service_wrap .panel_l,
.home_service_wrap .panel_r{
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50vw + 320px);
  transition: all 1.5s;
  transition-delay: 0.5s;
  /*animation-delay: 0.5s;*/
}
.home_service_wrap .panel_l{
  background-position: right center;
  background-image: url('/img/home/service_panel_l.png');
  right: calc(50% - 320px);
}
.home_service_wrap .panel_r{
  background-position: left center;
  background-image: url('/img/home/service_panel_r.png');
  left: calc(50% - 320px);
}
.home_service_wrap.open .panel_l{
  right: calc(50% + 320px);
}
.home_service_wrap.open .panel_r{
  left: calc(50% + 320px);
}

.home_service_wrap .home_tt1{

}
.home_service_wrap .home_tt1 em{
  letter-spacing: 0.075em;
  color: #181818;
}
.home_service_wrap .txt1{
  font-size: 26px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.075em;
  line-height: 1.769;
}
.home_service_wrap .txt2{
  font-size: 18px;
  letter-spacing: 0.075em;
  line-height: 2;
  margin-top: 25px;
}
.home_service_wrap .read_more{
  margin-top: 110px;
}

/**/
.home_contents_title_en{
  font-size: 92px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: #bfbebe;
  text-align: right;
  margin-bottom: 3px;
  animation-delay: 0.3s;
}
.home_contents_title_en.left{
  text-align: left;
}


.home_contents_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents_wrap .box1{
  width: 50%;
  height: 580px;
  position: relative;
  animation-delay: 0.8s;
}
.home_contents_wrap .box2{
  width: 46.42%;
  padding-top: 40px;
  color: #FFF;
  position: relative;
  animation-delay: 0.8s;
}
.home_contents_wrap .img{
  height: 100%;
  position: relative;
}
.home_contents_wrap .img img{
  width: 780px;
  max-width: none;
  position: absolute;
  top: 0;
  right: 0;
}
.home_contents_wrap .title{
  font-size: 30px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.075em;
  margin-bottom: 25px;
}
.home_contents_wrap .title:before{
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background: #FFF;
  margin-bottom: 22px;
}
.home_contents_wrap .txt{
  line-height: 2;
  letter-spacing: 0.035em;
  padding-left: 5px;
}
.home_contents_wrap .read_more{
  position: absolute;
  bottom: 19%;
  width: 100%;
}
.home_contents_wrap .read_more a{
  margin-right: 0;
}



.home_contents_wrap.left{

}
.home_contents_wrap.left .box1{
  order: 2;
}
.home_contents_wrap.left .box2{
  order: 1;
  color: #181818;
}
.home_contents_wrap.left .img img{
  left: 0;
  right: auto;
}
.home_contents_wrap.left .title:before{
  background: #181818;
}
.home_contents_wrap.left .read_more a{
  margin-right: auto;
  margin-left: 0;
}
.home_sponsor_wrap{
  border: 8px solid #f2f1f1;
  padding: 25px 25px 45px;
}
.home_sponsor_wrap .home_tt2{
  margin-bottom: 30px;
}
.home_sponsor_text{
  font-size: 28px;
  font-weight: normal;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.075em;
}
.home_sponsor_img{
  width: 570px;
  margin:30px auto 0;
}
.home_sponsor_img .img1{
  background-image: url("/img/home/spn_logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.home_sponsor_img .img1:before{
  display: block;
  content: "";
  padding-top: 25.48%;
}
.home_sponsor_img .img2{
  background-image: url("/img/home/spn_img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: 33px;
}
.home_sponsor_img .img2:before{
  display: block;
  content: "";
  padding-top: 68.42%;
}
.home_banner_wrap{
  margin-top: 83px;
}
.home_banner_wrap .home_banner_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.home_banner_wrap .home_banner_items .item{
  width: 33.333%;
  padding: 0 20px;
}

/**/

/* **********************************
 *  制作実績
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}

.works_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.works_items .item{
  width: 33.333%;
  padding: 0 10px;
}
.works_items .item:nth-child(n+4){
  margin-top: 35px;
}
.works_items .item .inner{

}
.works_items .item .img{
  display: block;
  background-color: #7d7d7d;
  position: relative;
}
.works_items .item .img:before{
  content: "";
  display: block;
  padding-top: 76.666%;
}
.works_items .item .category{
  min-width: 110px;
  padding: 0 10px;
  background: #0068b7;
  color: #FFF;
  font-size: 15px;
  letter-spacing: 0.075em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.works_items + .read_more{
  margin-top: 80px;
}


/* **********************************
 *  サービス
 * ********************************* */
.pg_service{
  padding-bottom: 120px;
}
.pg_service .section#sec1{
  margin-top: 277px;
}
.pg_xxxx .section#sec2{

}
.pg_xxxx .section#sec3{

}
.pg_service .read_more a{
  letter-spacing: 0.075em;
}



.tt_img{
  margin-top: 11px;
}
.tt_img_m{
  display: none;
}
.service_solution_wrap{
  margin-top: 140px;
}
.service_solution_wrap .txt,
.web_solution_wrap .txt{
  font-weight: normal; 
  margin-top: 52px;
  line-height: 1.875em;
}
.solution_items{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 75px -20px 0;
}
.solution_items .item.top,
.solution_items .item.bottom,
.support_others_items .item{
  width: 33.3333%;
  padding: 0 20px;
}
.solution_items .item.top:nth-child(n+4),
.solution_items .item.bottom:nth-child(n+4),
.support_others_items .item:nth-child(n+4){
  margin-top: 30px;
}
.solution_items .item.top .inner,
.solution_items .item.bottom .inner,
.support_others_items .item .inner{
  padding: 0 10px;
  border: 1px solid #898989;
}
.solution_items .item .img,
.support_others_items .item .img{
  margin: 12px auto;
  text-align: center;
}
.solution_items .item .ttt1,
.support_others_items .item .ttt1{
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  border-top: 1px solid #000000;
  margin-top: 10px;
  padding: 10px 0;
}
.support_business_items{
  display: flex;
}
.support_business_items .box1{
  width: 50%;
  padding: 17px;
}
.support_business_items .box2{
  width: 50%;
  padding: 10px;
}
.support_business_items .box1 .img{
  position: relative;
  z-index: 1;
}
.support_business_items .box1 .img:before{
  content: "";
  display: block;
  position: absolute;
  width: 98%;
  height: 100%;
  background:#0e1df2;
  bottom: -20px;
  left: -17px;
  z-index: -1;
}
.support_business_items .box2 .inner{
  margin-top: 35px;
}
.support_business_items .box2 .title{
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.5em;
}
.support_business_items .box2 .title:after{
  display: block;
  content: "";
  width: 300px;
  border-top: 1px solid #000000;
  margin-top: 18px;
}
.support_business_items .text.second{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.875em;
  margin-top: 15px;
}
.support_business_items .text.third{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.875em;
  margin-top: 30px;
}
.support_others_title{
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.support_others_title:before{
  content: "";
  display: block;
  border-top: 1px solid #898989;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: -1
}
.support_others_title .title{
  width: 120px;
  font-size: 28px;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.075em;
  background: #ffffff;
}
.support_others_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 25px -20px 0;
}
.web_solution_wrap{
  margin-top: 135px;
}
.support_business_wrap{
  margin-top: 135px;
}
.support_business_wrap .support_business_items{
  margin-top: 45px;
}
/* **********************************
 *  ビジネスソリューション
 * ********************************* */
.pg_business_solution{
  padding-bottom: 177px;
}
.pg_business_solution .section#sec1{
  margin-top: 294px;
}
.pg_xxxx .section#sec2{

}
.pg_xxxx .section#sec3{

}
.business_solution_items{

}
.business_solution_items{

}
.business_solution_items .item{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.business_solution_items .item:before{
  content: "";
  height: 330px;
  background: #eeeeee;
  position: absolute;
  top: 50px;
  right: 180px;
  width: 1616px;
  z-index: -1;
}
.business_solution_items .item:nth-child(even):before{
  content: "";
  height: 330px;
  background: #eeeeee;
  position: absolute;
  top: 50px;
  left: 180px;
  width: 1616px;
  z-index: -1;
}
.business_solution_items .item:nth-child(n+2){
  margin-top: 128px;
}
.business_solution_items .item:nth-child(even) .box1{
  order:2;
}
.business_solution_items .item:nth-child(even) .box2{
  order:1;
}
.business_solution_items .item .box1{
  width: 50%;
  padding-top: 23px;
}
.business_solution_items .item .box2{
  width: 42.94%;
}
.business_solution_items .box2{
  padding: 0 10px 10px 0;
}
.business_solution_items .box2 .img{
  position: relative;
  z-index: 1;
}
.business_solution_items .box2 .img:before{
  content: "";
  display: block;
  position: absolute;
  width: 98%;
  height: 100%;
  background: #0e1df2;
  bottom: -20px;
  right: -10px;
  z-index: -1;
}
.business_solution_items .item:nth-child(even) .box1 .read_more a{
  margin-left: 0;
}
.business_solution_items .item:nth-child(even) .box2{
  padding: 0 0 10px 10px;
}
.business_solution_items .item:nth-child(even) .box2 .img{
  padding-left:10px;
}
.business_solution_items .item:nth-child(even) .box2 .img:before{
  content: "";
  display: block;
  position: absolute;
  width: 98%;
  height: 100%;
  background: #0e1df2;
  bottom: -20px;
  left: -10px;
  z-index: -1;
}






.business_solution_items .item .box1 .title h2{
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
}
.business_solution_items .item .box1 .content{
  margin-top: 8px;
}
.business_solution_items .item .box1 .content .text{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2.125em;
}
.business_solution_items .item .box1 .read_more{
  margin-top: 36px;
}
.business_solution_items .item .box1 .read_more a{
  width: 330px;
  margin-right: 0;
  padding: 12px 0;
}

/* **********************************
 *  webソリューション
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}
.pg_web_solution .section#sec2{
  margin-top: 85px;
}
.pg_xxxx .section#sec3{

}
.pg_web_solution{
  padding-bottom: 125px;
}
.pg_web_solution .section#sec1{
  margin-top: 294px;
}
.pg_web_solution .support_others_title .title{
  width: 364px;
}
.pg_web_solution .business_solution_items .item.ec .box1 .read_more{
  margin-top: 68px;
}
.pg_web_solution .business_solution_items .item.ec .box1 .read_more a{
  margin-right: 0;
  margin-left: auto;
}
.pg_web_solution .business_solution_items .item.movie .box1 .read_more{
  margin-top: 70px;
}
.web_flow_wrap{
  margin-top: 30px;
}
.web_flow_flex{
  display: flex;
  justify-content: space-between;
}
.web_flow_box{
  width: 48.21%;
}
.web_flow_box .items .item:nth-child(n+2){
  margin-top: 40px;
}
.web_flow_box .items .item.last .box2 .txt{
  letter-spacing: 0.03em;
}
.web_flow_box .items .inner{
  display: flex;
}
.web_flow_box .items .box1{
  width: 211px;
  max-width: 100%;
  background: #5b8fbf;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.web_flow_box .items .box1:after{
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #5b8fbf transparent transparent transparent;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.web_flow_box .items .item:last-child .box1:after{
  display: none;
}
.web_flow_box .items .box1 .title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color:#ffffff; 
}
.web_flow_box .items .box2{
  width: calc(100% - 211px);
  max-width: 100%;
  border: 3px solid #5b8fbf;
  border-left: none;
  padding: 16px 15px;
}
.web_flow_box .items .box2 .txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.75em;
  color:#181818; 
}

/* **********************************
 *  LED
 * ********************************* */
.pg_led{
  padding-bottom: 122px
}
.pg_led .section#sec1{
  margin-top: 290px;
}
.pg_led .section#sec2{
  margin-top: 63px;
}
.pg_led .section#sec3{
  margin-top: 103px;
}

.pg_led .support_others_title .title{
  padding-right: 20px;
  width: auto;
  display: inline-block;
}
.led_merit_cts_wrap{
  margin-top: 142px;
}
.led_img_wrap{
  text-align: center;
}
.led_merit_cts_wrap .desc{
  margin-top: 31px;
}
.led_merit_cts_wrap .desc .text1{
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height:2.25em; 
}
.led_merit_cts_wrap .desc .sub_text{
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height:2.25em; 
}
.led_comparison_box{
  margin-top: 50px;
}
.led_comparison_items tr:nth-child(even){

  background: #f6f6f6;
}
.led_comparison_items tr:nth-child(odd){
  background: #eeeeee;
}
.led_comparison_items th,
.led_comparison_items td{
  border: 1px solid #ffffff;
}
.led_comparison_items th{
  width: 33.21%;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: left;
  padding-left: 40px;
}
.led_comparison_items td{
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.075em;
}
.led_important_text{
  text-align: center;
  margin-top: 50px;
}
.led_important_text .text{
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.075em;
  color:#e40000;
}
.led_others_merit_items{
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.led_others_merit_items .item{
  width: 49.10%;
  background: #eeeeee;
  height: 200px;
}
.led_others_merit_items .item:nth-child(n+3){
  margin-top: 20px;
}
.led_others_merit_items .item .inner{
  padding: 21px;
}
.led_others_merit_items .item .title{
  font-size: 20px;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.075em;
  border-bottom: 1px dotted #000000;
  padding-bottom: 13px;
}
.led_others_merit_items .item .desc{
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.075em;
  line-height: 2.25em;
  margin-top: 7px;
}
.led_others_img_wrap{
  margin-top: 80px;
}
.led_others_img_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.led_others_img_items .item{
  width: 33.333%;
}
.led_others_img_items .item:nth-child(n+4){
  margin-top: 30px;
}
.led_others_img_items .item .inner{
  padding: 0 15px;
}

/* **********************************
 *  UTM
 * ********************************* */
.pg_utm{
  padding-bottom: 120px;
}
.pg_utm .section#sec1{
  margin-top: 275px;
}
.pg_utm .section#sec2{
  margin-top: 100px;
}
.pg_utm .section#sec3{

}

.utm_top_text{
  text-align: center;
}
.utm_top_text h2{
  font-size:34px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
}
.utm_top_text span{
  font-size:21px;
  display: block;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  margin-top: 14px;
}
.utm_top_desc{
  background: #eeeeee;
  padding: 35px 0;
  margin-top: 20px;
}
.utm_top_desc .desc{
  font-size:16px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 2.125em;
}
.utm_sub_title{
  text-align: center;
  margin-top: 75px;
}
.utm_sub_title .text{
  font-size:21px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  line-height:1.61em;
}
.utm_sub_title .text p{
  position: relative;
  display: inline;
  background: -webkit-linear-gradient(top, #ffffff 1%,#ffffff 65%,#ffff00 65%,#ffff00 100%);
  background: linear-gradient(to bottom, #ffffff 1%,#ffffff 65%,#ffff00 65%,#ffff00 100%);
}
/*.utm_sub_title .text .t_1:after{
  content: "";
  display: block;
  max-width: 100%;
  width: 973px;
  height: 10px;
  background: #f6ea29;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}
.utm_sub_title .text .t_2:after{
  content: "";
  display: block;
  max-width: 100%;
  width: 901px;
  height: 10px;
  background: #f6ea29;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}*/
.utm_sub_title .sub{
  font-size:15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height:2.26em;
  margin-top: 20px;
}
.pg_utm .support_others_title .title{
  width: 180px;
}
.wrap_title{
  padding-bottom: 10px;
  border-bottom: 5px solid #1b1b1b;
  margin-top: 43px;
}
.wrap_title h3{
  font-size:18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color:#181818;
}
.utm_feature_items{
  display: flex;
  flex-wrap: wrap;
  margin: 50px -16px 0;
}
.utm_feature_items .item{
  width: 33.3333%;

  padding: 0 16px;
}
.utm_feature_items .item:nth-child(n+4){
  margin-top: 35px;
}
.utm_feature_items .item .inner{
  border: 5px solid #0e1df2;
  border-radius: 10px;
  height: 266px;
  background: #e5e5e5;
  padding: 15px 16px;
}
.utm_feature_items.red .item .inner{
  border: 5px solid #a40035;
}
.utm_feature_items .item .icon{
  text-align: center;
}
.utm_feature_items .item .title{
  margin-top: 17px;
}
.utm_feature_items .item .title p{
  font-size:18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
}
.utm_feature_items .item .txt{
  font-size:15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2em;
  /*font-family: "Noto Serif JP", serif;*/
  margin-top: 5px;
}
.utm_feature_wrap .read_more{
  margin-top: 100px;

}
.utm_feature_wrap .read_more a{
  background-image:none; 
  width: 700px;
  padding: 11px 0;
  position: relative;
}
.utm_feature_wrap .read_more a:after{
  content: "\f35d";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
/*.utm_feature_wrap .read_more a:after{
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
}*/

/* **********************************
 *  ホームページ制作
 * ********************************* */
.pg_webdesign{
  padding-bottom: 125px;
}
.pg_webdesign .section#sec1{
  margin-top: 274px;
}
.pg_webdesign .section#sec2{
  
  margin-top: 242px;
}
.pg_webdesign .section#sec3{
  margin-top: 235px;
}
.pg_webdesign .section#sec2 .read_more{
  margin-top: 61px;
}
.web_d_top_text{
  text-align: center;
}
.web_d_top_text h2{
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
}
.web_d_top_text span{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.875em;
  display: block;
  margin-top: 30px;
}
.web_d_middle_text{
  background: #eeeeee;
  padding: 35px 24px;
  margin-top: 65px;

}
.web_d_middle_text .title{
  position: relative;
  z-index: 1
}
.web_d_middle_text .title h3{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.5em;
  width: 470px;
  text-align: center;
  position: relative;
  font-family: "Noto Serif JP", serif;
  margin: 0 auto;
  z-index: 2;
  background: #eeeeee;
}
.web_d_middle_text .title:after{
  content: "";
  display: block;
  border-top: 1px solid #000000;
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 0;
}
.web_d_middle_text .title:before{
  border-top: 1px solid #000000;
  position:absolute;
  top: 50px;
}
.web_d_middle_text .txt{
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1.875em;
  margin-top: 36px;
}
.web_d_box_wrap{
  margin-top: 122px;
}
.web_d_box_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3px;
}
.web_d_box_items .item{
  width: 33.3333%;
  padding: 0 3px;
  display: flex;
}
.web_d_box_items .item.or .inner{
  background:#eb6100; 
}
.web_d_box_items .item.yl .inner{
  background:#f39800; 
}
.web_d_box_items .item.gr .inner{
  background:#8fc31f; 
}
.web_d_box_items .item.gr .web_d_box_img{
  margin-top: 15px;
}
.web_d_box_items .item.gr .txt{
  margin-top: 35px;
}
.web_d_box_items .item.yl .txt{
  margin-top: 40px;
}
.web_d_box_items .item .inner{
  padding: 20px;
}
.web_d_box_items .item .title{
  text-align: center;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 20px;
}
.web_d_box_items .item .title p{
  text-align: center;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.075em;
  color:#ffffff;
  font-family: "Noto Serif JP", serif;
}
.web_d_box_items .item .txt{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.875em;
  color:#ffffff;
  margin-top: 43px;
}
.web_d_box_img{
  text-align: center;
  margin-top: 25px;
}
.web_d_artifact_wrap{
  margin-top: 92px;
}
.web_d_artifact_wrap .web_d_artifact_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.web_d_artifact_items .item{
  width: 33.3333%;
  padding: 0 16px;
  position: relative;
}
.web_d_artifact_items .item:nth-child(n+4){
  margin-top: 30px;
}
.web_d_artifact_items .item span{
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: center;
  color:#ffffff;
  background: #0068b7;
  position: absolute;
  left:16px;
  top: 0;
  padding:0 22px;
}
.web_d_artifact_items .item .img{
  background-image: url("/img/webdesign/sample1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.web_d_artifact_items .item .img:before{
  display: block;
  content: "";
  padding-top: 74.28%;
}
.pg_webdesign .section#sec1 .read_more{
  margin-top: 62px;
}
.page_inner_title .ttt1{
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #353535;
  font-family: 'Noto Serif JP', serif;
  padding: 26px 0;
  margin-left: 9px;
  position: relative;
  display: block;
  margin-top: 20px;
}

.page_inner_title .ttt1:before{
  display: block;
  content: "";
  width: 180px;
  border-top: 1px solid #000000;
  position: absolute;
  top: 0;
}
.web_d_ec_wrap{
  margin-top: 110px;
}
.web_d_ec_wrap .web_d_middle_text{
  margin-top: 65px;
}
.web_d_ec_middle_text{
  text-align: center;
  margin-top: 40px;
}
.web_d_ec_middle_text .txt{
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  color:#181818;
  position: relative;
}
.web_d_ec_middle_text .txt:after{
  content: "";
  display: block;
  max-width: 100%;
  width: 748px;
  height: 10px;
  background: #f6ea29;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: -1;
}
.web_d_box_items.second .item .inner{
  padding: 15px 20px 37px;
}
.web_d_box_items.second .item .title{
  padding-bottom: 11px;
}
.web_d_box_items.second .item .txt{
  margin-top: 15px;
}
.web_d_box_items.second .item.yl .title{
  margin: 0 -20px;
}
.web_d_box_items.second .item.gr .web_d_box_img{
  margin-top: 25px;
}
.web_d_howto_wrap{
  margin-top: 90px;
}
.web_d_howto_box{
  border: 3px solid #000000;
  position: relative;
  text-align: center;
  padding: 30px 0 40px;
}
.web_d_howto_box .title{
  width: 730px;
  background: #ffffff;
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: -20px;
  left: 192px;
  margin: 0 auto;
}
.web_d_howto_box .text{
  text-align: center;
  margin-top: 21px;
}
.web_d_howto_box .text .inner{
  width: 675px;
  margin:0 auto;
}
.web_d_howto_box .text p{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.875em;
}
.web_d_landing_wrap{
  margin-top: 110px;
}
.web_d_landing_wrap .web_d_middle_text{
  margin-top: 65px;
}
.web_d_landing_wrap .item .sum_txt{
  padding: 0 18px;
}
.web_d_landing_wrap .read_more{
  margin-top: 62px;
}
/* **********************************
 *  動画制作
 * ********************************* */
.pg_movie{
  padding-bottom: 120px;
}
.pg_movie .section#sec1{
  margin-top: 274px
}
.pg_movie .section#sec2{
margin-top: 150px;
}
.pg_movie .section#sec3{

}
.movie_double_box1{
  background-image: url("/img/movie/vertical_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 22px;
}
.movie_double_box2 {
  background: transparent;
  border: 5px solid #ffffff;
  padding: 14px;
}
.movie_double_box1 .inner{
  background: #ffffff;
  padding: 38px;
}
.movie_double_box1 .items{
  display: flex;
  flex-wrap: wrap;
}
.movie_double_box1 .items .item{
  width: 50%;
}
.movie_double_box1 .items .item .img{
  text-align: center;
}
.movie_double_box1 .items .item:nth-child(n+3){
  margin-top: 35px
}
.movie_double_wrap{
  margin-top: 36px;
}
.movie_que_wrap{
  margin-top: 120px;
}
.movie_que_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.movie_que_items .item{
  width: 33.3333%;
  padding: 0 8px;
}
.movie_que_items .item .text{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.875em;
  padding: 0 9px;
  margin-top: 47px;
}
.movie_que_items .item .inner span{
  font-size: 12px;
  display: block;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.5em;
  margin-left: 19px;
}
.movie_flow_wrap{
  margin-top: 74px;
}
.movie_flow_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -57px;
}
.movie_flow_items .item{
  width: 33.3333%;
  padding: 0 57px;
}
.movie_flow_items .item:nth-child(n+4){
  margin-top: 40px;
}
.movie_flow_items .item .inner{
  
}
.movie_flow_items .number_title{
  position: relative;
  text-align: center;
  
} 
.movie_flow_items .number_title span{
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  display: block;
  width: 120px;
  background: #ffffff;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.movie_flow_items .number_title:after{
  content: "";
  display: block;
  width: 100%;
  border: 1px solid #898989;
  position: absolute;
  bottom: 20px;
  z-index: 0;
} 
.movie_flow_items .icon{
  text-align: center;
  margin-top: 15px;
}
.movie_flow_items .icon .title{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  margin-top: 12px;
}
.movie_flow_items .text{
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.4em;
  padding: 0 11px;
  margin-top: 20px;
}
.pg_movie .web_d_artifact_items .item span{
  padding: 0 30px;
}
.pg_movie .web_d_artifact_wrap{
  margin-top: 110px;
}
.pg_movie .read_more{
  margin-top: 60px;
}
/* **********************************
 *  採用情報
 * ********************************* */
.pg_recruit{
  padding-bottom: 160px;
}
.pg_recruit .section#sec1{
  margin-top: 287px;
}
.pg_recruit .section#sec2{
  margin-top: 75px;
}
.pg_recruit .section#sec2 .table{
  margin-top: 30px;
}
.pg_recruit .section#sec3{
  margin-top: 85px;
}

.recruit_mv_img .img{
  width: 957px;
  background-image: url("/img/recruit/recruit_mv_img.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
  position: relative;
}
.recruit_mv_img .img:before{
  display: block;
  content: "";
  padding-top: 64.92%;
  position: relative;
  z-index: 1;
}
.recruit_mv_img .img:after{
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #999999;
  position: absolute;
  top: 30px;
  left: -35px;
  z-index: -1;
}
.recruit_mv_text{
  margin-top: 40px;
  text-align: center;
}
.recruit_mv_text h2{
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
}
.recruit_mv_text p{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.6875em;
  margin-top: 14px;
}
.recruit_mv_wrap{
  margin-top: 85px;
}
.recruit_mv_wrap .recruit_mv_img{
  margin-right: -25px;
}

.recruit_album_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
}
.recruit_album_items .item{
  width: 33.3333%;
  padding: 0 25px;
}
.recruit_album_items .item .img{
  background-image: url("/img/recruit/staff1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.recruit_album_items .item .img.img2{
  background-image: url("/img/recruit/staff2.jpg");
}
.recruit_album_items .item .img.img3{
  background-image: url("/img/recruit/staff3.jpg");
}
.recruit_album_items .item .img:before{
  display: block;
  content: "";
  padding-top:75.58%; 
}
.recruit_title{
  text-align: center
}
.recruit_title h2{
  font-size: 34px;
  font-weight: normal;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
}


.recruit_contact_wrap{
  margin-top: 40px;
}
.recruit_contact_box{
  text-align: center;
  background: #eeeeee;
  padding: 40px 0;
}
.recruit_contact_box .text{
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 1.875em;
}
.recruit_contact_box .text a{
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.075em;
}
.staff_img_box{
  background-image: url("/img/recruit/single_staff1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.staff_img_box:before{
  content: "";
  display: block;
  padding-top: 48.21%;
}
.recruit_staff_wrap{
  margin-top: 50px;
}
.staff_img_items{
  display: flex;
  width: 100%;
  padding: 40px;
  position: absolute;
  bottom: 0;
}
.staff_img_items .box1{
  width: 50%;
}
.staff_catch_text{
  font-size: 39px;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-family: "Noto Serif JP", serif;
  line-height: 1.28em;
  color: #181d82;
text-shadow: 
0 0 50px #ffffff, 
0 0 50px #ffffff, 
0 0 10px #ffffff;
margin-right: -85px;
}
.staff_position_card{
  background: #f4f7f8;
  border: 3px solid #181d82;
  margin-top: 20px;
  padding: 16px 0 25px 35px;
}
.position_items{
  display: flex;
  align-items: center;
}
.position_items .logo{
  margin-left: -10px;
}
.position_title{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.055em;
  font-family: "Noto Serif JP", serif;
  padding-left: 16px;
}
.staff_position_card .name{
  
}
.staff_position_card .name p{
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.055em;
  font-family: "Noto Serif JP", serif;
}
.staff_position_card .name span{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.055em;
  font-family: "Noto Serif JP", serif;
}
.recruit_personal_wrap{
  margin-top: 65px;
}
.recruit_personal_items .item{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.recruit_personal_items .item:before{
  content: "";
  height: 330px;
  background: #eeeeee;
  position: absolute;
  top: 50px;
  right: 180px;
  width: 1616px;
  z-index: -1;
}
.recruit_personal_items .item .box1{
  width: 50%;
  padding-top: 23px;
}
.recruit_personal_items .item .box2{
  width: 42.94%;
  padding: 0 10px 10px 0;
}
.recruit_personal_items .item .box2 .img{
  position: relative;
    z-index: 1;
}
.recruit_personal_items .item .box2 .img:before{
  content: "";
    display: block;
    position: absolute;
    width: 98%;
    height: 100%;
    background: #0e1df2;
    bottom: -20px;
    right: -10px;
    z-index: -1;
}
.recruit_personal_items .item .box1 .title h2 {
    font-size: 34px;
    margin-right: -90px;
    font-weight: normal;
    letter-spacing: 0.075em;
    font-family: "Noto Serif JP", serif;
    line-height: 1.20em;
}
.recruit_personal_items .item .box1 .content .text {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.075em;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 2.125em;
    margin-top: 24px;
}
.recruit_personal_items .item:nth-child(n+2){
  margin-top: 110px;
}
.recruit_personal_items .item:nth-child(even):before{
  content: "";
  height: 330px;
  background: #eeeeee;
  position: absolute;
  top: 50px;
  left: 180px;
  width: 1616px;
  z-index: -1;
}
.pg_recruit .recruit_staff_items .item.second{
  margin-top: 110px;
}
.recruit_staff_items .item:nth-child(n+2){
  margin-top: 190px;
}
.recruit_personal_items .item:nth-child(even) .box1{
  order: 2;
}
.recruit_personal_items .item:nth-child(even) .box2 {
    padding: 0 0 10px 10px;
}
.recruit_personal_items .item:nth-child(even) .box2 {
    order: 1;
}
.recruit_personal_items .item:nth-child(even) .box2 .img:before{
  content: "";
    display: block;
    position: absolute;
    width: 98%;
    height: 100%;
    background: #0e1df2;
    bottom: -20px;
    left: -10px;
    z-index: -1;
}
.recruit_personal_items .item:nth-child(even) .box2 .img{
  padding-left: 10px;
}
.recruit_staff_items .item:nth-child(even) .staff_img_box{
  background-image: url("/img/recruit/single_staff2.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.recruit_staff_items .item:nth-child(even) .staff_img_box .staff_img_items{
  width: 100%;
  justify-content: flex-end;
  right: 0;
}
.recruit_staff_items .item:nth-child(even) .staff_catch_text{  
  margin-right: 0;
  margin-left: -85px;
  text-align: right;
}

.recruit_comment_wrap{
  margin-top: 33px;
}
.recruit_comment_wrap .text{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.075em;
  line-height: 2.125em;
}
.recruit_staff_items .item:nth-child(n+2) .recruit_personal_wrap{
  margin-top: 50px;
}

.recruit_info_tbl th{
  width:250px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Noto Sans JP';
  text-align: left;
  color: #000000;
  border: 1px #b2b2b2 solid;
  background-color: #f0f0f0;
  padding: 14px 21px;
letter-spacing: 0.08em;
vertical-align: top;
}
.recruit_info_tbl td {
    font-size: 15px;
    font-family: 'Noto Sans JP';
    font-weight: normal;
    text-align: left;
    color: #000000;
    background: #ffffff;
    border: 1px #b2b2b2 solid;
    padding: 14px 29px;
    letter-spacing: 0.160em;
    line-height: 1.9333em;
}
/* **********************************
 *  
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}
.pg_xxxx .section#sec2{

}
.pg_xxxx .section#sec3{

}
/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{

}
.pg_company .section#sec1{

}
.pg_company .section#sec2{

}
.pg_company .section#sec3{

}



/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{
padding-bottom: 120px;
}
.pg_contact .section#sec1{
margin-top: 290px;
}
.pg_contact .section#sec2{

}
.pg_contact .section#sec3{

}

.contact_tt{
  text-align: center;
  font-weight: normal;
  font-size: 23px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
  margin-top: 85px;
}
.company_tbl td a{
  text-decoration: none;
}


/* 連絡先 */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 28px 30px 25px;
  margin-bottom: 65px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #323232;
  font-family: "Noto Serif JP", serif;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 22px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 18px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  vertical-align: middle;
}
.contact_info .box2 .tel a{
  display: block;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding-left: 15px;
}

/* コンタクトフォーム */
.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form tr:first-child th,
.contact_form tr:first-child td{
  padding: 15px 15px 15px 20px;
}
.contact_form th,
.contact_form td{
  padding: 10px 15px 10px 20px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 310px;
  letter-spacing: 0.08em;
}
.contact_form td{
  font-size: 15px;
  letter-spacing: 0.16em;
}
.contact_form th.vtop{
  vertical-align: middle;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 12px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.contact_form td select[name="content"]{
  width:330px;
}
.contact_form td input[name="your-company"],
.contact_form td input[name="your-name"],
.contact_form td input[name="your-email"],
.contact_form td input[name="your-tel"]{
  width:463px;
}
/* MW WP Formの規定クラス */
/* checkbox, radio */
.mwform_check_box_wrap{
  padding: 6px 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item,
.mw_wp_form .mwform-checkbox-field.horizontal-item{
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
}

/**/
.mw_wp_form_confirm .addr_auto{
  display: none;
}
.mw_wp_form_confirm .addr_auto_box .zipcode i{
  background: none;
  padding: 0;
  font-size: inherit;
}

.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);

}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.date dt.m,
.contact_form dl.date dt.d{
  width: 120px;
}
.contact_form dl.date dt.m select,
.contact_form dl.date dt.d select{
  width: calc(100% - 2em);
}
.contact_form dl.date dt.t{
  width: 150px;
}
.contact_form dl.date dt.t select{
  width: calc(100% - 5em);
}


.contact_form dl.addr dd{

}


.contact_form_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 80px;
}
.contact_form_addr dd{
  width: calc(100% - 80px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}




.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{

}

.addr_auto_box button{
  margin-left: 20px;
}


.contact_form td input ,
.contact_form td textarea ,
.contact_form td select {
  letter-spacing: 0.16em;
  padding: 7px 10px;
  max-width: 100%;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td textarea{
  height: 280px;
  width: 750px;
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}


.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 5px 5px;
}
.contact_form th.content{
 vertical-align: top; 
}

.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */



.contact_form_acceptance{
  font-size: 17px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 40px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}



.txt_c{
  font-size: 26px;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 35px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 12px 10px;
  width: 315px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


/* **********************************
 *  プライバシーポリシー
 * ********************************* */
.pg_contact .privacy{
  margin-top: -80px;
  padding-top: 160px;
}

.privacy_tt{
  text-align: center;
  margin-bottom: 55px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
}
.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;
  letter-spacing: 0.04em;
}
.privacy_items .item + .item{
  margin-top: 36px;
}
.privacy_items .item h4{
  font-size: 18px;
  font-weight: 500;
  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  line-height: 1.875;
}
.privacy_items .item ul{
  list-style: none;
  margin-left: 0;
}
.privacy_items .item.pri{
  margin-top: 5px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}

.work_back{
  text-decoration: none;
}
.work_back:hover{
  text-decoration: none;
  opacity: 0.7;
} 