/*
Theme Name: life_tpl_2025
Theme URI: 
Template: lightning
Description:Lifecommunication Theme
Author:Lifecommunication Co., Ltd
Tags: 
Version: 0.5.1
*/
/*--------------------------コモン---------------------------*/
/*--ブラウザの標準に設定されている、htmlタグの設定をクリア--*/
BODY,
H1,
H2,
H3,
H4,
H5,
H6,
P,
TH,
TD,
OL,
UL,
LI,
DL,
DT,
DD,
FORM,
PRE {
  /*--Netscape6 は  が未対応なので、全てのタグを記述して指定--*/
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 100%;
  background-color: #fff;
  color: #3B4043;
}

html,
body {
  /*iphoneにて、table内の文字サイズが自動調整されてしまうのを回避*/
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html {
  /*サイト内リンク位置を調整*/
  scroll-snap-type: y proximity;
  scroll-padding-top: 100px;
  /*スムーススクロール*/
  scroll-behavior: smooth;
  /*他の動きが問題なければ実装*/
}

/*見出し*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  font-weight: bold;
}

/*本文*/
td,
th,
li,
dt,
dd,
input,
textarea,
.entryBody,
.entryMore {
  font-size: 16px;
  font-weight: bold;
}

p {
  font-size: 16px;
  font-weight: normal;
}

a {
  text-decoration: none !important;
  color: #3B4043;
}

a:hover {
  opacity: 0.9;
}
.breadcrumb-list li {
	font-weight: normal;
}
.fade-in {
	opacity: 0;
   transform: translateY(30px); 
   transition: 0.8s ease;
	-webkit-transition:0.8s ease;
   will-change: opacity, transform;
}
.fade-in.show {
   opacity: 1;
   transform: translateY(0);
}
li.fade-in.show:nth-child( 2 ) {transition-delay:.2s;}
li.fade-in.show:nth-child( 3 ) {transition-delay:.4s;}
li.fade-in.show:nth-child( 4 ) {transition-delay:.6s;}
li.fade-in.show:nth-child( 5 ) {transition-delay:.8s;}
li.fade-in.show:nth-child( 6 ) {transition-delay:1.0s;}
li.fade-in.show:nth-child( 7 ) {transition-delay:1.2s;}
li.fade-in.show:nth-child( 8 ) {transition-delay:1.4s;}
li.fade-in.show:nth-child( 9 ) {transition-delay:1.6s;}
li.fade-in.show:nth-child( 10 ) {transition-delay:1.8s;}

.tablet-br{
	display:none;
}
@media only screen and (max-width: 991px) {
	.tablet-br{
		display:block;
	}
}
@media only screen and (max-width: 767px) {
	.tablet-br{
		display:none;
	}
	.fade-in {
		opacity: 1;
		transform: translateY(0px);
	}

}
/*フォント*/
.noto-sans-jp-Medium {
  font-family: sans-serif;
  font-weight: 500;
}

.noto-sans-jp-Bold {
  font-family: sans-serif;
  font-weight: 700;
}

.noto-sans-jp-Heavy {
  font-family: sans-serif;
  font-weight: 900;
}

.Handwriting-Ernie {
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*全幅設定*/
.full-width {
  margin: 0 calc(50% - 50vw);
  /*padding: 5em calc(50vw - 50%);*/
}

.widget {
  margin-bottom: 0;
}

/*スペーシング*/
.mt-100 {
  margin-top: 100px;
}

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

/*表示・非表示*/
/* 769pxより大きい画面（タブレット・PC） */
@media only screen and (min-width: 992px) {
  .w-991_row {
    display: none !important;
  }

  .w-991_heigh {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .w-991_heigh {
    display: none !important;
  }

  .w-991_row {
    display: block;
  }
}

@media only screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block;
  }
}

/* 768px→425より小さい画面（スマホ）*/
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none !important;
  }
}

.mobile-nav-btn-right .vk-mobile-nav-menu-btn,
.vk-mobile-nav-menu-btn.position-right {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media (min-width: 992px) {

  .mobile-nav-btn-right .vk-mobile-nav-menu-btn,
  .vk-mobile-nav-menu-btn.position-right {
    display: block !important;
  }
}

.global-nav--layout--float-right .global-nav-list {
  display: none;
  ;
}

/*----------------------アニメーション----------------------*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

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

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

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

/* 上から */

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

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

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

/* 左から */

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

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

/* 右から */

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

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

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}


/*==================================================
くるっ
===================================*/


/* X 軸（縦へ） */
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0;
  }

  to {
    transform: rotateX(-360deg);
    opacity: 1;
  }
}

/*　Y軸（横へ） */
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
    opacity: 0;
  }

  to {
    transform: rotateY(-360deg);
    opacity: 1;
  }
}

/* Z 軸（左へ） */
.rotateLeftZ {
  animation-name: rotateLeftZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateLeftZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }

  to {
    transform: rotateZ(-360deg);
    opacity: 1;
  }
}

/*　Z 軸（右へ） */
.rotateRightZ {
  animation-name: rotateRightZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }

  to {
    transform: rotateZ(360deg);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}


/*==================================================
にゅーん
===================================*/

/* 滑らかに変形して出現 */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*----------------------アニメーション----------------------*/
/*見出しstart*/
.title01 {
  font-size: 47px;
  font-weight: 900;
}

.title01 span {
  font-size: 12px;
  display: block;
  line-height: 12px;
  font-weight: 500;
}

/*見出しend*/
/*ボタンstart*/
a.more {
  font-size: 12px;
  position: relative;
  width: 135px;
  padding: 23px 0;
  display: block;
  color: #3B4043;
}
.single-recruitment a.more {
  width: 155px;
}


a.more:before {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #23AC38;
  position: absolute;
  top: 0;
  right: 0;
}

a.more:after {
  content: "→";
  display: block;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-45deg);
  font-size: 25px;
  line-height: 62px;
  width: 62px;
  height: 62px;
  text-align: center;
}

a.more:hover:after {
  transition: .2s;
  transform: rotate(-45deg) translate(15px, 0px);
}

/*ボタンend*/
/*ヘッダーstart*/
.site-header {
  box-shadow: none;
  position: absolute;
}

.site-header-logo {
  padding-top: 0;
}

.site-header--layout--nav-float .site-header-logo a {
  background: white;
  border-radius: 0 0 40px 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.site-header-logo img {
  max-height: 200px;
  width: 200px;
}

.site-header-container.container {
  margin: 0;
  padding: 0;
}

.vk-mobile-nav-menu-btn.position-right {
  border: none;
  border-radius: 10px;
  width: 70px;
  height: 70px;
}

.vk-mobile-nav-menu-btn {
  border: none;
  background-image: url("images/menu-open.jpg");
  background-size: cover;
}

.vk-mobile-nav-menu-btn.menu-open {
  border: none;
  background-image: url("images/menu-close.jpg");
  background-size: cover;
}
.vk-mobile-nav {
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 100%;
    display: block;
    padding: 45px 10px;
    overflow: scroll;
    top: 0;
    transition: all .5s ease-out;
    background: none;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-bottom: none;
    width: 80vw;
    max-width: 100%;
    height: auto;
}
@media (min-width: 992px) {
  body.device-pc .vk-mobile-nav {
    display: block;
  }
}

@media (max-width: 991px) {
  .site-header-logo img {
    max-width: 100px;
    height: 100px;
  }

  .site-header--layout--nav-float .site-header-logo a {
    display: block;
    width: fit-content;
  }
}

@media only screen and (max-width: 768px) {
  .vk-mobile-nav-menu-btn.position-right {
    border-radius: 7px;
    width: 50px;
    height: 50px;
  }
}

.alert-info {
  display: none;
}

.vk-mobile-nav nav>ul {
  border: none;
}

.vk-mobile-nav nav ul li {
  text-align: center;
  /*width: 80vw;*/
	margin: 0 auto;
}

.vk-mobile-nav .widget_nav_menu ul li a,
.vk-mobile-nav nav ul li a {
  border: none;
  padding: 1em .5em;
  color: #23AC38;
}

.vk-mobile-nav .widget_nav_menu ul li:last-child,
.vk-mobile-nav nav ul li:last-child {
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.vk-mobile-nav .widget_nav_menu ul li:last-child a,
.vk-mobile-nav nav ul li:last-child a {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: block;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background: white;
  margin: 10px;
  border: 10px solid #FEB73E;
}

.vk-mobile-nav .widget_nav_menu ul li:last-child a span,
.vk-mobile-nav nav ul li:last-child a span {
  color: #693407;
  font-size: 14px;
  display: block;
  position: absolute;
  top: 55%;
  text-align: center;
  text-align: center;
  position: relative;
  z-index: 0;
}

.vk-mobile-nav .widget_nav_menu ul li:last-child a span:before,
.vk-mobile-nav nav ul li:last-child a span:before {
  content: "Entry";
  color: #23AC38;
  font-size: 41px;
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.vk-mobile-nav.vk-mobile-nav-open.vk-mobile-nav-drop-in {
  background: none;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-bottom: none;
  /*top:45px;*/
	position: fixed;
	width: 80vw; /* ← 画面幅に固定 */
  max-width: 100%;
  height: auto;
	/*transform: translateX(-50%);
  left: 50%;*/
}


.vk-mobile-nav nav>ul {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 3px 6px #00000028;
  border-radius: 0px 0px 100px 0px;
}

.vk-mobile-nav-open {
  overflow: hidden;
}

/*ヘッダーend*/
.yellowBG {
  background-size: auto auto;
  background-color: rgba(255, 212, 139, 1);
  background-image: repeating-linear-gradient(127deg, transparent, transparent 3px, rgba(254, 183, 62, 1) 3px, rgba(254, 183, 62, 1) 18px);
  color: white;
  padding: 0 10px;
  margin: 0 5px;
}

.greenBG {
  background-size: auto auto;
  background-color: rgba(123, 205, 136, 1);
  background-image: repeating-linear-gradient(127deg, transparent, transparent 3px, rgba(35, 172, 56, 1) 3px, rgba(35, 172, 56, 1) 18px);
  color: white;
  padding: 0 10px;
  margin: 0 5px;
}

/*エントリーボタンstar*/
.EntryCta {
  position: fixed;
  bottom: 2%;
  right: 5px;
  z-index: 9999;
  overflow: hidden;
  width: 160px;
  height: 160px;
}

.EntryCta a {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  ;
  display: block;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background: white;
  margin: 10px;
  border: 10px solid #FEB73E;
}

.EntryCta a span {
  color: #693407;
  font-size: 14px;
  display: block;
  position: absolute;
  top: 55%;
  text-align: center;
  text-align: center;
  position: relative;
  z-index: 0;
}

.EntryCta a span:before {
  content: "Entry";
  color: #23AC38;
  font-size: 41px;
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}



@media only screen and (max-width: 768px) {
  .EntryCta {
    right: 0;
    bottom: 0;
  }

  

  .EntryCta a span:before {
    font-size: 31px;
    top: -40px;
  }
}
@media (max-width:600px) {
  .EntryCta {
    width: 120px;
    height: 120px;
  }
  .EntryCta a {
    border: 6px solid #FEB73E;
  }
}
/*エントリーボタンend*/
/*CTAstart*/
.CTA {
  z-index: 0;
  padding: 20px;
  position: relative;
}

.CTA:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: auto auto;
  background-color: rgba(123, 205, 136, 1);
  background-image: repeating-linear-gradient(127deg, transparent, transparent 3px, rgba(35, 172, 56, 1) 3px, rgba(35, 172, 56, 1) 18px);
  z-index: -1;
}

.CTA a {
  width: 100%;
  height: 100%;
  background: white;
  display: block;
  padding: 50px 0 100px;
}

.CTA a:hover {
  opacity: 1;
}

.CTA h2.title01 {
  color: #3B4043;
  position: relative;
  z-index: 0;
  text-align: center;
}

.CTA h2.title01:after {
  content: "Application Guidelines";
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFA8A8;
  display: block;
  line-height: .7em;
  position: absolute;
  z-index: -1;
  bottom: -35px;
  left: 25%;
  z-index: -1;
  transform: rotate(-7deg);
}

.CTA a.more:before {
  top: 35%;
  right: -50px;
  background: #FFA8A8;
  width: 80px;
  height: 80px;
}

.CTA a.more:after {
  top: 35%;
  right: -50px;
  width: 80px;
  height: 80px;
  line-height: 80px;
}

@media only screen and (max-width: 768px) {
  .CTA h2.title01:after {
    white-space: nowrap;
    position: absolute;
    inset: auto 0;
  }
}

@media only screen and (max-width: 767px) {
  .CTA h2.title01 {
    font-size: 34px;
  }

  .CTA h2.title01:after {
    font-size: 28px;
    left: calc(50% - 140px);
  }

  .CTA a.more:after {
    top: auto;
    bottom: -50px;
    left: calc(50% - 40px);
  }

  .CTA a.more:before {
    top: auto;
    bottom: -50px;
    left: calc(50% - 40px);
  }
}

/*CTAend*/
/*フッターstat*/
.site-footer {
  background: #4D4D4D;
  color: white;
  padding: 50px 0;
}

.site-footer .nav li a,
.site-footer nav li a {
  color: white;
}

.site-body-bottom {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .site-footer {
    padding: 50px 0 180px;
  }
}

/*フッターend*/
/*トップページstart*/
/*トップページ-メインビジュアルstart*/
body {
  background-image: url("images/graph-paper.png");
  background-color: rgba(255, 255, 255, 0.9);
  /*background-blend-mode: lighten;*/
}

.site-body {
  padding-top: 0;
}

.swiper-backface-hidden .swiper-slide {
  height: 80vh;
}

.ltg-slide picture {
  width: 100%;
  height: 100%;
}

.ltg-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section#TopMainvisual {
  height: 20vh;
  padding: 20px;
}

.main-copy {
  font-size: 36px;
  text-align: center;
  padding: .5em 0;
}

.sub-copy {
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
	.main-copy {
		line-height: 1.7;
	}
}
@media only screen and (max-width: 768px) {
  .main-copy p:nth-of-type(1) {
    text-align: left;
    margin-bottom: 5px;
  }

  .main-copy p:nth-of-type(2) {
    text-align: right;
  }

  .main-copy {
    /*width: 50%;*/
    margin: 0 auto;
  }
  .main-copy p {
    font-size: 36px;
    font-weight:bold;
  }
}

@media only screen and (max-width: 767px) {
  .site-body {
    padding-top: 30px;
  }

  .swiper-backface-hidden .swiper-slide {
    height: 55vh;
  }

  section#TopMainvisual {
    padding: 0;
    height: 30vh;
  }

  .main-copy {
    padding: .5em 0;
	  width:100%;
  }

  .main-copy p {
    width: 100%;
  }

  /* 1番目のp：左寄せ */
  .main-copy p:nth-of-type(1) {
    text-align: left;
    margin-bottom: 5px;
  }

  /* 2番目のp：右寄せ */
  .main-copy p:nth-of-type(2) {
    text-align: right;
  }

  .main-copy p {
    font-size: 36px;
  }

  .sub-copy {
    font-size: 16px;
    text-align: left;
  }

  .site-body-bottom {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 600px) {
	.ltg-slide picture img {
		object-position: 40%;
	}
}
@media only screen and (max-width: 550px) {
  .main-copy p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 450px) {
  .main-copy p {
    font-size: 24px;
  }
  .main-copy p:nth-of-type(1) {
    text-align: left;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 415px) {
	.ltg-slide picture img {
		object-position: 35%;
	}
	.swiper-backface-hidden .swiper-slide {
        height: 50vh;
	}
}
@media only screen and (max-width: 360px) {
	.ltg-slide picture img {
		object-position: 40%;
	}
	.swiper-backface-hidden .swiper-slide {
        height: 45vh;
	}
}
/*トップページ-メインビジュアルend*/
/*トップページ-おしらせstart*/
section#TopNews {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 100px 0;
}

section#TopNews ul li {
  margin: 40px 0;
}

section#TopNews ul li a {
  display: flex;
  gap: 20px;
}

section#TopNews .info-CatLabel {
  background: #23AC38;
  padding: 2px 2px;
  color: white;
  width: 104px;
  height: 32px;
  text-align: center;
}
section#TopNews .info-date{
	width: 86px;
}
section#TopNews .info-title{
	width: calc(100% - 230px);
}

@media only screen and (max-width: 768px) {
	section#TopNews .info-CatLabel {
	/*width: 24%;*/
}
section#TopNews .info-date {
	width: 20%;
}
section#TopNews .info-title {
	width: 53%;
}
}
@media only screen and (max-width: 767px) {
  section#TopNews>div:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  section#TopNews {
    gap: 0px;
    margin: 5px 0;
    flex-direction: column;
    margin: 20px 0;
  }

  section#TopNews ul li a {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  section#TopNews .info-CatLabel {
    /*width: 33%;*/
	margin-right: 15px;
  }

  section#TopNews .info-date {
    width: 50%;


  }

  section#TopNews .info-title {
    width: 100%;
  }
}

/*トップページ-おしらせend*/
/*トップページ-仕事を知るstart*/
section#TopWork {
  background-image: url("images/TopWorkBG.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
}

section#TopWork .title01 {
  color: white;
  position: relative;
  z-index: 0;
  margin-bottom: 1em;
}

section#TopWork .title01:after {
  content: "Learn about Dearlinks' work";
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFA8A8;
  display: block;
  width: 400px;
  line-height: .7em;
  text-align: center;
  transform: rotate(-5deg);
  position: absolute;
  bottom: -30px;
  left: -120px;
  z-index: -1;
}

section#TopWork .Contents01 {
  background-image: url("images/TopWorkBG-Contents01.png");
  background-color: white;
  background-size: cover;
  padding: 50px 100px;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  z-index: 0;
}

section#TopWork .Contents01 img {
  width: 148px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

section#TopWork .Contents01 h3 {
  color: #693407;
  text-align: center;
  margin-bottom: 1em;
}

section#TopWork .Contents01 a.more {
  position: absolute;
  right: -70px;
  top: 55%;
  color: #FFA8A8;
}

section#TopWork .Contents01 a.more:before,
section#TopWork .Contents01 a.more:after {
  top: -40px;
  right: 30%;
}

section#TopWork .Contents01 a.more:before {
  background: #FFA8A8;
}

section#TopWork .Contents02 {
  padding: 50px 0;
}

section#TopWork .Contents02 h3,
section#TopWork .Contents03 h3 {
  color: white;
  text-align: center;
  font-size: 24px;
  margin-bottom: 1.5em;
}

section#TopWork .Contents02 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 70px;
  max-width: 740px;
  margin: 0 auto;
}

section#TopWork .Contents02 ul li {
  width: 200px;
  padding: 20px 0;
  border-radius: 50px;
  text-align: center;
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

section#TopWork .Contents02 ul li span {
  font-size: 13px;
}
section#TopWork .Contents02 ul li:nth-child(5) span {
  font-size: 16px;
}

section#TopWork .Contents02 p {
  color: white;
  max-width: 880px;
  margin: 50px auto;
}

section#TopWork .Contents02 a.more {
  background: white;
  border-radius: 30px;
  width: fit-content;
  padding: 23px 80px 23px 50px;
  text-align: center;
  margin: 0 auto;
}

section#TopWork .Contents02 a.more:before {
  background: #FFA8A8;
}

section#TopWork .Contents03 {
  padding-top: 50px;
}

section#TopWork .Contents03 .article {
  display: flex;
  max-width: 512px;
  border: 4px solid #FFA8A8;
  border-radius: 150px;
  margin: 0 auto;
  background: white;
  padding: 50px 40px;
}

section#TopWork .Contents03 .article h3 {
  color: #693407;
  font-size: 22px;
}

section#TopWork .Contents03 .article img {
  width: 147px;
}

@media only screen and (max-width: 991px) {
  section#TopWork .Contents02 ul {
    gap: 20px 45px;
  }
}
@media only screen and (max-width: 768px) {
	section#TopWork .Contents03 .article {
	  border-radius: 80px;
	}
}
@media only screen and (max-width: 767px) {
  section#TopWork {
    padding-top: 50px;
    background-image: url(images/TopWorkBG-sp.jpg);
  }

  section#TopWork .title01:after {
    left: -35px;
    white-space: nowrap;
    position: absolute;
    font-size: 28px;
  }

  section#TopWork .Contents01 h3 {
    width: 60%;
    display: block;
    margin-left: auto;
    text-align: left;
    margin-bottom: 3rem;
  }

  section#TopWork .Contents01 {
    padding: 50px 10px 120px;
    width: 100%;
  }

  section#TopWork .Contents01 img {
    width: 116px;
    top: 30px;
    left: 10px;
  }

  section#TopWork .Contents01 a.more {
    right: -2px;
    top: auto;
    bottom: -1%;
  }

  section#TopWork .Contents02 {
    padding: 30px 0;
  }

  section#TopWork .Contents02 p {
    color: white;
    max-width: 880px;
    margin: 25px auto;
  }

  section#TopWork .Contents03 {
    padding-top: 30px;
  }

  section#TopWork .Contents02 ul {
    gap: 15px 10px;
    justify-content: space-between;
  }

  section#TopWork .Contents02 ul li {
    font-size: 16px;
    padding: 10px 0;
	width: 166px;width: 47%;
    height: 64px;
  }

  section#TopWork .Contents03 .article {
    border-radius: 80px;
    padding: 2px 40px 45px;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  section#TopWork .Contents02 h3,
  section#TopWork .Contents03 h3 {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width:500px) {
	section#TopWork .Contents02 ul li:nth-child(5) span {
	  font-size: 14px;
	}
}
@media only screen and (max-width:450px) {
    section#TopWork .Contents02 ul li {
        width: 48%;
	}
	section#TopWork .Contents02 ul li {
        font-size: 15px;
	}
}
@media only screen and (max-width:415px) {
	section#TopWork .Contents02 ul li {
        font-size: 14px;
	}
}
@media only screen and (max-width:390px) {
	section#TopWork .Contents02 ul li:nth-child(5) span {
	  font-size: 13px;
	}
}
@media only screen and (max-width:330px) {
	section#TopWork .Contents02 ul li:nth-child(5) span {
	  font-size: 12px;
	}
}
@media only screen and (max-width:319px) {
	section#TopWork .Contents02 ul li {
        width: 100%;
	}
}
/*トップページ-仕事を知るend*/
/*トップページ-魅力end*/
section#TopAttractive .title01 {
  position: relative;
  z-index: 0;
  margin-bottom: 1em;
  text-align: center;
}

section#TopAttractive .title01:after {
  content: "The appeal of Dear Links";
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #23AC38;
  display: block;
  line-height: .7em;
  position: absolute;
  z-index: -1;
  bottom: -35px;
  left: 25%;
  z-index: -1;
  transform: rotate(-7deg);
}

section#TopAttractive .Contents01 {
  padding: 50px 0;
}

section#TopAttractive .Contents01 div.greenBG {
  font-size: 30px;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 0 10px;
}

section#TopAttractive .Contents01 p {
  font-size: 18px;
  width: fit-content;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  section#TopAttractive .title01:after {
    white-space: nowrap;
    position: absolute;
    inset: auto 0;
    font-size: 31px;
  }

  section#TopAttractive .Contents01 p {
    margin: 0 auto 5px;
  }
  section#TopAttractive .Contents01 .Contents__greenBG__box.sp > p{
    font-size:1.7rem;
  }
  section#TopAttractive .Contents01 .Contents__greenBG__box.sp{
    margin-bottom:15px;
    margin-top: -20px;
  }
}

@media only screen and (max-width: 767px) {
  section#TopAttractive .Contents01 .Contents__greenBG__box.sp{
    margin-top: 0px;
  }
  section#TopAttractive .Contents01 {
    padding: 10px 0 20px;
  }

  section#TopAttractive .Contents01 p {
    font-size: 16px;
    margin-top: 10px;
  }

  section#TopAttractive .title01:after {
    line-height: .7em;
    bottom: -16px;
    left: -3%;
    white-space: nowrap;
    position: absolute;
    inset: auto 0;
    font-size: 31px;
  }

  .Contents__greenBG__box.sp {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  section#TopAttractive .Contents__greenBG__box p.greenBG {
    margin: 0;
    display: inline;
  }


}

/* タブメニュー */
.tab-menu {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.tab-menu li {
  cursor: pointer;
  background: white;
  width: 257px;
  height: 257px;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  padding-bottom: 1em;
  position: relative;
}

.tab-menu li.selected {
  background: #fff;
  border: 5px solid #23AC38;
}

.tab-menu li.selected .click {
  display: none;
}

/* タブコンテンツ */
.tab-content {
  display: none;
  padding: 40px 0;
}

.tab-content.selected {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tab-content.selected img {
  width: 535px;
}

.tab01 {
  width: 100%;
  margin: 0 auto 50px;
}

/*タブのスタイル*/
.tab_menu {
  width: 257px;
  height: 257px;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  float: left;
  transition: all 0.2s ease;
  position: relative;
  margin: 0 10px;
  padding-bottom: 20px;
}

.tab_menu span {
  color: #FEB73E;
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  .tab01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 0;
  }
}

/*ラジオボタンを全て消す*/
input[name="tab_menu"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_contents {
  display: none;
  padding: 40px 0;
  clear: both;
  overflow: hidden;
  transition: .5s opacity;
}

.tab_contents img {
  width: 535px;
}

/*選択されているタブを表示*/
#menu01:checked~#menu01,
#menu02:checked~#menu02,
#menu03:checked~#menu03,
#menu04:checked~#menu04 {
  display: flex;
  gap: 20px;
  align-items: center;
}

/*選択されているタブのスタイル*/
.tab01 input:checked+.tab_menu {
  border: 4px solid #23AC38;
}

.click {
  color: #23AC38;
  line-height: 1em;
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0 10px;
  width: fit-content;
  font-size: 16px;
}

.click:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  transform: rotate(-15deg);
  background: #23AC38;
  left: 0;
  position: absolute;
}

.click:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  transform: rotate(15deg);
  background: #23AC38;
  right: 0;
  position: absolute;
}

.tab01 input:checked+.tab_menu .click {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .tab_menu {
    width: 212px;
    height: 212px;
  }
}

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

  #menu01:checked~#menu01,
  #menu02:checked~#menu02,
  #menu03:checked~#menu03,
  #menu04:checked~#menu04 {
    flex-direction: column;
  }

  .tab_menu {
    width: 321px;
    height: 130px;
    border-radius: 70px;
    padding-bottom: 30px;
    margin-bottom: 1em;
  }
  .tab_menu span {
    padding-top: 10px;
  }

  .click {
    bottom: 10px;
  }

}

@media only screen and (max-width: 767px) {
  .tab_menu {
    width: calc(50% - 2px);
    height: auto;
    font-size: 13px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1px;
    margin: 0px;
    padding: 5px 0 30px;
  }

  .tab_menu span {
    font-size: 14px;
  }

  .tab_contents {
    padding: 0;
  }

  .click {
    font-size: 12px;
  }
}

/*トップページ-魅力end*/
section#TopStaff {
  position: relative;
}

section#TopStaff .Contents01 {
  padding: 100px 0;
}

section#TopStaff .Contents01 .title01 {
  z-index: 0;
  position: relative;
  margin-bottom: 2em;
}

section#TopStaff .Contents01 .title01:after {
  content: "Get to know the workers";
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FEB73E;
  display: block;
  line-height: .7em;
  position: absolute;
  z-index: -1;
  transform: rotate(-7deg);
  font-size: 41px;
}

.arrow_box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  z-index: 10;
}

.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
}

.prev-arrow {
  background: #23AC38;
}

.next-arrow {
  background: #FEB73E;
}

.prev-arrow::before,
.next-arrow::before {
  width: 100%;
  height: 100%;
  font-size: 36px;
  line-height: 1em;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-arrow::before {
  content: "→";
  padding-bottom: 5px;padding-bottom: 0px;
}

.next-arrow::before {
  content: "→";
  padding-bottom: 5px;padding-bottom: 0px;
}

section#TopStaff .Contents02 {
  width: 60%;
  position: absolute;
  left: 43%;
  top: 0;
}

section#TopStaff .slick-slide {
  margin-right: 30px;
  scale: .85;
  width: 320px;
}

section#TopStaff .slick-item {
  border: 5px solid #FEB73E;
  padding: 20px 20px 10px;
  background: white;
  height: 460px;
}

section#TopStaff .slick-item .InnerContents01 {
  height: 100%;
  position: relative;
}

section#TopStaff .slick-item .thumbnail {
  background: #FEB73E;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#TopStaff .slick-item .thumbnail img {
  width: 200px;
}

section#TopStaff .slick-item .StaffInfo {
  display: flex;
  gap: 5px;
  margin: 8px 0;
}

section#TopStaff .slick-item .staff-name,
section#TopStaff .slick-item .staff-year {
  font-size: 16px;
}

section#TopStaff .slick-item .staff-catchphrase {
  font-size: 18px;
	font-weight: bold;
}

section#TopStaff a.more {
  color: #FEB73E;
  text-align: center;
  width: fit-content;
  padding-bottom: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

section#TopStaff a.more:before,
section#TopStaff a.more:after {
  top: -40px;
}

section#TopStaff a.more:before {
  background: #23AC38;
}

section#TopStaff .slick-slide {
  scale: .85;
}

section#TopStaff .slick-slide.slick-current {
  scale: 1;
  transition: .2s;
}

@media only screen and (max-width: 768px) {
  section#TopStaff .Contents01 .title01:after {
    font-size: 27px;
  }
}

@media only screen and (max-width: 767px) {
  section#TopStaff .Contents01 {
    padding: 0;
    width: 95vw;
  }

  section#TopStaff .Contents01 .title01 {
    margin-bottom: 0;
    line-height: 1;
  }
  section#TopStaff .Contents01 .title01 span {
    margin-top: 20px;
  }

  .arrow_box {
    margin-right: 0;
    margin-left: auto;
  }

  .prev-arrow,
  .next-arrow {
    width: 50px;
    height: 50px;
  }

  .prev-arrow::before,
  .next-arrow::before {
    width: 50px;
    height: 50px;
    font-size: 24px;
	font-family: "noto-sans-japanese", sans-serif;
    font-family: "source-han-sans-japanese", sans-serif;
  }

  section#TopStaff .Contents02 {
    width: 100%;
    position: inherit;
    left: auto;
    margin-top: 20px;
  }

  section#TopStaff .slick-item {
    height: 390px;
    width: 280px !important;
    padding: 10px;
  }

  section#TopStaff .slick-item .thumbnail img {
    width: 150px;
  }

  section#TopStaff .slick-slide {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  section#TopStaff .Contents01 .title01:after {
    white-space: nowrap;
    position: absolute;
    inset: auto 0;
    left: -21px;left: 0px;
  }
}

/*経営理念start*/
section#TopMessage {
  position: relative;
  margin: 100px 0;
  z-index: 0;
}

section#TopMessage .main-Message {
  text-align: center;
  font-size: 30px;
  margin-bottom: 1em;
}

section#TopMessage p {
  text-align: center;
  font-size: 18px;
}

section#TopMessage:before {
  content: "”";
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  transform: rotate(180deg);
  font-size: 310px;
  line-height: 0em;
  color: #FFA8A8;
  z-index: -1;
}

section#TopMessage:after {
  content: "”";
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  display: block;
  position: absolute;
  bottom: -100px;
  right: 0;
  font-size: 310px;
  line-height: 0em;
  color: #FFA8A8;
  z-index: -1;
}

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

  section#TopMessage:after,
  section#TopMessage:before {
    font-size: 180px;
  }

  section#TopMessage .main-Message {
    font-size: 24px;
    text-align: left;
  }

  section#TopMessage p {
    text-align: left;
  }

  section#TopMessage {
    margin: 170px 0 100px;
  }
}

/*経営理念end*/
/*フォトライブラリーstart*/
section#TopPhoto {
  padding: 100px 0;
}

section#TopPhoto .slick-photo .slick-slide {
  padding: 0 10px;
  /* 内側余白で隙間を演出 */
  box-sizing: border-box;
  width: 400px;
}

@media only screen and (max-width: 991px) {
  .main-section {
    margin-bottom: 0rem;
  }
}

@media only screen and (max-width: 767px) {
  section#TopPhoto .slick-photo .slick-slide {
    width: 230px;
  }

  section#TopPhoto {
    padding: 30px 0;
  }

  .footer-nav .container ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/*フォトライブラリーend*/

/*トップページend*/
/*下層ページ共通start*/
.page-header {
  max-width: 900px;
  z-index: 0;
  padding: 20px;
  position: relative;
  margin: 50px auto;
}

.page-header:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-size: auto auto;
  background-color: rgba(123, 205, 136, 1);
  background-image: repeating-linear-gradient(127deg, transparent, transparent 3px, rgba(35, 172, 56, 1) 3px, rgba(35, 172, 56, 1) 18px);
  z-index: -1;
}

.page-header-inner.container {
  width: 100%;
  height: 100%;
  background: white;
  display: block;
  padding: 40px 0 80px;
  margin: 0 auto;
}

.page-header-title {
  color: #3B4043;
  position: relative;
  z-index: 0;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
}

.page-header-title:after {
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFA8A8;
  display: block;
  line-height: .7em;
  position: absolute;
  z-index: -1;
  bottom: -35px;
  left: 25%;
  z-index: -1;
  transform: rotate(-7deg);
}
.page-header-inner.container.container {
  max-width: initial;
}

.single-staff .page-header-title:after {
  content: "Get to know the workers";
  white-space: nowrap;
  position: absolute;
  inset: auto 0;
}

.post-type-archive-recruitment .page-header-title:after,
.single-recruitment .page-header-title:after {
  content: "Application Guidelines";
  white-space: nowrap;
  position: absolute;
  inset: auto 0;

}

.page-id-60 .page-header-title:after {
  content: "Job Application";
  left: 35%;
}

.post-type-post .page-header-title:after {
  content: "Information";
  left: 38%;
}

.post-type-post .archive-header {
  display: none;
}

.page-id-195 .page-header-title:after {
  content: "Privacy Policy";
  left: 38%;
}

.entry-meta-data-list dt {
  background-color: #FFA8A8 !important;
}
@media only screen and (max-width: 991px) {
	.page-header {
		max-width: 90%;;
	}
}
@media only screen and (max-width: 767px) {
  .post-type-post .page-header-title:after {
    left: 0%;
    white-space: nowrap;
    position: absolute;
    font-size: 31px;
    inset: auto 0;
  }

  .page-id-60 .page-header-title:after {
    left: 0%;
    white-space: nowrap;
    position: absolute;
    font-size: 31px;
    inset: auto 0;
  }
}
@media only screen and (max-width: 575px) {
	.page-header {
        max-width: calc(100% - 30px);
	}
}

/*下層ページ共通end*/
/*社員インタビューstart*/
.single-staff .d-flex {
  justify-content: space-between;
  margin-top: 50px;
}

.StaffContents01,
.StaffContents02 {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.StaffContents01 .profile {
  margin-bottom: 20px;
}

.StaffContents01 .profile .Photo {
  background: #FEB73E;
  width: 340px;
  height: 262px;
  display: flex;
  align-items: center;
  margin: 0 auto 20px;
}

.StaffContents01 .profile .Photo img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}

.StaffContents01 .profile .staff-info {
  width: 340px;
  margin: 0 auto;
  padding: 0 5px;
}

.StaffContents01 .profile .staff-name,
.StaffContents01 .profile .staff-year,
.StaffContents01 .profile .staff-hobby {
  font-size: 22px;
  margin-bottom: .5em;
  position: relative;
  padding-left: 1em;
}

.StaffContents01 .profile .staff-name:before,
.StaffContents01 .profile .staff-year:before,
.StaffContents01 .profile .staff-hobby:before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background: #FEB73E;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .5em;
}

.StaffContents02 .staff-catchphrase {
  font-size: 39px;
  padding-top: 40px;
	font-weight: bold;
}

.StaffContents01 .Qbox,
.StaffContents02 .Qbox {
  box-shadow: 0px 3px 6px #00000029;
  border: 3px solid #23AC38;
  background: white;
  height: 300px;
  padding: 0 20px;
  position: relative;
}

.StaffContents01 .Qbox .Qbox_title,
.StaffContents02 .Qbox .Qbox_title {
  background-image: linear-gradient(to right, #333 60%, transparent 60%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  display: flex;
  position: relative;
}

.StaffContents01 .Qbox:before,
.StaffContents02 .Qbox:before {
  content: "";
  display: block;
  width: 65px;
  height: 72px;
  background: linear-gradient(-47deg, white 0%, white 50%, #23AC38 50%, #23AC38 100%);
  position: absolute;
  left: 0px;
  top: 0px;
}

.StaffContents01 .Qbox .Qbox_title h3,
.StaffContents02 .Qbox .Qbox_title h3 {
  flex: 1;
  padding: 20px 40px 20px 0;
  padding: 20px 0px 20px 30px;
  position: relative;
}

.StaffContents01 .Qbox p,
.StaffContents02 .Qbox p {
  padding: 20px 40px;padding: 20px 0px;
}

.StaffContents02 img {
  width: 400px;
}

.StaffContents03 .title01 {
  position: relative;
  z-index: 0;
  font-size: 34px;
  text-align: center;
  z-index: 0;
  margin-bottom: 2em;
}

.StaffContents03 .title01:after {
  content: "Time schedule";
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #23AC38;
  display: block;
  line-height: .7em;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  bottom: -35px;
  transform: rotate(-7deg);
  font-size: 41px;
}

.StaffContents03 .time_schedule-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.StaffContents03 .time_schedule-wrapper img {
  width: 400px;
}

.StaffContents03 .time_schedule-wrapper .time_schedule-txt {
  background-image: url(images/TopWorkBG-Contents01.png);
  background-color: white;
  background-size: cover;
  border: 4px solid #FFA8A8;
  padding: 50px 30px;
  border-radius: 100px;
  width: 414px;
}

.StaffContents03 .time_schedule-wrapper .time_schedule-txt p {
  font-size: 18px;
  padding: 20px 0;
}

.StaffContents03 .time_schedule-wrapper .time_schedule-txt p.ruled-line:after {
  content: "";
  display: block;
  height: 1px;
  width: 210px;
  background-image: linear-gradient(to right, #333 60%, transparent 60%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 20px 0;
}

.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li {
  display: flex;
  gap: 50px;
  font-size: 24px;
}

.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li .time_schedule_time {
  min-width: 75px;
}

.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li:first-child {
  color: white;
  font-weight: 900;
  background: #FEB73E;
  border-radius: 50%;
  padding: 10px;
  width: fit-content;
  margin-left: 96px;
}

.StaffContents03 .time_schedule-wrapper:nth-child(3) ul.time_schedule-box li:first-child {
  background: #FFA8A8;
}

.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p {
  padding-top: 40px;
  font-size: 24px;
  line-height: 1em;
	font-weight: bold;
	line-height: 1.3;
}

.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p:nth-child(2) {
  border-left: 1px solid black;
  display: flex;
  gap: 50px;
  align-items: center;
  position: relative;
  padding-left: 46px;
  width: 79%;
}

.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p:nth-child(2):before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFA8A8;
  transform: translate(-15px, 0px);
  position: absolute;
  left: 0;
  top: 43px;
  z-index: 1;
}

.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li:last-child p {
  padding-bottom: 0;
}

.StaffContents03 .time_schedule-wrapper:nth-child(3) .time_schedule-txt {
  border-color: #23AC38;
}

.StaffContents04 a.more {
  margin: 0 auto;
  width: 160px;
}

.StaffContents04 a.more:before {
  background: #FFA8A8;
}
@media only screen and (max-width: 1100px) {
	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p {
		font-size: 20px;
	}
	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p:nth-child(2):before {
		top: 40px;
	}
	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li:first-child {
		margin-left: 80px;
	}
	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p:nth-child(2) {
		padding-left: 50px;
		width: calc(100% - 75px);
	}
	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li {
    	gap: 32px;
	}
	.StaffContents03 .time_schedule-wrapper .time_schedule-txt {
    	border-radius: 50px;
	}
	
}
@media only screen and (max-width: 991px) {
  .StaffContents03 .time_schedule-wrapper ul.time_schedule-box {
    width: 100%;
  }

  .StaffContents03 .time_schedule-wrapper img {
    width: 30%;
  }


}

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

  .d-flex.pc {
    display: flex !important;
	  flex-wrap: wrap;
  }

  .Staff_contens_block.sp {
    display: none;
  }
}

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

  .StaffContents01,
  .StaffContents02 {
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
    display: contents;
  }
  .StaffContents01 .profile {
    order: 1;
  }
  .staff-catchphrase{
    order: 2;
    margin-bottom: 20px;
  }
  .StaffContents01 .Qbox.Qbox1{
    order: 3;
  }
  .StaffContents01 .Qbox.Qbox2{
    order: 4;
  }
  .StaffContents02 .Qbox.Qbox3{
    order: 5;
  }
  .StaffContents02 .Qbox.Qbox4{
    order: 6;
  }
  .StaffContents02 figure{
    order: 7;
    margin: auto;
  }

  .StaffContents01 .Qbox,
  .StaffContents02 .Qbox {
    height: auto;
    margin-bottom: 20px;
	width: 100%;
  }
.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p {
    padding-top: 20px;
    font-size: 20px;

}
  .StaffContents03 .time_schedule-wrapper.container:first-of-type {
    display: flex;
    flex-direction: column;
  }

  .StaffContents03 .time_schedule-wrapper.container:nth-of-type(2) {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }

 .StaffContents02 .staff-catchphrase {
    font-size: 26px;
    padding-top: 20px;
}

  .StaffContents03 .time_schedule-wrapper ul.time_schedule-box li .time_schedule_time {
    /*width: 23%;*/
  }

  .StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p:nth-child(2) {
    width: 70%;width: calc(100% - 75px);
    line-height: 1.2;
	  padding-left: 38px;
  }

  .StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p:nth-child(2):before {
    top: 20px;
  }

  .StaffContents03 .time_schedule-wrapper img {
    width: 100%;
  }

  .StaffContents03 .time_schedule-wrapper .time_schedule-txt {
    width: 100%;
  }

  .StaffContents03 .time_schedule-wrapper:nth-child(3) .time_schedule-txt {
    width: 100%;
  }
	.single-staff .d-flex {
    margin-top: 0px;
}
	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li {
    gap: 10px;
    font-size: 20px;
}

	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li:first-child {
    	margin-left: 60px;
		width: 50px;
        height: 50px;
	}
}
@media only screen and (max-width: 500px) {
	.StaffContents03 .time_schedule-wrapper ul.time_schedule-box li p {
		font-size: 18px;
	}
	.StaffContents01 .Qbox:before, 
	.StaffContents02 .Qbox:before {
		width: 40px;
		height: 46px;
	}
	.StaffContents01 .Qbox .Qbox_title h3, 
	.StaffContents02 .Qbox .Qbox_title h3 {
    	padding: 20px 0 20px 20px;
		font-size: 1.3rem;
	}
	.StaffContents03 .time_schedule-wrapper .time_schedule-txt {
        border-radius: 30px;
		padding: 20px 30px;
	}
}
/*社員インタビューend*/
/*募集要項start*/
.recruitmentList {
  margin: 100px 0;
}

.recruitmentList .recruitmentItem {
  padding: 20px 20px 80px 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background: white;
  position: relative;
  margin-bottom: 50px;
}

.recruitmentList .recruitmentItem a:hover {
  color: #3B4043;
  opacity: .7;
}

.recruitmentList .recruitmentItem:before {
  content: "";
  display: block;
  width: 65px;
  height: 72px;
  background: linear-gradient(-47deg, white 0%, white 50%, #23AC38 50%, #23AC38 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.recruitmentList .recruitmentItem .d-flex {
  gap: 25px;
}

.recruitmentList .recruitmentItem h2 {
  margin-bottom: 1em;
  margin-left: 1em;
  position: relative;
}

.recruitmentList .recruitmentItem .recruitmentItem-img {
  width: 275px;
}

.recruitmentList .recruitmentItem .recruitmentItem-img img {
  width: 100%;
}

.recruitmentList .recruitmentItem figure.wp-block-table,
.recruitmentList figure.wp-block-table {
  flex: 1;
}

.single-recruitment table {
  border-top: 0px solid #98A6B5;
  border-bottom: 0px solid #98A6B5;
}

.recruitmentList .recruitmentItem tr{
  border-top: 20px solid transparent;
}
.single-recruitment tr {
  border-top: 50px solid transparent;
}
.recruitmentList .recruitmentItem tr:first-child {
  border-top: 0px solid transparent;
}

.recruitmentList .recruitmentItem td {
  padding: 0;
  padding-left: 2em;
  border: none;
  font-weight: normal;
}

.recruitmentList .recruitmentItem td:first-child {
  width: 100px;
  padding-left: 0;
  vertical-align: text-top;
}

.recruitmentList .recruitmentItem td span,
.single-recruitment td span {
  width: 100%;
  display: block;
  background: #FEB73E;
  border-radius: 20px;
  padding: 5px;
  padding-left: 5px;
  color: white;
  text-align: center;
}

.recruitmentList .recruitmentItem a.more {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media only screen and (max-width: 767px) {
  .recruitmentList {
    margin: 0;
  }

  .recruitmentList .recruitmentItem .d-flex {
    flex-direction: column;
  }

  .recruitmentList .recruitmentItem td {
    display: block;
    padding-left: 0;
  }

  .recruitmentList .recruitmentItem .recruitmentItem-img {
    width: 100%;
  }

  .recruitmentList .recruitmentItem tr td:nth-of-type(2) {
    margin-top: 10px;
  }

  .recruitmentList .recruitmentItem tr {
    border-top: 30px solid transparent;
  }
}

/*募集要項end*/
/*募集要項詳細ページstart*/
.recruitment01 .wp-block-table {
  background: white;
}

.single-recruitment td:first-child {
  width: 250px;
  padding: 0 20px;
}

.single-recruitment td {
  padding: 0;
  padding-left: 2em;
  font-weight: normal;
}
.wp-block-table td, .wp-block-table th {
    border: 0px solid;
}
.single-recruitment tr {
  background-image: linear-gradient(to right, #98A6B5 60%, transparent 60%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.single-recruitment tr:last-child td {
  border-bottom: 50px solid transparent;
}

.recruitmentItemTitle {
  font-size: 36px;
  margin: 40px 0;
}

.Challenging {
  display: flex;
  background: white;
  border: 5px solid #FEB73E;
  border-radius: 50px;
  padding: 20px;
  gap: 20px;
}

.Challenging-title {
  font-size: 18px;
  width: 200px;
  border: 2px;
  background-image: linear-gradient(to bottom, #FEB73E 60%, transparent 60%);
  background-size: 3px 20px;
  background-repeat: repeat-y;
  background-position: right;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Challenging p:last-child{
	width: calc(100% - 220px);
}

.single-recruitment .CTA {
  display: none;
}

.single-recruitment a.more {
  margin-right: 0;
  margin-left: auto;
}

.single-recruitment a.more:before {
  background: #FFA8A8;
}

@media only screen and (max-width: 767px) {
  .Challenging {
    display: block;
    flex-direction: column;
    border-radius: 30px;
  }
  .Challenging-title,
  .Challenging p:last-child{
  	width: 100%;
  }
  .Challenging-title{	
  	padding-bottom: 15px;
  }
  .Challenging p:last-child{	
  	padding-top: 15px;
  }

  .recruitmentItemTitle {
    font-size: 27px;
    margin: 0px 0 30px;
  }

  .Challenging-title {
    background-image: repeating-linear-gradient(90deg, #FEB73E, #FEB73E 12px, transparent 12px, transparent 16px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    margin-bottom: 5px;
    padding-top: 5px;
  }

  .single-recruitment td {
    display: block;
    border: none;
    padding-left: 0;
  }

  .wp-block-table tr td:nth-of-type(2) {
    padding-top: 10px;
    padding:10px 20px 5px;
  }

  .single-recruitment tr:last-child td {
    border-bottom: 10px solid transparent;
  }
  .single-recruitment tr:last-child td:last-child {
        padding: 10px 20px 20px;
  }
}

/*募集要項詳細ページend*/
/*エントリーページstart*/
.entry01 .flow ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.entry01 .flow ul li {
  border: 6px solid #FFA8A8;
  border-radius: 30px;
  box-shadow: 0px 3px 6px #00000029;
  background: white;
  font-size: 34px;
  position: relative;
  display: flex;
  align-items: center;
  width: 174px;
  height: 411px;
  justify-content: center;
}

.entry01 .flow ul li.entry-arrow {
  width: 50px;
  height: 50px;
  background-image: url(images/entry-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  border: none;
}

.entry01 .flow ul li .flow-number {
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  color: #FEB73E;
  font-size: 22px;
  background: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  text-align: center;
  box-shadow: 0px 3px 6px #00000028;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry01 .flow ul li h4 {
  writing-mode: vertical-rl;
  font-size: 34px;
}

div.entry03 {
  background: white;
  padding: 20px;
}

div.entry03 .EntryForm input[type=text],
div.entry03 .EntryForm input[type="email"],
div.entry03 .EntryForm input[type="tel"],
div.entry03 .EntryForm textarea {
  border: 2px solid #23AC38;
}

div.entry03 .EntryForm h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

div.entry03 .EntryForm h3 .Required {
  background: red;
  color: #fff !important;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 5px;
  margin-left: 15px;
  font-size: 14px;
}

div.entry03 .EntryForm input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

div.entry03 .EntryForm span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

div.entry03 .EntryForm span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid var(--vk-color-border-form);
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

div.entry03 .EntryForm input[type="radio"]:checked+span.wpcf7-list-item-label::after {
  display: block;
}

div.entry03 .EntryForm span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #23AC38;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

div.entry03 .EntryForm .btn-submit {
  width: fit-content;
  margin: 0 auto;
}

div.entry03 .EntryForm .btn-submit p input {
  width: 300px !important;
  background: #23AC38;
  border-radius: 30px;
  padding: 15px;
  border: none;
}

div.entry03 .EntryForm .btn-submit p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

div.entry03 .EntryForm div#autozip {
  display: none;
}

/*チェックボックス*/
div.entry03 .EntryForm input[type="checkbox"] {
  display: none;
}

div.entry03 .EntryForm input[type="checkbox"]+span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}

div.entry03 .EntryForm input[type="checkbox"]+span:after,
div.entry03 .EntryForm input[type="checkbox"]+span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

div.entry03 .EntryForm input[type="checkbox"]+span:before {
  border: 1px solid #aaaaaa;
  background-color: #ffffff;
  height: 25px;
  width: 25px;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0;
}

div.entry03 .EntryForm input[type="checkbox"]+span::after {
  border: none;
  background: url(https://lifecomtest.sakura.ne.jp/recruit.lifecommunication.co.jp/wp-content/uploads/2025/05/check.png);
  background-size: contain;
  height: 15px;
  width: 15px;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

div.entry03 .EntryForm input[type="checkbox"]:checked+span::after {
  display: block;
}
@media only screen and (max-width: 991px) {
	.entry01 .flow ul li.entry-arrow {
    height: 35px;
    margin: 0 10px;
}
}
@media only screen and (max-width: 767px) {
  .entry01 .flow ul {
    flex-direction: column;
	  padding-top: 0px;
  }

  .entry01 .flow ul li h4 {
    writing-mode: horizontal-tb;
	  font-size: 22px;
  }

  .entry01 .flow ul li {
    width: 100%;
    height: 100px;
	  margin-top: 25px;
  }
.entry01 .flow ul li .flow-number {
    top: -26px;
    font-size: 13px;
    width: 50px;
    height: 50px;
	line-height: 1.1;
	padding-top: 3px;
}
	.wp-block-group.entry02.mb-100.is-layout-constrained.wp-block-group-is-layout-constrained {
    margin-bottom: 10px;
}
     .entry01 .flow ul li.entry-arrow {
       height: 41px;
        margin-top: 10px;
        width: 31px;
        box-shadow: none;
    }
.entry01 .flow ul li.entry-arrow {

    background-image: url(images/entry-arrow-down.png);
}
  div.entry03 {
    padding: 10px 0px;
  }
	.entry-body h2.wp-block-heading.has-text-align-center {
		font-size: 26px!important;
}
	
}

/*エントリーページend*/
/*個人情報保護方針start*/
.page-id-195 h2 {
  margin-bottom: 10px;
  color: #23AC38;
}

.page-id-195 ul {
  padding-left: 1.5em;
}

.page-id-195 ul li {
  margin-top: .5em;
  margin-bottom: .5em;
  list-style: circle;
}

/*個人情報保護方針end*/
/*お知らせstart*/
.vk_post_imgOuter_singleTermLabel {
  background-color: #FFA8A8 !important;
  /*font-size: 20px;*/
  padding: .3em .8em;
}

.vk_post_body.media-body {
  position: relative;
}

.vk_post-btn-display.media .vk_post_btnOuter {
  display: flex;
  flex-direction: column;
  width: fit-content;
  position: absolute;
  right: 0;
}

a.btn.btn-sm.btn-primary.vk_post_btn {
  font-size: 0px;
  background: none;
  border: none;
  padding: 0;
  width: 62px;
  height: 62px;
  position: relative;
}

a.btn.btn-sm.btn-primary.vk_post_btn:before {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #23AC38;
  position: absolute;
  top: 0;
  right: 0;
}

a.btn.btn-sm.btn-primary.vk_post_btn:after {
  content: "→";
  display: block;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-45deg);
  font-size: 25px;
  line-height: 62px;
  width: 62px;
  height: 62px;
  text-align: center;
  font-weight: 600;
}

a.btn.btn-sm.btn-primary.vk_post_btn:hover:after {
  transition: .2s;
  transform: rotate(-45deg) translate(15px, 0px);
}

.vk_post_btnOuter.text-right:after {
  content: "view more";
  font-size: 12px;
  color: #F39801;
}

.entry-meta-item-updated,
.entry-meta-item-author {
  display: none;
}

@media only screen and (max-width: 767px) {
  .vk_post_imgOuter_singleTermLabel {
    /*font-size: 8px;*/
  }

  .vk_post-btn-display.media .vk_post_btnOuter {
    justify-content: center;
    align-items: center;
  }
	a.btn.btn-sm.btn-primary.vk_post_btn {
    width: 43px;
        height: 43px;
}
	a.btn.btn-sm.btn-primary.vk_post_btn:before {
    width: 45px;
    height: 45px;
}
a.btn.btn-sm.btn-primary.vk_post_btn:after {
    font-size: 25px;
    line-height: 45px;
    width: 45px;
    height: 45px;
}
}

/*お知らせend*/
/*コピーライトstart*/
footer .container.site-footer-copyright p:nth-child(2) {
  display: none !important;
}

/*コピーライトend*/
/*ページトップボタンstart*/
.page_top_btn {
  bottom: 4%;
  left: 0;
  background: #FEB73E;
  border-radius: 0 10px 10px 0;
  height: 150px;
  width: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-image: var(--ver_page_top_button_url);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: 30% 30%;
  display: none;
  transition: all 0.3s ease-out allow-discrete;
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
}

.scrolled .page_top_btn {
  transition: all 0.3s ease-out allow-discrete;
}

.page_top_btn:after {
  position: absolute;
  content: "TOP";
  color: white;
  font-weight: bold;
  right: 20%;
  bottom: 35%;

}

@media only screen and (max-width: 991px) {
.page_top_btn {
	display:block;
	}
}

/*ページトップボタンend*/
/*reCAPTCHA v3のバッジ*/
.grecaptcha-badge {
	bottom: 12rem !important;
}
@media only screen and (max-width: 767px) {
	.grecaptcha-badge {
	bottom: 9rem !important;
}
}
