@charset "UTF-8";
/*---------------------------------------------------------
Theme Name: w4u
Theme URI: w-4-u.com
Description:
Author: frontiergate
Author URI: 
Tags: custom-header, custom-menu
Version: 20211122
Requires PHP: 7.4
---------------------------------------------------------*/

/*
.scroll-fade-up {
  background-color: #3cb371;
  height: 200px;
  margin: 500px auto;
  width: 80%;
}
*/

body {
	overflow-x: hidden;;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.gallery ul li{
  opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*==================================================
ページトップ
===================================*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#a58f70;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a::before{
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-weight: 900;
  font-size: 25px;
  color: #fff;
  top: 10px;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: auto;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	opacity: 0;/*はじめは非表示*/
	transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


/* 構造 ----------------------------
===================================*/

article {
    max-width: 1400px !important;
}

.container {
    max-width: 886px;
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
	color: #333;
}

.wideInner {
    max-width: 740px;
    margin: 0 auto;
}

/* background ---------------------
===================================*/

.bg_01 {
    background-color: #F0F0EF;
}
.bg_02 {
    background-color: #1F1F1F !important;
}
.bg_03 {
	background-color: #FFF !important;
}
.bg_04 {
	background-color: #AF906E !important;
}
.bg_05 {
	background-color: #1F1F1F !important;
}
/* レイアウト ----------------------- 
===================================*/

h2 {
    text-align: center;
    font-size: 1.8em !important;
    margin-bottom: 1.8em !important;
    letter-spacing: .2em;
}

h2.imgTtl {
    width: 35%;
    margin: 0 auto 3em;
}

h2, h3, h4 {
	color: #333;
}

h3 {
    width: 50%;
    margin-bottom: 5em;
    letter-spacing: .1em;
}

h4 {
    margin-bottom: 1.6em;
}

.shadow {
    box-shadow: 3px 3px 6px 0px rgb(0 0 0 / 10%);
}

.articleLink {
	color: #B69E84;
	text-align: right;
}

table {
	width: 100%;
}

td,
th {
    padding: 30px 0;
    border-bottom: 1px dashed #B69E84;
    text-align: left;
    vertical-align: top;
}

.jobInfo th {
	width: 25%;
}

.intro .boxWrap p,
.about p {
    margin-bottom: 0 !important;
    line-height: 2.2;
}

dl {
	display: flex;
}

dt {
	width: 15%;
	font-weight: normal;
}

dt,dd {
	padding: 8px 0;
}

/* 装飾系 --------------------------- 
===================================*/

.y_line {
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffffbc 0%) repeat scroll 0 0;
}

.b_line {
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #cce5ff 0%) repeat scroll 0 0;
}

.p_line {
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FFDFEF 0%) repeat scroll 0 0;
}
 
/* header/footer ------------------- 
===================================*/

#header_01 h1.innerLeft img,
#footer_01 .footerLogo img{
	width: 220px !important;
	height: auto !important;
}

#header_01 .globalMenu .linkBtn a {
	background-color: #a58f70 !important;
}

.copyright {
	color: #FFF !important;
}

#btmBnr {
	padding-top: 3em !important;
	padding-bottom: 0em !important;
}

/* ctabtn -------------------------
===================================*/
.button {
    max-width: 460px;
    margin: 0 auto;
}

/*
.button a{
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 15px;
    font-size: 1.6em;
    color: #AF906E;
    text-decoration: none;
    text-align: center;
    transition: .3s ease-in-out;
    width: 100%;
}

.button span {
    position: relative;
    z-index: 2;
}

.button a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #ffffff;
}

.button a::after {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 5px;
    content: '';
    width: 101%;
    height: 105%;
    border: 1px solid #AF906E;
    transition: .3s ease-in-out;
}

.button a:hover::after {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
*/

/* btnホバーアクション */
.linkBtn:hover,
.ctaBtnWrap .button:hover {
/*     background-color: rgba(173, 173, 173, 0.4) !important; */
    opacity: .7;
    transition: .3s ease-in-out;
}

/* cta------------------------------
===================================*/

.ctaWrap {
    padding: 2.4em 0 3em;
}
.ctaWrap .container {
    max-width: 660px;
    margin-bottom: 2.4em;
}
.ctaWrap .ctaTxt {
    margin: 0 auto 1.2em;
    width: 80%;
}
.ctaBtnWrap {
	padding: 2.4em 0;
}
.ctaTxt {
	max-width: 460px;
}
/* 共通 */
.block {
    padding: 5em 0 3em;
}

.boxWrap {
    margin-bottom: 5em;
}
.boxWrap:last-of-type {
    margin-bottom: 0;
}

.bnrWrap ul li p {
    margin-bottom: .5em !important;
}

/* intro ---------------------------
===================================*/

.intro .container {
    max-width: 1100px;
}
.intro .boxWrap {
    padding-top: 5em;
    padding-bottom: 5em;
}
.intro h2.imgTtl {
    width: 55%;
    margin: 2em auto 5em !important;
}
.intro .boxWrap h3 {
    width: 94%;
    margin-bottom: 2em;
}
.intro .boxWrap_01 {
    background: url(https://reqruit.108takumi.com/wp-content/uploads/2022/04/b_1_img.jpg) no-repeat;
    background-size: 60%;
    background-position-x: right;
}
.intro .boxWrap_02 {
    background: url(https://reqruit.108takumi.com/wp-content/uploads/2022/04/b_2_img.jpg) no-repeat;
    background-size: 60%;
    background-position-x: left;
}
.intro .boxWrap_03 {
    background: url(https://reqruit.108takumi.com/wp-content/uploads/2022/04/b_3_img.jpg) no-repeat;
    background-size: 60%;
    background-position-x: right;
}
.intro .boxWrap_01 .txtBox,
.intro .boxWrap_03 .txtBox {
    width: 44%;
    margin-left: 5em;
}
.intro .boxWrap_02 .txtBox {
    width: 44%;
    margin: 0 0 0 auto;
}


/* labo ---------------------------
===================================*/

/* laboratory */

.labo {
	background: url(https://reqruit.108takumi.com/wp-content/uploads/2022/04/c_bg_-takumi.png) no-repeat;
	background-size: 50%;
	background-position: right 15em;
}

.laboratory {
   padding-top: 0 !important;
}

/* gallery */
.gallery {
	padding: 6em !important;
}

/* about */
.about .box_02 {
	padding: 12em 0 6em;
	margin-top: -12em;
} 

.about .txtBox {
    margin: 4em!important;
}

/* step ----------------------------
===================================*/

.step .txtBox {
    padding-top: 3.8em;
}
.step .txtBox p {
	margin-bottom: 0 !important;
}

.step .bg_01 {
    padding: 5em 0;
    max-width: 1100px !important;
}

.step .grid2_1 {
    grid-gap: 1em 3em !important;
}

/* voice ----------------------------
===================================*/

.voice h3 {
    font-size: 1.6em !important;
    margin-bottom: 2em !important;
}

.voice .imgBox {
	margin-bottom: 3em;
}

/* attempt -------------------------
===================================*/

.attempt p {
    font-size: 1.4em !important;
    text-align: center;
    color: #B69E84;
    margin-bottom: 1.8em;
}

/* partner -------------------------
===================================*/

.partner .grid2_1 {
    grid-gap: 2em 0;
    margin-bottom: 3em;
}

.partner ul li {
	font-size: 1.1em;
	padding: 5px 0 5px 10px;
    display: flex;
    align-items: center;
}

.partner ul li::before{
    content:"■";
    color: #B69E84;
    font-size: 1.1em;
    margin-right: 5px;
}

/* flow -----------------------------
===================================*/

.flow ul {
	margin-bottom: 3em;
}

.flow ul li {
	width: 20%;
    display: flex;
    align-items: center;
}

.flow ul li::after{
    content: url(https://reqruit.108takumi.com/wp-content/uploads/2022/04/g_sankaku_pc.png);
	transform: scale(0.4);
	display: inline-block;
	margin-top: 2em;
}

.flow ul li:last-child::after {
	display: none !important;
}

/* contact -----------------------------
===================================*/

.form {
	padding: 2em;
}

.wpcf7-list-item{
	display: block;
}
/*必須の調整*/
.haveto{
	font-size:7px;
	padding:5px;
	background:#ff9393;
	color:#fff;
	border-radius:2px;
	margin-right:5px;
	position:relative;
	bottom:1px;
}
/*任意の調整*/
.any{
	font-size:7px;
	padding:5px;
	background:#93c9ff;
	color:#fff;
	border-radius:2px;
	margin-right:5px;
	position:relative;
	bottom:1px;
}

input,
textarea{
	background: #f3f3f3;
	padding: 0.5em;
}
input[type=text],
input[type=email],
input[type=tel],
textarea{
	width: 100%;
}


/*送信ボタンのデザイン変更*/
#formbtn{
	display: block;
	padding:1em 0;
	margin-top:30px;
	width:100%;
	background:#1F1F1F ;
	color:#fff;
	font-size:18px;
	font-weight:bold;	 
	border-radius:2px;
	border: none;
	text-align: center;
}
/*送信ボタンマウスホバー時*/
#formbtn:hover{
	background:#dedede;
	color:#1F1F1F ;
}


/* jobInfo -------------------------
===================================*/

.jobInfo table ul li {
	line-height: 2.2;
	text-align: justify;
}

.laboName {
	font-size: 1.2em;
	border-bottom: 1px solid #B69E84;
	padding-bottom: 1em;
    margin-bottom: 0.5em;
}

.gmap {
    position: relative;
    width: 100%;
    padding-top: 65% !important; /* = height ÷ width × 100 */
    margin-top: 1em;
}

.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grecaptcha-badge{
	display: none;
}



/*media Queries スマホ＆タブレット
---------------------------------------------------------------------------------------------------*/
@media print, screen and (max-width:  959px) {

    .ceFlex {
        display: block;
    }
    
    #btmBnr {
		padding: 0 20px !important;
	}

    .pc {
        display: none !important;
    }

    .smp {
        display: block !important;
    }
    
    article {
	   padding-bottom: 0 !important;
    }
    
    footer {
	    padding-bottom: 80px;
    }

    .sbFlex,
    .seFlex {
        display:block;
    }
    
    .grid3_1 {
	    display: grid !important;
	    grid-template-columns: 1fr !important;
	    grid-gap: 2em;
	}
	
	td, th {
		padding: 20px 0;
	}
	
	p, ul li, table th, table td, span, a {
		letter-spacing: 0;
	}
	
	#page-top {
		bottom: 100px;
	}

	.bottombtnWrap .container {
	    position: fixed;
	    width: 100%;
	    z-index: 100;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    overflow: hidden;
	    background: #1F1F1F !important;
		padding: .8em 0;
		text-align: center;
	}
	
	.bottombtnWrap img {
		max-width: 280px;
		margin: 0 auto;

	}

    /* header(ロゴ左寄せ)-----------------
    ===================================*/

    #header_01 h1 img {
        margin: 0 auto;
    }
    
    #header_01 .container {
	    padding: .3em;
    }

    #news_01 {
        padding-bottom: 5em !important;
    }


    /* contact_01 ----------------------
    ===================================*/

    #contact_01 {
        padding-bottom: 5em !important;
    }
    
/* mizukami_recruit --------------------------------------------
==========================================================*/

	h2 {
		margin-bottom: 1.6em !important;
		font-size: 1.6em !important;
	}
	
	h2.imgTtl {
		width: 70%;
	}
	
	h3 {
		width: 100%;
	}
	
	.subTtl {
		margin-bottom: 3em;
	}
	
	.boxTtl {
		margin-bottom: 1em;
	}
	
/*
	.button a {
		padding: 10px;
	}
*/

/* arrow */
	.arrow_01 {
		width: 60px;
		margin: 0 auto 3em;
	}
	
	.arrow_02 {
		width: 60px;
		margin: 0 auto 2em;
	}
/* 	cta */
	.button {
		width: 70%;
	}
	
	.ctaBtnWrap {
		padding: 2em 0;
	}
	
	.ctaWrap .ctaTxt {
		width: 100%;
	}
	
	.ctaWrap {
	    padding: 2.4em 0;
	}
	
	.ctaWrap .container {
	    margin-bottom: 2em;
	}

	
/* youtube ---------------------------
===================================*/

	.movie {
		margin: 1.6em 0;
	}

/* intro ---------------------------
===================================*/

	.intro .boxWrap_01,
	.intro .boxWrap_02,
	.intro .boxWrap_03 {
		background: none;
	}
	
	.intro .boxWrap_01 .txtBox,
	.intro .boxWrap_03 .txtBox {
		width: 100%;
		margin-left: 0;
	}
	
	.intro .boxWrap_02 .txtBox {
		width: 100%;
	}
	
	.intro .boxWrap {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	
	.intro .imgTtl {
		width: 90% !important;
		margin: 0 auto;
	}
	
	.intro .boxWrap h3 {
		width: 100%;
		margin-bottom: 1em;
	}
	
	.intro .boxWrap p,
	.about p,
	.jobInfo table ul li {
		line-height: 2;
	}
	
	.intro .txtBox {
		margin-bottom: 2em !important;
	}
	
/* labo ---------------------------
===================================*/

/* laboratory */
	.labo {
		padding-bottom: 0 !important;
		background: url(https://reqruit.108takumi.com/wp-content/uploads/2022/04/c_bg_-takumi.png) no-repeat;
		background-size: 100%;
		background-position-y: 15%;
	}
	
	.laboratory.block_01 {
		padding-top: 2em;
	}
	
	.laboratory .boxWrap {
		margin-bottom: 2em;
	}
	
	.laboratory .boxWrap:last-of-type {
		margin-bottom: 0;
	}
	
/* gallery */	
	.gallery {
		padding: 0 !important;
	}
	
	.gallery ul li:nth-child(odd) {
		padding-right: 5em;
	}
	
	.gallery ul li:nth-child(even) {
		padding-left: 5em;
	}
	
/* about */
	.about .box_02 {
		padding-bottom: 4em;
	}
	
	.aboutImg {
		margin-bottom: 2em;
	}
	
	.about .txtBox {
		margin: 0 !important;
	}
	
	.about .grid2_1 {
		grid-gap: 1.6em;
		margin-top: 2em;
	}

/* step */
	.step {
		padding-top: 1.6em;
		padding-bottom: 0 !important;
	}
	
	.step .bg_01 {
		margin-left: calc(50% - 50vw) !important;
	    margin-right: calc(50% - 50vw) !important;
	    padding-left: calc(50vw - 50%) !important;
	    padding-right: calc(50vw - 50%) !important;
	    vertical-align: middle;
	}
	
	.step .txtBox {
		padding-top: 0;
	}
	
	.step .grid2_1 {
		width: 90%;
		margin: 0 auto;
	}
	
	.step .itemBox {
		margin-bottom: 2em !important;
	}
	
	.step .itemBox:last-of-type {
		margin-bottom: 0 !important;
	}

	
/* voice ---------------------------
===================================*/	
	.voice h2.imgTtl {
		margin-bottom: 3em !important;
	}

	.voice h3 {
		font-size: 1.4em !important;
		text-align: center;
	}
	
	.voice .imgBox {
		margin-bottom: 1em;
	}

	.attempt p {
		font-size: 1.2em !important;
	}
	
	.partner ul li {
		font-size: 1em;
		padding: 0;
	}
	
	.partner .grid2_1 {
		grid-gap: 1em;
		margin-bottom: 2em;
	}

	.flow ul li {
		width: 90%;
		margin: 0 auto;
	}
	
	.flow ul li::after {
		display: none;
	}
	
	#btmBnr .grid3_1 {
		display: grid !important;
	    grid-template-columns: 1fr 1fr !important;
	    grid-gap: 1em;
	}

	#btmBnr {
		padding: 0 15px !important;
	}
	

/* form ---------------------------
===================================*/	
	
	.form th,.form td {
		 display:block!important;
		 width:100%!important;
		 border-top:none!important;
		 -webkit-box-sizing:border-box!important;
		 -moz-box-sizing:border-box!important;
		 box-sizing:border-box!important;
	}
	.form tr:first-child th{
	 	border-top:1px solid #d7d7d7!important;
	}
	/* 必須・任意のサイズ調整 */	
	.form .haveto,.form .any {	
		font-size:10px;
	}


}


/*media Queries スマホサイズ（599px）以下で適応したいCSS - スマホのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (max-width: 599px) {}