@charset "UTF-8";
/**********************************************************************
				RESET
**********************************************************************/
* { font-family: "Noto Sans Japanese", "qMmpS Pro W3", "Hiragino Kaku Gothic Pro", Osaka, CI, Meiryo, "lr oSVbN", "MS P Gothic", Verdana, sans-serif;}
html, body { width: 100%; height: 100%;}
/*-- RESET STYLE --*/
html,body,div,span,
applet,object,iframe,
h2,h1,h2,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,font,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
dd,dl,dt,li,ol,ul,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	}
table {
	border-collapse: collapse;
	border-spacing: 0;
	}
ol,ul,li {
	list-style: none;
	}
q:before,q:after,
blockquote:before,blockquote:after {
	content: "";
	}
h2,h1,h2,h4,h5,h6,strong,h2 em,h1 em, h2 em,h4 em,h5 em,h6 em,strong em,h2 a,h1 a,h2 a,h4 a,h5 a,h6 a {
	font-weight: bold;
	}
        
* {
	box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
}
button:focus { outline: none;}
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border: 0;
}
input:focus,
textarea:focus,
select:focus { outline: none;}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #4e4e4e inset;
    -webkit-text-fill-color: #fff;
}
input::placeholder { color: #ababab;}
select { cursor: pointer;}
/* clear */
ul:after,
ol:after {
    content: ".";
    clear: both;
    display: block;
    font-size: 0.1em;
    height: 0.1px;
    line-height: 0;
    visibility: hidden;
    width: 0.1px;
} 
.clear { clear:both;}
/* forIE clear */
.clear {
    clear: both;
    height: 0.1px;
    margin: 0px;
    padding: 0px;
    width: 0.1px;
}
a img,
a:hover img { backface-visibility: hidden; zoom: 1;}
button {
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}
/**********************************************************************
				BASE
**********************************************************************/
* { font-family: "Sawarabi Gothic", "Noto Sans Japanese", "qMmpS Pro W3", "Hiragino Kaku Gothic Pro", Osaka, CI, Meiryo, "lr oSVbN", "MS P Gothic", Verdana, sans-serif;}
body {
    background-color: #fff;
    color: #000;
    font-size: 14px;
    line-height: 25px;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-weight: normal;}
img { width: 100%; height: auto; display: block;}
.floatL { float: left; left: 0;}
.floatR { float: right; right: 0;}
.PCnone { display: none!important;}
/*-- TEXT SIZE --*/
.fontS { font-size: 12px;}
.fontM { font-size: 16px; letter-spacing: 0;}
.fontL { font-size: 33px; letter-spacing: 0.1rem;}
/*-- TEXT STYLE --*/
.fontJP { font-family: "Sawarabi Gothic", serif;}
.fontEN { font-family: 'Fjalla One', sans-serif;}
.fontNM {  font-family: "Sawarabi Gothic", "Noto Sans Japanese", "qMmpS Pro W3", "Hiragino Kaku Gothic Pro", Osaka, CI, Meiryo, "lr oSVbN", "MS P Gothic", Verdana, sans-serif;}
.bld { font-weight: bold;}
/*-- TEXT ALIGN --*/
.textL { text-align: left!important;}
.textR { text-align: right!important;}
.textC { text-align: center!important;}
/*-- TEXT COLOR --*/
.clrWH { color: #fff;}
.clrNV { color: #3a4567;}
.clrR { color: #e73828;}
/*-- ANIMATION --*/
.fade, a img, input[type="submit"] {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
/*-- LINK --*/
a { color: #000; text-decoration: none; outline: none!important;}
.txtLink { text-decoration: underline;}
.button {
    background-color: #3a4567;
    color: #fff;
    font-size: 20px;
    font-family: "Sawarabi Gothic", serif;
    letter-spacing: 0.1rem;
    display: inline-block;
    padding: 15px 55px 15px 35px;
    background-image: url('../images/recruit/arrowR.svg');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center right 25px;
    margin: 50px 0 0;
    transition: .3s;
}
.button:hover { background-color: #55679c; background-position: center right 20px;}
.button.red { background-color: #d32b1a;}
.button.red:hover { background-color: #f55f50;}
.button.white { background-color: #0000003d; border: 1px #fff solid;}
.button.white:hover { background-color: #0000003d; border: 1px #fff solid;}
.button.bottom { background-image: url('../images/recruit/arrowB.svg');}
.button.bottom:hover { background-position: center right 25px;}

/**********************************************************************
				INTRO ANIMATION
**********************************************************************/
#intro {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    background-color: #fff;
    display: table;
    opacity: 1;
	animation: introOut 0.5s ease-in alternate forwards;
	-webkit-animation:introOut 1s ease-in 1s forwards;
	-o-animation:introOut 0.5s ease-in 1s forwards;
	animation:introOut 0.5s ease-in 1s forwards;
}
@keyframes introOut {
      0% { opacity: 1; visibility:visible;}
      100% { opacity: 0; visibility:hidden;}
}
@-moz-keyframes introOut {
      from { opacity: 1; visibility:visible;}
      to { opacity: 0; visibility:hidden;}
}
@-webkit-keyframes introOut {
      from { opacity: 1; visibility:visible;}
      to { opacity: 0; visibility:hidden;}
}
.centerText {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
}
.centerText .logo { width: 150px; position: absolute; top: 50%; left: 50%; margin-left: -75px; margin-top: -100px;}
#svg-animation .st0{
    fill:none;
    stroke:#FFFFFF;
    stroke-width:15;
    stroke-miterlimit:10;
    stroke-dasharray: 1500;
    stroke-dashoffset:1500;
}
#svg-animation{
    width: 450px;
    height: auto;
}
/**********************************************************************
				HEADER
**********************************************************************/
header {
    position: fixed;
    z-index: 9998;
    width: 100%;
    height: 150px;
    padding: 30px 0 20px 50px;
    background-color: transparent;
    transition: .3s;
}
header.is-animation {
    width: 100%;
    height: 80px;
    background-color: #fff;
    padding: 20px 0 20px 20px;
}
header h1 {
	width: 100px;
	height: 100%;
	background-image: url('../images/recruit/headLogo.svg');
	background-position: center left;
	background-size: auto 100%;
	background-repeat: no-repeat;
	float: left;
	}
header.is-animation h1 { width: 250px; background-image: url('../images/recruit/headLogoR.svg');}
#toggle { display: none;}
#menu-box {
    width: calc(100% - 300px);
    float: right;
    text-align: right;
}
#menu { width: 100%; text-align: right;}
header.is-animation #menu { margin-top: -8px;}
#menu li {
    display: inline-block;
    width: auto;
    margin: 0 7px;
}
#menu li a {
    display: block;
    padding: 5px;
    color: #FFF;
    font-size: 16px;
    font-family: "Sawarabi Gothic", serif;
}
header.is-animation #menu li a { color: #000;}
#menu li.entry { margin: 0 0 0 30px;}
#menu li.entry a {
    background-color: #d32b1a;
    padding: 15px 60px 15px 35px;
    font-size: 20px;
    letter-spacing: 0.1rem;
    background-image: url('../images/recruit/arrowB.svg');
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center right 25px;
}
header.is-animation #menu li.entry a { color: #fff;}
/**********************************************************************
				FOOTER
**********************************************************************/
footer { background-color: #3a4567; padding: 40px 0; color: #fff; position: relative; z-index: 8000;}
footer .copy { float: left;}
footer .link { float: right; text-align: right;}
footer .link a { display: inline-block; text-decoration: underline; color: #fff; margin-left: 30px;}
#PageTopBtn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
}
#PageTopBtn a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #d32b1a;
    background-image: url('../images/recruit/btn-pagetop.svg');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: center center;
    opacity: 0;
}
#PageTopBtn.show-pagetopBtn a { opacity: 1;}
/**********************************************************************
				TOP
**********************************************************************/
/*--------- wiฎๆ ---------*/
.background {
  background-size: cover;
  position: fixed;
  z-index: -2;
  min-width: 120vw;
  min-height: 120vh;
  margin: 0 auto;
}
.background .background-wrap {
  position: relative;
  top: -10vh;
  left: -10vw;
  z-index: -1;
  min-width: 120vw;
  min-height: 120vh;
  overflow: hidden;
}
.background .background-wrap .background-movie {
  position: relative;
  display: flex;
  justify-content: center;
}
.background .background-wrap #background-movie-player {
  min-width: 120vw;
  min-height: 120vh;
  flex: none;
}
/*--------- XN[Aj[V ---------*/
.topDeco { position: fixed; z-index: 100; width: 100%; height: 100vh;}
.topDeco .leftSide {
    position: absolute;
    font-size: 18px;
    letter-spacing: 0.1rem;
    text-align: center;
    transform: rotate(270deg);
    width: 250px;
    height: 25px;
    bottom: 45%;
    left: calc(5% - 100px);
}
.topDeco .rightSide {
    position: absolute;
    font-size: 18px;
    letter-spacing: 0.1rem;
    text-align: center;
    width: 250px;
    height: 25px;
    transform: rotate(90deg);
    bottom: 43%;
    right: calc(5% - 80px);
	animation: rightSide 1s ease-in alternate forwards;
	-webkit-animation:rightSide 1s ease-in forwards;
	-o-animation:rightSide 1s ease-in forwards;
	animation:rightSide 1s ease-in forwards;
	animation-iteration-count: infinite;
}
@keyframes rightSide {
      0% { bottom: 45%; opacity: 1;}
      50% { bottom: 44%; opacity: 0;}
      100% { bottom: 45%; opacity: 1;}
}
@-moz-keyframes rightSide {
      from { bottom: 45%; opacity: 1;}
      50% { bottom: 44%; opacity: 0;}
      to { bottom: 45%; opacity: 1;}
}
@-webkit-keyframes rightSide {
      from { bottom: 45%; opacity: 1;}
      50% { bottom: 44%; opacity: 0;}
      to { bottom: 45%; opacity: 1;}
}

#topMain .block {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}
#block2 {
    height: 100vh;
    overflow: hidden;
    display: table;
    z-index: 5000;
}
#catch {
    width: 650px;
    height: auto;
    z-index: 2;
    position: relative;
    display: inline-block;
}
.topmainLogo {
    position: absolute;
    z-index: 2;
    width: 350px;
    bottom: 7%;
    left: 50%;
    margin-left: -175px;
    z-index: 5000;
}
#black {
    background-image: url('../images/recruit/black60.png');
    width: 100%;
    height: 100vh;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#trigger {
    width: 100%;
    height: 1px!important;
    position: absolute;
    top: 1000px; /*gชมฆ้durationช*/
}
#block3 {
    background-image: url('../images/recruit/black60.png');
    color: #fff;
    position: relative;
    z-index: 200;
    padding-bottom: 150px;
    height: auto!important;
}
#block3 .title {
    font-size: 48px;
    letter-spacing: 0.3rem;
    line-height: 70px;
    margin-bottom: 50px;
}
#block3 .read {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
    font-size: 14.5px;
    line-height: 28px;
}
#block3 .workvideo { margin-top: 80px;}
#block3 .workvideo li { width: 250px!important;}
#block3 .workvideo li .cap { height: 150px!important;}
#block3 .workvideo li p { font-size: 14px!important;}
#block3 .workvideo li .cap01 { background-image: url('../images/recruit/ba/video01.jpg');}
#block3 .workvideo li .cap02 { background-image: url('../images/recruit/ba/video02.jpg');}
#block3 .workvideo li .cap03 { background-image: url('../images/recruit/ba/video03.jpg');}
#block3 .workvideo li .cap04 { background-image: url('../images/recruit/ba/video04.jpg');}
#block4 {
    width: 100%;
    height: auto!important;
    background-color: #fff;
    padding: 200px 0 0;
    position: relative;
    z-index: 8000;
}
.mainCnt { width: 80%; max-width: 1300px; margin:  0 auto;}
.secTitle { font-size: 30px; letter-spacing: 0.1rem; margin-bottom: 50px;}
.secTitle span { font-size: 15px; display: block; margin-bottom: 10px;}
.grayBack {
    background-color: #f1f1f1;
    width: 100%;
    position: absolute;
    z-index: 100;
}
.changeList li {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    margin: 2%;
}
.changeList li img { width: 95%; margin: 0 auto;}
.changeList li table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 10px;
}
.changeList li table th, .changeList li table td {
    padding: 8px 10px;
    border: 1px solid #707070;
    vertical-align: middle;
}
.changeList li table td.no1 {
    background: #ffffff;
    color: #000;
    text-align: center;
    border-bottom: 1px solid #707070;
}
.changeList li table th.no1 { background-color: #ccc;}
.changeList li table th.no2 {
    background: #f1f1f1;
    color: #000;
    text-align: center;
    font-weight: bold;
}
.changeList li table td.no2 {
    background: #ffffff;
    font-weight: bold;
    color: #d32b1a;
    font-size: 15px;
    text-align: center;
    border-bottom: 1px solid #707070;
}
.changeList li table th.no3 {
    background: #f1f1f1;
    color: #d32b1a;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}
.changeList li table td.price { font-size: 25px;}
.changeList li table td.life { font-size: 18px;}
.top02cnt { padding: 150px 0 10px; background-color: #fff;}
.top02cnt .secTitle { text-align: left;}
.tsuyomi {
    background-image: url(../images/recruit/tsuyomi01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    height: 450px;
    width: 90%;
    float: right;
    margin-bottom: 150px;
}
.tsuyomi02 { background-image: url(../images/recruit/tsuyomi02.jpg); float: left;}
.tsuyomi03 { background-image: url(../images/recruit/tsuyomi03.jpg);}
.tsuyomi04 { background-image: url(../images/recruit/tsuyomi04.jpg); float: left;}
.tsuyomi .box {
    background-color: #d32b1a;
    color: #fff;
    padding: 70px 50px 60px;
    width: 450px;
    text-align: left;
    position: absolute;
    top: 200px;
    right: 17%;
    z-index: 2;
}
.tsuyomi02 .box, .tsuyomi04 .box { right: inherit; left: 17%;}
.tsuyomi .box strong {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    margin-bottom: 30px;
    border-bottom: 1px #e69c94 solid;
    padding-bottom: 30px;
}
.top03cnt { width: 100%; position: relative; margin: 150px 0;}
.top03cnt .grayBack { height: 300px; top: 150px;}
.top03cnt .mainCnt { position: relative; z-index: 200;}
/*--------------------MODAL VIEO------------------*/
@keyframes modal-video {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
@keyframes modal-video-inner {
    from {
        transform: translate(0, 100px)
    }
    to {
        transform: translate(0, 0)
    }
}
.modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    cursor: pointer;
    opacity: 1;
    animation-timing-function: ease-out;
    animation-duration: 0.3s;
    animation-name: modal-video;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out
}
.modal-video-close {
    opacity: 0
}
.modal-video-close .modal-video-movie-wrap {
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    transform: translate(0, 100px)
}
.modal-video-body {
    max-width: 940px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: table
}
.modal-video-inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%
}
.modal-video-movie-wrap {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
    background-color: #333;
    animation-timing-function: ease-out;
    animation-duration: 0.3s;
    animation-name: modal-video-inner;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -ms-transition: -ms-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out
}
.modal-video-movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
.modal-video-close-btn {
    position: absolute;
    z-index: 2;
    top: -35px;
    right: -35px;
    display: inline-block;
    width: 35px;
    height: 35px;
    overflow: hidden;
    border: none;
    background: transparent
}
.modal-video-close-btn:before {
    transform: rotate(45deg)
}
.modal-video-close-btn:after {
    transform: rotate(-45deg)
}
.modal-video-close-btn:before,
.modal-video-close-btn:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
    border-radius: 5px;
    margin-top: -6px
}
/*--------------------MODAL VIEO------------------*/
.workvideo {
    width: 100%;
    text-align: center;
}
.workvideo li {
    display: inline-block;
    width: 29%;
    margin: 2%;
    vertical-align: top;
    cursor: pointer;
}
.workvideo li button { width: 100%; height: 100%;}
.workvideo li .cap {
    width: 100%;
    height: 25vh;
    background-image: url('../images/recruit/video01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: table;
    position: relative;
}
.workvideo li .cap.cap2 { background-image: url('../images/recruit/video02.jpg');}
.workvideo li .cap.cap3 { background-image: url('../images/recruit/video03.jpg');}
.workvideo li .cap.cap4 { background-image: url('../images/recruit/video04.jpg');}
.workvideo li .cap.cap5 { background-image: url('../images/recruit/video05.jpg');}
.workvideo li .cap.cap6 { background-image: url('../images/recruit/video06.jpg');}
.workvideo li .cap.cap7 { background-image: url('../images/recruit/video07.jpg');}
.workvideo li .cap .play { display: table-cell; vertical-align: middle; text-align: center; position: relative; z-index: 3;}
.workvideo li .cap .play img { width: 40px; display: inline-block; transition: .3s;}
.workvideo li:hover .cap .play img { width: 50px;}
.workvideo li .cap .black {
    background-image: url('../images/recruit/black60.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: .3s;
    opacity: 0.6;
}
.workvideo li:hover .cap .black { opacity: 0;}
.workvideo li p { font-size: 17px; letter-spacing: 0.1rem; margin-top: 10px;}
.top03cnt .read {
    width: 100%;
    max-width: 800px;
    text-align: left;
    margin: 50px auto 0;
}
.top04cnt { margin: 180px 0 100px; position: relative;}
.top04cnt .grayBack { height: 40vh; bottom: 245px;}
.top04cnt .mainCnt { position: relative; z-index: 200;}
.memberSlider { padding: 0 50px; margin: 60px 0 20px;}
.memberSlider .slick-slide { margin: 0 40px; position: relative;}
.memberSlider .slick-slide a .button,
.interviewList a .button {
    position: absolute;
    width: 200px;
    padding: 10px 25px 10px 10px;
    background-size: 10px;
    background-position: center right 20px;
    top: 50%;
    margin-top: -80px;
    left: 50%;
    margin-left: -100px;
    font-size: 13px;
    opacity: 0;
    transition: .3s;
    z-index: 200;
}
.memberSlider .slick-slide a:hover .button, .interviewList a:hover .button { opacity: 1;}
.memberSlider .slick-slide .cnt { margin-top: 30px;}
.memberSlider .slick-slide .cnt span { font-size: 17px; display: block;}
.slick-arrow {
    width: 42px;
    height: 42px;
    text-indent: -9999px;
    background-color: #d32b1a;
    position: absolute;
    bottom: 100px;
    left: 0;
    background-image: url('../images/recruit/arrowL.svg');
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center center;
}
.slick-arrow.slick-next { left: inherit; right: 0; background-image: url('../images/recruit/arrowR.svg');}
.slick-slide { outline:none!important;}
.top05cnt {
    width: 100%;
    position: relative;
    padding: 0 0 100px;
    margin-top: 150px;
}
.top05cnt .mainCnt { position: relative; z-index: 200;}
.top05cnt .grayBack { height: 97%; position: absolute; bottom: 0;}
.top05cnt .formCatch { width: 40%; float: left;}
.top05cnt .formCnt {
    width: 55%;
    float: right;
    text-align: left;
    margin-top: 100px;
}
.formBox { background-color: #fff; padding: 80px 50px 50px; width: 100%; margin: 50px 0;}
.contactForm {
    text-align: left;
    width: 100%;
    max-width: 1050px;
    margin: 20px auto 0;
}
.contactForm .formDiv { width: 48%; padding: 12px 0; position: relative;}
.contactForm .longBox { width: 100%; clear: both;}
.contactForm dt {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
}
.contactForm dd { width: 100%;}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0 10px;
    height: 45px;
    background-color: #f1f1f1;
    border: 1px #D9D9D9 solid;
    border-radius: 2px;
    font-size: 16px;
}
textarea { height: 200px; padding: 10px;}
.single .your-subject input[type="text"] {
    pointer-events: none;
    background-color: #fff3f2;
    border: 0;
}
.hissu {
    font-size: 11px;
    padding: 2px 5px 3px;
    background-color: #d32b1a;
    color: #fff;
    margin-left: 15px;
    vertical-align: middle;
}
.check { text-align: center; margin: 10px 0 20px;}
.contactForm input[type="checkbox"] {
    height: 30px;
    width: 30px;
    vertical-align: middle;
    margin-right: 10px;
    cursor: pointer;
}
.contactForm input[type="submit"] {
    width: 100%;
    max-width: 350px;
    border: 0;
    display: block;
    margin: 30px auto 0;
    background-color: #d32b1a;
    color: #ffffff;
    padding: 20px 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 2px;
    font-family: "Sawarabi Gothic", serif;
}
.contactForm input[type="submit"]:hover { background-color: #f55f50;}
div.wpcf7-validation-errors,
div.wpcf7-response-output,
div.wpcf7-mail-sent-ok {
    background-color: #ffe7e0;
    color: #ec724f;
    border: 0!important;
    text-align: center;
    padding: 20px!important;
    font-weight: bold;
    font-size: 18px;
}
div.wpcf7-mail-sent-ok {
    background-color: transparent;
    color: #d32b1a;
    font-size: 20px;
    margin: 30px 0!important;
    font-weight: normal;
}
span.wpcf7-not-valid-tip {
    color: #eb6112!important;
    position: absolute;
    font-size: 12px!important;
}
.sent .contactForm { display: none;}
.frame_form {
    height: 150px;
    max-width: 900px;
    overflow: auto;
    margin: 30px auto 60px;
    border: 1px #ddd solid;
    padding: 3%;
    background-color: #e7f3ed;
}
.contactForm .notice {
    text-align: center;
    line-height: 23px;
    margin: 20px 0;
}
.ajax-loader {
    width: 50px!important;
    height: 50px!important;
    margin: 20px auto 0!important;
    display: block!important;
    background-repeat: no-repeat;
    background-size: cover;
}
.bnrCnt a img {
    width: 100%;
    max-width: 400px;
    display: inline-block;
    margin: 0 10px;
}
/**********************************************************************
				INTERVIEW
**********************************************************************/
#pageSec { margin: 80px 0 0;}
#pageCatch {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    display: table;
    background-color: #f1f1f1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#pageCatch.interview { background-image: url('../images/recruit/catch_interview.jpg');}
.pageTitle {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-top: 40px;
    font-size: 40px;
    letter-spacing: 0.2rem;
}
.pageTitle span {
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 0.1rem;
}
.interviewMemo {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    margin: 100px 0 50px;
}
.interviewList { text-align: center;}
.interviewList li {
    width: 25%;
    margin: 2%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 100;
}
.interviewList li .interviewImg { width: 100%; background-color: #f5f5f5; padding: 30px;}
.interviewList li .cnt { font-size: 12px; line-height: 18px; margin-top: 20px;}
.interviewList li .cnt span { font-size: 16px; margin-bottom: 5px; display: block;}
.interviewSingle { width: 100%; background-color: #f1f1f1; padding-top: 40px;}
.interviewSingle .mainCnt { position: relative;}
.interviewSingle .box {
    width: 40%;
    height: 70vh;
    min-height: 450px;
    position: relative;
}
.interviewSingle .box img {
    width: auto;
    height: 85%;
    position: absolute;
    left: -15%;
    bottom: 0;
}
.interviewSingle .box.after img { left: inherit; right: -15%;}
.interviewSingle .box p {
    position: absolute;
    left: 0;
    bottom: 80px;
    background-color: #fff;
    z-index: 5;
    padding: 10px 25px;
    font-size: 17px;
    font-weight: bold;
    border: 1px #ddd solid;
}
.interviewSingle .box.after p { left: inherit; right: 0;}
.interviewSingle .catch {
    width: 40%;
    position: absolute;
    top: 20vh;
    left: 50%;
    margin-left: -20%;
    text-align: center;
}
.interviewSingle .catch .title {
    font-size: 25px;
    line-height: 45px;
    margin-bottom: 30px;
}
.interviewSingle .catch .name { font-size: 25px; letter-spacing: 0.1rem; margin-bottom: 20px;}
.interviewSingle .catch .work { font-size: 13px; line-height: 22px; color: #777;}
.interviewCntSingle .pageTitle {
    margin: 0 auto;
    display: block;
    padding: 0;
    margin-bottom: 80px;
}
.interviewCntSingle .faqCnt { width: 100%; max-width: 1000px; margin: 0 auto 80px;}
.interviewCntSingle .faqCnt .question {
    background-color: #f1f1f1;
    border-left: 5px #3a4567 solid;
    color: #3a4567;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px 10px 30px;
    margin-bottom: 25px;
}
.interviewCntSingle .workphoto {
    width: 100%;
    max-width: 1000px;
    height: 38vw;
    min-height: 250px;
    margin: 60px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.singleFoot { text-align: center;}
.singleFoot .secTitle { font-size: 30px;}
.lp2019 .faqCnt {
    width: 47%;
    display: inline-block;
    vertical-align: top;
    margin: 0 1% 30px;
}
.lp2019 .faqCnt .question { margin-bottom: 15px;}
.lp2019 .faqCnt p { text-align: left;}
/**********************************************************************
				JOBTYPE
**********************************************************************/
.jobtypeCnt { text-align: center;}
.jobtypeCnt .pageTitle {
    margin: 100px auto 80px;
    display: block;
    padding: 0;
    font-size: 37px;
}
.jobtypeCnt .pageTitle span { font-size: 25px; margin-bottom: 20px;}
.jobtypeCnt .memo { font-size: 18px; margin-bottom: 50px;}
.jobtypeCnt ul li {
    width: 31.33%;
    margin: 1% 1% 0;
    display: block;
    float: left;
}
.jobtypeCnt ul li .image {
    background-image: url('../images/recruit/jobtype01.jpg');
    width: 100%;
    height: 220px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.jobtypeCnt ul li.logistics .image { background-image: url('../images/recruit/jobtype02.jpg');}
.jobtypeCnt ul li.dispatch .image { background-image: url('../images/recruit/jobtype03.jpg');}
.jobtypeCnt ul li .cnt {
    background-color: #3a4567;
    color: #fff;
    padding: 35px;
    text-align: left;
}
.jobtypeCnt ul li.logistics .cnt { background-color: #3d3f4b;}
.jobtypeCnt ul li.dispatch .cnt { background-color: #777c90;}
.jobtypeCnt ul li .cnt p {
    font-size: 23px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px #b3b3b3 solid;
    min-height: 105px;
}
.jobtypeCnt ul li .cnt p span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2rem;
    margin-bottom: 10px;
    opacity: 0.7;
}
.jobtypeCnt ul li .border { width: 50%; height: 80px; border-right: 3px #3a4567 dotted;}
.jobtypeCnt ul li.logistics .border { border-right: 3px #3d3f4b dotted;}
.jobtypeCnt ul li.dispatch .border { border-right: 3px #777c90 dotted;}
#recruit-tab .nav { text-align: center;}
#recruit-tab .nav li {
    width: 31.33%;
    margin: 0 1%;
    display: block;
    float: left;
}
.recruitBtn {
    font-size: 22px;
    letter-spacing: 0.2rem;
    display: inline-block;
    width: 100%;
    padding: 20px 10px;
    background-color: #3a4567;
    color: #fff;
}
.recruitBtn span { display: block; font-size: 13px; letter-spacing: 0;}
.recruitBtn.logistics { background-color: #3d3f4b;}
.recruitBtn.dispatch { background-color: #777c90;}
.recruitBtn.link-hover span { font-style: normal;}
.textLink.current { border-top: 7px #d32b1a solid;}
#recruit-tab { margin-bottom: 80px;}
#recruit-tab .list-wrap { height: auto!important;}
#recruit-tab .list-wrap div {
    background-color: #3a4567;
    padding: 70px 50px 55px;
    color: #fff;
    width: 97.7%;
    margin: 0 auto;
}
#recruit-tab .list-wrap div#logistics { background-color: #3d3f4b;}
#recruit-tab .list-wrap div#dispatch { background-color: #777c90;}
#recruit-tab .list-wrap div .list li a {
    background-color: #fff;
    display: block;
    font-size: 17px;
    color: #2e47c1;
    font-weight: bold;
    text-decoration: underline;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 2px;
    background-image: url('../images/recruit/arrowJobtype.svg');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: right 20px center;
    transition: .2s;
}
#recruit-tab .list-wrap div .list li a:hover { background-color: #ddf4ff; background-position: right 15px center;}
.dontworrySec {
    background-color: #fff3f2;
    margin-top: 100px;
    margin-bottom: -80px;
    padding: 50px 0 0;
}
.dontworry {
    height: auto;
    min-height: 400px;
    position: relative;
    background-image: url('../images/recruit/jobtype04.png');
    background-repeat: no-repeat;
    background-size: 400px auto;
    background-position: right 5% bottom;
    padding: 0 10%;
}
.dontworry .cnt { width: calc(100% - 350px); padding-top: 30px; padding-bottom: 50px;}
.dontworry .cnt p {
    font-size: 27px;
    line-height: 40px;
    letter-spacing: 0.1rem;
    margin-bottom: 30px;
}
.applicationCntSingle .pageTitle { font-size: 30px; letter-spacing: 0.1rem;}
.applicationCntSingle .pageTitle span {
    background-color: #3a4567;
    width: auto;
    display: inline-block;
    margin: 0 auto 30px;
    padding: 5px 10px;
    color: #fff;
    font-size: 13px;
}
.applicationCntSingle .pageTitle span.logistics { background-color: #3d3f4b;}
.applicationCntSingle .pageTitle span.dispatch { background-color: #777c90;}
.applicationCntSingle .button { margin: 0 auto;}
#recruit-tab.singleOther { margin-bottom: 40px;}
#recruit-tab.singleOther .list-wrap div { padding: 50px; max-width: 1000px; margin-top: 100px;}
#recruit-tab.singleOther p { text-align: center; margin-bottom: 40px; font-size: 20px;}
/**********************************************************************
				ABOUT US
**********************************************************************/
.about01 .logo { width: 120px; margin: 100px auto 50px;}
.about01 .catch {
    font-size: 30px;
    line-height: 50px;
    letter-spacing: 0.1rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 100;
    text-align: center;
    font-weight: bold;
}
.about01Img div {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.about01List { background-color: #f1f1f1;}
.about01List li {
    width: 50%;
    float: left;
    padding: 0 70px 70px;
}
.about01List li p {
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.1rem;
    margin-bottom: 40px;
    color: #d32b1a;
    font-weight: bold;
}
.about01List li p span {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    padding-top: 33px;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.1rem;
    font-weight: bold;
    margin: -50px auto 30px;
    background-color: #d32b1a;
    color: #fff;
    position: relative;
    z-index: 100;
}
.about01List li:nth-child(3) p span, .about01List li:nth-child(4) p span { margin: -20px auto 30px;}
#pageSec.about02 {
    margin: 100px 0;
    padding: 100px 0;
    text-align: center;
    border-top: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
}
.about02Cnt {
    width: 48%;
    background-color: #3a4567;
    color: #fff;
    text-align: left;
    margin-top: 50px;
}
.about02Cnt.logistics { background-color: #3d3f4b;}
.about02Cnt .image {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.about02Cnt .cnt { padding: 50px;}
.about02Cnt .cnt p {
    font-size: 27px;
    letter-spacing: 0.1rem;
    padding-bottom: 20px;
    margin-bottom: 35px;
    border-bottom: 1px #b3b3b3 solid;
}
.about02Cnt .cnt p span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2rem;
    margin-bottom: 10px;
    opacity: 0.7;
}
.about02 .read, .about03 .read { max-width: 1000px; margin: 80px auto 0;}
.career { margin: 100px auto;}
.career p {
    font-weight: bold;
    font-size: 18px;
    color: #3a4567;
    margin-bottom: 30px;
}
.career span { text-align: left; display: block;}
#pageSec.about03 { margin-top: 150px; text-align: center;}
.about03list { margin-top: 50px;}
.about03list li {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
    background-color: #fff3f2;
    position: relative;
}
.about03list li .image {
    position: absolute;
    width: 35%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.about03list li .cnt {
    width: calc(100% - 35%);
    padding: 50px;
    float: right;
}
.about03list li .cnt p { font-size: 23px; margin: 10px 0 30px;}
#pageSec.about04 {
    margin: 100px 0;
    padding: 100px 0;
    text-align: center;
    border-top: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
}
.about04 .cnt { width: 50%; text-align: left; margin-top: 50px;}
.about04 img { width: 45%;}
#pageSec.about05 { border: none; padding-bottom: 0; padding-top: 0;}
.about05 .image {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}
.about05 .cnt { padding: 70px 0; text-align: left;}
.about05 .cnt .catch {
    text-align: right;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.2rem;
    margin-bottom: 30px;
}
.about05 .cnt .name { text-align: right; font-size: 22px; margin-top: 30px;}
.about05 .cnt .name span { display: block; font-size: 13px;}
/****************************************  TB (1200pxซ) ****************************************/
@media screen and (max-width:1200px) {
/*-------- HEADER --------*/
header { height: 100px;}
#menu-box { width: calc(100% - 255px); margin-top: 5px;}
#menu li a { padding: 3px; font-size: 15px;}
#menu li.entry { margin: 0 0 0 15px;}
#menu li.entry a {
    padding: 10px 50px 10px 25px;
    font-size: 18px;
    letter-spacing: 0;
    background-size: 11px;
    background-position: center right 20px;
}
.topDeco .rightSide, .topDeco .leftSide { font-size: 13px;}
.topmainLogo { width: 300px; margin-left: -150px;}
/*-------- FOOTER --------*/
footer { padding: 25px 0;}
/*-------- TOP --------*/
.background .background-wrap #background-movie-player {
    min-width: 180vh;
    min-height: 120vh;
    left: -90vh;
    flex: none;
}
#svg-animation, #catch { width: 450px;}
#block3 .title {
    font-size: 35px;
    letter-spacing: 0.1rem;
    line-height: 55px;
    margin-bottom: 40px;
}
#block3 .read { font-size: 13.5px; line-height: 25px;}
#block4 { padding: 150px 0 0;}
.top02cnt { padding: 100px 0 10px;}
.secTitle { font-size: 26px; margin-bottom: 30px;}
.tsuyomi { margin-bottom: 80px;}
.tsuyomi04 { margin-bottom: 150px;}
.tsuyomi .box { width: 350px; padding: 60px 40px 50px; top: 220px; right: 10%;}
.tsuyomi02 .box, .tsuyomi04 .box { left: 10%;}
.tsuyomi .box strong { font-size: 18px; letter-spacing: 0; margin-bottom: 25px;}
.top03cnt { margin: 30px 0;}
.workvideo li { width: 28%;}
.top04cnt { margin: 120px 0 0;}
.top04cnt .grayBack { height: 50vh;}
.top05cnt { padding: 0 0 50px; margin-top: 80px;}
.top05cnt .formCatch {
    width: 40%;
    max-width: 350px;
    float: none;
    margin: 0 auto;
}
.top05cnt .formCnt { width: 100%; float: none; margin-top: 40px;}
.formBox { padding: 50px 40px 40px;}
/*-------- INTERVIEW --------*/
.interviewList li { width: 35%;}
.interviewSingle .catch .title {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 35px;
    margin-bottom: 25px;
}

}
/****************************************  SP (1024pxซ) ****************************************/
@media screen and (max-width:1024px) {
/*-------- BASE --------*/
.PCnone { display: block!important;}
.SPnone { display: none!important;}
.fontL { font-size: 19px; letter-spacing: 0.1rem;}
.button { margin: 30px 0 0; font-size: 16px; padding: 15px 50px 15px 25px;}
.mainCnt { width: 85%;}
/*-------- HEADER --------*/
header { padding: 10px 0 50px 15px;}
header.is-animation { height: 60px; padding: 15px 20px;}
#menu {
    margin-top: 60px!important;
    background-color: #d32b1a;
    padding: 40px;
    height: auto;
    position: fixed;
    z-index: 9997;
}
#menu { display: none;}
#menu-box {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 0;
}
#menu li, #menu li.entry {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin: 0;
}
#menu li a { color: #fff!important;}
#menu li.entry a {
    background-color: #fff;
    color: #d32b1a!important;
    font-weight: bold;
    padding: 15px 50px 15px 25px;
    background-image: url('../images/recruit/arrowBred.svg');
}
#toggle {
    display: block;
    position: absolute;
    width: 50px;
    right: 15px;
    top: 6px;
}
#toggle a {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    background-image: url('../images/recruit/menuW.svg');
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center center;
}
#toggle a.close { background-image: url('../images/recruit/menuWclose.svg'); background-size: 20px auto;}
.is-animation #toggle a { background-image: url('../images/recruit/menuR.svg'); background-size: 20px auto;}
.is-animation #toggle a.close { background-image: url('../images/recruit/menuRclose.svg'); background-size: 20px auto;}
/*-------- FOOTER --------*/
footer .copy { float: none; text-align: center; margin-bottom: 10px;}
footer .link { float: none; text-align: center;}
footer .link a { margin: 0 10px; font-size: 13px;}
/*-------- TOP --------*/
#svg-animation, #catch { width: 75%; max-width: 400px; margin-top: -150px;}
.centerText .logo { width: 100px; position: absolute; top: 50%; left: 50%; margin-left: -50px; margin-top: -80px;}
.topmainLogo { width: 280px; margin-left: -140px; bottom: 100px;}
.topmainLogo.pageAnchor { bottom: 165px;}
.topDeco .leftSide { left: -110px; bottom: 60%;}
.topDeco .rightSide { right: -110px; top: 38%;}
.changeList li { width: 100%; margin: 20px 0;}
.changeList li table th, .changeList li table td { line-height: 20px; font-size: 13px;}
.changeList li table td.price { font-size: 20px;}
.changeList li table td.life { font-size: 15px;}
#block3 .title {
    width: 80%;
    margin: 0 auto;
    font-size: 23px;
    letter-spacing: 0;
    line-height: 35px;
    margin-bottom: 30px;
}
#block3 .read {
    font-size: 13px;
    line-height: 20px;
    width: 70%;
    text-align: left;
}
#block4 { padding: 100px 0 0;}
.tsuyomi {
    height: auto;
    width: 100%;
    padding-top: 200px;
    margin-bottom: 0;
    background-size: auto 200px;
    background-position: top left 30%;
}
.tsuyomi .box { position: static; width: 100%; padding: 40px 30px;}
.top03cnt { margin: 80px 0;}
.top03cnt .grayBack { height: 97%; top: 100px;}
.workvideo li { width: 100%; max-width: 300px; height: auto;}
.workvideo li .cap { height: 180px;}
.top03cnt .read { margin: 20px auto 0;}
.workvideo li p { margin-bottom: 10px;}
.memberSlider .slick-slide { margin: 0;}
.top05cnt .formCatch { width: 70%;}
.top05cnt .formCnt { margin-top: 20px;}
.formBox {
    padding: 40px 30px 30px;
    margin: 30px auto 0;
    margin-left: -5%;
    width: 110%;
}
.contactForm .formDiv { width: 100%;}
.bnrCnt { margin-top: 30px;}
.bnrCnt a img { margin: 0 0 10px;}
/*-------- INTERVIEW --------*/
.pageTitle { font-size: 25px;}
.pageTitle span { font-size: 13px; margin-bottom: 3px; letter-spacing: 0;}
#pageCatch { height: 230px; min-height: inherit;}
#pageCatch .pageTitle { padding-top: 15px; font-size: 30px; letter-spacing: 0.1rem;}
#pageCatch .pageTitle span { font-size: 14px; margin-bottom: 5px;}
#pageSec { margin: 40px 0 0;}
.interviewMemo { font-size: 15px; line-height: 26px; margin: 0 0 30px;}
.interviewList li { width: 80%; margin-bottom: 20px;}
.interviewList li .interviewImg { padding: 20px;}
.interviewSingle { height: auto; padding-top: 60px; overflow: hidden;}
.interviewSingle .mainCnt { height: 100%;}
.interviewSingle .box {
    width: 50%;
    height: 100%;
    min-height: 100%;
    position: absolute;
}
.interviewSingle .box img {
    width: auto;
    height: 265px;
    position: absolute;
    left: -30%;
}
.interviewSingle .box.after img { left: inherit; right: -30%;}
.interviewSingle .box p { bottom: 20px; padding: 5px 15px; font-size: 14px;}
.interviewSingle .catch {
    width: 100%;
    top: 40px;
    left: 0;
    margin-left: 0;
    position: relative;
    padding-bottom: 310px;
}
.interviewSingle .catch .title {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 29px;
    margin-bottom: 20px;
}
.interviewSingle .catch .name { font-size: 18px; letter-spacing: 0.1rem; margin-bottom: 10px;}
.interviewSingle .catch .work { font-size: 12px; line-height: 18px; letter-spacing: -0.05rem;}
.interviewCntSingle .pageTitle { margin-bottom: 40px;}
.interviewCntSingle .faqCnt { margin: 0 auto 30px;}
.interviewCntSingle .faqCnt .question {
    font-size: 15px;
    line-height: 20px;
    padding: 10px 10px 10px 15px;
    margin-bottom: 20px;
}
.interviewCntSingle .faqCnt .answer { font-size: 12.5px; line-height: 23px;}
.interviewCntSingle .workphoto { height: 35vw; min-height: 150px; margin: 30px auto;}
.singleFoot .secTitle { font-size: 23px; letter-spacing: 0;}
.singleFoot .top04cnt { margin: 80px 0 0;}
.lp2019 .faqCnt { width: 100%; margin: 0 0 20px;}
.lp2019 .faqCnt .question { font-size: 14px; padding: 5px 10px 5px 15px; margin-bottom: 10px;}
/*-------- YOUR MERIT --------*/
.about01 .logo { width: 80px; margin: 50px auto 30px;}
.about01 .catch { font-size: 20px; line-height: 30px; letter-spacing: 0; margin-bottom: 30px;}
.about01Img div { height: 180px;}
.about01List li { width: 100%; float: none; padding: 0 25px 40px;}
.about01List li p span {
    display: block;
    width: 70px;
    height: 70px;
    padding-top: 23px;
    font-size: 13px;
    line-height: 16px;
    padding-left: 3px;
    letter-spacing: 0.1rem;
    margin: -25px auto 20px;
}
.about01List li p { font-size: 17px; line-height: 28px; letter-spacing: 0; margin-bottom: 20px;}
#pageSec.about02, #pageSec.about04 { margin: 50px 0; padding: 50px 0;}
.about03list li .image { position: relative; width: 100%; height: 200px;}
.about03list li .cnt { width: 100%; padding: 30px 20px;}
.about03list li .cnt p { font-size: 17px; margin: 0 0 20px;}
.about02 .read { margin: 0 auto;}
#pageSec.about03 { margin-top: 80px;}
.about02Cnt { width: 100%; margin-top: 30px;}
.about02Cnt .image { height: 220px;}
.about02Cnt .cnt { padding: 30px;}
.about02Cnt .cnt p { font-size: 20px; letter-spacing: 0; padding-bottom: 15px; margin-bottom: 20px;}
.career { margin: 60px auto;}
.about03 .read { margin: 40px auto 0;}
.about04 .cnt, .about04 img { width: 100%; margin-top: 0; margin-bottom: 30px;}
.about05 .image { height: 180px; background-position: top center;}
.about05 .cnt { padding: 30px 0;}
.about05 .cnt .catch { font-size: 25px; line-height: 40px; letter-spacing: 0.1rem; margin-bottom: 30px;}
.dontworrySec { margin-top: 50px; margin-bottom: 0; padding: 30px 0 0;}
.dontworry .cnt { width: 100%; padding-top: 20px; padding-bottom: 300px;}
.dontworry .cnt p { font-size: 18px; line-height: 28px; letter-spacing: 0; margin-bottom: 20px;}
.dontworry { background-size: auto 280px; background-position: center bottom; padding: 0 3%;}
/*-------- JOB TYPE --------*/
.jobtypeCnt .pageTitle { margin: 50px auto 30px; font-size: 24px; letter-spacing: 0;}
.jobtypeCnt .pageTitle span { font-size: 20px; margin-bottom: 10px;}
.jobtypeCnt .memo { font-size: 15px; margin-bottom: 30px;}
.jobtypeCnt ul li { width: 48%; margin: 1%;}
.jobtypeCnt ul li .image { height: 180px;}
.jobtypeCnt ul li .cnt { padding: 30px;}
.jobtypeCnt ul li .cnt p { font-size: 18px; padding-bottom: 15px; margin-bottom: 15px; min-height: auto;}
.jobtypeCnt ul li .cnt p span { font-size: 11px; letter-spacing: 0.1rem; margin-bottom: 0;}
.jobtypeCnt ul li .border { display: none;}
#recruit-tab { margin: 50px 0;}
#recruit-tab .nav li { min-height: 75px; position: relative;}
.recruitBtn { font-size: 16px; letter-spacing: 0; width: 100%; padding: 10px; min-height: 100%; position: absolute; left: 0;}
.recruitBtn span { font-size: 10px; line-height: 12px; margin-bottom: 5px;}
#recruit-tab .list-wrap div { padding: 25px 20px 20px;}
#recruit-tab .list-wrap div .list li a {
    font-size: 14px;
    padding: 10px 30px 10px 10px;
    margin-bottom: 10px;
    background-size: 10px;
    background-position: right 15px center;
}
.applicationCntSingle .pageTitle { font-size: 22px; letter-spacing: 0; line-height: 30px;}
.applicationCntSingle .pageTitle span { margin: 0 auto 10px; padding: 0px 10px; font-size: 12px;}
#recruit-tab.singleOther { margin: 0 0 30px;}
#recruit-tab.singleOther .list-wrap div { padding: 30px 20px 20px; margin-top: 80px;}
#recruit-tab.singleOther p { margin-bottom: 20px; font-size: 15px;}
.SPentryBtn {
    background-color: #d32b1a;
    color: #fff;
    font-weight: bold;
    padding: 0 40px 0 20px;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    background-image: url(../images/recruit/arrowB.svg);
	background-repeat: no-repeat;
    background-size: 11px;
    background-position: center right 20px;
    position: fixed;
    top: 0;
    right: 0;
}
}
/****************************************  SP (768px) ****************************************/
@media screen and (max-width:768px) {
.mainCnt { width: 90%;}
.background .background-wrap .background-movie { left: -32%;}
.jobtypeCnt ul li { width: 100%; max-width: 450px; margin: 0 auto 10px; float: none;}
}
/****************************************  reCAPTCHA ****************************************/
.grecaptcha-badge { z-index: 9999!important;}