@charset "UTF-8";

/*
Theme Name:株式会社つるまる
Description:株式会社つるまる様のテンプレートです
Version:1.0
Author:株式会社つるまる
*/

/*  共通 -------------------- */
:root{
/* font-family */
  --font-ja: "Noto Sans JP","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo",sans-serif;
/* color */
  --font-dark: #282828;
  --font-light: #fff;
  --font-accent: #06740B;
  --font-gray: #898989;
  --bg-light: #fff;
  --bg-base: #539D55;
  --bg-accent: #C1DCC2;
  --line-gray: #B8B8B8;
  --bg-warm:      #efe8d9;
  --green-bright: #07920d;
  --green-light:  #54c757;
  --color-required: #ff1212;
  --bg-opacity: rgba(0, 0, 0, 0.5);
  --shadow:     drop-shadow(0 0 10px rgba(0, 0, 0, 0.18));
/* font-weight */
  --fw-medium: 500;
  --fw-heavy: 700;
/* letter-spacing */
  --ls-normal: 0.04em;
/* line-height */
  --lh-normal: 1.8;
/* z-index */
  --z-header: 100;
  --z-overlay: 900;
  --z-menu: 1000;
}
html{
  font-size: 16px;
}
body{
  font-family: var(--font-ja);
  color: var(--font-dark);
  letter-spacing: var(--ls-normal);
  line-height: var(--lh-normal);
}
.sp {
  display: none;
}

/*  hoverアニメーション -------------------- */
  @media (hover: hover) and (pointer: fine) {
  .site-header__nav-list a:hover {
    color: var(--font-accent);
  }
  .nav a:hover {
    color: var(--font-accent);
  }
  .about__btn:hover,
  .business__card-btn:hover,
  .news__btn:hover,
  .news-list__btn:hover,
  .news-single__nav-btn:hover {
    color: #fff;
    background-color: var(--font-accent);
  }
  .about__btn:hover::after,
  .business__card-btn:hover::after,
  .news__btn:hover::after,
  .news-list__btn:hover::after,
  .news-single__nav-btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  }
  .news-single__nav-btn--prev:hover::before{
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  }
  .news-single__nav-btn:hover {
    cursor: pointer;
  }
  .recruit__btn:hover,
  .thanks__btn:hover {
    filter: brightness(0.8);
  }
  .contact__btn--blue:hover   { background: rgba(15, 155, 255, 0.85); }
  .contact__btn--green:hover  { background: rgba(45, 199, 49, 0.85); }
  .contact__btn--yellow:hover { background: rgba(255, 194, 61, 0.85); }

  .work-image__btn:hover,
  .visit__btn:hover,
  .service-card__btn:hover {
    transform: translateY(3px);
  }
}
/*  header -------------------- */
.site-header {
  background-color: var(--bg-light);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-header__logo {
  width: 180px;
  height: 93px;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-header__nav-list a {
  font-weight: var(--fw-heavy);
  font-size: 20px;
  color:var(--font-dark);
  white-space: nowrap;
  transition: all 0.16s ease-in;
}

.site-header__nav-list .is-current {
  font-weight: var(--fw-heavy);
  font-size: 20px;
  color: var(--font-dark);
  width: 30px;
  height: 2px;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 12px;
  cursor: default;
}

/*  ハンバーガーメニュー -------------------- */
/* ハンバーガーメニュー 閉じた状態 */
.humberger {
  width: 48px;
  height: 48px;
  border: 1px solid var(--font-dark);
  cursor: pointer;
  transition: 0.06s ease-in;
  position: relative;
  display: none;
  z-index:  calc(var(--z-menu) + 1);
}
.humberger-line{
  width: 26px;
  height: 2px;
  background-color: var(--font-dark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: opacity 0.2s ease;
}
.humberger-line::before,
.humberger-line::after {
  content: "";
  width: 26px;
  height: 2px;
  background-color: var(--font-dark);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1),
          top 0.3s cubic-bezier(.4,0,.2,1);
}
.humberger-line::before{
  top: -8px;
}
.humberger-line::after {
  top: 8px;
}
/* ハンバーガーメニュー　開いた状態 */
.humberger.is-open .humberger-line {
  background: transparent;
}
.humberger.is-open .humberger-line::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.humberger.is-open .humberger-line::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}
/* menu */
.nav-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top:0;
  left: 0;
  z-index: var(--z-menu);
  visibility: hidden; /* 非表示状態 */
  transition: visibility 0.3s;
}
/* メニューが開いている時 */
.nav-wrapper.is-open {
  visibility: visible;
}

.menu-overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: var(--z-overlay);
}
.nav-wrapper.is-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
.nav-container {
  width: 250px;
  height: 100vh;
  background-color:var(--bg-light);
  position: absolute;
  top:0;
  right: 0;
  z-index: var(--z-menu);
  /* 最初は画面の右外に配置 */
  transform: translateX(100%); 
  /* スライドアニメーションの設定 */
  transition: transform 0.3s ease;
}
/* 親に.is-openがついたら、元の位置(0)に戻る */
.nav-wrapper.is-open .nav-container {
  transform: translateX(0);
}
.nav {
  margin: 80px auto 0;
  text-align: center;
}
.nav li{
  color: var(--font-dark);
  font-size: 18px;
  font-weight: var(--fw-heavy);
  margin-block: 16px;
}

.nav a {
  transition: color 0.16s ease-in;
}

/*  first-view -------------------- */
.fv {
  position: relative;
  width: 100%;
  height: 630px;
  overflow: hidden;
  display: flex;
  margin-top: 125px;
  justify-content: center;
  align-items: center;
}

.fv__bg {
  background: url(./img/bg_fv.webp) no-repeat top/cover;
  position: absolute;
  inset: 0;
}

.fv__inner {
  max-width: 1440px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.fv__logo {
  flex: 1 1 550px;
  max-width: 550px;
  width: 100%;
  min-width: 0;
  /* flex-shrink: 0; */
  filter: drop-shadow(0 0 20px #fff);
}

.fv__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fv__text {
  color: var(--font-light);
  position: relative;
  min-width: 0;
}

.fv__catch {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  max-width: 750px;
  width: 100%;
  word-break: keep-all; 
  overflow-wrap: anywhere;
}

.fv__sub {
  font-size: 24px;
  font-weight: var(--fw-medium);
  line-height: normal;
  margin-top: 88px;
  word-break: keep-all; 
  overflow-wrap: anywhere;
}


/*  about-us -------------------- */
.about {
  background: linear-gradient(128deg, #f2fcf6 0%, #ffffff 3%, rgba(84, 199, 87, 0.7) 134%);
  min-height: 658px;
  padding: 120px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about__text {
  max-width: 770px;
  width: 100%;
  padding-right: 40px;
}

.about__text::before {
  content: attr(data-en);
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
  margin-left: 3px;
  margin-bottom: 12px;
}

.about__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
}

.about__subtitle {
  font-size: 20px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  margin-top: 38px;
}

.about__body {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 26px;
  color: var(--font-dark);
  margin-top: 20px;
}

.about__body p + p {
  margin-top: 0;
}

.about__imgs {
  position: relative;
  width: 347px;
  height: 276px;
  flex-shrink: 0;
}

.about__img {
  position: absolute;
  width: 248px;
  height: 165px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img--1 {
  top: 0;
  left: 99px;
  z-index: 1;
}

.about__img--2 {
  top: 111px;
  left: 0;
}

.about__btn-wrap {
  margin-top: 40px;
  padding-bottom: 60px;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 294px;
  height: 56px;
  padding: 0 28px;
  background: var(--bg-light);
  border: 1px solid var(--font-accent);
  border-radius: 50px;
  font-size: 20px;
  font-weight: var(--fw-medium);
  color: var(--font-accent);
  white-space: nowrap;
  transition: all 0.16s ease-in;
}

.about__btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-accent);
  border-right: 2px solid var(--font-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: all 0.16s ease-in;
}


/*  business -------------------- */
.business {
  padding: 120px 0 80px;
  text-align: center;
}

.business__head {
  display: inline-block;
  text-align: center;
}

.business__head::before {
  content: attr(data-en);
  display: block;

  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.business__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  margin-top: 4px;
}

.business__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  width: 100%;
  margin: 50px auto 0;
  padding: 0 40px;
}

.business__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 350px;
  height: 385px;
  padding: 32px;
  border: 1px solid var(--line-gray);
}

.business__card-name {
  font-size: 32px;
  font-weight: var(--fw-heavy);
  line-height: 1.15;
  color: var(--font-dark);
  text-align: center;
}

.business__card-desc {

  font-weight: var(--fw-medium);
  color: var(--font-dark);
  white-space: nowrap;
}

.business__card-icon {
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 182px;
  height: 56px;
  background: var(--bg-light);
  border: 1px solid var(--font-dark);
  border-radius: 50px;

  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  white-space: nowrap;
  transition: all 0.16s ease-in;
}

.business__card-btn::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--font-dark);
  border-right: 2px solid var(--font-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: all 0.16s ease-in;
}


/*  media -------------------- */
.media {
  background-color: var(--bg-accent);
  padding: 120px 40px 80px;
  text-align: center;
}

.media__head {
  display: inline-block;
}

.media__head::before {
  content: attr(data-en);
  display: block;

  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.media__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  margin-top: 4px;
}

.media__desc {

  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  margin-top: 20px;
}

.media__slide-wrap {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 40px auto 0;
}

.media__slider {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}
.media__caption {
  min-height: 90px;
  text-align: justify;
}

.slick-track {
  display: flex !important;
  align-items: flex-end; /* 下揃え */
}

.slick-dotted.slick-slider {
  margin-top: 40px;
  margin-bottom: 100px;
}
.slick-initialized .slick-slide {
  width: 100%;
  margin-right: 40px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-dots {
  bottom: -72px;
}

/*  recruit -------------------- */
.recruit {
  padding: 120px 0;
}

.recruit__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.recruit__img {
  flex: 1;
  max-width: 580px;
  min-width: 0;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.recruit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit__text {
  flex: 1;
  min-width: 0;
}

.recruit__text::before {
  content: attr(data-en);
  display: block;

  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.recruit__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  margin-top: 8px;
}

.recruit__lead {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--font-dark);
  margin-top: 25px;
  word-break: keep-all; 
  overflow-wrap: anywhere;
}

.recruit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 281px;
  height: 72px;
  background: var(--bg-base);
  border-radius: 50px;

  font-weight: var(--fw-heavy);
  color: var(--font-light);
  margin-top: 48px;
  transition: all 0.16s ease-in;
}

.recruit__btn::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--font-light);
  border-right: 2px solid var(--font-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/*  news -------------------- */
.news {
  padding: 70px 0 80px;
}

.news__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.news__head::before {
  content: attr(data-en);
  display: block;

  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.news__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  margin-top: 4px;
}

.news__list {
  margin-top: 46px;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line-gray);
}

.news__item + .news__item {
  margin-top: 16px;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 35px;
}

.news__date {
  font-weight: var(--fw-heavy);
  color: var(--font-gray);
  white-space: nowrap;
}
.news__cat {
  display: flex;
  gap: 16px;
}
.news__cat div{
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  height: 35px;
  background: var(--bg-base);
  border-radius: 50px;

  font-weight: var(--fw-heavy);
  color: var(--font-light);
  white-space: nowrap;
}

.news__name {
  font-size: 24px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  line-height: normal;
}

.news__body p {
  color: var(--font-dark);
  letter-spacing: 0.04em;
  line-height: normal;
  max-width: 66em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.news__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 182px;
  height: 56px;
  background: var(--bg-light);
  border: 1px solid var(--font-dark);
  border-radius: 50px;

  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  white-space: nowrap;
  transition: all 0.16s ease-in;
}

.news__btn::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--font-dark);
  border-right: 2px solid var(--font-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: all 0.16s ease-in;
}
.wp-pagenavi {
  display: flex;
  gap: 16px;
}
.wp-pagenavi > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--font-dark);
}
.wp-pagenavi a {
  color: var(--font-accent);
}
/*  contact -------------------- */
.contact {
  position: relative;
  height: 577px;
  overflow: hidden;
  padding-inline: 40px;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background: url(./img/contact_bg.webp) no-repeat center / cover;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
}

.contact__head::before {
  content: attr(data-en);
  display: block;

  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-light);
  text-align: center;
}

.contact__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-light);
  text-align: center;
  margin-top: 4px;
}

.contact__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(243, 0, 0, 0.66);
  padding: 16px 0;
  margin-top: 38px;
}

.contact__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact__tel-num {
  font-size: 32px;
  font-weight: var(--fw-heavy);
  letter-spacing: 0.2em;
  line-height: 38px;
  color: var(--font-light);
  white-space: nowrap;
}

.contact__tel-text {
  font-size: 24px;
  font-weight: var(--fw-heavy);
  line-height: 38px;
  color: var(--font-light);
  text-align: center;
}

.contact__btns {
  display: flex;
  gap: 24px;
  width:100%;
  margin-top: 40px;
}

.contact__btn {
  flex: 1;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 24px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-light);
  text-align: center;
}

.contact__btn--blue   { background: rgba(15, 155, 255, 0.66); }
.contact__btn--green  { background: rgba(45, 199, 49, 0.66); }
.contact__btn--yellow { background: rgba(255, 194, 61, 0.66); }


/*  footer -------------------- */
.footer {
  background: var(--bg-base);
  height: 412px;
  padding: 0 40px;
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__logo {
  width: 100%;
  max-width: 400px;
  flex: 1;
  min-width: 0;
  margin-right: 40px;
}

.footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__right {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.footer__nav-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.footer__nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  font-weight: var(--fw-heavy);
  color: var(--font-light);
  line-height: normal;
}

.footer__nav-list a::before {
  content: '-';
}

.footer__nav-list .is-current {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
  line-height: normal;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: default;
}

.footer__nav-list .is-current::before {
  content: '-';
}

.footer__copy {
  font-size: 13px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
  white-space: nowrap;
}


/*  service-hero -------------------- */
.service-hero {
  background-color: var(--bg-base);
  height: 230px;
  margin-top: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-hero__inner::before {
  content: attr(data-en);
  font-size: 24px;
  font-weight: var(--fw-heavy);
  line-height: 1;
  color: var(--font-light);
  letter-spacing: 0.1em;
}

.service-hero__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: 1;
  color: var(--font-light);
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-align: center;
}


/*  service-intro -------------------- */
.service-intro {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.service-intro__text {
  max-width: 850px;
  width: 100%;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--font-dark);
  line-height: var(--lh-normal);
  letter-spacing: var(--ls-normal);
}

.service-intro__text p + p {
  margin-top: 1em;
}

.service-intro__text strong {
  color: var(--font-accent);
  font-weight: var(--fw-heavy);
}

.service-intro__text b {
  font-size: 20px;
  font-weight: var(--fw-heavy);
  letter-spacing: 0.05em;
}

/*  about-intro -------------------- */
.about-intro {
  padding: 120px 40px;
}

.about-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about-intro__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  text-align: center;
}

.about-intro__lead {
  font-size: 24px;
  font-weight: var(--fw-medium);
  color: var(--font-dark);
  text-align: center;
  line-height: 1.4;
  line-break: strict;
  word-break: keep-all; 
  overflow-wrap: anywhere;
}

.about-intro__text {
  max-width: 800px;
  width: 100%;
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
  color: var(--font-dark);
}

.about-intro__text p + p {
  margin-top: 1em;
}

.about-intro__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
}

.about-intro__logo-item {
width: 100%;
}

.about-intro__logo-item--small {
  width: 50%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.about-intro__logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


/*  philosophy -------------------- */
.philosophy {
  padding: 80px 40px;
  display: flex;
  align-items: center;
}

.philosophy__bg {
  background: url(./img/philosophy_bg.webp) no-repeat center/cover;
  inset: 0;
  overflow: hidden;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.philosophy__en {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.philosophy__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
}

.philosophy__quote {
  font-size: 30px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
}

.philosophy__desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 32px;
  color: var(--font-dark);
  max-width: 1148px;
}


/*  company -------------------- */
.company {
  padding: 80px 40px;
}

.company__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.company__en {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.company__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
}

.company__table {
  width: 825px;
  max-width: 100%;
  border: 1px solid var(--line-gray);
  background-color: var(--bg-light);
}

.company__row {
  display: grid;
  grid-template-columns: 230px 1fr;
}

.company__th {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  text-align: left;
  border-bottom: 1px solid var(--line-gray);
  background-color: var(--bg-light);
}

.company__th:first-child {
  border-right: 1px solid var(--line-gray);
}

.company__td {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--font-dark);
  text-align: left;
  border-bottom: 1px solid var(--line-gray);
  line-height: var(--lh-normal);
  background-color: var(--bg-light);
  overflow-wrap: break-word;
  min-width: 0;
}

.company__td--label {
  font-weight: var(--fw-heavy);
  border-right: 1px solid var(--line-gray);
}

.company__tbody .company__row:last-child .company__td {
  border-bottom: none;
}

.company__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company__list li {
  display: flex;
}

.company__list li::before {
  content: '・';
  flex-shrink: 0;
}


/*  value -------------------- */
.value {
  padding: 80px 40px;
}

.value__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.value__en {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.value__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.value__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* RESPECT */
.value__respect {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.value__respect-main {
  font-size: 36px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.value__respect-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.value__respect-sub {
  font-size: 26px;
  font-weight: 600;
  color: var(--line-gray);
  letter-spacing: 0.04em;
  position: absolute;
  top: -20px;
}

.value__respect-word {
  font-size: 80px;
  font-weight: var(--fw-heavy);
  font-style: italic;
  line-height: normal;
  color: var(--font-accent);
  letter-spacing: 0.06em;
  transform: skewX(-11deg);
}

.value__lead {
  font-size: 30px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  letter-spacing: 0.04em;
  text-align: center;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.value__subtitle {
  font-size: 30px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  letter-spacing: 0.04em;
  text-align: center;
}

/* Downward arrow */
.value__arrow {
  width: 0;
  height: 0;
  border-left: 58px solid transparent;
  border-right: 58px solid transparent;
  border-top: 65px solid var(--font-accent);
}

/* Cards */
.value__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px, 1fr));
  gap: 40px;
}

.value__card {
  width: 100%;
  height: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 20px;
}

.value__card--outline {
  background-color: var(--bg-light);
  border: 3px solid var(--green-bright);
}

.value__card--filled {
  background-color: var(--green-light);
}

.value__card-title {
  font-size: 32px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  white-space: nowrap;
}

.value__card--outline .value__card-title { color: var(--green-bright); }
.value__card--filled .value__card-title  { color: var(--font-light); }

.value__card-line {
  width: 261px;
  border: none;
  border-top: 1.5px solid;
  margin-top: 24px;
  flex-shrink: 0;
}

.value__card--outline .value__card-line { border-color: var(--green-bright); }
.value__card--filled  .value__card-line { border-color: var(--font-light); }

.value__card-desc {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
}

.value__card--outline .value__card-desc { color: var(--green-bright); }
.value__card--filled  .value__card-desc { color: var(--font-light); }

.value__closing {
  font-size: 36px;
  font-weight: var(--fw-heavy);
  line-height: 55px;
  color: var(--font-dark);
  text-align: center;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.value__accent {
  color: var(--font-accent);
}

/* Action box */
.value__action {
  background-color: var(--bg-accent);
  border-radius: 30px;
  padding: 80px 40px;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.value__action-title {
  font-size: 36px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
  letter-spacing: 0.04em;
  text-align: center;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.value__action-list {
  background-color: var(--bg-light);
  border-radius: 30px;
  padding: 40px;
  width: 1000px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value__action-item {
  display: flex;
  align-items: center;
}

.value__action-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--font-accent);
  color: var(--font-light);
  font-size: 20px;
  font-weight: var(--fw-heavy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value__action-name {
  width: 270px;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 48px;
  color: var(--font-dark);
  margin-left: 15px;
}

.value__action-desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 32px;
  color: var(--font-dark);
  margin-left: 16px;
}

/*  vision -------------------- */
.vision {
  padding: 80px 40px;
}

.vision__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vision__en {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.vision__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
}

.vision__body {
  font-size: 30px;
  font-weight: var(--fw-heavy);
  line-height: 55px;
  color: var(--font-dark);
}

.vision__desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 32px;
  color: var(--font-dark);
}


/*  mission -------------------- */
.mission {
  padding: 80px 40px;
}

.mission__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission__en {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.mission__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
}

.mission__body {
  font-size: 30px;
  font-weight: var(--fw-heavy);
  line-height: 55px;
  color: var(--font-dark);
}

.mission__accent {
  color: var(--font-accent);
}

.mission__desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 32px;
  color: var(--font-dark);
}


/*  slogan -------------------- */
.slogan {
  padding: 0 40px 80px;
}

.slogan__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.slogan__en {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.slogan__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);
}

.slogan__body {
  font-size: 30px;
  font-weight: var(--fw-heavy);
  line-height: 55px;
  color: var(--font-dark);
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.slogan__accent {
  color: var(--font-accent);
}


/*  greeting -------------------- */
.greeting {
  padding: 40px;
}

.greeting__card {
  max-width: 1200px;
  background-color: var(--bg-warm);
  padding: 40px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.greeting__text {
  max-width: 590px;
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.greeting__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  line-height: normal;
  margin-bottom: 42px;
}

.greeting__body {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 27px;
  color: var(--font-dark);
  flex: 1;
}

.greeting__name {
  font-size: 20px;
  font-weight: var(--fw-medium);
  line-height: 27px;
  color: var(--font-dark);
  white-space: nowrap;
  margin-top: auto;
  padding-top: 40px;
}

.greeting__img {
  flex: 0 1 480px;
  min-width: 0;
  aspect-ratio: 480/662;
  overflow: hidden;
}

.greeting__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/*  service-cats -------------------- */
.service-cats {
  padding: 0 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* カテゴリ枠線色 */
.service-cat--01 { --cat-color: #539D55; }
.service-cat--02 { --cat-color: #e0a9b3; }
.service-cat--03 { --cat-color: #ffb1a7; }
.service-cat--04 { --cat-color: #fff687; }
.service-cat--05 { --cat-color: #5b6ea1; }

/* カード背景色・文字色 */
.service-card--01 { --card-bg: #539D55; --card-text: #fff; }
.service-card--02 { --card-bg: #539D55; --card-text: #fff; }
.service-card--03 { --card-bg: #efe8d9; --card-text: #282828; }
.service-card--04 { --card-bg: #e0a9b3; --card-text: #fff; }
.service-card--05 { --card-bg: #122876; --card-text: #fff; }
.service-card--06 { --card-bg: #ffb1a7; --card-text: #282828; }
.service-card--07 { --card-bg: #46ba9f; --card-text: #282828; }
.service-card--08 { --card-bg: #fff687; --card-text: #282828; }
.service-card--09 { --card-bg: #5b6ea1; --card-text: #fff; }

.service-cat {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  border: 2px solid var(--cat-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.service-cat__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.service-cat__head p {
  text-align: center;
}
.service-cat__name {
  font-size: 32px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--font-dark);

}

.service-card {
  width: 100%;
  max-width: 980px;
  min-height: 246px;
  color: var(--card-text);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 48px;
}

.service-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 300px;
  min-width: 0;
}

.service-card__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.service-card__name {
  font-size: 24px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  color: var(--card-text);
}

.service-card__desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
  color: var(--card-text);
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 182px;
  height: 56px;
  background-color: var(--bg-light);
  border: 2px solid var(--font-dark);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  white-space: nowrap;
  transition: all 0.1s ease-in;
}

.service-card__btn::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--font-dark);
  border-right: 2px solid var(--font-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/*  message -------------------- */
.message {
  position: relative;
  overflow: hidden;
  padding: 0px 0 64px;
}

.message__bg {
  position: absolute;
  inset: 0;
  background: url(./img/message_bg.webp) no-repeat top / cover;
  max-height: 500px;
}

.message__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 0 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  margin-top: 340px;
}

.message__en {
  font-size: 36px;
  font-weight: 600;
  line-height: 26px;
  color: var(--font-accent);
}

.message__card {
  max-width: 1200px;
  width: 100%;
  background: rgba(6, 116, 11, 0.7);
  padding: 40px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 44px;
  color: var(--font-light);
  bottom:-80px;
}

.message__card-title {
  font-size: 24px;
  font-weight: var(--fw-heavy);
  line-height: normal;
  text-align: center;
}

.message__card-body {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: var(--lh-normal);
}

.message__card-body p + p {
  margin-top: 1em;
}


/*  guideline -------------------- */
.guideline {
  padding: 80px 0 120px;
  text-align: center;
}

.guideline__head {
  margin-bottom: 60px;
}

.guideline__en {
  font-size: 24px;
  font-weight: var(--fw-medium);
  color: var(--font-accent);
  margin-bottom: 20px;
}

.guideline__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
}

.guideline__cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.guideline__card {
  flex: 1;
  max-width: 617px;
  border: 1px solid var(--font-dark);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
}

.guideline__card-header {
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guideline__card-header--01 {
  background: rgba(132, 54, 67, 0.7);
}

.guideline__card-header--02 {
  background: rgba(29, 173, 178, 0.7);
}

.guideline__card-name {
  font-size: 32px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
}

.guideline__card-img {
  height: 312px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.guideline__card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.guideline__table {
  padding: 0 22px;
}

.guideline__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line-gray);
}

.guideline__label {
  width: 130px;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
}

.guideline__value {
  flex: 1;
  font-size: 20px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
}

.guideline__row:last-child {
  border-bottom: none;
}

.guideline__value p + p {
  margin-top: 0.5em;
}

/*  reason -------------------- */
.reason {
  width: 100%;
  padding: 120px 40px;
  background-color: var(--font-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.reason__title {
  color: var(--font-light);
  font-size: 48px;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/*  fukuri -------------------- */
.fukuri-wrap {
  background-color: var(--bg-light);
  max-width: 1360px;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.fukuri-wrap h3 {
  font-size: 40px;
  font-weight: var(--fw-heavy);
}

.fukuri-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.fukuri__card {
	width: 100%;
  background-color: var(--font-accent);
	padding: 9px;
	box-sizing: border-box;
}

.fukuri__card-inner {
  width: 100%;
  height: 100%;
	background: var(--bg-light);
	border-radius: 11px;
	box-sizing: border-box;
	overflow: hidden;
}

.fukuri__card-header {
	background: url(./img/stripe.webp) no-repeat center/cover;
	color: #fff;
	-webkit-text-stroke: 6px var(--font-accent);
	paint-order: stroke;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 6px 0;
	letter-spacing: 0.05em;
	display: block;
	width: 100%;

}
.fukuri__card-text {
	padding: 12px 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.fukuri__card-subtitle {
	font-size: 14px;
	font-weight: 600;
	color: #108463;
	text-align: center;
}

.fukuri__card-emphasis {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	letter-spacing: 0.04em;
	-webkit-text-stroke: 8px #296541;
	paint-order: stroke;
}
.fukuri__card-emphasis-small {
	font-size: 16px;
}
.fukuri__card-note {
	font-size: 12px;
	color: #222;
	text-align: justify;
	margin-bottom: 14px;
}

.fukuri__card-detail-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fukuri__card-detail-list li {
	font-size: 11px;
	color: #333;
	line-height: 1.6;
	padding-left: 1.2em;
	text-indent: -1.2em;
}

.fukuri__card-detail-list li::before {
	content: '◎';
	color: #333;
	margin-right: 2px;
}

/*  wage -------------------- */
.wage-wrap {
  background-color: var(--bg-light);
  max-width: 1360px;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.wage-wrap h3 {
  font-size: 40px;
  font-weight: var(--fw-heavy);
}

.table-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow-x: auto; /* 横スクロール対応 */
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 580px; /* 最低幅を確保して崩れ防止 */
  background-color: #fff;
  border: 2px solid #333;
}

th, td {
  border: 1px solid #333;
  padding: 14px 12px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

thead tr th {
  background-color: #c8a96e;
  color: #224935;
  font-weight: bold;
  font-size: 14px;
}

tbody tr {
  background-color: #FDF1E1;
}

tbody tr:nth-child(even) {
  background-color: #FDF1E1;
}

tbody td:first-child {
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
}
tbody tr td:nth-child(n + 2):nth-child(-n + 5) {
  background: var(--bg-light);
}
.num-red {
  color: #c0392b;
  font-weight: bold;
}

.salary {
  color: #c0392b;
  font-weight: bold;
}


/*  support -------------------- */
.support {
  background: var(--bg-light);
  max-width: 1360px;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.support__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  white-space: nowrap;
}

.support__img {
  max-width: 1249px;
  width: 100%;
}

.support__img img {
  width: 100%;
  height: auto;
  display: block;
}


/*  work-image -------------------- */
.work-image {
  background: var(--bg-light);
  max-width: 1360px;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.work-image__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  white-space: nowrap;
}

.work-image__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1040px;
  width: 100%;
}

.work-image__left {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
}

.work-image__manga-label {
  display: inline-block;
  background: #fff469;
  width: 235px;
  font-size: 36px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  padding: 9px 6px 16px;
  line-height: 1;
}

.work-image__subtitle {
  font-size: 36px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  margin-top: 36px;
  white-space: nowrap;
}

.work-image__desc {
  font-size: 16px;
  font-weight: var(--fw-medium);
  line-height: 24px;
  color: var(--font-dark);
  margin-top: 28px;
}

.work-image__btns {
  display: flex;
  justify-content: center;
  gap: 43px;
  margin-top: 64px;
}

.work-image__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 200px;
  height: 55px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  white-space: nowrap;
  transition: all 0.1s ease-in;
}

.work-image__btn--outline {
  background: var(--bg-light);
  border: 1px solid var(--font-accent);
  color: var(--font-accent);
}

.work-image__btn--outline::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--font-accent);
  border-right: 2px solid var(--font-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.work-image__btn--red {
  background: #ff1212;
  color: var(--font-light);
}

.work-image__btn--red::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--font-light);
  border-right: 2px solid var(--font-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.work-image__right {
  flex: 0 1 720px;
}

.work-image__right img {
  width: 100%;
  height: auto;
  display: block;
}

.work-image__interview-note {
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  width: 100%;
}

.work-image__interview-link {
  display: block;
  font-size: 24px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  text-decoration: underline;
  width: 100%;
  line-height: normal;
}

.work-image__form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 260px;
  height: 55px;
  background: var(--bg-light);
  border: 3px solid #2277bd;
  border-radius: 20px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: #2277bd;
  white-space: nowrap;
}

.work-image__form-btn::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2277bd;
  border-right: 2px solid #2277bd;
  transform: rotate(45deg);
  flex-shrink: 0;
}


/*  visit -------------------- */
.visit {
  background: var(--bg-light);
  max-width: 1360px;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.visit__title {
  font-size: 48px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  text-align: center;
}

.visit__lead {
  font-size: 32px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.visit__schedule {
  font-size: 32px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  text-align: center;
  white-space: nowrap;
}

.visit__red  { color: #ff1212; }
.visit__blue { color: #008cff; }

.visit__img {
  width: 597px;
  height: 242px;
  overflow: hidden;
}

.visit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.visit__note {
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  text-align: center;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.visit__btns {
  display: flex;
  gap: 40px;
  align-items: center;
}

.visit__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 200px;
  height: 55px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  white-space: nowrap;
  transition: all 0.1s ease-in;
}

.visit__btn--outline {
  background: var(--bg-light);
  border: 3px solid #2277bd;
  color: #2277bd;
}

.visit__btn--outline::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2277bd;
  border-right: 2px solid #2277bd;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.visit__btn--green {
  background: #00d209;
  color: var(--font-light);
}

.visit__btn--green::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--font-light);
  border-right: 2px solid var(--font-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/*  faq -------------------- */
.faq {
  background: var(--bg-light);
  padding: 80px 40px;
}

.faq__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.faq__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  color: var(--font-accent);
  text-align: center;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__item {
  border: 1px solid var(--font-dark);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq__icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.faq__icon--q {
  border: 1.5px solid #ea3e3e;
  color: #ea3e3e;
}

.faq__icon--a {
  border: 1.5px solid #2277bd;
  color: #2277bd;
}

.faq__q-text {
  flex: 1;
  font-size: 20px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
}

.faq__toggle {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-dark);
  border-right: 2px solid var(--font-dark);
  transform: rotate(135deg);
  transition: transform 0.3s;
  margin-right: 4px;
}

.faq__item.is-open .faq__toggle {
  transform: rotate(-45deg);
}

.faq__a {
  display: none;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 24px 24px;

}

.faq__a-text {
  flex: 1;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--font-dark);
  line-height: 1.5;
  letter-spacing: 0.04em;
}


/*  contact-form -------------------- */
.contact-form {
  padding: 40px 40px 0px;
}

.contact-form__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wpcf7-list-item {
  margin: 0;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  display: flex;
  justify-content: left;
  align-items: center;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  margin-right: 16px;
  border-radius: 2px;
  background-color: var(--color-required);
  font-size: 16px;
  line-height: 1.8;
  color: var(--font-light);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.contact-form__label-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--font-dark);
  letter-spacing: 0.05em;
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-wrap::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--font-dark);
  pointer-events: none;
}
.contact-form__select-wrap .wpcf7-not-valid-tip {
  position: absolute;
  top: 130%;
  left: 0;
}
.contact-form__select {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border: 1px solid var(--line-gray);
  background-color: var(--bg-light);
  font-size: 16px;
  color: var(--font-dark);
  letter-spacing: 0.05em;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__input {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border: 1px solid var(--line-gray);
  background-color: var(--bg-light);
  font-size: 16px;
  color: var(--font-dark);
  letter-spacing: 0.05em;
}

.contact-form__textarea {
  width: 100%;
  height: 227px;
  padding: 10px 20px;
  border: 1px solid var(--line-gray);
  background-color: var(--bg-light);
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-dark);
  letter-spacing: 0.05em;
  resize: vertical;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder,
.contact-form__select option[value=""] {
  color: var(--font-gray);
}

.contact-form__privacy {
  display: flex;
  flex-direction: column;

  gap: 16px;
}

.contact-form__checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-gray);
  background-color: var(--bg-light);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
}

.contact-form__checkbox:checked {
  background-color: var(--bg-base);
  border-color: var(--bg-base);
}

.contact-form__checkbox:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--font-light);
  border-bottom: 2px solid var(--font-light);
  transform: rotate(45deg);
}
.contact-form__privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form__privacy p a {
  display: block;
  color: var(--font-dark);
  text-align: center;
  text-decoration: underline;
}

.contact-form__submit-wrap {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.contact-form__submit {
  display: block;
  text-align: center;
  gap: 16px;
  width: 230px;
  height: 72px;
  padding: 0 36px;
  background-color: var(--bg-base);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
  cursor: pointer;
}

.contact-form__submit::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-light);
  border-right: 2px solid var(--font-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/*  thanks -------------------- */
.thanks {
  padding: 120px 40px;
}

.thanks__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.thanks__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: 1;
  color: var(--font-dark);
  text-align: center;
}

.thanks__body {
  width: 100%;
}

.thanks__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--font-dark);
}

.thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 277px;
  height: 72px;
  background-color: var(--bg-base);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
  transition: all 0.1s ease-in;
}

.thanks__btn::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-light);
  border-right: 2px solid var(--font-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/*  privacy -------------------- */
.privacy {
  padding: 120px 40px;
}

.privacy__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.privacy__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: 1.4;
  color: var(--font-dark);
  text-align: center;
}

.privacy__body {
  width: 100%;
}

.privacy__body h3 {
  font-size: 18px;
  font-weight: var(--fw-medium);
  margin-top: 24px;
}

.privacy__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--font-dark);
}

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

.privacy__list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--font-dark);
  padding-left: 1em;
  position: relative;
}

.privacy__list li::before {
  content: '・';
  position: absolute;
  left: 0;
}


/*  not-found -------------------- */
.not-found {
  padding: 120px 40px;
}

.not-found__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.not-found__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  line-height: 1.4;
  color: var(--font-dark);
  text-align: center;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.not-found__body {
  text-align: center;
}

.not-found__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--font-dark);
}

.not-found__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 277px;
  height: 72px;
  background-color: var(--bg-base);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
}

.not-found__btn::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-light);
  border-right: 2px solid var(--font-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/*  archive -------------------- */
.archive-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 40px;
}
.archive-wrapper .news__cat div{

}

/*  news-single -------------------- */
.news-single {
  padding: 120px 40px;
}

.news-single__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.news-single__article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.news-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-single__date {
  font-size: 16px;
  line-height: 1.8;
  color: var(--font-dark);
}

.news-single__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 20px;
  background-color: var(--bg-base);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
  white-space: nowrap;
}

.news-single__title {
  font-size: 40px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
}

.news-single__divider {
  border: none;
  border-top: 1px solid var(--line-gray);
}

.news-single__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--font-dark);
}

.news-single__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-single__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  padding: 0 28px;
  border: 1px solid var(--font-dark);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  transition: all 0.1s ease-in;
}

.news-single__nav-btn--prev {
  width: 220px;
}

.news-single__nav-btn--prev::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-dark);
  border-left: 2px solid var(--font-dark);
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.news-single__nav-btn--list {
  width: 180px;
}

.news-single__nav-btn--next {
  width: 220px;
}

.news-single__nav-btn--next::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-dark);
  border-right: 2px solid var(--font-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
}


/*  news-list -------------------- */
.news-list {
  padding: 120px 40px;
}

.news-list__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.news-list__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.news-list__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-gray);
}

.news-list__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-list__date {
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-gray);
}

.news-list__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 20px;
  background-color: var(--bg-base);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-light);
  white-space: nowrap;
}

.news-list__title {
  font-size: 24px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
}

.news-list__body {
  font-size: 16px;
  font-weight: var(--fw-heavy);
  line-height: 1.8;
  color: var(--font-gray);
  width: 100%; 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.news-list__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 56px;
  padding: 0 28px;
  border: 1px solid var(--font-dark);
  border-radius: 50px;
  font-size: 16px;
  font-weight: var(--fw-heavy);
  color: var(--font-dark);
  transition: all 0.1s ease-in;
}

.news-list__btn::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--font-dark);
  border-right: 2px solid var(--font-dark);
  transform: rotate(45deg);
  flex-shrink: 0;
}



/* レスポンシブ（タブレット以下）
================================================== */
@media (max-width: 1023px) {

  .site-header__logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
  }

  .humberger {
    display: block;
  }

.site-header__nav {
  display: none;
  }

  /*  first-view -------------------- */
  .fv {
    height: 450px;
    margin-top: 80px;
  }

  .fv__catch {
    font-size: 35px;
    font-weight: var(--fw-heavy);
    line-height: normal;
    max-width: 750px;
    width: 100%;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .fv__sub {
    font-size: 20px;
    font-weight: var(--fw-medium);
    line-height: normal;
    margin-top: 88px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  /*  about us -------------------- */
  .about__text::before {
    font-size: 20px;
  }
  .about__title {
    font-size: 32px;
  }
  .about__subtitle {
    font-size: 18px;
  }
  .about__btn {
    width: 280px;
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
  }
/*  business content -------------------- */
  .business__head::before {
    font-size: 20px;
  }
  .business__title {
    font-size: 32px;
  }
  /*  media -------------------- */
  .media {
    padding: 80px 40px 80px;
  }
  .media__head::before {
    font-size: 20px;
  }
  .media__title {
    font-size: 32px;
  }
  .media__caption {
    font-size: 14px;
  }
  /*  recruit -------------------- */
  .recruit {
    padding: 80px 0 40px;
  }
  .recruit__text::before {
    font-size: 20px;
  }
  .recruit__title{
    font-size: 32px;
  }

  .recruit__lead {
    font-size: 24px;
  }
  .recruit__btn {
    width: 200px;
    height: 50px;
  }
  /*  news -------------------- */
  .news {
    padding: 40px 0;
  }
  .news__text::before {
    font-size: 20px;
  }
  .news__title{
    font-size: 32px;
  }
  .news__name {
    font-size: 22px;
  }
    .news__body p {
    -webkit-line-clamp: 2;
  }
  .news__btn {
    width: 160px;
    height: 50px;
  }
  /*  contact -------------------- */
  .contact__text::before {
    font-size: 20px;
  }
  .contact__title{
    font-size: 32px;
  }
  .contact__tel-num {
    font-size: 28px;
  }
  .contact__tel-text,
  .contact__btn {
    font-size: 20px;
  }

  /*  service-hero -------------------- */
  .service-hero {
    height: 200px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-hero__inner::before {
    font-size: 22px;
  }
  .service-hero__title {
    font-size: 32px;
  }
  .about-intro {
    padding: 80px 40px;
  }
  .about-intro__title {
    font-size: 32px;
  }
  .about-intro__lead {
    font-size: 22px;
  }
  .greeting__title {
    font-size: 34px;
  }
  /*  slogan -------------------- */
  .slogan__en {
    font-size: 22px;
  }

  .slogan__title {
    font-size: 32px;
  }

  .slogan__body {
    font-size: 26px;
  }
  /*  philosophy -------------------- */
  .philosophy__en {
    font-size: 22px;
  }

  .philosophy__title {
    font-size: 32px;
  }

  .philosophy__quote {
    font-size: 24px;
  }
/*  mission -------------------- */
.mission__en {
  font-size: 22px;
}

.mission__title {
  font-size: 32px;
}

.mission__body {
  font-size: 26px;
  line-height: 48px;
}

/*  vision -------------------- */
.vision {
  padding: 0 40px 80px;
}

.vision__en {
  font-size: 22px;
}

.vision__title {
  font-size: 32px;
}

.vision__body {
  font-size: 26px;
  line-height: 48px;
}
/*  value -------------------- */
.value {
  padding: 0 40px 40px;
}
.value__en {
  font-size: 22px;
}
.value__title {
  font-size: 32px;
}
.value__respect-main {
  font-size: 24px;
}
.value__respect-sub {
  font-size: 18px;
}
.value__respect-word {
  font-size: 56px;
}
.value__lead,
.value__subtitle,
.value__closing {
  font-size: 26px;
}
.value__arrow {
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 50px solid var(--font-accent);
}
.value__card {
  height: 230px;
}
.value__card-title {
  font-size: 24px;
}
.value__card-line {
  margin-top: 16px;
}
.value__card-desc {
  line-height: 43px;
  margin-top: 16px;
}
.value__action {
  margin-top: 32px;
  padding: 40px;
}
.value__action-title {
  font-size: 30px;
}
.value__action-item {
  align-items: flex-start;
}
.value__action-num {
  width: 30px;
  height: 30px;
  font-size: 18px;
  margin-top: 3px;
}
.value__action-name {
  width: 235px;
  font-size: 18px;
  line-height: 32px;
  margin-left: 8px;
}
/*  company -------------------- */
.company__en {
  font-size: 22px;
}
.company__title {
  font-size: 32px;
}
/*  service -------------------- */
.service-card {
  padding: 24px;
}
.service-cat__name {
  font-size: 22px;
}
/*  guideline -------------------- */
.guideline {
  padding: 40px;
}
.guideline__head {
  margin-bottom: 40px;
}
.guideline__en {
  font-size: 22px;
  margin-bottom: 0;
}
.guideline__title {
  font-size: 32px;
}
.guideline__cards {
  padding: 0;
  justify-content: space-between;
}
.guideline__card-header {
  height: 65px;
}
.guideline__card-name {
  font-size: 24px;
}
.guideline__card-img {
  height: 272px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.guideline__row {
  padding: 8px 0;
}
.guideline__label {
  font-size: 16px;
  width: 70px;
}
.guideline__value {
  font-size: 16px;
}
/*  reason -------------------- */
.reason {
  padding: 40px;
  gap: 40px;
}
.fukuri-wrap {
  padding: 24px 40px;
  gap: 32px;
}
.reason__title {
  font-size: 32px;
}
.fukuri-wrap h3 {
  font-size: 28px;
}
/*  wage -------------------- */
.wage-wrap {
  padding: 24px 40px;
  gap: 32px;
}
.wage-wrap h3 {
  font-size: 28px;
}
th, td {
  padding: 8px;
}
/*  support -------------------- */
.support {
  padding: 24px 40px;
} 
.support__title {
  font-size: 28px;
}
/*  work-image -------------------- */
.work-image {
  padding: 24px 40px;
}
.work-image__title {
  font-size: 28px;
}
.work-image__manga-label {
  font-size: 28px;
  width: 190px;
}
.work-image__subtitle {
  font-size: 28px;
}
.work-image__content {
  flex-direction: column;
  align-items: center;
}
.work-image__right {
  flex: 0 1 auto;
  max-width: 380px;
}
.visit {
  padding: 24px 40px;
}
/*  visit -------------------- */
.visit {
  gap: 32px;
}
.visit__title {
  font-size: 28px;
}
.visit__lead {
  font-size: 22px;
}
.visit__schedule {
  font-size: 22px;
}
.visit__btn {
  width: 200px;
  height: 55px;
}
/*  faq -------------------- */
.faq {
  padding: 24px 40px;
}
.faq__title {
  font-size: 32px;
}
/*  contact-form -------------------- */
.contact-form {
  padding: 80px 40px;
}
/*  thanks -------------------- */
.thanks {
  padding: 80px 40px;
}
.thanks__title {
  font-size: 32px;
}
/*  not-found -------------------- */
.not-found {
  padding: 80px 40px;
}
.not-found__title {
  font-size: 32px;
}
/*  news -------------------- */
.news-list {
  padding: 80px 40px;
}
.news-list__body {
  -webkit-line-clamp: 2;
}
/*  news-single -------------------- */
.news-single {
  padding: 80px 40px;
}
.news-single__title {
  font-size: 32px;
}
}


/* レスポンシブ（スマホ以下）
================================================== */
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .sp-none {
    display: none;
  }
  /*  first-view -------------------- */
  .fv {
    height: 90vh;
  }

  .fv__bg {
    width: 100%;
    height: 100%;
    background: url(./img/bg_fv_sp.webp) no-repeat center/cover;
  }

  .fv__inner {
    flex-direction: column;
    justify-content: left;
  }

  .fv__logo {
    flex: 0 0 auto;
    max-width: 450px;
  }

  .fv__catch {
    font-size: 22px;
    text-align: center;
  }

  .fv__sub {
    font-size: 18px;
    margin-top: 40px;
    text-align: center;
  }

  /*  about us -------------------- */
  .about__inner {
    flex-direction: column;
    gap: 40px;
  }
  .about__text {
    padding-right: 0;
  }
    .about__text::before {
    font-size: 18px;
  }
  .about__title {
    font-size: 28px;
  }
  .about__body {
    font-size: 14px;
  }
  .about__img {
    width: 180px;
    height: auto;
  }
  .about__btn {
    gap: 8px;
    width: 250px;
    height: 50px;
    padding: 0 16px;
    font-size: 16px;
  }
  /*  business content -------------------- */
  .business__head::before {
    font-size: 18px;
  }
  .business__title {
    font-size: 28px;
  }
  .business__card{
    width: 280px;
    height: 320px;
  }
  .business__card-name {
    font-size: 22px;
  }
  .business__card-desc {
    font-size: 14px;
  }
  .business__card-icon {
    width: 100px;
    height: 100px;
  }
  .business__card-btn {
    gap: 12px;
    width: 160px;
    height: 45px;
    background: var(--bg-light);
    border: 1px solid var(--font-dark);
    border-radius: 50px;
    font-weight: var(--fw-heavy);
    color: var(--font-dark);
    white-space: nowrap;
  }
  /*  recruit -------------------- */
  .recruit {
    padding: 40px 0;
  }
  .recruit__text::before {
    font-size: 18px;
  }
  .recruit__title{
    font-size: 28px;
  }
  .recruit__inner {
    flex-direction: column-reverse;
  }
  /*  news -------------------- */
  .news__text::before {
    font-size: 18px;
  }
  .news__title{
    font-size: 28px;
  }
  .news__name {
  font-size: 20px;
  }
  .news__date,
  .news__body p,
  .news__cat
  {
    font-size: 14px;
  }
  .news__body p {
    -webkit-line-clamp: 3;
  }
  .news__cat {
    padding: 0 16px;
    height: 30px;
  }
  /*  contact -------------------- */
  .contact {
    height: auto;
    padding-inline: 24px;
  }
  .contact__inner {
    padding: 40px 0 40px;
  }
  .contact__text::before {
    font-size: 18px;
  }
  .contact__title{
    font-size: 28px;
  }
  .contact__tel-num {
    font-size: 22px;
  }
  .contact__tel-text,
  .contact__btn
  {
    font-size: 18px;
  }
  .contact__btns {
    flex-direction: column;
  }
  .contact__btn {
    padding-block: 16px;
  }
  /*  footer -------------------- */
  .footer {
    margin-top: 40px;
    padding: 0 24px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer__logo {
    max-width: 200px;
    margin-right: 0;
  }
  .footer__right {
    gap: 40px;
  }
  .footer__nav-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    font-size: 14px;
  }
  /*  service-hero -------------------- */
  .service-hero {
    height: 130px;
  }
  .service-hero__inner::before {
    font-size: 20px;
  }
  .service-hero__title {
    font-size: 24px;
  }
  .about-intro {
    padding: 40px 24px;
  }
  .about-intro__title {
    font-size: 24px;
  }
  .about-intro__lead {
    font-size: 20px;
  }
  .intro__text {
    font-size: 14px;
  }
  .about-intro__logos {
    grid-template-columns: repeat(auto-fit, minmax(100px,250px));
    justify-content: center;
  }
  /*  greeting -------------------- */
  .greeting {
    padding: 24px;
  }
  .greeting__card {
    flex-direction: column;
    align-items: center;
  }
  .greeting__title {
    font-size: 34px;
    text-align: center;
  }
  .greeting__body {
    font-size: 14px;
  }
  .greeting__name {
    font-size: 18px;
  }
  .greeting__img {
    flex: 0 1 320px;
  }
  /*  slogan -------------------- */
  .slogan {
    padding: 40px 24px;
  }
  .slogan__inner {
    gap: 24px;
  }
  .slogan__en {
    font-size: 20px;
  }

  .slogan__title {
    font-size: 24px;
  }

  .slogan__body {
    font-size: 18px;
    line-height: 36px;
  }
 /*  philosophy -------------------- */
  .philosophy {
    padding: 40px 24px;
  }
  .philosophy__inner {
    gap: 24px;
  }
  .philosophy__en {
    font-size: 20px;
  }

  .philosophy__title {
    font-size: 24px;
  }

  .philosophy__quote {
    font-size: 18px;
    line-break: strict;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .philosophy__desc {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
  }
/*  mission -------------------- */
.mission {
  padding: 40px 24px;
}

.mission__inner {
  gap: 24px;
}

.mission__en {
  font-size: 20px;
}

.mission__title {
  font-size: 24px;
}

.mission__body {
  font-size: 18px;
  line-height: 32px;
}

.mission__desc {
  font-size: 14px;
  line-height: 28px;
}

/*  vision -------------------- */
.vision {
  padding: 0 24px 40px;
}

.vision__inner {
  gap: 24px;
}

.vision__en {
  font-size: 20px;
}

.vision__title {
  font-size: 24px;
}

.vision__body {
  font-size: 18px;
  line-height: 32px;
}

.vision__desc {
  font-size: 14px;
  line-height: 28px;
}
/*  value -------------------- */
.value {
  padding: 0 40px 24px;
}
.value__inner {
  gap: 24px;
}
.value__en {
  font-size: 20px;
}
.value__title {
  font-size: 24px;
}
.value__contents {
  gap: 24px;
}
.value__respect-main {
  font-size: 18px;
}
.value__respect-sub {
  font-size: 16px;
}
.value__respect-word {
  font-size: 40px;
}
.value__lead,
.value__subtitle,
.value__closing {
  font-size: 18px;
}
.value__closing {
  line-height: 32px;
}
.value__arrow {
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 40px solid var(--font-accent);
}
.value__cards {
  grid-template-columns: repeat(auto-fit,minmax(260px, 280px));
  gap: 24px;
  justify-content: center;
}
.value__card {
  height: 200px;
  margin: 0 auto;
}
.value__card-title {
  font-size: 20px;
}
.value__card-line {
  width: 100%;
  margin-top: 8px;
}
.value__card-desc {
  font-size: 16px;
  line-height: 43px;
  margin-top: 8px;
}

.value__action {
  margin-top: 16px;
  padding: 16px;
  border-radius: 15px;
  gap: 24px;
}
.value__action-title {
  font-size: 22px;
}
.value__action-list {
  padding: 16px;
  border-radius: 15px;
  gap: 24px;

}
.value__action-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px 0;
}
.value__action-num {
  width: 25px;
  height: 25px;
  font-size: 16px;
  margin-top: 3px;
}
.value__action-name {
  width:100%;
  font-size: 16px;
  line-height: 24px;
  margin-left: 8px;
}
.value__action-desc {
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  margin: 0;
  grid-column: 1 / -1;
}
/*  company -------------------- */
.company {
  padding: 40px 24px;
}
.company__en {
  font-size: 20px;
}
.company__title {
  font-size: 24px;
}
.company__thead {
  display: none;
}
.company__row {
  grid-template-columns: 1fr;
}
.company__td {
  font-size: 14px;
  padding: 12px;
}
.company__td--label {
  background-color: var(--bg-accent);
  border-right: none;
  border-bottom: 1px solid var(--line-gray);
}
/*  service -------------------- */
.service-intro {
  padding: 40px 24px;
}
.service-intro__text {
  font-size: 14px;
}
.service-cat__head p {
  font-size: 14px;
}
.service-intro__text b {
  font-size: 18px;
}
.service-cats {
  padding: 0 24px 40px;
  gap: 24px;
}
.service-cat {
  padding: 16px;
  gap: 24px;
}
.service-cat__name {
  text-align: center;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.service-card {
  padding: 16px;
  flex-direction: column;
  gap: 24px;
}
.service-card__logo {
  flex: 0 1 auto;
  max-width: 300px;
}
.service-card__name {
  font-size: 18px;
  text-align: center;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.service-card__desc {
  font-size: 14px;
  text-align: justify;
}
.service-card__btn {
  width: 160px;
  height: 45px;
}
/*  recruit -------------------- */
.message {
  padding-bottom: 40px;
}
.message__bg {
  background: url(./img/message_bg_sp.webp) no-repeat top/cover;
}
.message__inner {
  padding-inline: 24px;
  margin-top: 240px;
  gap: 48px;
}
.message__en {
  font-size: 24px;
}
.message__card {
  padding: 32px 24px;
  gap: 32px;
}
.message__card-title {
  font-size: 20px;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.message__card-body {
  font-size: 14px;
}
/*  guideline -------------------- */
.guideline {
  padding: 0 24px 40px;
}
.guideline__head {
  margin-bottom: 24px;
}
.guideline__en {
  font-size: 20px;
}
.guideline__title {
  font-size: 24px;
}
.guideline__cards {
  flex-direction: column;
  gap: 24px;
}
.guideline__card-header {
  height: 50px;
}
.guideline__card-name {
  font-size: 18px;
}
.guideline__card-img {
  height: 200px;
}
.guideline__table {
  padding: 0 16px;
}
.guideline__row {
  gap: 8px;
}
.guideline__label {
  font-size: 14px;
  width: 60px;
}
.guideline__value {
  font-size: 14px;
}
/*  reason -------------------- */

.reason {
  padding: 40px 24px;
  gap: 40px;
}
.fukuri-wrap {
  padding: 24px 16px;
  gap: 24px;
}
.reason__title {
  font-size: 22px;
  text-align: center;
}
.fukuri-wrap h3 {
  font-size: 18px;
}
.fukuri-wrap p {
  font-size: 14px;
}
.fukuri-cards {
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}
.fukuri__card-header {
  font-size: 18px;
}
.fukuri__card-text {
  gap: 0;
}
.fukuri__card-emphasis-small {
  font-size: 14px;
}
.fukuri__card-emphasis {
  font-size: 24px;
}
/*  wage -------------------- */
.wage-wrap {
  padding: 24px;
  gap: 24px;
}
.wage-wrap h3 {
  font-size: 18px;
}
.wage-wrap p {
  font-size: 14px;
}
.table-wrapper table {
  width: 700px;
}
th, td {
  padding: 8px;
}
th {
  vertical-align: middle;
}
/*  support -------------------- */
.support {
  padding: 24px 16px;
  gap: 24px;
} 
.support__title {
  font-size: 18px;
}
/*  work-image -------------------- */
.work-image {
  padding: 24px 16px;
  gap: 24px;
}
.work-image__title {
  font-size: 18px;
}
.work-image__manga-label {
  font-size: 16px;
  width: 120px;
}
.work-image__subtitle {
  font-size: 16px;
  margin-top: 16px;
  white-space: wrap;
}
.work-image__desc {
  font-size: 14px;
}
.work-image__btns {
  margin-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.work-image__btn {
  width: 170px;
  height: 45px;
  border-radius: 12px;
}
.work-image__interview-link {
  font-size: 16px;
}
.work-image__form-btn {
  font-size: 14px;
  width: 210px;
  height: 45px;
  border-radius: 12px;
}
/*  visit -------------------- */
.visit {
  padding: 24px 16px;
  gap: 16px;
}
.visit__title {
  font-size: 18px;
}
.visit__lead {
  font-size: 14px;
  text-align: center;
}
.visit__schedule {
  font-size: 14px;
}
.visit__img {
  width: 100%;
  height: auto;
}
.visit__note {
  font-size: 14px;
}
.visit__btns {
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.visit__btn {
  width: 170px;
  height: 45px;
  border-radius: 12px;
}
/*  faq -------------------- */
.faq {
  padding: 24px 16px;
}
.faq__title {
  font-size: 24px;
}
.faq__q {
  padding: 12px;
}
.faq__a {
  padding: 0 12px 12px;
}
.faq__icon {
  font-size: 18px;
  width: 25px;
  height: 25px;
}
.faq__q-text {
  font-size: 16px;
}
.faq__a-text {
  font-size: 14px;
}
/*  contact-form -------------------- */
.contact-form {
  padding: 40px 24px;
}
.contact-form__form {
  gap: 24px;
}
.contact-form__required {
  font-size: 14px;
}
.contact-form__label-text {
  font-size: 14px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-size: 14px;
}
.contact-form__input,
.contact-form__select {
  height: 35px;
}
.contact-form__privacy-label {
  font-size: 14px;
}
.contact-form__submit {
  width: 200px;
  height: 45px;
  font-size: 14px;
}
/*  thanks -------------------- */
.thanks {
  padding: 40px 24px;
}
.thanks__title {
  font-size: 24px;
}
.thanks__body p {
  font-size: 14px;
}
.thanks__btn {
  width: 220px;
  height: 45px;
  font-size: 14px;
}
/*  not-found -------------------- */
.not-found {
  padding: 40px 24px;
}
.not-found__title {
  font-size: 24px;
}
.not-found__body p {
  font-size: 14px;
}
.not-found__btn {
  width: 220px;
  height: 45px;
  font-size: 14px;
}
/*  news -------------------- */
.news-list {
  padding: 40px 24px;
}
.news-list__item {
  padding-bottom: 16px;
}
.news-list__date,
.news-list__body {
  font-size: 14px;
}
.news-list__tag {
  font-size: 14px;
  height: 30px;
  padding: 0 12px;
}
.news-list__title {
  font-size: 18px;
}
.news-list__btn {
  width: 160px;
  height: 45px;
  font-size: 14px;
}
/*  news-single -------------------- */
.news-single {
  padding: 40px 24px;
}
.news-single__article {
  gap: 12px;
}
.news-single__title {
  font-size: 24px;
}
.news-single__date,
.news-single__body {
  font-size: 14px;
}
.news-single__tag {
  font-size: 14px;
  height: 30px;
  padding: 0 12px;
}
.news-single__nav-btn {
  font-size: 14px;
  gap: 8px;
  width: 150px;
  height: 45px;
}
.pc-only {
  display: none;
}
.news-single__nav-btn--prev,
.news-single__nav-btn--next {
  width: 45px;
  padding: 0;
}
}