@charset "utf-8";

/*
===========================================================================
  フォーマット
===========================================================================
*/
html,
body{
  height: 100%;
  margin: 0;
}
body{
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6,li,th,td,dt,dd,label,input,select,textarea,p,a,span,strong{
  color: #222;
  letter-spacing: .2px;
  line-height: 1.7;
}
ul{
  font-size: 0;
  margin: 0;
  padding-left: 0;
}
li{
  list-style-type: none;
}
li,th,td,dt,dd,label,input,select,textarea,p,a,span,strong{
  font-size: 16px;
}
a,input[type="submit"]{
  text-decoration: none;
  cursor: pointer;
  transition: .3s;
}
img{
  vertical-align: middle;
}
strong{
  font-weight: bold;
  line-height: 1;
}
/*
===========================================================================
  フォント
===========================================================================
*/
body{
  font-family: 'Spartan', 'Barlow Semi Condensed', 'Noto Sans JP', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'MS pゴシック', 'MS PGothic', sans-serif;
}
/*
===========================================================================
  レスポンシブ
===========================================================================
*/
.sp{
  display: none;
}
/*
===========================================================================
  共通コンテンツ
===========================================================================
*/
#wrapper{
  width: 100%;
}
.grecaptcha-badge{
  visibility: hidden;
}
/* ==================== ローディング ==================== */
#progress{
  display: block;
  width: 100%;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  z-index: 9999;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}
#progress .progress_start{
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
}
#progress .progress_loading{
  display: block;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: 9999;
  top: 0;
  left: 0;
}
#progress .progress_loading img{
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* ==================== コンテンツ ==================== */
.section{
  text-align: left;
  padding: 120px 0;
  position: relative;
}
.section_title h2{
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

/* ==================== 下層ページ ==================== */
#top_low{
  width: 100%;
  height: 480px;
  position: relative;
}
#top_low:before{
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, .64);
  position: absolute;
  top: 0;
  left: 0;
}
.top_low_content{
  margin-top: 40px;
  padding-left: 14.845%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.top_low_content h2,
.top_low_content p{
  color: #fff;
}
.top_low_content h2{
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}
.top_low_content p{
  display: block;
  margin: 0;
}
/* ==================== 出現アニメーション ==================== */
.fadein,
.fadein_fast,
.fadein_slow{
  opacity: 0;
  transform: translate(0, 32px);
  transition: all .5s;
}
.fadein_slow{
  transition: all .8s;
}
.fadein.active,
.fadein_fast.active,
.fadein_slow.active{
  opacity: 1;
}
.passing .passing_bar{
  display: inline-block;
	position: relative;
}
.passing .passing_bar:before{
  display: inline-block;
	width: 0;
	height: 100%;
  content: "";
  z-index: 1;
	position: absolute;
  top: 0;
	left: 0;
}
.passing .passing_bar_bl:before{
  background: #222;
}
.passing .passing_bar_wh:before{
  background: #fff;
}
.passing .passing_content{
	opacity: 0;
}
.passing.open .passing_bar:before,
.passing.move .passing_bar:before{
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  -moz-animation: passing-bar 1s ease 0s 1 normal forwards;
  -ms-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.open .passing_content,
.passing.move .passing_content{
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
  -moz-animation: passing-txt 0s ease .5s 1 normal forwards;
  -ms-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation: passing-txt 0s ease .5s 1 normal forwards;
}
/* ==================== keyframes ==================== */
@-webkit-keyframes passing-bar{
	0%{
		left: 0;
		right: auto;
		width: 0;
	}
	50%{
		left: 0;
		right: auto;
		width: 100%;
	}
	51%{
		left: auto;
		right: 0;
		width: 100%;
	}
	100%{
		left: auto;
		right: 0;
		width: 0;
	}
}
@-moz-keyframes passing-bar{
	0%{
		left: 0;
		right: auto;
		width: 0;
	}
	50%{
		left: 0;
		right: auto;
		width: 100%;
	}
	51%{
		left: auto;
		right: 0;
		width: 100%;
	}
	100%{
		left: auto;
		right: 0;
		width: 0;
	}
}
@-ms-keyframes passing-bar{
	0%{
		left: 0;
		right: auto;
		width: 0;
	}
	50%{
		left: 0;
		right: auto;
		width: 100%;
	}
	51%{
		left: auto;
		right: 0;
		width: 100%;
	}
	100%{
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0%{
		left: 0;
		width: 0;
	}
	50%{
		left: 0;
		width: 100%;
	}
	51%{
		left: 0;
		width: 100%;
	}
	100%{
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0%{
    opacity: 0;
  }
	50%{
    opacity: 0;
  }
	100%{
    opacity: 1;
  }
}
@-moz-keyframes passing-txt{
	0%{
    opacity: 0;
  }
	50%{
    opacity: 0;
  }
	100%{
    opacity: 1;
  }
}
@-ms-keyframes passing-txt{
	0%{
    opacity: 0;
  }
	50%{
    opacity: 0;
  }
	100%{
    opacity: 1;
  }
}
@keyframes passing-txt{
	0%{
    opacity: 0;
  }
	50%{
    opacity: 0;
  }
	100%{
    opacity: 1;
  }
}
@-webkit-keyframes scroll{
  0%{
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}
@-moz-keyframes scroll{
  0%{
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}
@-ms-keyframes scroll{
  0%{
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}
@keyframes scroll{
  0%{
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100%{
    -webkit-transform: translate3d(-50%, 100px, 0);
    -moz-transform: translate3d(-50%, 100px, 0);
    -ms-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}
@-webkit-keyframes arrow{
  0%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  5%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  35%{
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  40%{
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  45%{
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  75%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes arrow{
  0%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  5%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  35%{
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  40%{
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  45%{
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  75%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-ms-keyframes arrow{
  0%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  5%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  35%{
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  40%{
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  45%{
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  75%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes arrow{
  0%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  5%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  35%{
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  40%{
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  45%{
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  75%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100%{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes hover-in{
  0%{
    transform-origin: left top;
    transform: scale(0, 1);
  }
  100%{
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@-moz-keyframes hover-in{
  0%{
    transform-origin: left top;
    transform: scale(0, 1);
  }
  100%{
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@-ms-keyframes hover-in{
  0%{
    transform-origin: left top;
    transform: scale(0, 1);
  }
  100%{
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@keyframes hover-in{
  0%{
    transform-origin: left top;
    transform: scale(0, 1);
  }
  100%{
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes hover-out{
  0%{
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100%{
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@-moz-keyframes hover-out{
  0%{
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100%{
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@-ms-keyframes hover-out{
  0%{
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100%{
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@keyframes hover-out{
  0%{
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100%{
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
/*
===========================================================================
  ヘッダー
===========================================================================
*/
#header{
  width: 100%;
  height: 27px;
  text-align: center;
  padding: 64px 0 0;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
}
.header_inner{
  height: 100%;
  padding: 0 32px;
}
#header_logo,
#global_nav{
  position: absolute !important;
  top: 64px !important;
}
#header_logo{
  left: 32px;
}
/* IE10 */
@media all and (-ms-high-contrast:none){
  #header_logo{
    margin-top: 0;
  }
}
/* IE11 */
@media all and (-ms-high-contrast:none){
  #header_logo{
    margin-top: 0;
  }
}
#header_logo h1{
  line-height: 0;
  margin: 0;
}
#header_logo img{
  width: 160px;
}
#global_nav{
  right: 32px !important;
}
#global_nav .midnightInner{
  left: auto !important;
}
#global_nav ul li{
  display: inline-block;
  margin-left: 40px;
}
#global_nav ul li a{
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}
/*
#global_nav .midnightHeader.default ul li a{
  color: #fff;
}
#global_nav .midnightHeader.white ul li a{
  color: #fff;
}
#global_nav .midnightHeader.black ul li a{
  color: #111;
}
*/
#global_nav ul li a:after{
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
#global_nav ul li a:hover:after{
  transform-origin: left top;
  transform: scale(1, 1);
}
/*
===========================================================================
　MV
===========================================================================
*/
#top{
  width: 100%;
  height: 100vh;
  background: url(../img/mv_back.jpg") no-repeat 50% 50% / cover;
  position: relative;
}
#top:before{
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, .24);
  position: absolute;
  top: 0;
  left: 0;
}
.top_content{
  position: absolute;
  top: 58%;
  left: 10%;
}
.top_content h2{
  color: #fff;
  margin: 0;
}
.top_content .title_en h2{
  font-size: 64px;
  letter-spacing: 2px;
}
.top_content .title_ja h2{
  font-size: 16px;
  letter-spacing: 2px;
}
.scroll{
  width: 120px;
  height: 240px;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
}
.scroll_content{
  width: 100%;
  height: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.scroll_content p{
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-align: end;
  margin: 0;
  position: absolute;
  right: 10px;
  bottom: 130px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.arrow{
  width: 1px;
  height: 96px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, .4);
  overflow: hidden;
  position: absolute;
  right: 36px;
  bottom: 0;
}
.arrow:before{
  content: "";
  width: 1px;
  height: 96px;
  background: #fff;
  margin: 20px auto 0;
  position: absolute;
  top: -120px;
  left: 0;
  -webkit-animation: scroll 2.5s ease 0s infinite normal;
  -moz-animation: scroll 2.5s ease 0s infinite normal;
  -ms-animation: scroll 2.5s ease 0s infinite normal;
  animation: scroll 2.5s ease 0s infinite normal;
}
/*
===========================================================================
　About
===========================================================================
*/
#about{
  padding: 160px 0 80px;
  position: relative;
}
#about:after{
  display: block;
  width: 74%;
  height: 440px;
  content: "";
  background: #f2f2f2;
  z-index: -99;
  position: absolute;
  bottom: -280px;
  left: 0;
}
#about .section_title{
  margin-bottom: 100px;
}

.about_content{
  position: relative;
}
.about_content .about_img{
  width: 44.5%;
  min-width: 480px;
  height: auto;
  margin: 0 0 0 auto;
}
.about_content .about_img img{
  width: 100%;
  height: 100%;
}
.about_content .about_text{
  width: 24%;
  min-width: 360px;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about_content .about_text .title_ja p{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 6px;
  margin: 0;
}
.about_content .about_text .title_en{
  margin-top: 24px;
}
.about_content .about_text .title_en p{
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0;
}
.about_content .about_text .detail{
  margin-top: 40px;
}
.about_content .about_text .detail p{
  font-size: 13px;
  line-height: 2.2;
  margin: 0;
}
.about_content .about_back{
  width: 27.8%;
  position: absolute;
  top: 50%;
  left: 16%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about_content .about_back img{
  width: 100%;
  height: auto;
}
/*
===========================================================================
　Service
===========================================================================
*/
#service{
  padding: 120px 0 160px;
}

#service .service_content .section_title{
  width: 64%;
  position: absolute;
  left: 12%;
}

.service_list{
  position: relative;
}
.service_list:after{
  display: block;
  width: 52%;
  height: 760px;
  content: "";
  background: #f2f2f2;
  z-index: -99;
  position: absolute;
}

.service_list_title{
  right: 0;
  bottom: -120px;
}



.service_list_odd:after{
  right: 0;
  bottom: -120px;
}
.service_list_even:after{
  left: 0;
  bottom: -160px;
}
.service_list_odd{
  margin-bottom: 120px;
}
.service_list .service_img{
  width: 87.5%;
  height: auto;
}
.service_list_odd .service_img{
  margin: 0 auto 0 0;
}
.service_list_even .service_img{
  margin: 0 0 0 auto;
}
.service_list .service_img img{
  width: 100%;
  height: 100%;
}
.service_list .service_text{
  width: 62%;
  background: #fff;
  box-sizing: border-box;
  padding: 144px 19.9% 144px 6.5%;
  position: relative;
}
.service_list_odd .service_text{
  margin: -120px auto 0 0;
}
.service_list_even .service_text{
  margin: -120px 0 0 auto;
}
.service_list .service_text .service_inner_title p{
  height: 160px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .8px;
  writing-mode: vertical-rl;
  margin: 0;
  position: absolute;
}
.service_list .service_text .service_inner_content{
  margin-left: 92px;
}
.service_list .service_text .service_inner_content .title{
  margin: 0 0 40px;
}
.service_list .service_text .service_inner_content .title p{
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 4px;
  line-height: 1;
  margin: 0;
}
.service_list .service_text .service_inner_content .detail p{
  font-size: 13px;
  line-height: 2;
  margin: 0;
}
.service_list .service_back{
  width: 80.6%;
  position: absolute;
  bottom: 4%;
}
.service_list_odd .service_back{
  left: 16%;
}
.service_list_even .service_back{
  left: 6%;
}
.service_list .service_back img{
  width: 100%;
  height: auto;
}
/*
===========================================================================
　Works
===========================================================================
*/
#works{
  background: #222;
}
#works .section_title{
  position: absolute;
  padding-left: 32px;
  left: 0;
}
#works .section_title h2{
  color: #fff;
  writing-mode: vertical-rl;
}
#works .section_title h2 span{
  color: #fff;
  border: 2px solid #fff;
  margin-bottom: 20px;
}
.works_content{
  padding-left: 180px;
  position: relative;
}
.works_title{
  margin-bottom: 56px;
}
.works_title p{
  color: #fff;
}
.works_title .title{
  margin-bottom: 16px;
}
.works_title .title p{
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 0;
}
.works_title .detail p{
  font-size: 14px;
  margin: 0;
}
.works_list li{
  width: 800px;
  margin-right: 40px;
}
.works_list li a{
  display: block;
  width: 100%;
  height: 100%;
}
.works_list li a:focus{
  outline: 0;
}
.works_list li .works_img{
  width: 100%;
}
.works_list li .works_img img{
  width: 100%;
  height: auto;
}
.works_list li .works_text{
  margin-top: 40px;
}
.works_list li .works_text p.works_company{
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 4px;
}
.works_list li .works_text p.works_category{
  font-size: 13px;
  color: #ccc;
  margin: 0;
}
.works_arrow{
  position: absolute;
  top: 3px;
  right: 32px;
}
.works_arrow .slick_arrow{
  display: inline-block;
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 1px solid #666;
  border-radius: 50%;
  box-sizing: border-box;
  margin-left: 16px;
  position: relative;
  transition: .4s;
}
.works_arrow .slick_arrow:hover{
  background: #666;
}
.works_arrow .slick_arrow:after{
  width: 6px;
  height: 6px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.works_arrow .slick-prev:after{
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  -moz-transform: translate(-50%, -50%) rotate(-135deg);
  -ms-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}
.works_arrow .slick-next:after{
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
/*
===========================================================================
　Company
===========================================================================
*/
#company{
  overflow: hidden;
}
#company .section_title,
#company .company_content{
  float: left;
}
#company .section_title{
  width: 64%;
  box-sizing: border-box;
  padding-left: 12%;
}
#company .section_title h2 span{
  display: block;
  margin-bottom: 20px;
}
.company_content{
  width: 80%;
}
.company_content table{
  width: 100%;
  max-width: none;
  padding-left: 80px;
  padding-right: 80px;
}
.company_content table tr{
  display: block;
  border-bottom: 1px solid #e6e6e6;
}
.company_content table tr th,
.company_content table tr td{
  padding: 40px 0;
}
.company_content table tr:first-child th,
.company_content table tr:first-child td{
  padding: 58px 0 40px;
}
.company_content table tr th{
  width: 280px;
}
.company_content table tr td a{
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
}
.company_content table tr td a:before{
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: bold;
  margin-right: 8px;
}
/*
===========================================================================
  Contact
===========================================================================
*/
#contact{
  padding: 0;
}
#contact a{
  display: block;
  background: #222;
  padding: 160px 0;
  position: relative;
}
#contact a:before{
  content: "";
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
}
#contact a:hover:before{
  animation: hover-in .4s forwards alternate, hover-out .4s .4s forwards alternate;
}
.contact_inner{
  padding: 0 200px;
  position: relative;
}
.contact_inner h2,
.contact_inner p{
  color: #fff;
}
.contact_inner h2{
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
}
.contact_inner p{
  display: block;
  margin: 0;
}
.contact_inner .contact_btn{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 200px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact_inner .contact_btn svg .circle_front{
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  overflow: hidden;
  opacity: .5;
  position: relative;
}
.contact_inner .contact_btn svg .circle_back{
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: stroke-dashoffset 1.4s;
  -moz-transition: stroke-dashoffset 1.4s;
  -ms-transition: stroke-dashoffset 1.4s;
  transition: stroke-dashoffset 1.4s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.contact_inner .contact_btn i{
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: 72px;
  left: 74px;
}
#contact a:hover .contact_inner .contact_btn svg .circle_back{
  stroke-dashoffset: 480;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
  -moz-transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
  -ms-transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.1, 1),transform 1.4s cubic-bezier(0.4, 0, 0.1, 1);
}
#contact a:hover .contact_inner .contact_btn i{
  -webkit-animation: arrow 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: arrow 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-animation: arrow 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: arrow 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
===========================================================================
  フッター
===========================================================================
*/
#footer{
  background: #fff;
  border-top: 1px solid #f2f2f2;
  padding: 120px 160px 80px;
}
.footer_content{
  height: 22px;
  position: relative;
}
#footer_logo,
#footer_nav{
  position: absolute;
  top: 0;
}
#footer_logo{
  left: 0;
}
#footer_logo img{
  width: 160px;
}
#footer_nav{
  right: 0;
}
#footer_nav ul li{
  display: inline-block;
  margin-left: 40px;
}
#footer_nav ul li a{
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
}
#footer_nav ul li a:after{
  content: "";
  width: 100%;
  height: 2px;
  background: #222;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
#footer_nav ul li a:hover:after{
  transform-origin: left top;
  transform: scale(1, 1);
}
.copyright{
  margin-top: 96px;
}
.copyright p{
  font-size: 12px;
  color: #ccc;
  margin: 0;
}
/*
============================================================================
============================================================================
下層ページ
============================================================================
============================================================================
*/
/*
===========================================================================
  CONTACT
===========================================================================
*/
.top_low_contact{
  background: url("images/contact_low_back.jpg") no-repeat 50% 50% / cover;
}
#contact_low{
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
}
.form_group{
  text-align: left;
  margin-bottom: 32px;
}
.form_group label{
  display: block;
  margin: 0 0 12px;
}
.form_group label span.required{
  display: inline-block;
  font-size: 10px;
  color: #fff;
  background: #222;
  vertical-align: text-bottom;
  margin-left: 12px;
  padding: 2px 8px 1px;
}
.form_group input,
.form_group select,
.form_group textarea,
.submit_area input[type="submit"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  transition: .3s;
}
.form_group input,
.form_group select,
.form_group textarea{
  width: 100%;
  font-size: 16px;
  background: #f2f2f2;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
}
.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus,
.submit_area input[type="submit"]:focus{
  outline: none;
}
.form_group input,
.form_group select{
  height: 64px;
  padding: 0 16px;
}
.form_group select,
.submit_area input[type="submit"]{
  cursor: pointer;
}
.form_group textarea{
  padding: 20px 16px;
}
.form_attention{
  text-align: left;
}
.form_attention p,
.form_attention a{
  font-size: 12px;
}
.form_attention p{
  margin: 0;
}
.submit_area{
  text-align: center;
  margin-top: 48px;
}
.submit_area input[type="submit"]{
  display: inline-block;
  width: 280px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #222;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  padding: 20px 0;
}
.submit_area input[type="submit"]:hover{
  color: #222;
  background: #f2f2f2;
}
body div.wpcf7 .ajax-loader,
body div.wpcf7-response-output,
body div.wpcf7-validation-errors,
body div.wpcf7-mail-sent-ok{
  display: none !important;
}
body span.wpcf7-not-valid-tip{
  text-align: left;
}
/*
===========================================================================
  お問い合わせ完了
===========================================================================
*/
#thanks{
  width: 100%;
  height: 100vh;
  background: #222;
  position: relative;
}
.thanks_content{
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.thanks_content .main h2,
.thanks_content .main p,
.thanks_content .main p span{
  color: #fff;
}
.thanks_content .main h2{
  font-size: 24px;
  margin: 0 0 32px;
}
.thanks_content .main p{
  margin: 0;
}
.thanks_content .main p span{
  text-decoration: underline;
}
.thanks_content .button{
  margin-top: 48px;
}
.thanks_content .button a{
  display: inline-block;
  width: 280px;
  font-size: 16px;
  color: #222;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  padding: 20px 0;
}
.thanks_content .button a:hover{
  color: #fff;
  background: #666;
}
/*
===========================================================================
  Download
===========================================================================
*/
.top_low_download{
  background: url("images/download_low_back.jpg") no-repeat 50% 50% / cover;
}
.form_group .select_wrap{
  position: relative;
}
.form_group .select_wrap:after{
  content: "";
  border-top: 8px solid #111;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*
============================================================================
============================================================================
スマホレスポンシブ（〜1024px）
============================================================================
============================================================================
*/
@media screen and (max-width: 1024px){
  /*
  ==========================================================================
  　MV
  ==========================================================================
  */
  .top_content .title_en h2{
    font-size: 56px;
  }
  /*
  ===========================================================================
  　About
  ===========================================================================
  */
  .about_content .about_text{
    min-width: 320px;
    left: 10%;
  }
  .about_content .about_back{
    width: 35.2%;
    left: 12%;
  }
  /*
  ===========================================================================
  　Service
  ===========================================================================
  */
  .service_list .service_text{
    width: 80%;
    padding: 120px 19.9% 120px 6.5%;
  }
  .service_list .service_back{
    width: 87.7%;
  }
  .service_list_odd .service_back,
  .service_list_even .service_back{
    left: 8%;
  }
  /*
  ===========================================================================
  　Works
  ===========================================================================
  */
  .works_content{
    padding-left: 120px;
  }
  .works_list li{
    width: 584px;
    margin-right: 28px;
  }
  /*
  ===========================================================================
  　Company
  ===========================================================================
  */
  #company .section_title{
    padding-left: 10%;
  }
  .company_content table tr:first-child th,
  .company_content table tr:first-child td{
    padding: 0 0 40px;
  }
  .company_content table tr th{
    width: 560px;
  }
  /*
  ===========================================================================
    Contact
  ===========================================================================
  */
  .contact_inner{
    padding: 0 80px;
  }
  .contact_inner .contact_btn{
    right: 80px;
  }
  /*
  ===========================================================================
    フッター
  ===========================================================================
  */
  #footer{
    padding: 120px 80px 80px;
  }
  #footer_nav ul li{
    margin-left: 32px;
  }
}
/*
============================================================================
============================================================================
スマホレスポンシブ（〜768px）
============================================================================
============================================================================
*/
@media screen and (max-width: 768px){
  /*
  ==========================================================================
    フォーマット
  ==========================================================================
  */
  li,th,td,dt,dd,label,input,select,textarea,p,a,span,strong{
    font-size: 13px;
  }
  /*
  ==========================================================================
  　レスポンシブ
  ==========================================================================
  */
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  /*
  ==========================================================================
    共通コンテンツ
  ==========================================================================
  */
  #wrapper{
    width: 100%;
  }
  /* ==================== ローディング ==================== */
  #progress .progress_loading img{
    width: 160px;
  }
  /* ==================== コンテンツ ==================== */
  .section{
    padding: 104px 0;
  }
  .section_title h2 span{
    width: 36px;
    height: 36px;
    line-height: 40px;
  }
  /* ==================== 下層ページ ==================== */
  .top_low_content{
    padding-left: 12%;
  }
  .top_low_content h2{
    font-size: 40px;
  }
  .low_content{
    padding: 0 12%;
  }
  /*
  ==========================================================================
    ヘッダー
  ==========================================================================
  */
  #header{
    height: 24px;
    padding: 40px 0 0;
  }
  .header_inner{
    padding: 0 24px;
  }
  #header_logo{
    top: 40px !important;
  }
  #header_logo{
    left: 24px;
  }
  #header_logo img{
    width: 120px;
  }
  #menu_btn{
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 98;
    position: absolute;
    top: 28px;
    right: 16px;
  }
  #menu_btn span,
  #menu_btn span:before,
  #menu_btn span:after{
    background: #fff;
    border-radius: 50px;
    position: absolute;
    transition: .4s;
  }
  #menu_btn span{
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #menu_btn span:before,
  #menu_btn span:after{
    content: "";
    height: 100%;
    border-radius: 0;
    left: 0;
  }
  #menu_btn span:before{
    width: 26px;
    top: -9px;
  }
  #menu_btn span:after{
    width: 12px;
    bottom: -9px;
    transition: .3s;
  }
  #menu_btn.rotate span{
    background: transparent;
  }
  #menu_btn.rotate span:before,
  #menu_btn.rotate span:after{
    background: #fff;
  }
  #menu_btn.rotate span:before{
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #menu_btn.rotate span:after{
    width: 26px;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #res_nav{
    display: none;
    width: 100%;
    height: 100vh;
    background: #222;
    z-index: 97;
    position: fixed;
    top: 0;
    left: 0;
  }
  #res_nav_inner{
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    padding: 0 12%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #res_nav_inner li a{
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 16px 0;
  }
  /*
  ==========================================================================
  　MV
  ==========================================================================
  */
  .top_content{
    top: 52%;
    left: 24px;
  }
  .top_content .title_en h2{
    font-size: 46px;
    line-height: 1.3;
  }
  .top_content .title_ja h2{
    font-size: 14px;
    margin-top: 20px;
  }
  .scroll{
    display: none;
  }
  /*
  ===========================================================================
  　About
  ===========================================================================
  */
  #about{
    padding: 104px 0 0;
  }
  #about .section_title{
    margin-bottom: 40px;
  }
  #about .section_title h2 span{
    margin-right: 16px;
  }
  .about_content .about_img{
    width: 100%;
    min-width: inherit;
    box-sizing: border-box;
    padding-left: 12%;
  }
  .about_content .about_text{
    width: 100%;
    min-width: inherit;
    box-sizing: border-box;
    margin-top: 64px;
    padding: 0 24px 0 12;
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .about_content .about_text .title_ja p{
    font-size: 24px;
  }
  .about_content .about_text .title_en p{
    font-size: 10.5px;
  }
  .about_content .about_back{
    width: 74.8%;
    top: 44%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  /*
  ===========================================================================
  　Service
  ===========================================================================
  */
  #service{
    padding: 120px 0 100px;
  }
  #service .section_title{
    box-sizing: border-box;
    margin-bottom: 40px;
    padding-right: 0;
    padding-left: 12%;
    position: static;
  }
  #service .section_title h2{
    writing-mode: inherit;
  }
  #service .section_title h2 span{
    margin-right: 16px;
    margin-bottom: 0;
  }
  .service_list_odd{
    margin-bottom: 104px;
  }
  .service_list .service_img{
    width: 100%;
  }
  .service_list .service_text{
    width: 89.4%;
    padding: 80px 12% 72px;
  }
  .service_list_odd .service_text,
  .service_list_even .service_text{
    margin: -40px auto 0 0;
  }
  .service_list .service_text .service_inner_title p{
    height: auto;
    writing-mode: inherit;
    position: static;
  }
  .service_list .service_text .service_inner_content{
    margin-left: 0;
  }
  .service_list .service_text .service_inner_content .title{
    margin: 20px 0 36px;
  }
  .service_list .service_text .service_inner_content .title p{
    font-size: 20px;
    letter-spacing: 3px;
  }
  .service_list .service_back{
    width: 128%;
    bottom: 16%;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .service_list_odd .service_back,
  .service_list_even .service_back{
    left: 16%;
  }
  /*
  ===========================================================================
  　Works
  ===========================================================================
  */
  #works .section_title{
    box-sizing: border-box;
    margin-bottom: 40px;
    padding-right: 0;
    padding-left: 12%;
    position: static;
  }
  #works .section_title h2{
    writing-mode: inherit;
  }
  #works .section_title h2 span{
    margin-right: 16px;
    margin-bottom: 0;
  }
  .works_content{
    box-sizing: border-box;
    padding-left: 12%;
  }
  .works_title{
    box-sizing: border-box;
    margin-bottom: 48px;
    padding-right: 24px;
  }
  .works_title .title p{
    font-size: 20px;
    letter-spacing: 3px;
  }
  .works_title .detail p{
    font-size: 12px;
  }
  .works_list li{
    width: 100%;
    margin-bottom: 40px;
  }
  .works_list li:last-child{
    margin-bottom: 0;
  }
  .works_list li .works_text{
    margin-top: 20px;
  }
  .works_list li .works_text p.works_company{
    font-size: 14px;
  }
  .works_list li .works_text p.works_category{
    font-size: 10px;
  }
  /*
  ===========================================================================
  　Company
  ===========================================================================
  */
  #company .section_title,
  #company .company_content{
    width: 100%;
    float: none;
  }
  #company .section_title{
    box-sizing: border-box;
    margin-bottom: 20px;
    padding-left: 12%;
  }

  #company .company_content{
    box-sizing: border-box;
    padding-left: 12%;
  }
  .company_content table{
    border-collapse: collapse;
    
  }
  .company_content table tr{
    padding-right: 24px;
  }
  .company_content table tr th{
    width: 104px;
  }
  .company_content table tr th,
  .company_content table tr td{
    padding: 36px 0;
  }
  .company_content table tr:first-child th,
  .company_content table tr:first-child td{
    padding: 36px 0;
  }
  .company_content table tr th{
    vertical-align: top;
  }
  /*
  ===========================================================================
  　Contact
  ===========================================================================
  */
  #contact a{
    padding: 104px 0;
  }
  .contact_inner{
    padding: 0 40px;
  }
  .contact_inner h2{
    font-size: 28px;
  }
  .contact_inner p{
    font-style: 12px;
  }
  .contact_inner .contact_btn{
    width: 96px;
    height: 96px;
    right: 40px;
  }
  .contact_inner .contact_btn i{
    font-size: 14px;
    top: 41px;
    left: 42px;
  }
  /*
  ===========================================================================
  　フッター
  ===========================================================================
  */
  #footer{
    padding: 120px 72px 64px;
  }
  .footer_content{
    height: auto;
  }
  #footer_logo,
  #footer_nav{
    position: static;
  }
  #footer_nav{
    margin-top: 64px;
  }
  #footer_nav ul li{
    display: block;
    margin-left: 0;
  }
  #footer_nav ul li a{
    display: block;
    padding: 8px 0;
  }
  .copyright{
    margin-top: 72px;
  }
  .copyright p{
    font-size: 10px;
  }
  /*
  ============================================================================
  ============================================================================
  下層ページ
  ============================================================================
  ============================================================================
  */
  /*
  ===========================================================================
    CONTACT
  ===========================================================================
  */
  .form_group input,
  .form_group select,
  .form_group textarea{
    font-size: 13px;
  }
  .form_attention p,
  .form_attention a{
    font-size: 10px;
  }
  .submit_area input[type="submit"]{
    width: 100%;
    font-size: 13px;
  }
  /*
  ===========================================================================
    サンクスページ
  ===========================================================================
  */
  .thanks_content{
    padding: 0 12%;
  }
  .thanks_content .button a{
    width: 100%;
    font-size: 13px;
  }
}
/*
============================================================================
============================================================================
スマホレスポンシブ（〜374px）
============================================================================
============================================================================
*/
@media screen and (max-width: 374px){
  /*
  ==========================================================================
  　ファーストビュー
  ==========================================================================
  */
  .top_content .title_en h2{
    font-size: 38px;
  }
  .top_content .title_ja h2{
    font-size: 13px;
  }
  /*
  ===========================================================================
  　Company
  ===========================================================================
  */
  .company_content table tr th{
    width: 96px;
    box-sizing: border-box;
    padding: 36px 16px 36px 0;
  }
  /*
  ===========================================================================
  　Contact
  ===========================================================================
  */
  .contact_inner{
    padding: 0 28px;
  }
  .contact_inner .contact_btn{
    right: 28px;
  }
}


/*
  ===========================================================================
  　追加
  ===========================================================================
  */
.featureLite__head-inner-ttl {
  padding-top: 12px;
  padding-bottom: 54px;
  font-size: 42px;
}

.featureLite__head-inner-ttl {
  display: inline-block;
  position: relative;
  height: 100%;
}

.featureLite__head-ttl {
  border-top: 1px solid #e6e6e6;
  text-align: left;
  font-weight: 700;
  line-height: 1.4;
}

.featureLite__head-inner-ttl:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
  background-color: #222957;
  height: 4px;
}

/* =========================================
   追加・修正コード (レスポンシブ & Company調整)
   ========================================= */

/* --- PC・SP切り替えを明示的に書いておく（グローバル）--- */
.pc {
  display: block;
}
.sp {
  display: none;
}

/* 768px以下(スマホ)時の切り替え */
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/* Responsive overrides added by ChatGPT */
@media (max-width: 768px){
  .pc{display:none!important;}
  .sp{display:block!important;}
  #global_nav{display:none;}
  #header_logo img{width:120px;}
  .section{padding:60px 16px;}
}
