@charset "UTF-8";

body {
  /* ベースの背景色 */
  background-color: #f4f9fa; 
  
  background-image: 
    /* 1. 【アクセント】左上から右下へ流れる濃い緑（角度を調整） */
    linear-gradient(315deg, rgba(0, 201, 129, 0.15) 10%, transparent 50%),
    linear-gradient(315deg, transparent 50%, rgba(2, 81, 89, 0.12) 90%),

    /* 2. 【光】中央の大きな白い光（情報の可読性を確保） */
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9) 0%, transparent 80%),
    
    /* 3. 【光】不規則な白い光のムラ */
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.7) 0%, transparent 60%),
    
    /* 4. 【ベース】全体を包む淡い水色のグラデーション */
    linear-gradient(
        315deg, 
        rgba(205, 235, 245, 0.4) 0%, 
        rgba(255, 255, 255, 0) 50%, 
        rgba(220, 245, 240, 0.4) 100% 
    );

  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

/* ヘッダー画像 */
.page-service .pageHeader {
  background-image: url('../images/service/service_fv.jpg');
}
.page-agency .pageHeader {
  background-image: url('../images/agency/agency_fv.jpg');
}
.page-job-posting .pageHeader {
    background-image: url('../images/job-posting/job-posting_fv_sp.jpg');
  @media (width >= 769px) {
      background-image: url('../images/job-posting/job-posting_fv.jpg');
  }
}
.page-creative .pageHeader {
  background-image: url('../images/creative/creative_fv.jpg');
}
.page-no-application .pageHeader {
  background-image: url('../images/no-application/no-application_fv.jpg');
}
.page-no-choose .pageHeader {
  background-image: url('../images/no-choose/no-choose_fv.jpg');
}
.page-task-overload .pageHeader {
  background-image: url('../images/task-overload/task-overload_fv.jpg');
}
.page-media .pageHeader {
  background-image: url('../images/media/media_fv.jpg');
}
.page-company .pageHeader {
  background-image: url('../images/company/company_fv.jpg');
}
.page-privacy .pageHeader {
  background-image: url('../images/privacy_fv.jpg');
}
.page-faq .pageHeader {
  background-image: url('../images/faq_fv.jpg');
}
.post-type-archive-campaign .pageHeader {
  background-image: url('../images/campaign_fv.jpg');
}
.page-sitemap .pageHeader {
  background-image: url('../images/sitemap_fv.jpg');
}

.page-recruit .pageHeader {
  background-image: url('../images/recruit/recruit_fv.jpg');
}
.page-mid-career .pageHeader {
  background-image: url('../images/mid-career/mid-career_fv.jpg');
}
.page-new-graduate .pageHeader {
  background-image: url('../images/new-graduate/new-graduate_fv.jpg');
}

.page-contact .pageHeader {
  background-image: url('../images/contact_fv.jpg');
}

.page-entry .pageHeader {
  background-image: url('../images/contact_fv.jpg');
}

.page-member .pageHeader{
  background-image: url('../images/member/member_fv.jpg');
}


/* service  */
.service-intro {
  margin-top: 4rem;
  & .heading {
    text-align: center;
  }
}
.serviceIntroImages {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 4rem;
  gap: 2rem;
}

.serviceIntroImages img {
  width: 100%;
  max-width: 50rem;
  height: auto;
  display: block;
}

@media (width >= 769px) {  

  .service-intro {
    margin-top: 9rem;
  }
  .serviceIntroImages {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 10rem;
  }
}

.serviceBlocks {
  margin-top: 4rem;
  display: grid;
  gap: 4rem; 
}

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

.serviceBlockText {
  order: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}
.serviceBlockImage {
  order: 2;
}

.serviceBlockImage img {
  width: 100%;
  height: auto;
}

.serviceBlockPreTitle {
  font-weight: bold;
  color: var(--accent-color);
  --min-size: 13;
  --max-size: 15;
  font-size: var(--clamp-size);
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5rem;
}
.serviceBlockPreTitle::before {
  content: '・';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

.serviceBlockText .heading {
  margin-bottom: 1.5rem;
}

.serviceBlockText p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.serviceBlock .mediaListLink {
  margin-top: auto;
  padding-left: 1.5rem;
  align-self: center;

}


.creativeBlock {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.creativeBlock .serviceBlockText {
    display: block;
    height: auto;
    padding: 0;
}
.creativeBlock .serviceBlockImage {
    order: 2;
}
.serviceBlockText.text-bottom {
    order: 3;
}
.serviceBlockText.text-top {
    order: 1;
    padding-bottom: 0;
}


@media (width >= 769px) {  
  .serviceBlocks {
    margin-top: 10rem;
    gap: 10rem;
  }
  
  .serviceBlock {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .serviceBlockImage {
    order: 1;
    justify-self: start;
  }
  .serviceBlockImage img {
    width: 100%;
  }

  .serviceBlockText {
    order: 2;
  }
  .serviceBlock.is-reverse .serviceBlockImage {
    order: 2;
    justify-self: end;
  }
  .serviceBlock.is-reverse .serviceBlockText {
    order: 1;
  }
  .serviceBlock .mediaListLink {
    margin-top: 8rem;
    padding-left: 3rem;
    align-self: flex-start;
  }

  .creativeBlock {
    display: grid; 
    flex-direction: initial;
    padding: initial;
  }
  .creativeBlock .serviceBlockImage,
  .creativeBlock .serviceBlockText {
    order: initial;
    padding: initial;
  }
}


.contentCardsSection {
  margin-top: 4rem;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.sectionHeader .heading {
  margin-bottom: 0.5rem;
}

.sectionSubTitle {
  font-family: "Urbanist", sans-serif;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

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

.contentCard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  height: 100%;
}

.contentCard:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.cardTop {
  background: #068c5a;
  padding: 2rem;
  flex-shrink: 0;
}

.contentCardTitle {
  color: #fff;
  font-weight: 700;
  --min-size: 12;
  --max-size: 13;
  font-size: var(--clamp-size);
  margin-bottom: 0.5em;
}

.contentCardSubTitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.cardBottom {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  gap: 1.5rem;
}

.cardImage {
  max-width: 14rem;
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.cardLink.mediaListLink {
  color: var(--main-color);
  flex-shrink: 0;
  margin-top: auto;
  display: flex;
  align-items: center;
}

@media (width >= 769px) {  
  .contentCardsSection {
    margin-top: 9rem;
  }
  
  .contentCardGrid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  
  .cardBottom {
    padding: 2.5rem;
  }
  
  .contentCardTitle,
  .contentCardSubTitle {
    text-align: center;
  }
}

.benefitsSection {
  margin-top: 4rem;
}

.benefitsSection .heading {
  text-align: center;
  margin-bottom: 3rem;
}

.benefitsList {
  display: grid;
  gap: 2rem;
}

.benefitBlock {
  background: rgba(2, 81, 89, 0.1);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefitBlockImage img {
  width: 100%;
  max-width: 47rem;
  height: auto;
  border-radius: 8px;
}
.benefitTitle {
  display: flex;
  align-items: center; 
  gap: 0.8em;
}
.benefitTitle + p {
  margin-top: 2rem;
}
.benefitNumber {
  --min-size: 12;
  --max-size: 13;
  font-size: var(--clamp-size);
  
  font-weight: bold;
  color: var(--accent-color);
  line-height: 1.2;
}

.benefitDivider {
  display: block;
  width: 2px;
  background: var(--accent-color);
  opacity: 0.5;
  --min-size: 12;
  --max-size: 13;
  font-size: var(--clamp-size);
  height: 1.2em;
}

.benefitBlockText .subHeading {
   --max-size: 24;
}

.benefitBlockText p {
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (width >= 769px) {  
  .benefitsSection {
    margin-top: 9rem;
  }
  
.benefitBlock {
    padding: 6rem 5rem;
    grid-template-columns: 47rem 1fr;
    gap: 6rem;
    align-items: center;
  }
}

/* creative */

.creative-intro {
  padding-top: 4rem;
  overflow: hidden;
}
.creative-intro .heading {
  margin-bottom: 3rem;
  text-align: center;
}
.creative-intro .introGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 0;
}
.creative-intro .introImage {
  order: 1;
  display: flex;
  justify-content: flex-end;
}
.creative-intro .introText {
  order: 2;
  margin-top: 2rem;
}

.creative-intro .introImage img {
  width: 95%;
  height: auto;
  display: block;
}
.creative-intro .introText {
  padding-bottom: 4rem;
  padding-left: 4%; 
  padding-right: 4%;
}

@media (width >= 769px) {
  .creative-intro {
    padding-top: 9rem;
    overflow: visible;
  }
  
  .creative-intro .introGrid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  
  .creative-intro .introImage {
    order: 0;
    order: 2;
    justify-content: flex-end;
  }
  .creative-intro .introText {
    order: 0;
  }
  
  .creative-intro .introImage img {
    width: 105%;
    max-width: none;
    margin-left: 0;
    /* margin-right: -5%; */
  }

  .creative-intro .introText {
    padding-right: 8rem; 
    padding-left: max(4vw, calc((100vw - 1100px) / 2));
    box-sizing: border-box;
    margin-top: 4rem;
  }
}

.creativeWorks {
  margin-top: 4rem;
}

.creativeWorksList {
  display: grid;
  gap: 2rem;
}
.creativeBlock {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
}
.blockMain {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blockImage img {
  width: 100%;
  max-width: 40rem;
  height: auto;
  border-radius: 8px;
}

.blockText {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}
.blockText p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.blockFeaturesBox {
  margin-top: 2rem;
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem 2rem;
  min-inline-size: auto; 
}
.featuresBoxTitle {
  font-weight: bold;
  --min-size: 20;
  --max-size: 22;
  font-size: var(--clamp-size);
  color: var(--main-color);
  margin-left: auto; 
  margin-right: auto;
  width: fit-content;
  padding-inline: 1em;
  background: #fff; 
}
.featuresBoxContent {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0;
  padding-inline: 1rem;
}
.featuresBoxContent ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featuresBoxContent li {
  font-size: 1.5rem;
  position: relative;
  padding-left: 1.2em;
}
.featuresBoxContent li::before {
  content: '・';
  position: absolute;
  left: 0;
}
.featuresBoxBottomText {
  margin-top: 1.5rem;
}

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

  .creativeBlock {
    padding: 6rem;
& .blockText {
  margin-top: 2rem;
}

  }
  .blockMain {
    grid-template-columns: 40rem 1fr;
    gap: 6rem;
    align-items: flex-start;
  }

  .blockFeaturesBox {
    padding: 3rem 2rem;
  }
  .featuresBoxContent {
    grid-template-columns: 1fr 1fr; 
    gap: 2rem;
    padding-inline: 2rem;
  }
}

.page-creative .strengthsGrid .cardTitle + p,
.page-task-overload .strengthsGrid .cardTitle + p,
.page-agency .strengthsGrid .cardTitle + p{
  padding:  1rem 2rem 2rem;
@media (width >= 769px) {
 padding:  2rem 4rem 4rem;
}
}

/* no-application */
.no-application-intro {
  margin-top: 4rem;
  overflow: hidden;
}
.no-application-intro .heading {
  text-align: center;
}

.introGrid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 4rem;
}
.introImage img {
  /* width: 100%; */
  width: 90%;
}

.introList {
  display: grid;
  --min-size: 20;
  --max-size: 22;
  font-size: var(--clamp-size);
  font-weight: bold;
  margin-top: 2rem;
}
.introText {
  padding-bottom: 4rem;
  padding-left: 4%;
  padding-right: 4%;
}
.introText p {
  margin-top: 2rem;
  line-height: 1.8;
}
.introList + p {
  margin-top: 3.5rem;
}
@media (width >= 769px) {
.no-application-intro {
    margin-top: 9rem;
    overflow: visible;
  }
  
  .introGrid {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 8rem;
    margin-top: 9rem;
  }
  
  .introImage img {
    width: 105%;
    max-width: none;
    /* margin-left: -5%; */
  }
  .introText {
    padding-left: 0;
    padding-right: max(4vw, calc((100vw - 1000px) / 2));
  }
  .introList {
  margin-top: 6rem;
}
}
.no-application-why {
  margin-top: 4rem;
}
.no-application-why .subHeading {
  text-align: center;
}
.no-application-why .subHeading::before {
  display: none;
}

.whyText {
background: linear-gradient(
    to right, 
    rgba(4, 105, 89, 0.1),
    rgba(4, 105, 89, 0.05) 50%,
    rgba(4, 105, 89, 0.1)
  );
  max-width: 76rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
  padding: 3rem;
  border-radius: 12px;
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
  font-weight: bold;
  margin-top: 2rem;
}
.whyText::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid rgba(4, 105, 89, 0.05);
}

@media (width >= 769px) {

  .no-application-why {
      margin-top: 9rem;
  }
  .whyText {
    margin-top: 6rem;
  }
  .whyText::after {
  bottom: -20px;
}
}

.no-application-concept {
  text-align: center;
}
.conceptImage {
  max-width: 400px;
  width: 100%;
  margin-top: 2.5rem;
}
.conceptText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 2rem;
}
@media (width >= 769px) {
  .conceptImage {
  margin-top: 5rem;
}
}

.no-application-features {
  margin-top: 2.5rem;
}
.featuresGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
}
.featuresImage img {
  width: 100%;
}
.featuresText ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1em;
  font-size: 1.6rem;
  font-weight: bold;
}
.featuresText ul li {
  position: relative;
  padding-left: 1.5em;
}
.featuresText ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}
.featuresBottomText {
  margin-top: 2rem;
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

@media (width >= 769px) {
  .no-application-features {
    margin-top: 5rem;
  }

 .featuresGrid {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    max-width: 90rem;
    margin-inline: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .featuresImage {
    max-width: 22rem;
  }

  .featuresImage img {
    width: 100%;
  }
}

/* 強みブロック */
.no-application-strengths {
  margin-top: 7rem;
}
.no-application-strengths .heading {
  text-align: center;
}
.subTitle {
  font-family: "Urbanist", sans-serif;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.strengthsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.strengthCard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.strengthCard img {
  width: 100%;
}
.cardTitle {
  padding: 2rem 2rem 0;
  display: flex;
  gap: 0.5em;
  font-size: 1.6rem;
  font-weight: bold;
}
.page-no-application .cardTitle {
    padding: 2rem;
    @media (width >= 769px) {
      padding: 4rem;
    }
}

.cardTitle .number {
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  color: var(--accent-color);
  font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}
.cardTitle .divider {
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  color: var(--accent-color);
  line-height: 1.7;
}

@media (width >= 769px) {
  .no-application-strengths {
    margin-top: 15rem;
  }

  .strengthsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 7rem;
  }
  .cardTitle {
  padding: 4rem 4rem 0;
}
}
.no-application-media {
  padding-block: 4rem;
  text-align: center;
}
.no-application-media p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
}



/* no-choose */
.no-chose-risk {
  margin-top: 4rem;
  & .subHeading {
    text-align: center;
  }
} 
.riskItemsContainer {
  max-width: 80rem;
  margin-inline:  auto;
}

.riskItem h4 {
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
  font-weight: bold;
}
.riskItem {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}
.riskItem:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}
.riskItem:not(:first-child) {
  margin-top: 2rem;
}
.riskItemContent h4 + p {
  margin-top: 2rem;
}
.sectionLead {
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
}
@media (width >= 769px) {
  .no-chose-risk {
    margin-top: 9rem;
  }
  .riskItem {
    flex-direction: row;
    gap: 6rem;
    margin-top: 8rem;
  }
.riskItem img {
  max-width: 23rem;
}
.sectionLead {
  margin-top: 10rem;
}
.riskItem:not(:last-child) {
  padding-bottom: 3rem;
}
}

/* media */
  .mediaSection {
    padding-bottom: 4rem;
  }
.mediaAnchorNav {
  padding-block: 4rem;
}
.anchorNavGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.anchorLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 16px;
  font-weight: bold;
  color: var(--main-color);
  transition: all 0.3s ease;
}
.anchorLink:hover {
  background: var(--main-color);
  color: #fff;
}
.anchorLink::after {
  content: '';
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-right: 0.15em solid var(--main-color);
  border-bottom: 0.15em solid var(--main-color);
  transform: rotate(45deg); /* v */
  transition: all 0.3s ease;
}
.anchorLink:hover::after {
  border-color: #fff;
}
.sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}
.sectionHeader .heading {
  margin-bottom: 0.5rem;
}

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

.mediaCard {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.mediaCard img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.mediaCard p {
  font-size: 1.5rem;
  line-height: 1.7;
  border-top: 1px solid #eee;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.mediaClosing {
  text-align: center;
}

@media (width >= 769px) {  

  .mediaAnchorNav {
    padding-block: 9rem;
  }
  .anchorNavGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .anchorLink {
    padding: 2rem;
  }

  .mediaSection {
    padding-bottom: 9rem;
  }
  
  .mediaCardGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .mediaCard {
    padding: 4rem;
  }
  
  .mediaClosing {
    margin-top: 3rem;
  }
}


/* faq */
.faq {
  padding-block: 4rem;
}
.faq.w-container {
  max-width: 80rem;
}
.faqList {
  margin-top: 3rem;
}
.faqItem {
  border-bottom: 1px solid rgba(145, 165, 165, 0.5);
  padding: 2.5rem 0;
}
.faqItem:first-child {
  border-top: 1px solid rgba(145, 165, 165, 0.5);
}

.faqQuestion {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
}

.faqAnswer {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-left: 0;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
}
.faqIconQ {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-family: "Urbanist", sans-serif;
}

.faqIconA {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-family: "Urbanist", sans-serif;
}

.faqText {
  padding-top: 0.4rem;
}

@media (width >= 769px) {
  .faq {
  padding-block: 9rem;
}
  .faqItem {
    padding: 3rem 0;
  }

.faqQuestion {
  margin-bottom: 3rem;
}

}

/* campaign */
.campaign {
  padding-block: 4rem;
}

.campaign .heading {
  margin-bottom: 3rem;
}

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

.campaignCard {
  overflow: hidden;
}
.campaignCardImage img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0; 
}

.campaignCardText {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-top: none; 
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.campaignCardText time {
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  color: #bcbcbc;
}

.campaignCardTitle {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  font-weight: bold;
  margin: 0.5rem 0 1rem;
  color: #068c5a;
}
.campaignCardTitle a {
  text-decoration: none;
  color: inherit;
}

.campaignCardCategory {
  display: inline-block;
  padding: 0.1em 0.8em;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  border-radius: 16px;
}
@media (width >= 769px) {  
  .campaign {
  padding-block: 9rem;
}
  .campaignList {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }  
}

/* campaign detail  */
.articleContent {
  padding-block: 4rem;
}
.articleContent.w-container {
  max-width: 90rem;
}
.articleMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.5rem;
}
.articleMeta time {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  color: #91a5a5;
}
.articleCategory {
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  color: #91a5a5;
}
.articleHeader h1 {
  --min-size: 26;
  --max-size: 28;
  font-size: var(--clamp-size);
  font-weight: bold;
  line-height: 1.4;
  margin-top: 1rem;
}
.articleThumbnail {
  margin-block: 2.5rem;
}
.articleThumbnail img {
  width: 100%;
  height: auto;
}
.articleBody p {
  margin-bottom: 2em;
  line-height: 1.8;
  font-size: 1.4rem;
}

.articleBody h2,
.articleBody h3,
.articleBody h4 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  line-height: 1.5;
}

.articleBody h2 {
  font-weight: bold;
  --min-size: 22;
  --max-size: 24;
  font-size: var(--clamp-size);
  border-left: 5px solid var(--accent-color);
  padding-left: 0.8em;
}

.articleBody h3 {
  font-weight: bold;
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
}

.articleBody h4 {
  font-weight: bold;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
}

.articleFooter {
  padding-top: 3rem;
  margin-top: 4rem;
}
.articlePager {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagerLink {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--main-color);
  font-weight: bold;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.pagerLink:hover {
  opacity: 0.7;
}

.articlePager .mediaListIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.articlePager .mediaListIcon .arrow {
  display: block;
  position: relative;
  width: 1.3rem;
  height: 1rem;
}
.articlePager .mediaListIcon .arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.2rem;
  transform: translateY(-50%);
}
.articlePager .mediaListIcon .arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
}
.arrowPrev .arrow::after {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
  margin-left: 0.1rem;
}
.arrowNext .arrow::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.pagerLink:hover .mediaListIcon {
  background: var(--main-color);
}
.pagerLink:hover .mediaListIcon .arrow::before {
  background: #fff;
}
.pagerLink:hover .mediaListIcon .arrow::after {
  border-color: #fff;
}

@media (width >= 769px) {  
  .articleContent {
    padding-block: 9rem;
  }
}

.articleBody ul {
  list-style: none;
  padding-left: 0.5em;
  margin-bottom: 2em;
}

.articleBody ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.6;
}

.articleBody ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--main-color);
  border-radius: 50%; 
}

/* プライバシポリシー */
 .page-privacy .subHeading {
  display: flex;
  align-items: center;
}
.page-privacy .subHeading::before {
  content: '';
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  background-color: var(--accent-color);
  margin-right: 0.6em;
  vertical-align: middle;
}
.privacyPolicy {
  padding-block: 4rem;
}
.privacyPolicy ol {
  display: grid;
  gap: .2em; 
  counter-reset: list-counter;
  margin-top: 4rem;
}

.privacyPolicy ol li {
  padding-left: 1.5em;
  position: relative;
}
.privacyPolicy ol li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ".";
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}
.privacyPolicy .heading + p {
  margin-top: 4rem;
}
.privacyPolicy .heading + p,
.privacyPolicy .heading ~ ol {
  padding-left: 2rem; 
}
@media (width >= 769px) {
  .privacyPolicy {
  padding-block: 9rem;
}
  .privacyPolicy .heading + p,
  .privacyPolicy .heading ~ ol {
    max-width: 82rem;
    margin-inline: auto;
    padding-left: 0; 
  }
  .privacyPolicy .heading + p {
  margin-top: 6rem;
}
  .privacyPolicy ol {
  margin-top: 8rem;
}
}

.signature {
  text-align: right;
  margin-top: 4rem;
  @media (width >= 769px) {
    margin-top: 8rem;
  }
}
.inquiry {
    padding-left: 2rem; 
}

.inquiry .subHeading + p {
  margin-top: 2rem;
}
  @media (width >= 769px){
  .inquiry {
    max-width: 82rem;
    margin-inline: auto;
    padding-left: 0; 
}
.inquiry .subHeading + p {
    margin-top: 4rem;
}
  }

.privacyPolicy .subHeading + p,
.inquiry .subHeading + p,
.procedure .subHeading + p {
  margin-top: 2rem;
      @media (width >= 769px) {
    margin-top: 4rem;
  }
}
.procedure {
  padding-block: 4rem;
}
.procedure *:not(.heading, li, a) {
  padding-left: 2rem;
}
.procedure h2.heading + p {
  margin-top: 2rem;
}
.procedure h2.heading + p + p {
  margin-top: 2rem;
}
.procedure h3.subHeading{
    margin-top: 2rem;
}
.procedure h3.subHeading + p{
    margin-top: 2rem;
}
.procedure h3.subHeading + ul {
  margin-top: 2rem;
}
.procedure h3.subHeading + p + ul {
  margin-top: 2rem;
}
.enactment {
  margin-top: 2rem;
}
.procedure a {
  display: inline-block;
  color: var(--accent-color);
  margin-top: 2rem;
}
 @media (width >= 769px) {
  .procedure {
  padding-block: 9rem;
}
.procedure *:not(.heading, li, a) {
  max-width: 82rem;
  margin-inline: auto;
  padding-left: 0;
}
.procedure h2.heading + p {
  margin-top: 4rem;
}
.procedure h2.heading + p + p {
  margin-top: 4rem;
}
.procedure h3.subHeading{
    margin-top: 4rem;
}
.procedure h3.subHeading + p{
  margin-top: 4rem;
}
.procedure h3.subHeading + ul {
  margin-top: 4rem;
}
.procedure h3.subHeading + p + ul {
  margin-top: 4rem;
}
.enactment {
  margin-top: 4rem;
}
.procedure a {
  margin-top: 4rem;
}
 }
/* sitemap */
.sitemap {
  padding-block: 4rem;
}
.sitemap.w-container {
  max-width: 80rem;
}

.sitemapList {
  display: grid;
  gap: 2rem; 
}
.sitemapParent > a,
 .sitemapParent > p {
  display: block;
  font-weight: 700;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  line-height: 1.2;
  border-bottom: 1px solid rgba(145, 165, 165, 0.5);
  padding-bottom: 2rem;
}
.sitemapChildList {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 1rem;
  display: grid;
  gap: 1.5rem;
}

.sitemapChildList li a {
  display: inline-block;
  font-weight: 700;
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  position: relative;
  padding-left: 1.5em;
}
.sitemapChildList li a::before {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 0.15em solid var(--accent-color);
  border-right: 0.15em solid var(--accent-color);
  transform: rotate(45deg);
  position: absolute;
  left: 0.2em;
  top: 0.4em;
}

@media (width >= 769px) {  
  .sitemap {
  padding-block: 9rem;
}
  
  .sitemapList {
    display: block;
    gap: 0;
    column-count: 2;
    column-gap: 5rem;
  }
  .sitemapParent {
    margin-bottom: 3rem;
    break-inside: avoid;
  }
.sitemapParent.break-after {
    break-after: column;
  }
}

/* 404 */

.page404 {
  text-align: center;
  padding-block: 4rem;
}
.page404 .pageTitle h1 {
  font-family: "Century Gothic", "Questrial", sans-serif;
  font-weight: 500;
  background: linear-gradient(to right, rgba(0, 201, 129, 0.5), rgba(2, 81, 89, 0.5));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  
  display: inline-block;
}

.page404 p:first-of-type {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

  @media (width >= 769px){
    .page404 {
  padding-block: 9rem;
}
    .page404 p:first-of-type {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
  }

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

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


.backToHome:hover {
  opacity: 1;
}

.backToHome:hover .backToHomeIcon {
  transform: translateX(-0.5rem);
}

.backToHomeIcon {
  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;
}

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

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

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

.backToHomeText {
  font-size: 1.4rem;
}

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

/* company */

.companyProfile {
  margin-top: 4rem;
  position: relative; 
}
.profileText .heading {
  margin-bottom: 0.5rem;
}

.profileList {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}
.profileItem {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
}
.profileItem:first-child {
  border-top: none;
}

.profileItem:last-child {
  border-bottom: 1px solid var(--border-color);
}

.profileItem dt {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.profileItem dd {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-left: 0;

}

.profileImages {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}
.profileImages img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.profileImages .pc-only {
  display: none;
}
.profileImages .sp-only {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (width >= 769px) {  
  .companyProfile {
    margin-top: 9rem;
    display: grid;
    grid-template-columns: minmax(auto, 60rem) 1fr;
    gap: 4rem;
    align-items: start;
    overflow: visible; 
  }
  .profileText {
    grid-column: 1 / 2;
    margin-inline: auto;
    max-width: 64rem;
    padding-inline: max(4vw, 2rem);
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .profileItem {
    display: grid;
    grid-template-columns: 16rem 1fr;
    gap: 2rem;
    padding: 2rem 0;
    align-items: center;
  }
  .profileItem dt {
    margin-bottom: 0;
  }

  .profileImages {
    grid-column: 2 / 3;
    display: block;
    position: relative;
  }

  .profileImages .pc-only {
    display: block;
  }

  .profileImages .sp-only {
    display: none;
  }

  .profileImage1 {
    position: absolute;
    top: -5rem;
    right: calc( (100vw - var(--content-max-width, 1100px)) / 2 * -1 - 1rem );
    width: 100%;
    z-index: 1;
  }

  .profileImage2 {
    display: block;
    margin-top: 35rem;
    width: 110%;
  }
}

/* 営業所画像 */
.profileBranchImg {
  margin: 2rem auto 1rem;
  width: 100%;
  max-width: 25rem; 
}

.profileBranchImg img {
  width: 100%;
  height: auto;
  border-radius: .8rem; 
  display: block;
}

@media (width >= 769px) {
  .profileBranchImg {
    margin-top: 2rem;
  }
}
/* access */
.companyAccess {
  margin-top: 4rem;
  max-width: 80rem;
  margin-inline: auto;
}
.companyAccess .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.mapContainer {
  width: 100%;
  height: 250px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  line-height: 0;
  background-color: #f0f0f0;
}

.mapContainer iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (width >= 769px) {
  .mapContainer {
    height: 50rem;
  }
}

.accessAddress {
  margin-top: 2rem;
  line-height: 1.7;
}
@media (width >= 769px) {  
  .companyAccess {
    padding-block: 6rem;
  }
  .mapPlaceholder {
    height: 450px; 
  }
}
/* companyMessage */
.companyMessage {
  max-width: 80rem;
  margin-inline: auto;
  margin-top: 4rem;
}

.companyMessage  {
  position: relative;
  z-index: 1;
  background-image: url('../images/company/company-messege_back.jpg');
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  overflow: hidden; 
}

.companyMessage .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.messageTextRegular p + p {
  margin-top: 1.7em;
}

.messageSignature {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-top: 2.5em !important; 
}

.messageTextLarge {
  font-weight: bold;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
  line-height: 1.7;
  margin-bottom: 3rem;
}
@media (width >= 769px) {  
  .companyMessage {
    margin-top: 4rem;
  }
 .profileText {
  padding: 4rem;
 }
}

.relatedCompanies {
  margin-top: 4rem;
  padding-bottom: 4rem;
  max-width: 80rem;
  margin-inline: auto;
}
.relatedCompanies .sectionHeader {
  text-align: center;
  margin-bottom: 4rem;
}

.relatedCompaniesList {
  display: grid;
  gap: 4rem;
}

.companyBlock {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.companyBlockImage {
  order: 1;
  margin-inline: auto; 
  max-width: 20rem; 
}
.companyBlockImage img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.companyBlockText {
  order: 2; 
}

.companyName {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.companyUrl a {
  text-decoration: underline;
}

.companyDetails {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.companyDetailItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--border-color); 
}
.companyDetailItem dt {
  font-weight: 700;
}
.companyDetailItem dd {
  margin-left: 0;
}

@media (width >= 769px) {
  .relatedCompanies {
    margin-top: 9rem;
    padding-bottom: 9rem;
  }
  .companyBlock {
  
    grid-template-columns: 20rem 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .companyBlockImage {
    order: 1;
    justify-self: start;
    max-width: none;
  }
  .companyBlockText {
    order: 2;
  }

  .companyDetails {
    margin-top: 2rem;
  }
}

/* recruit */
.recruitIntro {
  margin-top: 4rem;
  text-align: center;
  max-width: 90rem;
  margin-inline: auto;
}
.recruitIntro .sectionHeader {
  margin-bottom: 2rem;
}
.recruitLargeText {
  --min-size: 24;
  --max-size: 26;
  font-size: var(--clamp-size);
  font-weight: bold;
  line-height: 1.5;
}
.recruitDescription {
  margin-top: 2rem;
}

.recruitImages {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}
.recruitImageWrapper {
  width: 100%;
  max-width: 42rem;
}
.recruitImages img {
  width: 100%;
  display: block;
  /* object-fit: cover;
  border-radius: 8px; */
}
/* .recruitImage1 {
  height: 30rem;
}
.recruitImage2 {
  height: 24rem;
} */

@media (width >= 769px) {  
  .recruitIntro {
    margin-top: 9rem;
  }
  
  .recruitImages {
    margin-top: 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem;
    align-items: flex-end; 
  }
  
  .recruitImageWrapper {
    width: 42rem;
    max-width: none;
    flex-shrink: 0;
  }
  .recruitDescription {
  margin-top: 4rem;
}
}

.recruitNeeded {
  margin-top:  4rem;
  max-width: 90rem;
  margin-inline: auto;
}

.recruitNeeded .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.neededList {
  display: grid;
  gap: 2rem;
}

.neededBlock {

  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0; 
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.neededBlock:first-child {
  border-top: 1px solid var(--border-color);
}

.neededBlockImage img {
  width: 100%;
  max-width: 29rem; 
  height: auto;
  border-radius: 8px;
  margin-inline: auto; 
}

.neededTitle {
  display: flex;
  align-items: center; 
  gap: 0.8em;
  margin-bottom: 1.5rem;
}

.neededNumber {
  --min-size: 12;
  --max-size: 13;
  font-size: var(--clamp-size);
  font-weight: bold;
  color: var(--accent-color);
  line-height: 1.2;
}

.neededDivider {
  display: block;
  width: 2px;
  background: var(--accent-color);
  opacity: 0.5;
  --min-size: 12;
  --max-size: 13;
  font-size: var(--clamp-size);
  height: 1.2em;
}

.neededBlockText .subHeading {
  margin: 0;
  line-height: 1.2;
}


@media (width >= 769px) {  
  .recruitNeeded {
    margin-top: 9rem;
  }
  
  .neededBlock {
    padding: 4rem 0;
    grid-template-columns: 29rem 1fr; 
    gap: 6rem;
    align-items: center;
  }

  .neededBlockImage img {
    max-width: none;
  }
}

.diversitySection {
  margin-top: 4rem;
  max-width: 90rem;
  margin-inline: auto;
}

.diversityHeader {
  text-align: center;
  margin-bottom: 3rem;
}
.diversityHeader .sectionHeader {
  margin-bottom: 0;
}

.diversityLead {
  font-weight: bold;
  --min-size: 17;
  --max-size: 18;
  font-size: var(--clamp-size);
  line-height: 1.6;
  margin-top: 2rem;
}
.textImageBlock {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.textImageBlock .blockImage img {
  width: 100%;
  max-width: 40rem;
  height: auto;
  border-radius: 8px;
}

@media (width >= 769px) {  
  .diversitySection {
    margin-top: 9rem;
  }
  .diversityHeader {
    margin-bottom: 4rem;
  }
  .diversityLead {
    margin-top: 4rem;
  }
  .textImageBlock {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 4rem;
  }
}
.benefitGridSection {
  margin-top: 4rem;
}

.benefitHeader {
  text-align: center;
  margin-bottom: 3rem;
}
.benefitLead {
  font-weight: 500;
  margin-top: 2rem;
}
.benefitGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefitItem {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
}

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

.benefitItem > p {
  line-height: 1.7;
  margin: 1rem 0;
  padding-left: 4.5rem;
}
.benefitDividerLine {
  border: 0;
  border-top: 1px dotted var(--border-color);
  margin: 1rem 0;
  margin-left: 4.5rem;
}
.benefitNote {
  color: #91a5a5;
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  line-height: 1.6;
  margin: 0;
  padding-left: 4.5rem;
}
.benefitGridSection {
  padding-block: 4rem;
}

.benefitHeader {
  text-align: center;
  margin-bottom: 3rem;
}
.benefitLead {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 2rem;
}

.benefitGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefitItem {
  padding: 2rem;
  background: #fff; 
  border-radius: 16px;
}

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

.benefitIcon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.benefitTitle {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: 700;
  margin: 0;
}

.benefitItem > p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 1rem 0;
  padding-left: 4.5rem;
}

.benefitDividerLine {
  border: 0;
  border-top: 1px dotted var(--border-color);
  margin: 1rem 0;
  margin-left: 4.5rem;
}

.benefitNote {
  color: #91a5a5;
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  line-height: 1.6;
  margin: 0;
  padding-left: 4.5rem;
}

@media (width >= 769px) {  
  .benefitGridSection {
    margin-top: 9rem;
  }
  
  .benefitGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 0;
  }

  .benefitItem {
    padding: 3rem;
    background: #fff;
    border-radius: 0;
    border-right: 1px solid var(--border-color);
  }
  .benefitLead {
  margin-top: 4rem;
}

  .benefitItem:nth-child(3n) {
    border-right: none;
  }

  .benefitItem:last-child {
    border-right: none;
  }
  
  .benefitItem:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .benefitItem:nth-child(3) {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .benefitItem:nth-child(4) {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
   .benefitItem:nth-child(6) {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .benefitItem:nth-child(7) {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .benefitItem:nth-child(8) {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .benefitItem > p,
  .benefitDividerLine,
  .benefitNote {
    padding-left: 0;
    margin-left: 0;
  }
}

.linkBanners {
  padding-block: 4rem;
}

.bannerList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem; 

}

.bannerItem a {
  display: block;
  transition: opacity 0.3s ease;
}
.bannerItem a:hover {
  opacity: 0.7;
}

.bannerItem img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (width >= 769px) {  
  .linkBanners {
    padding-block: 9rem;
  }
  
  .bannerList {
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.5rem;
  }
}


/* mid-career */
.recruitMidIntro {
  margin-top: 4rem;
  max-width: 90rem;
  margin-inline: auto;
}
.recruitMidGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width >= 769px) {  
  .recruitMidIntro {
  margin-top: 9rem;
}
  .recruitMidGrid {
    grid-template-columns: 42rem 1fr;
    gap: 4rem;
    align-items: flex-start;
  }
}

.recruitmentGuidelines {
  margin-top: 4rem;
  max-width: 90rem;
  margin-inline: auto;
}
.recruitmentGuidelines .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.guidelineBlock {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guidelineBlock .subHeading {
  margin-bottom: 2rem;
  text-align: center;
}
.guidelineBlock .subHeading::before {
    content: '';
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    background-color: var(--accent-color);
    margin-right: 0.6em;
    vertical-align: middle;
}

.guidelineList {
  display: grid;
  grid-template-columns: 1fr;
}

.guidelineItem {
  padding-block: 2rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.guidelineItem::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 22.37%; 
  height: 1px;
  background: var(--accent-color);
  z-index: 1;
}

.guidelineItem dt {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.guidelineItem dd {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-left: 0;
}

@media (width >= 769px) {  
  .recruitmentGuidelines {
    margin-top: 9rem;
  }
  
  .guidelineBlock {
    padding: 6rem 4rem;
  }

  .guidelineBlock .subHeading {
    text-align: left;
  }
  
  .guidelineList {
    grid-template-columns: 1fr; 
    column-gap: 0;
  }
  .guidelineItem {
    display: grid;
    grid-template-columns: 17rem 1fr;
    gap: 3rem;
    align-items: flex-start;
  }
  .guidelineItem::before {
    width: 17rem; 
  }

  .guidelineItem dt {
    margin-bottom: 0;
  }
}
.welfareSection {
  margin-top: 4rem;
}
.welfareSection .sectionHeader {
  text-align: center;
}

.welfareLead {
  text-align: center;
  font-weight: 500;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  margin-top: 2rem;
}
.welfareListWrapper {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

.welfareList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.welfareItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
}

.welfareIcon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

@media (width >= 769px) {  
  .welfareSection {
      margin-top: 9rem;
  }
  .welfareLead {
    margin-top: 4rem;
  }
  .welfareListWrapper {
    padding: 4rem;
    margin-top: 4rem;
  }

  .welfareList {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3rem;
  }
  
}


.hiringProcess {
  margin-top: 4rem;
}
.hiringProcess .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

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

.processItem {
  background: #fff;
  border: 1px solid #068c5a;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.processItem:not(:last-child)::after {
  content: '';
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%) rotate(45deg);
  margin: 0;
}

.processItem:not(:first-child)::before {
  display: none;
}

.stepLabel {
  display: block;
  --min-size: 12;
  --max-size: 14;
  font-size: var(--clamp-size);
  color: var(--accent-color);
}

.stepTitle {
  display: block; 
  width: 100%;
  font-weight: bold;
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
  color: var(--accent-color);
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted #068c5a;
}

.stepDescription {
  color: #91a5a5;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 1.5rem 0 0;
}

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

  .processList {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2.5rem;
  }
  
  .processItem {
    flex: 1;
    padding: 2.5rem;
  }

  .processItem:not(:last-child)::after {
    display: none;
  }
  .processItem:not(:first-child) {
    position: relative;
  }
  .processItem:not(:first-child)::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    left: calc(-2.5rem / 2); 
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid var(--accent-color);
    border-right: 1px solid var(--accent-color);
  }
}
.min-careerCta {
  padding-block: 4rem;

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

.servicePlan {
  margin-top: 4rem;
}
.servicePlan .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}
.planWrapper {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
}

.planWrapper .subHeading {
  margin-bottom: 1.5rem;
}
.planWrapper .subHeading::before {
    content: '';
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    background-color: var(--accent-color);
    margin-right: 0.6em;
    vertical-align: middle;
}
.planWrapper .subHeading:not(:first-of-type) {
  margin-top: 3rem; 
}
.planDetail {
  background: rgba(2, 81, 89, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.planDetailRow {
  display: grid; 
  gap: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.planLabel {
  font-weight: 700;
}
.planPrice, .planTasks {
  font-weight: 500;
}

/* 「ご利用例」リスト */
.planExamplesList {
  display: grid;
  gap: 1rem;
}
.exampleItem {
  background: rgba(2, 81, 89, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  
  display: grid;
  gap: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.exampleCompany {
  font-weight: 700;/
}

@media (width >= 769px) {  
  .servicePlan {
    margin-top: 9rem;
  }
  
  .planWrapper {
    padding: 6rem 10rem;
  }
  .planDetailRow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
  .planLabel {
    flex-shrink: 0;
    width: 12rem;
  }
  
  .exampleItem {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
  .exampleCompany {
    flex-shrink: 0;
  }
}

.meritSection {
  margin-top: 4rem;
  overflow: hidden;
}
.meritSection .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}


.meritGrid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 2.5rem;
}
.meritImage img {
  width: 100%;
  height: auto;
  border-radius: 8px; 
  display: block;
  width: 92%;
  margin-inline: auto;
}


.meritText {
  padding-inline: 4%; /* (w-container 92% の場合) */
}


.meritTextBox {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
}

.meritTextBox ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2em;
}
.meritTextBox li {
  --min-size: 14;
  --max-size: 18;
  font-size: var(--clamp-size);
  line-height: 1.7;
  position: relative;
  padding-left: 1.5em;
}
.meritTextBox li::before {
  content: '・';
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media (width >= 769px) {  
  .meritSection {
    margin-top: 9rem;
    overflow: visible;
  }
  
  .meritGrid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: flex-start;
  }
.meritTextBox {
  padding: 4rem;
}
  .meritImage img {
   width: calc(100% + max(4vw, (100vw - 1100px) / 2) - 5rem);
    margin-left: calc( max(4vw, (100vw - 1100px) / 2) * -1 );
    margin-right: 0;
    max-width: none;
  }

  .meritText {
    padding-left: 4rem;
    padding-right: max(4vw, (100vw - 1100px) / 2);
    box-sizing: border-box;
    margin-top: 4rem;
  }
}
.meritBgText {
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  margin-top: -1rem;

}

.meritBgText .headerBgTextInner::before,
.meritBgText .headerBgTextInner::after {
  font-size: 4rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  color: rgba(0, 201, 129, 0.2); 
  
}
@media (width >= 769px) {
  .meritBgText {
    margin-top: -4rem;
  }
  .meritBgText .headerBgTextInner::before,
  .meritBgText .headerBgTextInner::after {
    font-size: 8rem;
  }
}
.type-advantages {
  --bg-repeat-text: "Advantages of introduction Advantages of introduction Advantages of introduction ";
}

/* new-graduate */
.newGraduateIntro {
  margin-top: 4rem;
  text-align: center;
  max-width: 90rem;
  margin-inline: auto;
}
.newGraduateIntro .sectionHeader {
  margin-bottom: 2rem;
}

.newGraduateLead {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  margin-top: 2rem;
  text-align: left;
}

@media (width >= 769px) {  
  .newGraduateIntro {
    margin-top: 9rem;
  }
  .newGraduateLead  {
    margin-top: 4rem;
    text-align: center;
  }
}
.newGraduateApply {
  margin-top: 4rem;
  max-width: 90rem;
  margin-inline: auto;
}

.newGraduateApply .sectionHeader {
  text-align: center;
}

.newGraduateApplyGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.newGraduateApplyImage img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.newGraduateApplyText {
  display: grid;
  gap: 2.5rem;
  align-content: start;
}

.subHeadingWrap {
  margin-bottom: 1rem;
}
.subHeadingWrap .subHeading {
  margin: 0;
  display: inline-flex; 
  align-items: center; 
  gap: 1rem;
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
}
.subHeadingWrap .subHeading::before {
  content: '';
  display: block;
  width: 4px;
  height: 1em; 
  background-color: var(--accent-color);
}
.newGraduateApplyItem p {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: bold;
}

.newGraduateApplyButton {
  margin-top: 1.5rem;
}

@media (width >= 769px) {  
  .newGraduateApply {
    margin-top: 12rem;
  }
  
  .newGraduateApplyGrid {
    grid-template-columns: 42rem 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 6rem;
  }
  .newGraduateApplyImage img {
    width: 100%;
    max-width: 42rem;
    height: auto;
    border-radius: 8px;
    margin-inline: auto;
    display: block;
  }
}

.newGraduateSupportSection {
  margin-top: 4rem;
}

.newGraduateSupportHeader {
  text-align: center;
}
.newGraduateSupportHeader .heading {
  margin-bottom: 0.5rem;
}
.newGraduateSupportLead {
  font-weight: bold;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  margin-top: 2rem;
}

.newGraduateSupportGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.newGraduateSupportItem {
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
}

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

.newGraduateSupportIcon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.newGraduateSupportTitle {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  font-weight: 700;
  margin: 0;
}

.newGraduateSupportItem > p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 1rem 0 0;
  padding-left: 4.5rem;
}

@media (width >= 769px) {  
  .newGraduateSupportSection {
    margin-top: 9rem;
  }
  
  .newGraduateSupportGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
    margin-top: 4rem;
  }

  .newGraduateSupportItem {
    padding: 4rem;
    background: #fff;
    border-radius: 0;
    border-right: 1px solid var(--border-color);
  }
  
  .newGraduateSupportItem:nth-child(2n) {
    border-right: none;
  }
  
  .newGraduateSupportItem:first-child {
    border-top-left-radius: 16px;
  }
  .newGraduateSupportItem:nth-child(2) {
    border-top-right-radius: 16px;
  }
  .newGraduateSupportItem:nth-child(5) {
    border-bottom-left-radius: 16px;
  }
  .newGraduateSupportItem:last-child { 
    border-bottom-right-radius: 16px;
  }

  .newGraduateSupportItem > p {
    padding-left: 0;
    margin-left: 0;
  }
}
.page-new-graduate .no-application-strengths {
  margin-top: 4rem;
  @media (width >= 769px) {
    margin-top: 9rem;
  }
}
.page-new-graduate .no-application-strengths .strengthsGrid {
   margin-top: 2rem;
} 
.page-new-graduate .no-application-strengths .subHeading {
  margin: 0;
  display: inline-flex; 
  align-items: center; 
  gap: 1rem;
  --min-size: 18;
  --max-size: 22;
  font-size: var(--clamp-size);
}

.page-new-graduate .no-application-strengths .subHeading::before {
  content: '';
  display: block;
  width: 4px;
  height: 1em; 
  background-color: var(--accent-color);
}
.page-new-graduate .strengthsGrid .cardTitle + p {
  padding: 1.5rem 1.5rem 0;
    @media (width >= 769px){
        padding: 3rem 3rem 0;
    }
}
.page-new-graduate .strengthsGrid .cardTitle + p:not(:has(+ .cardTraining)) {
  padding-bottom: 1.5rem;
    @media (width >= 769px){
        padding-bottom: 3rem;
    }
}
.page-new-graduate .no-application-strengths .subHeading:nth-of-type(2) {
  margin-top: 2rem;
     @media (width >= 769px) {
      margin-top: 4rem;
     }
}
.cardTraining {
  padding: 1.5rem;
   @media (width >= 769px) {
padding: 3rem;
   }
}
.cardTraining {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.pastTrainingLabel {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.3rem 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 15px;
}

.pastTrainingList {
  margin-top: 1rem;
}

.pastTrainingItem {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.4rem;
  line-height: 1.6;
}
.pastTrainingItem:last-child {
  border-bottom: none;
}
.pastTrainingItem._last {
    border-bottom: 1px solid var(--border-color);
}

.pastTrainingItem dt {
  font-weight: 700;
  flex-shrink: 0;
  width: 5rem;
}
.pastTrainingItem dd {
  margin-left: 0;
}

.pastTrainingNote {
  font-size: 1.2rem;
}

.newGraduateFaq {
  margin-top:  4rem;
}
.newGraduateFaq .sectionHeader {
  text-align: center;
  margin-bottom: 3rem;
}

.newGraduateFaqContainer {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 4%;
}

.newGraduateFaqItem {
  border-bottom: 1px solid var(--border-color);
}
.newGraduateFaqItem:first-of-type {
  border-top: 1px solid var(--border-color);
}

.newGraduateFaqQuestion {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}
.newGraduateFaqQuestion::-webkit-details-marker {
  display: none;
}

.newGraduateFaqQuestion .faqText {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.newGraduateFaqQuestion .faqIconQ {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  color: var(--accent-color);
  font-size: 1.8rem;
  font-family: sans-serif;
  border-radius: 50%;
  flex-shrink: 0;
}

.newGraduateFaqQuestion .faqToggle { 
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 1rem;
}
.newGraduateFaqQuestion .faqToggle::before,
.newGraduateFaqQuestion .faqToggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  background-color: var(--main-color);
  transition: transform 0.3s ease;
}
.newGraduateFaqQuestion .faqToggle::before {
  transform: translate(-50%, -50%);
}
.newGraduateFaqQuestion .faqToggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.newGraduateFaqItem[open] .faqToggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.newGraduateFaqItem[open] .faqToggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.newGraduateFaqAnswer {
  display: flex;
  gap: 1.5rem;
  padding: 0 0 1.5rem 0;
  margin-left: 0;
}
.newGraduateFaqAnswer .faqText {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.newGraduateFaqAnswer .faqIconA {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  color: var(--accent-color);
  font-size: 1.8rem;
  font-family: sans-serif;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (width >= 769px) {  
  .newGraduateFaq {
    margin-top: 9rem;
  }
  .newGraduateFaqQuestion {
    padding: 2rem 0;
  }
  .newGraduateFaqAnswer {
    padding: 0 0 2rem 0;
  }
}


.newGraduateSchedule {
  margin-top: 4rem;
  text-align: center;
}
.newGraduateSchedule .sectionHeader {
  margin-bottom: 3rem;
}
.imageSequence {
  display: grid;
  grid-template-columns: 1fr; 
  justify-items: center;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}

.imageSequenceItem {
  position: relative;
  text-align: center;
}

.imageSequenceItem img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  display: block;
}
.imageSequenceItem:not(:last-child)::after {
  content: '';
  display: block;
  width: 4px;
  height: 4rem;
  background-image: radial-gradient(
    circle, 
    var(--accent-color) 2px,
    transparent 2px
  );
  background-size: 4px 10px;
  background-repeat: repeat-y;

  margin: .5rem auto 0;
}

.scheduleNote {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 500;
}

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

  .imageSequence {
    display: grid;
    grid-template-columns: repeat(3, 20rem);
    gap: 6rem;
    justify-content: center;
    
    align-items: center;
    max-width: 80rem;
    margin-inline: auto; 
  }

  .imageSequenceItem {
    position: relative;
    width: 100%; 
  }

  .imageSequenceItem img {
    max-width: 100%; 
    width: 100%;
    margin-inline: auto;
    display: block;
  }
  .imageSequenceItem:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(6rem - 6px); 
    left: calc(100% + 3px);

    height: 4px;
    margin: 0;

    background-image: radial-gradient(
      circle, 
      var(--accent-color) 2px, 
      transparent 2px
    );
    background-size: 10px 4px;
    background-repeat: repeat-x;
    background-position: center;
  }
}
.newGraduateApply._bottom {
  padding-bottom: 4rem;
  @media (width >= 769px) {
    padding-bottom: 9rem;
  }
}

/* contact  */
.contactFormSection {
  padding-block: 4rem;
}

.contactFormWrapper {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 4.5rem;
  max-width: 90rem;
  margin-inline: auto;
}

.contactFormGroup {
  margin-bottom: 2rem;
    max-width: 74rem;
  margin-inline: auto;
}

.formLabel {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.requiredBadge {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 0.5em;
}

.formControl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.radioItem label,
.checkboxItem label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  font-size: 1.5rem;
}
.checkboxItem a {
  text-decoration: underline;
}

.radioItem input[type="radio"],
.checkboxItem input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  opacity: 1;
  position: static;
  width: auto;
  height: auto;
}

.formInput,
.formTextarea {
  width: 100%;
  padding: 0.8em 1em;
  font-size: 1.6rem;
  border: none;
  background-color: #f2f5f7; 
  box-sizing: border-box;
}
.formTextarea {
  resize: vertical;
}

.consentGroup {
  text-align: center;
  margin-top: 3rem;
}

.contactFormSubmit {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.formSubmitButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: #fff;
  font-weight: bold;
  --min-size: 14;
  --max-size: 16;
  font-size: var(--clamp-size);
  padding: 0.8em 5rem 0.8em 2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.formSubmitButton:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.submitArrow {
  display: block;
  width: 3rem;
  height: 3rem;
  background: #7ce9c2;
  border-radius: 50%;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 5;
}


.submitArrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: .8rem;
  height: 0.2rem;
  background: #00c981;
  transform: translate(-70%, -50%);
}

.submitArrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: .7rem;
  height: .7rem;
  border-top: 0.2rem solid #00c981;
  border-right: 0.2rem solid #00c981;
  transform: translate(-50%, -50%) rotate(45deg);
}


.contactFormSubmit:hover .submitArrow {
  transform: translateY(-50%) translateX(0.5rem);
}

.formSubmitButton:hover {
  opacity: 0.8;
}


.contactFormSection ::placeholder {
  color: #9aa1ac;
  opacity: 1;
}

.contactFormSection ::-ms-input-placeholder {
  color: #9aa1ac;
}

@media (width >= 769px) {
  .contactFormSection {
    padding-block: 9rem;
  }

  .contactFormWrapper {
    padding: 8rem 4rem;
    margin-top: 10rem;
  }

  .contactFormGroup.radioGroup {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }

  .contactFormGroup.radioGroup .formLabel {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .contactFormGroup.radioGroup .formControl {
    flex-wrap: wrap;
  }

  .contactFormSubmit {
    margin-top: 6rem;
  }
}

/* confirm  */
.page-confirm .pageTitle {
  margin-top: 4rem;
}

.confirmationList {
  max-width: 74rem;
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
}

.confirmItem {
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.7;
}
.confirmItem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color);
}

.confirmItem::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #7ce9c2;
  z-index: 1;
}

.confirmItem dt {
  font-weight: 700;
  color: #555;
  margin-bottom: 0.5rem;
}
.confirmItem dd {
  margin-left: 0;
}

@media (width >= 769px) {  
  .page-confirm .pageTitle {
  margin-top: 8rem;
}
  .confirmationList {
    gap: 2rem;
  }
  .confirmItem {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 2rem;
  }

  .confirmItem::before {
    width: 20rem; 
  }

  .confirmItem dt {
    margin-bottom: 0;
  }
}

/* thanks */
  .page-thanks .pageTitle {
  margin-top: 4rem;
}
.thanksTxt {
  padding-block: 4rem;
}
.page-thanks .backToHome {
  display: flex;
  width: fit-content; 
  margin-inline: auto;
  margin-top: 8rem;
}
@media (width >= 769px) {
    .page-thanks .pageTitle {
  margin-top: 8rem;
}
  .thanksTxt {
  padding-block: 9rem;
}
.page-thanks .backToHome {
  margin-top: 16rem;
}
}
/* entry-comfirm */
.page-entry-confirm .pageTitle {
  margin-top: 4rem;
}
@media (width >= 769px) {
  .page-entry-confirm .pageTitle {
  margin-top: 8rem;
}
}


/* コンタクトフォーム7用 */
.formControl .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.formControl .wpcf7-list-item {
  display: block;
  margin: 0;
}

.formControl .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 0.5em;
}

.formControl .wpcf7-list-item input[type="radio"] {
  appearance: auto;
  -webkit-appearance: auto;
  opacity: 1;
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  accent-color: var(--main-color);
}

.contactFormGroup.consentGroup input[type="checkbox"] {
  accent-color: var(--main-color);
}
.wpcf7 form .wpcf7-response-output {
  border: none;
  text-align: center;
}
/* 代理店営業メンバー */
.member.w-container {
  max-width: 96rem;
}
.member {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.memberList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.memberCard {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.memberCardLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.memberIcon {
  width: 18rem; 
}

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

.memberInitial {
  color: #00c981;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Urbanist", sans-serif;
  margin-top: 0.5rem;
}

.memberCardRight {
  width: 100%;
}

.memberCatch {
  color: #025159;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2rem;
  text-align: center;
}

.memberContent dl dt {
  color: #00c981;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 4rem;
}

.memberContent dl dd {
  margin-left: 0;
  margin-top: 1rem;
  line-height: 1.7;
}

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

  .memberCard {
    flex-direction: row;
    align-items: flex-start;
    padding: 5rem 2rem;
    gap: 5rem; 
  }

  .memberCardLeft {
    width: 18rem; 
    flex-shrink: 0;
  }

  .memberCardRight {
    flex: 1;
  }

  .memberCatch {
    text-align: left;
    margin-top: 0;
  }
}

/* フォームPDFアップロード */
.codedropz-upload-handler {
    border: none !important;
}
.codedropz-upload-wrapper {
  margin: 1rem 0;
  padding: 0 !important;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #f9fafb;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー・ドラッグ中 */
.codedropz-upload-wrapper.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 201, 129, 0.1);
}

.codedropz-upload-handler {
  padding: 4rem 2rem;
}

.codedropz-upload-inner h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.codedropz-upload-inner span {
  font-size: 1.2rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
}

/* 参照ボタンを「ボタン形式」から「テキストリンク形式」へ */
.cd-upload-btn {
  display: inline-block;
  color: var(--accent-color) !important;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.cd-upload-btn:hover {
  color: var(--main-color) !important;
  opacity: 1;
}

.dnd-upload-counter {
  display: none !important;
}

/* アップロード後のファイル表示をスタイリッシュに */
.codedropz-upload-handler .dnd-upload-details {
  background: #fff;
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  padding: 1.2rem;
  margin: 1.5rem auto 0;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.codedropz-upload-handler .dnd-upload-details .name {
  font-size: 1.4rem;
  color: var(--main-color);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.codedropz-upload-handler .remove-file {
  width: 20px;
  height: 20px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #666;
  cursor: pointer;
}