@charset "UTF-8";

/* ////////////////////////////////////////////////////////////////////
index
//////////////////////////////////////////////////////////////////// */


/* ==================================================
共通
================================================== */

.section-news .inner,
.section-3col .inner,
.section-3grid .inner,
.section-4grid .inner,
.section-faq .inner,
.section-cta .inner {
  width: min(var(--inner), calc(100% - 48px));
  margin: 0 auto;
}


/* ==================================================
section title
================================================== */

.section-title,
.section-3grid-title,
.section-4grid-title {
  position: relative;
  margin: 0 0 48px;
  padding-bottom: 20px;
  color: var(--color-main);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}

.section-title::after,
.section-3grid-title::after,
.section-4grid-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--color-main);
  transform: translateX(-50%);
}


/* ==================================================
PC
hero（ブラウザ横幅いっぱい）
================================================== */

.hero-index {
  position: relative;
  width: 100%;
  height: clamp(520px, 52vw, 720px);
  overflow: hidden;
  background: #f4f4f4;
}


/* --------------------------
hero image
-------------------------- */

.hero-index-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-index-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(255, 255, 255, 0.66) 32%,
      rgba(255, 255, 255, 0.12) 62%,
      rgba(255, 255, 255, 0) 100%);
}

.hero-index-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


/* --------------------------
hero content
-------------------------- */

.hero-index-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: min(var(--inner), calc(100% - 48px));
  height: 100%;

  margin: 0 auto;
}


/* --------------------------
hero title
-------------------------- */

.hero-index-title {
  margin: 0 0 28px;
  color: var(--color-main);
  /* シャドウ */
  text-shadow:
    0 0 4px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 255, 255, 0.7);

  /* 袋文字 */
  /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
  paint-order: stroke fill;
  text-shadow:
    0 1px 8px rgba(255, 255, 255, 0.65); */

  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
}


/* --------------------------
hero text
-------------------------- */

.hero-index-text {
  margin: 0;

  color: var(--color-text);

  /* シャドウ */
  text-shadow:
    0 0 4px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 18px rgba(255, 255, 255, 0.7);

  /* 袋文字 */
  /* -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
  paint-order: stroke fill;
  text-shadow:
    0 1px 8px rgba(255, 255, 255, 0.65); */

  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;

  letter-spacing: 0.035em;
}


/* ==================================================
PC
section-news
================================================== */

.section-news {
  padding: 80px 0 0 0;
  background: #fff;
}

.section-news .inner {
  width: min(var(--inner), calc(100% - 48px));
  margin: 0 auto;
}


/* --------------------------
head
-------------------------- */

/* .section-news-head {
  margin: 0 0 32px;

  color: var(--color-main);

  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;

  letter-spacing: 0.08em;
} */

.section-news-head {
  position: relative;

  margin: 0 0 48px;
  padding-bottom: 22px;

  color: var(--color-main);

  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;

  letter-spacing: 0.08em;
}

.section-news-head::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 0;

  width: 48px;
  height: 2px;

  background: var(--color-main);

  transform: translateX(-50%);
}


/* --------------------------
list
-------------------------- */
.section-news-list {
  max-width: 1200px;
  /* max-width: 900px; */
  margin: 0 auto;
}


/* --------------------------
item
-------------------------- */

.section-news-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;

  padding: 20px 0;

  border-bottom: 1px solid #dce9e1;
}


/* --------------------------
date
-------------------------- */

.section-news-date {
  margin: 0;

  color: var(--color-main);

  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
}


/* --------------------------
text
-------------------------- */

.section-news-text {
  margin: 0;

  color: var(--color-text);

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}


/* --------------------------
NEW
-------------------------- */

.label-new {
  display: inline-block;

  margin-left: 10px;
  padding: 2px 8px;

  color: #fff;
  background: var(--color-main);

  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;

  border-radius: 4px;
}


/* ==================================================
PC
こんな方におすすめです
================================================== */

.section-3col {
  padding: 100px 0;

  background: var(--color-white);
}

.section-3col-list {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;
}


/* --------------------------
card
-------------------------- */

.section-3col-item {
  padding: 32px;

  background: var(--color-white);

  border-radius: 16px;

  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.06);
}


/* --------------------------
image
-------------------------- */

.section-3col-icon {
  display: flex;

  justify-content: center;
  align-items: center;

  margin-bottom: 24px;

  overflow: hidden;

  border-radius: 12px;
}

.section-3col-icon img {
  display: block;

  width: 100%;
  height: auto;
}


/* --------------------------
text
-------------------------- */

.section-3col-text {
  color: var(--color-text);

  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;

  text-align: center;
}


/* --------------------------
section message
-------------------------- */

.section-3col .global-center-text {
  max-width: 920px;
  margin: 48px auto 0;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}


/* ==================================================
PC
こういったお悩みはありませんか？
================================================== */

.section-3grid {
  padding: 100px 0;

  background: var(--color-brighter);
}


/* --------------------------
grid
-------------------------- */

.section-3grid-list {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}


/* --------------------------
card
-------------------------- */

.section-3grid-item {
  padding: 28px;

  background: var(--color-white);

  border: 1px solid var(--color-accent);
  border-radius: 16px;

  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.04);
}


/* --------------------------
image
-------------------------- */

.section-3grid-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}



.section-3grid-icon img {
  display: block;
  /* width: 100%;
  height: auto; */
  width: 72%;
  max-width: 220px;
  height: auto;
}


/* --------------------------
text
-------------------------- */

/* .section-3grid-text {
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.9;
  text-align: left;
} */

/* 中央揃えに変更 */
.section-3grid-text {
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.9;
  text-align: center;
}


/* --------------------------
message
-------------------------- */

.section-3grid-message {
  max-width: 860px;
  margin: 52px auto 0;

  text-align: center;
}

.section-3grid-message p {
  margin-bottom: 28px;

  color: var(--color-text);

  font-size: 1rem;
  line-height: 2;
}


/* --------------------------
業務内容リンク
-------------------------- */

.section-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 220px;

  padding: 14px 28px;

  color: var(--color-main);

  font-size: 0.9375rem;
  font-weight: 700;

  background: var(--color-white);

  border: 2px solid var(--color-main);
  border-radius: 10px;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.section-link:hover {
  color: var(--color-white);

  background: var(--color-main);
}


/* ==================================================
PC
サービスの特徴・強み
================================================== */

.section-4grid {
  padding: 100px 0;

  background: var(--color-white);
}


/* --------------------------
grid
-------------------------- */

.section-4grid-list {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 24px;
}


/* --------------------------
card
-------------------------- */

.section-4grid-item {
  padding: 28px;

  background: var(--color-white);

  border-radius: 16px;

  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.06);
}


/* --------------------------
image
-------------------------- */

.section-4grid-icon {
  display: flex;

  justify-content: center;
  align-items: center;

  margin-bottom: 22px;

  overflow: hidden;

  border-radius: 10px;
}

.section-4grid-icon img {
  display: block;

  width: 100%;
  height: auto;
}


/* --------------------------
text
-------------------------- */

.section-4grid-text {
  color: var(--color-text);

  font-size: 0.9375rem;
  line-height: 1.9;

  text-align: left;
}

/* ==================================================
PC
よくあるご質問（折りたたみバージョン）
================================================== */

.section-faq {
  padding: 100px 0;
  background: #f7f9f8;
}


/* --------------------------
faq list
-------------------------- */

.section-faq-list {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.05);
}


/* --------------------------
faq item
-------------------------- */

.section-faq-item {
  margin: 0;
  padding: 0;

  border-bottom: 1px solid var(--color-line);
}

.section-faq-item:last-child {
  border-bottom: none;
}


/* --------------------------
question
-------------------------- */

.section-faq-question {
  position: relative;
  display: block;
  margin: 0;
  padding: 30px 70px 30px 80px;
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}


/* Chrome / Safari */

.section-faq-question::-webkit-details-marker {
  display: none;
}

.section-faq-question::marker {
  content: "";
}


/* --------------------------
Q
-------------------------- */

.section-faq-question::before {
  content: "Q";

  position: absolute;

  top: 28px;
  left: 38px;

  color: var(--color-main);

  font-size: 1.4rem;
  font-weight: 700;
}


/* --------------------------
＋ / −
-------------------------- */

.section-faq-question::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 38px;

  width: 22px;
  height: 22px;

  transform: translateY(-50%);
}


/* 横線 */

.section-faq-question-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 38px;
  width: 22px;
  height: 2px;
  background: var(--color-main);
  transform: translateY(-50%);
}


/* 縦線 */

.section-faq-question-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 48px;
  width: 2px;
  height: 22px;
  background: var(--color-main);
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}


/* 開いたときは縦線を消して − にする */

.section-faq-item[open] .section-faq-question-text::before {
  opacity: 0;
}


/* --------------------------
answer
-------------------------- */

.section-faq-answer {
  position: relative;

  padding: 0 38px 30px 80px;
}


/* --------------------------
A
-------------------------- */

.section-faq-answer::before {
  content: "A";

  position: absolute;

  top: 0;
  left: 38px;

  color: #9b6c66;

  font-size: 1.4rem;
  font-weight: 700;
}


.section-faq-answer p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 2;
}




/* ####################################################################
responsive
#################################################################### */


/* ==================================================
1000px以下
================================================== */

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

  /* --------------------------
  hero
  -------------------------- */

  .hero-index {
    height: 560px;
  }

  .hero-index-title {
    font-size: 3.25rem;
  }

  .hero-index-text {
    font-size: 1.125rem;
  }


  /* --------------------------
  section
  -------------------------- */

  .section-3col,
  .section-3grid,
  .section-4grid,
  .section-faq,
  .section-cta {
    padding: 80px 0;
  }


  /* --------------------------
  3col
  -------------------------- */

  .section-3col-list {
    gap: 20px;
  }

  .section-3col-item {
    padding: 24px;
  }


  /* --------------------------
  3grid
  3列 → 2列
  -------------------------- */

  .section-3grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  /* --------------------------
  4grid
  4列 → 2列
  -------------------------- */

  .section-4grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* ==================================================
777px以下
================================================== */

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

  /* --------------------------
  inner
  -------------------------- */

  .section-3col .inner,
  .section-3grid .inner,
  .section-4grid .inner,
  .section-faq .inner,
  .section-cta .inner {
    width: min(var(--inner), calc(100% - 32px));
  }


  /* --------------------------
  title
  -------------------------- */

  .section-title,
  .section-3grid-title,
  .section-4grid-title {
    margin-bottom: 32px;
    padding-bottom: 16px;

    font-size: 1.65rem;
  }

  .section-title::after,
  .section-3grid-title::after,
  .section-4grid-title::after {
    width: 42px;
    height: 2px;
  }


  /* ==================================================
  sp
  hero
  ================================================== */

  .hero-index {
    height: auto;

    background: var(--color-white);
  }

  .hero-index-image {
    position: relative;

    width: 100%;
    height: 58vw;

    min-height: 280px;
    max-height: 420px;
  }

  .hero-index-image::after {
    background:
      linear-gradient(0deg,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0) 100%);
  }

  .hero-index-image img {
    object-position: center center;
  }

  .hero-index-content {
    width: calc(100% - 32px);
    height: auto;

    padding: 34px 0 44px;

    text-align: center;
  }

  .hero-index-title {
    margin-bottom: 18px;

    font-size: 2.2rem;
    line-height: 1.45;
  }

  .hero-index-text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }

 /* ==================================================
 sp
  news
  ================================================== */
  .section-news {
    /* padding: 48px 0; */
    padding: 48px 0 32px;
  }

  .section-news .inner {
    width: min(var(--inner), calc(100% - 48px));
  }

  .section-news-list {
    max-width: none;
  }

  /* .section-news-head {
    margin-bottom: 24px;

    font-size: 1.5rem;
  } */

    .section-news-head {
    margin-bottom: 36px;
    padding-bottom: 18px;

    font-size: 1.5rem;
  }

  .section-news-item {
    display: block;

    padding: 18px 0;
  }

  .section-news-date {
    margin-bottom: 4px;

    font-size: 0.9rem;
  }

  .section-news-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .label-new {
    margin-left: 6px;
  }


  /* ==================================================
  sp
  sections
  ================================================== */

  .section-3col,
  .section-3grid,
  .section-4grid,
  .section-faq,
  .section-cta {
    padding: 64px 0;
  }


  /* ==================================================
  sp
  こんな方におすすめ
  ================================================== */

  .section-3col-list {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .section-3col-item {
    padding: 22px;
  }

  .section-3col-icon {
    margin-bottom: 18px;
  }

  .section-3col-text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }

  .section-3col .global-center-text {
    margin-top: 34px;
    font-size: 0.9375rem;
    line-height: 1.9;
  }


  /* ==================================================
  sp
  お悩み
  ================================================== */

  .section-3grid-list {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .section-3grid-item {
    padding: 22px;
  }

  .section-3grid-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    text-align: left;
  }

  .section-3grid-message {
    margin-top: 38px;
  }

  .section-3grid-message p {
    margin-bottom: 24px;

    font-size: 0.9375rem;
    line-height: 1.9;
  }

  .section-link {
    width: 100%;

    min-width: 0;
  }


  /* ==================================================
  特徴・強み
  ================================================== */

  .section-4grid-list {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .section-4grid-item {
    padding: 22px;
  }

  .section-4grid-text {
    font-size: 0.9375rem;
    line-height: 1.8;
  }


  /* ==================================================
  SP
  よくあるご質問（折りたたみバージョン）
  ================================================== */
  /* FAQのinner幅は共通設定をそのまま使用
     calc(100% - 32px)
     → 左右16px
  */

  .section-faq-question {
    padding: 24px 54px 24px 54px;

    font-size: 0.9375rem;
    line-height: 1.7;
  }


  /* Q */

  .section-faq-question::before {
    top: 22px;
    left: 20px;

    font-size: 1.2rem;
  }


  /* ＋ / − 横線 */

  .section-faq-question-text::after {
    right: 20px;

    width: 20px;
    height: 2px;
  }


  /* ＋ 縦線 */

  .section-faq-question-text::before {
    right: 29px;

    width: 2px;
    height: 20px;
  }


  /* answer */

  .section-faq-answer {
    padding: 0 20px 24px 54px;
  }


  /* A */

  .section-faq-answer::before {
    left: 20px;

    font-size: 1.2rem;
  }


  .section-faq-answer p {
    font-size: 0.875rem;
    line-height: 1.9;
  }

  /* ==================================================
スマホ
お悩み：横型カード
================================================== */

.section-3grid-item {
  display: grid;

  grid-template-columns: 120px minmax(0, 1fr);

  align-items: center;

  gap: 18px;

  padding: 20px;
}

.section-3grid-icon {
  width: 120px;

  margin: 0;
}

.section-3grid-icon img {
  display: block;

  width: 100%;
  height: auto;
}

.section-3grid-text {
  min-width: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
}


/* ==================================================
スマホ
サービスの特徴・強み：横型カード
================================================== */

.section-4grid-item {
  display: grid;

  grid-template-columns: 120px minmax(0, 1fr);

  align-items: center;

  gap: 18px;

  /* padding: 20px; */
  padding: 16px 20px;
}

.section-4grid-icon {
  width: 120px;

  margin: 0;
}

.section-4grid-icon img {
  display: block;

  width: 100%;
  height: auto;
}

.section-4grid-text {
  min-width: 0;

  font-size: 0.9375rem;
  line-height: 1.8;
}

/* スマホで左揃え */
.section-3col .global-center-text {
  text-align: left;
}

.section-3grid-message {
  text-align: left;
}

/* 改行を解除 */
.section-3col .global-center-text br,
.section-3grid-message br {
  display: none;
}



}