@charset "utf-8";
/* =====================
  採用共通
===================== */
:root {
    --fsize-10: .625rem;
    --fsize-12: .75rem;
	--fsize-13: .8125rem;
	--fsize-14: .875rem;
	--fsize-15: .9375rem;
    --fsize-16: 1rem;
	--fsize-18: 1.125rem;
	--fsize-20: 1.25rem;
	--fsize-22: 1.375rem;
	--fsize-24: 1.5rem;
	--fsize-26: 1.625rem;
	--fsize-28: 1.75rem;
	--fsize-30: 1.875rem;
    --fsize-32: 2rem;
	--fsize-36: 2.25rem;
	--fsize-40: 2.5rem;
	--fsize-42: 2.625rem;
	--fsize-44: 2.75rem;
    --fsize-46: 2.875rem;
	--fsize-48: 3rem;
	--fsize-56: 3.5rem;
	--fsize-60: 3.75rem;
	--fsize-64: 4rem;
	--fsize-72: 4.5rem;
    --fsize-100: 6.25rem;
    --fsize-130: 8.125rem;
    --font-base: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    --font-en: "Satisfy", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-title: "M PLUS 1p", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    --color-base: #333;
    --color-white: #fdfdfd;
    --color-green: #8ebf41;
    --color-backgreen: #e5f4ec;
    --color-blue: #499bc0;
}

* {
  box-sizing: border-box;
}
html {
    scroll-padding-top: 108px;
    scroll-behavior: smooth;
    /*Edge対策*/
    overscroll-behavior: none;
}
body {
    color: var(--color-base);
    font-family: var(--font-base);
}
section {
    padding: 72px 0;
    margin-top: -1px;
}
section .editor {
    line-height: 1.8;
}
.container {
    max-width: 1720px;
    margin: 0 auto;
}
.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all .5s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
ul {
    list-style: none;
}
.editor ul {
    list-style: unset;
}
a {
    text-decoration: none;
    transition: all .3s;
}
.btn {
    display: flex;
    justify-content: center;
}
/* Chrome、Safari以外 */
summary {
display: block;
list-style: none;
}
/* Chrome、Safari */
summary::-webkit-details-marker {
display:none;
}
h3.section-title {
   font-size: var(--fsize-40);
   color: var(--color-green);
   font-family: var(--font-title);
   font-weight: 700;
   letter-spacing: .06em;
   display: inline-flex;
   flex-direction: column-reverse;
   align-items: center;
   margin-top: 0;
   margin-bottom: .5em;
   position: relative;
   z-index: 0;
}
h3.section-title span {
    font-size: var(--fsize-100);
    color: #cfe6bf;
    font-family: var(--font-en);
    letter-spacing: .04em;
    position: relative;
    z-index: -1;
    font-weight: 400;
}
.h4-wrap {
    text-align: center;
}
.h4-wrap h4 {
    font-size: var(--fsize-30);
    font-weight: 600;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    position: relative;
}
.h4-wrap h4::before {
    content: "";
    display: block;
    background: url("../img/recruit/title_koa.svg") no-repeat center / contain;
    width: 72px;
    height: 32px;
}
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.wp-block-table td,
.wp-block-table th {
    white-space: pre-line !important;
}
/* =====================
  Responsive
===================== */
@media screen and (max-width: 1720px) {
    .container {
    max-width: 95%
    }
}
@media screen and (max-width: 1500px) {
    h3.section-title {
   font-size: var(--fsize-32);
    }
     h3.section-title span {
   font-size: var(--fsize-72);
    }
     .h4-wrap h4 {
        font-size: var(--fsize-24);
    }
}
@media screen and (max-width: 1300px) {
    section {
        padding: 60px 0;
    }
   h3.section-title {
   font-size: var(--fsize-24);
    }
     h3.section-title span {
   font-size: var(--fsize-60);
    }
    .h4-wrap h4 {
        font-size: var(--fsize-20);
    }
    .h4-wrap h4::before {
        width: 54px;
    }
}
@media screen and (max-width: 1100px) {
    section {
        padding: 50px 0;
    }
}
@media screen and (max-width: 480px) {
    section {
        padding: 30px 0;
    }
    h3.section-title {
        font-size: var(--fsize-22);
    }
    h3.section-title span {
        font-size: var(--fsize-48);
    }
    .h4-wrap h4 {
        font-size: var(--fsize-18);
    }
    .h4-wrap h4::before {
        width: 48px;
    }
}
/* =====================
  採用ヘッダー
===================== */
.recruit-header {
    font-family: var(--font-base);
    color: var(--color-base);
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    background-color: var(--color-white);
    z-index: 999;
}
.recruit-header .header-inner {
    max-width: 1800px;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.recruit-header .site-logo {
    display: flex;
    flex-direction: column;
    justify-content: end;
    max-width: 300px;
    min-width: 200px;
    margin: 0;
}
.recruit-header .site-logo span {
    font-size: var(--fsize-18);
    font-weight: 500;
    text-align: right;
    margin-top: -10px;
}
.recruit-header .global-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 2em;
}
.recruit-header .global-nav ul {
    display: flex;
    align-items: center;
    gap: 3em;
}
.recruit-header .global-nav ul li {
    font-size: var(--fsize-18);
}
.recruit-header .global-nav ul li a {
    color: var(--color-base);
    font-weight: 500;
    transition: all 0.3s;
}
.recruit-header .global-nav ul li:hover a {
    font-weight: 600;
}
.recruit-header .nav-sub {
    display: flex;
    align-items: center;
    gap: 2em;
}
.recruit-header .nav-sub ul {
    display: flex;
    align-items: center;
    gap: 2em;
}
.recruit-header .nav-sub ul li img {
    width: 40px;
}
.recruit-header .nav-sub ul li:hover img,
.recruit-header .drawer-nav ul li:hover img {
    opacity: .7;
    transition: all .3s;
}

.recruit-header .entry-button {
    color: var(--color-white);
    font-size: var(--fsize-30);
    font-weight: 600;
    padding: .2em 1em .3em 1em;
    border-radius: 10px;
    letter-spacing: .06em;
    height: fit-content;
  position: relative;
  background: linear-gradient(90deg, #1b6dae, #5db7e8);
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position .3s ease;
}
.recruit-header .entry-button:hover {
  background-position: 100% 50%;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1em;
}
.global-nav .nav-sub .sns {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 15px; 
  z-index: 98;
  background-color: rgba(230,230,230,0.7);
  padding: .5vw;
  border-radius: 6px;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5vw;
}
.global-nav .nav-sub .sns a {
    display: block;
    width: 40px;
    height: 40px;
}
/*以下中野さんCSS(一部修正)*/
    header.active {
        z-index: 20;
    }
    header .h-inner {
        position: static;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: initial;
    }
    header {
        position: relative;
    }
    .drawer-nav{
        position: fixed;
        right: -101%;
        top: 0;
        z-index: 99;
        width: 30%;
        height: 100dvh;
        padding: 20px 5% 0;
        background-color: #f2f2f2;
        transform: translateX(100%);
        transition: transform .4s ease;
    }
    header.active .drawer-nav {
        display: block;
        right: 0;
        transform: translateX(0);
        transition: all .5s ease;
    }
    header.active .drawer-nav .sns {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 20px;
        width: 230px;
        margin-inline-start: 0;
    }
    header.active .drawer-nav ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 1.5em 0 2em 0;
        padding-left: 1em;
    }
    header.active .drawer-nav p {
        font-weight: 500;
        color: var(--color-green);
    }
    header.active .drawer-nav ul li a {
        color: #333;
    }
    header.active .drawer-nav ul li:hover a {
        font-weight: 600;
    }
    .hamburger {
        z-index: 1002;
        display: flex;
        justify-content: center;
        align-items: center;
        width: clamp(2.5rem, 2.438rem + 0.31vw, 2.813rem);
        height: clamp(2.5rem, 2.438rem + 0.31vw, 2.813rem);
        background-color: #353434;
        border-radius: 10px;
        cursor: pointer;
        border: none;
        -webkit-appearance: none;
       appearance: none;
       border: none;
       padding: 0;
    }
    .hamburger:hover {
        opacity: 0.7;
    }
    .hamburger span {
        position: relative;
        display: block;
        width: 70%;
        height: 1px;
        background-color: #FFF;
        transition: all .5s ease;
    }
    .hamburger span::before,
    .hamburger span::after {
        content: '';
        position: absolute;
        left: 0;
        top: -10px;
        display: block;
        width: 100%;
        height: 1px;
        background: #FFF;
        transition: all .5s ease;
    }
    .hamburger span::after {
        top: 10px;
    }
    header.active .hamburger span {
        background-color: transparent;
    }
    header.active .hamburger span::before {
        transform: translateY(10px) rotate(45deg); 
    }
    header.active .hamburger span::after {
        transform: translateY(-10px) rotate(-45deg);
    }
    .overlay {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -999;
        width: 0;
        height: 100dvh;
        background-color: rgba(0,0,0,.3);
    }
    body.is-open {
        overflow: hidden;
    }
    body.is-open .overlay {
        width: 100dvw;
        z-index: 1;
    }
   

/* =====================
  Responsive
===================== */
@media screen and (max-width: 1820px) {
.recruit-header .header-inner {
    max-width: 95%;
}
.recruit-header .global-nav ul li {
    font-size: var(--fsize-16);
}

}
@media screen and (max-width: 1720px) {
    .recruit-header .global-nav ul {
    gap: 1.5em;
    }
    .recruit-header .icon-nav ul {
        gap: 1.5em;
        padding: 0;
    }
}
@media screen and (max-width: 1450px) {
    .recruit-header .global-nav ul {
        gap: 1.3em;
    }
    .recruit-header .global-nav ul li {
      font-size: var(--fsize-14);
}
}
@media screen and (max-width: 1350px) {
    .recruit-header .global-nav .nav-main {
        display: none;
    }
}
@media screen and (max-width: 1300px) {
    .recruit-header {
        height: 90px;
    }
    .recruit-header .header-inner {
        height: 90px;
    }
    .recruit-header .site-logo span {
        font-size: var(--fsize-16);
    }
    
    html {
        scroll-padding-top: 90px;
    }
}
@media screen and (max-width: 1200px) {
    .recruit-header {
        height: 80px;
    }
    .recruit-header .header-inner {
        height: 80px;
    }
    .recruit-header .site-logo span {
        font-size: var(--fsize-15);
    }
    .recruit-header .icon-nav ul li img {
    width: 36px;
    }
.recruit-header .nav-sub .entry-button,
.recruit-header .drawer-nav .entry-button {
    font-size: var(--fsize-24);
} 
html {
        scroll-padding-top: 80px;
    } 
}
@media screen and (max-width: 900px) {
     header.active .drawer-nav {
        width: 50%;
    }
    .recruit-header .site-logo {
        max-width: 250px;
        min-width: 180px;
    }
}
@media screen and (max-width: 480px) {
    .recruit-header {
        height: 70px;
    }
    .recruit-header .header-inner {
        height: 70px;
        gap: .5vw;
    }
    .recruit-header .site-logo {
        max-width: 200px;
        min-width: 150px;
    }
    .recruit-header .site-logo span {
        font-size: var(--fsize-14);
    }
    .recruit-header .nav-sub .entry-button,
    .recruit-header .drawer-nav .entry-button {
    font-size: var(--fsize-20);
}
    .recruit-header .drawer-nav .entry-button {
    margin-left: 1em;
}
    header.active .drawer-nav {
        width: 100%;
    }
    html {
        scroll-padding-top: 70px;
    }
    .global-nav .nav-sub .sns {
        gap: 20px;
        padding: 1vw;
    }
    .global-nav .nav-sub .sns a {
    display: block;
    width: 38px;
    height: 38px;
}
}
@media screen and (max-width: 380px) {
    .nav-right {
        gap: .4em;
    }
}
/* =====================
  採用MV
===================== */
main {
	padding-top: calc(100svh - 120px);
}
.recruit-mv {
    padding: 0;
    position: fixed;
    top: 120px;
    z-index: 0;
    backface-visibility: hidden;
    will-change: transform;
    width: 100%;
	height: calc(100svh - 120px);
    /*Safari対策*/
     isolation: isolate;
  background: rgba(255,255,255,0.01);	
}
/*Safari対策*/
.recruit-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .2s;
  z-index: 1;
}
.recruit-mv.is-covered::after {
  opacity: 1;
}
.recruit-mv .editor p {
    color: var(--color-green);
    font-family: var(--font-title);
    font-size: var(--fsize-60);
    font-weight: 600;
    background-color: rgba(253,253,253,0.9);
    padding: .3em .5em;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: .08em;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    z-index: 3;
}
.recruit-mv .editor p strong {
     font-size: var(--fsize-72);
     font-weight: 800;
}
.recruit-mv .entry-float {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: clamp(200px, 10.25rem + 11.25vw, 380px);
  aspect-ratio: 38 / 13;
  background: linear-gradient(90deg, #1b6dae, #5db7e8);
  border-radius: 10px;
  color: var(--color-white);
  box-shadow: 8px 8px #cfe0f1;
  z-index: 3;
  pointer-events: auto;
}
.recruit-mv .entry-float:hover {
   transform: scale(1.05);
   transition: all .3s;
}
.recruit-mv .entry-ja {
  font-size: clamp(var(--fsize-24), 1.2rem + 1.5vw, var(--fsize-48));
  font-weight: 700;
  letter-spacing: normal;
  display: block;
}
.recruit-mv .entry-en {
  font-size: clamp(var(--fsize-16), 0.825rem + 0.88vw, var(--fsize-30));
  color: #cfe0f1;
  font-weight: 500;
  letter-spacing: .06em;
}
.recruit-mv .entry-chara {
  width: 23.15%;
  height: auto;
}
/*画像animation用*/
.recruit-mv .mv-box {
  width: 100%;
  height: calc(100svh - 120px);
  position: relative;
  overflow: hidden;
  padding: 30px 0 50px 0;
  background: #fff;
}
/* レーン共通 */
.recruit-mv .lane {
  overflow: hidden;
  position: relative;
  z-index: 1;
 
}
.recruit-mv .track {
  display: flex;
  width: max-content;
  clip-path: polygon(
    0 5%,
    100% 0,
    100% 95%,
    0 100%
  );
}
/* 上段 */
.recruit-mv .lane.top {
  transform: rotate(-10deg);
   margin: 0 0 10px -30px;
   width: 120vw;
}
/* 下段*/
.recruit-mv .lane.bottom {
  transform: rotate(-10deg);
  margin: 0 -30px;
  width: 120vw;
}
/*  画像 */
.recruit-mv .track img {
  width: 450px;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 6px;
  margin-right: 15px;
}
/* アニメーション */
@keyframes slide-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.recruit-mv .lane.top .track {
  animation: slide-right 80s infinite linear 0.5s both;
}
@keyframes slide-left {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(0);
  }
}
.recruit-mv .lane.bottom .track {
  animation: slide-left 80s infinite linear 0.5s both;
}
.mv-bg {
  position: absolute;
  z-index: 2;
}
.mv-bg--top {
  background:  url("../img/recruit/leaves_top.svg") no-repeat center center;
  width: 22.4vw;
  aspect-ratio: 43 / 17;
  top: .8vw;
  left: .8vw;
  z-index: 1;
}
.mv-bg--bottom {
  background:  url("../img/recruit/leaves_bottom.svg") no-repeat center center;
  bottom: 2.5vw;
  right: 25vw;
  width: 15.625vw;
  aspect-ratio: 15 / 7;
  z-index: 1;
}
.mv-overlay {
  position: absolute;
  inset: 0; 
  background-color: rgba(255,255,255,0.2);
  z-index: 2;
  pointer-events: none;
}
/* =====================
  Responsive
===================== */
@media screen and (max-width: 1650px) {
   .recruit-mv .editor p {
    font-size: var(--fsize-48);
   }
   .recruit-mv .editor p strong {
    font-size: var(--fsize-60);
   }
   .recruit-mv .mv-box {
    padding: 0 0 30px 0;
   }
}
@media screen and (max-width: 1300px) {
	main {
		padding-top: calc(100svh - 90px);
	}
	.recruit-mv {
		top: 90px;
    	height: calc(100svh - 90px);
    }
	.recruit-mv .mv-box {
		height: calc(100svh - 90px);
	}
    .recruit-mv .track img {
        width: 400px;
    }
    .recruit-mv .editor p {
     font-size: var(--fsize-36);
   }
   .recruit-mv .editor p strong {
    font-size: var(--fsize-48);
   }
}
@media screen and (max-width: 1200px) {
	main {
		padding-top: calc(100svh - 80px);
	}
	.recruit-mv {
		top: 80px;
    	height: calc(100svh - 80px);
    }
	.recruit-mv .mv-box {
		height: calc(100svh - 80px);
	}
}
@media screen and (max-width: 1024px) {
 .recruit-mv .lane.top {
    margin: 50px 0 10px -30px;
 }
}
@media screen and (max-width: 1000px) {
    main {
		padding-top: 60vh;
	}
	.recruit-mv {
    	height: 60vh;
    }
	.recruit-mv .mv-box {
		height: 60vh;
	}
	.recruit-mv .track img {
    	width: 280px;
	}
}
@media screen and (max-width: 480px) {
    .recruit-mv .lane.top {
    margin: 20px 0 10px -30px;
 }
    .recruit-mv .editor p {
     	font-size: clamp(1.25rem, 0.25rem + 5vw, 1.75rem);
   	}
   .recruit-mv .editor p strong {
    	font-size: clamp(1.5rem, 0.5rem + 5vw, 2rem);
   	}
    .recruit-mv .entry-float {
        right: 45px;
    }
}
.main-content {
    position: relative;
    z-index: 2;
    background-color: #FFF;
}

/* =====================
  メッセージ
===================== */
#message {
    background-color: var(--color-backgreen);
    position: relative;
    z-index: 2;
}
#message .wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5em;
    width: 100%;
}
#message .message-lead {
    display: flex;
    align-items: flex-end;
    gap: 1em;
    margin-block-start: -4.5em;
}
#message .message-lead img{
    width: 150px;
}
#message .message-lead .editor p {
    font-size: var(--fsize-24);
    letter-spacing: .04em;
    background-color: var(--color-white);
    border-radius: 4px;
    padding: .5em 1em;
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-weight: 500;
}
#message .message-lead strong {
    font-size: var(--fsize-30);
    font-weight: 700;
}
#message .message-editor .editor {
    font-size: var(--fsize-18);
    letter-spacing: .04em;
}
#message .message-img img {
    border-radius: 6px;
}
/* =====================
  Responsive
===================== */
@media screen and (max-width: 1650px) {
    #message .message-lead .editor p {
      font-size: var(--fsize-22);
    }
    #message .message-lead strong {
      font-size: var(--fsize-24);
    }
}
@media screen and (max-width: 1500px) {
    #message .wrapper {
      gap: 3em;
    }
    #message .message-lead .editor p {
      font-size: var(--fsize-18);
    }
    #message .message-lead strong {
      font-size: var(--fsize-20);
    }
    #message .message-editor .editor {
        font-size: var(--fsize-16);
    }
    #message .message-wrap {
        width: 70%;
    }
    #message .wrapper .message-img {
        width: 30%;
    }
}
@media screen and (max-width: 1200px) {
    #message .message-lead .editor p {
      font-size: var(--fsize-16);
    }
    #message .message-lead strong {
      font-size: var(--fsize-18);
    }
    #message .message-editor .editor {
        font-size: var(--fsize-15);
    }
    #message .wrapper .message-lead img{
        width: 120px;
}
}
@media screen and (max-width: 1100px) {
    #message .message-editor .editor {
        font-size: var(--fsize-15);
    }
     #message .message-lead strong {
      font-size: var(--fsize-16);
    }
}
@media screen and (max-width: 1000px) {
     #message .wrapper {
        flex-direction: column;
        gap: 1em;
     }
     #message .message-lead {
        margin-block-start: -5em;
     }
     #message .message-wrap {
        width: 100%;
     }
     #message .wrapper .message-img {
        width: 40%;
     } 
}
@media screen and (max-width: 650px) {
    #message .message-lead {
        margin-block-start: -3em;
    }
}
@media screen and (max-width: 480px) {
    #message .message-lead {
        /* flex-direction: column-reverse; */
        gap: 0;
        margin-top: -2em;
    }
    #message .wrapper .message-lead img {
        width: 95px;
    }
    #message .message-lead .editor p {
        font-size: var(--fsize-14);
    }
    #message .wrapper .message-img {
        width: 60%;
    }
}
/* =====================
  業界について
===================== */
#service {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}
#service .section-title {
    display: flex;
}
#service .editor p {
    font-size: var(--fsize-16);
    letter-spacing: .04em;
}
#service .service-box {
    background-color: #f4f4f4;
    display: flex;
    justify-content: space-around;
    box-shadow: 3px 3px 3px rgba(0,0,0, .3);
    width: 100%;
    padding: 1em;
}
#service .service-box .card {
    width: 30%;
    display: flex;
    flex-direction: column;
    position: relative;
}
#service .service-box .card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -1em;
    width: 1px;
    height: 90%;
    background-color: var(--color-blue);
}
#service .service-box .card .title-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1em;
    letter-spacing: .04em;
}
#service .service-box .card .title-inner .number {
    font-family: var(--font-en);
    font-size: var(--fsize-60);
    color: #5db7e8;
    margin: 0;
}
#service .service-box .card .title-inner .title {
    font-size: var(--fsize-22);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}
#service .service-box .card .text-inner {
    display: flex;
    align-items: center;
    gap: 1em;
    margin: auto 0;
}
#service .service-box .card .text-inner img {
    width: 110px;
    height: auto;
}
#service .service-box .card .text-inner p {
    margin: 0;
}

/* =====================
  Responsive
===================== */
@media screen and (max-width: 1400px) {
#service .service-box .card .title-inner .number {
    font-size: var(--fsize-48);
}
#service .service-box .card .title-inner .title {
    font-size: var(--fsize-18);
}
#service .editor p {
    font-size: var(--fsize-16);
}
}
@media screen and (max-width: 1200px) {
    #service .editor p {
        font-size: var(--fsize-15);
    }
    #service .service-box {
        justify-content: space-between;
    }
    #service .service-box .card .text-inner img {
        width: 80px;
    }
    #service .service-box .card .title-inner .number {
        font-size: var(--fsize-36);
    }
    #service .service-box .card .title-inner .title {
        font-size: var(--fsize-16);
    }
}
@media screen and (max-width: 1000px) {
     #service .service-box {
        flex-direction: column;
     }
     #service .service-box .card {
        width: 100%;
        margin-bottom: 3em;
        row-gap: 1em;
     }
     #service .service-box .card:last-child {
        margin-bottom: 1em;
     }
     #service .service-box .card .title-inner {
        justify-content: flex-start;
        gap: 1em;
        width: 100%;
     }
      #service .service-box .card .text-inner {
        width: 100%;
      }
      #service .service-box .card .title-inner .number {
        width: 15%;
        margin-left: .5em;
      }
      #service .service-box .card .title-inner .title {
        width: 85%;
      }
      #service .service-box .card .text-inner img {
        width: 15%;
      }
      #service .service-box .card .text-inner .editor {
        width: 85%;
      }
     #service .service-box .card:not(:last-child)::after {
        top: unset;
        right: 0;
        left: 0;
        bottom: -1.5em;
        width: 95%;
        height: 1px;
     }
}
/* =====================
  私たちの仕事
===================== */
#work {
    background-color: var(--color-backgreen);
    position: relative;
    z-index: 2;
    overflow: hidden;
}
#work .work-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  display: block;
  margin: 60em auto 0 auto;
  background-image: url(../img/recruit/works.svg);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 120%;
}
#work .container {
    position: relative;
    z-index: 1;
}
#work .section-title {
    display: flex;
}
#work .intro-box {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
#work .intro-box.no-text {
    justify-content: flex-end;
} 
#work .intro-box p {
    font-size: var(--fsize-20);
    margin: 2em 0;
    letter-spacing: .04em;
}
#work .intro-box img {
    width: 200px;
}
#work .img-box {
    display: flex;
    justify-content: center;
    margin-bottom: 6em;
}
#work .img-box img {
    border-radius: 6px;
}
/*タブまわり*/
#work .tab-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto;
}
#work #tab-btn button {
    display: block;
    position: relative;
    font-size: var(--fsize-18);
    color: var(--color-base);
    display: grid;
    place-items: center;
    width: 100%;
    flex-basis: 25%;
    cursor: pointer;
    background-color: #cfe6bf;
    border-radius: 4px 4px 0 0;
    border: unset;
    border-right: 1px solid var(--color-green);
    line-height: 1.6;
    letter-spacing: .04em;
    padding: .5em 0;
}
#work #tab-btn button:last-child {
    border-right: none;
}
#work #tab-btn button.is-active {
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-green);
    border-radius: 4px 4px 0 0;
}
#work .tab-contents-item {
    display: none;
    width: 100%;
    justify-content: center;
}
#work .tab-contents-item.is-active {
    display: flex;
    background-color: var(--color-green);
    border-radius: 0 0 4px 4px;
}

#work #work-contents {
    max-width: 1260px;
    margin: 0 auto;
}
#work #work-contents .tab-contents {
    padding: 2em 3em;
}
#work #work-contents .tab-contents .card {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4em;
    padding: 1.5em 3em;
    border-radius: 4px;
    margin-bottom: 2.5em;
    width: 100%;
}
#work #work-contents .tab-contents .card img{
    border-radius: 6px;
}
#work #work-contents .tab-contents .card .work-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
#work #work-contents .tab-contents .card .work-text .editor{
    letter-spacing: .04em;
}
#work #work-contents .tab-contents .card .work-text h4 {
    font-size: var(--fsize-22);
    color: var(--color-green);
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
}
#work #work-contents .tab-contents .card .work-text h5 {
    font-size: var(--fsize-18);
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: .4em;
    margin-bottom: .5em;
}
#work #work-contents .tab-contents .card .work-text h5:first-of-type {
    margin: .5em 0;
}

/* =====================
  Responsive
===================== */
@media screen and (max-width: 1400px) {
    #work .intro-box p {
        font-size: var(--fsize-18);
    }
    #work .intro-box img {
        width: 190px;
    }
}
@media screen and (max-width: 1350px) {
    #work .intro-box {
    width: 75%;
   }
   #work .img-box img {
      width: 75%;
     }
   #work .tab-btn {
    max-width: 90%;
}
#work #work-contents {
    max-width: 90%;
}
}
@media screen and (max-width: 1260px) {
#work .intro-box {
        width: 65%;
    }
#work .intro-box p {
    font-size: var(--fsize-15);
    }
#work .intro-box img {
    width: 140px;
    }

#work #work-contents .tab-contents .card {
    padding: 2em;
    gap: 2em;
}
#work #work-contents .tab-contents .card img {
    width: 40%;
}
#work #work-contents .tab-contents .card .work-text {
    width: 60%;
}
#work #work-contents .tab-contents .card .work-text h4 {
    font-size: var(--fsize-18);
}
#work #work-contents .tab-contents .card .work-text h5 {
    font-size: var(--fsize-16);
}
#work #work-contents .tab-contents .card .work-text p {
    font-size: var(--fsize-15);
}
#work .img-box img {
    width: 65%;
}
#work #tab-btn button {
        font-size: var(--fsize-15);
    }
}
@media screen and (max-width: 1000px) {
    #work .intro-box {
    width: 75%;
   }
   #work .img-box img {
      width: 75%;
     }
    #work .img-box {
        margin-bottom: 4em;
    }
    #work #work-contents .tab-contents {
        padding: 2em 2em 0 2em;
    }
    #work #work-contents .tab-contents .card {
        flex-direction: column;
        gap: .5em;
        padding: 1em;
        margin-bottom: 2em;
    }
    #work #work-contents .tab-contents .card .work-text {
        width: 90%;
    }
    #work #work-contents .tab-contents .card img {
        width: 60%;
    }
}
@media screen and (max-width: 900px) {
    #work .intro-box {
    width: 80%;
   }
   #work .img-box img {
      width: 80%;
     }
   #work .intro-box img {
    width: 110px;
   }
   #work #work-contents .tab-contents .card {
    gap: 0;
   }
}
@media screen and (max-width: 700px) {
   #work .img-box img {
    width: 90%;
   }
   #work .tab-btn {
    max-width: 100%;
}
#work #work-contents {
    max-width: 100%;
}
#work #work-contents .tab-contents {
        padding: 1.5em 1.5em 0 1.5em;
    }
}
@media screen and (max-width: 480px) {
    #work .intro-box {
        width: 100%;
    }
    #work .intro-box img {
        width: 80px;
    }
    #work .img-box img {
        width: 100%;
    }
    #work #tab-btn button {
        font-size: var(--fsize-14);
    }
    #work #work-contents .tab-contents .card {
        padding: 1em 0;
        margin-bottom: 1.5em;
    }
    #work #work-contents .tab-contents .card img {
        width: 75%;
    }
}
/* =====================
  研修内容
===================== */
#training {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}
#training .section-title {
    display: flex;
}
#training .career-list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0;
}
#training .career-item {
  position: relative;
}
#training .career-item .career-person {
    display: flex;
    justify-content: center;
}
#training .career-item:nth-child(1) img {
    width: 106px;
}
#training .career-item:nth-child(2) img {
    width: 126px;
}
#training .career-item:nth-child(3) img {
    width: 80px;
}
#training .career-item:nth-child(4) img {
    width: 145px;
}
#training .career-box {
  background: #e9f5fb;
  padding: 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  text-align: center;
}
#training .career-box .title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-blue);
  padding: .5em 1em;
  border-radius: 4px;
  margin: 0;
  line-height: 1.6;
}
#training .career-box .text {
    line-height: 1.75;
    letter-spacing: .04em;
    font-weight: 500;
    font-size: var(--fsize-15);
}
/* 高さをずらして階段にする */
#training .career-item:nth-child(1) .career-box { 
    min-height: 150px;
    background-color: #e8f6fb;
}
#training .career-item:nth-child(2) .career-box { 
    min-height: 310px;
    background-color: #dff0f6;
}
#training .career-item:nth-child(3) .career-box { 
    min-height: 340px;
    background-color: #e8f6fb;
}
#training .career-item:nth-child(4) .career-box { 
    min-height: 370px;
    background-color: #dff0f6;
}

#training .training-list {
    max-width: 1000px;
    margin: 4em auto 0 auto;
}
#training details[open] {
    height: auto;
}
#training details .toggle-icon {
    position: absolute;
    top: 60%;
    right: 1.2em;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
}
 #training details .toggle-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(135deg);
  transition: transform .3s ease;
}
#training details[open] .toggle-icon::after {
  transform: rotate(-45deg);
}
#training summary {
    font-size: var(--fsize-20);
    color: var(--color-white);
    background-color: var(--color-blue);
    list-style: none;
    border-radius: 4px;
  cursor: pointer;
  position: relative;
}
#training summary:hover {
    opacity: 0.8;
    transition: all .3s;
}
#training summary::-webkit-details-marker {
  display: none;
}
#training summary p {
    text-align: center;
    padding: .5em 2em;
    letter-spacing: .04em;
    margin: 0;
}
#training .card {
    padding: 0 1em;
    border: 1px solid var(--color-blue);
    border-radius: 4px;
}
#training .card-inner {
    display: flex;
    align-items: baseline;
    gap: 2%;
    flex-wrap: wrap;
}
#training .inner-item {
    display: flex;
    gap: 1.5em;
    width: 48%;
    align-items: baseline;
}
#training .card-inner.gray {
    /* background-color: #eaeaea; */
    display: flex;
    align-items: baseline;
    width: 100%;
}
#training .card-inner.gray .gray-title {
    color: var(--color-blue);
    font-size: var(--fsize-20);
    font-weight: 500;
    white-space: nowrap;
    margin-left: 1em;
    width: 18%;
}
#training .card-inner.gray .editor {
    width: 75%;
}
#training .card-inner.gray ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2em;
}
#training .card-inner.gray ul li {
    width: 100%
}
#training .card-inner .card-title {
    background-color: #e8f6fb;
    padding: .2em .5em;
    border-radius: 4px;
    line-height: 1.8;
    font-size: var(--fsize-18);
    letter-spacing: .04em;
    display: inline-block;
    width: auto;
    white-space: nowrap;
}
#training .card-inner .card-title:empty {
    display: none;
} 
#training .card-inner .editor {
    width: 60%;
    letter-spacing: .04em;
}
#training .card-inner .editor ul {
    padding: 0 0 0 40px;
}
#training .training-list .img-box {
    display: flex;
    justify-content: center;
    margin: 2em 0;
}
#training .training-list .img-box:last-of-type {
    display: none;
}
#training .training-list img {
    width: 70px;
}

/*資格及び自社講習*/
.training-course {
    background-color: #e8f6fb;
    position: relative;
    z-index: 2;
    margin-top: -1px;
}
.training-course .wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-width: 1100px;
    gap: 1em;
}
.training-course .wrapper .card {
    width: 30%;
    background-color: var(--color-white);
    border: 1px solid var(--color-blue);
    border-radius: 4px;
    padding: 1em;
}
.training-course .wrapper .card .title {
    font-size: var(--fsize-22);
    color: #5db7e8;
    text-align: center;
    letter-spacing: .04em;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    justify-content: center;
}
.training-course .wrapper .card .training-editor {
    line-height: 1.8;
    letter-spacing: .04em;
    font-size: var(--fsize-16);
}
.training-course .wrapper .card .training-editor strong {
    font-weight: 500;
}
.training-course .wrapper .card .training-editor h5 {
    font-size: var(--fsize-18);
    margin: 0;
}
.js_scroll {
    overflow-x: auto;
}

/* =====================
  Responsive
===================== */
@media screen and (max-width: 1300px) {
    #training .career-box {
    width: 210px;
}
.training-course .wrapper .card {
    min-width: 320px;
}
.training-course .wrapper .card .training-editor p {
    font-size: var(--fsize-16);
}
.training-course .wrapper .card .training-editor ul {
    font-size: var(--fsize-16);
}
}
@media screen and (max-width: 1250px) {
#training .career-list {
    width: max-content;
    flex-wrap: nowrap;
}
#training .career-box .text {
    font-size: var(--fsize-15);
}

#training .career-item:nth-child(1) img {
    width: 96px;
}
#training .career-item:nth-child(2) img {
    width: 116px;
}
#training .career-item:nth-child(3) img {
    width: 70px;
}
#training .career-item:nth-child(4) img {
    width: 135px;
}
.training-course .wrapper .card .title {
    font-size: var(--fsize-20);
}
.training-course .wrapper .card .training-editor p {
    margin: .6em 0;
    }
}
@media screen and (max-width: 1000px) {
    #training .career-box {
        padding: 16px 6px;
    }
    #training .career-box .title {
        font-size: var(--fsize-16);
    }
    #training summary {
        font-size: var(--fsize-18);
    }
   
    #training .card-inner .editor ul {
    padding-left: 30px;
    }
    .training-course .wrapper .card {
        width: 80%;
        min-width: 320px;
        margin: 0 auto;
    }
    .training-course .wrapper .card .training-editor p {
        font-size: var(--fsize-15);
    }
    .training-course .wrapper .card .title {
        margin: .5em 0;
        font-size: var(--fsize-18);
    }
}
@media screen and (max-width: 900px) {
#training .career-box {
    width: 200px;
}

#training .career-item:nth-child(1) img {
    width: 86px;
}
#training .career-item:nth-child(2) img {
    width: 106px;
}
#training .career-item:nth-child(3) img {
    width: 60px;
}
#training .career-item:nth-child(4) img {
    width: 125px;
}
#training .card-inner {
    flex-direction: column;
}
#training .inner-item {
    width: 100%;
    gap: .5em;
}
#training .card-inner .card-title {
    font-size: var(--fsize-16);
    min-width: 30%;
}
/* #training .card-inner .editor {
    width: 70%;
} */
 #training .card-inner.gray .editor {
    width: 95%;
    margin: 0 auto;
 }
#training .card-inner.gray .gray-title {
    margin: 1em 0 0 1em;
    font-size: var(--fsize-18);
}
#training .card-inner.gray ul {
    display: block;
}
}
@media screen and (max-width: 480px) {
#training .career-item:nth-child(1) img {
    width: 70px;
}
#training .career-item:nth-child(2) img {
    width: 90px;
}
#training .career-item:nth-child(3) img {
    width: 50px;
}
#training .career-item:nth-child(4) img {
    width: 110px;
}
#training summary {
        font-size: var(--fsize-16);
    }
#training .career-box .text {
    margin-bottom: 0;
}
#training .inner-item {
    flex-direction: column;
    gap: 0;
}
#training .card-inner .card-title {
    width: fit-content;
    margin: .5em 0
}
#training .card-inner .editor ul {
    margin: .5em 0;
}
#training .card-inner.gray .editor {
    width: 90%;
}
#training .training-list .img-box {
    margin: 1em 0;
}
#training .training-list img {
    width: 50px;
}
.training-course .wrapper .card {
    width: 100%;
}
}
/* =====================
  福利厚生
===================== */
#benefit {
    background-color: var(--color-backgreen);
    position: relative;
    z-index: 2;
}
#benefit .intro-box {
    display: flex;
    align-items: center;
    gap: 3em;
    max-width: 1300px;
}
#benefit .intro-box .editor p {
    font-size: var(--fsize-18);
}
#benefit .intro-box img {
    width: 160px;
}
#benefit .inner {
    padding-bottom: 2em;
}
#benefit .wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* min-width: 1100px; */
    gap: 1em;
    row-gap: 2em;
    flex-wrap: wrap;
}
#benefit .wrapper .card {
    width: 30%;
    background-color: var(--color-white);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#benefit .wrapper .card img{
    width: 100%;
    border-radius: 6px;
}
#benefit .wrapper .card h5 {
    font-size: var(--fsize-22);
    font-weight: 600;
    margin: 1em 0 0 0;
    padding: 0 1em;
    letter-spacing: .04em;
    line-height: 1.6;
    text-align: center;
    display: flex;
    align-items: center;
}
#benefit .wrapper .card .editor {
    padding: 0 1em 1em 1em;
    line-height: 1.8;
}
#benefit .editor p {
    letter-spacing: .04em;
}
/* =====================
  Responsive
===================== */
@media screen and (max-width: 1300px) {
    #benefit .intro-box {
        align-items: flex-end;
        gap: 2em;
    }
    #benefit .intro-box img {
    width: 140px;
    }
    #benefit .wrapper .card {
        width: 32%;
    }
    #benefit .wrapper .card h5 {
    font-size: var(--fsize-20);
    min-height: 3em;
    }
}
@media screen and (max-width: 1000px) {
    #benefit .intro-box {
        align-items: flex-end;
        gap: 1em;
    }
    #benefit .intro-box .editor p {
    font-size: var(--fsize-16);
    }
    #benefit .intro-box img {
    width: 130px;
    }
    #benefit .wrapper {
        flex-wrap: nowrap;
    }
    #benefit .wrapper .card {
        /* width: 80%; */
        margin: 0 auto 2em auto;
        padding-top: 2em;
         flex: 1 1 30%;
        min-width: 320px;
    }
    #benefit .wrapper .card img {
        width: 80%;
    }
}
@media screen and (max-width: 900px) {
    #benefit .intro-box .editor p {
    font-size: var(--fsize-15);
    }
    #benefit .wrapper .card h5 {
        font-size: var(--fsize-18);
    }
    #benefit .wrapper .card .editor {
        font-size: var(--fsize-15);
    }
}
@media screen and (max-width: 800px) {
    #benefit .inner {
        padding-bottom: 0;
    }
}
@media screen and (max-width: 480px) {
     #benefit .intro-box {
        margin: 0 auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
     #benefit .wrapper .card {
        width: 100%;
    }
}
/* =====================
  募集要項
===================== */
#jobs {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
    overflow: hidden;
}
#jobs::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      -10deg,
      rgba(183, 221, 232, 0.35) 0px,
      rgba(183, 221, 232, 0.35) 30px,
      transparent 30px,
      transparent 200px
    ),
    repeating-linear-gradient(
      -10deg,
      rgba(207, 230, 191, 0.35) 0px,
      rgba(207, 230, 191, 0.35) 30px,
      transparent 30px,
      transparent 200px
    );
  filter: blur(8px);
  background-attachment: fixed;
}

#jobs h3.section-title {
    display: flex;
}
#jobs .jobs-list {
    max-width: 1000px;
    margin: 0 auto;
}
#jobs .jobs-list .editor{
    letter-spacing: .04em;
}
#jobs summary {
    font-size: var(--fsize-20);
    color: var(--color-white);
    background-color: var(--color-blue);
    list-style: none;
    border-radius: 4px;
    cursor: pointer;
  position: relative;
}
#jobs summary:hover {
    opacity: .8;
    transition: all .3s;
}
#jobs summary p {
    text-align: center;
    padding: .1em 2.5em .1em 1.5em;
    margin-bottom: 0;
    margin-top: 2em;
}
#jobs details[open] {
    height: auto;
}
#jobs details .toggle-icon {
    position: absolute;
    top: 60%;
    right: 1.2em;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
}
 #jobs details .toggle-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: rotate(135deg);
  transition: transform .3s ease;
}
#jobs details[open] .toggle-icon::after {
  transform: rotate(-45deg);
}

#jobs .card {
    padding: 0 1.5em;
    border: 1px solid var(--color-blue);
    border-radius: 4px;
    background-color: var(--color-white);
}
#jobs .card table {
    width: 100%;
    border-collapse: collapse;
}
#jobs .card table a {
    font-weight: 500;
}
#jobs .card table a:hover {
    opacity: .7;
    transition: all .3s;
}
#jobs .card th {
    font-size: var(--fsize-20);
    font-weight: 500;
    color: #5db7e8;
    padding: 1em;
    width: 20%;
    vertical-align: text-top;
    text-align: left;
    border-bottom: 1px solid var(--color-blue);
}
#jobs .card td {
    border-bottom: 1px solid #ccc;
    padding: 1em;
    line-height: 1.8;
    vertical-align: text-top;
}
#jobs .card tr:last-child th,
#jobs .card tr:last-child td {
  border-bottom: none;
}
#jobs .card tr:last-child td {
     padding-bottom: 2em;
}
/* =====================
  Responsive
===================== */
@media screen and (max-width: 1000px) {
    #jobs summary {
        font-size: clamp(1rem, 0.941rem + 0.29vw, 1.125rem);
    }
    #jobs .card th {
        font-size: var(--fsize-18);
    }
    #jobs .card td {
        padding: 1em;
        font-size: var(--fsize-15);
    }
}
@media screen and (max-width: 800px) {
    #jobs .card th {
        display: block;
        width: 95%;
        margin: 0 auto;
        padding: 1em 0 0 .5em;
    }
    #jobs .card th {
        border-bottom: none;
    }
    #jobs .card td {
        display: block;
        width: 95%;
        margin: 0 auto;
}
}
@media screen and (max-width: 480px) {
    #jobs .card th {
        font-size: var(--fsize-16);
        width: 100%;
    }
    #jobs .card td {
        font-size: var(--fsize-15);
        width: 100%;
    }
}
/* =====================
  よくある質問
===================== */
#faq {
    background-color: var(--color-backgreen);
    position: relative;
    z-index: 2;
}
#faq h3.section-title {
    display: flex;
    position: relative;
}
#faq .faq-group {
    padding: 1em 0;
}
#faq .faq-group:first-of-type .h4-wrap h4 {
    margin-top: 0;
}
#faq .faq-wrapper {
    max-width: 1050px;
    margin: 0 auto;
}
#faq .faq-wrapper details{
    letter-spacing: .04em;
}
#faq details .toggle-icon {
    position: static;
    top: 50%;
    right: 1.2em;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    margin-left: auto;
}
#faq details .toggle-icon::after {
  content: '';
  position: static;
  display: block;
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-green);
  border-right: 1px solid var(--color-green);
  transform: rotate(135deg);
  transition: transform .3s ease;
}
#faq details[open] .toggle-icon::after {
  transform: rotate(-45deg);
}
#faq summary {
    padding: 1em 2em 1em 1em;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: flex-end;
}
#faq summary .qa {
    font-size: var(--fsize-22);
    font-family: var(--font-en);
    color: var(--color-green);
    margin-right: 1em;
}
#faq summary p {
    margin: 0;
    transition: opacity .3s ease, transform .3s ease;
    display: flex;
    line-height: 1.8;
    align-items: baseline;
}
#faq summary:hover p {
    font-weight: 500;
    opacity: .8;
    transform: translateY(-1px);
}
#faq details .answer {
    background-color: #f1f8f5;
    padding: 1em;
    border-bottom: 1px solid #ccc;
    display: flex;
    line-height: 1.8;
    align-items: baseline;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
    opacity 1s ease,
    transform 1s ease;
}
#faq details[open] .answer {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
#faq .answer .qa {
    font-size: var(--fsize-22);
    font-family: var(--font-en);
    color: #e55e5e;
    margin-right: 1em;
}

#faq details::details-content {
  /* --------アコーディオンの中身のスタイル-------- */
    transition:
      height 0.4s,
      opacity 0.4s,
      content-visibility 0.4s allow-discrete;
    height: 0;
    opacity: 0;
    overflow: clip;
  }
  /* --------アコーディオンの中身のスタイル（開いている時）-------- */
#faq details[open]::details-content {
    opacity: 1;
    height: auto;
  }

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
  }
  details[open]::details-content {
    height: auto;
  }
}

/* 通常（開いている状態） */
#faq details[open] .answer {
  opacity: 1;
  transform: translateY(0);
}

/* 閉じアニメーション中 */
#faq details.is-closing .answer {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
/* 高さも同時に畳む */
#faq details.is-closing {
  overflow: hidden;
}


/* =====================
  Responsive
===================== */
@media screen and (max-width: 1300px) {
    #faq h3.section-title::after {
        width: 140px;
        height: 180px;
    }
}

@media screen and (max-width: 1000px) {
    #faq h3.section-title::after {
        width: 120px;
        height: 140px;
        right: 6em;
    }
    #faq summary {
        font-size: var(--fsize-15);
    }
    #faq .answer {
        font-size: var(--fsize-15);
    }
}
@media screen and (max-width: 800px) {
    #faq h3.section-title::after {
        width: 90px;
        height: 120px;
        right: 2em;
    }
    #faq summary {
        padding: 1em;
    }
}
@media screen and (max-width: 480px) {
    #faq h3.section-title::after {
        width: 80px;
        height: 100px;
        right: .5em;
    }
}
/* =====================
  エントリー
===================== */
#entry {
    background: url("../img/recruit/entry.jpg") no-repeat center / cover;
    position: relative;
    z-index: 2;
}
#entry h3.section-title {
    color: #3a3a3a;
}
#entry h3.section-title span {
    color: #6aa62f;
}
#entry .entry-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#entry .editor {
    font-size: var(--fsize-36);
    font-weight: 500;
    letter-spacing: .08em;
    background-color: var(--color-white);
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    padding: 0 1em;
    margin: 0 0 1em 0;
    gap: .5em;
}
#entry .editor::after {
    content: '';
    background: url("../img/recruit/chara_half.png") no-repeat center / contain;
    display: block;
    width: 100px;
    height: 92px;
}
#entry .entry-button {
    background-color: #1b6dae;
    color: var(--color-white);
    font-size: var(--fsize-22);
    font-weight: 600;
    box-shadow: 4px 4px 4px rgba(255,255,255,.4);
    border-radius: 6px;
    padding: 1em 1.5em;
    position: relative;
    overflow: hidden;
    transition: color .3s ease;
}
#entry .entry-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1b6dae, #5db7e8);
    opacity: 0;
    transition: all .3s ease;
    z-index: -1;
}
#entry .entry-button:hover::before {
  opacity: 1;
}
#entry .entry-button span {
    font-size: var(--fsize-30);
    font-weight: 700;
}
#entry .entry-button,
#entry .entry-button span {
  position: relative;
  z-index: 1;
}
/* =====================
  Responsive
===================== */
@media screen and (max-width: 1300px) {
     #entry .editor {
        font-size: var(--fsize-30);
    }
    #entry .entry-button span {
        font-size: var(--fsize-28);
    }
}
@media screen and (max-width: 1100px) {
    #entry .editor {
        font-size: var(--fsize-28);
    }
    #entry .entry-button span {
        font-size: var(--fsize-26);
    }
}
@media screen and (max-width: 900px) {
    #entry .editor {
        font-size: var(--fsize-22);
    }
    #entry .editor::after {
        width: 75px;
        height: 68px;
    }
    #entry .entry-button {
        padding: .5em 1em;
        font-size: var(--fsize-20);
    }
    #entry .entry-button span {
        font-size: var(--fsize-24);
    }
}
@media screen and (max-width: 700px) {
    #entry .editor {
        font-size: var(--fsize-20);
    }
}
@media screen and (max-width: 480px) {
    #entry .entry-button {
        font-size: var(--fsize-18);
    }
    #entry .entry-button span {
    font-size: var(--fsize-22);
   }
}
/*---------------------------------------
 footer-wrap
-----------------------------------------*/
.footer-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 5%;
    background-color: #353434;
    color: #FFF;
    font-weight: 400;
    position: relative;
    z-index: 2;
}
.footer-wrap .txt-wrap {
    width: 46%;
}
.footer-wrap h2 {
    margin-top: 0;
    margin-block-end: 1.5em;
}
.footer-wrap .txt-wrap p {
    line-height: 1.8;
}
.footer-wrap .txt-wrap p a {
    color: var(--color-white);
}
.footer-wrap .txt-wrap p .contact-fax {
    margin-left: .5em;
}
.footer-wrap .txt-wrap p a[href^="tel:"] {
    pointer-events: none;
}
.footer-wrap .sns {
    display: flex;
    gap: 15px;
    margin-block-start: 1em;
}
.footer-wrap .sns li {
    width: 36px;
}
.footer-wrap .sns a img {
	transition: all .5s ease;
}
.footer-wrap .sns a:hover img {
	opacity: .6;
}
.footer-wrap nav {
    display: flex;
    justify-content: flex-end;
    width: 51%;
    font-size: var(--fsize-16);
    font-weight: 500;
}
.footer-wrap ul {
    padding-left: 0;
    margin-top: 0;
}
.footer-wrap nav > ul {
    width: 30%;
}
.footer-wrap nav li {
    line-height: 1.5;
    margin-block-end: 1em;
}
.footer-wrap .sub-menu {
    margin-block-start: 1em;
    margin-inline-start: 1.5em;
}
.footer-wrap .sub-menu li {
    position: relative;
    font-size: var(--fsize-15);
    font-weight: 400;
}
.footer-wrap .sub-menu li::before {
    content: '-';
    margin-inline-end: 1em;
}
.footer-wrap nav a {
    color: #FFF;
	transition: all .5s ease;
}
.footer-wrap nav a:hover {
	opacity: .8;
}
.footer-wrap .copy {
    width: 100%;
    margin-block-start: 60px;
    padding-block-start: 60px;
    border-top: 1px solid rgba(253,253,253,.5);
    font-size: var(--fsize-14);
    font-weight: 400;
    text-align: center;
}
.footer-wrap .footer-chara {
    width: 40%;
}
.footer-chara-sp {
    list-style: none;
}
/*--------------------------------responsive */
@media screen and (max-width: 1400px) {
    .footer-wrap .txt-wrap {
		width: 36%;
	}
	.footer-wrap nav {
		width: 61%;
	}
}
@media screen and (max-width: 1200px) {
	.footer-wrap {
		flex-wrap: wrap;
	}
	.footer-wrap .txt-wrap {
		width: 100%;
		margin-block-end: 60px;
	}
	.footer-wrap nav {
		width: 100%;
		justify-content: flex-start;
		gap: 0 4.5%;
	}
}
@media screen and (max-width: 800px) {
    .footer-wrap .txt-wrap p a[href^="tel:"] {
        pointer-events: auto;
    }
}
@media screen and (max-width: 800px) {
    .contact-wrap .box {
		width: 85%;
		padding: 3vw;
	}
	.contact-wrap .box::before,
	.contact-wrap .box::after {
		left: -3vw;
		top: -3vw;
		width: calc( 100% + 3vw );
		height: calc( 100% + 3vw );
	}
	.contact-wrap .box::after {
		left: 0;
		top: 0;
	}
}

@media screen and (max-width: 480px) {
	.contact-wrap .box::before,
	.contact-wrap .box::after {
		left: -1.5vw;
		top: -1.5vw;
		width: calc( 100% + 1.5vw );
		height: calc( 100% + 1.5vw );
	}
	.contact-wrap .box::after {
		left: 0;
		top: 0;
	}
    .footer-wrap .txt-wrap {
        margin-block-end: 0;
    }
    .footer-wrap nav ul:nth-child(1),.footer-wrap nav ul:nth-child(2) {
        display: none;
    }
    .footer-wrap nav ul:nth-child(3) {
        width: 100%;
        font-size: var(--fsize-13);
    }
    .footer-chara-sp {
    text-align: center;
    margin-top: 1.5em;
  }

  .footer-chara-sp img {
    max-width: 100px;
    height: auto;
  }
  .footer-wrap .copy {
    margin-block-start: 0;
  }
}

/*---------------------------------------
 entry-form
-----------------------------------------*/
/*お問い合わせ*/
#recruit {
    padding: 4vw 0;
    background-color: var(--color-backgreen);
}
#recruit .form-item {
    margin: 2em 0 0 1.2em;
    display: flex;
    border-bottom: 1px solid #e2e2e2;
    position: relative;
    padding: 0 0 1.5em 0;
}
#recruit .form-item::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 20%;
    height: 1px;
    content: '';
    background-color: var(--color-green);
}
#recruit .contact {
    margin: 0 auto;
    width: 75%;
}
#recruit h3.section-title.entry {
    display: flex;
    margin-bottom: 1.5em;
}
#recruit .contact dt {
    font-size: var(--fsize-22);
    position: relative;
    color: var(--color-base);
    width: 330px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    background-color: transparent;
}
#recruit .contact dt::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 30px;
    border-radius: 2px;
    left: -18px;
    background-color: var(--color-green);
}
#recruit .contact .text_box dt {
    width: 400px;
}
#recruit .contact .text_box dt::before {
    content: none;
}
#recruit .contact dt span {
    font-size: var(--fsize-14);
    color: #333;
    border: 2px solid #e55e5e;
    background-color: #f5f5f7;
    padding: .2em .6em;
    margin: 0 2em 0 0;
    font-weight: 400;
}
#recruit .contact dd ,
#recruit .contact textarea {
    width: 65%;
    padding: .3em;
    background-color: transparent;
}

#recruit .contact .text_box {
    padding: 1.5em;
    background-color: #f4f4f4;
}
#recruit .contact .text_box a {
    font-size: var(--fsize-16);
    position: relative;
}
#recruit .contact .text_box .notice {
    margin: 1em 0 1em 2em;
}
#recruit .contact .text_box a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor; /* ←文字色と同じ色 */
  transition: all 0.3s;
  opacity: 0;
}
#recruit .contact .text_box a:hover::before {
    opacity: 1;
}
#recruit .contact .text_box .checkbox_box {
    display: flex;
    margin: 0 0 0 2em;
}
#recruit .contact .text_box .checkbox_box p {
    margin: unset;
}
#recruit .contact .text_box .checkbox_box dd {
    width: unset;
    margin: 0 .5em 0 0;
}
#recruit .contact .btn button {
    position: relative;
    display: inline-block;
    background: none;
  border: none;
  padding: 0;
  margin: 0;
}
#recruit .contact .btn button {
    margin: 3em 0 5em 0;
    background-color: var(--color-blue);
    color: var(--color-white);
    position: relative;
    cursor: pointer;
    font-size: var(--fsize-16);
    font-weight: 500;
    border: 1px solid var(--color-blue);
    padding: 1em 3.5em;
    border-radius: 6px;
    letter-spacing: 0.06em;
    width: fit-content;
}
#recruit .contact .btn button:hover {
    opacity: 0.8;
    transition: all 0.3s;
}
/*送信確認ボタンの矢印*/
#recruit .contact .btn button::after {
    content: '';
    position: absolute;
    background: none;
    top: 0;
    bottom: 0;
    right: 1em;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: rotate(45deg);
}
#recruit .contact .btn input.wpcf7-submit {
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  font-size: var(--fsize-16);
  cursor: pointer;
}
.wpcf7-spinner {
    position: absolute;
    overflow: hidden;
}
textarea::placeholder {
    line-height: 1.5;
}
/* CF7のspanをブロック要素に */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
/* input / textarea は親いっぱいに */
.wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
  padding: .3em;
  background-color: #fff;
  border: 1px solid #777;
}
#recruit .contact .text_box .checkbox_box .wpcf7-form-control {
  background-color: unset;
  border: unset;
}
/* TEL全体 */
#recruit .tel-wrap {
  width: 65%;
  display: flex;
  align-items: center;
  gap: .4em;
}
/* spanを3等分 */
#recruit .tel-wrap .wpcf7-form-control-wrap {
  flex: 1;
}
/* ハイフンは幅を持たせない */
#recruit .tel-wrap > span:not(.wpcf7-form-control-wrap) {
  flex: none;
}
#recruit .contact dd {
  width: 65%;
  margin: 0;
}
#recruit .contact dd.notice {
    width: 100%;
}
#recruit .contact dd.notice a.pdf {
    position: relative;
    margin: .2em 1em .2em 0;
    display: inline-flex;
}
#recruit .contact dd.notice a.pdf::after {
    content: '';
    position: absolute;
    background: url("../img/icon_blank.svg") no-repeat center / contain;
    width: .8em;
    height: .8em;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
}
#recruit .contact textarea {
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
}
#recruit .contact p {
    line-height: 1.8;
}
#recruit .contact a.btn {
    background-color: var(--color-blue);
    padding-block: .8em;
    padding-left: 2em;
    padding-right: 1.5em;
    border-radius: 10px;
    color: var(--color-white);
    display: inline-block;
    position: relative;
}
#recruit .contact a.btn::before {
    content: '';
    position: absolute;
    background: none;
    top: 0;
    bottom: 0;
    left: 1em;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid var(--color-white);
    border-right: 1px solid var(--color-white);
    transform: rotate(-135deg);
}
#recruit .contact a.btn:hover {
    opacity: 0.8;
}

/* チェックボックス本体リセット */
.wpcf7-list-item input[type="checkbox"] {
     -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px; /* ←これ重要（潰れ防止） */
    min-height: 20px;
    border: 2px solid #333;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin-right: 8px;
    display: inline-block;
    box-sizing: border-box;
}
/* チェック時 */
.wpcf7-list-item input[type="checkbox"]:checked {
    background-color: #333;
}
/* チェックマーク */
.wpcf7-list-item input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg); /* ←中央寄せで安定 */
}
/* 送信完了メッセージのみ非表示 */
.wpcf7 form.sent {
    display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}
@media screen and (max-width: 1000px) {
 #recruit .contact {
        width: 90%;
}
}
@media screen and (max-width: 800px) {
    #recruit .form-item {
        flex-direction: column;
        gap: 1em;
        margin: 1em 0;
    }
    #recruit .contact {
        width: 85%;
    }
    #recruit .contact input ,
    #recruit .contact textarea ,
    #recruit .contact dd {
    width: 100%;
}
    .tel-wrap {
    width: 95%;
}
    #recruit .contact dt {
        font-size: var(--fsize-18);
        justify-content: unset;
        gap: 1em;
        width: 100%;
}
#recruit .contact p {
    line-height: 1.5;
}
#recruit .contact dt span {
    font-size: var(--fsize-13);
}
#recruit .contact .text_box label {
    width: 100%;
}
#recruit .contact .text_box div p {
    margin: unset;
}
 #recruit .contact input, #recruit .contact textarea {
        padding: .2em;
    }
    input::placeholder {
        font-size: var(--fsize-14);
    }
    textarea::placeholder {
        font-size: var(--fsize-14);
    }
    #recruit .contact .text_box .notice {
        margin: 1em 0 1em 1em;
}
#recruit .contact .text_box .checkbox_box {
    margin: 0 0 0 1em;
}
#recruit .contact .text_box {
        padding: 1em;
    }
#recruit .contact .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  white-space: nowrap;
}
}
@media screen and (max-width: 480px) {
    #recruit .contact {
        width: 90%;
    }
    #recruit .contact input ,
    #recruit .contact textarea {
    width: 100%;
}
    .tel-wrap {
    width: 100%;
}
    #recruit .contact p {
        font-size: var(--fsize-15);
    }
    #recruit .contact dt {
        font-size: var(--fsize-16);
    }
    #recruit .contact dt::before {
        width: 3px;
        height: 25px;
    }
    #recruit .contact dt,
    #recruit .contact .text_box dt {
        width: 100%;
        justify-content: flex-start;
    }
     .contact input,  .contact textarea {
        width: 100%;
    }
    #recruit .contact .text_box {
        padding: 1em 0.5em;
    }
    .tel-wrap {
        width: 100%;
    }
    .form-item {
        margin: 1.5em 0;
        gap: .5em;
    }
}