/* assets/css/style.css
 * 最小CSS。ハンバーガー（CSS+JS）と fadeInUp をサポート。
 */

/* リセット最小限 */


:root {
  --color-main: #FF8400;
  --color-dark: #2C2C2C;
  --color-sub: #FFD3A1;
  --color-bg: #F2F2F2;
  --margin-blank: 160px;
}

@media screen and (max-width: 896px) {
  :root {
    --margin-blank: 60px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: 'yu-gothic-medium', system-ui, -apple-system, 'Yugothic', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  letter-spacing: 1.5px;
  position: relative;
}

@media screen and (max-width: 896px) {
  .pc {
    display: none !important;
  }
}

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

@media screen and (min-width: 550px) {
  .mobile {
    display: none !important;
  }
}

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

main {
  margin-top: 80px;
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  main {
    margin-top: 60px;
  }
}

a {
  color: var(--color-dark);
  text-decoration: none;
  transition: 0.3s;
}

@media screen and (min-width: 897px) {
  a:hover {
    opacity: 0.7;
    color: var(--color-main);
  }
}

/* コンテンツ幅 */
.content {
  max-width: 1248px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

/* コンテンツ幅 */
.wide_content {
  max-width: 1648px;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .content {
    padding: 0 18px;
  }

  .wide_content {
    padding: 0 18px;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.white {
  color: #fff !important;
}

/* fadeInUp */
.fadeInUp {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease-out;
}

.fadeInUp.is_show {
  opacity: 1;
  transform: translateY(0);
}

/* sectionのmargin */
[class*="Sec"] {
  margin: var(--margin-blank) auto;
}

/* ------------------------------
   ヘッダー
------------------------------ */

header {
  height: 80px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
}

header .header_inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

header .header_logo {
  display: inline-flex;
  align-items: center;
  padding: 30px;
  background: var(--color-dark);
  height: 160px;
  aspect-ratio: 1;
  box-sizing: border-box;
  z-index: 1000;
}

header .header_logo img {
  height: 100%;
  object-fit: contain;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
  transition: 0.3s;
}

header nav ul {
  display: flex;
  gap: 10px;
}

header nav ul li a {
  padding: 10px 20px;
}

header .header_contact {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 50px;
}

header .header_contact a {
  width: 150px;
  height: 40px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  display: flex;
  box-sizing: border-box;
  position: relative;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

@media screen and (min-width: 897px) {
  header .header_contact a:hover {
    color: var(--color-main);
    background: #fff;
  }
}

header .header_trial a img {
  width: 32px;
  margin-right: 14px;
}

header .site_logo img {
  height: 36px;
  width: auto;
  display: block;
}

@media screen and (min-width: 1001px) {
  header.scroll {
    height: 60px;
  }

  header.scroll .header_logo {
    height: 120px;
    padding: 10px;
  }
}

@media screen and (max-width: 1000px) {
  header {
    height: 60px;
  }

  header .header_logo {
    height: 87px;
    padding: 16px;
  }
}

.menu {
  width: 80px;
  margin-left: auto;
  transition: 0.3s;
}

header.scroll .menu {
  width: 60px;
}

.menu .menu_btn {
  background: #fff;
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  position: relative;
  z-index: 100;
}

.menu .menu_btn label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.menu .menu_btn input {
  display: none;
}

.menu .menu_btn span {
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--color-dark);
  left: 50%;
  transform: translate(-50%, 0);
  top: 35%;
  transition: 0.3s;
  opacity: 1;
  border-radius: 3px;
}

.menu .menu_btn span:nth-child(2) {
  top: 50%;
}

.menu .menu_btn span:nth-child(3) {
  top: 65%;
}

.menu:has(:checked) .menu_btn span:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.menu:has(:checked) .menu_btn span:nth-child(2) {
  opacity: 0;
  left: 60%;
}

.menu:has(:checked) .menu_btn span:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu ul {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background: #fff;
  transition: 0.5s;
}

.menu:has(:checked) ul {
  transform: translateX(0);
}

.menu ul {
  width: 500px;
  height: 100vh;
  max-width: 100%;
  padding: 117px 40px 40px;
  box-sizing: border-box;
}

.menu ul li a {
  padding: 25px 10px;
  position: relative;
  border-top: 1px solid #ccc;
}

.menu ul li a:has(img) {
  padding: 25px 0;
}


.menu ul li a:before {
  position: absolute;
  content: ">";
  font-size: 20px;
  font-weight: 300;
  height: 16px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: 0.3s;
  line-height: 0.8;
}

.menu ul li a:has(img):before {
  content: none;
}

@media screen and (min-width: 897px) {
  .menu ul li a:hover {
    padding-left: 20px;
  }

  .menu ul li a:hover:before {
    right: 10px;
  }
}

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

  header nav,
  header .header_contact {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .menu {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .menu {
    width: 60px;
  }
}

/* 日本語タイトル */

.jpTtl {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: bold;
}

.jpTtl span {
  color: var(--color-main);
  display: inline-block;
}

.jpTtl span.thin {
  color: var(--color-dark);
  font-weight: 400;
  padding: 0 10px 0 13px;
}

.jpTtl small {
  font-size: 18px;
  font-family: "poppins", sans-serif;
  color: var(--color-main);
  margin-bottom: 12px;
  font-weight: normal;
  display: block;
}

@media screen and (max-width: 896px) {
  .jpTtl {
    font-size: 38px;
    margin-bottom: 20px;
  }
}

/* 英語タイトル */

.enTtl {
  font-size: 80px;
  margin-bottom: 30px;
  font-weight: bold;
}

.enTtl span {
  color: var(--color-main);
  display: inline-block;
}

.enTtl small {
  font-size: 18px;
  font-family: "poppins", sans-serif;
  margin-bottom: 12px;
  font-weight: normal;
  display: block;
}

@media screen and (max-width: 896px) {
  .enTtl {
    font-size: 38px;
    margin-bottom: 20px;
  }
}

.subTtl {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  position: relative;
  margin-bottom: 115px;
  padding-bottom: 22px;
}

.subTtl:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 4px;
  background: var(--color-main);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 896px) {
  .subTtl {
    font-size: 24px;
    margin-bottom: 60px;
    padding-bottom: 5px;
  }
}

/* ボタン */

.main_btn {
  margin-top: 30px;
}

.main_btn a {
  display: inline-block;
  padding: 10px 0;
  padding-right: 66px;
  position: relative;
  color: var(--color-main);
  font-weight: bold;
  z-index: 1;
}

.main_btn a:before {
  position: absolute;
  content: "";
  width: 50px;
  aspect-ratio: 1;
  background: var(--color-main) url(../img/icon/arrow.svg)no-repeat center / 13px;
  box-sizing: border-box;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.5s;
  z-index: -1;
}

@media screen and (max-width: 896px) {
  .main_btn {
    margin-top: 20px;
  }

  .main_btn a {
    font-size: 20px;
  }
}

@media screen and (min-width: 897px) {
  .main_btn a:hover:before {
    background-color: #fff;
    background-image: url(../img/icon/arrow_color.svg);
    background-size: 18px;
  }
}
	
.linkBtn a {
	display: inline-block;
	background: var(--color-dark);
	color: #fff;
	border-radius: 500px;
	padding: 15px 40px;
	border: 2px solid var(--color-dark);
	transition: 0.3s;
	margin-top: 30px;
}
.linkBtn a:hover {
	background: transparent;
	color: var(--coloe-dark);
}

.sub_btn {
  margin-top: 30px;
}

.sub_btn a {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  padding: 8px 72px;
  border: 2px solid var(--color-main);
  border-radius: 100px;
}

@media screen and (min-width: 897px) {
  .sub_btn a:hover {
    background: #fff;
    color: var(--color-main);
  }
}


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

/* MV */

.topPage .mv {
  margin: 0;
  margin-left: 80px;
  position: relative;
  height: calc(100vh - 140px);
  z-index: 1;
}

.topPage .mv .mv_bg {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.topPage .mv .mv_bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/mv.jpg)no-repeat 40% / cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: mvPhoto 5s ease forwards;
  opacity: 0.3;
}

@keyframes mvPhoto {
  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    width: 110%;
  }
}

.topPage .mv>span {
  position: absolute;
  bottom: 130px;
  left: -80px;
  transform: translateX(-50%) rotate(90deg);
  font-family: "poppins", sans-serif;
  transform-origin: right bottom;
  line-height: 1;
}

.topPage .mv>span:before {
  position: absolute;
  content: "";
  width: 120px;
  height: 1px;
  background: var(--color-dark);
  top: 35%;
  right: -10px;
  transform: translateX(100%);
  animation: scroll 2s linear infinite alternate;
  opacity: 1;
}

@keyframes scroll {
  100% {
    right: -50px;
    opacity: 0.3;
  }
}

.topPage .mv .mv_content {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 110px;
  box-sizing: border-box;
}

.topPage .mv .mv_txt {
  display: inline-block;
  color: #fff;
}

.topPage .mv .mv_txt h2 {
  font-size: clamp(50px, 6vw, 80px);
  line-height: 1.4;
  font-weight: bold;
}

.topPage .mv .mv_txt h2 span {
  color: #ff983d;
}

.topPage .mv .mv_txt p {
  font-size: 20px;
  font-family: "poppins", sans-serif;
  transition-delay: 0.4s;
}

@media screen and (max-width: 1000px) {
  .topPage .mv {
    margin-left: 27px;
  }

  .topPage .mv .mv_bg:before {
    background-image: url(../img/mv_sp.jpg);
  }

  .topPage .mv .mv_content {
    justify-content: flex-start;
    padding: 38px 16px 0;
  }

  .topPage .mv .mv_txt h2 {
    font-size: 48px;
  }

  .topPage .mv .mv_txt p {
    font-size: 12px;
  }

  .topPage .mv>span {
    left: -46px;
    font-size: 12px;
  }
}


/* aboutSec */

.topPage .aboutSec .about_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 5%;
}

.topPage .aboutSec .about_wrap .about_photo {
  flex: 1;
  position: relative;
}

.topPage .aboutSec .about_wrap .about_photo img {
  width: 100%;
  height: calc(100% - 150px);
  max-height: 510px;
  object-fit: cover;
}

.topPage .aboutSec .about_wrap .about_photo img:last-child {
  height: 210px;
  width: 210px;
  margin-top: -50px;
  margin-left: calc(100% - 60px);
  transition-delay: 0.4s;
}

.topPage .aboutSec .about_wrap .about_txt {
  display: inline-block;
  margin-bottom: 210px;
}

.topPage .aboutSec .about_wrap .about_txt p {
  line-height: 2.2;
  transition-delay: 0.2s;
}

.topPage .aboutSec .about_wrap .about_txt div {
  transition-delay: 0.4s;
}

@media screen and (max-width: 896px) {
  .topPage .aboutSec .about_wrap .about_txt {
    width: fit-content;
    order: -1;
    margin: 0 auto;
  }

  .topPage .aboutSec .about_wrap .about_photo {
    flex: initial;
    width: 100%;
  }

  .topPage .aboutSec .about_wrap .about_photo img {
    width: 80%;
    height: auto;
  }

  .topPage .aboutSec .about_wrap .about_photo img:last-child {
    width: 30%;
    height: auto;
    aspect-ratio: 1;
    margin-top: -10%;
    margin-left: auto;
  }

  .topPage .aboutSec .about_wrap .about_txt p {
    letter-spacing: 0.5px;
  }
}

/* facilitySec */

.topPage .facilitySec {
  position: relative;
  padding: var(--margin-blank) 0 0;
  z-index: 1;
}

.topPage .facilitySec:before {
  position: absolute;
  content: "";
  width: 75%;
  height: calc(100% - 190px);
  background: var(--color-bg);
  top: 0;
  left: 0;
  z-index: -1;
}

.topPage .facilitySec .facility_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 5%;
}

.topPage .facilitySec .facility_wrap .facility_txt {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.topPage .facilitySec .facility_wrap .facility_txt p {
  line-height: 2.2;
}

.topPage .facilitySec .facility_wrap .facility_txt div {
  transition-delay: 0.4s;
}

.topPage .facilitySec .facility_wrap figure {
  width: 45%;
  position: relative;
  z-index: 1;
  transition-delay: 0.4s;
  max-width: calc(95% - 542px);
}

.topPage .facilitySec .facility_wrap figure:before {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: var(--color-sub);
  top: 20px;
  left: 0;
  z-index: -1;
}

.topPage .facilitySec .facility_wrap figure img {
  padding-left: 20px;
  padding-bottom: 20px;
  height: 100%;
}

.topPage .facilitySec figure:last-child {
  width: 340px;
  aspect-ratio: 1;
  max-width: 25%;
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-top: -50px;
  transition-delay: 0.8s;
}

@media screen and (max-width: 896px) {
  .topPage .facilitySec:before {
    height: 680px;
    width: 100%;
  }

  .topPage .facilitySec .facility_wrap {
    justify-content: center;
  }

  .topPage .facilitySec .facility_wrap figure {
    flex: initial;
    width: 90%;
    max-width: initial;
    order: 2;
    margin-top: -20%;
    z-index: -1;
    position: relative;
    margin-left: auto;
    margin-right: -20px;
  }

  .topPage .facilitySec .facility_wrap figure img {
    padding: 0 0 15px 15px;
  }

  .topPage .facilitySec .facility_wrap figure:before {
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    top: 15px;
  }

  .topPage .facilitySec .facility_wrap figure:last-child {
    order: 1;
    margin: 0 auto 0 0;
    width: 40%;
    margin-top: 0;
    z-index: 1;
    margin-left: -20px;
  }

  .topPage .facilitySec .facility_wrap figure:last-child:before {
    content: none;
  }

  .topPage .facilitySec .facility_wrap figure:last-child img {
    padding: 0;
  }
}

/* 採用情報 */

.topPage .recruitSec {
  background: url(../img/recruit_bg.jpg)no-repeat 75% / cover;
  padding: 72px 64px;
  margin: 0;
}

.topPage .recruitSec .recruit_txt {
  position: relative;
}

.topPage .recruitSec .recruit_txt:before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: url(../img/icon/arrow.svg)no-repeat center / 20px;
  border: 1px solid #fff;
  top: 50%;
  right: 0;
  transition: 0.5s;
}

@media screen and (min-width: 897px) {
  .topPage .recruitSec:hover .recruit_txt:before {
    background-color: #fff;
    background-size: 25px;
    background-image: url(../img/icon/arrow_color.svg);
  }
}

@media screen and (max-width: 896px) {
  .topPage .recruitSec {
    padding: 155px 20px 30px;
    margin: 0;
  }

  .topPage .recruitSec .recruit_txt:before {
    top: 20px;
  }

  .topPage .recruitSec .recruit_txt:before {
    width: 50px;
    height: 50px;
    background-size: 13px;
  }

  .topPage .content:has(.recruitSec) {
    padding: 0;
  }
}

/* 投稿一覧 */

.post_content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5%;
}

.post_content .post_title {
  width: 250px;
}

.post_content .post_title h2 {
  font-size: 36px;
}

.post_content .post_list {
  flex: 1;
}

.post_content .post_list ul {
  border-bottom: 1px solid #ccc;
}

.post_content .post_list ul li a {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 30px 20px;
  border-top: 1px solid #ccc;
}

.post_content .post_list ul li a .post_thumb {
  width: 200px;
  background: #c0c0c0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 10px 0;
  overflow: hidden;
}

.post_content .post_list ul li a .post_thumb.noimg img {
  filter: brightness(2);
  width: 50%;
}

.post_content .post_list ul li a .post_txt {
  padding: 26px 40px;
  padding-right: 80px;
  flex: 1;
}

.post_content .post_list ul li a .post_txt time {
  display: inline-block;
  color: var(--color-main);
  font-size: 13px;
  margin-bottom: 12px;
}

.post_content .post_list ul li a .post_txt h3 {
  font-weight: bold;
}

.post_content .post_list ul li a .post_txt p {
  margin-top: 16px;
  font-size: 14px;
}

.post_content .post_list ul li a .post_thumb img {
  object-view-box: inset(0%);
  transition: 0.3s;
}

.post_content .post_list ul li a:hover .post_thumb.noimg img {
  width: 55%;
  object-view-box: inset(0%);
}

.post_content .post_list ul li a:hover .post_thumb img {
  object-view-box: inset(5%);
}

@media screen and (max-width: 896px) {
  .post_content .post_title h2 {
    margin-bottom: 0;
    font-size: 25px;
    width: 100%;
  }

  .post_content .post_list {
    flex: initial;
    width: 100%;
  }

  .post_content .post_list ul li a {
    padding: 20px;
  }

  .post_content .post_list ul li a .post_thumb {
    width: 110px;
    aspect-ratio: 1.2 / 1;
  }

  .post_content .post_list ul li a .post_txt {
    width: calc(100% - 130px);
    padding: 0;
    margin-left: 20px;
  }

  .post_content .post_list ul li a:before {
    content: none;
  }

  .post_content a.news_link {
    margin-left: auto;
    padding-left: 74px;
  }

  .post_content a.news_link:before {
    width: 50px;
    height: 50px;
  }
}


/* ------------------------------
   フッター
------------------------------ */

footer {
  background: var(--color-dark);
  padding: 80px 0px 60px;
}

footer a {
  color: #fff;
}

footer .footer_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 100px;
  border-bottom: 1px solid #fff;
  padding-bottom: 60px;
}

footer .footer_wrap .footer_lB {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 36px;
}

footer .footer_wrap .footer_lB .footer_logo img {
	width: 125px;
}

footer .footer_wrap .footer_rB {
  display: flex;
  flex-wrap: wrap;
  gap: 0 60px;
}

footer .footer_wrap .footer_rB ul li a {
  padding: 10px;
}

.footer_bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 50px;
  font-size: 12px;
  margin-top: 20px;
}


@media screen and (max-width: 896px) {
  footer {
    padding: 37px 0 24px;
  }

  .footer_content {
    padding: 50px 20px 180px;
  }
}

@media screen and (max-width: 500px) {
  footer .footer_wrap {
    flex-direction: column;
    padding-bottom: 47px;
  }

  footer .footer_wrap .footer_rB {
    flex-direction: column;
  }

  footer .footer_wrap .footer_rB ul li a {
    padding: 10px 20px;
  }

  footer h3 {
    padding: 0 20px;
  }

  footer p {
    margin-top: 15px;
    font-size: 11.5px;
    padding: 0 20px;
  }
}


/* ------------------------------
   下層ページ KV
------------------------------ */

.pageVisual {
  position: relative;
  width: 100%;
  z-index: 1;
}

.pageVisual img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.pageVisual .pageVisual_txt {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  justify-content: center;
}

.pageVisual .pageVisual_txt h1 {
  font-size: clamp(40px, 6vw, 64px);
  padding: 150px 0;
  font-weight: 600;
}

.pageVisual .pageVisual_txt h1 span {
  display: block;
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 400;
}

@media screen and (max-width: 600px) {
  .pageVisual {
    aspect-ratio: 75 / 71;
  }

  .pageVisual .pageVisual_txt h1 {
    padding: 100px 0;
    font-size: 30px;
  }

  .pageVisual .pageVisual_txt h1 span {
    font-size: 18px;
    margin-bottom: 0;
  }
}

/* ------------------------------
   Lineのこだわり
------------------------------ */

.aboutPage .missionSec p {
  line-height: 2.2;
  letter-spacing: 0.8px;
}

.aboutPage .actionSec {
  padding: var(--margin-blank) 0;
  background: var(--color-bg);
}

.aboutPage .action_wrap {
  margin-top: 84px;
}

.aboutPage .action_wrap .action_box {
  background: #fff;
  position: relative;
  padding: 12px 114px;
}

.aboutPage .action_wrap .action_box+.action_box {
  margin-top: 40px;
}

.aboutPage .action_wrap .action_box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 95px;
  height: 95px;
  background: var(--color-main);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  color: #fff;
  font-size: 24px;
  padding-right: 30px;
  text-align: center;
  line-height: 50px;
}

.aboutPage .action_wrap .action_box h3 {
  line-height: 2.2;
  font-size: 32px;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.aboutPage .action_wrap .action_box p {
  line-height: 2;
  font-size: 24px;
}

@media screen and (max-width: 896px) {
  .aboutPage .action_wrap {
    margin-top: 66px;
  }

  .aboutPage .action_wrap .action_box {
    padding: 10px 40px;
  }

  .aboutPage .action_wrap .action_box span {
    width: 55px;
    height: 45px;
    font-size: 18px;
    line-height: 30px;
    padding-right: 25px;
  }

  .aboutPage .action_wrap .action_box h3 {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .aboutPage .action_wrap .action_box p {
    font-size: 16px;
  }
}

.aboutPage .commitmentSec .commitment_wrap {
  margin-top: 100px;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 6%;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box+.commitment_box {
  margin-top: 120px;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box:nth-child(2n) {
  flex-direction: row-reverse;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box figure {
  width: 47%;
  position: relative;
  z-index: 1;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box:nth-child(3n - 2) figure:before {
  position: absolute;
  content: "";
  width: 60%;
  aspect-ratio: 1;
  background: var(--color-sub);
  top: 0;
  left: 0;
  transform: translate(-25%, -25%);
  z-index: -1;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box:nth-child(3n - 1) figure:before {
  position: absolute;
  content: "";
  height: 40%;
  aspect-ratio: 1;
  background: var(--color-sub);
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  z-index: -1;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box .commitment_txt {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box .commitment_txt h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 30px;
  transition-delay: 0.2s;
}

.aboutPage .commitmentSec .commitment_wrap .commitment_box .commitment_txt p {
  line-height: 2.2;
  transition-delay: 0.4s;
}

.aboutPage .recruitSec .recruitWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.aboutPage .recruitSec .recruitWrap img {
  width: calc(100% - 312px);
  box-shadow: 10px 10px var(--color-sub);
  object-fit: cover;
  object-position: 85% 50%;
}

.aboutPage .recruitSec .recruitTxt {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin: 40px 0;
}

@media screen and (max-width: 896px) {
  .aboutPage .commitmentSec .commitment_wrap {
    margin-top: 60px;
  }

  .aboutPage .commitmentSec .commitment_wrap .commitment_box+.commitment_box {
    margin-top: 40px;
  }

  .aboutPage .commitmentSec .commitment_wrap .commitment_box figure {
    width: 90%;
    margin: 0 auto;
  }

  .aboutPage .commitmentSec .commitment_wrap .commitment_box:nth-child(3n - 1) figure:before {
    transform: translate(50%, 20%);
  }

  .aboutPage .commitmentSec .commitment_wrap .commitment_box:nth-child(3n - 2) figure:before {
    transform: translate(-25%, -20%);
  }

  .aboutPage .commitmentSec .commitment_wrap .commitment_box .commitment_txt {
    width: 100%;
  }

  .aboutPage .commitmentSec .commitment_wrap .commitment_box .commitment_txt h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .aboutPage .recruitSec .recruitWrap img {
    width: 100%;
    aspect-ratio: 1.8 / 1;
  }

  .aboutPage .recruitSec .recruitTxt {
    margin: 0;
  }

}

/* ------------------------------
   会社概要
------------------------------ */

main:has(.companyPage) {
  background: var(--color-bg);
}

.companyPage .companySec .company_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4%;
  max-width: 1100px;
  margin: 0 auto;
}

.companyPage .companySec table {
  width: 100%;
  border-spacing: 0px;
  background: #fff;
  border-radius: 20px;
}

.companyPage .companySec table+table {
  margin-top: 80px;
  background: none;
  width: 48%;
}

.companyPage .companySec table th,
.companyPage .companySec table td {
  padding: 30px 54px;
  text-align: left;
  box-sizing: border-box;
  font-size: 24px;
}

.companyPage .companySec table+table th,
.companyPage .companySec table+table td {
  font-size: 18px;
  font-weight: 400;
  padding: 20px 40px;
}

.companyPage .companySec table th {
  width: 30%;
  min-width: 250px;
}

.companyPage .companySec table+table tr th {
  width: 180px;
  min-width: initial;
}

.companyPage .companySec table tr+tr th,
.companyPage .companySec table tr+tr td {
  border-top: 1px solid var(--color-bg);
}

.companyPage .companySec table+table tr+tr th,
.companyPage .companySec table+table tr+tr td {
  border-color: #fff;
}

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

  .companyPage .companySec table+table {
    margin-top: 30px;
	width: 100%;
  }

  .companyPage .companySec table th,
  .companyPage .companySec table td {
    padding: 30px 20px;
    width: 100%;
    display: block;
    font-size: 16px;
  }
	
  .companyPage .companySec table+table th,
  .companyPage .companySec table+table td {
    padding: 20px 15px;
	font-size: 14px;
  }

  .companyPage .companySec table th {
    padding-bottom: 0;
  }
	
  .companyPage .companySec table+table tr th {
    width: 100%;
	padding-bottom: 0px;
  }
	
  .companyPage .companySec table+table tr td {
	padding-top: 10px;
  }

  .companyPage .companySec table td {
    border-top: none !important;
    padding-top: 15px;
  }
}


/* ------------------------------
   施設紹介
------------------------------ */

.facilityPage .facility_topSec .facility_top_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.facilityPage .facility_topSec .facility_top_wrap .facility_top_txt {
  display: inline-flex;
  flex-direction: column;
}

.facilityPage .facility_topSec .facility_top_wrap figure {
  flex: 1;
  position: relative;
  z-index: 1;
}

.facilityPage .facility_topSec .facility_top_wrap figure:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-sub);
  top: 37px;
  left: 67px;
  z-index: -1;
}

.facilityPage .facility_topSec .facility_top_wrap figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facilityPage .facility_topSec p {
  line-height: 2.2;
  font-size: 24px;
}

.facilityPage .contact {
  margin-top: 80px;
  width: 100%;
}

.facilityPage .contact p {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.facilityPage .contact p:before,
.facilityPage .contact p:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 24px;
  background: var(--color-dark);
  bottom: 0;
  left: -16px;
  transform: translateX(-100%) rotate(-45deg);
}

.facilityPage .contact p:after {
  left: auto;
  right: -16px;
  transform: translateX(100%) rotate(45deg);
}

.facilityPage .contact a {
  display: inline-block;
  position: relative;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  padding: 20px 96px;
  border-radius: 100px;
  margin-top: 6px;
}

.facilityPage .contact a:before {
  position: absolute;
  content: "";
  width: 23px;
  aspect-ratio: 1;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.facilityPage .facilitySec {
  padding: 80px 0;
  background: var(--color-bg);
  margin-bottom: 0;
}

.facilityPage .facilitySec .facility_wrap+.facility_wrap {
  margin-top: 80px;
}

.facilityPage .facilitySec .facility_wrap .subTtl {
  margin-bottom: 0;
}

.facilityPage .facilitySec .facility_wrap .facility_box {
  margin-top: 80px;
  background: #fff;
  padding: 66px 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.facilityPage .facilitySec .facility_wrap .facility_box .facility_gallery {
  width: 50%;
}

.facilityPage .facilitySec .facility_wrap .facility_box .facility_gallery img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.facilityPage .facilitySec .facility_wrap .facility_box .facility_txt {
  width: calc(50% - 30px);
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facilityPage .facilitySec .facility_wrap .facility_box .facility_txt h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table {
  border-spacing: 0px;
  text-align: left;
}

.facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table th,
.facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table td {
  padding: 10px 0;
  font-weight: 400;
}

.facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table th {
  width: 130px;
}

.slick-track {
  display: flex !important;
  height: 100%;
  margin: 0 !important;
}

.slick-slide {
  height: auto !important;
}

.slick-slide>* {
  height: 100%;
}

.slick-list {
  height: 100%;
}

.slick-dots {
  position: static !important;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin-top: 10px;
  height: 100%;
}

.dot-image {
  border-radius: 0 !important;
}

.slick-dots li {
  margin-right: 10px;
  width: calc(25% - 15px / 4) !important;
  box-sizing: border-box;
  margin: 0 !important;
  height: 100% !important;
}

.slick-dots li>* {
  height: 100% !important;
}

.slick-dots li img {
  width: 100%;
}

.slick-dots li button {
  display: none;
}

.dot-image {
  width: 30px;
  /* Adjust size of the dot */
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.slick-dots li.slick-active .dot-image {
  border: 2px solid #000;
}

.facility_gallery {
  display: flex;
  flex-direction: column;
}

.facility_gallery .slick-slider {
  flex: 1;
  margin-bottom: 0 !important;
}

.facility_gallery .slick-dots-container {
  height: 20%;
  padding-top: 10px;
}

.facility_gallery .slick-dots-container .slick-dots {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
}

.facility_gallery .slick-dots-container:has(.slick-active:first-child:last-child) {
  display: none;
}



@media screen and (min-width: 897px) {
  .facilityPage .contact a:hover {
    background: #fff;
    color: var(--color-main);
  }

  .facilityPage .contact a:hover:before {
    background: var(--color-main);
  }
}

@media screen and (max-width: 896px) {
  .facilityPage .facility_topSec .facility_top_wrap .facility_top_txt {
    width: 100%;
  }

  .facilityPage .facility_topSec .facility_top_wrap figure {
    flex: auto;
    width: 80%;
  }

  .facilityPage .facility_topSec .facility_top_wrap figure:before {
    top: 30px;
  }
}

@media screen and (max-width: 896px) {
  .facilityPage .facility_topSec h2 {
    font-size: 24px;
  }

  .facilityPage .facility_topSec p {
    font-size: 16px;
  }

  .facilityPage .contact {
    margin-top: 24px;
  }

  .facilityPage .contact p {
    font-size: 14px;
    padding-bottom: 5px;
  }

  .facilityPage .contact a {
    font-size: 20px;
    padding: 9px 62px;
  }

  .facilityPage .contact a:before {
    width: 16px;
  }

  .facilityPage .facilitySec .facility_wrap .facility_box {
    padding: 30px 28px;
  }

  .facilityPage .facilitySec .facility_wrap .facility_box .facility_gallery,
  .facilityPage .facilitySec .facility_wrap .facility_box .facility_txt {
    width: 100%;
  }

  .facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table {
    width: 100%;
  }

  .facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table th,
  .facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table td {
    width: 100%;
    display: block;
  }

  .facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table th {
    padding-bottom: 2px;
  }

  .facilityPage .facilitySec .facility_wrap .facility_box .facility_txt table td {
    padding-top: 0;
  }

  .facilityPage .facilitySec .facility_wrap .facility_box {
    margin-top: 30px;
  }

  .facilityPage .facilitySec .facility_wrap .subTtl {
    margin-bottom: 60px;
  }
}


/* ------------------------------
   募集要項
------------------------------ */

.recruitPage .introSec {
  margin: 80px 0;
  border-left: 4px solid var(--color-main);
  padding-left: 16px;
}

.recruitPage .introSec h1 {
  font-size: 32px;
  font-weight: 600;
}

.recruitPage .introSec p {
  font-size: 24px;
  color: var(--color-main);
  font-weight: 600;
  margin-top: 5px;
}

.recruitPage .recruitmentSec {
  margin: 40px 0;
}

.recruitPage .recruitmentSec h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.recruitPage .recruitmentSec p {
  margin-bottom: 40px;
}

.recruitPage .recruitmentSec img {
  width: 100%;
}


@media screen and (max-width: 896px) {
  .recruitPage .introSec h1 {
    font-size: 24px;
  }

  .recruitPage .introSec p {
    font-size: 20px;
  }

  .recruitPage .recruitmentSec h3 {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
}


.formSec {
  margin: 80px 0;
}

.formSec h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 40px;
}

.formSec .form-area {
  background: var(--color-bg);
  padding: 40px 30px 50px;
}

.formSec .form-area input[type="text"],
.formSec .form-area input[type="number"],
.formSec .form-area input[type="email"],
.formSec .form-area input[type="tel"],
.formSec .form-area textarea {
  background: #fff;
  border: 1px solid var(--color-dark);
  width: 100% !important;
  padding: 12px 10px;
  min-height: 50px;
}

.formSec .form-area dt {
  margin-bottom: 3px;
}

.formSec .form-area dd {
  margin-bottom: 25px;
}

.formSec .form-area .p-contact-list__required {
  color: #b70000;
}

.formSec .form-area .wpcf7-radio {
  display: flex;
  flex-direction: column;
}

.formSec .form-area .wpcf7-radio>span {
  margin: 0;
}

.formSec .form-area .wpcf7-radio span span {
  display: inline-block;
  padding: 10px;
  cursor: pointer;
}

.formSec .form-area .form-btn {
  margin: 50px 0 20px;
}

.formSec .form-area .form-btn input {
  background: var(--color-main);
  color: #fff;
  padding: 10px 40px 9px;
  line-height: 2.2;
  border: 1px solid var(--color-main);
  transition: 0.3s;
}

@media screen and (min-width: 897px) {
  .formSec .form-area .form-btn input:hover {
    background: #fff;
    color: var(--color-main);
  }
}

.formSec .form-area .agreement a {
  display: inline-block;
  color: var(--color-main);
}

.confirmPage h3 {
  font-size: 24px;
}

.confirmPage .confirm-area {
  margin-top: 70px;
}

.confirmPage .confirm-area {
  border-top: 1px solid var(--color-bg);
}

.confirmPage .confirm-area dl {
  display: flex;
  flex-wrap: wrap;
}

.confirmPage .confirm-area dt,
.confirmPage .confirm-area dd {
  border-bottom: 1px solid var(--color-bg);
  padding: 30px 45px;
  box-sizing: border-box;
}

.confirmPage .confirm-area dt {
  width: 45%;
  text-align: right;
}

.confirmPage .confirm-area dd {
  width: 55%;
}

.confirmPage .p-contact-list__required {
  color: #b70000;
}

.confirmPage .confirm-area input {
  background: var(--color-main);
  color: #fff;
  padding: 10px 40px 9px;
  line-height: 2.2;
  margin: 50px 0 20px;
  border: 1px solid var(--color-main);
  transition: 0.3s;
  margin: 0;
}

@media screen and (min-width: 897px) {
  .confirmPage .confirm-area .form-btn input:hover {
    background: #fff;
    color: var(--color-main);
  }
}

.confirmPage .confirm-area .form-btn p {
  margin: 50px 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px 3%;
}

.confirmPage .confirm-area .form-btn .wpcf7-submit {
  width: 200px;
  max-width: 100%;
}

.confirmPage p.agreement {
  display: none;
}

.confirmPage .confirm-area .form-btn .c-back-btn {
  background: #929292;
  border-color: #929292;
}

.confirmPage .confirm-area .wpcf7-spinner {
  display: none !important;
}

.wpcf7-spinner {
  display: none !important;
}


.wpcf7-form-control-wrap {
  >.wpcf7-not-valid-tip {
    display: none;
    margin-top: 10px;
  }

  &.is-show {
    >.wpcf7-not-valid-tip {
      display: block;
    }
  }
}


@media screen and (max-width: 896px) {
  .formSec h3 {
    font-size: 28px;
  }

  .formSec .form-area {
    background: none;
    padding: 0;
  }

  .confirmPage h3 {
    font-size: 16px;
  }

  .confirmPage .confirm-area dt,
  .confirmPage .confirm-area dd {
    padding: 0;
    width: 100%;
  }

  .confirmPage .confirm-area dt {
    padding-top: 30px;
    padding-bottom: 5px;
    text-align: left;
    border-bottom: 0;
  }

  .confirmPage .confirm-area dd {
    padding-bottom: 30px;
    text-align: left;
  }
}


/* ------------------------------
   採用一覧
------------------------------ */

.recruit-list .post-group {
  padding-top: 60px;
}

.filter-wrapper {
  max-width: 600px;
  padding: 40px 70px;
  box-sizing: border-box;
  border: 10px solid #D9D9D9;
  margin: 0 auto;
}

.filter-wrapper .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
}

.filter-wrapper .filter-group+.filter-group {
  margin-top: 26px;
}

.filter-wrapper .filter-group .filter-title {
  width: 80px;
  font-weight: 600;
}

.filter-wrapper .filter-group .filter-items {
  width: calc(100% - 130px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.filter-wrapper .filter-group .filter-items label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.filter-wrapper .filter-group .filter-items input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  background: #D9D9D9;
  border: none;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.filter-wrapper .filter-group .filter-items input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 7px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

.filter-wrapper .filter-actions {
  margin-top: 30px;
}

.filter-wrapper .filter-actions a {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid;
}

@media screen and (min-width: 897px) {
  .filter-wrapper .filter-actions a:hover {
    background: var(--color-dark);
    color: #fff;
  }
}

.post-link {
  margin-bottom: 50px;
}

.post-link h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.post-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.post-link ul li {
  width: calc(50% - 2.5px);
}

.post-link ul li a {
  position: relative;
  background: var(--color-bg);
  font-weight: 600;
  display: inline-block;
  width: 100%;
  padding: 10px 15px;
  z-index: 1;
}

.post-link ul li a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  top: 48%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

.post-link ul li a:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: #fff;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: -2;
}

.post-list .post-group-title {
  font-size: 24px;
  margin-bottom: 60px;
  text-align: center;
}

.post-list .post-group-title span {
  font-size: 32px;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.post-list .post-group-title span:before,
.post-list .post-group-title span:after {
  position: absolute;
  content: "";
  width: 200px;
  height: 2px;
  background: var(--color-main);
  top: 50%;
}

.post-list .post-group-title span:before {
  left: -20px;
  transform: translate(-100%, -50%);
}

.post-list .post-group-title span:after {
  right: -20px;
  transform: translate(100%, -50%);
}

.post-list .post-group-empty {
  margin: 40px 0 100px;
  font-weight: 600;
  font-size: 24px;
}

.post-list .post-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.post-list .post-group-list .post-list-item {
  width: calc(100% / 3 - 20px);
  border: 10px solid #D9D9D9;
  box-sizing: border-box;
  padding: 20px 30px;
}

.post-list .post-group-list .post-list-item .status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 15px;
}

.post-list .post-group-list .post-list-item .status {
  color: var(--color-main);
  font-weight: 600;
  border: 4px solid;
  padding: 3px 10px;
}

.post-list .post-group-list .post-list-item .urgent {
  background: #ff0000;
  color: #fff;
  padding: 6px 27px;
  border-radius: 50px;
}

.post-list .post-group-list .post-list-item h3 {
  font-size: 23px;
  margin-bottom: 5px;
  font-weight: 600;
}

.post-list .post-group-list .post-list-item p {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-bg);
}

.post-list .post-group-list .post-list-item h4 {
  color: var(--color-main);
  font-weight: 600;
}

.post-list .post-group-list .post-list-item a {
  background: var(--color-main);
  color: #fff;
  border: 2px solid var(--color-main);
  margin: 0 15px;
  border-radius: 50px;
  padding: 10px;
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

.post-list .post-group-list .post-list-item a:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.post-group-title:has(.post-group-empty) .post-group-list {
  display: none !important;
}


@media screen and (max-width: 1150px) {
  .post-list .post-group-list .post-list-item {
    width: calc(50% - 15px);
  }
}

@media screen and (min-width: 897px) {
  .post-list .post-group-list .post-list-item a:hover {
    background: #fff;
    color: var(--color-main);
  }

  .post-list .post-group-list .post-list-item a:hover:before {
    background: var(--color-main);
  }
}

@media screen and (max-width: 896px) {
  .filter h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    background: radial-gradient(circle, var(--color-bg) 0%, var(--color-bg) 50%, transparent 51%) calc(100% - 7px) center / 50px 50px no-repeat;
  }

  .filter h3:before,
  .filter h3:after {
    background: var(--color-main);
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
  }

  .filter h3:before {
    height: 14px;
    right: 31.5px;
    width: 1.5px;
  }

  .filter h3:after {
    width: 14px;
    right: 25px;
    height: 1.5px;
  }

  .filter h3.close:before,
  .filter h3.close:after {
    transform: translateY(-50%) rotate(45deg);
  }

  .filter form {
    opacity: 0 !important;
    block-size: 0;
    transition: 0.5s;
  }

  .filter-wrapper {
    padding: 20px 26px;
  }

  .filter:has(.close) form {
    opacity: 1 !important;
    block-size: auto;
    block-size: calc-size(auto, size);
  }

  .filter-wrapper .filter-group .filter-title {
    width: 100%;
  }

  .post-list .post-group-title {
    font-size: 21px;
    margin-bottom: 40px;
  }

  .post-list .post-group-title span {
    font-size: 28px;
  }

  .post-list .post-group-title span:before,
  .post-list .post-group-title span:after {
    width: 50px;
  }

  .post-list .post-group-title span:before {
    left: -10px;
  }

  .post-list .post-group-title span:after {
    right: -10px;
  }

  .post-list .post-group-list .post-list-item {
    width: 100%;
    padding: 20px;
  }

  .post-list .post-group-list .post-list-item h4 {
    font-size: 15px;
  }

  .post-list .post-group-list .post-list-item .status {
    padding: 3px 7px;
  }

  .post-list .post-group-list .post-list-item .urgent {
    padding: 5px 24px;
  }

  .post-list .post-group-list .post-list-item a:before {
    content: none;
  }

  .post-list .post-group-empty {
    font-size: 16px;
    margin: 0 auto 40px;
  }

}



/* ------------------------------
   プライバシーポリシー
------------------------------ */

.privacy-policy_box {
  padding-bottom: 60px;
}

.privacy-policy_box+.privacy-policy_box {
  border-top: 1px solid var(--color-bg);
  padding: 60px 0;
}

.privacy-policy_box h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--color-main);
}

@media screen and (max-width: 896px) {
  .privacy-policy_box+.privacy-policy_box {
    padding: 25px 0;
  }

  .privacy-policy_box h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}


.LINE_banner {
  margin: 80px auto;
  max-width: 700px;
}

.topPage .LINE_banner {
  margin-bottom: 120px;
}

.dataSec {
  background: var(--color-bg);
  padding: 80px 0;
  margin-bottom: 0;
  font-family: "poppins", 'yu-gothic-medium', system-ui, -apple-system, 'Yugothic', 'Noto Sans JP', Roboto, Helvetica, Arial, sans-serif;
  ;
}

.dataSec .data_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 40px;
}

.dataSec .data_wrap .data_box {
  width: calc(50% - 20px);
  padding: 26px 36px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.dataSec .data_wrap .data_box>p {
  font-size: 20px;
  margin-top: auto;
}

.dataSec .data_wrap .data_box h3 {
  font-size: 32px;
  text-align: center;
  font-weight: 600;
}

.dataSec .data_wrap .data_box .gendar_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.dataSec .data_wrap .data_box .gendar_wrap .gendar_box {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  color: var(--color-main);
}

.dataSec .data_wrap .data_box .gendar_wrap .gendar_box img {
  height: 140px;
  object-fit: contain;
}

.dataSec .data_wrap .data_box .gendar_wrap .gendar_box h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}

.dataSec .data_wrap .data_box .gendar_wrap .gendar_box p {
  font-size: 30px;
  line-height: 1;
}

.dataSec .data_wrap .data_box .gendar_wrap .gendar_box p span {
  font-size: 50px;
}

.dataSec .data_wrap .data_box .age_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 5%;
  margin: auto 0;
  padding-bottom: 20px;
}

.dataSec .data_wrap .data_box .age_wrap .age_box {
  width: 47.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dataSec .data_wrap .data_box .age_wrap .age_box h4 {
  font-weight: 600;
  background: var(--color-main);
  color: #fff;
  padding: 10px 10px 5px;
  line-height: 1;
  font-size: 24px;
  z-index: 1;
  width: 90%;
  text-align: center;
}

.dataSec .data_wrap .data_box .age_wrap .age_box p {
  background: var(--color-bg);
  padding: 40px 20px 20px;
  text-align: center;
  margin-top: -15px;
  font-size: 32px;
  font-weight: 800;
  width: 100%;
  text-align: center;
}

.dataSec .data_wrap .data_box .age_wrap .age_box p span {
  font-size: 56px;
  font-weight: 600;
}

.dataSec .data_wrap .data_box ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dataSec .data_wrap .data_box ul li {
  display: inline-flex;
  flex-wrap: nowrap;
  width: 100%;
}

.dataSec .data_wrap .data_box ul li p {
  font-size: 20px;
  text-align: center;
  width: 88px;
}

.dataSec .data_wrap .data_box .year_wrap {
  margin: auto 0;
}

.dataSec .data_wrap .data_box ul li .year_graph {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.dataSec .data_wrap .data_box ul li span {
  display: block;
  height: 28px;
  background: #000;
  min-width: 5px;
}

.dataSec .data_wrap .data_box ul li:nth-child(2) span {
  background: #EAEBEB;
}

.dataSec .data_wrap .data_box ul li:nth-child(3) span {
  background: #9FA0A0;
}

.dataSec .data_wrap .data_box ul li:nth-child(4) span {
  background: #666565;
}

.dataSec .data_wrap .data_box ul li:nth-child(5) span {
  background: #BABBBB;
}

.dataSec .data_wrap .data_box ul li h4 {
  word-break: keep-all;
  color: var(--color-main);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.dataSec .data_wrap .data_box ul li h4 strong {
  font-size: 24px;
  font-weight: 500;
  height: 24px;
  display: inline-block;
}

.dataSec .data_wrap .welfare_box {
  text-align: center;
  line-height: 1;
  position: relative;
}

.dataSec .data_wrap .welfare_box:before {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 1;
  top: 15%;
  left: 8%;
  background: url(../img/person_icon.svg)no-repeat center / contain;
}

.dataSec .data_wrap .welfare_box:after {
  position: absolute;
  content: "";
  width: 20%;
  aspect-ratio: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 8%;
  background: url(../img/plane_icon.svg)no-repeat center / contain;
}

.dataSec .data_wrap .welfare_box h4 {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}

.dataSec .data_wrap .welfare_box p+h4 {
  margin-top: 10px;
}

.dataSec .data_wrap .welfare_box p {
  font-size: 24px;
  margin-top: 10px;
}

.dataSec .data_wrap .welfare_box span {
  font-size: 54px;
  color: var(--color-main);
}


@media screen and (max-width: 896px) {
  .dataSec .data_wrap .data_box {
    width: 100%;
    padding: 20px 20px 10px;
  }

  .dataSec .data_wrap .data_box h3 {
    font-size: 24px;
  }
}