@charset "UTF-8";
/*
---------------------------------------------
style.scssはサイト構成に必要な最低デザインのみを読み込むこと。
---------------------------------------------
*/
/*
---------------------------------------------
ベースとなるcssファイルをまとめて読み込む設定
・リセットcss
・mixinの設定
---------------------------------------------
*/
/* reset.css */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
main,
header,
section,
article,
aside,
footer,
dl,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

/* list style none */
ul,
ol,
li {
  list-style: none;
}

/* image reset */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

/*
---------------------------------------------
button
---------------------------------------------
*/
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/*
---------------------------------------------
aタグに対するリセット
---------------------------------------------
*/
a {
  text-decoration: none;
}

/* input style reset */
input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
---------------------------------------------
事前に読み込むscssファイル
---------------------------------------------
*/
/*
---------------------------------------------
色設定など、外部ファイル化できる設定値をここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
flexの設定
---------------------------------------------
*/
/*
---------------------------------------------
ブレイクポイントを指定
---------------------------------------------
*/
/*
---------------------------------------------
各要素の表示/非表示を操作する設定
---------------------------------------------
*/
/*
---------------------------------------------
hoverするときのみ設定するメディアクエリ
---------------------------------------------
*/
/*
---------------------------------------------
グラデーション設定を入れる場合はここに記述する
---------------------------------------------
*/
/*
---------------------------------------------
テキストブランクの設定が必要であればここに記述する
※テキスト自体を1行で表示させつつ、SP版の時に横スクロールが発生するようなデザインの時に使用する
---------------------------------------------
*/
/*
---------------------------------------------
基本的なサイトレイアウトを構成するcssを読み込むファイルです。
---------------------------------------------
*/
/**
 * header要素のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header {
  width: 100%;
  height: 80px;
  padding: 0 4.26%;
  position: fixed;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.85);
}
.header.is-open {
  background-color: #fff;
  transform: translateY(0);
}
.header.is-hidden:not(.is-open) {
  transform: translateY(-100%);
}
@media screen and (min-width: 1280px) {
  .header {
    height: auto;
  }
}

/**
 * header inner
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__inner {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1280px) {
  .header__inner {
    gap: 40px;
    justify-content: stretch;
  }
}

/**
 * ロゴリンクのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__logo__link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .header__logo__link {
    width: 92px;
  }
}
.header__logo__link::after {
  content: "企業進出総合ナビ";
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1280px) {
  .header__logo__link::after {
    content: none;
  }
}

/**
 * ロゴのサイズ
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__logo__img {
  width: 72px;
  height: 48px;
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .header__logo__img {
    width: 92.106px;
    height: 78px;
  }
}

/**
 * ナビゲーションのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__nav {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding: 0 4.26% 40px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  gap: 32px;
  top: 80px;
  left: 200%;
  transition: left 0.3s;
  background-color: #fff;
}
.header__nav.is-open {
  left: 0;
}
@media screen and (min-width: 1280px) {
  .header__nav {
    position: static;
    padding: 0;
    flex-direction: column-reverse;
    height: auto;
    background: none;
    gap: 0;
  }
}

/**
 * グローバルナビゲーションのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 1280px) {
  .header__list {
    flex-direction: row;
    border-top: 1px solid #C3C3C3;
    padding: 8px 0;
  }
}

.header__listItem {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .header__listItem {
    width: auto;
  }
}
.header__listItem {
  /**
  * グロナビのリンクスタイル aタグ
  * 
  * @author ishizaka
  * @version 2025/11/20
  */
}
.header__listItem a {
  display: flex;
  width: 100%;
  padding: 16px 10px 16px 8px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #C3C3C3;
  transition: opacity 0.7s;
  color: #333333;
  font-size: 112.5%;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 30.6px */
}
@media screen and (min-width: 1280px) {
  .header__listItem a {
    padding: 8px 16px;
    border-bottom: none;
  }
}
.header__listItem a::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../img/base/icon-arrow-right-light-blue.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1280px) {
  .header__listItem a::after {
    content: none;
  }
}

/**
 * ナビゲーションの下の部分
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__nav__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1280px) {
  .header__nav__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
  }
}

/**
 * 文字と拡大縮小のインタラクションを包括するdiv
 * SPの時は要素として使わない
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__nav__inner__list,
.header__box {
  display: contents;
}

@media screen and (min-width: 1280px) {
  .header__nav__inner__list {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .header__box {
    order: 2;
    width: auto;
    display: flex;
    align-items: center;
    gap: 27px;
  }
}

/**
 * 電話の部分
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__tel {
  order: 1;
}
@media screen and (min-width: 1280px) {
  .header__tel {
    width: fit-content;
    display: flex;
    align-items: end;
    gap: 5px;
  }
  .header__tel::before {
    content: "";
    display: block;
    width: 37px;
    height: 32px;
    background-image: url("../img/base/icon-phone-gray.png");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .header__tel::before {
    background-size: cover;
    height: 37px;
  }
}

/**
 * 札幌市経済観光局
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__tel__exp {
  color: #333333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
}
@media screen and (min-width: 1280px) {
  .header__tel__exp {
    font-size: 14px;
    line-height: 150%; /* 21px */
  }
}

/**
 * SPサイズの電話部分
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__tel__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .header__tel__inner {
    width: fit-content;
    align-items: stretch;
  }
}

/**
 * SP版の電話アイコン追加用
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__tel__outer {
  width: fit-content;
  display: flex;
  align-items: end;
  gap: 8px;
}
.header__tel__outer::before {
  content: "";
  display: block;
  width: 37px;
  height: 37px;
  background-image: url("../img/base/icon-phone-gray.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1280px) {
  .header__tel__outer::before {
    content: none;
  }
}

.header__tel__link {
  text-decoration: none;
  color: #333333;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1280px) {
  .header__tel__link {
    font-size: 24px;
    line-height: normal;
    letter-spacing: normal;
  }
}

/**
 * 文字の拡大・縮小スタイル指定
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.font-lang {
  order: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 1280px) {
  .font-lang {
    width: auto;
  }
}

/**
 * 文字を変化するボタン
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.menu-font-list {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 9px 19px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid #C3C3C3;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
  color: #333333;
  font-family: "Noto Sans JP";
  font-size: 125%;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 34px */
}
@media (any-hover: hover) {
  .menu-font-list:hover {
    background-color: #333333;
    color: #fff;
  }
}

/**
 * 言語切り替えのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.language {
  order: 4;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .language {
    min-height: auto;
    width: auto;
  }
}

/**
 * 言語切り替えボタン（ここを押すとプルダウンでリンクが表示）
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.languageBtn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #333333;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 34px */
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .languageBtn:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1280px) {
  .languageBtn {
    width: 128px;
  }
}
.languageBtn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/base/icon-language-gray.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}

/**
 * 多言語ページ用のリンク
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.menu-lang {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
  list-style: none;
  margin: 0;
  min-width: 120px;
  z-index: 10;
  margin-bottom: 90px;
}
@media screen and (min-width: 1280px) {
  .menu-lang {
    position: absolute;
    margin-bottom: 0;
    top: 100%;
  }
}
.menu-lang.is-active {
  display: flex;
  flex-direction: column;
  height: 90px;
  overflow: auto;
}
@media screen and (min-width: 1280px) {
  .menu-lang.is-active {
    width: 8vw;
  }
}
.menu-lang .menu-lang-list a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}
.menu-lang .menu-lang-list a:hover {
  background-color: #f5f5f5;
}

/**
 * CTAボタンのスタイル
 * ここはまとめて指定する
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
.header__cta {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .header__cta {
    flex-direction: row;
    gap: 8px;
  }
}
.header__cta li {
  width: 100%;
  max-width: 343px;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .header__cta li {
    max-width: 216px;
    width: 216px;
  }
}
.header__cta a {
  width: 100%;
  display: flex;
  padding: 6px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 100px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  /* 32.4px */
  letter-spacing: 0.01em;
}
.header__cta li:nth-of-type(1) a {
  background-color: #0A2B6F;
  border: 1px solid #0A2B6F;
}
@media (any-hover: hover) {
  .header__cta li:nth-of-type(1) a:hover {
    background-color: #fff;
    color: #0A2B6F;
    opacity: 1 !important;
  }
}
.header__cta li:nth-of-type(2) a {
  background-color: #2EA7E0;
  border: 1px solid #2EA7E0;
}
@media (any-hover: hover) {
  .header__cta li:nth-of-type(2) a:hover {
    background-color: #fff;
    color: #2EA7E0;
    opacity: 1 !important;
  }
}

/**
 * ハンバーガーメニュー
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
/**
	* ハンバーガーメニューのスタイル
	* 
	* @author ishizaka
	* @version 2025/09/15
	*/
.humberger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 1280px) {
  .humberger {
    display: none;
  }
}

/**
	* ハンバーガーの線のスタイル
	* 
	* @author ishizaka
	* @version 2025/09/15
	*/
.humberger__line {
  width: 32px;
  height: 2px;
  background-color: #2EA7E0;
  border-radius: 8px;
  transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/**
	* is-openが付与された場合のラインのスタイル
	* 
	* @author ishizaka
	* @version 2025/09/17
	*/
.humberger.is-open .humberger__line:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}
.humberger.is-open .humberger__line:nth-of-type(2) {
  transform: translateY(-6px) rotate(-45deg);
}

/*
 * [.mod-keyvisual2__textbox]
 * 下層ページでこの要素が飛び出してくる現象があるのでリセット
---------------------------------------------
*/
.mod-keyvisual2__textbox {
  z-index: 1 !important;
}

/* Noto sans JP */
@font-face {
  font-family: "Noto sans JP";
  src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}
/* Lora */
@font-face {
  font-family: "Noto sans";
  src: url("../fonts/NotoSans-VariableFont_wdth,wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}
/**
 * 全体のレイアウト
 * 
 * @author ishizaka
 * @version 2025/11/20
 */
/*
---------------------------------------------
ハンバーガーメニューがオープンしているときはスクロールを禁止
---------------------------------------------
*/
body.is-noscroll {
  overflow: hidden;
}

/**
 * mainを囲うdivタグのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.base-page__contents {
  width: 100%;
  color: #333333;
  margin-top: 80px;
  font-family: "Noto sans JP", sans-serif;
}
@media screen and (min-width: 1280px) {
  .base-page__contents {
    margin-top: 158px;
  }
}

.noto {
  font-family: "Noto sans", sans-serif;
}

/**
 * section内の最初のdivに対するスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.section__inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/**
 * section要素のスタイル（共通にできそうな部分）
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.section.news {
  width: 100%;
  padding: 40px 4.26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .section.news {
    padding: 100px 4.26%;
  }
}
.section.news .section__inner {
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .section.news .section__inner {
    gap: 24px;
  }
}
.section.news .section__innerBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .section.news .section__innerBox {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section.news .sectdion__head {
  width: 100%;
}

.section.industries {
  width: 100%;
  padding: 40px 4.26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  background-color: #0A2B6F;
}
@media screen and (min-width: 1024px) {
  .section.industries {
    padding: 100px 4.26%;
  }
}
.section.industries .section__inner {
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .section.industries .section__inner {
    gap: 56px;
  }
}
.section.industries .section__innerBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

.section.gx {
  width: 100%;
  padding: 40px 4.26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background-image: url("../img/renewal-home/gx_section_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .section.gx {
    padding: 100px 4.26%;
  }
}
.section.gx .section__inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.section.gx .section__innerBox {
  width: 100%;
  padding: 24px 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section.gx .section__innerBox:nth-of-type(1) {
  background-color: #2C2C2C;
  color: #fff;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .section.gx .section__innerBox:nth-of-type(1) {
    gap: 8px;
  }
}
.section.gx .section__innerBox:nth-of-type(2) {
  background-color: #fff;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .section.gx .section__innerBox:nth-of-type(2) {
    padding: 16px;
  }
}

.section.benefit {
  width: 100%;
  padding: 56px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  background-image: url("../img/renewal-home/benefit_section_bg.png");
  background-repeat: repeat;
}
@media screen and (min-width: 1024px) {
  .section.benefit {
    padding: 100px 0;
  }
}
.section.benefit .section__inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .section.benefit .section__inner {
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .section.benefit .section__inner {
    gap: 56px;
  }
}
.section.benefit .section__innerBox {
  width: 100%;
  max-width: 1000px;
  padding: 0 4.26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .section.benefit .section__innerBox {
    padding: 0;
    gap: 24px;
  }
}

.section.daisasshin {
  width: 100%;
  padding: 40px 4.26% 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background-image: url("../img/renewal-home/section_daisasshin_bg_sp.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .section.daisasshin {
    background-image: url("../img/renewal-home/section_daisasshin_bg_pc.png");
  }
}
@media screen and (min-width: 1024px) {
  .section.daisasshin {
    min-height: 1134px;
    padding: 119px 4.26% 100px;
    background-position: bottom center;
  }
}
.section.daisasshin .section__inner {
  gap: 16px;
  max-width: 1200px;
}
@media screen and (min-width: 1280px) {
  .section.daisasshin .section__inner {
    gap: 0;
  }
}
.section.daisasshin {
  /*
  ---------------------------------------------
  大札新のセクションに対するスタイル
  こちらはトップページで使用します。
  ---------------------------------------------
  */
  /**
  * section__innerBoxのレイアウトスタイル
  * 
  * @author ishizaka
  * @version 2025/11/27
  */
}
.section.daisasshin .section__innerBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .section.daisasshin .section__innerBox {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }
}

.section__outer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section__outer::after {
  content: "";
  width: 100%;
  height: 56px;
  background-color: #2971E3;
}
@media screen and (min-width: 1024px) {
  .section__outer::after {
    height: 94px;
  }
}

.section.subsidy {
  width: 100%;
  padding: 40px 4.26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F7F7F7;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .section.subsidy {
    padding: 100px 4.26%;
  }
}
.section.subsidy .section__inner {
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .section.subsidy .section__inner {
    gap: 56px;
  }
}
.section.subsidy .section__innerBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .section.subsidy .section__innerBox {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section.subsidy .section__innerBox .sectdion__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section.subsidy {
  /*
  ---------------------------------------------
  SUBSIDYのセクションに対するスタイル
  こちらはトップページで使用します。
  ---------------------------------------------
  */
  /**
  * セクション見出しのレイアウト
  * 
  * @author ishizaka
  * @version 2025/11/27
  */
}
.section.subsidy .sectdion__head {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .section.subsidy .sectdion__head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}

.section.interview {
  width: 100%;
  padding: 40px 4.26%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  gap: 32px;
  background-image: url("../img/renewal-home/benefit_section_bg.png");
  background-repeat: repeat;
}
@media screen and (min-width: 1024px) {
  .section.interview {
    padding: 100px 0;
    gap: 56px;
  }
}
.section.interview .section__inner {
  gap: 24px;
}
.section.interview .section__innerBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .section.interview .section__innerBox {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section.interview .sectdion__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .section.interview .sectdion__head {
    gap: 24px;
  }
}

/**
 * 見出しのhgroupのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.section__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

/**
 * セクションの見出しスタイル
 * _homeBenefit.scssに個別のスタイルがあります。
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.section__headGroup {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .section__headGroup {
    width: fit-content;
    flex-direction: row;
    justify-content: stretch;
    align-items: end;
    gap: 16px;
  }
}

.section__headGroup.interview {
  width: max-content;
  align-items: start;
}
@media screen and (min-width: 1024px) {
  .section__headGroup.interview {
    align-items: end;
  }
}

.section__h2 {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 56px */
}
@media screen and (min-width: 1024px) {
  .section__h2 {
    font-size: 80px;
  }
}

/**
 * benefitセクションのキャッチコピー
 * 
 * @author ishizaka
 * @version 2025/11/27
 */
.section__h2--chatch {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .section__h2--chatch {
    flex-direction: row;
    gap: 0;
  }
}

.section__h2__inner {
  color: #0A2B6F;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .section__h2__inner {
    font-size: 40px;
    gap: 8px;
  }
}
.section__h2__inner > span {
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background-color: #0A2B6F;
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
}
@media screen and (min-width: 1024px) {
  .section__h2__inner > span {
    font-size: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .section__h2__inner > span.benefitCount {
    width: 96px;
    justify-content: center;
  }
}

.section__sub {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 20px */
}
@media screen and (min-width: 1024px) {
  .section__sub {
    font-size: 20px;
    line-height: 100%;
    padding-bottom: 10px;
  }
}

/**
	* 改行設定
	* 
	* @author ishizaka
	* @version 2025/09/15
	*/
.sp__lineBreak {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp__lineBreak {
    display: none;
  }
}

.tablet__lineBreak {
  display: none;
}
@media screen and (min-width: 768px) {
  .tablet__lineBreak {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .tablet__lineBreak {
    display: none;
  }
}

.pc__lineBreak {
  display: none;
}
@media screen and (min-width: 1024px) {
  .pc__lineBreak {
    display: block;
  }
}

/**
	* 表示非表示設定
	* 
	* @author ishizaka
	* @version 2025/11/25
	*/
.sp__view {
  display: flex !important;
}
@media screen and (min-width: 768px) {
  .sp__view {
    display: none !important;
  }
}

.tablet__view {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .tablet__view {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .tablet__view {
    display: none !important;
  }
}

.pc__view {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .pc__view {
    display: flex !important;
  }
}

/**
 * footerのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/**
 * footer__innnerの順番
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footer__inner {
  width: 100%;
}
.footer__inner:nth-of-type(1) {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.footer__inner:nth-of-type(2) {
  order: 1;
}
.footer__inner:nth-of-type(3) {
  order: 3;
}

/**
 * お問い合わせ先の情報レイアウト
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footerCta,
.footerCta__inner {
  width: 100%;
  max-width: 1000px;
  padding: 40px 4.26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .footerCta,
  .footerCta__inner {
    padding: 56px 0;
  }
}

/**
 * フッターのロゴスタイル
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footerCta__logo {
  width: auto;
  height: auto;
}

.footerCta__link {
  width: auto;
  height: auto;
}
.footerCta__link img {
  width: 120px;
  height: 102px;
}
@media screen and (min-width: 1024px) {
  .footerCta__link img {
    width: 174px;
    height: 147px;
  }
}

/**
 * お問い合わせとサイトマップのレイアウト
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footerCta__inner {
  padding: 0;
  gap: 40px;
}

.ctaList {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .ctaList {
    flex-direction: row;
    justify-content: center;
  }
}

.ctaList__item {
  width: 100%;
  max-width: 343px;
}
@media screen and (min-width: 768px) {
  .ctaList__item {
    max-width: 280px;
  }
}

/**
 * サイトマップのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footerNav {
  width: 100%;
  max-width: 343px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.footerNav::after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: #000;
}
.footerNav li {
  width: calc(50% - 8px);
  height: auto;
  display: grid;
  place-content: center;
}
.footerNav li:nth-of-type(1) {
  order: 0;
}
.footerNav li:nth-of-type(2) {
  order: 2;
}

.footerNav__link {
  color: #333333;
  text-align: center;
  /* m */
  font-size: 112.5%;
  font-weight: 400;
  line-height: 170%;
  /* 30.6px */
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .footerNav__link:hover {
    opacity: 0.6;
  }
}

/**
 * お問い合わせ先の情報
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footerContact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footerContact {
    flex-direction: row;
    align-items: stretch;
  }
}

/**
 * お問い合わせ先のリスト表示
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footerContact__item {
  width: 100%;
  padding: 40px 4.26%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footerContact__item {
    width: 50%;
    padding: 50px 4.26% 50px;
  }
}
.footerContact__item:nth-of-type(1) {
  background-color: #2EA7E0;
}
.footerContact__item:nth-of-type(2) {
  background-color: #0A2B6F;
}

/**
 * お問い合わせ情報内divのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.contactArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contactArea {
    max-width: 437px;
    gap: 28px;
  }
}

.contactArea__exp {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 34px */
}

.contactArea__exp--small {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 24px */
}

.contactArea__tel {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .contactArea__tel {
    flex-direction: row;
  }
}

.contactArea__tel__img {
  width: 46px;
  height: 46px;
}

/**
 * TELと電話番号のスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.contactArea__tel__inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 8px;
}
.contactArea__tel__inner span {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.03em;
}
.contactArea__tel__inner span:nth-of-type(2) {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.03em;
}

/**
 * お問い合わせ先のメールアドレスなどのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.contactArea__mail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .contactArea__mail {
    gap: 8px;
  }
}
.contactArea__mail li {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 34px */
}

.contactArea__mail__link {
  color: #fff;
}

/**
 * フッターバナーを囲う要素
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
.footerBanner__outer {
  width: 100%;
  padding: 40px 4.26%;
  background-color: #F7F7F7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/**
 * フッターバナー領域
 * SPは縦、タブレットサイズは2カラム、PCサイズは4カラム
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.footerBanner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footerBanner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
  }
}
@media screen and (min-width: 1024px) {
  .footerBanner {
    padding: 0 16px;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.footerBanner__item:nth-child(odd) {
  justify-self: end;
}
.footerBanner__item:nth-child(even) {
  justify-self: start;
}

/**
 * コピーライトのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.copyright {
  padding: 24px 0;
  background-color: #fff;
  display: grid;
  place-content: center;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

/**
 * floatingメニューの配置対応
 * 
 * @author ishizaka
 * @version 2025/12/24
 */
.floating {
  width: 68px;
  height: auto;
  position: fixed;
  bottom: 44px;
  right: 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .floating {
    width: 136px;
    height: auto;
  }
}
.floating.is-show {
  opacity: 1;
}

/**
 * 大札新へのリンク
 * 
 * @author ishizaka
 * @version 2025/12/24
 */
.floating__link {
  width: 68px;
  height: 68px;
  padding: 15.25px 4px 24.25px;
  border: 2px solid #2EA7E0;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .floating__link {
    width: 136px;
    height: 136px;
    padding: 30.5px 8px 48.5px;
  }
}
.floating__link {
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .floating__link:hover {
    opacity: 0.6;
  }
}
.floating__link img {
  width: 100%;
}

/**
 * ページトップへ戻るボタンの配置
 * 
 * @author ishizaka
 * @version 2025/12/12
 */
.pageTop {
  width: 48px;
  height: 48px;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .pageTop {
    width: 64px;
    height: 64px;
    bottom: 30px;
    right: 24px;
  }
}
.pageTop {
  transition: opacity 0.7s;
}
@media (any-hover: hover) {
  .pageTop:hover {
    opacity: 0.6;
  }
}

/**
 * 基本的にCTAボタンの動きは一緒なので、ボタンファイルとしてまとめます。
 * aタグのスタイルのみです。
 * ファイル：ctaButton.scss
 * 
 * @author ishizaka
 */
.ctaList__link {
  width: 100%;
  max-width: 343px;
  display: flex;
  height: 56px;
  padding: 12px 16px 12px 32px;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #0A2B6F;
  background-color: #fff;
  color: #0A2B6F;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1024px) {
  .ctaList__link {
    max-width: 224px;
    min-height: 68px;
    font-size: 16px;
  }
}
.ctaList__link {
  /**
   * 全体の色変更（ライトブルー）
   * 
   * @author ishizaka
   * @version 2025/12/17
   */
}
.ctaList__link.lightblue {
  color: #2EA7E0;
  border: 1px solid #2EA7E0;
}
.ctaList__link {
  /**
   * フッターのボタンに対するスタイル
   * 
   * @author ishizaka
   * @version 2025/12/01
   */
}
@media screen and (min-width: 1024px) {
  .ctaList__link.ctaList__link--footer {
    max-width: 280px;
    min-height: 68px;
  }
}
@media (any-hover: hover) {
  .ctaList__link:hover .ctaList__arrow span:nth-of-type(1) {
    left: 200%;
  }
  .ctaList__link:hover .ctaList__arrow span:nth-of-type(2) {
    left: 27%;
    opacity: 1;
  }
}

/**
 * 詳しく見るのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/25
 */
/**
 * アイコンのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.ctaList__arrow {
  width: 62px;
  height: 32px;
  padding: 8px 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 100px;
  background-color: #0A2B6F;
  position: relative;
  overflow: hidden;
}

.ctaList__arrow.white {
  background-color: #fff;
  border: 1px solid #0A2B6F;
}

.ctaList__arrow.whiteLine {
  border: 1px solid #fff;
}

.ctaList__arrow.lightblue {
  background-color: #fff;
}

.ctaList__arrow.lightblue {
  background-color: #2EA7E0;
}

/**
 * アローアイコンのスタイル
 * 
 * @author ishizaka
 * @version 2025/11/21
 */
.ctaList__arrow span {
  position: absolute;
  display: flex;
}
.ctaList__arrow span:nth-of-type(1) {
  transition: left 0.3s;
}
.ctaList__arrow span:nth-of-type(2) {
  transition: left 0.3s;
  left: -100%;
  opacity: 0;
}

.rightPosition {
  justify-content: end;
}
@media screen and (max-width: 840px) {
  .rightPosition .mod-keyvisual2__image {
    background-size: cover !important;
    background-position: left;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 1620px) {
  .utalicaImg {
    background-size: contain;
  }
}

@media screen and (max-width: 840px) {
  .mod-keyvisual2__image {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 840px) {
  .nissho__image {
    background-size: cover;
    background-position: 45% 100%;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 1140px) {
  .mod-keyvisual2.mod-keyvisual2__sega .mod-keyvisual2__image.sega__image {
    background-size: cover;
    background-position: 60% 0;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 520px) {
  .mod-keyvisual2.mod-keyvisual2__sega .mod-keyvisual2__image.sega__image {
    background-size: cover;
    background-position: 60% 0;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 840px) {
  .mod-keyvisual2__image.bell24__image {
    background-size: cover;
    background-position: 45% 100%;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 460px) {
  .mod-keyvisual2__image.bell24__image {
    min-height: 200px;
  }
}

@media screen and (max-width: 840px) {
  .mod-keyvisual2__image.kddi__image {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 460px) {
  .mod-keyvisual2__image.kddi__image {
    min-height: 100px;
  }
}

@media screen and (max-width: 840px) {
  .mod-keyvisual2__image.techno__image {
    background-size: cover;
    background-position: 80% 0;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 500px) {
  .mod-keyvisual2__image.hokutou__image {
    background-position: 70% 0;
  }
}/*# sourceMappingURL=renewal.css.map */