@charset "UTF-8";
/*
---------------------------------------------
必要なコンポーネントをここで読み込む
---------------------------------------------
*/
/*
---------------------------------------------
色設定など、外部ファイル化できる設定値をここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
事前に読み込むscssファイル
---------------------------------------------
*/
/*
---------------------------------------------
flexの設定
---------------------------------------------
*/
/*
---------------------------------------------
ブレイクポイントを指定
---------------------------------------------
*/
/*
---------------------------------------------
各要素の表示/非表示を操作する設定
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
グラデーション設定を入れる場合はここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
テキストブランクの設定が必要であればここに記述する
※テキスト自体を1行で表示させつつ、SP版の時に横スクロールが発生するようなデザインの時に使用する
---------------------------------------------
*/
/*
---------------------------------------------
キービジュアルのセクションに対するスタイル
こちらはトップページで使用します。
---------------------------------------------
*/
/**
 * キービジュアル全体のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.kv {
  width: 100%;
  height: 468px;
  background-image: url("../../img/renewal-home/kv_sp.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv {
    height: 847px;
    background-image: url("../../img/renewal-home/kv_pc.png");
  }
}
/**
 * キャッチコピー部分のスタイル
 * もしかしたらgsap使ってアニメーション必要かもしれない。
 * それは一旦レイアウト実装後に検討。
 * 背景の上にdiv要素を中央に自動更新し、見出しとサブテキストを縦並びで配置する
 * 
 * @author ishizaka
 * @version 2025/11/26
 */
.kv__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 4.26%;
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .kv__inner {
    top: 40%;
  }
}
@media screen and (min-width: 1280px) {
  .kv__inner {
    top: 41.4%;
    gap: 32px;
    padding: 0;
  }
}

/**
 * 大見出しのスタイル
 * （SP/PCでの登場を「上から入場」に統一するための設定を想定）
 */
.kv__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 140%; /* 50.4px */
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .kv__title {
    font-size: 42px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .kv__title {
    font-size: 54px;
  }
}
@media screen and (min-width: 1280px) {
  .kv__title {
    font-size: 64px;
    gap: 12px;
  }
}

/* ここを追加: 初期は非表示にしておく */
.kv__title__inner {
  visibility: hidden;
  /* 子要素は表示後にアニメーションで登場する想定 */
}

.kv__title__inner.is-active {
  visibility: visible;
}

/* 一文字ずつの分解要素 */
.kv__title__inner .kv__title__char {
  display: inline-block;
  transform: translateY(-20px);
  opacity: 0;
  will-change: transform, opacity;
}

/* 登場アニメーションの共通ルール（親が is-active の場合に適用） */
.kv__title__inner.is-active .kv__title__char {
  animation: slideInFromTop 1s ease-out forwards;
  animation-delay: calc(var(--char-index) * 0.06s);
}

@keyframes slideInFromTop {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 768px 以上も「上から登場」に統一する場合は、横並びの設定を維持しても
   上方向の登場が適用されるよう、横方向の transform は使わないようにする */
@media (min-width: 768px) {
  /* ここでは横並びでも上から登場を使い続ける想定のため、以下のような上書きを避ける
     既存の transform: translateX(-100%) の扱いを削除・無効化しておく。 */
  .kv__title__inner .kv__title__char {
    /* 既に translateX を適用していた場合は削除して、上方向登場に統一する */
    transform: translateY(-20px);
  }
  .kv__title__inner.is-active .kv__title__char {
    animation: slideInFromTop 0.6s ease-out forwards;
    animation-delay: calc(var(--char-index) * 0.01s);
  }
}
/**
 * キャッチコピーのレイアウト
 * 
 * @author ishizaka
 * @version 2025/12/17
 */
.kv__catchcopy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.kv__catchcopy::after {
  order: 2;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.kv__catchcopy.is-visible-catchcopy::after {
  opacity: 1;
  transform: scaleX(1);
}

/**
 * キャッチコピーのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/26
 */
.kv__sub {
  font-size: 18px;
  font-weight: 700;
  line-height: 170%; /* 27px */
  color: #fff;
  opacity: 0;
  transform: translateY(-20%);
  transition: transform 0.4s, opacity 0.4s ease-out;
  will-change: transform, opacity;
}
.kv__sub.is-visible-sub {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .kv__sub {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .kv__sub {
    font-size: 32px;
  }
}

.kv__sub:nth-last-child {
  order: 1;
}

.kv__sub:nth-of-type(2) {
  order: 3;
}

/*
---------------------------------------------
NEWSのセクションに対するスタイル
こちらはトップページで使用します。
---------------------------------------------
*/
/**
 * 各ニュースのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.newsList {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .newsList {
    padding: 16px 0;
  }
}

/**
 * liのスタイル
 ※ borderの設定をするために後ほど擬似スタイルをつける。
 * 
 * @author ishizaka
 * @version 2025/11/26
 */
.newsList__item {
  width: 100%;
  height: auto;
}
.newsList__item:first-child .newsList__link {
  border-top: 1px solid #C3C3C3;
}

/**
 * aタグのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/26
 */
.newsList__link {
  display: flex;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #C3C3C3;
}
@media screen and (min-width: 1024px) {
  .newsList__link {
    padding: 24px 0;
  }
}
.newsList__link {
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .newsList__link:hover {
    opacity: 0.6;
  }
}

/**
 * aタグ内のdlタグに対するスタイル
 * 
 * @author ishizaka
 * @version 2025/11/26
 */
.newsDetail__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  gap: 4px;
}

.newsDetail__date {
  font-size: 100%;
  color: #8C8C8C;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) {
  .newsDetail__date {
    font-size: 87.5%;
  }
}

.newsDetail__text {
  font-size: 114.28%;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 1024px) {
  .newsDetail__text {
    font-size: 112.5%;
  }
}

/*
---------------------------------------------
INDUSTRIESのセクションに対するスタイル
こちらはトップページで使用します。
---------------------------------------------
*/
/**
 * 各リンクのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.industriesList {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .industriesList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 24px;
  }
}

/**
 * aタグのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.industriesList__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .industriesList__link {
    gap: 16px;
  }
}
.industriesList__link img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .industriesList__link img {
    max-width: 488px;
  }
}
@media (any-hover: hover) {
  .industriesList__link:hover .ctaList__arrow span:nth-of-type(1) {
    left: 200%;
  }
  .industriesList__link:hover .ctaList__arrow span:nth-of-type(2) {
    left: 27%;
    opacity: 1;
  }
}

/**
 * テキストとアイコンのコンテンツ部分のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.industriesList__linkContent {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
}

/**
 * テキストのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.industriesList__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 25.2px */
}
@media screen and (min-width: 1024px) {
  .industriesList__text {
    line-height: 140%;
  }
}

/*
---------------------------------------------
GXのセクションに対するスタイル
こちらはトップページで使用します。
---------------------------------------------
*/
/**
 * 見出しのスタイル(背景黒）
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.gx__header {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
}
@media screen and (min-width: 1024px) {
  .gx__header {
    font-size: 40px;
  }
}

.gx__header__catch {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 34px */
}
@media screen and (min-width: 1024px) {
  .gx__header__catch {
    font-size: 23px;
    line-height: 150%;
  }
}

/**
 * 本文のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.gx__exp {
  width: 100%;
  font-size: 114.28%;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
}
@media screen and (min-width: 1024px) {
  .gx__exp {
    font-size: 112.5%;
    text-align: left;
  }
}

/**
 * benefitセクションの個別レイアウト
 * 
 * @author ishizaka
 * @version 2025/12/17
 */
.benefitOuter {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background-color: #fff;
}

/*
---------------------------------------------
benefitのセクションに対するスタイル
こちらはトップページで使用します。
---------------------------------------------
*/
@media screen and (min-width: 768px) {
  .section__headGroup.benefitGroup {
    align-items: center;
  }
}

.section__sub.benefitSub {
  font-size: 114.28%;
  font-weight: 400;
  padding-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .section__sub.benefitSub {
    text-align: center;
    line-height: 170%;
    font-size: 112.5%;
    font-weight: 400;
    padding-bottom: 0px;
  }
}

.section.benefit .section__innerBox {
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .section.benefit .section__innerBox {
    align-items: center;
  }
}

/**
 * benefitセクション全体のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.benefitList {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .benefitList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefitList__item {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .benefitList__item {
    height: 100%;
  }
}

/**
 * aタグのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.benefitList__link {
  width: 100%;
  height: 100%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #2EA7E0;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .benefitList__link {
    height: 388px;
    gap: 24px;
  }
}
.benefitList__link img {
  width: 185px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .benefitList__link img {
    width: 300px;
    height: 120px;
  }
}
@media (any-hover: hover) {
  .benefitList__link:hover .ctaList__arrow span:nth-of-type(1) {
    left: 200%;
  }
  .benefitList__link:hover .ctaList__arrow span:nth-of-type(2) {
    left: 27%;
    opacity: 1;
  }
}

/**
 * aタグ内のinnerのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.bbenefitList__link__inner {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  order: 1;
}

/**
 * aタグ内の説明文のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.benefitList__link__head {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
}

/**
 * h3タグのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.benefitList__link__title {
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

/**
 * 説明テキスト
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.benefitList__link__exp {
  text-align: center;
  font-size: 114.58%;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (min-width: 1024px) {
  .benefitList__link__exp {
    font-size: 112.5%;
  }
}

/**
 * 一覧ページへのリンクボタン追加
 * 
 * @author ishizaka
 * @version 2025/12/17
 */
.ctaOuter {
  width: 100%;
  background-color: #2EA7E0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

/**
 * 大札新ロゴ部分のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.hgroup {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .hgroup {
    width: fit-content;
  }
}

/**
 * ロゴのスタイル
 * 
 * @author ishizaka
 * @version 2025/12/01
 */
.daisasshin__header {
  width: 288px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .daisasshin__header {
    width: 472px;
    height: auto;
  }
}
.daisasshin__header img {
  width: 100%;
}

/**
 * キャッチコピーのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.daisasshin__exp {
  color: #fff;
  font-size: 128.57%;
  font-style: normal;
  font-weight: 500;
  line-height: 220%; /* 39.6px */
}
@media screen and (min-width: 1024px) {
  .daisasshin__exp {
    font-size: 118%;
  }
}
@media screen and (min-width: 1280px) {
  .daisasshin__exp {
    font-size: 125%;
  }
}

/**
 * 大札新のキャッチリストのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.daisasshin__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .daisasshin__list {
    position: relative;
    min-height: 580px;
    max-height: 580px;
    max-width: 1200px;
    width: 100%;
  }
}

/**
 * リストアイテムのスタイル
 * このリストアイテムはPCサイズの時にsvgを表示させるようにする
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.daisasshin__item {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .daisasshin__item {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.daisasshin__item > span {
  width: 100%;
  padding: 16px 24px;
  display: grid;
  place-content: center;
  border: 1px solid #FFF;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media screen and (min-width: 1280px) {
  .daisasshin__item > span {
    width: fit-content;
    padding: 24px 32px;
  }
}
.daisasshin__item .connector {
  display: none;
}
@media screen and (min-width: 1280px) {
  .daisasshin__item .connector {
    display: block;
  }
}

/**
 * 各リストアイテムの配置
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
@media screen and (min-width: 1280px) {
  .daisasshin__item:nth-of-type(1) {
    position: absolute;
    top: 62%;
    left: -17px;
  }
}

@media screen and (min-width: 1280px) {
  .daisasshin__item:nth-of-type(2) {
    position: absolute;
    top: 30.8%;
    left: 11.6%;
  }
}

@media screen and (min-width: 1280px) {
  .daisasshin__item:nth-of-type(3) {
    position: absolute;
    top: 57.6%;
    left: 31.6%;
  }
}

@media screen and (min-width: 1280px) {
  .daisasshin__item:nth-of-type(4) {
    position: absolute;
    top: 22%;
    left: 45.8%;
  }
}

@media screen and (min-width: 1280px) {
  .daisasshin__item:nth-of-type(5) {
    position: absolute;
    top: 53.6%;
    left: 67.6%;
  }
}

/**
 * セクションの見出し文字の本文
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.subsidy__exp {
  font-size: 114.28%;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 27.2px */
}
@media screen and (min-width: 1024px) {
  .subsidy__exp {
    font-size: 112.5%;
    line-height: 170%;
  }
}

/**
 * 補助金のリストのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.subsidy__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .subsidy__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

.subsidy__item {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .subsidy__item {
    height: 175px;
  }
}

/**
 * 補助金リストのaタグのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.subsidy__link {
  width: 100%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .subsidy__link {
    padding: 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
}
@media (any-hover: hover) {
  .subsidy__link:hover .ctaList__arrow span:nth-of-type(1) {
    left: 200%;
  }
  .subsidy__link:hover .ctaList__arrow span:nth-of-type(2) {
    left: 27%;
    opacity: 1;
  }
}

/**
 * aタグ内の見出しと本文のレイアウト
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.subsidy__itemText {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}

.subsidy__itemTitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .subsidy__itemTitle {
    font-size: 20px;
  }
}

/**
 * キャッチコピーのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.subsidy__itemExp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.subsidy__itemExp span {
  display: flex;
  align-items: end;
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
}
.subsidy__itemExp .subsidy__large {
  font-size: 43px;
  line-height: 122%;
}
.subsidy__itemExp {
  /**
   * after要素でアイコンを追加する。
   * 
   * @author ishizaka
   * @version 2025/11/25
   */
}
.subsidy__itemExp::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 32px;
  margin-left: 8px;
  background-image: url("../../img/base/icon-css-right-arrow-blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .subsidy__itemExp::after {
    content: none;
  }
}

/*
---------------------------------------------
INTERVIEWのセクションに対するスタイル
こちらはトップページで使用します。
---------------------------------------------
*/
/**
 * スライダーのはみ出しを制御
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper {
  width: 100%;
  max-width: 1200px;
  overflow: visible;
}
@media screen and (min-width: 1024px) {
  .swiper {
    padding: 0 4.26%;
  }
}
@media screen and (min-width: 1280px) {
  .swiper {
    padding: 0;
  }
}

/**
 * スライダーアイテムのスタイル
 * gapはswiper側で指定する
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.interview__list {
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .interview__list {
    margin-bottom: 56px;
  }
}

/**
 * swiper-silde
 * 
 * @author ishizaka
 * @version 2025/12/02
 */
.swiper-slide {
  width: 270px !important;
}

/**
 * リンクのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.interview__link {
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
@media (any-hover: hover) {
  .interview__link:hover .ctaList__arrow span:nth-of-type(1) {
    left: 200%;
  }
  .interview__link:hover .ctaList__arrow span:nth-of-type(2) {
    left: 30%;
    opacity: 1;
  }
}

.interview__img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  border: 1px solid #C3C3C3;
}

/**
 * テキストアイコンのレイアウトスタイル
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.interview__link__box {
  width: 100%;
  height: 51px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/**
 * 社名のテキストスタイル
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.interview__link__name {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.1em;
}

/**
 * swiperナビゲーションのリセット
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper-pagination {
  position: static;
  width: fit-content !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
}

/**
 * swiperナビゲーション
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper__nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .swiper__nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 32px;
    padding-right: 100px;
  }
}

/**
 * ページネーションを包括するコンテナーのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.pagination__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media screen and (min-width: 1024px) {
  .pagination__container {
    width: fit-content;
  }
}

/**
 * ページネーションのボタンスタイル
 * アクティブになっているときに横幅を変える
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper-pagination-bullet {
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .swiper-pagination-bullet:hover {
    opacity: 0.6;
  }
}

.swiper-pagination-bullet-active {
  width: 56px;
  height: 8px;
  border-radius: 16px;
  transition: width 0.3s;
  background-color: #0A2B6F;
  pointer-events: none;
}

/**
 * 次へ前へボタンのレイアウト
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper__buttonList {
  width: 104px;
  height: 48px;
  display: flex;
  align-items: center;
  position: static;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .swiper__buttonList {
    width: 88px;
    height: 40px;
  }
}

/**
 * 次へ前へ、共通
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  margin: 0 !important;
}
.swiper-button-next > svg,
.swiper-button-prev > svg {
  display: none;
}

/**
 * 前へボタンのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.swiper-button-prev.swiper-button-disabled::before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  background-image: url("../../img/base/icon-arrow-slider-prev-limit.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .swiper-button-prev.swiper-button-disabled::before {
    width: 40px;
    height: 40px;
  }
}

.swiper-button-prev {
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .swiper-button-prev:hover {
    opacity: 0.6;
  }
}
.swiper-button-prev::before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  background-image: url("../../img/base/icon-arrow-slider-prev.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .swiper-button-prev::before {
    width: 40px;
    height: 40px;
  }
}

/**
 * 次へボタンのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/28
 */
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.swiper-button-next.swiper-button-disabled::before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  background-image: url("../../img/base/icon-arrow-slider-next-limit.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .swiper-button-next.swiper-button-disabled::before {
    width: 40px;
    height: 40px;
  }
}

.swiper-button-next {
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .swiper-button-next:hover {
    opacity: 0.6;
  }
}
.swiper-button-next::before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  background-image: url("../../img/base/icon-arrow-slider-next.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .swiper-button-next::before {
    width: 40px;
    height: 40px;
  }
}

/**
 * トップページだけコンテナーのマージンを削除
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.base-page__contents {
  margin-top: 0;
}
@media screen and (min-width: 1280px) {
  .base-page__contents {
    margin-top: 0;
  }
}/*# sourceMappingURL=home.css.map */