@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  /*font-family: 'A1 Mincho', 'Noto Serif JP', serif;*/
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.666;
  letter-spacing: 0.075em;
  color: #070303;
}



/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
  background: #000;
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
} 

@media (min-width:768px){
  body{
    font-size: 16px;
  }
}


.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}



a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video { 
  position: relative; 
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video, 
.responsive_video iframe, 
.responsive_video object, 
.responsive_video embed { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{
  
}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{
  
}
.tbl td{
  
}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}


.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* クッキー同意(PC/スマホ共通) */
#cookie-notice{
  background-color: rgba(237,237,237,0.9) !important;
  border-top: 1px solid #CCC;
}
.cookie-notice-container{
  color: #000000 !important;
}
#cn-notice-buttons a{
  color: #FFF !important;
  background-color: #181818 !important;
}
.cn-close-icon:before, .cn-close-icon:after{
  background-color: rgb(0,0,0);
}


/* クッキー同意(スマホ用) */
@media only screen and (max-width:767px){
  
  #cookie-notice{
    z-index: 999;
  }
  .cn-position-bottom{
    bottom: 52px !important;
  }
  .cookie-notice-container #cn-notice-text{
    font-size: 12px;
  }
  
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}
.container{
  width: 1140px;
  /*width: 1026px;*/
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}
.container_inner{
  width: calc(100% - 70px);
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


@media (min-width:768px){
  
  .container_inner{
    width: calc(100% - 120px);
  }
  
}

@media (min-width:1024px){
  
  
}

@media (min-width:1200px){
  
  .container_inner{
    width: calc(100% - 185px);
  }

}

/*
.pg_header{
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 330px;
}
*/
/* 共通のfloat ボックスとして定義しておく 
.box_l{
  float: left;
}
.box_r{
  float: right;
}*/

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */
/*
.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{
  
}
.listbox .item .date{
  
}
.listbox .item .txt{
  
}*/


.body_bg{
  position: fixed;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  filter: grayscale(0.5);
}

/* ******************************
 *　ヘッダー
 * *******************************/
header{
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  position: relative;
}
header .hdr1 .hdr_logo{
  width: 156px;
  line-height: 1;
  filter: drop-shadow(0px 0px 3px black);
}
header .hdr1 .hdr_logo h1{
  line-height: 1;
}
header .hdr1 .hdr_logo a{
  display: block;
}
header .hdr1 .hdr_logo a img{
  display: block;
}
header .hdr1 .hdr_contact{
}
header.home{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}


/* 下層ヘッダー */
.pg_header{
  position: relative;
  z-index: 0;
  margin-bottom: 0;
}
.pg_header .inner{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
.pg_header .kv{
  width: calc(100% - 95px);
  position: relative;
}
.pg_header .kv .img{
  width: calc(100% + 10px);
  height: 280px;
  position: relative;
  left: -10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pg_header .title{
  width: 95px;
  margin-left: auto;
}
.pg_header .title .tt1{
  margin-left: auto;
}
.pg_header .tt1{
  color: #FFF;
}

/* 下層ヘッダー(KVなし) */
.pg_header2{
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}
.pg_header2 .tt1{
  margin-left: auto;
}

/* メニューボタン */
.hdr_nav_btn{
  width: 50px;
  height: 12px;
  cursor: pointer;
  position: relative;
}
.hdr_nav_btn span{
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  /*transition: all 0.2s;*/
}
.hdr_nav_btn span + span{
  margin-top: 8px;
}

.hdr_nav_btn.on{
  height: 36px;
}
.hdr_nav_btn.on span{
  position: absolute;
  top: 50%;
  left: 50%;
}
.hdr_nav_btn.on span + span{
  margin-top: 0;
}
.hdr_nav_btn.on span:first-child{
  transform: translate(-50%,-50%) rotate(45deg);
}
.hdr_nav_btn.on span:last-child{
  transform: translate(-50%,-50%) rotate(-45deg);
}




/* メインビジュアル */
.mv{
  position: relative;
  height: 100vh;
  
  /*background: #000;*/
  /*background-image: url('/img/mv_sp.jpg');*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.mv:after{
  content: "";
  width: 1px;
  height: 100px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 50%;
}
.mv .mv_box{
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 6;
}
.mv .mv_cover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 5;
}
.mv .mv_bg{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 100%;
  height: 100%;
  /*opacity: 0.5;*/
}
.mv .mv_bg video{
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mv .mv_illust{
  position: absolute;
  bottom: -50px;
  left: 45%;
}

#mv_canvas {
  width: 100%;
  height: 100%;
}

/* ロゴの動き */
.mv_logo_wrap{
  position: relative;
}

/* ロゴのライン描画 */
.mv_logo_wrap:before,
.mv_logo_wrap:after{
  content: "";
  position: absolute;
  height: 1px;
  background: #111;
  z-index: 2;
  animation-duration: 2s;
}
.mv_logo_wrap:before{
  
  left: 0;
  right: 100%;
  bottom: 0;
}
.mv_logo_wrap:after{
  
  left: 10%;
  right: 90%;
  bottom: 15px;
}
.mv_logo_wrap.line_in:before{
  animation-name: line_in1;
  /*right: 0;*/
}
.mv_logo_wrap.line_in:after{
  animation-name: line_in2;
  /*right: 10%;*/
}

@keyframes line_in1{
  0%{
    left: 0;
    right: 100%;
  }
  50%{
    right: 0;
  }
  100%{
    left: 100%;
    right: 0;
  }
}
@keyframes line_in2{
  0%{
    left: 10%;
    right: 90%;
  }
  50%{
    right: 10%;
  }
  100%{
    left: 90%;
    right: 10%;
  }
}
.animation-box{
    
}

.mv_logo{
  
  -webkit-mask-image: url(/img/mv_txt.png);
    mask-image: url(/img/mv_txt.png);
    mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}
.mv_logo video{
  display: block;
  margin: 0 auto;
}
.mv_logo video.active{
  webkit-transition: opacity 1.6s cubic-bezier(.61, 0, .355, 1);
    -o-transition: opacity 1.6s cubic-bezier(.61, 0, .355, 1);
    transition: opacity 1.6s cubic-bezier(.61, 0, .355, 1);
}

.mv_logo .mv_logo_cover{
  background: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: all 2s;
}
.mv_logo.logo_in .mv_logo_cover{
  left: 100%;
}


/* ロゴ下のテキスト */
.mv_logo_txt{
  text-align: center;
  color: #c4c4c4;
  /*color: #fff;*/
  font-size: 20px;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  margin-top: 10px;
  position: relative;
}
.mv_logo_txt .mv_logo_txt_cover{
  background: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  transition: all 2s;
}
.mv_logo_txt.logo_in .mv_logo_txt_cover{
  left: 100%;
}


/* サイドバナー */
.side_banner{
  width: 30px;
  position: fixed;
  top: 25%;
  right: -30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 6;
  transition: 0.2s all;
}
.side_banner .btn{
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
}
.side_banner .img{
  width: 180px;
  max-width: none;
}

.side_banner:hover{
  width: 210px;
}
.side_banner:hover img{
  opacity: 1;
}


@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
  header{
  }
  header .hdr1 .hdr_logo{
    width: 156px;
  }
  
  /* 下層ヘッダー */
  .pg_header{
    margin-bottom: 0;
  }
  .pg_header .inner{
    height: 300px;
  }
  .pg_header .title{
    width: 100px;
  }
  .pg_header .kv{
    width: calc(100% - 100px);
    position: relative;
  }
  .pg_header .kv .img{
    width: calc(100% + 100px);
    height: 400px;
    left: -100px;
  }
  
  
  .mv{
    /*background-image: url('/img/mv.jpg');*/
    align-items: center;
  }
  .mv .mv_box{
    flex-direction: row-reverse;
    color: #FFF;
    margin-bottom: 0;
  }
  .mv .mv_box .txt1{
    font-size: 30px;
    margin-left: 30px;
    margin-right: 0;
  }
  .mv .mv_box .txt2{
    
  }
  
  /* ロゴ下のテキスト */
  .mv_logo_txt{
    font-size: 30px;
  }
  
  /* サイドバナー */
  .side_banner{
    width: 50px;
    /*top: 50%;*/
    right: -50px;
  }
  .side_banner .btn{
    left: -50px;
    width: 50px;
  }
  .side_banner .img{
    width: 300px;
  }

  .side_banner:hover{
    width: 350px;
  }
}
@media (min-width:1024px){
  
  .mv .mv_box{
    width: auto;
  }
  
  
  header .hdr1 .hdr_logo{
    width: 300px;
  }
  
  .mv .mv_box .txt1{
    font-size: 30px;
    margin-left: 30px;
  }
  .mv .mv_box .txt2{
    
  }
  
  .mv .mv_bg video{
    /*width: 100%;*/
    /*height: auto;*/
  }
  
}
@media (min-width:1200px){
  
  header{
  }
  header .hdr1 .hdr_logo{
    width: 156px;
  }
  
  /* 下層ヘッダー */
  .pg_header{
    margin-bottom: 0;
  }
  .pg_header .inner{
  }
  .pg_header .title{
    width: 115px;
  }
  .pg_header .kv{
    width: calc(100% - 115px);
    position: relative;
  }
  .pg_header .kv .img{
    width: calc(100% + 215px);
    height: 588px;
    left: -215px;
  }
  
  .mv{
    /*height: 750px;*/
  }
  .mv .mv_box .txt1{
    font-size: 38px;
    margin-left: 60px;
  }
  .mv .mv_box .txt2{
    
  }
  
  .mv .mv_bg video{
    /*width: 100%;*/
    /*height: auto;*/
  }
  
  /* サイドバナー */
  .side_banner{
    top: 50%;
  }
}



/* **********************************
 *  グローバルナビ
 * ********************************* */

.gnav_wrap{
  background: #222;
  color: #FFF;
}
.gnav_wrap .gnav_open{
  display: inline-block;
  padding: 15px 0;
  font-size: 20px;
  line-height: 1;
  width: 45px;
  text-align: center;
  position: relative;
  z-index: 6;
}

.gnav{
  /*display: none;*/
  /*background: #EEE;*/
  /*padding: 0 5px;*/
  background: #000;
  color: #000;
  position: absolute;
  top: 60px;
  left: 0px;
  right: 0px;
  z-index: 5;
  padding: 20px 15px;
  opacity: 0;
}
.gnav.active{
  display: block;
  opacity: 1;
}
.gnav > ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  position: relative;
}
.gnav > ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}

@media (max-width:767px){
  
}
@media (min-width:768px){
  .gnav{
    top: auto;
    left: 200px;
    right: 50px;
    padding: 20px 0;
    transform: translate(100%, 0);
    -webkit-transform: translate(100%, 0);
    transition: 0.2s all;
    
    
  }
  .gnav.active{
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}


/* ******************************
 *　フッター
 * *******************************/

footer{
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
}

.ftr_reserve_btn{
  text-align: center;
}


.ftr1{
  margin: 0 auto;
}
.ftr1 .box1{
  width: 100%;
}
.ftr1 .box2{
  width: 100%;
}

.ftr2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  color: #999;
  text-align: center;
}
.ftr2 .name{
  width: 100%;
}
.ftr2 .addr{
  width: 100%;
}
.ftr2 .copy{
  width: 100%;
}
.ftr2 .box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr2 .box2{
  width: 100%;
}

.ftr_links_wrap{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.ftr_links{
  
}
.ftr_links ul{
  
}
.ftr_links ul li{
  
}
.ftr_links ul li+li{
  margin-top: 8px;
}
.ftr_links ul li a{
  
}
.ftr_links ul li.sub a{
  display: flex;
  align-items: center;
}
.ftr_links ul li.sub a:before{
  content: "";
  width: 12px;
  height: 1px;
  background: #000;
  margin-right: 12px;
}

/* 住所,連絡先 */
.ftr_addr{
  
}
.ftr_tel{
  
}

/* SNSアイコン */
.ftr_icons{
  display: flex;
}
.ftr_icons li{
  
}
.ftr_icons li+li{
  margin-left: 20px;
}

/* コピーライト */
.ftr_copy{
  font-size: 14px;
  margin-top: 50px;
  text-align: center;
  color: #76706E;
}

/*
footer .ftr_logo{
  margin-bottom: 45px;
}
footer .ftr_addr{
  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{
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
footer .ftr_links li{
  padding: 0 25px;
  line-height: 1.1;
}
footer .ftr_links li+li{
  border-left: 1px solid;
}

footer .copy{
  background: #FFF;
  color: #111;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  margin-top: 60px;
}
footer .copy a{
}
*/

/*
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  width: 100%;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  text-align: center;
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #4072b3;
  color: #FFF;
  text-decoration: none;
}
*/





@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
  .ftr2 .box1{
    display: none;
  }
  
  .ftr_links_wrap{
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .ftr_links{
    margin-bottom: 20px;
  }
  .ftr_links ul li a{
    font-size: 16px;
  }
  .ftr_links ul li.sub a{
    font-size: 13px;
  }
  .ftr_links.sp_wide{
    width: 100%;
  }
  .ftr_links.sp_wide ul{
    display: flex;
    justify-content: space-between;
  }
  .ftr_links.sp_wide ul li+li{
    margin-top: 0;
  }
  
  .ftr_logo{
    text-align: center;
  }
  .ftr_logo img{
    width: 290px;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: center;
    margin-top: 30px;
  }
  .ftr_tel{
    font-size: 16px;
    text-align: center;
    margin-top: 30px;
  }
  
  .ftr_icons{
    justify-content: center;
  }
  .ftr_icons li+li {
    margin-left: 45px;
  }
}
@media (min-width:768px){
  
  .ftr1{
  }
  .ftr1 .box1{
  }
  .ftr1 .box2{
  }
  
  .ftr2{
    margin-top: 50px;
  }
  .ftr2 .box1{
    width: auto;
  }
  .ftr2 .box2{
    width: auto;
  }
  
  /* 住所,連絡先 */
  .ftr_addr{
    
  }
  .ftr_tel{
    margin-left: 30px;
  }

  /* SNSアイコン */
  .ftr_icons{
  }
  .ftr_icons li{

  }
  .ftr_icons li+li{
    margin-left: 40px;
  }

  /* コピーライト */
  .ftr_copy{
    margin-top: 50px;
    font-size: 16px;
  }
  
}
@media (min-width:1024px){
  
  footer{
    padding-top: 100px;
  }
  
  .ftr1{
  }
  .ftr1 .box1{
  }
  .ftr1 .box2{
  }
  
  .ftr2{
    margin-top: 50px;
  }
  .ftr2 .box1{
  }
  .ftr2 .box2{
  }
  
  .ftr_links ul li.sub a:before{
    width: 20px;
  }
  
  /* 住所,連絡先 */
  .ftr_addr{
    
  }
  .ftr_tel{
    margin-left: 60px;
  }

  /* SNSアイコン */
  .ftr_icons{
  }
  .ftr_icons li{

  }
  .ftr_icons li+li{
  }

  /* コピーライト */
  .ftr_copy{
  }
}
@media (min-width:1200px){
  
  .ftr1{
    width: 880px;
  }
  
}





/* 検索フォーム */
.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: #5a5a5a;
  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: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 30px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.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%);
}*/

@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){
  
  
}



/* **********************************
 *  メイン
 * ********************************* */
.main{
  position: relative;
  z-index: 1;
  background: #111;
  padding: 50px 0;
  color: #FFF;
}
.main.no_kv{
  
}

body.home .main{
  padding-top: 0;
}

/* 見出し */
.tt2{
  font-size: 28px;
  font-family: 'Outfit', sans-serif;

  text-align: center;
  margin-bottom: 30px;
}
.tt2.wh{
  color: #FFF;
}

.tt3{
  font-size: 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 2px solid;
  padding: 5px 0;
  margin-bottom: 20px;
}
.tt3.wh{
  color: #FFF;
}

/* 詳しく見る サンプル */
.read_more{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.read_more.left{
  justify-content: flex-start;
}
.read_more.right{
  justify-content: flex-end;
}
.read_more a{
  width: 250px;
  border: 2px solid;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  z-index: 1;
  color: #191919;
}
.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%);
}

.read_more a.bk{
  color: #191919;
  border: 2px solid #191919;
}
.read_more a.wh{
  color: #FFF;
  border: 2px solid #FFF;
}


.read_more a:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #191919;
  left: 0;
  right: 100%;
  transition: 0.5s all;
  z-index: -1;
}
.read_more a:hover{
  color: #FFF;
}
.read_more a.wh:hover{
  color: #191919;
}
.read_more a:hover:before{
  right: 0;
}

.read_more a.wh:before{
  background-color: #fff;
}

@keyframes btnAnime1{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@media (min-width:768px){
  
  /* 見出し */
  .tt2{
    font-size: 50px;
    margin-bottom: 60px;
  }
  .tt3{
    margin-top: 30px;
  }
  
  
  .read_more{
    margin-top: 50px;
  }
}

@media (min-width:1024px){
  
  
}

@media (min-width:1200px){
  
  /* 見出し */
  .tt2{
    font-size: 50px;
    margin-bottom: 60px;
  }
  
  
  .read_more a{
    width: 340px;
  }
}




/* **********************************
 *  Home
 * ********************************* */
.pg_home{
}
.pg_home .section{
  padding: 50px 0;
}
.pg_home .section#sec1{
  
}
.pg_home .section#sec2{
  background: #FFF;
}
.pg_home .section#sec3{
}
.pg_home .section#sec4{
  background: #FFF;
}


/* About */
.home_about_wrap{
  position: relative;
  z-index: 1;
  background-image: url('/img/about_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px 10px;
  
  transform: rotateX(-65deg) scale(1.4);
  transform-style: preserve-3d;
  /*transform-origin: 0 50% -25px;*/
  transition: 1.0s all;
  transition-delay: 0.2s;
  opacity: 0;
}
.home_about_wrap.inview{
  transform: rotateX(0deg) scale(1);
  opacity: 1;
}
.home_about_wrap:before{
  content: "";
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.home_about_wrap .video{
  position: relative;
}
.home_about_wrap .video video{
  width: 100%;
  height: auto;
}
.home_about_wrap .video .title{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home_about_wrap .box{
  
  position: relative;
  z-index: 3;
/*  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
}
.home_about_wrap .title{
  position: relative;
  color: #FFF;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.home_about_wrap .title_num{
  font-size: 6em;
  /*letter-spacing: 0.2em;*/
  line-height: 1;
  opacity: 0.5;
}
.home_about_wrap .title_txt{
  font-size: 1em;
  letter-spacing: 0.2em;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home_about_wrap .txt{
  color: #FFF;
  line-height: 2;
}
.home_about_wrap .read_more{
  
}

.home_about_wrap .youtube{
  position: absolute;
  /*inset: 0 0 0 0;*/
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.home_about_wrap .youtube iframe{
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 385%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: none;
}

/* Works */
.home_works_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_works_items .item{
  width: 50%;
  padding: 0 5px;
}
.home_works_items .item .inner{
  display: block;
  text-align: center;
  text-decoration: none;
}

.home_works_items .item .img{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.2s ;
}
.home_works_items .item .inner:hover .img{
  opacity: 0.8;
}
.home_works_items .item .img:before{
  content: "";
  display: block;
  padding-top: 65.7%;
}
.home_works_items .item .title{
  margin-top: 10px;
}
.home_works_items .item .category{
  margin-top: 10px;
  font-size: 12px;
}

.home_works_item{
  width: 40vw;
}
.home_works_item .inner{
  display: block;
  text-align: center;
  text-decoration: none;
}

.home_works_item .img{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.2s ;
}
.home_works_item .inner:hover .img{
  opacity: 0.8;
}
.home_works_item .img:before{
  content: "";
  display: block;
  padding-top: 65.7%;
}
.home_works_item .title{
  margin-top: 10px;
}
.home_works_item .category{
  margin-top: 10px;
  font-size: 12px;
}

/* NEWSレイアウト */
.home_news_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_news_layout .layout_left{
  width: 100%;
}
.home_news_layout .layout_right{
  width: 100%;
  
}
.home_news_layout .layout_row{
  
}
.home_news_layout .layout_row + .layout_row{
  margin-top: 30px;
}

/* Media */
.home_media_items{
  color: #FFF;
}
.home_media_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_media_items .item{
  width: 50%;
  padding: 0 5px;
}
.home_media_items .item .inner{
  display: block;
  text-align: center;
  text-decoration: none;
}

.home_media_items .item .img{
  background-position: center;
  background-repeat: no-repeat;
  /*background-size: contain;*/
  background-size: cover;
  transition: all 0.2s ;
}
.home_media_items .item .inner:hover .img{
  opacity: 0.8;
}
.home_media_items .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.home_media_items .item .title{
  margin-top: 10px;
}
.home_media_items .item .category{
  margin-top: 10px;
  font-size: 12px;
}

/* TOPICS */
.home_news_items{
  
}
.home_news_items .item{
  
  color: #FFF;
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.home_news_items .item:nth-child(n+2){
  
}
.home_news_items .item .inner{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.home_news_items .item .date{
  width: 100%;
}
.home_news_items .item .title{
  width: 100%;
}

/* リンク */
.home_btn_links{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  position: relative;
  z-index: 1;
}
.home_btn_links .item{
  padding: 5px 5px;
}
.home_btn_links .item.w14{
  width: 33.333%;
}
.home_btn_links .item.w16{
  width: 33.333%;
}
.home_btn_links .item.w50{
  width: 50%;
}
.home_btn_links .item.w100{
  width: 100%;
}
.home_btn_links .item a{
  display: block;
  color: #FFF;
  border: 1px solid #333;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  position: relative;
}
.home_btn_links .item a i{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.5;
  font-size: 4em;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.home_btn_links .item a:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #FFF;
  left: 0;
  right: 100%;
  transition: 0.5s all;
  z-index: -1;
}

.home_btn_links .item a:hover{
  color: #191919;
}
.home_btn_links .item a:hover:before{
  right: 0;
}

.home_btn_links .item a.hv_wh:before{
  /*background: #FFF;*/
}

.home_btn_links .item a.lg{
  font-size: 16px;
}

/* Contact */
.home_contact_msg{
  text-align: center;
  margin-bottom: 30px;
}
.home_contact_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #191919;
  color: #FFF;
  padding: 20px;
  position: relative;
}
.home_contact_wrap .box1{
  width: 100%;
}
.home_contact_wrap .box2{
  width: 100%;
}

.home_contact_wrap .company_name{
  font-size: 16px;
  margin-bottom: 20px;
}
.home_contact_wrap .company_name .en{
  font-size: 3em;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.home_contact_wrap .company_name .ja{
  font-size: 1em;
}
.home_contact_wrap .info{
  
}
.home_contact_wrap .info .info_row{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_contact_wrap .info .info_row + .info_row{
  margin-top: 20px;
}
.home_contact_wrap .info .icon{
  width: 60px;
  height: 60px;
  border: 1px solid #333;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_contact_wrap .info .icon i{
  font-size: 20px;
}
.home_contact_wrap .info .data{
  width: calc(100% - 60px - 10px);
}
.home_contact_wrap .info .addr{
  
}
.home_contact_wrap .info .addr .txt1{
  
}
.home_contact_wrap .info .addr .txt2{
  
}
.home_contact_wrap .info .tel{
  
}
.home_contact_wrap .info .tel .txt1{
  
}
.home_contact_wrap .info .tel .txt2{
  
}

.home_contact_wrap .btn_row + .btn_row{
  margin-top: 20px;
}


@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
  .home_about_wrap .box{
    margin-top: 15px;
  }
  
  .home_works_items .item:nth-child(n+3){
    margin-top: 20px;
  }
  .home_media_items .item:nth-child(n+3){
    margin-top: 20px;
  }
  
  .home_news_layout .layout_right{
    margin-top: 30px;
  }
  
  .home_media_items .item:nth-child(n+3){
    margin-top: 20px;
  }
}
@media (min-width:768px){
  
  .pg_home{
    /*padding-top: 100px;*/
  }
  .pg_home .section{
    padding: 100px 0;
  }
  .pg_home .section#sec1{

  }
  .pg_home .section#sec2{
  }
  .pg_home .section#sec3{
  }
  .pg_home .section#sec4{
  }
  
  /* About */
  .home_about_wrap{
    width: 100%;
    padding: 50px 20px;
  }
  .home_about_wrap .video{

  }
  .home_about_wrap .video video{
  }
  .home_about_wrap .box{
    /*position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
    
  }
  .home_about_wrap .title{
    font-size: 24px;
  }
  .home_about_wrap .title_num{
  }
  .home_about_wrap .title_txt{
  }
  .home_about_wrap .txt{
    text-align: center;
  }
  .home_about_wrap .read_more{

  }
  
  .home_about_wrap .youtube iframe{
    height: 150%;
  }
  
  /* Works */
  .home_works_items{
    margin: 0 -10px;
  }
  .home_works_items .item{
    width: 33.333%;
    padding: 0 10px;
  }
  .home_works_items .item:nth-child(n+4){
    margin-top: 20px;
  }
  .home_works_items .item .inner{
  }
  .home_works_items .item .img{
  }
  .home_works_items .item .title{
    margin-top: 10px;
  }
  .home_works_items .item .category{
    margin-top: 5px;
    font-size: 12px;
  }
  
  /* NEWSレイアウト */
  .home_news_layout{
  }
  .home_news_layout .layout_left{
    width: 72%;
  }
  .home_news_layout .layout_right{
    width: 22%;

  }
  .home_news_layout .layout_row{

  }
  .home_news_layout .layout_row + .layout_row{
    margin-top: 50px;
  }
  
  /* Media */
  .home_media_items{
    margin: 0 -5px;
  }
  .home_media_items .item{
    width: 25%;
    padding: 0 5px;
  }
  .home_media_items .item:nth-child(n+5){
    margin-top: 20px;
  }
  .home_media_items .item .inner{
  }

  .home_media_items .item .img{
  }
  .home_media_items .item .title{
    margin-top: 10px;
  }
  .home_media_items .item .category{
    margin-top: 10px;
    font-size: 12px;
  }
  
  /* TOPICS */
  .home_news_items{

  }
  .home_news_items .item{
    padding: 10px 0;
  }
  .home_news_items .item:nth-child(n+2){

  }
  .home_news_items .item .inner{
  }
  .home_news_items .item .date{
    width: 100px;
  }
  .home_news_items .item .title{
    width: calc(100% - 100px);
  }
  
  /* リンク */
  .home_btn_links .item.w14{
    width: 14.2857%;
  }
  .home_btn_links .item.w16{
    width: 16.666%;
  }
  .home_btn_links .item a.lg{
    font-size: 18px;
  }
  
  /* Contact */
  .home_contact_msg{
  }
  .home_contact_wrap{
    padding: 20px;
  }
  .home_contact_wrap .box1{
    width: 55%;
  }
  .home_contact_wrap .box2{
    width: 42%;
  }

  .home_contact_wrap .company_name{
    font-size: 18px;
  }
  .home_contact_wrap .company_name .en{
  }
  .home_contact_wrap .company_name .ja{
  }
  .home_contact_wrap .info{
    font-size: 14px;
  }
  .home_contact_wrap .info .info_row{

  }
  .home_contact_wrap .info .info_row + .info_row{

  }
  .home_contact_wrap .info .icon{
    width: 80px;
    height: 80px;
  }
  .home_contact_wrap .info .icon i{
    font-size: 20px;
  }
  .home_contact_wrap .info .data{
    width: calc(100% - 80px - 10px);
  }
  .home_contact_wrap .info .addr{

  }
  .home_contact_wrap .info .addr .txt1{

  }
  .home_contact_wrap .info .addr .txt2{

  }
  .home_contact_wrap .info .tel{

  }
  .home_contact_wrap .info .tel .txt1{

  }
  .home_contact_wrap .info .tel .txt2{

  }

}
@media (min-width:1024px){
  
}
@media (min-width:1200px){
  
  .pg_home{
    /*padding-top: 185px;*/
  }
  
  .pg_home .section#sec1{

  }
  .pg_home .section#sec2{
  }
  .pg_home .section#sec3{
  }
  .pg_home .section#sec4{
  }
  
 
  /* About */
  .home_about_wrap{
    width: 1150px;
  }
  .home_about_wrap .video{

  }
  .home_about_wrap .video video{
  }
  .home_about_wrap .box{
  }
  .home_about_wrap .title{
    font-size: 40px;
  }
  .home_about_wrap .title_num{
  }
  .home_about_wrap .title_txt{
  }
  .home_about_wrap .txt{
  }
  .home_about_wrap .read_more{

  }
  
  /* Works */
  .home_works_items{
    margin: 0 -15px;
  }
  .home_works_items .item{
    width: 33.333%;
    padding: 0 15px;
  }
  .home_works_items .item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_works_items .item .inner{
  }
  .home_works_items .item .img{
  }
  .home_works_items .item .title{
    margin-top: 10px;
  }
  .home_works_items .item .category{
    margin-top: 5px;
    font-size: 13px;
  }
  
  .home_works_item{
    width: 30vw;
  }
  
  /* Media */
  .home_media_items{
    margin: 0 -5px;
  }
  .home_media_items .item{
    width: 25%;
    padding: 0 5px;
  }
  .home_media_items .item:nth-child(n+5){
    margin-top: 30px;
  }
  .home_media_items .item .inner{
  }

  .home_media_items .item .img{
  }
  .home_media_items .item .title{
    margin-top: 10px;
  }
  .home_media_items .item .category{
    margin-top: 10px;
    font-size: 12px;
  }
  
  /* Contact */
  .home_contact_msg{
  }
  .home_contact_wrap{
    padding: 50px;
  }
  .home_contact_wrap .box1{
    width: 55%;
  }
  .home_contact_wrap .box2{
    width: 42%;
  }

  .home_contact_wrap .company_name{
    font-size: 18px;
  }
  .home_contact_wrap .company_name .en{
  }
  .home_contact_wrap .company_name .ja{
  }
  .home_contact_wrap .info{

  }
  .home_contact_wrap .info .info_row{

  }
  .home_contact_wrap .info .info_row + .info_row{

  }
  .home_contact_wrap .info .icon{

  }
  .home_contact_wrap .info .data{

  }
  .home_contact_wrap .info .addr{

  }
  .home_contact_wrap .info .addr .txt1{

  }
  .home_contact_wrap .info .addr .txt2{

  }
  .home_contact_wrap .info .tel{

  }
  .home_contact_wrap .info .tel .txt1{

  }
  .home_contact_wrap .info .tel .txt2{

  }
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}




/* ******************************
 *　
 * *******************************/
.pg_xxx{
  
}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}


/* コピー用 */
@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  
  
}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){
  
  
}


/* ******************************
 *　
 * *******************************/
.pg_xxx{
  
}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}


/* コピー用 */
@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  
  
}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){
  
  
}


/* ******************************
 *　
 * *******************************/
.pg_xxx{
  
}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}

.privacy_tt{
  text-align: center;
  margin-bottom: 20px;
}
.privacy_items{
  
}
.privacy_items .item{
  
}
.privacy_items .item + .item{
  margin-top: 30px;
}
.privacy_items .item h4{
  margin-bottom: 5px;
  border-left: 5px solid #FFF;
  line-height: 1.4;
  padding: 0 0 2px 10px;
  
}
.privacy_items .item .txt{
  
}


/* コピー用 */
@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  
  
}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){
  
  
}


/* ******************************
 *　
 * *******************************/
.pg_xxx{
  
}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}


/* コピー用 */
@media (max-width:374px){
  
}
@media (min-width:375px){
  
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  
  
}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){
  
  
}
