@charset "UTF-8";
/*-----------------------------
default
-----------------------------*/
* {
	min-width: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
html {
	overflow-x: hidden;
}
body{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.8;
	color: var(--black-color);
	overflow-x: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}
input {
	font-family: "Noto Sans JP", sans-serif;
}
img{
	vertical-align: top;
	max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    height: auto;
}
a img {
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease-out;
}
a img::after {
	width: 100%;
    height: 100%;
    background-color: var(--black-color);
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
a {
	color: var(--black-color);
	display: block;
	text-decoration: none;
	text-underline-position: under;
	transition: all 0.2s;
	overflow: hidden; /* はみ出した部分を非表示にする */
}

ul,
ol {
  list-style-type: none;
}
.hover {
	transition: all 0.2s;
}
#drawer-navigation{
	display:none;
}
h1{
	font-size: 24px;
	line-height: 30px;
	margin-top: 10px;
}
h2{
	letter-spacing: 0.2rem;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 900;
	color: var(--black-color);
	text-align: center;
	margin-bottom: 40px;
}
h2.bgtext {
	padding-top: 100px;
	background-repeat: no-repeat;
	background-size: auto 90px;
	background-position: center;
}
title {
	display: block;
}
table {
    width: 100%;
    border-collapse: collapse;
}
.btn a{
	display: block;
	text-align: center;
	max-width: 320px;
	width: 100%;
	color: var(--white-color);
	font-size: 20px;
	font-weight: 500;
	padding: 20px 0;
	box-sizing: border-box;
	background: var(--color2);
	text-decoration: none;
	border-radius: 100px;
}
.btn a:hover{
	background: var(--color1);
}
.btn-center a {
	margin: 0 auto;
}

/*----Media query----*/
@media screen and (max-width: 768px){
	h2 {
		padding-top: 75px;
		font-size: 26px;
		background-size: 220px !important;
	}
}

/*-----------------------------
animation
-----------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0,0);
  transition: all 0.5s;
}
.fadein-left {
  transform: translateX(-120px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.fadein-right {
  transform: translate(120px,0);
  transition: opacity 0.5s ease-in-out 0.5, transform 0.5s ease-in-out 0.5;
}
.fadein-up {
  transform: translate(0,-120px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.fadein-bottom {
  transform: translate(0,120px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.fadein-none {
  opacity: 1 !important;
  transform: translate(0) !important;
}
.scrollin {
  opacity: 1;
  transform: translate(0,0);
}
.delay1 {
  transition-delay: 0.2s;
}
.delay2 {
  transition-delay: 0.4s;
}

/*----Media query----*/
@media screen and (max-width: 768px){
	.delay1 {
	  transition-delay: 0s;
	}
	.delay2 {
	  transition-delay: 0s;
	}
}

/*-----------------------------
main
-----------------------------*/
#slider{
	position: relative;
	margin: 0;
	padding: 0;
	height: 100vh;
	overflow: hidden;
}
#slider .slider-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 100vh;
}
#slider .slider-wrap img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
#slider .slider-wrap figure {
	position: relative;
	overflow: hidden;
}
#slider .slider-wrap figure::after {
	content:"";
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	backdrop-filter:blur(8px);
	animation:blur 2s ease-in-out forwards;
}
.slide-animation{
    animation: fadezoom 6s 0s forwards;
	animation-fill-mode:forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.0);
  }
}
@keyframes blur{
  0%{backdrop-filter:blur(8px);}
  100%{backdrop-filter:none;}
}
.slider-message {
	position: absolute;
	left: 7%;
	top: 50%;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	z-index: 400;
	font-weight: bold;
}
.slider-message .catch-cnt {
	color: var(--white-color);
	line-height: 1.5;
	font-weight: bold;
	text-shadow: rgba(0,0,0,.3) 0 0 15px;
}
.slider-message .en-catch {
	font-size: 80px;
    letter-spacing: 5px;
    line-height: 1.3;
}
.slider-message .catch {
	color: var(--white-color);
	font-size: 42px;
	text-align: left;
	padding-top: 20px;
	letter-spacing: 6px;
	margin-bottom: 30px;
}
.slider-message .sub-catch {
	font-size: 20px;
	font-weight: 400;
    letter-spacing: 2px;
    max-width: 620px;
    width: 100%;
}
.slider-message .en-catch>P,
.slider-message .catch>p,
.slider-message .sub-catch>p {
	padding: 10px;
	background: var(--color1);
	display: inline-block;
}

.scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg,rgba(0,0,0, 0) 0, rgba(0,0,0, .8) 80%, rgba(0,0,0, .8) 100%);
  }
  p {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    text-align: center;
    white-space: nowrap;
  }
}
.scroll a {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  color: var(--white-color);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: .2s;
  overflow: hidden;
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: var(--white-color);
  }
  &:hover {
    opacity: .5;
  }
}
#scroll a {
  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: var(--color2);
  }
  &::after {
    animation: sdl06 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  }
}
@keyframes sdl06 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

main {
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
section .inner{
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
}
section .inner2 {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}
.inner .t-text {
	text-align: center;
	margin-bottom: 50px;
}

.fv-wrapper {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

#about {
	padding: 160px 6%;
	display: flex;
    align-items: center;
	position: relative;
}
#about .about-cnt {
    width: 50%;
	background: var(--white-color);
	padding:50px;
	margin-left: -8%;
	position: relative;
	z-index: 1;
}
#about .about-cnt h2 {
	text-align: left;
	background-position: left;
}
#about .about-cnt p {
	line-height: 2;
	letter-spacing: 0.3px;
}
#about .img-about {
    width: 58%;
	flex-shrink: 0;
}
#about.reverse .img-about {
	order: 1;
}
#about.reverse .about-cnt {
	margin-right: -8%;
	margin-left: 0;
}

#strength {
	background: var(--white-color);
	padding: 120px 0 30px;
}
#strength.dark-color {
	background: var(--color1);
	color: var(--white-color);
}
#strength.dark-color h2 {
	color: var(--white-color);
	text-shadow: 0 0 10px var(--color1);
}
#strength .strength-cnt {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#strength .three-colum li {
	width: 31%;
}
#strength .two-colum li {
	width: 48%;
}
#strength .strength-cnt li {
	padding: 30px;
	border-radius: 10px;
	border: 1px solid var(--color1);
	text-align: center;
	background: var(--white-color);
	margin: 0 auto 50px;
	font-size: 20px;
	font-weight: 500;
	color: var(--black-color);
}
#strength .strength-cnt li img {
	margin: 0 auto 20px;
	height: 120px;
}

#recruit {
	padding: 120px 0;
}
#recruit .recruit-cnt {
	background: var(--white-color);
	border-radius: 10px;
	padding: 50px;
	border: 1px solid var(--color1);
}
#recruit .recruit-cnt li {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--color1);
	display: flex;
}
#recruit .recruit-cnt li:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
#recruit .recruit-cnt li .desc-title {
	font-size: 20px;
	font-weight: 500;
	width: 25%;
	color: var(--color1);
}
#recruit .recruit-cnt li p:last-of-type {
	line-height: 2;
	width: 75%;
	flex: 1;
}
#recruit .recruit-cnt li iframe {
	width: 100%;
	height: 200px;
	margin-top: 20px;
}

.card {
	padding: 120px 0 70px;
	background: var(--white-color);
}
.card.card-bg {
	background: var(--color1);
	color: var(--white-color);
}
.card.card-bg-gray {
	background: var(--gray-color);
}
.card.card-bg h2 {
	color: var(--white-color);
}
.card .card-cnt {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.card .card-cnt li {
	line-height: 2;
	margin: 0 auto 50px;
}
.card .card-cnt li img {
	width: 100%;
	height: auto;
}
.card .card-cnt li.card-border {
	padding: 30px;
	border-radius: 10px;
	border: 1px solid var(--color1);
}
.card.card-bg .card-cnt li.card-border,
.card.card-bg-gray .card-cnt li.card-border {
	border: 1px solid var(--white-color);
	background: var(--white-color);
	color: var(--black-color);
}
.card .card-cnt.three-colum li {
	width: 31%;
}
.card .card-cnt.two-colum li {
	width: 47%;
}
.card .card-cnt.one-colum li {
	width: 90%;
	display: flex;
	justify-content: space-between;
}
.card .card-cnt.one-colum li img {
	width: 45%;
}
.card .card-cnt.one-colum li div {
	width: 52%;
}
.card .card-cnt li h3 {
	font-size: 24px;
	margin: 20px 0;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 1.7;
}
.card .card-cnt.one-colum li h3 {
	margin: 0 0 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--gray-color);
}
.card .card-cnt li img {
	border-radius: 10px;
}
.card .card-cnt li.reverse img {
	order: 2;
}
.card .card-cnt li.reverse div {
	order: 1;
}

#contact {
	padding: 120px 0;
	background-color: var(--color1);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
#contact .inner2 {
	background: var(--white-color);
	padding: 80px 50px;
	border-radius: 10px;
}
#contact h2 {
	margin-bottom: 60px;
}
#contact .flow-box {
	border-bottom: 1px solid var(--color1);
	padding-bottom: 40px;
    margin-bottom: 80px;
}
#contact .contact-flow {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
#contact .contact-flow li {
	width: 30%;
	position: relative;
	border: 1px solid var(--color1);
	border-radius: 10px;
	padding: 20px;
}
#contact .contact-flow li.triangle {
	width: 2%;
	border: none;
	border-radius: 0;
	padding: 0;
	height: 60px;
	background: var(--color1);
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
	align-self: center;
}
#contact .contact-flow li span {
	display: block;
	width: 100px;
	background: var(--white-color);
	position: absolute;
	top: -30px;
	left: 50%;
    transform: translateX(-50%);
	font-size: 32px;
	text-align: center;
	font-weight: bold;
	color: var(--color1);
}
#contact .contact-flow li img {
	margin: 0 auto;
	display: block;
	height: 90px;
}
#contact .contact-flow li .flow-title {
	text-align: center;
	padding-top: 10px;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
}
#contact .contact-flow li .contact-text {
	margin-top: 20px;
}
#contact .flow-note {
	width: 100%;
	margin-top: 20px;
}
#contact .title {
    font-size: 28px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 500;
}
#contact .wpcf7-form {
	padding: 0 50px;
}
#contact .wpcf7-form h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
#contact .wpcf7-form h4 span {
	font-size: 14px;
	margin-left: 10px;
	color: #F86E6E;
}
#contact .wpcf7-form p>span {
	margin-bottom: 50px;
	display: block;
}
#contact .wpcf7-form .wpcf7-checkbox {
	display: flex;
}
#contact .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
#contact .wpcf7-form .wpcf7-radio>span {
	margin: 0 50px 0 0;
}
#contact .wpcf7-form h4:before {
    margin-right: 10px;
    padding: 3px 5px;
	line-height: 1;
	border-radius: 2px;
    background-color: #B6B6B6;
    color: var(--white-color);
    content: "任意";
    font-size: 12px;
	display: inline-block;
}
#contact .wpcf7-form h4.req:before {
    background-color: #F86E6E;
    content: "必須";
}
#contact .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input,
#contact .wpcf7-form .wpcf7-radio input {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}
#contact .wpcf7-form .wpcf7-form-control-wrap select {
    width: 240px;
    padding: 15px 10px;
}
#contact .wpcf7-form .button {
    display: block;
    text-align: center;
    max-width: 320px;
	width: 100%;
	border: none;
    color: var(--white-color);
    font-size: 20px;
    padding: 20px 0;
	margin: 50px auto 0;
    box-sizing: border-box;
    background: var(--color2);
    text-decoration: none;
    border-radius: 100px;
	cursor: pointer;
}
#contact .wpcf7-form .button:hover {
	background: var(--color1);
	transition: all 0.2s;
}
#contact .wpcf7-form p>label {
	margin-top: -70px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	display: inline-block;
}
#contact .wpcf7-form p>label:first-of-type {
	margin-top: 0;
}
input:not([type=submit]):not([type=button]):not([type=reset]):not([type=checkbox]):not([type=radio]), textarea,
#contact-table .wpcf7-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #a9a9a9;
    line-height: 1.8;
	border-radius: 5px;
	font-size: 18px;
}
#contact .wpcf7-form #zip,
#contact .wpcf7-form #pref,
#contact .wpcf7-form #tel {
	width: 50%;
}
#contact .wpcf7-form .file-note {
	margin-top: -60px;
	margin-bottom: 80px;
	font-size: 16px;
}
#contact .select-box {
	display: flex;
	align-items: center;
}
#contact .wpcf7-form .back-text {
    margin-left: 10px;
}
#contact .need-box {
	border: 1px solid #F86E6E;
	padding: 30px;
	text-align: center;
	width: 100%;
}
#contact .need-box p span {
	margin-bottom: 0;
}
#contact .need-box .wpcf7-list-item,
#contact .accept label {
	margin: 20px 0 0 0;
	padding: 15px 20px;
	border: 1px solid var(--black-color);
	border-radius: 100px;
	max-width: 280px;
	width: 100%;;
	font-size: 20px;
	font-weight: 500;
}
#contact .need-box .wpcf7-list-item label {
	display: flex;
    align-items: center;
    justify-content: center;
}
#contact .accept .wpcf7-list-item {
	margin: 0 !important;
}
#contact .need-box .wpcf7-list-item input,
#contact .accept label>span .wpcf7-list-item input{
	width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
	cursor: pointer;
}
#contact .accept-box {
	padding: 50px 0;
	max-width: 640px;
	width: 100%;
	border-top: 1px solid var(--black-color);
	border-bottom: 1px solid var(--black-color);
	margin: 50px auto 80px;
}
#contact .accept-text {
  text-align: center;
}
#contact .accept-text a {
	display: inline-block;
	color: #438FFF;
	text-decoration: underline;
	vertical-align: bottom;
}
#contact .accept {
	text-align: center;
	margin-top: 30px;
}
select {
    -webkit-appearance: none;
    appearance: none;
}
#contact .select-box .wpcf7-form-control-wrap {
	position: relative;
}
#contact .select-box .wpcf7-form-control-wrap::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
}
#contact .qr-box {
	width: 94%;
	box-sizing: border-box;
	padding: 50px;
	margin: 0 auto 50px;
	border-radius: 10px;
	background: var(--gray-color);
	display: flex;
	justify-content: space-between;
}
#contact .qr-box .left {
	width: 70%;
}
#contact .qr-box .left h3 {
	font-size: 36px;
	letter-spacing: 5px;
	margin-bottom: 15px;
}
#contact .qr-box .left p {
	margin-bottom: 30px;
}
#contact .telbox{
    width: 94%;
	text-align: center;
	border: 1px solid var(--black-color);
	box-sizing: border-box;
	padding: 50px;
	margin: 0 auto;
	border-radius: 10px;
}
#contact .telbox h3{
	font-weight: bold;
	font-size: 36px;
	letter-spacing: 5px;
	margin: 0 0 15px 0;
	display: block;
}
#contact .telbox h4{
	font-size: 48px;
	line-height: 1;
	letter-spacing: 5px;
	margin: 0 0 15px 0;
	display: inline-block;
}
#contact .telbox p:first-of-type{
	margin-bottom: 20px;
}
#contact .telbox .time span {
	font-weight: 500;
}

/*----フォームのカスタマイズ----*/
.wpcf7-response-output {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F86E6E;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    z-index: 9999;
    transition: opacity 1s ease-in-out;
}
.wpcf7-response-output.fixed-success-message {
    top: auto;
    bottom: 80px;
}
.fade-out {
    opacity: 0;
}
.wpcf7-not-valid {
    background-color: #FFD5E4 !important; /* エラーのある入力欄の背景色を変更 */
    border-color: #ff4d6d !important; /* ボーダーも強調 */
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    border: 0;
    z-index: 999;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.2em 1em;
    border: none;
    width: 80%;
}

/*----Media query----*/
@media screen and (max-width: 1380px){
	section .inner {
		width: 100%;
		padding: 0 3%;
	}
	#about,#recruit,#contact {
    	padding: 120px 3%;
	}
	#about .img-about {
    	width: 64%;
	}
	#about .about-cnt {
    	padding: 40px;
	}
}
@media screen and (max-width: 1180px){
	.slider-message {
		left: 5%;
	}
	.slider-message .en-catch {
    	font-size: 50px;
	}
	.slider-message .catch {
    	font-size: 36px;
    	padding-top: 10px;
	}
	.slider-message .catch {
    	font-size: 36px;
	}
}
@media screen and (max-width: 1100px){
	#contact .wpcf7-form {
    	padding: 0;
	}
	#contact .contact-box {
    	padding: 0;
	}
}
@media screen and (max-width: 1000px){
	main{
		padding-top: 60px !important;
	}
	#contact .inner2 {
    	padding: 100px 30px 50px;
	}
	#recruit .recruit-cnt {
    	padding: 50px 30px 0;
	}
}
@media screen and (max-width: 768px){
	main{
		padding-top: 60px !important;
	}
	section .inner,section .inner2 {
		width: 100%;
		padding: 0 15px;
	}
	.slider-message {
		top: 40%;
	}
	.slider-message .catch {
        font-size: 22px;
        padding-top: 15px;
        margin-bottom: 20px;
    	letter-spacing: 3px;
    }
	.slider-message .en-catch {
        width: 95%;
        max-width: 420px;
		font-size: 44px;
		line-height: 1.2;
    }
	.slider-message .en-sub {
        width: 95%;
        max-width: 300px;
    }
	.slider-message .en-sub img {
        display: block;
    }
    .slider-message .sub-catch {
        font-size: 16px;
		letter-spacing: 3px;
		line-height: 1.7;
		padding-right: 3%;
    }
	.slider-message .sub-catch br:nth-of-type(2) {
		display: block;
	}
	.slider-message .line {
        max-width: 420px;
		width: 90%;
    }
	.slider-message {
        left: 3%;
    }
	.inner .t-text {
		margin-bottom: 30px;
	}
	#about {
    	display: block;
	}
	#about, #recruit, #contact {
        padding: 80px 15px;
    }
	#about .img-about {
        width: 100%;
    }
	#about .about-cnt {
		width: 100%;
		padding: 30px 20px;
		margin-left: auto;
		margin-right: auto;
		position: relative;
		z-index: 1;
	}
	#about .about-cnt h2 {
		text-align: center;
	}
	#strength {
	    padding: 80px 0 0;
	}
	#strength .strength-cnt li {
		width: 48%;
		padding: 20px 10px;
		text-align: left;
		margin-bottom: 15px;
		font-size: 16px;
	}
	#strength .strength-cnt li img {
		width: auto;
		height: 100px;
		margin: 0 auto 20px;
		display: block;
	}
	#strength .strength-cnt li p {
		width: 100%;
		text-align: center;
	}
	#recruit .inner2 {
		padding: 0;
	}
	#recruit .recruit-cnt {
        padding: 30px 30px 0;
    }
	#recruit .recruit-cnt ul {
		width: 100%;
	}
	#recruit .recruit-cnt ul li .desc-title {
		font-size: 20px;
	}
	#recruit .recruit-cnt ul li {
    	margin-bottom: 30px;
	}
	#recruit .recruit-cnt .title {
		font-size: 26px;
		margin: 50px 0 30px;
	}
	#recruit .recruit-cnt .sub-title {
		font-size: 24px;
		padding-bottom: 0;
		margin-bottom: 10px;
	}
	#recruit .recruit-cnt .type-cnt {
		border: 1px solid var(--color1);
		padding: 20px 15px;
		border-radius: 10px;
		margin-bottom: 30px;
	}
	#recruit .recruit-cnt .type-cnt li:last-of-type {
		margin-bottom: 0;
	}
	#right-fit {
    	padding: 80px 0;
	}
	#right-fit h2 {
    	padding-top: 65px;
	}
	#right-fit .fit-cnt {
    	display: block;
    	margin-bottom: 80px;
	}
	#right-fit .fit-cnt li {
    	width: 90%;
		margin: 0 auto 30px;
	}
	#right-fit .fit-cnt li h3 {
        margin: 15px 0 10px;
		line-height: 1.7;
    }
	#right-fit .t-text br {
		display: none;
	}
	#contact .inner2 {
        padding: 30px 20px;
    }
	#contact h2 {
    	padding-top: 70px;
    	margin-bottom: 60px;
	}
	#contact .contact-flow {
    	display: block;
    	margin-bottom: 10px;
	}
	#contact .contact-flow li {
    	width: 100%;
    	padding: 20px;
	}
	#contact .contact-flow li:nth-of-type(2n) {
		width: 100%;
		padding: 10px 0 20px;
	}
	#contact .contact-flow li:nth-of-type(2n) img {
		margin: 0 auto;
		display: block;
		transform: rotate( 90deg );
	}
	#contact .wpcf7-form .wpcf7-checkbox {
		display: block;
	}
	#contact .wpcf7-form .wpcf7-list-item.first {
		margin-bottom: 20px;
	}
	#contact .wpcf7-form h4 {
		font-size: 18px;
	}
	#contact .wpcf7-form h4 span {
		font-size: 12px;
		margin-left: 8px;
	}
	#contact .need-box {
    	padding: 30px 20px;
	}
	#contact .need-box .wpcf7-list-item, #contact .accept label {
		padding: 10px;
		max-width: 200px;
		width: 100%;
		font-size: 18px;
	}
	#contact .accept-box {
    	padding: 50px 0 30px;
		margin: 50px auto;
	}
	#contact .accept-text br {
		display: none;
	}
	#contact .qr-box {
    	padding: 30px 20px;
    	display: block;
	}
	#contact .qr-box .left {
		width: 100%;
	}
	#contact .qr-box .left h3 {
		font-size: 26px;
		text-align: center;
	}
	#contact .qr-box .right {
		display: none;
	}
	#contact .wpcf7-form .button,
	.btn a {
		max-width: 240px;
		font-size: 18px;
		padding: 15px 0;
		margin: 0 auto;
		line-height: 2;
	}
	#contact .wpcf7-form .button {
		margin: 0 auto 30px;
	}
	#contact .telbox {
		padding: 30px 15px;
	}
	#contact .telbox h3 {
		font-size: 26px;
	}
	#contact .telbox h4 {
		font-size: 30px;
		letter-spacing: 2px;
		padding-left: 40px;
		background: url(../images/img_tel.svg) bottom 0px left no-repeat;
		background-size: 30px;
	}
	#contact .telbox .time {
		font-size: 14px;
	}
	.card,
	#blog,#single,
	#footer-cta .footer-cta-cnt {
		padding: 50px 0 !important;
	}
	.card .card-cnt.one-colum li img {
		width: 100%;
	}
	.card .card-cnt.one-colum li {
		display: block;
		width: 100%;
	}
	.card .card-cnt.one-colum li div {
		width: 100%;
		margin-top: 15px;
	}
	.card .card-cnt.two-colum li,
	.card .card-cnt.three-colum li {
		width: 100%;
	}
	.card .card-cnt li.card-border {
		padding: 20px;
	}
	.card .card-cnt li h3 {
		font-size: 20px;
		margin: 20px 0 10px;
	}
	.card .card-cnt.one-colum li h3 {
		font-size: 20px;
		margin: 0 0 10px;
		padding-bottom: 10px;
	}
	.card .card-cnt li h3 span {
		font-size: 16px;
		letter-spacing: 1px;
	}
}