@charset "UTF-8";
:root {
  --main-color: #025159;
  --sub-color: #2e8b57;
  --accent-color: #00c981;
  --border-color: rgba(145, 165, 165, 0.5);
  --content-max-width: 1100px;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  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.7;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--main-color);
  letter-spacing: 0.05em;
}
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;
}
/* レイアウト */
.w-container {
  width: min(92%, 1100px);
  margin-inline: auto;
}
.w-title-container {
  width: min(92%, 1400px);
  margin-inline: auto;
  
@media (width >= 769px)  {
  padding-top: 8rem;
}
}
.h-container {
  padding: clamp(4rem, 5vw, 70px) 0;
}
/* 見出し */
.heading {
  font-weight: 700;
  --min-size: 22;
  --max-size: 26;
  font-size: var(--clamp-size);
  color: var(--main-color);
}
.subHeading {
  font-weight: 600;
  --min-size: 22;
  --max-size: 28;
  font-size: var(--clamp-size);
  color: var(--main-color);
}
.pc-br {
     display: none; 
}
/* 共通パーツ */
@media (width >= 769px) {  
  .sp-br {
    display: none; 
  }
  .pc-br {
     display: block; 
}
}


/* パンくずリスト */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  color: var(--main-color);
  margin-top: 2rem;
}

.breadcrumbs li + li {
  margin-left: 0.8em;
}

.breadcrumbs li + li::before {
  content: '-';
  margin-right: 0.8em;
  color: var(--main-color);;
}
@media (width >= 769px) {
  .breadcrumbs {
    margin-top: 4rem;
  }
}
/* header */
.pageHeader {
  position: relative;
  padding-bottom: 6rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 70;
}
body:not(.page-company) .pageHeader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 223, 230, 0.5);
  z-index: 1;
}

.page-recruit .pageHeader::before {
  display: none;
}

.headerTop,
.pageTitle,
.headerBgText {
  position: relative;
  z-index: 2;
}

.pageHeader {
  position: relative;
  z-index: auto;
}

.headerTop {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 75;
  box-sizing: border-box; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem; 
  height: auto; 
}

.headerLogo {
  padding-left: 1rem;
  z-index: 80;
}
.headerLogo img {
  --min-size: 150;
  --max-size: 200;
  width: var(--clamp-size);
  height: auto;
}

.headerControls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 80;
}
@media (width >= 769px) {
  .headerControls {
    gap: 2rem;
  }
}
.headerButton {
  padding: 0.6em 1.2em;
  font-weight: bold;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 99px;
  white-space: nowrap;
  text-align: center;
  --min-size: 130;
  --max-size: 150;
  width: var(--clamp-size);
  font-size: 1.4rem;

  @media (width >= 769px) {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.6rem;
  }
}

.headerButton:hover {
  opacity: 0.8;
  color: #fff;
}

body:not(.page-404, .page-confirm, .page-entry-confirm, .page-thanks) .pageTitle {
  margin-top: 8rem; 
}
.pageTitle h1 {
  font-family: "Urbanist", sans-serif;
  --min-size: 32;
  --max-size: 62;
  font-size: var(--clamp-size);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
.pageTitle h1 span {
  font-size: .3em;
  font-weight: normal;
  display: block;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media (width >= 769px) {
  .pageHeader {
    height: 550px;
    padding-bottom: 0
  }
  
  .headerTop {
    padding: 2rem 4rem 0;
  }

  .headerLogo {
    padding-left: 0;
  }


  .headerButton {
    font-size: 1.4rem;
  }

body:not(.page-404, .page-confirm, .page-entry-confirm,.page-thanks) .pageTitle {
    margin-top: 15rem; 
  }
  .headerBgText {
    bottom: -3rem;
    font-size: 10rem;
  }
}


/* 下層ページ背景テキストアニメーション */
.headerBgText {
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}
.headerBgTextInner {
  display: flex;
  width: fit-content;
  animation: bgTextFlow 30s linear infinite;
}
.headerBgTextInner::before,
.headerBgTextInner::after {
  content: var(--bg-repeat-text);
  font-size: 4rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  color: rgba(0, 201, 129, 0.2);
  white-space: nowrap;
  padding-right: 0.5em; 
}

@keyframes bgTextFlow {
  0% {
    transform: translateX(0%); 
  }
  100% {
    transform: translateX(-50%);
  }
}

.type-service {
   --bg-repeat-text: "Service Service Service Service Service Service Service Service"
}
.type-agency {
   --bg-repeat-text: "Agency Agency Agency Agency Agency Agency Agency Agency Agency Agency"
}
.type-job-posting {
   --bg-repeat-text: "Job-posting Job-posting Job-posting Job-posting Job-posting Job-posting"
}
.type-creative {
   --bg-repeat-text: "Creative Creative Creative Creative Creative Creative Creative"
}
.type-no-application {
   --bg-repeat-text: "No-application No-application No-application No-application";
}
.type-no-choose {
   --bg-repeat-text: "No-choose No-choose No-choose No-choose No-choose No-choose";
}
.type-task-overload {
   --bg-repeat-text: "Task-overload Task-overload Task-overload Task-overload Task-overload";
}
.type-media {
  --bg-repeat-text:  "Media Media Media Media Media Media Media Media Media Media Media Media"
}
.type-company {
   --bg-repeat-text: "Company Company Company Company Company Company Company Company Company"
}
.type-faq {
  --bg-repeat-text: "Faq Faq Faq Faq Faq Faq Faq Faq Faq Faq Faq Faq Faq Faq Faq Faq ";
}
.type-campaign {
  --bg-repeat-text: "Campaign Campaign Campaign Campaign Campaign Campaign Campaign Campaign";
}
.type-privacy {
  --bg-repeat-text: "Privacy Policy Privacy Policy Privacy Policy Privacy Policy Privacy Policy ";
}
.type-sitemap {
  --bg-repeat-text: "Site map Site map Site map Site map Site map Site map Site map Site map";
}

.type-mid-career {
  --bg-repeat-text: "Mid-career Mid-career Mid-career Mid-career Mid-career Mid-career Mid-career"
}
.type-new-graduate {
  --bg-repeat-text: "New-graduate New-graduate New-graduate New-graduate New-graduate New-graduate"
}

.type-contact {
  --bg-repeat-text: "Contact Contact Contact Contact Contact Contact Contact Contact Contact Contact"
}

.type-news {
    --bg-repeat-text: "News News News News News News News News News News News News News News News"
}

.type-entry {
    --bg-repeat-text: "Entry Entry Entry Entry Entry Entry Entry Entry Entry Entry Entry Entry Entry"
}

.type-member {
  --bg-repeat-text: "Member Member Member Member Member Member Member Member Member Member Member Member"
}



@media (width >= 769px) {
  .headerBgText {
    bottom: -3rem;
  }
  .headerBgTextInner::before,
  .headerBgTextInner::after {
    font-size: 10rem;
  }
}

/* footer */
.footer {
  padding-top: 6rem;
  background-image: 
    linear-gradient(rgba(2, 81, 89, 0.8), rgba(2, 81, 89, 0.8)),
    url('../images/common/footer_img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* cta */
.footerCta {
  margin-bottom: 6rem;
}

.footerCta .w-container {
  background: #fff;
  border-radius: 16px;
  color: #333;
  padding: 4rem 2rem;
}

.footerCtaInner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
a.footerCtaBox {
  display: block;
}
a.footerCtaBox:hover .ctaArrow {
  transform: translateX(0.5rem);
}
.footerCtaLeft .footerCtaTitle {
  font-weight: bold;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  position: relative;
  padding-left: 2.5rem;
}

.footerCtaLeft .footerCtaTitle::before {
  content: '';
  display: block;
  --min-size: 16;
  --max-size: 19;
  width: var(--clamp-size);
  height: 0.2rem;
  background: var(--main-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footerCtaLeft p:last-child {
  --min-size: 40;
  --max-size: 80;
  font-size: var(--clamp-size);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
 .ctaButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem; 
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
}

.ctaArrow {
  display: inline-block;
  width: 4.4rem;
  height: 4.4rem;
  background: var(--main-color);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ctaArrow::before {
  content: '';
  width: 1rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%); 
}
.ctaArrow::after {
  content: '';
  width: .9rem;
  height: .9rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg); 
}
.ctaButton:hover {
  opacity: 1;
}
.ctaButton:hover .ctaArrow {
  transform: translateX(0.5rem);
}
/* footer navi */
.footerNav {
  padding-bottom: 4rem;
}

.footerNavGrid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 2rem;
}

.footerLogo {
  display: block;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.footerLogo img {
  display: block;
  --min-size: 120;
  --max-size: 160;
  width: var(--clamp-size);
  height: auto;
}
.footerInfo {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.6;
}
.footerNavCol a {
  display: block;
  padding: 0.1em 0;
}
.footerNavCol a:hover {
  opacity: 0.7;
}
.footerNavTitle {
  font-weight: bold;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  margin-top: 2rem;
  padding-bottom: 0.25em; 
  display: inline-block;
}
.footerNavTitle:first-child {
  margin-top: 0;
}
.footerNavSubList {
  padding-left: 1em;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.footerNavSubList a {
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
}

.footerBottom {
  padding-bottom: 2rem;
  font-size: 1.2rem;
}

.footerBottomInner {
  border-top: 0.1rem solid #fff;
  padding-top: 2rem; 
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-direction: column; 
}

.footerBottomLinks {
  display: flex;
  gap: 2rem;
}

.externalLink {
  position: relative;
  padding-right: 1.6em;
  z-index: 1;
}
.externalLink::after {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
 background-image: url('../images/common/external-link.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0.3em;
  z-index: 2;
}
.copyright {
  font-size: 1.1rem;
}

@media (width >= 769px) {

  footer {
   padding-top: 10rem;
  }
  .footerCta .w-container {
    padding: 6.5rem 5rem;
  }
  .footerCtaInner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .ctaButton {
    justify-content: space-between;
     padding: 1.5rem 4rem 1.5rem 2rem;
  }
.footerNavGrid {
    grid-template-columns: 1.5fr 0.6fr 1.2fr 1.2fr 1fr;
    gap: 3rem;
  }
  .footerNavCol a {
  padding: 0.3em 0;
}
  .footerBottomInner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* メディア取り扱い */
.commonMediaCta {
  margin-top: 7rem;
  margin-bottom: 4rem;
  text-align: center;
}
.commonMediaCta p {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (width >= 769px) {  
  .commonMediaCta {
    margin-top: 13rem;
   margin-bottom: 7rem;
  }
  .commonMediaCta p {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

}
/* メディアリストアニメーション */
.logoBand {
  background: #fff;
  padding: 1.5rem 0;
  overflow: hidden;
  width: 100%; 
}
.logoBandScroller {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
}
.logoBandList {
 display: flex;
 align-items: center;
}
.logoBandList img {
  height: 40px;
  width: auto;
  max-width: none;
}
.logoBand:hover .logoBandScroller {
  animation-play-state: paused;
}

/* アニメーションの定義 */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 矢印アイコンのリンク */
 .no-application-link {
  padding-bottom: 6rem;
  display: flex;
  justify-content: center;
}

.mediaListLink {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--main-color);
  font-weight: bold;
  transition: all 0.3s ease;
}

.mediaListLink:hover {
  opacity: 1;
}

.mediaListLink:hover .mediaListIcon {
  transform: translateX(0.5rem);
}
.mediaListIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #068c5a;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mediaListIcon .arrow {
  display: block;
  position: relative;
  width: 1.5rem;
  height: 1rem;
}

.mediaListIcon .arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: #fff;
  transform: translateY(-50%);
}

.mediaListIcon .arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.mediaListText {
  font-size: 1.4rem;
}

@media (width >= 769px) {
  .mediaListText {
    font-size: 1.8rem;
  }
}
/* メディアリストのアニメーション */
.logoBand { overflow: hidden; width: 100%; }

.logoBandTrack {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0; 
  padding: 0; 
  will-change: transform;
  animation: logo-scroll var(--dur, 30s) linear infinite;
  animation-play-state: paused; 
  transform: translate3d(0,0,0);
}

.logoBandList { 
  display: flex; 
  flex: 0 0 auto; 
  margin: 0; 
  padding: 0; 
}

.logoBandList img {
  display: block;
  margin: 0; 
  height: 80px; 
  width: auto; 
  object-fit: contain;
}
@keyframes logo-scroll {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(-1 * var(--shift, 0px)), 0, 0); }
}
.logoBand:hover .logoBandTrack { animation-play-state: paused; }


/* ページネーション */
.pagination {
  margin-top: 4rem;
}

.pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
  display: block;
  padding: 0.8rem 1.2rem;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  color: var(--accent-color);
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  position: relative;
}

.pagination .page-numbers a:hover {
  opacity: .8;
}

.pagination .page-numbers .current {
  color: var(--main-color);
  font-weight: 700;
}

.pagination .page-numbers .prev,
.pagination .page-numbers .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.pagination .page-numbers .prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent-color);
  border-left: 2px solid var(--accent-color);
  transform: rotate(-45deg);
  margin-left: 4px;
}

.pagination .page-numbers .next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  transform: rotate(45deg);
  margin-right: 4px;
}

.pagination .page-numbers a.prev:hover::before,
.pagination .page-numbers a.next:hover::after {
  border-color: var(--main-color);
}

/* .pagination {
  margin-top: 4rem;
}

.paginationList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.paginationLink {
  display: block;
  padding: 0.8rem 1.2rem;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  color: var(  --accent-color);
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.paginationLink:hover {
  opacity: .8;
}

.paginationLink.is-current {
  color: var(--main-color);
} */

/* ページTOP */
.backToTopButton {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
}
.backToTopButton:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.backToTopIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.backToTopIcon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  background: var(--main-color);
  transform: translate(-50%, -50%) rotate(90deg); 
  transition: all 0.3s ease;
}

.backToTopIcon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid var(--main-color);
  border-right: 0.2rem solid var(--main-color);
  transform: translate(-50%, -50%) rotate(-45deg); 
  transition: all 0.3s ease;
}

.backToTopButton:hover .backToTopIcon::before {
  background: #fff;
}
.backToTopButton:hover .backToTopIcon::after {
  border-color: #fff;
}
/* ヘッダーメニュー */

.globalNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../images/top/media-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding-top: 80px;
  overflow-y: scroll;
}

body.is-menu-open .globalNav {
  visibility: visible;
  opacity: 1;
}
@media (width >= 769px) {
  .globalNav {
    padding-top: 100px;
  }

}

/* ハンバーガーメニュー */
.menuTrigger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 4.4rem;
  height: 4.4rem;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menuTrigger:hover {
  opacity: 0.7;
}

.menuTriggerBar {
  display: block;
  width: 12px;
  height: 2px;
  background-color: var(--main-color);
  transform-origin: center center; 
  transition: transform 0.3s, background 0.3s;
}
body.is-menu-open .menuTrigger {
  background: #fff;
  border: none;
}

body.is-menu-open .menuTriggerBar:nth-child(1),
body.is-menu-open .menuTriggerBar:nth-child(2) {
    position: absolute;
    left: 50%;
    margin-left: -7.5px;
    top: 50%;
    margin-top: -1px;
    background: #4BA334; 
}

body.is-menu-open .menuTriggerBar:nth-child(3) {
    opacity: 0;
    transform: scale(0);
}

body.is-menu-open .menuTriggerBar:nth-child(1) {
  transform: rotate(45deg);
}

body.is-menu-open .menuTriggerBar:nth-child(2) {
  transform: rotate(-45deg);
}

@media (width >= 769px) {
  .menuTrigger {
    width: 50px;
    height: 50px;
  }
  
  body.is-menu-open .menuTriggerBar:nth-child(1),
  body.is-menu-open .menuTriggerBar:nth-child(2) {
      width: 24px;
      margin-left: -12px;
  }
}

.menuLinksGrid {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 3rem; */
  text-align: center;
}

.menuList {
  margin-bottom: 2.5rem; 
  color: #025159;
}
.menuList li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  position: relative;
}
.menuList li a {
  font-weight: 500;
  font-size: 1.6rem;
}
.globalNav .menuParentTitle a,
.globalNav .menuParentTitle span {
    --min-size: 26;
    --max-size: 32;
    font-size: var(--clamp-size) !important;
    position: relative;
    display: block !important;
    line-height: 1.2 !important;
    text-align: left !important;
    border-bottom: none !important;
    align-items: initial !important; 
    gap: initial !important;
    margin-right: initial !important; 
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
}

.globalNav .menuList li.menuItem.menuParentTitle a::before,
.globalNav .menuList li.menuItem.menuParentTitle span::before {
    content: '・'; 
    color: #068C5A;
    position: absolute;
    left: -1em;
    top: 0.2em;
    font-size: 1em;
    width: auto !important; 
    height: auto !important;
    background: none !important;
    margin-right: 0 !important;
}

.menuParentSubtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem; 
  padding-left: 0 !important;
  display: block;
  text-align: left;
  padding-left: 2.2rem !important;
}
.globalNav .menuList li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4); 
  padding-bottom: 1rem;
}

.globalNav .menuList li a {
    display: flex; 
    align-items: center;
    gap: 0; 
}

.globalNav .menuList li a::before {
    content: '';
    display: block;
    width: .5em;
    height: 2px;
    background: #025159;
    margin-right: 0.8em; 
}
.menuList {
  border-bottom: 1px solid #068C5A;
}
.menuList li {
  padding-left: 1em;
}

@media (width >= 769px) {

    .menuLinksGrid {
    grid-template-columns: repeat(3, 1fr); 
    gap: 3rem 4rem;
    text-align: left;
  }
  .menuParentSubtitle {
  padding-left: 2rem !important;
}

}

/* リンクバナー */
.menuBannerArea {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 2rem;
  margin-top: 4rem;
  padding-bottom: 2rem;
}
.menuBannerArea img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.menuBannerArea a:hover {
  opacity: 0.7;
}
@media (width >= 769px) {
  .menuBannerArea {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

body.is-menu-open {
  overflow: hidden; 
}

body.is-menu-open .headerButton {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.breadcrumbsWrapper { 
  margin-top: 8rem; 
}
@media (width >= 769px) {
  .breadcrumbsWrapper { 
    margin-top: 10rem;
  }
}
/* お知らせ */
.single-news .articleHeader h1 {
  margin-bottom: 2rem;
}
.newsSection {
  padding-block: 4rem;
}

.newsList {
  border-top: 1px solid var(--border-color);
  margin-bottom: 4rem;
}

.newsItem a {
  display: grid;
  grid-template-columns: auto 1fr auto; 
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}


.newsItem a:hover {
  opacity: .8;
}

.newsDate {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: #888;
  min-width: 90px;
}

.newsTitle {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.newsArrowIcon {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.newsArrowIcon::after {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  transform: rotate(45deg);
}

.newsItem a:hover .newsArrowIcon {
  transform: translateX(0.5rem);
}

@media (width < 769px) {
  .newsItem a {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  .newsDate { grid-column: 1; font-size: 1.2rem; }
  .newsTitle { grid-column: 1; font-size: 1.4rem; margin-top: 0.2rem; }
  .newsArrowIcon { grid-row: 1 / 3; grid-column: 2; }
}

@media (width >= 769px) {
  .newsSection { padding-block: 8rem; }
  .newsTitle { font-size: 1.8rem; }
}