@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  /*font-family: 'Noto Sans', sans-serif;*/
  font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;	
  background-color: #fff;
  letter-spacing: 0.2em;
}

header {
  z-index: 9999;
  padding: 0 0 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #eb3333;
  display: flex;
  align-items: center;
  transition: all .2s ease-out;
}

header.min-header {
  padding: 0 0 0 4%;
  background-color: #333;
  opacity: 0.8;	
}

header.min-header .pc-nav a {
  color: #fff;
}

.header-logo {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1s ease-out;
  /*background-color: #fff;*/
  padding: 4px 2% 2px 2%;
  /*border-bottom-right-radius: 20px;*/
}

.header-cont {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1s ease-out;
  background-color: #eb3333;
  padding: 1.2% 2%;
  border-bottom-left-radius: 20px;
}

header.min-header .header-cont {
  border-bottom-left-radius: 0;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: 20px;
}

/*a {
  text-decoration: none;
  color: #fff;
}*/

a:hover{
	opacity: 0.7;
}

p {
  line-height: 1.6;
}

nav {
  margin: 0 auto;
}

ul {
  list-style: none;
  margin: 0;
  display: flex;
}

/*li {
  font-size: 15px;
}*/

/*.main-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	overflow: hidden;
	}*/

/*---br管理--*/
/*---スマホ時改行--*/
@media screen and (max-width: 560px) {
  .pc-br {
    display: none;
  }

  .tb-br {
    display: none;
  }

  .sp-br {
    display: block;
  }

  .sp { display:block; } .pc { display:none; }

}

/*---タブレット時改行--*/
@media screen and (min-width:561px) and (max-width: 768px) {
  .pc-br {
    display: none;
  }

  .tb-br {
    display: block;
  }

  .sp-br {
    display: none;
  }
}

/*---PC時改行--*/
@media screen and (min-width:769px) {
  .pc-br {
    display: block;
  }

  .tb-br {
    display: none;
  }

  .sp-br {
    display: none;
  }
}


/*スライド*/

.slide-img img {
  width: auto;
  /*height: 100vh;*/
  display: block;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomUp {

  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  /* 10秒かけて拡大させる */
  -webkit-animation: zoomUp 5s linear 0s;
  animation: zoomUp 5s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slide-img {
  background-size: cover;
  background-position: center center;
  /* 背景画像は中央を軸に表示させる */
  height: 880px;
  /* 600pxの高さで表示させる */
}

.slide-text01 {
    position: absolute;
    z-index: 10;
    font-size: calc(((100vw - 375px) / 85.8333) + 30px);
    color: #000;
    top: 70%;
    left: 50%;
    padding: 0 10px;
    text-align: left;
    font-weight: bold;
    /* font-family: 'Noto Sans', sans-serif; */
    background-color: #fff;
	opacity: 0.8;
	}

.slide-text02 {
    position: absolute;
    z-index: 10;
    font-size: 16px;
    color: #000;
    top: 80%;
    left: 50%;
    padding: 0 10px;
    text-align: left;
    font-weight: bold;
    /* font-family: 'Noto Sans', sans-serif; */
    background-color: #fff;
	opacity: 0.8;
}

.hero_container {
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container {
  /*margin-left: 20px;
  margin-right: 20px;*/
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-pagination {
  position: absolute;
  text-align: right;
  -webkit-transition: .3s opacity;
  -o-transition: .3s opacity;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10
}

.swiper-pagination-bullet {
  width: 60px;
  height: 6px;
  display: inline-block;
  border-radius: 0%;
  background: #C9D8E4;
  opacity: 1.0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #eb3333;
}

.swiper-container-horizontal>.swiper-pagination-bullets {
  /* pagination の位置調整 */
  bottom: -5px;
}

.swiper-container {
  /* pagination の位置調整 */
  /* padding-bottom: 30px;*/
}

.wrap {
  padding: 16px;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;

}

/* imgタグだと下に隙間ができるのでblockに。 */
.slide-img img {
  display: block;
  overflow: hidden;

}

/*スライド終わり*/

.sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .2s ease-in-out;
  }

 
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 0;
  top   : 0;
  width : 95px;
  height: 95px;
  cursor: pointer;
  text-align: center;
  border-left: 2px solid #fff;
}
.hamburger span {
 
  display: inline-block;
    transition: all .4s;
    position: absolute;	
}
.hamburger span:nth-child(1) {
  /*top: 10px;*/
	height: 2px;
    background: #fff;
    width: 30%;
    opacity: 0;
    top: 22px;
    left: 20px;
}
.hamburger span:nth-child(2) {
  /*top: 20px;*/
	top: 33%;
    left: 25%;
    text-transform: uppercase;
    color: #fff;
    font-size: 0.9rem;
}
.hamburger span:nth-child(3) {
  /*top: 30px;*/
  height: 2px;
    background: #fff;
    width: 30%;
    opacity: 0;
    top: 22px;
    left: 20px;	
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
 
  top: 38px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
	opacity: 1;
}

.hamburger.active span:nth-child(2){
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
  
	top: 50px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
	opacity: 1;
}

nav.globalMenuSp {
  position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: #333;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.globai-margin{
	padding: 10rem 0;
}

nav.globalMenuSp ul {
  /*background: #ccc;*/
  margin: 10rem auto;
  padding: 0;
  width: 100%;
  display: block;	
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  /*border-bottom: 1px solid #fff;*/
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#eb3333;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

.shortcut {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 1;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mt90 {
  margin-top: 90px;
}

.ml30 {
  margin-left: 30px;
}

.mrl30 {
  margin: 0 30px 0 30px;
}

.pt40{
	padding-top: 40px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}


.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.font18 {
  font-size: 18px;
}



section {
  overflow: hidden;
  text-align: center;
  padding: 50px 0;
}

.yellow_bg {
  background-color: #fef7d5;
}

.foot-area {
  position: relative;
}

.foot-right{
	text-align: right;
}

.foot-tel a{
	color: #000;
	font-weight: bold;
	font-size: calc(((100vw - 375px) / 193.125) + 28px);
}

.foot-tel a::before {
 content: "";
 display: inline-block;
 width: 29px;
 height: 43px;
 background-image:url("../images/common/tel_icon.png");
 background-size: contain;
 vertical-align: middle;
}

.foot-fax{
	font-weight: bold;
	font-size: calc(((100vw - 375px) / 309) + 23px);
}

/*.button-f a {
    display: block;
    position: relative;
    font-size: 17px;
    font-weight: 600;
    width: 280px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    height: 52.8px;
    line-height: 52.8px;
    cursor: pointer;
    background: #eb3333 url("../images/common/mail_icon.png") no-repeat left 30px center;
    color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    letter-spacing: 1px;
  }

  .button-f a, .button-f a:hover {
    text-decoration: none;
  }*/

.container {
    margin: 40px auto 0;
    max-width: 1460px;
    padding: 0 2rem;
    position: relative;
}


.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 7% 70px 7%;
}

.column--l {
    width: 48%;
  }

  .column--r {
    width: 48%;
  }

.column--l,
.column--r {
 /* width: 100%;*/
  position: relative;
  margin-bottom: 20px;	
}

.mail-mb {
  margin-bottom: 40px;
}

.hukidashi {
  position: absolute;
  top: -50px;
  right: 0;	
}

*, *:before, *:after {
  box-sizing: border-box;
}

.col_6 {
 width: 66.666%;
  padding: 10px;
}


.col_4 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
}

.col_4>div {
  width: 25%;
  padding: 10px;
}

.col_5 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
}

.col_5>div {
  width: 20%;
  padding: 10px;
}

.col_3 {
  width: 33.333%;
  padding: 10px;
}



.col_2 {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  /* IE10 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  /* IE10 */
	gap: 30px;
	
}

.col_2>div {
  width: 48%;
  }

/*.inner {
    width: 1040px;
   max-width: 100%;
    margin: 0 auto;
	padding: 0 1rem;
}*/

.box270{width: 270px;}

.box620{width: 620px;}

.box730{width: 730px;}

.business-list{
	display: block;
	font-size: calc(((100vw - 375px) / 386.25) + 20px);
	margin-bottom: 20px;
	line-height: 1.6;
}
.business-list li {
  list-style-type: disc;
  margin-left: 1em;
}

.recruit-text{
	font-size: calc(((100vw - 375px) / 193.125) + 16px);
	margin-bottom: 20px;
}

/*ページトップ*/
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
 /*font-size: 80%;*/
}

#page-top a {
    display: block;
    background-color: #000;
    color: #fff;
    width: 60px;
    padding: 18px 5px;
    text-align: center;
}

#page-top a:hover {
  opacity: 0.7;
  -webkit-opacity: 0.7;
}

/* footer */
footer {
  
   
}

.copyright{
	padding: 20px 0 20px;
	 background-color: #eb3333;
	text-align: center;
}

/*パンくず*/
.breadcrumbs {
  background-color: #fff;
  color: #646464;
  padding: 10px;
  font-weight: bold;
  list-style: none;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li+li:before {
  color: #646464;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  padding: 0 5px;
}

.breadcrumbs li a {
  text-decoration: none;
  color: #646464;
}

.breadcrumbs li a:hover {
  opacity: 0.7;
}

.area-ttl{
	font-size: calc(((100vw - 375px) / 257.5) + 30px);
	font-weight: bold;
	padding: 40px 5% 10px;
	}

.area-ttl-border{
	border-bottom: #eb3333 solid 5px;
	width: 310px;
}

.flex2 {
  display: flex;
  flex-wrap: wrap;
}

.col50 {
  width: 100%;
  position: relative;
}

h2 {
  font-size: 36px;
  font-weight: 700;	
  line-height: 1.5;	
  }

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;	
  }


.flex3 {
  display: flex;
  /* justify-content: center; */
  }

.flex3 p{
	padding: 5px;
}

.cp_table *, .cp_table *:before, .cp_table *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_table {
	width: 100%;
	border-collapse: collapse;
}
.cp_table th, .cp_table  td {
	padding: 10px;
	border: 1px solid #686868;
}
.cp_table th {
	width: 30%;
	text-align: left;
	background: #f1ede5;
}

/*事業内容-----------------------------------------------------*/

.page-main_b {
    background: url("../images/business/page_main.jpg") no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 80% 50%;
	height: 365px;
	position: relative;
	margin-top: 95px;
}

.page-ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 347px;
}

.message-box{
	margin: 0 auto;
	max-width: 1020px;
}

.page-message{
	margin: 40px auto;
	font-size: 24px;
    font-weight: 700;
}

.font-red{
	color:#eb3333;
}

article {
    margin: 20px auto;
    max-width: 1300px;
    position: relative;
}

.area-ttl2{
	font-size: calc(((100vw - 375px) / 257.5) + 30px);
	font-weight: bold;
	padding-bottom: 20px;
	}


.area-sub-ttl{
	font-size: calc(((100vw - 375px) / 257.5) + 30px);
	font-weight: bold;
	color: #387568;
	padding-bottom: 10px;
  padding-left: 1rem;
	}


.area-sub-ttl-dotted{
border-bottom: dotted #387568 3px;
width: 310px;	
}

.flow-box{
	padding: 40px 5%;
}

.flow-ttl{
	font-size: calc(((100vw - 375px) / 220.7143) + 20px);
	text-align: left;
	margin-bottom: 10px;
  object-fit: contain;
}

.flow-img img{
  max-width: 400px;
  width: 49%;
  margin-bottom: 20px;
}

.work-img{
	padding: 40px 0 60px;
}

.works_list{
	list-style:none;
/*デフォルトの指定解除*/
display:flex;
flex-wrap:wrap; /*要素を折り返す*/
row-gap: 30px;	
}

.works_list li{
	width : calc(100% / 3) ;
	padding: 0 5px;
}



.red-ttl{
	font-size: calc(((100vw - 375px) / 154.5) + 26px);
	padding-bottom: 20px;
	color: #eb3333;
	border-bottom: #eb3333 solid 5px;
	text-align: center;
	}


.green-dot{
	padding-bottom: 20px;
	color: #387568;
	border-bottom: #387568 dotted 2px;
	text-align: center;
	}

  .example_ttl {
    text-align: center;
    margin: 60px auto 40px;
    max-width: 80%;
  }

  .example-txt {
    display: inline-block;
    text-align-last: left;
    margin: 1em 0.5em;
    font-size: 18px;
    font-weight: 500;
  }

/*採用情報-----------------------------------------------------*/

.page-main_r {
    background: url("../images/recruit/page_main.jpg") no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 80% 50%;
	height: 530px;
	position: relative;
	margin-top: 95px;
}

.main-text-r01{
    position: absolute;
    z-index: 10;
    font-size: calc(((100vw - 375px) / 128.75) + 24px);
    color: #000;
    top: 70%;
    left: 20%;
    padding: 0 10px;
    text-align: left;
    font-weight: bold;
    /* font-family: 'Noto Sans', sans-serif; */
    background-color: #fff;
	opacity: 0.8;
	}

.main-text-r02{
    position: absolute;
    z-index: 10;
    font-size: calc(((100vw - 375px) / 128.75) + 24px);
    color: #000;
    top: 82%;
    left: 25%;
    padding: 0 10px;
    text-align: left;
    font-weight: bold;
    /* font-family: 'Noto Sans', sans-serif; */
    background-color: #fff;
	opacity: 0.8;
	}

.green-ttl{
	font-size: calc(((100vw - 375px) / 154.5) + 26px);
	padding-bottom: 20px;
	color: #387568;
	border-bottom: #387568 solid 5px;
	text-align: center;
	}

.qaContainer dt {
padding: 10px 10px 10px 35px;
border-radius: 5px;
border-bottom: dotted #accc80 3px;
text-indent: -25px;
font-size: calc(((100vw - 375px) / 386.25) + 20px);
font-weight: 600;	
}
.qaContainer dt:before {
content: "Q.";
font-weight: bold;
margin-right: 7px;
font-size: 16px;	
}
.qaContainer dd {
margin: 20px 10px 40px 35px;
text-indent: -25px;
}
.qaContainer dd:before {
content: "A.";
color: #000000;
font-weight: bold;
margin-right: 7px;
}

.qa_text {
  display: inline-block;
  border: dotted #eb3333 2px;
  padding: 1rem;
  font-weight: bold;
  border-radius: 10px;
  text-align: left;
}

.recruit-list{
	max-width: 1100px;
	margin: 40px auto;
}

.recruit-list a {
  color: #fff;
  background-color: #eb3333;
  padding: 0.5rem 0.8rem;
  border-radius: 7px;
}

/*お問い合わせ-----------------------------------------------------*/

.page-main_c {
    background: url("../images/contact/page_main.jpg") no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 80% 50%;
	height: 488px;
	position: relative;
	margin-top: 95px;
}


.required{
	color:#fff;font-size:16px;background-color:#eb3333;padding: 5px;border-radius: 5px;margin: 0 5px;
}

.Form-Item-Label {
  width: 100%;
  max-width: 220px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (min-width: 1600px) {
  
  .slide-text {
    top: 70%;
  }

}

@media (min-width: 1024px) {

 
  .pr150 {
    padding-right: 150px;
  }

  .pl150 {
    padding-left: 150px;
  }


 /* .column--l {
    width: 48%;
  }

  .column--r {
    width: 48%;
  }*/

  .col50 {
    width: 50%;
  }

  .col45 {
    width: 45%;
  }

  .col55 {
    width: 55%
  }
}



@media screen and (max-width: 1560px) {

  header.min-header {
    padding: 0 0 0 0%;
  }
  
}

@media screen and (max-width: 1200px) {
	
	.slide-text01 {
    left: 0;
    }

.slide-text02 {
    left: 0;
    }
	
	.main-text-r01{
		left: 0;
	}	

	.main-text-r02{
		left: 0;
	}
	
	.flex {
  flex-direction: column;
}

.order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .order3 {
    order: 3;
  }
  .order4 {
    order: 4;
  }	
	
	.column--l,
.column--r {
  width: 100%;
  position: relative;
  margin-bottom: 20px;	
}

}

@media screen and (max-width: 1100px) {
  header {
    /*background-color: #fff;*/
    padding: 0;
  }

  .header-logo {
    /* padding: 0 2%;*/
    max-width: 250px;
  }

  /*ハンバーガーメニュー*/
  .pc-nav {
    display: none;
  }

  .header-cont {
    display: none;
  }

 /* 
  

  h2 {
    line-height: 1.2;
    text-align: center;
  }


*/
  .swiper-pagination {
    text-align: center;
  }

 

  


  .mail-mb {
    margin-bottom: 100px;
  }



  /*.main-page-ttl {
        top: 20%;
	}*/

  .page-ttl-e {
    padding-top: 20px;
  }

  
  .pl150 {
    padding-left: 50px;
  }

  

}

@media screen and (max-width: 840px) {
  .hukidashi {
    top: 85%;
  }
	
.col_3 {
    width: 100%;
    padding: 10px;
  }	
	
.col_6 {
    width: 100%;
    padding: 10px;
  }	
	
.col_2>div {
    width: 100%;
    padding: 10px;
  }	
	
.col_5>div {
  width: 50%;
  padding: 10px;
}
	
	
h2 {
  font-size: 35px;
    }

h3 {
  font-size: 19px;
    }	
	
.page-main_c {
    background-position: 35% 50%;
    }	
	
}

@media screen and (max-width: 768px) {

  .hukidashi {
    left: 0;
    width: 90%;
  }

  

  .col_4>div {
    width: 50%;
    padding: 10px;
  }
	
h2 {
  font-size: 33px;
    }

h3 {
  font-size: 19px;
    }		

  

.cp_table {
		margin: 0;
	}
	.cp_table th, .cp_table td {
		width: 100%;
		display: block;
		border-top: none;
	}
	.cp_table tr:first-child th {
		border-top: 1px solid #686868;
	}
	
.works_list{
	row-gap: 10px;	
}	
	
/*.works_list li{
	width : 100%;
}*/	
	
.works_list li{
	width : calc(100% / 2) ;
	padding: 0 5px;
}	
	
.page-main_r {
    background-position: 50% 50%;
    height: 365px;
    }
	
.qaContainer dd {
margin: 20px 10px 20px 35px;
}	
	
}

@media screen and (max-width: 560px) {

  .hero_container {
    margin-left: 0;
    margin-right: 0;
  }

  .swiper-container {
    margin-left: 0;
    margin-right: 0;
  }

  .slide-img {
    background-size: cover;
    background-position: center center;
    /* 背景画像は中央を軸に表示させる */
    height: 100vh;
    /* 600pxの高さで表示させる */
  }

  .slide-text {
    font-size: 0.9rem;
    color: #fff;
    left: 4%;
    padding: 0;
    text-align: left;
    font-weight: bold;

  }
	
  h2 {
  font-size: 17px;
    }

h3 {
  font-size: 16px;
    }	

    .container {
      padding: 0 1rem;
  }
  


  .flex {
    padding: 20px 0;
  }


  .mail-mb {
    margin-bottom: 100px;
  }
	
	

  
	
.foot-right{
	text-align: center;
}	


 .hukidashi {
    top: 390px;
    left: 0;
    width: 100%;
}

  .col_3>div {
    width: 100%;
  }



  h3 {
    font-size: 24px;
  }

  .comp-text {
    font-size: 18px;
  }

  .guide-ttl {
    font-size: 20px;
  }

  .guide-text {
    font-size: 12px;
  }

  
 

  #topimg.common .eng {
    font-size: 30px;
    line-height: 2em;
  }

  #topimg.common .copy {
    top: 50%;
    width: 300px;
  }




  .page-ttl-e {
    padding-top: 10px;
  }

 
  .pl150 {
    padding-left: 0px;
  }
	
.page-message{
	font-size: 17px;
    }
	
#page-top {
  bottom: 73px;
  }	
	
.flex3 {
  display: block;
    }

.works_list li{
	width : calc(100% / 1) ;
}	
	

.flow-img img{
  width: 100%;
}

.col_4>div {
    width: 100%;
     }	
	
.col_5>div {
  width: 100%;
  padding: 10px;
}
	

 
}

@media screen and (max-width: 560px) {
  .Form {
    margin-top: 40px;
  }
}

.Form-Item {
  /*border-top: 1px solid #ddd;*/
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 560px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}

/*.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}*/


@media screen and (max-width: 560px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 560px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 560px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #fcfafa;
  font-size: 18px;
}

@media screen and (max-width: 560px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #fcfafa;
  font-size: 18px;
}

@media screen and (max-width: 560px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Btn {
  /*border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 20px;*/
  border: 0px;
  width: 266px;
  height: 93px;
  background: url(../images/contact/submit_bt.png) top no-repeat;
  background-size: contain;
  display: block;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 560px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    max-width: 65%;
    font-size: 16px;
  }
}

/*上からフェードイン*/
.fade-in-top {
  opacity: 0;
  animation: fadein-top 1.5s .3s ease-out forwards;
}

@keyframes fadein-top {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*下からフェードイン*/
.fade-in-bottom {
  opacity: 0;
  animation: fadein-bottom 1.5s .3s ease-out forwards;
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*左からフェードイン*/
.fade-in-left {
  opacity: 0;
  animation: fadein-left 1.5s .3s ease-out forwards;
}

@keyframes fadein-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*右からフェードイン*/
.fade-in-right {
  opacity: 0;
  animation: fadein-right 1.5s .3s ease-out forwards;
}

@keyframes fadein-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 上からフェードイン */
.slide-top {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 1s ease-out;
}

/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1s ease-out;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1s ease-out;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1s ease-out;
}