@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;
}
*/

@font-face {
  font-family: "DairyDay";
  src: url(css/fonts/dairyday-51nll.woff2) format("woff2"),
    url(css/fonts/dairyday-51nll.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "AlFresco";
  src: url(css/fonts/AlFresco.woff2) format("woff2"),
    url(css/fonts/AlFresco.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

*{
  letter-spacing: 0.075em;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;

  color: #383838;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
}

/*tablehint*/
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.outfit{
  font-family: "Outfit", 'Noto Sans JP', "メイリオ", Meiryo;
}

body{
  background: #1c1a20;
  color: #FFF;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  opacity: 0.7;
  color: inherit;
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}

.anchor{
  position: relative;
  top: -30px;
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none;
  }
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:1024px){
  .px:not(.md){
    display: none;
  }
  .tb:not(.md){
    display: none;
  }
  .sp:not(.md){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .md:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .md:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* 指定デバイスで改行を消す */
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}




/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  /*overflow-x: hidden;*/
}
.container{
  width: 1140px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container-w{
  width: 1760px;
  width: 100%;
  max-width: 100%;
  padding: 0 ;
  margin: 0 auto;
}
.container-w2{
  width: 1795px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container-w3{
  width: 1720px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container-w4{
  width: 1795px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.container-w5{
  width: 1825px;
  max-width: 100%;
  padding: 0 0;
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


@media (max-width:767px){
  .container-w{
    padding: 0 15px;
  }
}
@media (min-width:768px){
  .container{
    padding: 0;
  }
}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
}
@media (min-width:1500px){
  
}



/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  padding: 10px 0;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
header .hdr1 .hdr_logo{
  line-height: 1;
}
header .hdr1 .hdr_contact{
}

/* 下層ヘッダー */
.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 60px;
  position: relative;
}
.pg_header .container{
  height: 150px;
  position: relative;
}
.pg_header .tt1_en{
  font-size: 24px;
  font-family: "DairyDay";
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 30%) rotate(-7deg);
  transform: translate(-50%, 30%) rotate(-7deg);
}
.pg_header .tt1_en:first-letter{
  text-transform: uppercase;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */



/* */
.gnav {
  display: flex;
  position: fixed;
  left: 100%;
  z-index: 1000000000;
  height: 0;
  /* background: #47a3cd; */
  /* padding: 20px 15px; */
  font-size: 16px;
  overflow: hidden;
  border-radius: 15px;
  transition: all 1.8s;
  opacity: 0;
  background: #3a4555;
  box-shadow: 0 0 4px 0px #666;

}

.gnav .gnav_box1{
  padding: 5px;
  text-align: center;
}
.gnav .gnav_box2{
  padding: 5px;
  text-align: center;
  color: #ffffff;
}
.gnav .gnav_box2 .gnav_open{
  font-size: 12px;
  line-height: 1;
}
.gnav .gnav_box2 .gnav_open i{
  font-size: 30px;
}
.gnav .inner{

}
.gnav.active {
  align-items: flex-start;
  left: 15px;
  right: 15px;

  height: auto;
  opacity: 1;
}

.gjs-dashed .gnav{
  align-items: flex-start;
  left: 15px;
  right: 15px;

  height: auto;
  opacity: 1;
}

.gnav .gnav_item {
  width: 33.333%;
  padding: 100px 10px;
  font-size: 15px;
  font-weight: 300;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  letter-spacing: 0.075em;
  text-align: center;
  color: #ffffff;
  background: #3a4555;
}
.gnav_item{

}

@media (min-width:375px){

}

@media (min-width:768px){

  .gnav {
    align-items: center;
    font-size: 20px;
    width: 670px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .gnav.active,
  .gjs-dashed .gnav {
    top: 50%;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 30px;
  }
  .gnav.active .inner ,
  .gjs-dashed .gnav .inner {
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    /*border: 1px solid #000;*/
    border-right: 1px solid #9f9f9f;
    border-left: 1px solid #9f9f9f;
  }

  .gnav .gnav_box1{
    width: 65px;
    padding: 30px 0;
    /**/
  }
  .gnav_box1 .hdr_sns{
    margin: 0;

  }
  .gnav_box1 .hdr_sns a{
    display: inline-block;
  }
  .gnav_box1 .hdr_sns a+a{
    margin-top: 15px;
  }
  .gnav .gnav_box2{
    width: 65px;
    padding: 30px 0;
    /**/
  }
  .gnav .inner{
    width: calc(100% - 130px);
  }
  .gnav .gnav_box1 .hdr_sns img{
    /*width: 35px;*/
  }
  .gnav .gnav_box2 .hdr_menu.gnav_open{
    font-size: 14px;
  }

  .gnav .gnav_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.333%;
    height: 150px;
    border-right: 1px solid #9f9f9f;
    padding: 50px 10px;
    font-size: 13px;
  }
  .gnav .gnav_item:nth-child(n+4) {
    border-top: 1px solid #9f9f9f;
  }
  .gnav .gnav_item:nth-child(3n){
    border-right: 0;
  }

  .gnav .gnav_item:hover {
    opacity: 1;
  }
  .gnav .gnav_item:hover p{
    opacity: 0.8;
  }

}
@media (min-width:1024px){

  .gnav{
    width: 900px;
  }
  .gnav.active ,
  .gjs-dashed .gnav {
    left: 50%;
    margin-left: 43px;
  }
  .gnav .gnav_item{
    height: 150px;
    padding: 50px 10px;
    font-size: 15px;
  }

}
@media (min-width:1200px){

  .gnav{
    /* right: 60px; */
    width: 900px;
  }
  .gnav .gnav_item {
    font-size: 18px;
  }

  .pg_header{
    margin-left: 15px;
  }
}

@media (max-width:767px){

  /* 繧ｹ繝槭�逕ｨ */
  .gnav {
    display: flex !important;
    flex-wrap: wrap;
    width: auto;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    /*    background: #e7e7e6;*/
    padding: 0;
    z-index: 99999;
    /* transition: all 0.2s; */
    transform: translateX(100%);
  }

  .gnav.active{
    height: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .gnav.active .inner{
    display: flex;
    flex-wrap: wrap;
    /*border: 2px solid #7d7d7c;*/
  }
  .gnav .gnav_box1,
  .gnav .gnav_box2{
    width: 100%;
    display: none;
  }
  .gnav .gnav_box1{

  }
  .gnav .gnav_box2{
    border-top: 1px solid #9f9f9f;
  }

  .gnav .gnav_item {
    font-size: 14px;
    padding: 0 15px;
    /* line-height: 2; */
    font-weight: 500;
    width: 50%;
    text-align: center;
    padding: 19px 3px;
    color: #ffffff;
    display: flex;
    /*border: 1px solid #7d7d7c;*/
    background: #3a4555;
    /* justify-content: flex-start; */
    justify-content: center;
    align-items: center;
    min-height: 70px;
    color: #ffffff;
    letter-spacing: 0.03em;
  }
  .gnav .gnav_item:hover{
    color: #ffffff;
  }
  .gnav .gnav_item:not(:last-child) {
    border-right: 1px solid #9f9f9f;
  }
  .gnav .gnav_item:nth-child(n+3) {
    border-top: 1px solid #9f9f9f;
  }
  .gnav .gnav_item:nth-child(2n){
    border-right: 0;
  }
  .gnav .gnav_item:nth-child(odd):last-child{
    width: 100%;
  }

  .gnav_bg{
    padding: 0;
    background: inherit;
  }

  .gnav_item .gnav_item_sub{
    display: block;
    position: static;
    width: 100%;
    background: aliceblue;
    padding: 15px;
    margin-top: 20px;
  }
}


.side{
  display: none;
  position: fixed;
  z-index: 2;
  top: -10px;
  bottom: 0;
  left: 0;
  background: #0d0d0d;
}
.side_banner{
  position: fixed;
  z-index: 5;
  /*top:50%;*/
  top:66px;
  right: 0;
  /*-webkit-transform: translate(0, -50%);*/
  /*transform: translate(0, -50%);*/
}
.wrapper{
  margin-top: 10px;
  /*margin-left: 15px;
  margin-right: 15px;*/
  /*overflow: hidden;*/
  position: relative;
}
.pg_slug_front-page .wrapper:before{
  content: "";
  position: absolute;
  z-index: -1;
  /*top: -10px;
  right: -20px;
  width: 1040px;
  height: 860px;*/
  background: #0d0d0d;
}

.mv{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mv_catch{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 10px;
  pointer-events: none;
}
.mv_catch{
  font-size: 10px;
}
/*
.mv_catch_item[data-slide="1"]{
  width: 25em;
}
.mv_catch_item[data-slide="2"]{
  width: 30em;
}
.mv_catch_item[data-slide="3"]{
  width: 4.5em;
}
.mv_catch_item[data-slide="4"]{
  width: 30em;
}
.mv_catch_item[data-slide="5"]{
  width: 30em;
}
*/
.mv_catch_item[data-slide="1"]{
  width: 25em;
}
.mv_catch_item[data-slide="2"]{
  width: 30em;
}
.mv_catch_item[data-slide="3"]{
  width: 4.5em;
}
.mv_catch_item[data-slide="4"]{
  width: 30em;
}
.mv_catch_item[data-slide="5"]{
  width: 3em;
}


.mv_bg{
  position: relative;
  z-index: 1;
  height: calc(100vh - 20px);
  height: 300px;
}
.mv_bg img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.mv_logo{
  width: 75px;
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
}
.mv_logo2{
  display: flex;
  justify-content: space-between;
  width: 100px;
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
}
.mv_logo2 a+a{
  margin-left: 10px;
}

/* フォーム誘導バナー */
.form_bnr{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  padding: 25px 20px;
  background-image: url(/img/form_bnr_txt.png), url(/img/form_bnr_bg.jpg);
  background-size: 300px auto, cover;
  background-repeat: no-repeat;
  background-position: center, center;

  position: relative;
  z-index: 1;
}
.form_bnr:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  pointer-events: none;
  border: 1px solid #FFF;

}
.form_bnr .txt{
  font-size: 22px;
  font-weight: 900;
  /*line-height: 1.086;*/
  line-height: 1.05;
  text-align: center;
}
.form_bnr .btns{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 15px;
}
.form_bnr .btns a{
  color: #FFF;
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.form_bnr .btns a:after{
  content: " →";
}
.form_bnr .btns .color1{
  background: #7d0000;
}
.form_bnr .btns .color2{
  background: #834e00;
}



@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  .wrapper{
    margin-top: 0;
  }
  .mv_logo2{
    width: 150px;
  }

  .side_banner{
    width: 40px;
  }

}
@media (min-width:768px){

  .side{
    display: block;
    width: 60px;

  }
  .side .inner{
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 30px 0;
  }

  .wrapper{
    margin-top: 10px;
    margin-left: 80px;
    margin-right: 20px;
  }
  .pg_slug_front-page .wrapper:before{
    top: -10px;
    right: -20px;
    width: 400px;
    height: 460px;
  }
  .container,
  .container-w{

  }

  /* 下層ヘッダー */
  .pg_header{
    width: 100%;
    margin-left: auto;
    margin-bottom: 80px;
  }
  .pg_header .container{
    height: 350px;
  }
  .pg_header .tt1_en{
    font-size: 30px;
  }

  /* メインビジュアル */
  .mv_logo{
    width: 100px;
  }
  .mv_logo2{
    width: 133px;
  }
  .mv_bg{
    height: 500px;
  }
  .mv_bg img{
    /*object-position: center;*/
  }

  .mv_catch{
    font-size: 20px;
  }
  /*.mv_catch_item[data-slide="1"]{
    width: 25em;
  }
  .mv_catch_item[data-slide="2"]{
    width: 30em;
  }
  .mv_catch_item[data-slide="3"]{
    width: 4.5em;
  }
  .mv_catch_item[data-slide="4"]{
    width: 30em;
  }
  .mv_catch_item[data-slide="5"]{
    width: 30em;
  }*/



  /* フォーム誘導バナー */
  .form_bnr{
    justify-content: flex-start;
    margin-top: 50px;
    padding: 40px 20px;
    background-size: 300px auto, cover;
    background-position: center, center;
  }
  .form_bnr .txt{
    width: 100%;
    font-size: 22px;
    font-size: 39.75px;
    text-align: center;
  }
  .form_bnr .btns{
    width: 100%;
    margin-top: 20px;
  }
  .form_bnr .btns a{
    /*width: 300px;*/
    width: 278px;
    margin: 0 10px;
    padding: 10px 10px;
    font-size: 13px;
  }

  .side_banner{
    top: 132px;
  }

}
@media (min-width:1024px){
  .pg_header{
    width: auto;
  }

  .side{
    width: 86px;
  }
  .wrapper{
    margin-top: 20px;
    margin-left: 106px;
    /*margin-left: 106px;*/
    /*margin-right: 20px;*/
  }
  .pg_slug_front-page .wrapper{
    margin-top: 10px;
  }
  .pg_slug_front-page .wrapper:before{
    top: -10px;
    right: -20px;
    width: 700px;
    height: 560px;
  }

  /* メインビジュアル */
  .mv{
    /*margin-left: 15px;*/
    margin-right: 0;
  }
  .mv_logo{
    width: 150px;
  }
  .mv_logo2{
    width: 200px;
  }
  .mv_bg{
    height: 600px;
  }

  /* フォーム誘導バナー */
  .form_bnr{
    justify-content: flex-start;
    margin-top: 70px;
    padding: 40px 20px;
    background-size: 300px auto, cover;
    background-position: center, center;
  }
  .form_bnr .txt{
    width: auto;
    font-size: 22px;
    font-size: 39.75px;
    margin-left: 90px;
  }
  .form_bnr .btns{
    width: 100%;
    margin-top: 20px;
  }
  .form_bnr .btns a{
    width: 300px;
    margin: 0 10px;
    padding: 10px 10px;
    font-size: 15px;
  }

  .side_banner{
    top: 175px;
  }

}
@media (min-width:1200px){
  .wrapper{
    margin-left: 105px;
    /*margin-left: 0;*/
    /*margin-right: 0;*/
  }
  .pg_slug_front-page .wrapper:before{
    top: -10px;
    right: -20px;
    width: 1040px;
    height: 860px;
  }
  .mv_logo2{
    width: 263px;
  }
  .mv_logo2 a+a{
    margin-left: 25px;
  }
  /* 下層ヘッダー */
  .pg_header{
    /*width: calc(100% - 86px - 50px - 20px);*/
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 120px;
  }
  .pg_header .container{
    height: 520px;
  }
  .pg_header .tt1_en{
    font-size: 48px;
  }

  /* メインビジュアル */
  .mv{
    /*margin-left: 105px;*/
    margin-left: 0;
    margin-right: 0;
  }
  .mv_catch_item[data-slide]{
    width: auto;
  }
  .mv_bg{
    height: 886px;
  }

  /* フォーム誘導バナー */
  .form_bnr{
    justify-content: flex-start;
    padding: 40px;
    background-size: 995px auto, cover;
    background-position: center, center;
  }
  .form_bnr .txt{
    font-size: 39.75px;
    margin-left: 90px;
  }
  .form_bnr .btns{
  }
  .form_bnr .btns a{
    width: 300px;
  }

  .side_banner{
    top: 330px;
  }

}
@media (min-width:1800px){
  .wrapper{
    /*margin-left: 0;*/
    /*margin-right: 0;*/
  }
}

/* **********************************
 *  フッター
 * ********************************* */
footer{
  color: #FFF;
  padding: 0;
  margin-top: 50px;
}

footer .ftr1{
  background: #0d0d0d;
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
}
footer .box1{
  width: 100%;
}
footer .box2{
  width: 1110px;
  max-width: 100%;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  padding: 25px 0;
  margin: 42px auto 0;
}


footer .ftr_logo{
  /*margin-bottom: 45px;*/
}
footer .ftr_bg{
  padding: 0 15px;
}
footer .ftr_addr{
  margin-top: 35px;
  line-height: 1.875;
}

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{
  margin: 0 -25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .ftr_links + .ftr_links{
  margin-top: 20px;
}
footer .ftr_links li{
  padding: 0 22px;
  line-height: 1.1;
}
footer .ftr_links li+li{
  border-left: 1px solid;
}
footer .copy{
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #CCC;
  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: #000;
  color: #FFF;
  text-decoration: none;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  body{
    padding-bottom: 58px;
  }
  footer .ftr_logo img{
    width: 100px;
  }
  footer .box2{
    display: none;
  }

  .footer_fix{
    display: block;
  }
}
@media (min-width:768px){
  footer{
    margin-top: 125px;
  }
  body.home footer{
    margin-top: 50px;
  }

  footer .ftr1{
    padding-top: 50px;
    margin-top: 50px;
    padding-bottom: 58px;
  }
  footer .box2{
    width: auto;
    margin-left: 30px;
    margin-right: 30px;
  }
  footer .ftr_links{

  }
  footer .ftr_links+.ftr_links{
    margin-top: 0;
  }
  footer .ftr_links li{
    margin: 10px 0;
  }
}
@media (min-width:1024px){
  footer{
    margin-top: 185px;
  }

  .pg_slug_reservation footer{
    margin-top: 100px;
  }
  .pg_slug_coordinate footer,
  .pg_slug_innovation footer{
    margin-top: -12px;
  }
}
@media (min-width:1200px){



  footer .ftr1{
    padding-top: 50px;
    margin-top: 150px;
    padding-bottom: 98px;
  }
  footer .box2{
    width: 1110px;
    margin-left: auto;
    margin-right: auto;
  }
  body.pg_slug_front-page footer .ftr1{
    margin-top: 60px;
  }
  footer .ftr_links + .ftr_links{
    margin-top: 20px;
  }
  footer .ftr_links li{
    padding: 0 25px;
    margin: 0;
  }
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{

}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{

}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{

}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;

}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -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;
}
.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: 4px 13px;
  margin: 4px 4px;
  color: #000;
  background: #fff;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
  border: 1px solid #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;
}

@media(max-width:767px){
  .pagination .page-numbers{
    padding: 2px 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: 120px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 14px 10px;
  position: relative;
  background: #FFF;
  color: #181818;
  letter-spacing: 0;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 12px 10px;
}

@media(min-width:768px){

  .single .pagination{
    margin-top: 60px;
  }

  .pagination .nav-posts .page-next a:before{
    left: 18px;
  }
  .pagination .nav-posts .page-prev a:after{
    right: 18px;
  }
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 2;
  right: 10px;
  bottom: 60px;
  z-index: 5;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #707070;
}
.pagetop a i{
  font-size: 40px;
}


.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;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{
  position: relative;
  margin-bottom: 20px;
}
.tt2 .en{
  /*font-size: 48px;*/
  font-size: 36px;
  font-family: "Outfit";
  font-weight: 700;
  /*letter-spacing: 0.075em;*/
  letter-spacing: 0.08em;
  line-height: 0.706;
  white-space: nowrap;
  color: #ececec;
  opacity: 0.07;
  text-align: center;
}
.tt2 .ja{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: -0.6em;
}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

/* 詳しく見る */
.read_more{
  margin-top: 30px;
}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  border: 1px solid #4c4c4c;
  color: #FFF;
  font-size: 15px;
  font-family: "Outfit";
  letter-spacing: 0.075em;
  text-align: center;
  position: relative;
}
/*.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%);
}*/


/* ページ概要 */
.cmn_about{
  margin-bottom: 30px;
}
.cmn_about .title{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.cmn_about .title.mb20{
  margin-bottom: 20px;
}
.cmn_about .title .title_txt{
  width: 280px;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #FFF;
  text-align: center;
  padding: 9px 10px 10px;
}
.cmn_about .title .title_txt.small{
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 15px 10px;
}
.cmn_about .title2{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  /*  margin-top: -15px;*/
  margin-bottom: 12px;
}

.cmn_about .txt1{
  line-height: 2;
  text-align: justify;
}
.cmn_about .txt2{
  line-height: 1.80;
  text-align: justify;
  margin-top: 15px;
}
.cmn_about .txt3{
  font-weight: 500;
  text-align: center;
}

.cmn_about .img{
  margin-top: 30px;
}
.cmn_about .img.img_fit:before{
  /*padding-top: 34.23%;*/
  padding-top: 50%;
}

.cmn_about .totonou{
  text-align: center;
}
.cmn_about .totonou img{
  width: 80%;
}

.cmn_about + .tt2{
  margin-top: 3px;
}

/* フッターmsg */
.cmn_footer_msg{
  text-align: center;
  margin-bottom: 30px;
}
.cmn_footer_msg .txt1{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.555;
}
.cmn_footer_msg .txt2{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 18px;
}


/* お問い合わせバナー */
.ftr_contact_box{
  background: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.ftr_contact_box:before{
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #FFF;
  pointer-events: none;
}
.ftr_contact_box1 {
  width: 100%;
}
.ftr_contact_box1_title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
.ftr_contact_box1_title strong{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-left: 24px;
}
.ftr_contact_box2_title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 16px;
}
.ftr_contact_box1_form {
  position: relative;
  background: #fff;
  color: #181818;
  padding: 12px 20px;
}
.ftr_contact_box1_form_items{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 700;
}
.ftr_contact_box1_form_txt1 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  text-align: center;
}
.ftr_contact_box1_title strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-left: 24px;
}
.ftr_contact_box2_title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 16px;
}
.ftr_contact_box1_form {
  position: relative;
  background: #fff;
  padding: 10px 20px;
}
.ftr_contact_box2 {
  width: 100%;
  color: #181818;
}
.ftr_contact_box2_title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 16px;
  color: #fff;
}
.ftr_contact_box2_txt1 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.ftr_contact_box2_txt2 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  color: #fff;
  margin-top: 5px;
}
.ftr_contact_box2_txt1 em{
  display: inline-block;
  font-style: normal;
  font-size: 0.789em;
}
.ftr_contact_box2_txt1 em:first-letter{
  font-size: 1.266em;
}
.ftr_contact_box1_form:after {
  content: "➡";
  font-family: 'M PLUS Rounded 1c', sans-serif;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 24px;
}
.body_home .ftr_contact_wrap{
  padding:50px 0;
}
.ftr_contact_wrap{
  padding:70px 0 50px;
  ;
}

/* テーブル */
.tbl{
  width: 100%;
}
.tbl th,
.tbl td{
  color: #181818;
  border: 1px solid #b3b3b3;
  font-weight: 500;
  text-align: left;
  line-height: 1.875;
  padding: 10px;
}
.tbl th{
  background: #e5e5e5;
}
.tbl td{
  background: #FFF;
}
.tbl ul{
  margin-left: 1em;
}
.tbl ul li{
  text-indent: -1em;
  padding-left: 1em;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  .pagination .nav-posts{
    font-size: 14px;
  }

  .pagetop a i{
    font-size: 25px;
  }

  .tbl.resp{

  }
  .tbl.resp tr,
  .tbl.resp th,
  .tbl.resp td{
    display: block;
    width: 100%;
  }
  .tbl.resp th,
  .tbl.resp td{
    border-bottom: 0;
  }
  tbl.resp tr:last-child td{
    border-bottom: 1px solid #b3b3b3;
  }

  .ftr_contact_box2_title{
    margin-bottom: 10px;
  }
  .ftr_contact_box1_form{
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 10px;
    position: relative;
  }
  .ftr_contact_box1_form_txt1_img{
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .ftr_contact_box1_form_items{
    justify-content: center;
  }
  .ftr_contact_box2_txt2{
    font-size: 14px;
  }

  .cmn_about .title .title_txt.small{
    font-size: 16px;
  }
}
@media (min-width:768px){

  /* 詳しく見る */
  .read_more{
    margin-top: 50px;
  }
  .read_more a{
  }
  .read_more.left a{
    margin-right: auto;
    margin-left: 0;
  }
  .read_more.right a{
    margin-right: 0;
    margin-left: auto;
  }

  /* ページ概要 */
  .cmn_about{
    margin-bottom: 50px;
  }
  .cmn_about .title{
    margin-bottom: 50px;
  }
  .cmn_about .title .title_txt{
    width: auto;
    font-size: 20px;
  }
  .cmn_about .title2{
    font-size: 26px;
    margin-top: -20px;
  }
  .cmn_about .txt1{
    font-size: 18px;
    /*text-align: center;*/
  }
  .cmn_about .txt2{
    font-size: 16px;
    /*text-align: center;*/
    margin-top: 28px;
  }
  .cmn_about .img{
    margin-top: 50px;
  }
  .cmn_about .img.img_fit:before{
    padding-top: 34.23%;
  }

  .cmn_about .totonou{
    margin-top: -35px;
  }
  .cmn_about .totonou img{
    /*width: auto;*/
  }


  /* フッターmsg */
  .cmn_footer_msg{
    margin-bottom: 50px;
  }
  .cmn_footer_msg .txt1{
    font-size: 30px;
  }
  .cmn_footer_msg .txt2{
    font-size: 21px;
    margin-top: 18px;
  }

  .tt2{
    margin-bottom: 30px;
  }
  .tt2 .en{
    font-size: 75px;
  }
  .tt2 .ja{
    font-size: 30px;
  }


  /* お問い合わせバナー */
  .ftr_contact_box1_title {
    font-size: 60px;
  }
  .ftr_contact_box1_form {
    margin-top: 14px;
    width: 500px;
    margin: 20px auto 0;
  }
  .ftr_contact_box1_form {
    margin-top: 14px;
    width: 500px;
    margin: 20px auto 0;
  }
  .ftr_contact_box2 {
    padding-top: 26px;
  }
  .ftr_contact_box2_txt1 {
    font-size: 32px;
  }
  .ftr_contact_box1_form_txt1 .outfit{
    margin-left: 10px;
  }

  /* テーブル */
  .tbl{

  }
  .tbl th,
  .tbl td{
    padding: 19px 35px;
  }
  .tbl th{
    width: 180px;
    border-right: 0;
  }
  .tbl td{
    border-left: 0;
  }

  /* ページ送り(詳細) */
  .pagination{
    margin-top: 75px;
  }
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    min-width: 200px;
  }
  .pagination .nav-posts .page-archive a{
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width:1024px){

  .cmn_about{
    margin-bottom: 80px;
  }
  .cmn_about .txt1{
    text-align: center;
  }
  .cmn_about .txt2{
    text-align: center;
  }
  .cmn_about .totonou{
    margin-top: -35px;
  }
  .cmn_about .totonou img{
    width: auto;
  }

  /* フッターmsg */
  .cmn_footer_msg{
    margin-bottom: 50px;
  }
  .cmn_footer_msg .txt1{
    font-size: 32px;
  }
  .cmn_footer_msg .txt2{
    font-size: 20px;
  }

  /* お問い合わせバナー */
  .ftr_contact_box {
    padding: 20px ;
  }
  .form_bnr + .ftr_contact_box {
    margin-top: 120px;
  }
  .ftr_contact_box1 {
    width: 48.46%;
    width: 55%;
    padding-left: 0;
    padding: 10px;
  }
  .ftr_contact_box1_title {
    font-size: 60px;
    text-align: justify;
  }
  .ftr_contact_box2_title {
    font-size: 21px;
    /*text-align: justify;*/
    /*padding-left: 20px;*/
    margin-top: 0;
  }
  .ftr_contact_box1_form {
    width: auto;
    margin: 24px 0 0;
    padding: 10px;
  }
  .ftr_contact_box1_form_txt1 {
    font-size: 21px;
  }
  .ftr_contact_box1_form_txt2{
    margin-left: 20px;
  }
  .ftr_contact_box1_form_txt1 .outfit{
    margin-left: 10px;
  }
  .ftr_contact_box2_title {
    font-size: 21px;
    /*text-align: justify;*/
    /*padding-left: 20px;*/
    margin-top: 0;
  }
  .ftr_contact_box1_form {
    width: auto;
    margin: 14px 0 0;
    padding: 10px;
  }
  .ftr_contact_box2 {
    width: 48.54%;
    width: 44%;
    text-align: center;
    /*margin-right: -35px;*/
  }
  .ftr_contact_box2_title {
    font-size: 21px;
    /*text-align: justify;*/
    /*padding-left: 40px;*/
    margin-top: 0;
  }
  .ftr_contact_box2_txt {
    margin-top: 20px;
  }
  .ftr_contact_box2_txt1 {
    font-size: 36px;
    text-align: center;
    /*padding-left: 40px;*/
  }
  .ftr_contact_box2_txt2 {
    font-size: 12px;
    padding-left: 0;
  }
  .body_home .ftr_contact_wrap{
    padding: 70px 0;
  }
  .ftr_contact_wrap{
    padding: 100px 0 70px;
    ;
  }

  /* テーブル */
  .tbl{

  }
  .tbl th,
  .tbl td{
    padding: 19px 35px;
  }
  .tbl th{
    width: 285px;
  }
  .tbl td{
    padding-left: 52px;
  }

  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    min-width: 250px;
  }
  .pagination .nav-posts .page-archive{
    min-width: 333px;
  }
}
@media (min-width:1200px){

  .tt2{
    margin-bottom: 45px;
  }
  .tt2 .en{
    font-size: 150px;
  }
  .tt2 .ja{
    font-size: 38px;
  }

  /* ページ概要 */
  .cmn_about{

  }
  .cmn_about .title{
    margin-bottom: 85px;
  }
  .cmn_about .title .title_txt{
    width: 540px;
    font-size: 26px;
  }
  .cmn_about .title2{
    font-size: 38px;
    margin-top: -30px;
  }
  .cmn_about .txt1{
    font-size: 21px;
  }
  .cmn_about .txt2{
    font-size: 21px;
  }

  /* フッターmsg */
  .cmn_footer_msg{
    margin-bottom: 50px;
  }
  .cmn_footer_msg .txt1{
    font-size: 36px;
  }
  .cmn_footer_msg .txt2{
    font-size: 21px;
  }

  /* お問い合わせバナー */
  .ftr_contact_box {
    padding: 3px 85px 12px;
    margin-top: 70px;
  }
  .form_bnr + .ftr_contact_box {
    margin-top: 150px;
  }
  .ftr_contact_box1 {
    width: 48.54%;
    width: 53.54%;
    padding-left: 0;
    padding-right: 30px;
  }
  .ftr_contact_box1_title {
    font-size: 68px;
    letter-spacing: 0.1em;
  }
  .ftr_contact_box2_title {
    font-size: 21px;
    /*padding-left: 88px;*/
  }
  .ftr_contact_box1_form {
    position: relative;
    background: #fff;
    padding: 12px 20px;
  }

  .ftr_contact_box1_form {
    position: relative;
    background: #fff;
    padding: 12px 20px;
  }
  .ftr_contact_box2 {
    width: 45.54%;
    margin-right: -35px;
  }

  .ftr_contact_box2_txt1 {
    font-size: 38px;
    /*padding-left: 65px;*/
    margin-top: 30px;
  }
  .ftr_contact_box2_txt2 {
    font-size: 15px;
  }

  .body_home .ftr_contact_wrap{
    padding: 100px 0;
  }
  .ftr_contact_wrap{
    padding: 200px 0 100px;
    ;
  }

}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{

}
.pg_home .section#sec1{

}
.pg_home .section#sec2{
  margin-top: 20px;
  ;
}
.pg_home .section#sec3{
  margin-top: 50px;
}
.pg_home .section#sec4{
  margin-top: 50px;
}
.pg_home .section#sec5{
  margin-top: 50px;
}
.pg_home .section#sec6{
  margin-top: 50px;
}
.pg_home .section#sec7{
  margin-top: 50px;
}

/* コンセプト */
.concept_wrap{
  margin-top: 30px;
}
.concept_header{
  text-align: center;
  margin-bottom: 15px;
}
.concept_header .txt1{
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  padding-top: 0.8em;
}
.concept_header .txt1 em{
  font-style: normal;
  position: relative;
}
.concept_header .txt1 em:before{
  content: "●";
  font-size: 0.259em;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -0.8em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.concept_header .txt2{
  display: inline-block;
  background: #FFF;
  color: #181818;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 5px 10px 6px;
  margin-top: 10px;
}
.concept_imgs{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.concept_imgs .item{
  width: 50%;
  padding: 0 5px;
}
.concept_imgs .item img{
  width: 100%;
}

/* プロデュース */
.produce_wrap{
  margin-top: -50px;
  padding: 100px 0 30px;
  position: relative;
}
.produce_wrap:before{
  content: "";
  background-image: url(/img/home/produce_bg_txt.png), url(/img/home/produce_bg.jpg);
  background-repeat: no-repeat;
  background-position: center top 80px, center;
  background-size: 280px auto, cover;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: calc(100vw);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.produce_wrap .txt1{
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.produce_wrap .txt2{
  font-weight: 500;
  line-height: 1.888;
  text-align: justify;
}


/* 記事スライダー */
.home_posts_slider{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 0 10px 30px;
}
.home_posts_slider:after{
  content: "";
  background: #0d0d0d;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
}
.home_posts_slider .box1{
  width: 100%;
  order: 2;
  margin-top: 15px;
}
.home_posts_slider .box2{
  width: 100%;
  order: 1;
}
.home_posts_slider .title{
  text-align: center;
}
.home_posts_slider .title .en{
  font-size: 50px;
  font-family: "Outfit";
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.home_posts_slider .title .ja{
  font-size: 18px;
  font-weight: 700;
}

.home_posts_slider .img{

}
.home_posts_slider .img.img_fit:before{
  padding-top: 115%;
}

.home_posts_slider .arrows{
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.home_posts_slider .arrows button{
  width: 46px;
  height: 46px;
  border: 0;
  background: none;
  margin: 0 10px;
}

.home_posts_slider_contact{

}

/* ギャラリー */
.home_gallery{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.5px;
}
.home_gallery li{
  width: 25%;
  padding: 2.5px;
}
.home_gallery li a{

}
.home_gallery li a.img_fit:before{
  padding-top: 100%;
}


/* 見出し */
.home_tt1{
  margin-bottom: 30px;
  text-align: center;
}
.home_tt1 .en{
  font-size: 50px;
  font-family: "Outfit";
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.home_tt1 .ja{
  font-size: 18px;
  font-weight: 700;
}

/* リンク */
.home_links{
  display: flex;
  flex-wrap: wrap;
  margin: 30px -5px 0;
}
.home_links .item{
  width: 100%;
  padding: 5px 5px;
}
.home_links .item a{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background: #9a8670;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  height: 70px;
  padding-left: 40px;
  padding-right: 30px;
}
.home_links .item a:before{
  content: "";
  width: 24px;
  height: 24px;
  background-image: url('/img/links_icon.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_links .item a:after{
  content: "";
  width: 22px;
  height: 17px;
  background-image: url('/img/links_arr.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_links .item a .en{
  font-size: 1.3125em;
  font-family: "Outfit";
  /*width: 100%;*/
}
.home_links .item a .ja{
  /*width: 100%;*/
}

.pg_home .section#sec4 .container-w{
  margin-right: 0;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_home{

  }
  .pg_home .section#sec1{

  }
  .pg_home .section#sec2{
    /*margin-top: 0;*/
  }
  .pg_home .section#sec3{
    margin-top: 50px;
  }
  .pg_home .section#sec4{
    margin-top: 50px;
  }
  .pg_home .section#sec5{
    margin-top: 50px;
  }


  /* コンセプト */
  .concept_wrap{
    margin-top: 40px;
  }
  .concept_header{
    margin-bottom: 30px;
  }
  .concept_header .txt1{
    font-size: 30px;
  }
  .concept_header .txt1 em{
  }
  .concept_header .txt1 em:before{
  }
  .concept_header .txt2{
    font-size: 26px;
    padding: 0 38px 1px;
    margin-top: 15px;
  }
  .concept_imgs{
    justify-content: center;
    margin: 0 auto;
  }
  .concept_imgs .item{
    width: 250px;
    padding: 0;
    margin: 0 15px;
  }


  /* プロデュース */
  .produce_wrap{
    margin-top: -100px;
    padding: 150px 15px 50px;
  }
  .produce_wrap:before{
    background-image: url(/img/home/produce_bg_txt.png), url(/img/home/produce_bg.jpg);
    background-position: center top 80px, center;
    background-size: 600px auto, cover;
    /*width: calc(100vw - 95px);*/
    width: 100%;
  }
  .produce_wrap .txt1{
    font-size: 36px;
    margin-bottom: 32px;
  }
  .produce_wrap .txt2{
    font-size: 18px;
    text-align: justify;
  }
  .produce_wrap .read_more{
    margin-top: 60px;
  }


  /* 記事スライダー */
  .home_posts_slider{
    padding: 0 15px 30px;
  }
  .home_posts_slider .box1{
    width: 71.46%;
    order: 1;
    margin-top: 0;
    position: relative;
    z-index: 2;
  }
  .home_posts_slider .box2{
    width: 21.61%;
    order: 2;
    position: relative;
    z-index: 1;
  }
  .home_posts_slider .title{
    text-align: left;
  }
  .home_posts_slider .title .en{
    font-size: 36px;
    margin-bottom: 10px;
  }
  .home_posts_slider .title .ja{
    font-size: 18px;
    font-weight: 700;
  }

  .home_posts_slider.reverse .box1{
    order: 2;
  }
  .home_posts_slider.reverse .box2{
    order: 1;
  }

  /* ギャラリー */
  .home_gallery{
  }
  .home_gallery li{
    width: 16.666%;
  }

  /* 見出し */
  .home_tt1{
    margin-bottom: 30px;
  }
  .home_tt1 .en{
    font-size: 36px;
    margin-bottom: 10px;
  }
  .home_tt1 .ja{
    font-size: 18px;
  }


  /* リンク */
  .home_links{
    margin: 50px -10px 0;
  }
  .home_links .item{
    width: 50%;
    padding: 10px 10px;
  }
  .home_links .item a{
    font-size: 14px;
    height: 70px;
    padding-left: 40px;
    padding-right: 30px;
  }
  .home_links .item a:before{
    /*width: 38px;*/
    /*height: 38px;*/
    left: 10px;
  }
  .home_links .item a:after{
    right: 20px;
  }
  .home_links .item a .en{
  }
  .home_links .item a .ja{
  }

  .pg_home .section#sec4 .read_more {
    margin-top: 85px;
  }
}
@media (min-width:1024px){

  /* コンセプト */
  .concept_wrap{
    /*margin-top: 65px;*/
  }
  .concept_header{
    margin-bottom: 30px;
  }
  .concept_header .txt1{
    font-size: 40px;
  }
  .concept_header .txt2{
    font-size: 28px;
    padding: 0 38px 1px;
    margin-top: 15px;
  }
  /*.concept_imgs{
    justify-content: center;
    margin: 0 auto;
  }
  .concept_imgs .item{
    width: 250px;
    padding: 0;
    margin: 0 15px;
  }*/

  /* 記事スライダー */
  .home_posts_slider{
    padding: 0 30px 50px;
  }
  .home_posts_slider .box1{
    width: 63%;
  }
  .home_posts_slider .box2{
    width: 22%;
  }
  .home_posts_slider .title{

  }
  .home_posts_slider .title .en{
    font-size: 50px;
    margin-bottom: 10px;
  }
  .home_posts_slider .title .ja{
    font-size: 18px;
    font-weight: 700;
  }

  .home_posts_slider .arrows{
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: calc(100% + 5px);
  }
  .home_posts_slider .arrows button{
    width: 46px;
    height: 46px;
    margin: 0 5px;
  }

  .home_posts_slider.reverse .arrows{
    left: auto;
    right: calc(100% + 5px);

  }

  .home_posts_slider_contact{
    margin-top: 60px;
  }

  /* 見出し */
  .home_tt1{
    margin-bottom: 30px;
  }
  .home_tt1 .en{
    font-size: 50px;
    margin-bottom: 10px;
  }
  .home_tt1 .ja{
  }

  /* リンク */
  .home_links{
    margin: 100px -15px 0;
  }
  .home_links .item{
    width: 50%;
    padding: 10px 15px;
  }
  .home_links .item a{
    font-size: 16px;
    height: 100px;
    padding-left: 65px;
    padding-right: 30px;
  }
  .home_links .item a:before{
    width: 38px;
    height: 38px;
    left: 10px;
  }
  .home_links .item a:after{
    right: 25px;
  }
  .home_links .item a .en{
  }
  .home_links .item a .ja{
  }
}
@media (max-width:1023px){
  .read_more.right a{
    margin: 0 auto;
  }
}
@media (min-width:1200px){

  .pg_home .section#sec1{

  }
  .pg_home .section#sec2{
    margin-top: 0;
  }
  .pg_home .section#sec3{
    margin-top: 110px;
  }
  .pg_home .section#sec4{
    margin-top: 155px;
  }
  .pg_home .section#sec5{
    margin-top: 150px;
    margin-right: 5px;
  }
  .pg_home .section#sec6{
    margin-top: 100px;
  }
  .pg_home .section#sec7{
    margin-top: 130px;
  }


  /* コンセプト */
  .concept_wrap{
    margin-top: 65px;
  }
  .concept_header{
    margin-bottom: 30px;
  }
  .concept_header .txt1{
    font-size: 54px;
  }
  .concept_header .txt2{
    font-size: 34px;
    padding: 0 38px 1px;
    margin-top: 15px;
  }

  /* プロデュース */
  .produce_wrap{
    margin-top: -155px;
    padding: 250px 0 100px;
  }
  .produce_wrap:before{
    background-image: url(/img/home/produce_bg_txt.png), url(/img/home/produce_bg.jpg);
    background-position: center top 175px, center;
    background-size:  auto, cover;
    /*width: calc(100vw - 60px);*/
    /*width: calc(100vw - 155px);*/
    /*width: calc(100vw - 165px);*/
    /*margin-left: -10px;*/
  }
  .produce_wrap .txt1{
    font-size: 42px;
    margin-bottom: 32px;
  }
  .produce_wrap .txt2{
    text-align: center;
  }

  /* 記事スライダー */
  .home_posts_slider{
    /*padding: 0 45px 50px;*/
    padding: 0 30px 50px;
  }
  .home_posts_slider .box1{
    /*width: 71.46%;*/
    width: 73.4%;
  }
  .home_posts_slider .box2{
    width: 21.61%;
    /*width: 19.4%;*/
  }

  .home_posts_slider .box2 .read_more{
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .home_posts_slider .arrows{
    left: calc(100% + 20px);
  }

  .home_posts_slider.reverse .read_more{
    left: 0;
    right: auto;
  }
  .home_posts_slider .box2 .read_more a{
    width: 200px;
  }

  .home_posts_slider .title .en{
    font-size: 70px;
  }

  .home_posts_slider_contact{
    margin-top: 120px;
  }

  /* リンク */
  .home_links{
    margin: 135px -15px 0;
  }


  .coordinate_cases + .form_bnr{
    margin-top: 60px;
  }


  .pg_home .section#sec5{
    overflow: hidden;
  }
  .pg_home .section#sec5 .container-w{
    /*width: inherit;*/
    /*margin: 0 15px;*/
  }
}

@media (min-width:1500px){


  .home_posts_slider:after{
    height: 275px;
  }
  .home_posts_slider .box2{
    /*padding-top: 160px;*/
    padding-top: 185px;
  }
  

  .home_posts_slider .title .en{
    font-size: 80px;
    margin-bottom: 15px;
  }
  .home_posts_slider .title .ja{
    font-size: 24px;
  }

  /* 見出し */
  .home_tt1{
    margin-bottom: 40px;
  }
  .home_tt1 .en{
    font-size: 100px;
    margin-bottom: 15px;
  }
  .home_tt1 .ja{
    font-size: 24px;
  }
}
@media (min-width:1700px){
  .home_posts_slider .title .en{
    font-size: 100px;
  }
  .home_posts_slider .box2 .read_more a{
    width: 282px;
  }
}

/* **********************************
 *  選ばれる理由
 * ********************************* */
.pg_reason{

}
.pg_reason .section#sec1{

}
.pg_reason .section#sec2{
  margin-top: 100px;
}
.pg_reason .section#sec3{

}
.pg_reason .section#sec4{

}

/* コンテンツ */
.reason_contents{

}
.reason_contents .item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reason_contents .item:nth-child(n+2){
  margin-top: 50px;
}
.reason_contents .item .box1{
  width: 100%;
}
.reason_contents .item .box2{
  width: 100%;
  margin-top: 20px;
}
.reason_contents .item .title_en{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.reason_contents .item .title_en:before,
.reason_contents .item .title_en.bdr_r:after{
  content: "";
  width: 50px;
  height: 1px;
  background: #737373;
  margin-right: 10px;
  margin-left: 4px;
}
.reason_contents .item .title_en.bdr_r{
  justify-content: flex-start;
}
.reason_contents .item .title_en.bdr_r:before{
  display: none;
}
.reason_contents .item .title_en.bdr_r:after{
  display: block;
}
.reason_contents .item .title_ja{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.reason_contents .item .txt{
  line-height: 2;
  text-align: justify;
}
.reason_contents .item .img.img_fit:before{
  padding-top: 62.24%;
}
.reason_contents .item:nth-child(even) .title_en{
  /*justify-content: flex-start;*/
}
.reason_contents .item:nth-child(even) .title_en:before{
  /*display: none;*/
}
.reason_contents .item:nth-child(even) .title_en:after {
  /*content: "";
  width: 50px;
  height: 1px;
  background: #FFF;
  margin-left: 5px;*/
}

.reason_contents.type2{
  position: relative;
  color: #181818;
}
.reason_contents.type2 .item .box1{
  /*width: 43.38%;
  position: absolute;
  z-index: 1;*/
}
.reason_contents.type2 .item .box2{
  /*width: 85.42%;
  
  */
  margin-top: 0;
  background: #e5e5e5;
  padding: 15px;
  margin-left: auto;
}
.reason_contents.type2 .item .title_en{
  font-size: 22px;
  justify-content: flex-start;
}
.reason_contents.type2 .item .title_en:before{
  background: #262626;
}
.reason_contents.type2 .item .txt{
  line-height: 2.125;
}
.reason_contents.type2 .item .img.img_fit:before{
  padding-top: 80.64%;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_reason{

  }




  /* コンテンツ */
  .reason_contents{

  }
  .reason_contents .item{
  }
  .reason_contents .item:nth-child(n+2){
    margin-top: 50px;
  }
  .reason_contents .item .box1{
    width: 75%;
    margin:  0 auto;
  }
  .reason_contents .item .box2{
    width: 100%;
    margin-top: 30px;
  }
  .reason_contents .item .title_en{
    font-size: 40px;
  }
  .reason_contents .item .title_en:before,
  .reason_contents .item .title_en.bdr_r:after{
    width: 100px;
  }
  .reason_contents .item .title_ja{
    font-size: 22px;
    margin-bottom: 15px;
  }



  .reason_contents.type2 .item .box1{
    width: 100%;
    margin:  0 auto;
  }
  .reason_contents.type2 .item .title_en{
    font-size: 28px;
  }
  .reason_contents.type2 .item .img.img_fit:before{
    padding-top: 50%;
  }



}
@media (min-width:1024px){

  /* コンテンツ */
  .reason_contents{

  }
  .reason_contents .item{
  }
  .reason_contents .item:nth-child(n+2){
    margin-top: 73px;
  }
  .reason_contents .item .box1{
    width: 40%;
    margin: 0;
  }
  .reason_contents .item .box2{
    width: 58%;
    margin-top: 0;
  }
  .reason_contents .item .title_en{
    font-size: 40px;
  }
  .reason_contents .item .title_en:before,
  .reason_contents .item .title_en.bdr_r:after{
    /*.reason_contents .item:nth-child(even) .title_en:after{*/
    width: 100px;
  }
  .reason_contents .item .title_ja{
    font-size: 22px;
    margin-bottom: 15px;
  }
  .reason_contents .item .txt{
  }

  .reason_contents .item:nth-child(odd) .box1{
  }
  .reason_contents .item:nth-child(odd) .box2{
  }
  .reason_contents .item:nth-child(even) .box1{
    order: 2;
  }
  .reason_contents .item:nth-child(even) .box2{
    order: 1;
  }

  .reason_contents.type2{
  }
  .reason_contents.type2 .item .box1{
    width: 42.20%;
    position: absolute;
    z-index: 1;
    top: -40px;
  }
  .reason_contents.type2 .item .box2{
    width: 83.00%;
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 50px;
    padding-left: 27%;
  }

  .reason_contents.type2 .item .title_en{
    font-size: 32px;
    margin-bottom: 30px;
  }
  .reason_contents.type2 .item .title_ja{
    font-size: 18px;
    margin-bottom: 35px;
  }
  .reason_contents.type2 .item .img.img_fit:before{
    padding-top: 80.64%;
  }


}
@media (min-width:1200px){

  .pg_reason .section#sec2{
    margin-top: 140px;
  }

  /* コンテンツ */
  .reason_contents{

  }
  .reason_contents .item{
  }
  .reason_contents .item:nth-child(n+2){
    margin-top: 100px;
  }
  .reason_contents .item .box1{
    /*width: 56.4%;*/
    width: 55.1%;
    /*padding-left: 10px;*/
  }
  .reason_contents .item:nth-child() .box1{
    
  }
  .reason_contents .item .box2{
    /*width: 39.8%;*/
    width: 41.3%;
    margin-top: 0;
    padding-top: 50px;
  }
  .reason_contents .item .title_en{
    font-size: 40px;
    margin-bottom: 40px;
  }
  .reason_contents .item .title_en:before,
  .reason_contents .item .title_en.bdr_r:after,
  .reason_contents .item:nth-child(even) .title_en:after{
    width: 180px;
  }
  .reason_contents .item .title_ja{
    font-size: 22px;
    margin-bottom: 35px;
  }
  .reason_contents .item .txt{

  }


  .reason_contents.type2{
  }
  .reason_contents.type2 .item .box1{
    width: 42.20%;
    position: absolute;
    z-index: 1;
    top: -40px;
  }
  .reason_contents.type2 .item .box2{
    width: 83.00%;
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 50px;
  }
  .reason_contents.type2 .item .img.img_fit:before{
    padding-top: 80.64%;
  }

  .pg_home .reason_contents .item:nth-child(odd) .box1{
    /*margin-left: -6px;*/
  }

  .pg_home .reason_contents{
    /*margin-left: -22px;*/
  }
}

@media (min-width:1800px){

  .reason_contents .item .box2{
    padding-top: 100px;
  }
  .reason_contents .item .title_en{
    font-size: 54px;
  }
  .reason_contents .item .title_en:before,
  .reason_contents .item:nth-child(even) .title_en:after{
    width: 180px;
  }
  .reason_contents .item .title_ja{
    font-size: 28px;
  }

  .reason_contents.type2 .item .box1{

  }
  .reason_contents.type2 .item .box2{
    padding-left: 475px;
    padding-right: 160px;
    padding-bottom: 85px;
  }
  .reason_contents.type2 .item .title_en{
    font-size: 54px;
    margin-bottom: 30px;
  }
  .reason_contents.type2 .item .title_ja{
    font-size: 24px;
    line-height: 1.75;
    margin-bottom: 35px;
  }

  .pg_home .reason_contents .item:nth-child(odd) .box2{
    /*padding-right: 42px;*/
  }
  .pg_home .reason_contents .item:nth-child(even) .box2{
    /*padding-left: 40px;*/
  }
}

/* **********************************
 *  トータルコーディネート
 * ********************************* */
.pg_coordinate{

}
.pg_coordinate .section#sec1{

}
.pg_coordinate .section#sec2{
  margin-top: 50px;
}
.pg_coordinate .section#sec3{
  margin-top: 50px;
}
.pg_coordinate .section#sec4{
  margin-top: 50px;
}
.pg_coordinate .section#sec5{
  margin-top: 50px;
}

.pg_coordinate .cmn_about{
  margin-bottom: 0;
}

/* メリット */
.coordinate_merit{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.coordinate_merit .item{
  width: 100%;
  padding: 0 5px;
}
.coordinate_merit .item:nth-child(n+2){
  margin-top: 50px;
}
.coordinate_merit .item .inner{
  border: 1px solid #FFF;
  padding: 10px 15px;
  position: relative;
  z-index: 1;
}
.coordinate_merit .item .num{
  display: block;
  text-align: center;
  font-size: 20px;
  font-size: 41.73px;
  font-family: "AlFresco";
  transform: rotate(-8deg);
  margin-bottom: 10px;
  /*position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);*/
}
.coordinate_merit .item .title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: #1c1a20;
  margin-top: -1.2em;
  margin-bottom: 18px;
}
.coordinate_merit .item .txt{
  font-weight: 500;
  line-height: 2;
}

/* 概要 */
.coordinate_about{
  margin-bottom: 50px;
}
.coordinate_about .title{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
.coordinate_about .title .s1{
  font-size: 1.108em;
}
.coordinate_about .title .s2{
  font-size: 0.577em;
}
.coordinate_about .txt{
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

/* 事例 */
.coordinate_cases{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.coordinate_cases .item{
  width: 50%;
  padding: 0 5px;
}
.coordinate_cases .item:nth-child(n+3){
  margin-top: 20px;
}
.coordinate_cases .item .inner{

}
.coordinate_cases .item .title{
  margin-bottom: 10px;
}
.coordinate_cases .item .txt{
  font-size: 15px;
  line-height: 2;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_coordinate .section#sec1{

  }
  .pg_coordinate .section#sec2{
    margin-top: 65px;
  }
  .pg_coordinate .section#sec3{
    margin-top: 80px;
  }
  .pg_coordinate .section#sec4{
    margin-top: 60px;
  }

  /* メリット */
  .coordinate_merit{
    margin: 0 -5px;
  }
  .coordinate_merit .item{
    width: 33.333%;
    padding: 0 5px;
  }
  .coordinate_merit .item:nth-child(n+2){
    margin-top: 0;
  }
  .coordinate_merit .item:nth-child(n+4){
    margin-top: 50px;
  }
  .coordinate_merit .item .inner{
    padding: 10px 15px;
    height: 100%;
    height: calc(100% - 32px*1.8);
  }
  .coordinate_merit .item .num{
    font-size: 32px;
  }
  .coordinate_merit .item .title{
    font-size: 18px;
    padding: 0 5px;
    letter-spacing: 0.01em;
  }
  .coordinate_merit .item .txt{

  }

  /* 概要 */
  .coordinate_about{
    margin-bottom: 50px;
  }
  .coordinate_about .title{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .coordinate_about .txt{

  }

  /* 事例 */
  .coordinate_cases{
    margin: 0 -10px;
  }
  .coordinate_cases .item{
    width: 50%;
    padding: 0 10px;
  }
  .coordinate_cases .item:nth-child(n+3){
    margin-top: 30px;
  }
  .coordinate_cases .item .inner{

  }
  .coordinate_cases .item .title{
    margin-bottom: 22px;
  }
  .coordinate_cases .item .txt{
    font-size: 16px;
  }
}
@media (min-width:1024px){

  .pg_coordinate .section#sec3{
    margin-top: 140px;
  }
  .pg_coordinate .section#sec5{
    margin-top: 140px;
  }

  /* メリット */
  .coordinate_merit{
    margin: 0 -15px;
  }
  .coordinate_merit .item{
    width: 33.333%;
    padding: 0 15px;
  }
  .coordinate_merit .item:nth-child(n+4){
    margin-top: 50px;
  }
  .coordinate_merit .item .inner{
    padding: 10px 18px 45px;
    height: calc(100% - 41.73px*1.8);
  }
  .coordinate_merit .item .num{
    font-size: 41.73px;
  }
  .coordinate_merit .item .title{
    font-size: 20px;
    letter-spacing: 0.075em;
  }
  .coordinate_merit .item .txt{

  }

  /* 概要 */
  .coordinate_about{
    margin-bottom: 55px;
  }
  .coordinate_about .title{
    font-size: 46px;
    margin-bottom: 28px;
  }
  .coordinate_about .txt{
    font-size: 18px;
    text-align: center;
  }

  /* 事例 */
  .coordinate_cases{
    margin: 0 -15px;
  }
  .coordinate_cases .item{
    width: 50%;
    padding: 0 15px;
  }
  .coordinate_cases .item:nth-child(n+3){
    margin-top: 42px;
  }
  .coordinate_cases .item .inner{

  }
  .coordinate_cases .item .title{
    /*margin-bottom: 10px;*/
  }
  .coordinate_cases .item .txt{
    /*font-size: 16px;*/
  }

  .coordinate_cases + .read_more{
    margin-top: 75px;
  }

}
@media (min-width:1200px){

}



/* **********************************
 *  
 * ********************************* */
.pg_innovation{

}
.pg_innovation .section#sec1{

}
.pg_innovation .section#sec2 .tt2 .en{
  letter-spacing: 0;
}
.pg_innovation .section#sec3{
  margin-top: 50px;
}

/* 効果 */
.innovation_kouka{

}
.innovation_kouka .row{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.innovation_kouka .item{
  width: 100%;
  padding: 0 5px;
}
.innovation_kouka .item + .item{
}
.innovation_kouka .item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  color: #181818;
  height: 100%;
}
.innovation_kouka .item .box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.innovation_kouka .item .box2{
  width: 100%;
  padding: 15px 15px;
}
.innovation_kouka .item .title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.innovation_kouka .item .title:after{
  content: "";
  display: block;
  width: 95px;
  height: 1px;
  background: #262626;
  margin-top: 10px;
}
.innovation_kouka .item .txt{
  line-height: 1.875;
  text-align: justify;

}




@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){



}
@media (min-width:768px){
  .pg_innovation .section#sec1{

  }
  .pg_innovation .section#sec2{
    margin-top: -30px;
  }
  .pg_innovation .section#sec3{
    margin-top: 80px;
  }


  /* 効果 */
  .innovation_kouka{

  }
  .innovation_kouka .row{
    margin: 0 -10px;
  }
  .innovation_kouka .item{
    /*width: 50%;*/
    padding: 0 10px;
  }
  .innovation_kouka .item .inner{
  }
  .innovation_kouka .item .box1{
    width: 42.65%;
  }
  .innovation_kouka .item .box1 img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .innovation_kouka .item .box2{
    width: 57.35%;
    padding: 23px 15px;
  }
  .innovation_kouka .item .title{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .innovation_kouka .item .title:after{
    margin-top: 13px;
  }
  .innovation_kouka .item .txt{
  }


}
@media (min-width:1024px){



}
@media (max-width:1199px){

  .innovation_kouka .row+.row{
    margin-top: 20px;
  }
  .innovation_kouka .item + .item{
    margin-top: 20px;
  }

}
@media (min-width:768px) and (max-width:1199px){

  .innovation_kouka .item:nth-child(even) .box1{
    order: 2;
  }
  .innovation_kouka .item:nth-child(even) .box2{
    order: 1;
  }

}
@media (min-width:1200px){

  .pg_innovation .section#sec1{

  }
  .pg_innovation .section#sec2{

  }
  .pg_innovation .section#sec3{
    margin-top: 135px;
  }

  /* 効果 */
  .innovation_kouka{

  }
  .innovation_kouka .row{
    margin: 0 -15px;
  }
  .innovation_kouka .row+.row{
    margin-top: 30px;
  }
  .innovation_kouka .item{
    width: 50%;
    padding: 0 15px;
  }
  .innovation_kouka .item .inner{
    min-height: 350px;
  }
  .innovation_kouka .item .box1{
  }
  .innovation_kouka .item .box2{
    padding: 23px 30px;
  }
  .innovation_kouka .item .title{
    font-size: 24px;
    margin-bottom: 15px;
  }

  .innovation_kouka .row:nth-child(even) .item .box1{
    order: 2;
  }
  .innovation_kouka .row:nth-child(even) .item .box2{
    order: 1;
  }

  .innovation_kouka + .read_more{
    margin-top: 80px;
  }

}

/* **********************************
 *  製品
 * ********************************* */
.pg_product{

}
.pg_product .section#sec1{

}


/* カテゴリ */
.category_nav{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.category_nav.col2{

}
.category_nav.col3{

}
.category_nav li{
  width: 100%;
  padding: 0 5px;
}
.category_nav li:nth-child(n+2){
  margin-top: 10px;
}
.category_nav li a{
  display: block;
  background: #e5e5e5;
  color: #181818;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 10px 10px ;
  position: relative;
  z-index: 1;
}
.category_nav li a:before{
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 1px solid #262626;
  pointer-events: none;
}
.category_nav li a:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #262626 transparent;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

/* 製品一覧 */
.product_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.product_items .item{
  width: 50%;
  padding: 0 5px;
}
.product_items .item:nth-child(n+3){
  margin-top: 10px;
}
.product_items .item .inner{
  display: block;
  padding: 10px 10px 15px;
  background: #FFF;
  height: 100%;
  position: relative;
}
.product_items .item .inner:before{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #262626 transparent;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.product_items .item .img{

}
.product_items .item .img.img_fit:before{
  padding-top: 72.72%;
}
.product_items .item .category{
  display: flex;
}
.product_items .item .category span{
  min-width: 150px;
  padding: 1px 5px 1px;
  background: #262626;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.product_items .item .title{
  font-weight: 500;
  line-height: 2.125;
  color: #181818;
  margin-top: 10px;
  padding: 0 10px;
}

.category_nav + .product_items{
  margin-top: 30px;
}

/* 詳細 */
.product_gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_gallery .box1{
  width: 100%;
}
.product_gallery .box2{
  width: 100%;
  margin-top: 10px;
}
.product_gallery .main_img{
  background: #FFF;
}
.product_gallery .main_img.img_fit:before{
  padding-top: 72.60%;
}
.product_gallery .sub_imgs{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.product_gallery .sub_imgs li{
  width: 25%;
  padding: 0 5px;
}
.product_gallery .sub_imgs li a{
  background: #FFF;
}
.product_gallery .sub_imgs li a.img_fit:before{
  padding-top: 72.35%;
}

.product_video{
  margin-top: 30px;
}

.product_title{
  font-size: 18px;
  font-weight: 500;
  background: #FFF;
  color: #181818;
  padding: 10px 10px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.product_desc_title{
  font-size: 16px;
  line-height: 1.875;
  margin-bottom: 5px;
}
.product_desc1 .txt,
.product_desc2 .txt,
.product_desc3 .txt{
  line-height: 1.875;
  text-align: justify;
}
.product_desc1{
  padding: 0 15px;
}
.product_desc2{
  background: #FFF;
  color: #181818;
  padding: 20px 15px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.product_desc2:before{
  content: "";
  border: 1px dashed #262626;
  pointer-events: none;
  position: absolute;
  inset: 5px;
}
.product_desc3{
  padding: 0 15px;
  margin-top: 30px;
}

.product_desc_list1{

}
.product_desc_list1 li{
  text-indent: -1em;
  padding-left: 1em;
}
.product_desc_list1 li:before{
  content: "✓";
  margin-right: 5px;
}
.product_desc_list1 li+li{
  margin-top: 6px;
}


.product_desc_list2{

}
.product_desc_list2 li{
  text-indent: -1em;
  padding-left: 1em;
}
.product_desc_list2 li:before{
  content: "・";
}
.product_desc_list2 li+li{
  margin-top: 6px;
}

.product_hr{
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  .product_gallery .sub_imgs li:nth-child(n+5){
    margin-top: 10px;
  }

}
@media (min-width:768px){
  .pg_work{

  }
  .pg_work .section.sec1{
  }

  /* カテゴリ */
  .category_nav{
    margin: 0 -10px;
  }
  .category_nav li{
    padding: 0 10px;
  }
  .category_nav.col2{

  }
  .category_nav.col2 li{
    width: 50%;
  }
  .category_nav.col3 li{
    width: 50%;
  }
  .category_nav.col2 li:nth-child(n+2){
    margin-top: 0;
  }
  .category_nav.col2 li:nth-child(n+3){
    margin-top: 15px;
  }
  .category_nav.col3 li:nth-child(n+2){
    margin-top: 0;
  }
  .category_nav.col3 li:nth-child(n+3){
    margin-top: 15px;
  }
  .category_nav li a{
    font-size: 16px;
    padding: 18px 10px 19px;
  }

  /* 製品一覧 */
  .product_items{
    margin: 0 -10px;
  }
  .product_items .item{
    width: 33.333%;
    padding: 0 10px;
  }
  .product_items .item:nth-child(n+3){
    margin-top: 0;
  }
  .product_items .item:nth-child(n+4){
    margin-top: 20px;
  }
  .product_items .item .inner{
    padding: 10px 10px 15px;
  }
  .product_items .item .img{

  }
  .product_items .item .category{

  }
  .product_items .item .category span{
  }
  .product_items .item .title{
    height: calc(3em * 2.125);
  }

  .category_nav + .product_items{
    margin-top: 50px;
  }

  /* 詳細 */
  .product_gallery{
    display: flex;
    flex-wrap: wrap;
  }
  .product_gallery .box1{
    width: 65.76%;
  }
  .product_gallery .box2{
    width: 31.53%;
    margin-top: 0;
  }
  .product_gallery .main_img{

  }
  .product_gallery .sub_imgs{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }
  .product_gallery .sub_imgs li{
    width: 50%;
    padding: 0 5px;
  }
  .product_gallery .sub_imgs li:nth-child(n+3){
    margin-top: 10px;
  }
  .product_gallery .sub_imgs li a{

  }


  .product_video{
    margin-top: 30px;
  }

  .product_title{
    font-size: 20px;
    padding: 15px 15px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .product_desc_title{
    font-size: 16px;

  }
  .product_desc1 .txt,
  .product_desc2 .txt,
  .product_desc3 .txt{
    line-height: 1.875;
    text-align: justify;
  }
  .product_desc1{

  }
  .product_desc2{
    margin-top: 40px;
  }
  .product_desc3{
    margin-top: 40px;
  }
}
@media (min-width:1024px){

  /* カテゴリ */
  .category_nav{
    margin: 0 -15px;
  }
  .category_nav li{
    padding: 0 15px;
  }
  .category_nav.col2{

  }
  .category_nav.col2 li{
    width: 50%;
  }
  .category_nav.col3 li{
    width: 33.333%;
  }
  .category_nav.col2 li:nth-child(n+2){
    margin-top: 0;
  }
  .category_nav.col2 li:nth-child(n+3){
    margin-top: 10px;
  }
  .category_nav.col3 li:nth-child(n+2){
    margin-top: 0;
  }
  .category_nav.col3 li:nth-child(n+4){
    margin-top: 15px;
  }
  .category_nav li a{

  }

  /* 製品一覧 */
  .product_items{
    margin: 0 -15px;
  }
  .product_items .item{
    width: 33.333%;
    padding: 0 15px;
  }
  .product_items .item:nth-child(n+3){
    margin-top: 0;
  }
  .product_items .item:nth-child(n+4){
    margin-top: 50px;
  }

  .category_nav + .product_items{
    margin-top: 80px;
  }

}
@media (min-width:1200px){

}


/* **********************************
 *  設置事例
 * ********************************* */
.pg_work{

}
.pg_work .section#sec1{

}



/* 事例一覧 */
.work_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.work_items .item{
  width: 100%;
  padding: 0 5px;
}
.work_items .item:nth-child(n+2){
  margin-top: 10px;
}
.work_items .item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 15px;
  background: #FFF;
  height: 100%;
  position: relative;
}
.work_items .item .inner:after{
  content: "";
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px solid #262626;
  position: absolute;
  left: 5px;
  top: 5px;
  pointer-events: none;
}
.work_items .item .inner:before{
  content: "";
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #262626;
  border-top: 0;
  transform: rotate(135deg);
  position: absolute;
  right: 1px;
  bottom: 5px;
  pointer-events: none;
}
.work_items .item .inner .box1{
  width: 100%;
}
.work_items .item .inner .box2{
  width: 100%;
  margin-top: 15px;
}
.work_items .item .img{

}
.work_items .item .img.img_fit:before{
  padding-top: 92.59%;
}

.work_items .item .title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.777;
  color: #181818;
}
.work_items .item .txt{
  font-weight: 500;
  line-height: 2;
  color: #181818;
  margin-top: 10px;
}

/* 詳細 */
.work_comment{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.work_comment .box1{
  width: 100%;

}
.work_comment .box2{
  width: 100%;
  margin-top: 15px;
}
.work_comment .txt{
  line-height: 2.25;
  text-align: justify;

}

.work_enq{
  margin-top: 30px;
}
.work_enq .item{

}
.work_enq .item+.item{
  margin-top: 30px;
}
.work_enq .title{
  font-size: 16px;
  background: #FFF;
  color: #181818;
  padding: 23px 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.work_enq .title:before{
  content: "";
  border: 1px dashed #262626;
  pointer-events: none;
  position: absolute;
  inset: 5px;
}
.work_enq .txt{
  line-height: 2.25;
  text-align: justify;
  padding: 0 15px;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_work{

  }
  .pg_work .section.sec1{
  }

  /* 事例一覧 */
  .work_items{
    margin: 0 -10px;
  }
  .work_items .item{
    /*width: 50%;*/
    padding: 0 10px;
  }
  .work_items .item:nth-child(n+2){
    /*margin-top: 0;*/
  }
  .work_items .item:nth-child(n+3){
    /*margin-top: 30px;*/
  }
  .work_items .item .inner .box1{
    width: 35%;
  }
  .work_items .item .inner .box2{
    width: 63%;
    padding-left: 18px;
    margin-top: 0;
  }


  /* 詳細 */
  .work_comment{
  }
  .work_comment .box1{
    width: 59.90%;
    padding-left: 15px;
  }
  .work_comment .box2{
    width: 31.53%;
    margin-top: 10px;
  }
  .work_comment .txt{
  }

  .work_enq{
    margin-top: 60px;
  }
  .work_enq .item{

  }
  .work_enq .item+.item{
    margin-top: 50px;
  }
  .work_enq .title{
    font-size: 16px;
    padding: 23px 15px;
    margin-bottom: 20px;
  }
  .work_enq .txt{
    padding: 0 15px;
  }
}
@media (min-width:1024px){

  /* 事例一覧 */
  .work_items{
    margin: 0 -15px;
  }
  .work_items .item{
    width: 50%;
    padding: 0 15px;
  }
  .work_items .item:nth-child(n+2){
    margin-top: 0;
  }
  .work_items .item:nth-child(n+3){
    margin-top: 50px;
  }
  .work_items .item .inner .box1{
    width: 53%;
  }
  .work_items .item .inner .box2{
    width: 47%;
    padding-left: 18px;
    margin-top: 0;
  }

}
@media (min-width:1200px){

}

/* **********************************
 *  よくある質問
 * ********************************* */
.pg_faq{

}
.pg_faq .section#sec1{

}

/* よくある質問 */
.faq_rows{
  margin-top: 50px;
}
.faq_rows .row{

}
.faq_rows .row + .row{
  margin-top: 50px;
}
.faq_rows .title{
  background: #FFF;
  color: #181818;
  font-size: 16px;
  font-weight: 700;
  padding: 24px 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.faq_rows .title:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 1px dashed #262626;
  background: #e5e5e5;
  pointer-events: none;
}
.faq_rows .items{

}
.faq_rows .item{

}
.faq_rows .item + .item{
  margin-top: 15px;
}
.faq_rows .item dt{
  background: #ffffff;
  color: #181818;
  font-weight: 500;
  text-indent: -1.2em;
  padding: 13px 25px 13px calc(1.2em + 15px);
  position: relative;
  z-index: 1;
  cursor: pointer;

}
.faq_rows .item dt:after{
  content: "";
  display: block;
  height: 1px;
  background: #262626;
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
}
.faq_rows .item dt:before{
  content: "\f0fe";
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.faq_rows .item.on dt:before{
  content: "\f146";
}
.faq_rows .item dt:hover{
  opacity: 0.9;
}

.faq_rows .item dd{
  display: none;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: justify;
}
.faq_rows .item dd a{
  text-decoration: underline;
}



@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_faq{

  }
  .pg_faq .section.sec1{
  }

  /* よくある質問 */
  .faq_rows{
    margin-top: 60px;
  }
  .faq_rows .row{

  }
  .faq_rows .row + .row{
    margin-top: 60px;
  }
  .faq_rows .title{
    margin-bottom: 25px;
  }
  .faq_rows .item + .item{
    margin-top: 15px;
  }
}
@media (min-width:1024px){

  /* よくある質問 */
  .faq_rows{
    margin-top: 100px;
  }
  .faq_rows .row{

  }
  .faq_rows .row + .row{
    margin-top: 100px;
  }
  .faq_rows .title{
    margin-bottom: 35px;
  }
  .faq_rows .item + .item{
    margin-top: 15px;
  }

}
@media (min-width:1200px){

}

/* **********************************
 *  
 * ********************************* */
.pg_reservation{

}
.pg_reservation .section#sec1{

}
.pg_reservation .section#sec2{
  margin-top: 50px;
}
.pg_reservation .section#sec3{
  margin-top: 50px;
}

/* 予約フォーム */
.reservation_wrap{
  color: #181818;
}

/* 展示場 */
.reservation_model{

}
.reservation_model{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reservation_model .box1{
  width: 100%;
  margin-top: 15px;
  order: 2;
}
.reservation_model .box2{
  width: 100%;
  order: 1;
}

.reservation_model .title{
  font-size: 18px;
  font-weight: 500;
  background: #ffffff;
  color: #181818;
  padding: 6px 10px;
  margin-bottom: 15px;
}
.reservation_model .txt{
  font-weight: 500;
  line-height: 2;
}
.reservation_model .txt + .txt{
  margin-top: 10px;
}


/* マップ */
.reservation_map{
  margin-top: 30px;
}
.reservation_map iframe{
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.reservation_gallery{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  margin-top: 30px;
}
.reservation_gallery .item{
  width: 50%;
  padding: 0 5px;
}
.reservation_gallery .item:nth-child(n+3){
  margin-top: 10px;
}
.reservation_gallery .item a{
  display: block;
}
.reservation_gallery .item a.img_fit:before{
  padding-top: 80%;
}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }

  /* 展示場 */
  .reservation_model{
    margin-top: -15px;
  }
  .reservation_model .box1{
    width: 48.64%;
    margin-top: 0;
    order: 1;
  }
  .reservation_model .box2{
    width: 48.64%;
    order: 2;
  }

  .reservation_model .title{
    font-size: 18px;
    margin-bottom: 25px;
  }
  .reservation_model .txt{
  }
  .reservation_model .txt + .txt{
    margin-top: 20px;
  }


  /* マップ */
  .reservation_map{
    margin-top: 50px;
  }
  .reservation_map iframe{
    height: 330px;
  }

  /* ギャラリー */
  .reservation_gallery{
    margin: 0 -10px;
    margin-top: 60px;
  }
  .reservation_gallery .item{
    width: 33.333%;
    padding: 0 10px;
  }
  .reservation_gallery .item:nth-child(n+3){
    margin-top: 0;
  }
  .reservation_gallery .item:nth-child(n+4){
    margin-top: 20px;
  }

}
@media (min-width:1024px){

  /* マップ */
  .reservation_map{
    margin-top: 50px;
  }
  .reservation_map iframe{
    height: 330px;
  }

  /* ギャラリー */
  .reservation_gallery{
    margin: 0 -15px;
    margin-top: 60px;
  }
  .reservation_gallery .item{
    padding: 0 15px;
  }
  .reservation_gallery .item:nth-child(n+4){
    margin-top: 30px;
  }

}
@media (min-width:1200px){

  .pg_reservation .section#sec2{
    margin-top: 100px;
  }
  .pg_reservation .section#sec2 .cmn_about{
    margin-bottom: 50px;
  }
  .pg_reservation .section#sec3{
    margin-top: 200px;
  }

}





/* **********************************
 *  料金シミュレーション
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}
.pg_xxxx .section#sec2{

}
.pg_xxxx .section#sec3{

}

/* フォーム */
.simulation_form{

}
.simulation_form .row{
  display: flex;
  flex-wrap: wrap;
  color: #181818;
}
.simulation_form .row + .row{
  margin-top: 5px;
}
.simulation_form .row .box1,
.simulation_form .row .box2{
  font-weight: 500;
  padding: 15px 15px;
}
.simulation_form .row .box1{
  width: 100%;
  background: #cccccc;
}
.simulation_form .row .box1.wide{
  width: 100%;
  text-align: center;
}
.simulation_form .row .box2{
  width: 100%;
  background: #e5e5e5;
}
.simulation_form .row .box3{
  width: 100%;
  background: #FFF;
  padding: 5px;
}
.simulation_form_list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.simulation_form_list li{
  padding: 0 5px;
}
.simulation_form_list li input[type="radio"]{
  margin-right: 8px;
}


.simulation_form_product{
  display: none;
  flex-wrap: wrap;
  padding: 10px 0;
  border: 1px dashed #262626;
}
.simulation_form_product.on{
  display: flex;
}
.simulation_form_product .item{
  width: 50%;
  padding: 0 5px;
}
.simulation_form_product .item .inner{
  display: block;
  border: 1px solid #bfbfbf;
  background: #FFF;
  height: 100%;
  padding-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.simulation_form_product .item .name{
  background: #e5e5e5;
  position: relative;
  padding: 4px 5px;
  padding-left: 28px;
  font-size: 15px;
  letter-spacing: 0;
}
.simulation_form_product .item .name input{
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.simulation_form_product .item .img{

}
.simulation_form_product .item .img.img_fit:before{
  padding-top: 100%;
}
.simulation_form_product .item .size{
  position: absolute;
  z-index: 1;
  bottom: 5px;
  right: 5px;

  font-size: 15px;
  letter-spacing: 0;

}

.simulation_form_text{

}
.simulation_form_text input{
  border: 0;
  padding: 10px;
}


/* 見積もり結果 */
.simulation_calc{
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.simulation_calc .box1{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #88a322;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  height: 60px;
  cursor: pointer;
}
.simulation_calc .box2{
  display: none;
  width: 100%;
  background: #88a322;
  border-radius: 5px;
  text-align: center;
  padding: 2px;
  margin-top: 10px;
}
.simulation_calc .box2.active{
  display: block;
}
.simulation_calc .box2 dt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.625;
  padding: 5px;
}
.simulation_calc .box2 dd{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  background: #FFF;
  color: #181818;
  padding: 5px;

}

.simulation_calc_msg{
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-top: 30px;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  .simulation_form_product .item:nth-child(n+3){
    margin-top: 10px;
  }
  .simulation_form_product .item .size{
    position: static;
    text-align: right;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }

  /* フォーム */
  .simulation_form{

  }
  .simulation_form .row{
  }
  .simulation_form .row .box1,
  .simulation_form .row .box2{
    padding: 20px 20px;
  }
  .simulation_form .row .box1{
    width: 150px;
  }
  .simulation_form .row .box2{
    width: calc(100% - 150px);
  }
  .simulation_form_list{
    margin: 0 -10px;
  }
  .simulation_form_list li{
    padding: 0 10px;
  }

  .simulation_form_product{
    padding: 20px 0;
  }
  .simulation_form_product .item{
    width: 25%;
    padding: 0 10px;
  }
  .simulation_form_product .item .inner{
  }
  .simulation_form_product .item .name{
  }
  .simulation_form_product .item .img{

  }
  .simulation_form_product .item .size{
    bottom: 5px;
    right: 5px;
  }


  /* 見積もり結果 */
  .simulation_calc{
    justify-content: space-between;
    margin-top: 40px;
  }
  .simulation_calc .box1{
    width: 55%;
    font-size: 18px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .simulation_calc .box2{
    width: 48%;
    margin-top: 0;
  }
  .simulation_calc .box2 dt{
    font-size: 16px;
    padding: 5px;
    height: 60px;
  }
  .simulation_calc .box2 dd{
    font-size: 28px;
    padding: 5px;
    height: 60px;
  }


  .simulation_calc_msg{
    font-size: 18px;
    margin-top: 30px;
  }

}
@media (min-width:1024px){

  /* フォーム */
  .simulation_form{

  }
  .simulation_form .row{
  }
  .simulation_form .row .box1,
  .simulation_form .row .box2{
    padding: 23px 36px;
  }
  .simulation_form .row .box1{
    width: 300px;
  }
  .simulation_form .row .box2{
    width: calc(100% - 300px);
    padding-left: 25px;
  }
  .simulation_form_list{
  }
  .simulation_form_list{

  }

  .simulation_form_list{
    margin: 0 -18px;
  }
  .simulation_form_list li{
    padding: 0 18px;
  }


  .simulation_form_product{
    padding: 20px 0;
  }
  .simulation_form_product .item{
    width: 25%;
    padding: 0 25px;
  }
  .simulation_form_product .item .inner{
  }
  .simulation_form_product .item .name{
  }
  .simulation_form_product .item .img{

  }
  .simulation_form_product .item .size{
    bottom: 5px;
    right: 5px;
  }

  /* 見積もり結果 */
  .simulation_calc{
    justify-content: space-between;
    margin-top: 60px;
  }
  .simulation_calc .box1{
    width: 31.53%;
    font-size: 18px;
    height: 86px;
    margin: 0;
  }
  .simulation_calc .box2{
    /*display: flex;*/
    width: 31.53%;
    margin-top: 0;
  }
  .simulation_calc .box2 dt{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 82px;
    font-size: 15px;
    padding: 5px;
  }
  .simulation_calc .box2 dd{
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 120px);
    height: 100%;
    font-size: 24px;
    padding: 5px;
  }
  .simulation_calc .box2.active{
    display: flex;
  }
}
@media (min-width:1200px){

  .simulation_form_product .item .name{
    padding-left: 35px;
  }
  .simulation_form_product .item .name input{
    left: 15px;

  }

  .simulation_form_text{
    margin: -10px 0;
  }
  .simulation_form_text input{
    width: 240px;
  }

  .simulation_calc .box2 dd{
    font-size: 28px;
  }

  .pg_slug_simulation footer{
    margin-top: 115px;
  }
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}
.pg_xxxx .section#sec2{

}
.pg_xxxx .section#sec3{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }


}
@media (min-width:1024px){



}
@media (min-width:1200px){

}

/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{

}
.pg_company .section#sec1{

}
.pg_company .section#sec2{

}
.pg_company .section#sec3{

}
.company_map{
  margin-top: 30px;
}
.company_map iframe{
  width: 100%;
  height: 250px;
}

.company_banner{
  margin-top: 30px;
}
.company_banner .row{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.company_banner .row+.row{
  margin-top: 25px;
}
.company_banner .row .box1{
  width: 100%;
  padding: 0 5px;
}
.company_banner .row .box2{
  width: 100%;
  padding: 0 5px;
}

.company_banner .links1{

}
.company_banner .links1 li+li{
  margin-top: 25px;
}

.company_banner .links2{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.company_banner .links2 li{
  width: 50%;
  padding: 0 5px;
}

.company_banner .links1 + .links2{
  margin-top: 25px;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  .company_banner .box1 + .box1{
    margin-top: 25px;
  }

}
@media (min-width:768px){

  .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 350px;
  }

  .company_banner{
    margin-top: 50px;
  }
  .company_banner .row{
    margin: 0 -10px;
  }
  .company_banner .row .box1{
    width: 50%;
    padding: 0 10px;
  }
  .company_banner .row .box2{
    width: 100%;
    padding: 0 10px;
  }


  .company_banner .links1{

  }
  .company_banner .links1 li+li{
    margin-top: 25px;
  }
  .company_banner .links2{
    margin: 0 -10px;
  }
  .company_banner .links2 li{
    width: 50%;
    padding: 0 10px;
  }
  .company_banner .links1 + .links2{
    margin-top: 25px;
  }

}
@media (min-width:1024px){

  .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 410px;
  }

  .company_banner{
    margin-top: 80px;
  }
  .company_banner .row{
    margin: 0 -15px;
  }
  .company_banner .row .box1{
    width: 50%;
    padding: 0 15px;
  }
  .company_banner .row .box2{
    width: 100%;
    padding: 0 15px;
  }

  .company_banner .links1{

  }
  .company_banner .links1 li+li{
    margin-top: 25px;
  }
  .company_banner .links2{
    margin: 0 -5px;
  }
  .company_banner .links2 li{
    width: 50%;
    padding: 0 5px;
  }
  .company_banner .links1 + .links2{
    margin-top: 25px;
  }

}
@media (min-width:1200px){

}


/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1{

}
.pg_contact .section#sec2{

}
.pg_contact .section#sec3{

}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}



/* 連絡先 */
.contact_info{
  background: #f7f7f7;
  color: #181818;
  text-align: center;
  padding: 28px 20px 25px;
  margin-bottom: 115px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  border: 1px solid #bfbfbf;
  padding: 22px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #88a322;
  color: #FFF;
  padding: 5px 18px;
  margin-right: 10px;
  vertical-align: middle;
  letter-spacing: 0.08em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  font-family: "Outfit";

  vertical-align: middle;
}
.contact_info .box2 .tel a{
  display: block;
  letter-spacing: 0.1em;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* コンタクトフォーム */
.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
  background: #FFF;
  table-layout: fixed;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 10px 15px 10px 20px;
  font-weight: 400;
  text-align: left;
  color: #181818;
}
.contact_form th{
  font-weight: 500;
  background: #f0f0f0;
  width: 310px;
  letter-spacing: 0.08em;
}
.contact_form td{
  font-size: 15px;

}
.contact_form td *{
  letter-spacing: 0.16em;
}
.contact_form th.vtop{
  vertical-align: top;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 12px;
  color: #FFF;
  background: #b80000;
  font-size: 13px;
  font-weight: 900;
  float: right;
}

/* 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 {
  padding: 7px 10px;
  max-width: 100%;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td textarea{
  height: 280px;
}
.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_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */



.contact_form_acceptance{
  font-size: 17px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 45px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}


/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 45px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: none;
  border: 1px solid #FFF;
  color: #FFF;
  padding: 10px 10px;
  width: 285px;
  margin: 0 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
.contact_form_btns button:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #FFF transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.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: 105px;
}

.privacy_tt{
  text-align: center;
  margin-bottom: 55px;
}
.privacy_tt h3{
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.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: 35px;
}
.privacy_items .item h4{
  font-size: 18px;
  font-weight: 500;
  border-left: 6px solid #88a322;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  line-height: 1.875;
  letter-spacing: 0.04em;
}
.privacy_items .item ul{

  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{
  list-style: disc;
}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


@media only screen and (max-width:1023px){

  /* **********************************
   *  
   * ********************************* */


  /* **********************************
   *  お問い合わせ
   * ********************************* */
  .contact_form th {
    width: 250px;
  }
  .contact_form td .wpcf7-text{
    width: 100%;
  }
  .contact_form td [name="zipcode"]{
    width: 90px;
  }

  .contact_form td .addr_auto{
    margin-left: 0;
  }
  .contact_info .box2 .txt{
    margin-top: 5px;
  }
}

@media only screen and (max-width:767px){

  /* **********************************
   *  お問い合わせ
   * ********************************* */
  .contact_info{
    padding: 10px;
    margin-bottom: 50px;
  }
  .contact_info .box1{
    font-size: 13px;
  }
  .contact_info .box2{
    margin-top: 10px;
  }
  .contact_info .box2 .icon{
    font-size: 15px;
  }
  .contact_info .box2 .tel{
    font-size: 24px;
  }
  .contact_info .box2 .txt{
    width: 100%;
    margin: 10px 0 0 0;
    font-size: 13px;
  }

  .contact_form th,
  .contact_form td{
    display: block;
    width: 100%;
    padding: 10px 10px;
  }
  .contact_form th{
  }
  .contact_form td{
  }
  .contact_form td [name="zipcode"]{
    width: 100px;
  }
  .contact_form dl.date dt{
    width: 100%;
  }
  .contact_form dl.date dt.wide{
    width: 100%;
  }

  .contact_form dl.date dt.m,
  .contact_form dl.date dt.d{
    width: 90px;
  }
  .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: calc(100% - 180px - 10px);
  }
  .contact_form dl.date dt.t select{
    width: calc(100% - 3.5em);
  }

  .contact_form_btns input[type="submit"],
  .contact_form_btns input[type="button"],
  .contact_form_btns button  {
    width: 48%;
    margin: 0 1%;
    font-size: 12px;
  }
  .contact_form_btns input[type="submit"]{

  }
  .contact_form_btns button {
    width: 30%;
  }


  /* **********************************
   *  プライバシーポリシー
   * ********************************* */
  .pg_contact .privacy{
    margin-top: 50px;
  }
  .privacy_tt{
    font-size: 18px;
    margin-bottom: 20px;
  }
  .privacy_tt h3{
    font-size: 18px;
  }
  .privacy_tt br{
    display: inline;
  }
  .privacy_items .item h4{
    font-size: 15px;
  }

  .privacy_items .item ul{
    margin-left: 1em;
  }


  /* クッキー同意 */
  #cookie-notice{
    min-width: 0;
    top: 50%;
    bottom: auto;
    transform: translate(0, -50%);
    left: 10px;
    right: 10px;
  }
  #cookie-notice:before{
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.9);
    z-index: -1;
  }
  #cn-close-notice{
    top: 5px;
    right: 5px;
    margin-top: 0;
  }
  #cn-notice-text{
    text-align: justify;
  }

  .cookie-notice-container{
    padding: 50px 20px 50px;
    background: rgba(50,50,58,1);
  }
  .cn-text-container{
    margin-bottom: 10px;
  }
  .cookie-notice-hidden{
    display: none;
  }

}
