@charset "UTF-8";

:root {
  --main-color: #28BF19;
  --sub-color: #2e8b57;
  --base-color: #F2F2F2;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: clip;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  --min-size: 53;
  --max-size: 146;
  --min-viewport: 375;
  --max-viewport: 1440;
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) * .1rem);
  --clamp-size: clamp(var(--min-size) * .1rem, var(--fluid-size), var(--max-size) * .1rem);
}

body {
  line-height: 1.8;
  --min-size: 16;
  --max-size: 17;
  font-size: var(--clamp-size);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #FAFAFA;
  color: #333;
  letter-spacing: 0.05em;
  /* overflow-x: hidden; */
  overflow-x: clip;
}

img {
  vertical-align: bottom;
}

figure {
  margin: 0;
}

iframe {
  width: 100%;
}

table {
  border-spacing: 0;
}

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
input,
textarea {
  transition: all .3s ease-in-out;
}

.spOnly {
  display: block;

  @media (width >=769px) {
    display: none;
  }
}

/* レイアウト */
.w-container {
  width: min(89%, 1100px);
  margin-inline: auto;

  @media (width >=769px) {
    width: min(92%, 1100px);
  }
}

.h-container {
  padding-top: clamp(4rem, 8vw, 14rem);
  padding-bottom: clamp(9rem, 5vw, 13rem);
}

.servicePage-common {
  overflow-x: clip;
}

/* 見出し */
.pageTitle {
  font-weight: 700;
  --min-size: 50;
  --max-size: 100;
  font-size: var(--clamp-size);
  color: var(--main-color);
  margin-bottom: 10rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;

  & span {
    color: #BEBEBE;
    display: block;
    --min-size: 14;
    --max-size: 16;
    font-size: var(--clamp-size);
  }
}

.heading {
  font-weight: 700;
  --min-size: 26;
  --max-size: 32;
  font-size: var(--clamp-size);
  color: var(--main-color);
}

.headingJp {
  color: #BEBEBE;
  display: block;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
}

.subHeading {
  font-weight: 600;
  --min-size: 22;
  --max-size: 28;
  font-size: var(--clamp-size);
  color: var(--sub-color);
}

.pc-only {
  display: none;
}
/* 共通パーツ */
@media (width >=769px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}

/* MOREリンク */
.linkContainer {
  text-align: center;
  margin-top: 3rem;
}

.moreLink {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.moreLink .moreText {
  margin-right: 2rem;
  transition: color 0.3s ease;
}

.cssPlusButton {
  display: inline-block;
  position: relative;
  width: 4rem;
  height: 4rem;
  border: .1rem solid #000;
  border-radius: 50%;
  box-sizing: border-box;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* 横線部分 */
.cssPlusButton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

/* 縦線部分 */
.cssPlusButton::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

.moreLink:hover .cssPlusButton {
  background-color: #3E3E3E;
  border-color: #3E3E3E;
}

.moreLink:hover .cssPlusButton::before,
.moreLink:hover .cssPlusButton::after {
  background-color: #fff;
}

.moreLink:hover .moreText {
  color: #555;
}


/* パンくずリスト */
.breadcrumb {
  margin-top: 12rem;
  font-size: 1.1rem;

  @media (width >= 769px) {
    font-size: 1.2rem;
  }
}
.breadcrumb ul {
  display: flex;
  white-space: nowrap; 
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch; 
  gap: 0;
  padding-bottom: 0.5rem;
}
.breadcrumb ul::-webkit-scrollbar {
  display: none;
}

.breadcrumb ul li {
  flex-shrink: 0;
}

.servicePage-common .breadcrumb {
  margin-top: 7.5rem;
}

.breadcrumb ul {
  display: flex;
}

.breadcrumb ul li:not(:first-child)::before {
  content: "ー";
  margin: 0 0.5em;
}

.breadcrumb ul li:last-child a {
  color: #BEBEBE;
  pointer-events: none;
  cursor: default;
}

.breadcrumb ul li:last-child {
  color: var(--main-color);
}
.breadcrumb ul li:last-child a {
  color: var(--main-color); 
  pointer-events: none;
  cursor: default;
  text-decoration: none; 
}
.breadcrumb ul li:not(:first-child)::before {
  content: "ー";
  margin: 0 0.5em;
  color: #333; 
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0.4), rgba(250, 250, 250, 0));
  z-index: 9999;
}

.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 16.5rem;

  @media (width >=769px) {
    width: 18rem;
  }
}

.headerRight {
  display: flex;
  align-items: center;
  gap: 1rem;

  @media (width >=769px) {
    padding-right: 2rem;
    gap: 1.5rem;
  }
}

.headerRightBtn {
  display: block;
  width: clamp(120px, 10vw, 140px);
  padding: 0.9rem 0;
  font-weight: 500;
  text-align: center;
  border-radius: 2.5rem;
  font-size: 14px;
}

.materialBtn {
  display: none;

  @media (width >=769px) {
    display: block;
    background: #eaedf2;
    color: #3E3E3E;
    border: solid 1px #eaedf2;
  }
}

.materialBtn:hover {
  background-color: #3E3E3E;
  color: white;
  border: solid 1px #3E3E3E;

}


.contactBtn {
  background: var(--main-color);
  color: #fff;
  border: .1rem solid var(--main-color);
}

.contactBtn:hover {
  color: var(--main-color);
  background: white;
  border: solid 1px var(--main-color);
}

.headerRight .contactBtn .fa-envelope {
  margin-right: .5rem;
}


.menuIcon {
  fill: #3E3E3E;
}

.menuIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.iconOpen {
  opacity: 1;
}

.menuToggle:hover .iconOpen {
  opacity: 0;
}

.menuToggle:hover .iconHover {
  opacity: 1;
}

.menuToggle.active .iconOpen,
.menuToggle.active .iconHover {
  opacity: 0 !important;
}

.menuToggle.active .iconClose {
  opacity: 1;
}

/* フルスクリーンメニュー */
.overlayMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 12rem 2rem 8rem;
  background-color: #F2F2F2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

.overlayMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* メニューリスト */

.overlayMenu .fa-phone {
  margin-right: .5rem;
}

.menuList {
  align-self: flex-start;

  @media (width >=769px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 8rem;
    align-self: center;
  }
}

.menuListItem {
  margin-bottom: 1.5rem;

  @media (width >=769px) {
    margin-bottom: 2rem;
  }
}

.menuItem {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  text-decoration: none;
}

.menuItemEnglish {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  --min-size: 30;
  --max-size: 48;
  font-size: var(--clamp-size);
}

.menuItemJapanese {
  --min-size: 14;
  --max-size: 15;
  font-size: var(--clamp-size);
  color: #BEBEBE;
}

.menuItem:hover .menuItemEnglish,
.menuItem:hover .menuItemJapanese {
  transition: all .3s ease-in-out;
}

.menuItem:hover .menuItemEnglish {
  color: var(--main-color);
}

.menuItem:hover .menuItemJapanese {
  color: #A0DD9A;
}
/* 子メニュー */

/* 子メニュー全体のスタイル */
.menuChildList {
  margin-top: 1rem;
  padding-left: 1.5rem; /* 親項目から少しずらして階層を表現 */
  list-style: none;
}

.menuChildList li {
  margin-bottom: 1rem;
}

.menuChildList li a {
  text-decoration: none;
  font-weight: 500;
  color: #888;
  --min-size: 15;
  --max-size: 18;
  font-size: var(--clamp-size);
  transition: all 0.3s ease;
  display: block;
}

.menuChildList li a:hover {
  color: #A0DD9A;
  transform: translateX(5px);
}

@media (width >= 769px) {
  .menuChildList {
    padding-left: 2rem;
    margin-top: 1.5rem;
  }
}

/* --- ハンバーガーメニューボタン--- */
.menuToggle {
  position: relative;
  width: 6rem;
  height: 6rem;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1000;
  border: .1rem solid #3E3E3E;
  border-radius: 50%;
  align-items: center;
}


.menuToggle-dot {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;

  width: .5rem;
  height: .5rem;
  background-color: #3E3E3E;
  border-radius: 50%;

  transition: transform 0.4s ease-in-out, width 0.4s, height 0.4s, background-color 0.4s;
}

.menuToggle-dot:nth-child(1) {
  transform: translate(-50%, -50%) translateX(-1.4rem);
}

.menuToggle-dot:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menuToggle-dot:nth-child(3) {
  transform: translate(-50%, -50%) translateX(1.4rem);
}

@media (hover: hover) {
  .menuToggle:not(.active):hover .menuToggle-dot {
    transform: translate(-50%, -50%) translateX(0);
    width: .6rem;
    height: .6rem;
  }
}

.menuToggle.active .menuToggle-dot {
  background-color: #3E3E3E;
  width: 2.8rem;
  height: .2rem;
  border-radius: .2rem;
}

.menuToggle.active .menuToggle-dot:nth-child(2) {
  transform: scale(0);
}

.menuToggle.active .menuToggle-dot:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menuToggle.active .menuToggle-dot:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 資料請求ボタン */
.materialMenuBtnWrapper {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-top: 6rem;

  @media (width >=769px) {
    margin-top: 9rem;
    ;
  }
}

.materialMenuBtn {
  width: 100%;
  background-color: #ffffff;
  border-radius: 3rem;
  display: block;
  padding: 1.5rem 1rem;
  color: #3E3E3E;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;

  @media (width >=769px) {
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.materialMenuBtn:hover {
  color: white;
  background-color: #3E3E3E;
}

/* お問い合わせボタン */
.contactButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--main-color);
  color: #fff;
  font-weight: 700;
  border-radius: 3rem;
  border: solid 1px var(--main-color);

  @media (width >=769px) {
    max-width: 70rem;
  }
}

.contactButton:hover {
  color: var(--main-color);
  background-color: white;
  border: solid 1px var(--main-color);
}

/* 電話セクション */
.phoneWrapper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.phoneLink {
  font-size: 1.9rem;
  color: inherit;
}

.openHours {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}

/* ソーシャルアイコン */
.socialList {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2rem;
}

.socialList li {
  width: calc((100% - 1rem) / 2);
  max-width: 15rem;
}

.socialList li:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}


.bottomSection {
  display: block;
  text-align: center;
  margin-top: 2rem;

  @media (width >=769px) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.phoneBlock {
  margin-bottom: 1.5rem;

  @media (width >=769px) {
    margin-bottom: 0;
    text-align: left;
  }
}

.phoneWrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* contact */
.contact {
  background: var(--main-color);
  padding: 3rem 2rem;
  border-radius: 2rem;

  @media (width >=769px) {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.contact .w-container {
  width: 100%;


  @media (width >=769px) {
    width: min(92%, 1100px);
  }
}

.contactTop {
  background: #fff;
  padding: 2rem 3rem;
  text-align: center;
  border-radius: 2rem;
  transition: transform 0.6s ease;

  @media (width >=769px) {
    padding-top: 7rem;
    padding-bottom: 7rem;
    transform: scale(.85);
  }
}

.contactTopHeading {
  @media (width >=769px) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
}

.contactTopTitle {
  --min-size: 40;
  --max-size: 80;
  font-size: var(--clamp-size);
  color: var(--main-color);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contactTopIcon {
  display: block;
  margin-inline: auto;
  --min-size: 40;
  --max-size: 80;
  font-size: var(--clamp-size);
  color: var(--main-color);

  @media (width >=769px) {
    margin-right: 2rem;
  }
}

.contactTop.animate {
  transform: scaleX(1);
}

.contactTopDesc {
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.5rem;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
}

.contactSubDesc {
  display: block;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
}

.contactTop>p:nth-of-type(2) {
  @media (width >=769px) {
    flex-basis: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}

.contactBottom {
  text-align: center;
  color: #fff;
  margin-top: 4rem;
}

.contactBottomTxt {
  margin-top: 2rem;
}

.contactBottomIcon {
  --min-size: 19;
  --max-size: 24;
  font-size: var(--clamp-size);
  margin-right: 0.5rem;
}

.tel {
  --min-size: 19;
  --max-size: 24;
  font-size: var(--clamp-size);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

.tel+p {
  font-size: 1.2rem;
}

.contactList {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}

.contactList li {
  max-width: 150px;
}


.contactBottomWrapper {
  text-align: center;
  flex-direction: column;


  @media (width >=769px) {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
    justify-content: center;
  }
}


/* footer */
.footer {
  background: #3E3E3E;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: absolute;
  z-index: -1;
  margin-top: -2rem;

  right: 0;
  left: 0;

  @media (width >=769px) {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.footerWrapper {
  @media (width >=769px) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
  }
}

a.footerLogo {
  display: block;
  text-align: center;
}

a.footerLogo img {
  max-width: 15rem;
}

.footerMenu {
  @media (width >= 769px) {
    flex-grow: 1;
  }
}


.footerMenu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  margin-top: 5rem;
  padding: 0 3rem;

  @media (width >= 769px) {
    grid-template-areas:
      "home   service arc    company"
      "member service column btn";
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    margin-top: 0;
    column-gap: 3rem;
    padding: 0;
  }
}

.footerMenu ul li {
  text-align: left;
}

.footerMenu li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity 0.3s;
}

.footerMenu li a .en {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.fNavChild {
  display: block !important;
  margin-top: 1.2rem !important;
  padding: 0 !important;
}

.fNavChild li {
  margin-bottom: 1.2rem;
}

.fNavChild li a {
  font-size: 1.4rem;
  color: #BEBEBE;
  font-weight: 400;
}

@media (width >= 769px) {
  .fNavHome { grid-area: home; }
  .fNavService { grid-area: service; }
  .fNavArc { grid-area: arc; }
  .fNavCompany { grid-area: company; }
  .fNavMember { grid-area: member; }
  .fNavColumn { grid-area: column; }
  .fNavBtn { 
    grid-area: btn; 
    align-self: end;
  }
}

/* --- 資料請求ボタン (フッター)  --- */

.fNavBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3E3E3E !important;
  background-color: #eaedf2;
  width: clamp(120px, 10vw, 140px);
  padding: 0.8rem 0;
  font-weight: 500;
  border-radius: 2.5rem;
  text-decoration: none;
  border: 1px solid #fff; 
  transition: all 0.3s ease;
}

.fNavBtn a:hover {
  opacity: .7;
}

.footerBottom {
  border-top: 0.1rem solid rgba(190, 190, 190, 0.2);
  color: rgba(190, 190, 190, 0.2);
  padding-top: 2.5rem;
  margin-top: 5rem;

  @media (width >=769px) {
    display: flex;
    justify-content: space-between;
  }
}

.footerBottom ul,
.copyright {
  font-size: 1.1rem;
  color: #BEBEBE;
}

.footerBottom ul {
  display: flex;
  gap: 3rem;
  justify-content: center;

}

.copyright {
  text-align: center;
  margin-top: 3rem;
  font-family: "Outfit", sans-serif;

  @media (width >=769px) {
    margin-top: 0;
  }
}

/* hover設定 */
@media (hover: hover) {

  .footer a:hover {
    opacity: .7;
  }

  a.contactTopLink:hover {
    opacity: .7;
  }

  .contactBottomLink:hover {
    opacity: .7;
  }

  .contactList li a:hover {
    opacity: .7;
  }
}


/* 資料ダウンロード 共通 */
.topWork {
  padding: 3rem 2.5rem;
  background: #3E3E3E;
  margin-top: clamp(4rem, 8vw, 14rem);
  border-radius: 2rem;
  position: relative;

  @media (width >=769px) {
    padding: 6rem;
  }
}

.full-screen-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; 
  text-indent: -9999px;
}

.topWork:hover {
  opacity: 0.9;
  cursor: pointer;
}
/* 
.topWork .arrowCircle {
  background: #fff;
}

.topWork .arrowCircle::before {
  background-color: #3E3E3E;
}

.topWork .arrowCircle::after {
  border-top: .1rem solid #3E3E3E;
  border-right: .1rem solid #3E3E3E;
}

.bottomViewAllWrapper {
  margin-top: 3rem;
}

.bottomViewAllWrapper .viewAllLink {
  color: #fff;
} */

.workItem {
  width: 100%;

  & img {
    display: block;
    width: 80%;
    margin-inline: auto;

    @media (width >=769px) {
      width: 100%;
      max-width: 40rem;
    }
  }

  @media (width >=769px) {
    display: flex;
    flex-direction: row-reverse;
    gap: 2.5rem;
  }
}

.workItemTxtWrapper {
  margin-top: 1rem;
  margin-bottom: 2rem;

  @media (width >=1024px) {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
  }
}

.workItemTxtWrapper {
  & .heading {
    line-height: 1.3;
  }

  @media (width >=769px) {
    margin-bottom: 3rem;
  }
}

.workItemTxtWrapper .heading+p {
  @media (width >=1024px) {
    color: var(--base-color);
    align-items: center;
    margin-bottom: 1.6rem;
  }
}

.workItemTxtWrapper p {
  opacity: 0.6;
}

.workItem p {
  color: #fff;
  margin-top: .8rem;
}

.workSlider {
  @media (width >=769px) {
    width: calc(50rem + 12rem);
    margin: 0 auto;
    overflow-x: hidden;
  }
}

.worksBtn {
  width: 22rem;
  background-color: var(--base-color);
  border: solid 1px var(--base-color);
  border-radius: 3rem;
  display: block;
  margin: 4rem auto 0;
  padding: 1.5rem 1rem;
  color: #3E3E3E;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.3s ease;

  @media (width >=769px) {
    margin: 4rem 0 0;
  }
}

.worksBtn:hover {
  background-color: #3E3E3E;
  color: var(--base-color);
}

/* View all 矢印 */
.viewAllWrapper {
  font-family: "Outfit", sans-serif;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.viewAllLink {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.8rem;
  position: relative;
  text-decoration: none;
  color: #3E3E3E;
  transition: color 0.3s ease;
}

.arrowCircle {
  width: 2.5em;
  height: 2.5em;
  background: #3E3E3E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: background 0.3s ease, border-radius 0.3s ease;
}

.arrowLink {
  position: relative;
  width: 2em;
  height: 2em;
}

/* 矢印本体 */
.arrow-before,
.arrow-after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  transform: translate(-50%, -50%);
}

.topWork .arrow-before,
.topWork .arrow-after {
  stroke: #3E3E3E;
}

/* スライドインする矢印は左外へ隠しておく */
.arrow-after {
  transform: translate(-150%, -50%);
}

/* ホバー時のアニメーション指定 */
.viewAllLink:hover .arrow-before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}

.viewAllLink:hover .arrow-after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

/* ホバー時の背景＆角丸＆文字色 */
.viewAllLink:hover .arrowCircle {
  background: var(--main-color);
  border-radius: 50% 50% 0 50%;
}

.viewAllLink:hover {
  color: var(--main-color);
}

@keyframes transformLeftRight {
  from {
    transform: translate(-150%, -50%);
  }

  to {
    transform: translate(-50%, -50%);
  }
}

@keyframes transformRightLeft {
  from {
    transform: translate(-50%, -50%);
  }

  to {
    transform: translate(50%, -50%);
  }
}

.viewAllLink:hover .arrow-before,
.viewAllLink:hover .arrow-after {
  stroke: #fff;
}

.bottomViewAllWrapper .viewAllLink:hover {
  color: var(--main-color);
}

/* --- 汎用マルチクラス: 枠線付きスタイル --- */
.viewAllLink._outline {
  padding: 1rem 2.5rem;
  border: 1px solid #c4c4c4;
  border-radius: 999px; 
  transition: all 0.3s ease; 
  background-color: #ececec;
  margin-bottom: 4rem;
  text-align: center;
}

.viewAllLink._outline:hover {
  border-color: var(--main-color);
  background-color: rgba(0, 0, 0, 0.02);
}

@media (width < 768px) {
  .viewAllLink._outline {
    font-size: 1.5rem;
    padding: 0.8rem 2rem;
    gap: 1.5rem;
  }
}
/* お知らせ */
.postList {
  margin-top: 5rem;
}

.postItem {
  border-bottom: 1px solid #E3E3E3;
}

.postItem:first-child {
  border-top: 1px solid #E3E3E3;
}

.postItemLink {
  display: block;
  padding: 2.5rem 1rem;
  transition: background-color 0.3s ease;
}

@media (hover: hover) {
  .postItemLink:hover {
    background-color: rgba(40, 191, 25, 0.05);
  }
}

.postItemMeta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.postItemDate {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  color: #888;
}

.postItemCategory {
  background: var(--main-color);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.2rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
}

.postItemTitle {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: 700;
  line-height: 1.5;
}

/* コラム */
.columnItems,
.columnList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.columnList {
  gap: 3.0rem;
  padding: 0;
  list-style: none;
  margin: 4.0rem 0;
}

.columnItem {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #eee;
}

.columnItem > a {
  display: block;
  width: 100%;
}

.columnItem .thumb,
.columnItem .thumb img,
.columnList .columnItem img {
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 670;
  object-fit: cover;
  display: block;
  border-radius: 1.0rem;
  background-color: #eee;
}

.columnItem .textArea {
  display: flex;
  flex-direction: column;
}

.columnItem .title,
.columnList .columnTitle {
  font-size: 1.7rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.columnItem .date {
  font-size: 1.2rem;
  color: #888;
  line-height: 1.2;
}

@media (width >= 769px) {
  .columnItems,
  .columnList {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3.0rem;
    align-items: flex-start;
  }

  .columnItem,
  .columnList .columnItem {
    width: calc((100% - 6.0rem) / 3);
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ページネーション */
/* .pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 6rem;
} */

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 6rem;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #E3E3E3;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
}

.pagination .page-numbers.current {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

@media (hover: hover) {
  .pagination .page-numbers:hover:not(.current) {
    border-color: var(--main-color);
    color: var(--main-color);
  }
}

/* .menuIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.iconOpen {
  opacity: 1;
}

.menuToggle:hover .iconOpen {
  opacity: 0;
}

.menuToggle:hover .iconHover {
  opacity: 1;
}

.menuToggle.active .iconOpen,
.menuToggle.active .iconHover {
  opacity: 0 !important;
}

.menuToggle.active .iconClose {
  opacity: 1;
} */

/* .category {
  background: var(--main-color);
  font-size: 1.2rem;
  color: #fff;
  width: fit-content;
  border-radius: .4rem;
  padding-left: .4rem;
  padding-right: .4rem;
  margin-top: 1.4rem;
} */



/* メンバー */
.memberItems {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;


  @media (width >=769px) {
    flex-direction: row;
    gap: 3rem;
    justify-content: flex-start;
  }
}

.memberItem {
  display: none;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--base-color);
  border-radius: 2rem;
  min-height: calc(12rem + 4rem + 1em);

  @media (width >=769px) {
    flex-direction: column;
    align-items: center;
    width: calc((100% - 3 * 3rem) / 4);
    padding: 3rem;
  }
}

.memberItem .thumb {
  width: 100%;
  max-width: 10rem;
  flex-shrink: 0;
  border-radius: 0.5rem;

  @media (width >=769px) {
    width: 100%;
    max-width: 13rem;
    margin-bottom: 1rem;
  }
}

.memberItem .textArea {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.memberItem .role {
  font-size: 1.2rem;
  color: #bebebe;
}

.memberItem .name {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;


  @media (width >=769px) {
    font-size: 2.2rem;
  }
}

.page-member .memberItem {
  display: flex;

  @media (width >=769px) {
    width: calc((100% - 2 * 3rem) / 3);
  }

  @media (width >=1024px) {
    width: calc((100% - 3 * 3rem) / 4);
  }
}

.memberMore {
  text-align: center;
  font-size: 2.4rem;
  font-family: "Outfit", sans-serif;
  margin-top: 3rem;
}
/* メンバー */
.memberItems {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;

  @media (width >= 769px) {
    flex-direction: row;
    gap: 3rem;
    justify-content: flex-start;
  }
}

.memberItem {
  display: none;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: var(--base-color);
  border-radius: 2rem;
  min-height: calc(12rem + 4rem + 1em);

  @media (width >= 769px) {
    flex-direction: column;
    align-items: center;
    padding: 3rem;
  }
}

.memberItem .thumb {
  width: 100%;
  max-width: 10rem;
  flex-shrink: 0;
  border-radius: 0.5rem;

  @media (width >= 769px) {
    width: 100%;
    max-width: 13rem;
    margin-bottom: 1rem;
  }
}

.memberItem .textArea {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.memberItem .role {
  font-size: 1.2rem;
  color: #bebebe;
}

.memberItem .name {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;

  @media (width >= 769px) {
    font-size: 2.2rem;
  }
}

.is-front .memberItem {
  @media (width >= 769px) {
    width: calc((100% - 3 * 3rem) / 4);
    text-align: center;
  }
}

.is-front .shortDesc {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #666;
  margin-top: 1rem;
}

.page-member .memberItem {
  display: flex;

  @media (width >= 769px) {
    /* 3列固定 */
    width: calc((100% - 2 * 3rem) / 3);
  }
}

.page-member .memberGroup {
  margin-bottom: 8rem;
}

.page-member .groupTitle {
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--main-color);
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

.page-member .desc {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: #555;
  text-align: left;
}

.memberMore {
  text-align: center;
  font-size: 2.4rem;
  font-family: "Outfit", sans-serif;
  margin-top: 3rem;
}

/* 導入文 */
.memberIntro {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 6rem;
  text-align: center;
  position: relative;
}