:root {
  --color-bg: #fde8da;
  /* バナー背景(薄いオレンジ) */
  --color-badge-bg: #3a3a3a;
  /* 上部バッジ */
  --color-accent: #f76b1c;
  /* メインオレンジ */
  --color-text: #333;
  --color-white: #fff;
  --color-section-bg: #f7a128;
  /* セクション背景(オレンジ) */
  --color-bar-bg: #fff;
  /* 上部の黒帯 */
  --color-highlight: #fdf3c0;
  /* 黄色マーカー */

}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

section {
  padding: 60px 0 80px;
}

@media (max-width: 768px) {
  section {
    padding: 20px 0;
  }
}

@media screen and (max-width: 599px) {
  .excursion {
    flex-direction: column;
    height: 60px;
    padding: 0 10px;
  }
}

.fa-phone::before {
  content: "\f095";
  color: #333;
}

@media (max-width: 768px) {
  .fa-phone::before {
    content: "\f095";
    color: #fff;
  }
}

.footer-sub {
  background: #FF8C1A;
  padding: 30px 20px;
  display: flex;
  font-size: 1.2rem;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 599px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

/* 見出し */

.section__title {
  text-align: left;
  border-bottom: 2px solid #FF6600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 30px;
}

.txt {
  text-align: left;
  margin-bottom: 20px;
}

.main-image {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {

  .section__title {
    text-align: left;
    border-bottom: 2px solid #FF6600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 24px;
  }
}

/* カードエリア ホワイト*/

.white-box {
  background: #fff;
  padding: 30px 50px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.white-box-inner {
  display: flex;
  justify-content: space-between;
}

.white-box-text {
  display: block flex;
  text-align: left;
  width: 55%;
  align-items: center;
}

.white-box__sub {
  color: #FF9D00;
}

.white-box__title {
  font-size: 24px;
}

.white-box-image {
  width: 40%;
  display: block;
  text-align: -webkit-center;
}

.white-box__header {
  text-align: left;
  margin: 0 auto 20px;
}

.box_no_image .white-box-text {
  width: 100%;
}

@media screen and (max-width: 599px) {

  .white-box-inner {
    flex-direction: column;
  }

  .white-box-text {
    width: 100%;
  }

  .white-box__sub {
    color: #FF9D00;
  }

  .white-box {
    padding: 20px;
  }

  .white-box-image {
    width: 100%;
  }
}

/* カードエリア グレー*/

.gray-box {
  padding: 30px 50px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: #F9F8F6;
}

.gray-box-inner {
  display: flex;
  justify-content: space-between;
}

.gray-box-text {
  display: block;
  text-align: left;
  width: 100%;
}

.gray-box__sub {
  color: #FF9D00;
}

.gray-box__title {
  font-size: 24px;
}

.gray-box__header {
  text-align: left;
  margin: 0 auto 20px;
}

@media screen and (max-width: 599px) {

  .gray-box-inner {
    flex-direction: column;
  }

  .gray-box-text {
    width: 100%;
  }

  .gray-box__sub {
    color: #FF9D00;
  }

  .gray-box {
    padding: 20px;
  }

  .gray-box-image {
    width: 100%;
  }
}

/* PRエリア */

.pr-box a {
  background: #fff;
  display: block;
}

.pr-cta {
  background: #FFFFFF80;
  padding: 60px 260px;
}

.pr-list-wrapper {
  margin-bottom: 30px;
}

.cra-text {
  color: #FF6600;
  font-size: 14px;
  font-weight: bold;
}

.pr-cta-box {
  background: #FF6600;
  width: 390px;
  margin: auto;
  padding: 20px 30px;
}

.pr-cta-box a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.pr-cta-box a::after {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.cta-text {
  color: #FF6600;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* CTA 小 */
.cta-sm-text {
  text-align: left;
  color: #666666;
  font-size: 16px;
  margin-bottom: 10px;
}

.cta-sm-link {
  text-align: left;
  position: relative;
  padding-left: 30px;
}

.cta-sm-link a {
  color: #FF6600;
  font-weight: 600;
}

.cta-sm-link::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../img/dl.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* CTA 大 */
.cta-lg-text {
  text-align: left;
  color: #FF6600;
  font-weight: bold;
  margin-bottom: 10px;
}

.cta-lg-link-content {
  display: flex;
  justify-content: space-between;
  background: #FFEADB;
  padding: 20px 30px;
  align-items: center;
  border-radius: 10px;
}

.cta-lg-text-box {
  text-align: left;
}

.cta-lg-text-sub {
  color: #FF6600;
  font-size: 18px;
  font-weight: bold;
}

.cta-lg-text-main {
  font-size: 24px;
  font-weight: bold;
}

.cta-lg-link-box {
  background: #fff;
  padding: 19.5px 50px 19.5px 20px;
  border-radius: 10px;
}

.cta-lg-link-box a {
  color: #FF6600;
  font-weight: bold;
  position: relative;
}

.cta-lg-link-box a::after {
  content: "";
  position: absolute;
  right: -15%;
  top: 60%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/dl_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 599px) {
  .pr-cta {
    width: 100%;
    padding: 0;
  }

  .pr-cta-box {
    width: 100%;
  }

  .cta-lg-link-content {
    flex-wrap: wrap;
  }

  .cta-lg-link-box {
    background: #fff;
    padding: 19.5px 50px 19.5px 20px;
    border-radius: 10px;
    width: 100%;
    border-radius: 0;
  }

  .cta-lg-text-main {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .pr-cta-box {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 20px 0px #0000001A;
  }

  .pr-cta-box a {
    color: #333;
    justify-content: center;
    gap: 16px;
  }

  .cta-text {
    margin-bottom: 10px;
  }

  .cta-sm-link::before {
    top: 26%;
  }
}

/* FAQ */

#faq {
  background-color: #F9F8F6;
}

.faq-list {
  border-top: #CCCCCC 1px solid;
  padding: 30px 0;
  margin: 30px 0;
}

.faq-box {
  text-align: left;
  border-bottom: #CCCCCC 1px solid;
  margin-top: 35px;
}

.question-box {
  position: relative;
  padding-left: 61px;
  margin-bottom: 35px;
}

.question-box::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background-image: url(../img/question.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}


.answer-box {
  position: relative;
  padding-left: 61px;
  margin-bottom: 35px;
}

.answer-box::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 18%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background-image: url(../img/answer.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 599px) {
  .question {
    font-size: 18px;
  }
}



/* ===== バナー全体 ===== */
.cta-banner {
  position: relative;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: 16px;
  padding: 56px 48px 48px;
  overflow: visible;
  margin-bottom: 60px;
}

.cta-banner::after {
  content: "";
  display: block;
  position: absolute;
  top: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
}


/* ===== 上部バッジ ===== */
.cta-banner__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666666;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== 内部レイアウト ===== */
.cta-banner__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cta-banner__content {
  flex: 1 1 55%;
  min-width: 0;
}

.cta-banner__eyebrow {
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-banner__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta-banner__text {
  font-size: 14px;
  color: var(--color-text);
  width: 80%;
  margin: 0 auto 30px;
  text-align: left;
}

/* ===== CTAボタン ===== */
.cta-banner__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
  margin: auto;
}

.cta-banner__button:hover {
  opacity: 0.85;
}

.cta-banner__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== 資料イメージ(右側) ===== */
.cta-banner__visual {
  flex: 1 1 45%;
  min-width: 280px;
}

.cta-banner__visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .cta-banner {
    padding: 48px 24px 32px;
  }

  .cta-banner__badge {
    font-size: 14px;
    padding: 10px 20px;
    width: max-content;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.5;
    top: -4%;
  }

  .cta-banner__inner {
    flex-direction: column;
    gap: 32px;
  }

  .cta-banner__title {
    font-size: 21px;
  }

  .cta-banner__button {
    max-width: none;
  }

  .cta-banner__visual {
    display: none;
  }

  .cta-banner__text {
    font-size: 14px;
    width: 100%;
    font-weight: 500;
  }
}

.cta-section__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 32px 16px 28px;
  line-height: 1.6;
}



/* ===== セクション全体 ===== */
.cta-section {
  background: linear-gradient(90deg, #FFA52F 0%, #FF9D00 100%);
  padding: 0 0 60px 0;
}

/* ===== 上部の黒帯+下向き三角 ===== */
.cta-section__bar {
  position: relative;
  background: var(--color-bar-bg);
  height: 16px;
}

.cta-section__bar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 18px 24px 0 24px;
  border-color: var(--color-bar-bg) transparent transparent transparent;
}

/* ===== リード文(スラッシュ装飾付き) ===== */
.cta-section__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 32px 16px 28px;
  line-height: 1.6;
}

.cta-section__lead::before,
.cta-section__lead::after {
  content: "";
  width: 2px;
  height: 1.6em;
  background: var(--color-white);
  border-radius: 1px;
  flex-shrink: 0;
}

.cta-section__lead::before {
  transform: rotate(-25deg);
}

.cta-section__lead::after {
  transform: rotate(25deg);
}

/* ===== 白カード ===== */
.cta-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cta-card__content {
  flex: 1 1 55%;
  min-width: 0;
}

.cta-card__eyebrow {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cta-card__eyebrow span {
  background: linear-gradient(transparent 55%, var(--color-highlight) 55%);
  padding: 0 2px;
  font-size: 18px;
}

.cta-card__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta-card__text {
  font-size: 16px;
  color: #666666;
  width: 80%;
  margin: 0 auto 30px;
}

/* ===== CTAボタン ===== */
.cta-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.cta-card__button:hover {
  opacity: 0.85;
}

.cta-card__button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== 資料イメージ(右側) ===== */
.cta-card__visual {
  flex: 1 1 45%;
  min-width: 280px;
}

.cta-card__visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .cta-section__lead {
    font-size: 14px;
    padding: 24px 16px 20px;
  }

  .cta-card {
    margin: 0 16px;
    padding: 32px 24px;
    flex-direction: column;
    gap: 32px;
  }

  .cta-card__title {
    font-size: 21px;
  }

  .cta-card__button {
    max-width: none;
  }

  .cta-card__visual {
    width: 100%;
    min-width: 0;
  }

  .cta-section__bar {
    display: none;
  }

  .cta-section__lead::before,
  .cta-section__lead::after {
    margin-top: 20px;
  }
}

/* スライダー */

.pr-list .slick-slide {
  margin: 0 10px;
}

.pr-list.slick-slider {
  margin: 0 -10px;
}

/* PC: 3カラム */
.pr-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pr-box {
  flex: 1;
  /* 3枚を等幅に */
  min-width: 0;
  /* テキストのはみ出し防止 */
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  /* 画像の角をカードに合わせる */
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.pr-box a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 画像をカード幅に追従させる */
.pr-box img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pr-text-box {
  padding: 16px 20px 24px;
}

.pr-ttl {
  font-size: 14px;
  font-weight: bold;
  color: #888;
  margin: 0 0 8px;
}

.pr-desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  min-height: 10rem;
}


.text-pr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #FF6600;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 32px 16px 28px;
  line-height: 1.6;
}

.text-pr::before,
.text-pr::after {
  content: "";
  width: 2px;
  height: 1.6em;
  background: #FF6600;
  border-radius: 1px;
  flex-shrink: 0;
}

.text-pr::before {
  transform: rotate(-25deg);
}

.text-pr::after {
  transform: rotate(25deg);
}

.pr-text-box {
  text-align: left;
}

@media (max-width: 768px) {
  .text-pr {
    font-size: 14px;
    padding: 24px 16px 20px;
    padding-top: 10px;
  }

  .pr-desc {
    min-height: 11rem;
  }

  .ttl-pr {
    font-size: 20px;
    display: none;
  }

  .pr-list {
    display: block;
  }

  .pr-list .slick-list {
    padding-right: 48px;
    /* この分だけ次のカードが右に見える */
  }

  .pr-box {
    margin-right: 12px;
    /* カード間の余白 */
  }
}

/* スクロール追従バナー */
.dl-bnr-wrapper {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  width: 240px;
  height: 183px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 15px 0px #0000001A;
  padding: 5px;
}

.dl-bnr-box {
  height: 100%;
  padding: 15px;
  border-radius: 5px;
  background-image: url(../img/dl_bg.png);
  background-size: cover;
  text-align: center;
}

.dl-ttl-sub {
  font-size: 12px;
  color: #fff;
  line-height: normal;
  margin: 0;
}

.dl-ttl-main {
  color: #FFF134;
  margin: 0;
  font-weight: bold;
  font-size: 14px;
}

.dl-bnr img {
  width: 40%;
  margin: auto;
  display: block;
  height: auto;
}

.dl-btn {
  background: #fff;
  border-radius: 15px;
  display: flex;
  justify-content: space-around;
  align-content: center;
  flex-wrap: wrap;
}

.dl-btn-text {
  font-size: 12px;
  padding: 5px 20px;
  font-weight: bold;
  position: relative;
}

.dl-btn-text::after {
  content: "";
  position: absolute;
  right: -2%;
  top: 54%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/dl_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.dl-bnr-close {
  position: absolute;
  top: 2%;
  right: 0%;
  width: 18px;
  height: 18px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  font-size: 10px;
  z-index: 37000;
  box-shadow: none;
  border-radius: 0 0 0 5px;
  color: #333;
  padding-right: 1px;
  padding-bottom: 2px;
}


@media (max-width: 768px) {
  .dl-bnr-wrapper {
    width: 100%;
    right: 0;
    bottom: 0;
    height: 100px;
  }

  .dl-bnr-box {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .dl-bnr img {
    width: 80px;
    margin: auto;
    display: block;
    height: auto;
  }

  .dl-text-wrapper {
    width: 75%;
  }

  .dl-text-wrapper {
    width: 75%;
    text-align: left;
  }

  .dl-ttl-sub {
    font-size: 12px;
    color: #fff;
    line-height: normal;
    margin: 0;
    font-weight: bold;
  }

  .dl-ttl-main {
    color: #FFF;
    margin: 0;
    font-weight: bold;
    font-size: 12px;
  }

  .dl-btn {
    background: none;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }

  .dl-btn-text {
    font-size: 12px;
    padding: 5px 20px;
    font-weight: bold;
    position: relative;
    color: #FFF134;
    padding: 0;
  }


  .dl-btn-text::after {
    right: -20%;
    background-image: url(../img/dl_orange_sp.svg);
  }

  .dl-bnr-close {
    position: absolute;
    top: 11%;
    right: 1%;

  }

  .dl-bnr-box {
    height: 100%;
    padding: 15px;
    border-radius: 5px;
    background-image: url(../img/dl_bg_sp.png);
    background-size: cover;
    text-align: center;
  }

}

#knowledge {
  section {
    padding: 40px 0 70px;
  }

  #mainvisual {
    background-color: antiquewhite;
    padding: 60px 0 40px;
    margin-bottom: 0;
  }

  .page__ttl {
    margin-bottom: 20px;
  }

  .inner__link__list {
    display: flex;
    justify-content: space-evenly;
  }

  .inner__link__box a {
    font-size: 18px;
    display: block;
    position: relative;
  }

  .inner__link__box a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -35%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
  }

  .category-name {
    text-align: left;
    margin-bottom: 20px;
  }

  .pages-link {
    display: flex;
  }

  .pages-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    @media (max-width: 768px) {
      flex-direction: column;
    }
  }

  .pages-link-image {
    flex-shrink: 0;
    width: 240px;
    height: 140px;

    @media (max-width: 768px) {
      width: 100%;
      text-align: center;
      margin: auto;
    }
  }

  .pages-link-text-box {
    margin: auto 0;
    text-align: left;
  }

  .pages-link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}