@charset "utf-8";
/* =========================================================
   base.css
   2025 — 共通ベーススタイル + Utility拡張
   Structure:
     1. Reset
     2. Base Typography / Layout
     3. Responsive Adjustments
     4. Utility Classes
     5. Navi
     6. フッター, Navi
========================================================= */
/* =========================================================
   1. Reset
========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul /*[role="list"]*/ , ol /*[role="list"]*/ {
  list-style: none;
  padding: 0;
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #fff;
}
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
small {
  font-size: 0.875em;
}
/* =========================================================
   2. Base Typography / Layout
========================================================= */
html, body {
  overflow-x: hidden; /* 横スクロール防止 */
}
html {
  font-size: 125%; /* 1rem = 20px */
  /* rem換算メモ：
     0.6rem   = 12px
     0.7rem   = 14px
     0.8rem   = 16px
     0.9rem   = 18px
     1rem     = 20px
     1.2rem   = 24px
     1.3rem   = 26px
     1.5rem   = 30px
     1.6rem   = 32px
     2.4rem   = 48px
  */
}
@media (max-width: 767px) {
  html {
    font-size: 100%; /* SP: 16px */
  }
}
@media (max-width: 767px) {
  article p, article li {
    font-size: 0.875rem; /* 本文は14px（16px基準）に変更
       html {font-size: 87.5%;　にしたいけど見出しとか全部直す必要あり*/
  }
}
body {
  line-height: 1.6;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #222;
  -webkit-font-smoothing: antialiased;
}
.inner {
  max-width: 1200px; /* 1200px */
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1230px) {
  .inner {
    padding: 0;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.6rem;
  padding-bottom: 0.3em;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1.2em;
}
strong {
  font-weight: 700;
}
em {
  font-style: normal;
}
/*ul:not([role="list"]), ol:not([role="list"]) {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}
ul:not([role="list"]) li + li {
  margin-top: 0.3em;
}*/
table {
  width: 100%;
  margin-bottom: 1.5em;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.6em 0.8em;
  text-align: left;
}
th {
  background: #f7f7f7;
}
article section {
  padding: 8rem 0 6rem;
}
section:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  article section {
    padding: 4rem 0 3rem;
  }
}
/* =========================================================
   3. Responsive Adjustments
========================================================= */
/* タブレット（768px〜
@media (min-width: 768px) {
  html {
    font-size: 106.25%;
  } 
  .inner {
    max-width: 90%;
    padding: 0 2rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  article section {
    padding-block: 3.5rem;
  }
  p {
    margin-bottom: 1.5em;
  }
}） */
/* PC（1024px〜）
@media (min-width: 1024px) {
  html {
    font-size: 100%;
  }
  .inner {
    max-width: 62.5rem;
    padding: 0;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.9rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  article section {
    padding: 8rem 0 6rem;
  }
} */
/* 大画面（1280px〜）
@media (min-width: 1280px) {
  .inner {
    max-width: 1200px;
  }
  .inner-1000 {
    max-width: 1000px;
  }
  .inner-900 {
    max-width: 900px;
  }
} */
/* =========================================================
   4. Utility Classes
========================================================= */
/* ---------- Spacing scale ---------- */ :root {
  --space-0: 0;
  --space-1: 1rem; /* 20px */
  --space-2: 2rem; /* 40px */
  --space-3: 3rem; /* 60px */
  --space-4: 4rem; /* 80px */
  --space-5: 5rem; /* 100px */
}
/* Margin / Padding */
.u-m-0 {
  margin: var(--space-0) !important;
}
.u-m-1 {
  margin: var(--space-1) !important;
}
.u-m-2 {
  margin: var(--space-2) !important;
}
.u-m-3 {
  margin: var(--space-3) !important;
}
.u-m-4 {
  margin: var(--space-4) !important;
}
.u-m-5 {
  margin: var(--space-5) !important;
}
.u-mt-0 {
  margin-top: var(--space-0) !important;
}
.u-mt-1 {
  margin-top: var(--space-1) !important;
}
.u-mt-2 {
  margin-top: var(--space-2) !important;
}
.u-mt-3 {
  margin-top: var(--space-3) !important;
}
.u-mt-4 {
  margin-top: var(--space-4) !important;
}
.u-mt-5 {
  margin-top: var(--space-5) !important;
}
.u-mb-0 {
  margin-bottom: var(--space-0) !important;
}
.u-mb-1 {
  margin-bottom: var(--space-1) !important;
}
.u-mb-2 {
  margin-bottom: var(--space-2) !important;
}
.u-mb-3 {
  margin-bottom: var(--space-3) !important;
}
.u-mb-4 {
  margin-bottom: var(--space-4) !important;
}
.u-mb-5 {
  margin-bottom: var(--space-5) !important;
}
.u-p-0 {
  padding: var(--space-0) !important;
}
.u-p-1 {
  padding: var(--space-1) !important;
}
.u-p-2 {
  padding: var(--space-2) !important;
}
.u-p-3 {
  padding: var(--space-3) !important;
}
.u-p-4 {
  padding: var(--space-4) !important;
}
.u-p-5 {
  padding: var(--space-5) !important;
}
.u-pt-1 {
  padding-top: var(--space-1) !important;
}
.u-pt-2 {
  padding-top: var(--space-2) !important;
}
.u-pb-1 {
  padding-bottom: var(--space-1) !important;
}
.u-pb-2 {
  padding-bottom: var(--space-2) !important;
}
.u-pl-1 {
  padding-left: var(--space-1) !important;
}
.u-pl-2 {
  padding-left: var(--space-2) !important;
}
@media (max-width: 767px) {
  .u-mt-5 {
    margin-top: var(--space-3) !important;
  }
}
/* ---------- Text / Font ---------- */
.u-center {
  text-align: center !important;
}
.u-left {
  text-align: left !important;
}
.u-center-left /*中央寄せの左揃え(親を.u-centerにする)*/ {
  display: inline-block;
  text-align: left !important;
}
.u-right {
  text-align: right !important;
}
.u-bold {
  font-weight: 700 !important;
}
.u-normal {
  font-weight: 400 !important;
}
.u-light {
  font-weight: 300 !important;
}
.u-uppercase {
  text-transform: uppercase !important;
}
.u-lowercase {
  text-transform: lowercase !important;
}
.u-capitalize {
  text-transform: capitalize !important;
}
@media (max-width: 767px) {
  .u-center-sp {
    text-align: center !important;
  }
  .u-left-sp {
    text-align: left !important;
  }
  .u-right-sp {
    text-align: right !important;
  }
}
/* Font size scale (1rem = 20px) */
.u-fz-xxs {
  font-size: 0.6rem !important;
} /* 12px */
.u-fz-xs {
  font-size: 0.7rem !important;
} /* 14px */
.u-fz-s {
  font-size: 0.8rem !important;
} /* 16px */
.u-fz-sm {
  font-size: 0.9rem !important;
} /* 18px */
.u-fz-md {
  font-size: 1rem !important;
} /* 20px */
.u-fz-lm {
  font-size: 1.1rem !important;
} /* 22px */
.u-fz-lg {
  font-size: 1.2rem !important;
} /* 24px */
.u-fz-xl {
  font-size: 1.5rem !important;
} /* 30px */
.u-fz-xxl {
  font-size: 1.9rem !important;
} /* 38px */
@media (max-width: 767px) {
  /*必要に応じて追加*/
  .u-fz-lg {
    font-size: 1.0rem !important;
  }
  .u-fz-xl {
    font-size: 1.15rem !important;
  }
  .u-fz-xxl {
    font-size: 1.2rem !important;
  }
}
/* ---------- Display / Flex ---------- */
.u-block {
  display: block !important;
}
.u-inline {
  display: inline !important;
}
.u-inlineblock {
  display: inline-block !important;
}
.u-hidden {
  display: none !important;
}
.u-flex {
  display: flex !important;
}
.u-inlineflex {
  display: inline-flex !important;
}
.u-flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.u-flex-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.u-flex-col {
  display: flex !important;
  flex-direction: column !important;
}
.u-justify-start {
  justify-content: flex-start !important;
}
.u-justify-center {
  justify-content: center !important;
}
/* ---------- Width / Height ---------- */
.u-w-100 {
  width: 100% !important;
}
.u-h-100 {
  height: 100% !important;
}
.u-maxw-100 {
  max-width: 100% !important;
}
.u-maxh-100 {
  max-height: 100% !important;
}
/* ---------- Color Utilities ---------- */ :root {
  --gray-100: #F4F3F2;
  --gray-300: #ddd;
  --gray-600: #666;
  --gray-900: #222;
  --accent: #49A1D1;
}
.u-text-white {
  color: #fff !important;
}
.u-text-gray {
  color: var(--gray-600) !important;
}
.u-text-dark {
  color: var(--gray-900) !important;
}
.u-text-accent {
  color: var(--accent) !important;
}
.u-bg-light {
  background-color: var(--gray-100) !important;
}
.u-bg-dark {
  background-color: var(--gray-900) !important;
  color: #fff !important;
}
.u-bg-accent {
  background-color: var(--accent) !important;
  color: #fff !important;
}
.u-color-blue {
  color: #0f6bb9 !important;
}
.u-color-green {
  color: #00733D !important;
}
.u-color-green2 {
  color: #1EA43D !important;
}
.u-color-dts-red {
  color: #BD1940 !important;
}
/* ---------- Border / Radius / Shadow ---------- */
.u-border {
  border: 1px solid var(--gray-300) !important;
}
.u-border-none {
  border: none !important;
}
.u-rounded {
  border-radius: 0.25rem !important;
}
.u-rounded-lg {
  border-radius: 0.5rem !important;
}
.u-shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}
/* ---------- Visibility ---------- */
/* 視覚的には非表示、スクリーンリーダーには読ませる */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* ---------- Responsive Helpers ---------- */
@media (min-width: 768px) {
  .u-hide-pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-hide-sp {
    display: none !important;
  }
}
/* ---------- その他 ---------- */
/* 行頭番号や記号のぶら下がりを解消して左揃えにする */
.u-indent-fix {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.u-indent-fix1 {
  text-indent: -1em;
  padding-left: 1em;
}
.u-indent-fix15 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.u-indent-fix2 {
  text-indent: -2em;
  padding-left: 2em;
}
.u-indent-fix25 {
  text-indent: -2.3em;
  padding-left: 2.3em;
}
.u-indent-fix3 {
  text-indent: -3em;
  padding-left: 3em;
}
/**/
.u-nowrap {
  display: inline-block;
}
.u-nowrap2 {
  overflow-wrap: break-word;
  word-break: break-all;
}
/* =======================================
   ユーザーが「動きを減らす」設定をしている場合
   ======================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
}
/* =========================================================
   5. ヘッダー, Navi
========================================================= */
/* 共通 */
/* --- 固定ヘッダー --- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10000; /* メニューより上でもOK */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  margin-bottom: 0;
  padding-left: 30px;
  width: 290px;
}
.l-header__logo img {
  display: block;
}
/* --- PCナビ --- */
.p-global-nav {}
.p-global-nav__list {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.p-global-nav__list > li {
  padding: 5px 0.85em 0;
  height: 100%;
  position: relative;
  position: static; /*これで.p-global-nav__subが幅100に*/
}
.p-global-nav__list > li > a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 21px 0;
  display: block;
  border-bottom: #fff 5px solid;
}
.p-global-nav__list > li > a:hover, .p-global-nav__list > li > a.is-current {
  border-bottom: #1EA43D 5px solid;
  color: #1EA43D;
}
.p-global-nav__list > li > a[target="_blank"] {
  padding-right: 1.4em;
  background: url("/assets/img/icon-blank--black.svg") no-repeat center right / 0.9em;
}
.p-global-nav__list > li > a[target="_blank"]:hover {
  background-image: url("/assets/img/icon-blank--green.svg");
}
.p-global-nav__contact {
  margin-left: 1.5em;
  padding: 0 !important;
}
.p-global-nav__contact a {
  background: linear-gradient(90deg, #3bca83 0%, #1e8cc7 100%);
  padding: 10px !important;
  font-size: 1rem !important;
  border-bottom: none !important;
}
.p-global-nav__contact a span {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.71em 1.9em;
  display: block;
  color: #1EA43D;
  transition: 0.3s;
}
.p-global-nav__contact a:hover span {
  background: rgba(255, 255, 255, 0);
  color: #fff;
}
/* 下層メニュー */
.p-global-nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #F7F7F7;
  display: none;
  justify-content: center;
  gap: 3rem;
  padding: 1.85em 0 1.9em;
  border-top: #1EA43D 5px solid;
}
.p-global-nav__sub a:hover {
  color: #1FA63C;
  text-decoration: none;
}
.has-sub:hover .p-global-nav__sub {
  animation: slideDown 0.25s ease-out;
  display: block;
}
.p-global-nav__sub dl {
  display: block;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  max-width: 100%;
  margin: auto;
  font-weight: 700;
  padding: 0 1em;
}
.p-global-nav__sub dt {
  border-bottom: #CCCCCC 2px solid;
  font-size: 1rem;
  width: 100%;
  padding-bottom: 0.9em;
  margin-bottom: 0.5em;
}
.p-global-nav__sub dt a {
  display: flex;
  align-items: center;
}
.p-global-nav__sub dt a::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background: url(/assets/img/link_01.svg) no-repeat center / contain;
  margin-left: 1em;
}
.p-global-nav__sub dt a:hover::after {
  background: url(/assets/img/link_01--green.svg) no-repeat center / contain;
}
.p-global-nav__sub dd {
  font-size: 0.9rem;
  width: 33.33%;
  margin-top: 0.7em;
}
.p-global-nav__sub dd::before {
  content: "- ";
}
.p-global-nav__sub dd:hover::before {
  color: #1FA63C;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*------- Gnavi切り替えポイント（メニューが２行にならない幅）-------*/
@media (max-width: 1239px) {
  .p-global-nav {
    display: none !important;
  }
  .l-header__logo {
    padding-left: 10px;
    max-width: 64%;
    width: 190px;
  }
}
@media (min-width: 1240px) {
  .c-btn-menu {
    display: none !important;
  }
}
/* --- SPメニューボタン（小サイズ） --- */
.c-btn-menu {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #3bca83 0%, #1e8cc7 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 10000;
}
.c-btn-menu__bar {
  width: 24px;
  height: 1px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}
/* 開いたときのアニメーション */
.c-btn-menu.is-open .c-btn-menu__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}
.c-btn-menu.is-open .c-btn-menu__bar:nth-child(2) {
  opacity: 0;
}
.c-btn-menu.is-open .c-btn-menu__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* --- subメニュー
headerのSP用メニュー、footerのサイトマップメニュー
--- */
.p-sub-nav {
  position: fixed;
  top: 80px; /* ヘッダーの高さ分下げる */
  left: 0;
  width: 100%;
  height: calc(100vh - 80px); /* 画面全体からヘッダー分を引く */
  background: #F7F7F7;
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 1.5em;
  overflow-y: auto;
  z-index: 9999;
}
@media (min-width: 1240px) {
  header .p-sub-nav {
    display: none !important;
  }
}
.p-sub-nav.is-open {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-sub-nav__list {
  width: 80%;
  list-style: none;
}
.p-sub-nav__list > li {
  margin-bottom: 1.2em;
  border-bottom: #CCCCCC 1px solid;
  padding-bottom: 0.7em;
  font-weight: 700;
}
.p-sub-nav__list a, .p-sub-nav__toggle {
  color: #333333;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: block;
}
.p-sub-nav__list > li > a[target="_blank"] {
  padding-right: 1.4em;
  background: url("/assets/img/icon-blank--black.svg") no-repeat center right / 0.9em;
}
.p-sub-nav__list > li > a[target="_blank"]:hover {
  padding-right: 1.4em;
  background: url("/assets/img/icon-blank--green.svg") no-repeat center right / 0.9em;
}
.p-sub-nav__toggle {
  position: relative; /* ←基準になる */
  display: block; /* ←幅をもたせる（inlineだと右寄せできない） */
  width: 100%; /* ←右端まで伸ばす */
  text-align: left; /* ←テキスト自体は左寄せのまま */
  padding-right: 1.5em; /* ←+記号分の余白を確保（お好み） */
}
.p-sub-nav__toggle::after {
  content: "+";
  position: absolute;
  right: 0; /* ←右端に配置！ */
  top: 50%; /* ←上下中央 */
  transform: translateY(-50%);
}
.p-sub-nav__toggle[aria-expanded="true"]::after {
  content: "−";
}
header .p-sub-nav__sub {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.2s ease;
}
.has-sub.is-open .p-sub-nav__sub {
  opacity: 1;
}
header .p-sub-nav__sub li {
  margin: 1.25em 0;
}
header .p-sub-nav__sub li a {
  font-size: 0.85rem;
}
.p-sub-nav__sub li a::before {
  content: "- ";
  margin-right: 0.3em;
}
/* --- SPメニュー下部 --- */
.p-sub-nav__contact {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.p-sub-nav__contact a {
  background: linear-gradient(90deg, #3bca83 0%, #1e8cc7 100%);
  padding: 17px !important;
  color: #fff;
  text-align: center;
  display: block;
}
.c-extra-links {
  display: flex;
  gap: 0.9em;
  width: 80%;
  font-size: 0.7rem;
}
.c-extra-links li {
  width: calc((100% - 0.9em) / 2);
}
.c-extra-links a {
  display: block;
  text-align: center;
  padding: 0.8em 0;
  background: #4D4D4D;
  color: #fff;
  font-weight: 700;
}
.c-extra-links a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c-extra-links li:first-child a {
  background: #BD1940;
}
/* =========================================================
   6. フッター, Navi
========================================================= */
footer {
  background: #F7F7F7;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer__buttns {
  width: 100%;
}
footer .c-extra-links {
  width: 100%;
  flex-direction: column;
}
.c-extra-links li {
  width: 90%;
}
.c-extra-links a {
  padding: 1.3em 0;
}
.footer__logo {
  width: 266px;
  margin: 2em 0;
}
/* --- subメニュー<footer>
headerのSP用メニュー共通部分あり、footerのサイトマップメニュー
<nav class="p-sub-nav p-sub-nav--infooter">
   <ul class="p-sub-nav__list">
--- */
.p-sub-nav--infooter {
  position: relative;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-bottom: 0;
  min-width: 0; /*Mac safari スクロールバー対策*/
  overflow-y: hidden; /*Mac safari スクロールバー対策*/
}
footer .p-sub-nav__sub li {
  margin: 0.8em 0;
}
footer .p-sub-nav__sub li a {
  font-size: 0.7rem;
}
footer .p-sub-nav__list > li > a[target="_blank"], footer .p-sub-nav__list > li > a[target="_blank"]:hover {
  padding-right: 0;
  background: none;
}
footer .p-sub-nav__list > li > a[target="_blank"]::after {
  content: "";
  margin-top: 0.3em;
  position: absolute;
  /* right: 1.2em; */
  width: 1.5em;
  height: 0.9em;
  background: url(/assets/img/icon-blank--black.svg) no-repeat bottom right / contain;
}
footer .p-sub-nav__list > li > a[target="_blank"]:hover::after {
  background: url(/assets/img/icon-blank--green.svg) no-repeat bottom right / contain;
}
footer .p-sub-nav__list a, footer.p-sub-nav__toggle {
  font-size: 0.9rem;
}
footer .p-sub-nav__list a:hover {
  color: #1FA63C;
  text-decoration: none;
}
footer .p-sub-nav__sub li a::before {
  content: none;
}
footer .p-sub-nav__toggle::after {
  content: none;
}
.p-sub-nav--infooter .p-sub-nav__list {
  width: 100%;
}
.copy {
  font-size: 0.6rem;
  width: 100%;
  padding: 3.5rem 4.9rem 1.6rem 1.5rem;
  margin-bottom: 0;
}
/* --- "ページの先頭へ"ボタン --- */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 0.9em;
  bottom: 0.9em;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 500%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: 0.2s;
}
.pagetop:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  footer {
    padding-top: 2.5em;
  }
  .p-sub-nav--infooter {
    width: 1020px;
  }
  .footer__buttns {
    width: 265px;
  }
  footer .p-sub-nav__sub {
    display: block;
  }
  footer .p-sub-nav__toggle, footer .p-sub-nav__list > li:not(.has-sub) {
    margin-bottom: 0;
    border-bottom: #CCCCCC 1px solid;
    padding-bottom: 0.7em;
    font-weight: 700;
  }
  footer .p-sub-nav__list > li:not(.has-sub) {
    margin-bottom: 2.5em;
  }
  .p-sub-nav--infooter .p-sub-nav__list {
    columns: 4;
    column-gap: 1.6em;
    letter-spacing: 0.06em;
  }
  footer .p-sub-nav__list > li {
    margin-bottom: 1.2em;
    border-bottom: none;
    padding-bottom: 0.7em;
    font-weight: 400;
  }
  .p-sub-nav--infooter .p-sub-nav__list > li {
    break-inside: avoid;
    /* Safari対応※親要素にスクロールバーが出るかも注意 */
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
  }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .p-sub-nav--infooter .p-sub-nav__list > li {
        break-inside: auto !important;
        -webkit-column-break-inside: auto !important;
      }
    }
  }
  .copy {
    text-align: right;
  }
  .pagetop {
    height: 62px;
    width: 62px;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column-reverse;
  }
  footer .p-sub-nav__sub {
    display: none;
  }
}
@media (max-width: 1100px) {
  footer .c-extra-links {
    flex-direction: row;
  }
}
@media (min-width: 1400px) {
  .footer__inner {
    max-width: 1400px;
    padding: 0;
  }
}
/* --- Cookie同意 --- */
.cc-window {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 2em;
  background: rgba(0, 0, 0, 0.5) !important;
  padding: 2em;
  max-width: 100% !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row !important;
  z-index: 999999 !important;
  bottom: 0 !important;
}
/* ボタンエリア */
.cc-buttons {
  display: flex;
  gap: 0.6em;
  justify-content: center;
}
/* ボタン共通 */
.cc-btn {
  border-radius: 4px;
  padding: 0.9em 1.4em !important;
  font-size: 0.9rem;
  text-decoration: none !important;
  line-height: 1;
  min-width: 7.5em;
  background: #00A63C !important;
  opacity: 1 !important;
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
}
/* 同意ボタン */
.cc-dismiss {
  color: #fff !important;
}
/* クッキーについてボタン */
.cc-link {
  color: #fff !important;
}
@media (max-width: 920px) {
  .cc-window {
    flex-direction: column !important;
    gap: 1em;
  }
}