@charset "utf-8";
/*-------reset--------*/
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article, header, footer, aside, main, figure, figcaption, nav, section {
  display: block;
}
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:focus {
  outline: none;
}
a:hover {
  cursor: pointer;
  opacity: 0.8;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
table, td, th {
  border-collapse: collapse;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"], input[type="reset"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  vertical-align: middle;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus, input[type="reset"]::focus {
  outline-offset: -2px;
}

/*=====pc_mode=====*/
/*-----共通------*/
body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}
a {
  color: #333;
}
.tb_style {
  display: none !important;
}
.sp_style {
  display: none !important;
}
.flex {
  display: flex;
      align-items: center;
}
.flex.between {
  justify-content: space-between;
}
.flex.center{
  justify-content: center;
}
.flex.reverse {
  flex-direction: row-reverse;
}
.bold {
  font-weight: bold;
}
.fadeinUp {
  animation-name: fadein-up;
  animation-duration: 1s; /*アニメーション時間*/
  animation-timing-function: ease-out; /*アニメーションさせるイージング*/
  animation-delay: 0; /*アニメーション開始させる時間*/
  animation-iteration-count: 1; /*繰り返し回数*/
  animation-direction: normal; /*往復処理をするかどうか*/
  animation-fill-mode: backwards; /*アニメーション後のスタイル*/
}
img {
  width: 100%;
}
.content_wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.inner_wrap{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.section_padding{
  padding-top: 80px;
  padding-bottom: 80px;
}
.text_center{
  text-align: center;
}
h2.title_style{
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 1.5em;
}
h2.title_style span{
  font-size: 24px;
  color: #df2d2d;
  font-weight: bold;
font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
}

/*======header=====*/
.headernav_wrap {
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 1380px;
  z-index: 888;
  background-color: rgba(255, 255, 255, .9);
  box-shadow: 2px 2px 8px rgb(0 0 0 / 10%);
  transition: all 0.5s ease;
}

/*------header_nav------*/
#nav_toggle, .sp_nav {
  display: none;
}
.top_logo a{
  line-height: 1.3;
  align-items: center;
  margin-left: 15px;
}
.top_logo img{
  width: 70px;
  margin-right: 6px;
}
.top_logo .logo_s{
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
}
.top_logo .logo_l{
  font-size: 27px;
}
.r_nav ul{
  margin-right: .8em;
}
.r_nav li{
  margin-right: 2em;
  padding-top: .1em; 
}
.r_nav li a {
  font-size: 17px;
  display: block;
  transition: .5s;
  position: relative;
}
.r_nav li a:hover{
  opacity: 1;
}
.r_nav li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #df2d2d;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.r_nav li a:hover::after {
  transform: scale(1, 1);
}
.header_mail_btn{
  background-color: #df2d2d;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  transition: .5s;
}
.header_mail_btn:before{
  content: "";
  display: block;
  padding: 20px;
  background-image: url("../images/icon_mail.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center bottom 5px;
}
.header_mail_btn:hover{
   filter: brightness(110%); 
}

/*------main_visual------*/
.fadein {
  animation-name: fade-in;
  animation-duration: 2s; /*アニメーション時間*/
  animation-timing-function: ease-out; /*アニメーションさせるイージング*/
  animation-delay: 0; /*アニメーション開始させる時間*/
  animation-iteration-count: 1; /*繰り返し回数*/
  animation-direction: normal; /*往復処理をするかどうか*/
  animation-fill-mode: backwards; /*アニメーション後のスタイル*/
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.overlay {
	position: absolute;
	width: 100%;
	padding-bottom: 100%;
	background-color: rgba(000,000,000,.3);
/*	transform: skewx(18deg);*/
/*	transform: skewx(-0.06turn);*/
}
.header-anime {
    animation-name: header-anime;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-delay:.3s;
}
@keyframes header-anime {
	from{
		bottom: 0;
	}
	to{
		bottom: 120%;
	}
}
#vegas {
    padding-bottom: 800px;
}
.vegas-timer-progress {
  display: none;
}
.main_visual .position{
  position: relative;
}
/*メインビジュアルテキスト*/
.mainvisual_text{
  position: absolute;
  font-weight: bold;
  width: 65%;
  right: 0;
  bottom: 23%;
  text-align: right;
  padding: 2.5em 0;
  padding-right: 5em;
background: linear-gradient(90deg,rgba(0,0,0,0),rgba(40,35,35,.9));
}
.mainvisual_text .main_text{
  color: #fff;
    line-height: 1.3;
  font-size: 56px;
  letter-spacing: 3px;
  margin-bottom: .3em;
}
.mainvisual_text .main_text span.red{
  color: #ff2300;
}
.mainvisual_text .subtext{
  color: #fff;
  font-size: 18px;
}
.moveTxt {
  display: block;
  opacity:0;
}
.moveTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/*------section/about------*/
#about{
  background-image: url("../images/pic_bg1.jpg");
    background-attachment: fixed;
  background-repeat: no-repeat;
    background-position: center;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
}
#about h2{
  text-align: center;
  font-size: 30px;
  margin-bottom: 1em;
}
#about h2:before{
  content: "";
  padding: 46px;
  background-image: url("../images/top_logo.png");
  background-repeat: no-repeat;
  background-size: 75px;
  background-position: left;
}
#about .content_wrap{
  background-color:rgba(255,255,255,.7);
  border-radius: 3px;
  padding-top: 50px;
  padding-bottom: 50px;
}
#about .l_content{
  width: 68%;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}
#about .r_image{
  width: 25%;
}

/*------section/services------*/
#services{
  background-color: #eff2f2;
}
#services .content_wrap{
  background-color: #fff;
}
#services section{
  margin-top: 50px;
}
#services .title_style2{
  font-size: 20px;
  margin-bottom: .5em;
  position: relative;
  border-bottom: 3px solid #b4b4b4;
}
#services .title_style2:before {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 4.5em;
  height: 3px;
  content: "";
  background: #df2d2d;
}
#services .flex-item{
  flex: 1;
}
#machine .flex{
  align-items: flex-start;
  justify-content: space-around;
  margin-top: 60px;
  margin-bottom: 50px;
  background-image: url("../images/ill_machine.png");
  background-repeat: no-repeat;
  background-size: 240px;
  background-position: left 10% bottom 5%;
}
#machine .heading{
  text-align: center;
  margin-bottom: .3em;
}
#machine table{
  width: 90%;
  border: 1px solid #333;
  margin: 0 auto;
  margin-bottom: 50px;
  font-size: 16px;
}
#machine table tr{
  border-bottom: 1px solid #333;
}
#machine table .t_title td{
  padding: .2em;
  background-color: #e9e9e9;
  font-size: 15px;
}
#machine table td{
  border-right: 1px solid #333;
  padding: .5em;
}
#machine table td.t_third{
  text-align: center;
}
#services .photo{
  flex-wrap: wrap;
}
#services .photo p{
  width: 32%;
  margin-bottom: 10px;
}

/*------section/greeting------*/
#greeting{
  background-image: url("../images/pic_bg2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
#greeting .content_wrap{
  background-color: #fff;
  border-radius: 3px;
  padding-top: 50px;
  padding-bottom: 50px;
}
#greeting h2{
  font-size: 26px;
  color: #7f5165;
  margin-bottom: .5em;
  position: relative;
  padding: 0 65px;
  letter-spacing: .1em;
}
#greeting h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #7f5165;
}
#greeting h2 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
#greeting .l_image{
  width: 17%;
}
#greeting .r_content{
  width: 75%;
  margin-top: .5em;
}

/*------section/greeting------*/
#company .l_content{
  width: 54%;
}
#company .r_image{
  width: 40%;
  margin-left: 30px;
}
#company h3{
  font-size: 20px;
  padding-bottom: .3em;
}
#company .l_content h3{
  border-bottom: 2px solid #333;
}
#company table{
  width: 100%;
  text-align: left;
  font-size: 16px;
}
#company table tr{
  border-bottom: 1px solid #333;
}
#company table tr th{
  padding-top: .3em;
  padding-bottom: .3em;
}
#company section{
  margin-bottom: 50px;
}
#company span.small{
  font-size: 15px;
}

/*------section/contact------*/
#contact{
  background-color: #eff2f2;
}
#contact .info_tel{
  background-color: #dfe3e3;
  text-align: center;
  width: 400px;
  margin: 0 auto;
  padding: 1.2em;
  font-weight: bold;
  font-size:20px; 
  color: #404040;
  margin-bottom: 60px;
}
#contact .info_tel a{
  font-size: 26px;
  padding-bottom: .1em;
  line-height: 1.4;
  color: #374949;
  border-bottom: 2px solid #374949;
}
#contact .info_tel a span{
  font-size: 23px;
}
#formWrap{
  width: 500px;
  margin: 0 auto;
  text-align: left;
}
.contact_title{
  font-size: 26px;
  margin-bottom: 1.5em;
}
#formWrap .formTable{
  width: 100%;
  line-height: 2;
  margin-bottom: 30px;
}
#formWrap .formTable th{
  display: block;
  width: 100%;
}
#formWrap .formTable td{
  display: block;
  width: 100%;
  margin-bottom: 1em;
}
#formWrap table input{
  width: 75%;
  font-size: 16px;
  padding: .5em;
}
#formWrap table textarea{
  width: 100%;
  font-size: 16px;
  padding: .5em;
}
#formWrap .red_s{
  color: #fff;
  background-color: #db2b00;
  border-radius: 4px;
  padding: .2em .4em;
  margin-left: .5em;
  font-size: 12px;
}
#formWrap .small{
  font-size: 14px;
}
.nextprivacypolicy a{
  color: #374949;
  border-bottom: 1px solid #374949;
  padding-bottom: .2em;
}
.contact_btn input{
  margin-top: 60px;
  margin-bottom: 60px;
  background-color: #62a283;
  color: #fff;
  border-radius: 3px;
  width: 180px;
  padding: 1em;
  font-weight: bold;
  margin-right: 8px;
  margin-left: 8px;
  transition: .2s;
}
.contact_btn input:hover{
  filter: brightness(110%);
}

/*------footer------*/
footer{
  background-color: #282828;
  background-image: url("../images/ill_footer.png"),url("../images/ill_footer_cname.png");
  background-repeat: no-repeat;
  background-size: 185px,580px;
  background-position: left 15% bottom,right bottom;
  color: #fff;
  padding-bottom: 40px;
}
footer .footer_image{
  margin-bottom: 80px;
}
footer .flex{
 align-items: flex-end;
}
footer .l_content{
  margin-bottom: 30px;
}
.companyname{
  margin-bottom: 1em;
}
.companyname a{
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  transition: .5s;
}
.companyname a:before{
  content: "";
  padding: 18px 37px;
  background-image: url("../images/top_logo.png");
  background-repeat: no-repeat;
  background-size: 58px;
  background-position: left top;
}
.copyright{
  text-align: right;
  padding-right: 5em;
}
.copyright a{
  color: #fff;
  font-size: 13px;
}
/*------privacypolicy------*/
.sub_main_visual{
  background-image: url("../images/anotherpage_image.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  padding-top: 180px;
  padding-bottom: 90px;
  text-align: center;
}
.sub_main_visual h1{
  font-size: 36px;
  color: #fff;
  text-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}
#privacypolicy h2{
  font-size: 20px;
  margin-bottom: 1em;
  background-color: #EBEBEB;
}
#privacypolicy .plivacy_style{
  margin-top: 2em;
  margin-bottom: 2em;
}
#privacypolicy .plivacy_style a{
  font-weight:bold;
  color: #592537;
  border-bottom: 1px solid #592537;
  padding-bottom: .1em;
}
#privacypolicy .plivacy_style h3{
  border-bottom: 1px solid #666;
  margin-bottom: .5em;
}
@media screen and (max-width: 1000px) {
  .sub_main_visual{
  padding-top: 60px;
  padding-bottom: 50px;
}
.sub_main_visual h1{
  font-size: 28px;
}
}
@media screen and (max-width: 520px) {
  .sub_main_visual h1{
  font-size: 24px;
}
}