@charset "UTF-8";
:root {
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --font-default: "Noto Sans JP", sans-serif;
  --font-sub: "Noto Serif JP", serif;
  --header-height: 80px;
  --brand-color: #3879E2;
  --color-black: #000;
  --color-white: #fff;
  --color-red: #e00;
  --color-blue: #00e;
  --color-hover-link: #1776ca;
  --color-border: #A0A0A0;
  --color-border-link: #1776ca;
  --color-breadcrumbs: #005DAD;
  --shadow-default: 0 3px 6px rgba(0, 0, 0, 0.16);
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
  --easing: ease-out;
  --transition-normal: var(--duration-normal) var(--easing);
  --transition-slow: var(--duration-slow) var(--easing);
  --easing-cubic1: cubic-bezier(0, 0, 0, 1);
}

@media screen and (max-width: 1024px) {
  :root {
    --header-height: 60px;
  }
}
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default padding on everything */
  padding: 0;
  /* Remove default margin on everything */
  margin: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  background-repeat: no-repeat;
  background-origin: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizespeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object, hgroup) {
  display: block;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  fill: currentcolor;
  stroke: none;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  fill: none;
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentcolor;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  font: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  touch-action: manipulation;
  cursor: pointer;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* button */
button {
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

html {
  scrollbar-gutter: stable;
  overflow-wrap: anywhere;
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 18px;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  color: var(--color-txtbase);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  position: relative;
  background-color: var(--color-bg);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 1.6;
  }
}

/* タイトル行間 */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
  }
}

/* 本文行間 */
.text {
  line-height: 1.6;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .text {
    line-height: 1.8;
    font-size: 16px;
  }
}

a {
  transition: color var(--transition-normal);
  text-decoration: none;
  color: var(--color-black);
}
a:hover {
  text-decoration: none;
  color: var(--color-hover-link);
}

/* ================================
 * ヘッダー
 * ================================ */
.header {
  z-index: 999;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-around;
  gap: 30px;
  width: 100%;
  min-height: var(--header-height);
  background-color: var(--color-white);
  transition: box-shadow var(--transition-normal);
}
.header.is-scrolled {
  box-shadow: var(--shadow-default);
}
@media screen and (max-width: 1024px) {
  .header {
    justify-content: flex-start;
  }
}

/* ヘッダーロゴ */
.header__logo {
  display: flex;
  align-items: center;
  margin: 0 0 0 20px;
}
.header__logo img {
  max-width: max-content;
}
@media screen and (max-width: 768px) {
  .header__logo {
    margin: 0 100px 0 20px;
  }
}

/* メニュー */
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    display: none;
  }
}

/* リスト */
.header__nav {
  height: 100%;
}

.header__mainlist {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

/* リンク */
.header__mainlist-link {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-color);
  transition: color var(--transition-normal);
}
.header__mainlist-link:hover {
  color: var(--color-black);
}
.header__mainlist-link:hover .header__mainlist-subtext {
  color: var(--brand-color);
}

.header__mainlist-subtext {
  transition: color var(--transition-normal);
  font-family: var(--font-default);
  font-size: 15px;
  color: var(--color-black);
}

/* ------ 会員専用 ------ */
.header__members-item {
  position: relative;
}
.header__members-item::before {
  content: "";
  position: absolute;
  left: 0;
  mask-image: url(../images/common/member_icon.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transition: background var(--transition-normal);
  background-color: var(--color-black);
  width: 15px;
  height: 24px;
  margin: auto;
}
.header__members-item::after {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: var(--brand-color);
  width: 100%;
  height: 1px;
  margin: auto;
}
.header__members-item:hover::before {
  background-color: var(--brand-color);
}
.header__members-item:hover .header__members-link {
  color: var(--brand-color);
}

/* リンク */
.header__members-link {
  font-weight: 500;
  font-size: 16px;
  padding-left: 20px;
}

/* ミニボタン */
.headersp__members-link {
  z-index: 1001;
  position: fixed;
  top: 7px;
  right: 10px;
  max-width: 50px;
  max-height: 45px;
  height: 100%;
}

.headersp__members-text {
  position: relative;
  display: flex;
  align-items: flex-end;
  font-weight: 500;
  font-size: 12px;
  color: var(--brand-color);
  height: 100%;
}
.headersp__members-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  mask-image: url(../images/common/member_icon.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: var(--color-black);
  width: 15px;
  height: 24px;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .headersp__members-text {
    display: none;
  }
}

/* ------ ドロップメニュー ------ */
.has-dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  background-color: #fff;
  min-width: fit-content;
}

/* アイテム */
.header__dropdown-list-item {
  border: 0 solid var(--brand-color);
  border-width: 0 1px 1px 1px;
  height: 100%;
  padding: 8px 12px;
}

/* リンク */
.header__dropdown-list-link {
  display: inline-block;
  transition: color var(--transition-normal);
  font-weight: 500;
  font-size: 15px;
  width: 100%;
  height: 100%;
}
.header__dropdown-list-link:hover {
  color: var(--brand-color);
}

/* ------ ハンバーガーメニュー　ボタン ------ */
.header-spgnavtrigger {
  z-index: 1001;
  position: fixed;
  top: 5px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 50px;
  height: 50px;
}
.header-spgnavtrigger span, .header-spgnavtrigger::before, .header-spgnavtrigger::after {
  content: "";
  position: absolute;
  background-color: var(--color-black);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  width: 24px;
  height: 2px;
}
.header-spgnavtrigger span {
  transform: translateY(0);
}
.header-spgnavtrigger::before {
  transform: translateY(-8px);
}
.header-spgnavtrigger::after {
  transform: translateY(8px);
}
.header-spgnavtrigger[aria-expanded=true] span {
  opacity: 0;
}
.header-spgnavtrigger[aria-expanded=true]::before {
  transform: rotate(45deg);
}
.header-spgnavtrigger[aria-expanded=true]::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .header-spgnavtrigger {
    display: none;
  }
}

/* ================================
 * ハンバーガーメニュー
 * ================================ */
.gnav {
  z-index: 1000;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  background-color: var(--color-white);
  padding: 100px 0 40px;
}
.gnav[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media screen and (min-width: 1024px) {
  .gnav {
    display: none;
  }
}

/* ロゴ */
.gnav__logo {
  position: absolute;
  top: 15px;
  left: 20px;
}

/* アイテム */
.gnav__list-item {
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

/* リンク */
.gnav__list-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: color var(--transition-normal);
  font-size: 16px;
  color: var(--color-black);
  min-height: 60px;
  padding-right: 60px;
  padding-left: 20px;
}
.gnav__list-link:hover {
  color: var(--brand-color);
}

.gnav__list-subtext {
  transition: color var(--transition-normal);
  font-size: 18px;
  color: var(--brand-color);
}
.gnav__list-subtext:hover {
  color: var(--color-black);
}

/* ハンバーガーメニュー内 ボタン */
.gnav__droptrigger {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  border-left: 1px solid var(--color-border);
  width: 60px;
  height: 60px;
}
.gnav__droptrigger span, .gnav__droptrigger::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform var(--transition-normal);
  background-color: var(--color-black);
  width: 16px;
  height: 2px;
}
.gnav__droptrigger span {
  transform: translate(-50%, -50%);
}
.gnav__droptrigger::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gnav__droptrigger[aria-expanded=true]::after {
  transform: translate(-50%, -50%) rotate(0);
}

/* メニュー */
.gnav__submenu {
  overflow: hidden;
  transition: max-height var(--transition-normal), padding-bottom var(--transition-normal);
  background-color: rgba(216, 221, 227, 0.2784313725);
  max-height: 0;
  padding-bottom: 0;
}

/* リンク */
.gnav__sublist-link {
  display: block;
  transition: opacity var(--transition-normal);
  text-decoration: none;
  color: var(--color-black);
  padding: 12px 20px;
}
.gnav__sublist-link:hover {
  opacity: 0.7;
}

/* ================================
 * メイン
 * ================================ */
body.is-fixed {
  overflow: hidden;
}

.main {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .main {
    margin-top: 60px;
  }
}
.main::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 200px;
  right: 50px;
  background-image: url(../images/common/background-decoration.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  max-width: 900px;
  width: 55%;
  max-height: 900px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .main::before {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .main::before {
    display: none;
  }
}

.main__container {
  width: 100%;
  margin: 0 auto;
}

/* サイドメニュー有りページ */
.main__container-localnav {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 50px;
  max-width: 1240px;
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main__container-localnav {
    padding: 20px;
  }
}

/* 各コンテンツ */
.main__content {
  flex: 1;
  max-width: 1040px;
  width: 100%;
  min-width: 0;
  padding: 0 20px;
  margin: 150px auto 0;
}
@media screen and (max-width: 768px) {
  .main__content {
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .main__content {
    margin: 50px auto 0;
  }
}

/* 背景ありコンテンツ */
.main__background-content {
  flex: 1;
  width: 100%;
  min-width: 0;
  margin: 150px auto 0;
}

/* ================================
 * フッター
 * ================================ */
.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 200px;
}
.footer::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: -47%;
  bottom: 0;
  background-image: url(../images/common/background-decoration.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .footer::before {
    height: 50%;
  }
}

/* ------ フッター上部 ------ */
.footer__information {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 35px;
}
.footer__information::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  background-image: url(../images/common/contact-background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer__information::before {
    background-image: url(../images/common/contact-background-sp.jpg);
  }
}

/* ------ フッタータイトル ------ */
.footer__title-wrap {
  display: flex;
  justify-content: center;
}

/* タイトル */
.footer__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: clamp(56px, 4.1vw, 80px);
  color: var(--color-white);
}

/* サブタイトル */
.footer__subtitle {
  font-weight: 500;
  font-size: clamp(24px, 1.6vw, 32px);
  color: var(--color-white);
}

/* ------ 会社住所 ------ */
.company-address {
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .company-address {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .company-address {
    font-size: 16px;
  }
}

/* ------ 会社お問い合わせ情報 ------ */
.footer__business-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.footer__contact-info {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .footer__contact-info {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

/* 電話番号 */
.footer__tel {
  position: relative;
  display: flex;
  align-items: center;
  transition: color var(--duration-normal);
  font-weight: 700;
  font-size: 34px;
  color: var(--color-white) !important;
  padding-left: 35px;
}
.footer__tel::before {
  content: "";
  position: absolute;
  left: 0;
  mask-image: url(../images/common/phone.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transition: background var(--duration-normal);
  background-color: var(--color-white);
  width: 32px;
  height: 32px;
}
.footer__tel:hover {
  color: var(--color-hover-link) !important;
}
.footer__tel:hover::before {
  background-color: var(--color-hover-link);
}

/* FAX番号 */
.footer__fax {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
}

/* 受付時間 */
.footer__business-hours-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
}
@media screen and (max-width: 576px) {
  .footer__business-hours-text {
    font-size: 14px;
  }
}

/* ------ フッター下部 ------ */
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  max-width: 1240px;
  width: 100%;
  padding: 30px 20px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    gap: 100px;
  }
}

/* ------ フッターメインメニュー ------ */
.footer__mainmenu-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__mainmenu-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .footer__mainmenu-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* リスト */
.footer__mainlist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  padding-left: 25px;
  margin: 0 auto;
}

/* リンク */
.footer__mainlist-link {
  position: relative;
  display: flex;
  align-items: center;
  transition: color var(--duration-normal);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  width: fit-content;
  margin-top: 10px;
}
.footer__mainlist-link:hover {
  color: var(--color-hover-link);
}
.footer__mainlist-link::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: -20px;
  mask-image: url(../images/common/arrow-1.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: #254092;
  width: 12px;
  height: 12px;
  margin: auto;
}

/* サブリスト */
.footer__sublist {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  gap: 10px;
  margin-top: 5px;
}

/* リンク */
.footer__sublist-link {
  position: relative;
  display: flex;
  align-items: center;
  transition: color var(--duration-normal);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-black);
  width: fit-content;
}
.footer__sublist-link:hover {
  color: var(--color-hover-link);
}
.footer__sublist-link::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: -20px;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: #254092;
  width: 12px;
  height: 12px;
  margin: auto;
}

/* ------ コピーライト ------ */
.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 10px;
}

/* ================================
 * アコーディオン
 * ================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  width: 100%;
  padding: 0;
}

/* アイテム */
.accordion__item {
  overflow: hidden;
}

/* ボタン */
.accordion__button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-normal);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  padding: 20px;
}
.accordion__button:hover {
  opacity: 0.5;
}
.accordion__button[aria-expanded=true] .accordion__icon::before {
  left: auto;
  background-color: var(--brand-color);
  width: 20px;
}
.accordion__button[aria-expanded=true] .accordion__icon::after {
  right: auto;
  transform: rotate(0deg);
  background-color: var(--brand-color);
  width: 20px;
}

.accordion__button-box {
  display: flex;
  align-items: center;
  padding: 0 20px 0 0;
}

/* タイトル */
.accordion__title {
  display: flex;
  gap: 20px;
  font-weight: 500;
  font-size: 26px;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .accordion__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .accordion__title {
    flex-direction: column;
    gap: 0;
  }
}

/* ミニタイトル */
.accordion__title--mini {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .accordion__title--mini {
    font-size: 18px;
  }
}

/* サブタイトル */
.accordion__subtitle {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .accordion__subtitle {
    font-size: 16px;
  }
}

/* 開閉表示アイコン */
.accordion__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  min-width: 20px;
  height: 20px;
}
.accordion__icon::before {
  content: "";
  position: absolute;
  left: 0;
  transform: rotate(0deg);
  background-color: var(--brand-color);
  transition: var(--transition-normal);
  width: 20px;
  height: 2px;
}
.accordion__icon::after {
  content: "";
  position: absolute;
  right: 0;
  transform: rotate(-90deg);
  background-color: var(--brand-color);
  transition: var(--transition-normal);
  width: 20px;
  height: 2px;
}

/* 中身 */
.accordion__panel {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
  transform: translateY(-10px);
  max-height: 0;
}
.accordion__panel[aria-hidden=false] {
  opacity: 1;
  transform: translateY(0);
}

.accordion__panel-box {
  width: 100%;
  padding: 15px;
}

/* 背景白色 */
.accordion__background--wite {
  background-color: var(--color-white);
}

/* 下線削除 */
.accordion__no-border {
  border-bottom: none;
}

/* ================================
 * パンくずリスト
 * ================================ */
.breadcrumb__wrap {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 20px auto;
}

/* リスト */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 35px;
}

/* アイテム */
.breadcrumb__list-item {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumb__list-item::before {
  content: "";
  z-index: 1;
  position: absolute;
  right: -25px;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: var(--color-black);
  width: 12px;
  height: 12px;
  margin: auto;
}
.breadcrumb__list-item:last-child::before {
  display: none;
}

/* ================================
 * ボタン
 * ================================ */
/* ------ サイトデフォルトボタン ------ */
.default-button {
  display: flex;
  max-width: 210px;
  width: 100%;
  border: 1px solid var(--brand-color);
  border-radius: 30px;
}

/* 大きいサイズ */
.default-button--lg {
  max-width: 260px;
}

.default-button__link {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
  transition: color var(--duration-normal), background var(--duration-normal);
  background-color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-color);
  width: 100%;
  padding: 10px 15px;
}
.default-button__link::after {
  content: "";
  position: absolute;
  right: 15px;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transition: background var(--duration-normal);
  background-color: var(--brand-color);
  width: 16px;
  height: 16px;
}
.default-button__link:hover {
  color: var(--color-white);
  background-color: var(--brand-color);
}
.default-button__link:hover::after {
  background-color: var(--color-white);
}

/* ------ ダウンロードボタン ------ */
.download-button {
  display: flex;
  max-width: 210px;
  width: 100%;
  border: 1px solid var(--brand-color);
  border-radius: 30px;
}

.download-button__link {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
  transition: color var(--duration-normal), background var(--duration-normal);
  background-color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-color);
  width: 100%;
  padding: 10px 15px;
}
.download-button__link::after {
  content: "";
  position: absolute;
  right: 15px;
  mask-image: url(../images/common/download_icon.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transition: background var(--duration-normal);
  background-color: var(--brand-color);
  width: 20px;
  height: 20px;
}
.download-button__link:hover {
  color: var(--color-white);
  background-color: var(--brand-color);
}
.download-button__link:hover::after {
  background-color: var(--color-white);
}

/* ------ 下線が左から表示 ------ */
.mini-buttom {
  display: flex;
  width: 100%;
}

.mini-buttom__link {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-color);
  width: fit-content;
  padding-left: 15px;
}
.mini-buttom__link::before {
  content: "";
  position: absolute;
  left: 0;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: var(--brand-color);
  width: 13px;
  height: 13px;
}
.mini-buttom__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-slow);
  background-color: var(--brand-color);
  width: 100%;
  height: 1px;
}
.mini-buttom__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ------ ダウンロードリスト ------ */
/* リスト */
.download__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .download__list {
    gap: 15px;
  }
}

/* アイテム */
.download__list-item {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  padding-right: 25px;
}
.download__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-slow);
  background-color: var(--brand-color);
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 576px) {
  .download__list-item::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.download__list-item::after {
  content: "";
  position: absolute;
  right: 0;
  mask-image: url(../images/common/download_icon.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: var(--brand-color);
  width: 16px;
  height: 16px;
}
.download__list-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* リンク */
.default-button__sublink {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .default-button__sublink {
    font-size: 14px;
    color: var(--brand-color);
  }
}

/* ================================
 * 下層キービジュアル
 * ================================ */
.main__kv {
  position: relative;
  left: -50px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .main__kv {
    left: 0;
  }
}
@media screen and (max-width: 400px) {
  .main__kv {
    padding: 0 16px;
  }
  .main__kv img {
    max-width: 256px;
    width: 100%;
  }
}

/* キービジュアルタイトル */
.section__title-container {
  position: absolute;
  right: 0;
  bottom: 50px;
}
@media screen and (max-width: 1300px) {
  .section__title-container {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .section__title-container {
    right: 16px;
  }
}
@media screen and (max-width: 576px) {
  .section__title-container {
    bottom: -5px;
  }
}

/* 日本語タイトル */
.section__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 400;
  font-size: 30px;
}
@media screen and (max-width: 576px) {
  .section__title {
    font-size: 20px;
  }
}

/* 英語タイトル */
.section__subtitle {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 56px;
}
@media screen and (max-width: 576px) {
  .section__subtitle {
    font-size: 36px;
  }
}

/* ================================
 * リスト
 * ================================ */
/* ------ アンカーリンクリスト ------ */
.anchor__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 60px auto 120px;
}
@media screen and (max-width: 1024px) {
  .anchor__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .anchor__list {
    padding: 0 12px;
    margin: 60px auto;
  }
}

/* アイテム */
.anchor__list-item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image var(--transition-normal);
  height: 180px;
}
.anchor__list-item::after {
  content: "";
  position: absolute;
  overflow: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}

/* リンク */
.anchor__list-link {
  display: flex;
  width: 100%;
  height: 100%;
}

/* テキストエリア */
.anchor__list-textarea {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  width: 100%;
  height: 100%;
  padding: 10px;
}
.anchor__list-textarea::before {
  content: "";
  position: absolute;
  right: 23px;
  transform: rotate(-135deg);
  background-color: var(--color-white);
  height: 2px;
  width: 20px;
}
@media screen and (max-width: 576px) {
  .anchor__list-textarea::before {
    bottom: 30px;
  }
}
.anchor__list-textarea::after {
  content: "";
  position: absolute;
  right: 10px;
  transform: rotate(135deg);
  background-color: var(--color-white);
  height: 2px;
  width: 20px;
}
@media screen and (max-width: 576px) {
  .anchor__list-textarea::after {
    bottom: 30px;
  }
}

/* メインテキスト */
.anchor__list-maintext {
  font-family: var(--font-sub);
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .anchor__list-maintext {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .anchor__list-maintext {
    font-size: 18px;
  }
}

/* サブテキスト */
.anchor__list-subtext {
  font-size: 18px;
}
@media screen and (max-width: 576px) {
  .anchor__list-subtext {
    font-size: 15px;
  }
}

/* ------ 画像切り替え ------ */
/* 会社概要 */
.about .anchor__list-item:first-of-type {
  background-image: url(../images/about/anchor-link-switch-01.jpg);
}
.about .anchor__list-item:first-of-type::after {
  background-image: url(../images/about/anchor-link-01.jpg);
}
.about .anchor__list-item:first-of-type:hover {
  background-image: url(../images/about/anchor-link-01.jpg);
}

.about .anchor__list-item:nth-child(2) {
  background-image: url(../images/about/anchor-link-switch-02.jpg);
}
.about .anchor__list-item:nth-child(2)::after {
  background-image: url(../images/about/anchor-link-02.jpg);
}
.about .anchor__list-item:nth-child(2):hover {
  background-image: url(../images/about/anchor-link-02.jpg);
}

.about .anchor__list-item:nth-child(3) {
  background-image: url(../images/about/anchor-link-switch-03.jpg);
}
.about .anchor__list-item:nth-child(3)::after {
  background-image: url(../images/about/anchor-link-03.jpg);
}
.about .anchor__list-item:nth-child(3):hover {
  background-image: url(../images/about/anchor-link-03.jpg);
}

/* サービス&報酬 */
.service .anchor__list-item:first-of-type {
  background-image: url(../images/service/anchor-link-switch-01.jpg);
}
.service .anchor__list-item:first-of-type::after {
  background-image: url(../images/service/anchor-link-01.jpg);
}
.service .anchor__list-item:first-of-type:hover {
  background-image: url(../images/service/anchor-link-01.jpg);
}

.service .anchor__list-item:nth-child(2) {
  background-image: url(../images/service/anchor-link-switch-02.jpg);
}
.service .anchor__list-item:nth-child(2)::after {
  background-image: url(../images/service/anchor-link-02.jpg);
}
.service .anchor__list-item:nth-child(2):hover {
  background-image: url(../images/service/anchor-link-02.jpg);
}

.service .anchor__list-item:nth-child(3) {
  background-image: url(../images/service/anchor-link-switch-03.jpg);
}
.service .anchor__list-item:nth-child(3)::after {
  background-image: url(../images/service/anchor-link-03.jpg);
}
.service .anchor__list-item:nth-child(3):hover {
  background-image: url(../images/service/anchor-link-03.jpg);
}

/* ------ 仕事の流れリスト ------ */
.service-flow__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 576px) {
  .service-flow__list {
    gap: 80px;
  }
}

/* アイテム */
.service-flow__list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #F9F9F2;
  padding: 50px 30px;
}
@media screen and (max-width: 576px) {
  .service-flow__list-item {
    padding: 40px 10px;
  }
}

/* 番号 */
.service-flow__list-number {
  position: absolute;
  top: -70px;
  left: 40px;
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 100px;
  color: #A1BEE6;
}
@media screen and (max-width: 576px) {
  .service-flow__list-number {
    top: -55px;
    left: 20px;
    font-size: 80px;
  }
}

/* コンテンツ */
.service-flow__list-content {
  display: flex;
  gap: 20px;
}

/* 画像アイコン */
.service-flow__list-img {
  display: flex;
  justify-content: center;
  width: 35%;
}

/* テキストエリア */
.service-flow__list-textarea {
  width: 65%;
}

/* タイトル */
.service-flow__list-title {
  font-weight: 400;
  font-size: 24px;
  color: var(--brand-color);
}
@media screen and (max-width: 576px) {
  .service-flow__list-title {
    font-size: 20px;
  }
}

/* テキスト */
.service-flow__list-text {
  font-weight: 400;
  font-size: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .service-flow__list-text {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* ------ ドットリスト ------ */
.dot-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* リスト間隔広め */
.dot-list--wide {
  gap: 10px;
}

.dot-list__item {
  position: relative;
  display: flex;
  font-weight: 400;
  font-size: 18px;
  padding-left: 15px;
}
.dot-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  align-self: flex-start;
  border-radius: 100%;
  background-color: var(--color-black);
  width: 6px;
  height: 6px;
  margin-top: 10px;
}

/* 青色ドットリスト */
.dot-blue li::before {
  background-color: #3879E2;
}

/* ------ ステップリスト ------ */
.stepflow__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-left: 30px;
}
.stepflow__list::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 10px;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #3176D6;
  width: 1px;
}

/* アイテム */
.stepflow__list-item {
  position: relative;
}
.stepflow__list-item:last-child::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -20px;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--color-white);
  width: 3px;
}

/* ステップ番号 */
.stepflow__list-step {
  position: relative;
}
.stepflow__list-step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -26px;
  border-radius: 100%;
  background-color: #3176D6;
  width: 12px;
  height: 12px;
}

/* タイトル */
.stepflow__list-title {
  padding-left: 15px;
}

/* ------ 番号ミニリスト ------ */
.small__number-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: decimal;
  padding-left: 20px;
}
@media screen and (max-width: 576px) {
  .small__number-list {
    gap: 10px;
  }
}

.small__number-list-item {
  position: relative;
  font-weight: 500;
  font-size: 16px;
}

/* ------ ボタン用リスト ------ */
.buttom-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 30px;
}

/* ================================
 * ローディング画面
 * ================================ */
#loading {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
#loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.loading__inner {
  display: flex;
  align-items: center;
}

.loading__logo {
  opacity: 0;
  animation: logoRoll 1.3s ease forwards;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 576px) {
  .loading__logo {
    width: 60px;
    height: 60px;
  }
}

@keyframes logoRoll {
  0% {
    transform: translateX(200px) rotate(360deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
.loading__text {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: textSlideIn 1s ease forwards;
  animation-delay: 1.2s;
  font-weight: 700;
  font-size: 30px;
  color: var(--color-black);
  margin-top: 15px;
}
@media screen and (max-width: 576px) {
  .loading__text {
    font-size: 20px;
  }
}

.loading__text-color {
  color: #004194;
  padding-right: 10px;
}

@keyframes textSlideIn {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}
/* ================================
 * サイドメニュー
 * ================================ */
.main__aside {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/* ローカルナビ本体 */
.localnav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 20px 30px;
}

/* 各コンテンツ */
.localnav__content {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 2px solid var(--color-border);
  padding-top: 20px;
}
.localnav__content:first-child {
  border: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .localnav__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* タイトル */
.localnav__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 22px;
  color: var(--brand-color);
  min-width: 130px;
}

/* リスト */
.localnav__list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .localnav__list {
    flex-direction: column;
    gap: 10px;
  }
}

/* リンク */
.localnav__list-link {
  position: relative;
  display: flex;
  align-items: center;
  transition: color var(--duration-normal);
  font-weight: 400;
  font-size: 16px;
  padding-left: 20px;
}
.localnav__list-link[aria-current=true] {
  color: var(--brand-color);
}
.localnav__list-link[aria-current=true]::before {
  background-color: var(--brand-color);
}
.localnav__list-link:hover {
  color: var(--color-hover-link);
}
.localnav__list-link:hover::before {
  background-color: var(--brand-color);
}
.localnav__list-link::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transition: background-color var(--duration-normal);
  background-color: var(--color-black);
  width: 12px;
  height: 12px;
  margin: auto;
}

/* ================================
 * ページネーション
 * ================================ */
/* ------ 一覧ページ ------ */
.c-pagination {
  display: flex;
  width: 100%;
  margin: 50px auto 0;
}

/* リスト */
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}

/* アイテム */
.c-pagination__list-item {
  font-weight: 400;
  font-size: 30px;
}

/* 表示ページ */
.c-pagination__list-link--current {
  position: relative;
  display: flex;
  color: var(--brand-color);
  width: 100%;
  padding: 0 5px;
}
.c-pagination__list-link--current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: var(--brand-color);
  width: 100%;
  height: 1px;
}

/* リンク */
.c-pagination__list-link {
  position: relative;
  display: flex;
  padding: 0 5px;
  transition: color var(--transition-normal);
}
.c-pagination__list-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: opacity var(--transition-normal);
  background-color: var(--brand-color);
  opacity: 0;
  width: 100%;
  height: 1px;
}
.c-pagination__list-link:hover {
  color: var(--brand-color);
}
.c-pagination__list-link:hover::after {
  opacity: 1;
}

/* 矢印リンク */
.c-pagination__arr {
  display: flex;
  width: 16px;
  height: 16px;
}
.c-pagination__arr:hover .before-arrow::before {
  background-color: var(--brand-color);
}
.c-pagination__arr:hover .next-arrow::after {
  background-color: var(--brand-color);
}

/* 戻る-矢印 */
.before-arrow {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
.before-arrow::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transform: rotate(180deg);
  transition: background-color var(--duration-normal);
  background-color: var(--color-black);
  width: 16px;
  height: 16px;
  margin: auto;
}

/* 次へ-矢印 */
.next-arrow {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
.next-arrow::after {
  content: "";
  z-index: 1;
  position: absolute;
  right: 0;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transition: background-color var(--duration-normal);
  background-color: var(--color-black);
  width: 16px;
  height: 16px;
  margin: auto;
}

/* ------ 詳細ページ ------ */
.post-nav {
  display: flex;
  width: 100%;
  margin: 50px auto 0;
}

.post-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}

/* ボタン */
.post-nav__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

/* 矢印リンク */
.post-nav__arr {
  display: flex;
  align-items: center;
}

/* 戻る-矢印 */
.post-nav__arr--prev {
  position: relative;
  padding-left: 20px;
}
.post-nav__arr--prev:hover::before {
  background-color: var(--brand-color);
}
.post-nav__arr--prev::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transform: rotate(180deg);
  transition: background-color var(--duration-normal);
  background-color: var(--color-black);
  width: 16px;
  height: 16px;
  margin: auto;
}

/* 次へ-矢印 */
.post-nav__arr--next {
  position: relative;
  padding-right: 20px;
}
.post-nav__arr--next:hover::after {
  background-color: var(--brand-color);
}
.post-nav__arr--next::after {
  content: "";
  z-index: 1;
  position: absolute;
  right: 0;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transition: background-color var(--duration-normal);
  background-color: var(--color-black);
  width: 16px;
  height: 16px;
  margin: auto;
}

/* ================================
 * テーブル
 * ================================ */
@media screen and (max-width: 768px) {
  .table__wrap {
    justify-content: flex-start !important;
    overflow-x: auto;
    width: 100%;
  }
}

.table__body {
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .table__body {
    min-width: 600px;
  }
}
.table__body tr {
  border-top: 1px solid #DDDDDD;
}
.table__body:last-child tr {
  border-bottom: 1px solid #DDDDDD;
}

/* タイトル */
.table__title {
  text-align: start;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 30px;
}
.table__title:nth-child(even) {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .table__title {
    font-size: 15px;
    padding: 15px;
  }
}

/* サブタイトル */
.table__subtitle {
  text-align: start;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .table__subtitle {
    font-size: 12x;
  }
}

/* テキスト */
.table__text {
  text-align: start;
  font-weight: 500;
  font-size: 18px;
  padding: 15px 30px;
}
.table__text:nth-child(odd) {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .table__text {
    font-size: 15px;
    padding: 15px;
  }
}

/* テーブル背景色 */
.table--highlight {
  background-color: #F9F9F2;
}

/* テーブル幅調整 */
.w-30 {
  width: 30%;
}

.w-50 {
  width: 50%;
}

.w-70 {
  width: 70%;
}

/* ================================
 * 下層タイトル
 * ================================ */
/* ------ メインコンテンツタイトル ------ */
.main-content__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: clamp(46px, 3.1vw, 60px);
  color: #9CB9E3;
}

.main-content__subtitle {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: clamp(20px, 1.3vw, 26px);
  color: var(--color-black);
}

/* ------ 中央下線タイトル ------ */
.center-underline__title-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 80px;
}
.center-underline__title-container::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  background-color: var(--brand-color);
  width: 80px;
  height: 2px;
}

.center-underline__title {
  font-weight: 500;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .center-underline__title {
    font-size: 22px;
  }
}

/* ------ 下線タイトル ------ */
.underline__title-container {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  padding-bottom: 15px;
  margin-top: 80px;
}

.underline__title {
  font-weight: 500;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .underline__title {
    font-size: 20px;
  }
}

/* ------ 青色タイトル ------ */
.color-content__title-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 25px;
  margin-top: 30px;
}
.color-content__title-container::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--brand-color);
  width: 15px;
  height: 2px;
}

.color-content__title {
  font-weight: 500;
  font-size: 24px;
  color: var(--brand-color);
}
@media screen and (max-width: 768px) {
  .color-content__title {
    font-size: 20px;
  }
}

/* ------ ミニタイトル ------ */
.mini__title {
  font-weight: 700;
  font-size: 20px;
}

/* ================================
 * 2カラム並び
 * ================================ */
.two-column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .two-column {
    flex-direction: column;
    gap: 20px;
  }
}

/* 左カラム */
.two-column__left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .two-column__left {
    width: 100% !important;
  }
}

/* 右カラム */
.two-column__right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .two-column__right {
    width: 100% !important;
  }
}

/* タイトル */
.two-column__title {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .two-column__title {
    font-size: 20px;
  }
}

/* テキスト */
.two-column__text {
  font-weight: 500;
  font-size: 18px;
  margin-top: 0;
}
* + .two-column__text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .two-column__text {
    font-size: 16px;
  }
  * + .two-column__text {
    margin-top: 20px;
  }
}

/* スマホ時並び反転 */
@media screen and (max-width: 768px) {
  .columu__sp--reverse {
    flex-direction: column-reverse;
  }
}

/* 普通-画像 */
.columu-img {
  display: flex;
  justify-content: center;
}
.columu-img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .columu-img img {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .columu-img img {
    width: 100%;
  }
}

/* 大-画像 */
@media screen and (max-width: 768px) {
  .columu-img--small img {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .columu-img--small img {
    width: 80%;
  }
}

/* 幅調整 */
.columu-70 {
  width: 70%;
}

.columu-60 {
  width: 60%;
}

.columu-40 {
  width: 40%;
}

.columu-30 {
  width: 30%;
}

/* TOPページ専用 */
.two-column__title-top {
  font-weight: 700;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .two-column__title-top {
    font-size: 22px;
  }
}

/* ================================
 * 会社概要
 * ================================ */
/* ------ 事務所概要 ------ */
.overview__list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
}

.overview__list-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 30px;
}
.overview__list-item:nth-child(odd) {
  background-color: #F9F9F2;
}
@media screen and (max-width: 768px) {
  .overview__list-item {
    padding: 15px;
  }
}

.overview__list-term {
  font-weight: 700;
  font-size: 18px;
  min-width: 100px;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .overview__list-term {
    font-size: 15px;
  }
}

.overview__list-description {
  font-size: 18px;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .overview__list-description {
    font-size: 15px;
  }
}

/* ------ 沿革 ------ */
.history__list-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 50px auto 0;
}

/* リスト */
.history__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  width: 100%;
}
.history__list::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 140px;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #3176D6;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .history__list::before {
    top: 30px;
    left: 90px;
  }
}

/* 各年代アイテム */
.history__list-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.history__list-item:last-child::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 140px;
  bottom: 0;
  transform: translateX(-50%);
  background-color: var(--color-white);
  width: 3px;
}
@media screen and (max-width: 768px) {
  .history__list-item:last-child::before {
    top: 30px;
    left: 90px;
  }
}

/* 西暦 */
.history__list-year {
  display: flex;
  flex-direction: column;
  font-family: var(--font-sub);
  font-size: 50px;
  color: #3176D6;
  max-width: 120px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .history__list-year {
    font-size: 30px;
    max-width: 70px;
  }
}

/* 和暦 */
.history__list-subyear {
  font-family: var(--font-default);
  font-size: 18px;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .history__list-subyear {
    font-size: 14px;
  }
}

/* アイテム・画像 */
.history__list-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .history__list-content {
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .history__list-content {
    flex-direction: column;
  }
}

/* アイテム */
.history__list-contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 各月アイテム */
.history__list-content-item {
  position: relative;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .history__list-content-item {
    gap: 10px;
  }
}
.history__list-content-item::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 8px;
  left: -27px;
  border-radius: 100%;
  background-color: #3176D6;
  width: 14px;
  height: 14px;
  margin: auto;
}

/* 月 */
.history__list-month {
  display: flex;
  justify-content: flex-end;
  font-size: 20px;
  color: #3176D6;
  min-width: 46px;
}
@media screen and (max-width: 768px) {
  .history__list-month {
    font-size: 18px;
    min-width: 40px;
  }
}

/* テキスト */
.history__list-text {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .history__list-text {
    font-size: 14px;
    width: 210px;
  }
}
@media screen and (max-width: 576px) {
  .history__list-text {
    width: 100%;
  }
}

/* ================================
 * アクセス
 * ================================ */
/* ================================
 * お問い合わせ
 * ================================ */
/* Snow Monkey Forms */
.content-wrap {
  margin-top: 200px;
}

/* フォーム全体 */
.snow-monkey-form {
  margin-top: 100px;
}

.smf-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* フォームアイテム */
.smf-item {
  margin-top: 30px;
}
.smf-item__label {
  margin-bottom: 10px;
}
.smf-item__description {
  font-size: 0.889em;
  color: #666;
  margin-bottom: 10px;
}

/* ラジオボタン */
.smf-radio-buttons-control__control {
  width: 600px !important;
  max-width: 100%;
}

/* テキスト入力・テキストエリア共通 */
.smf-text-control__control, .smf-textarea-control__control {
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.035);
  transition: border 0.2s ease-out 0s;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: var(--color-white);
  width: 600px !important;
  max-width: 100%;
  padding: 0.75rem 1rem;
}
.smf-text-control__control:hover, .smf-textarea-control__control:hover {
  border-color: #999;
}
.smf-text-control__control:focus, .smf-textarea-control__control:focus {
  border-color: #85b7d9;
}

/* ファイルアップロード */
.smf-file-control {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.smf-file-control > label {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  outline: none;
}
.smf-file-control > label:before {
  content: "";
  position: absolute;
  display: block;
  inset: -3px;
}
.smf-file-control > label > * {
  flex: 0 0 auto;
}
.smf-file-control__control {
  display: none;
}
.smf-file-control__label {
  display: inline-block;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  background-image: linear-gradient(180deg, #fff, #eee);
  background: #eee;
  color: #333;
  transition: border 0.2s ease-out 0s;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0.5rem 1rem;
}
.smf-file-control__filename .smf-file-control__filename,
.smf-file-control__filename .smf-file-control__label {
  display: none;
}
.smf-file-control__filename--no-file {
  display: inline-block;
}
.smf-file-control__filename--has-file {
  display: none;
}
.smf-file-control__clear {
  display: none;
  text-decoration: underline;
  cursor: pointer;
}
.smf-file-control--set .smf-file-control__filename--no-file {
  display: none;
}
.smf-file-control--set .smf-file-control__clear,
.smf-file-control--set .smf-file-control__filename--has-file {
  display: inline-block;
}
.smf-file-control--uploaded label {
  display: none;
}
.smf-file-control--uploaded .smf-file-control__clear {
  display: inline-block;
}

/* マーク */
.snow-monkey-form mark {
  color: #cf2e2e;
}

/* リンク */
.snow-monkey-form a {
  transition: color var(--transition-normal);
  text-decoration: none;
  color: var(--color-black);
}
.snow-monkey-form a:hover {
  text-decoration: none;
  color: var(--color-hover-link);
}

/* プライバシーポリシー */
.is-privacypolicy .smf-item__label {
  display: none;
}

/* 確認ボタン */
.snow-monkey-form[data-screen=confirm] .wp-block-snow-monkey-forms-item .smf-item {
  margin: 30px auto 0 0;
}
.snow-monkey-form[data-screen=confirm] .is-privacypolicy .smf-item__label {
  display: block;
}
.snow-monkey-form[data-screen=confirm] .is-privacypolicy .smf-item__description {
  display: none;
}

/* アクションボタン */
.smf-action {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-block-start: clamp(24px, 3.90625vw, 56px);
}
.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}
.smf-action .smf-button-control__control {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-color);
  border-radius: 5px;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}
.smf-action .smf-button-control__control[data-action=confirm], .smf-action .smf-button-control__control[data-action=complete] {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 30px;
  background: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-color);
  min-width: 210px;
  width: 100%;
  padding: 10px 15px;
}
.smf-action .smf-button-control__control[data-action=confirm]::after, .smf-action .smf-button-control__control[data-action=complete]::after {
  content: "";
  position: absolute;
  right: 15px;
  mask: url("../images/common/arrow-2.svg") center no-repeat;
  mask-size: contain;
  background: currentcolor;
  width: 15px;
  height: 15px;
}
.smf-action .smf-button-control__control[data-action=confirm]:focus-visible, .smf-action .smf-button-control__control[data-action=confirm]:hover, .smf-action .smf-button-control__control[data-action=confirm]:active, .smf-action .smf-button-control__control[data-action=complete]:focus-visible, .smf-action .smf-button-control__control[data-action=complete]:hover, .smf-action .smf-button-control__control[data-action=complete]:active {
  background: var(--brand-color);
  color: var(--color-white);
}
.smf-action .smf-button-control__control[data-action=back] {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 30px;
  background: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-color);
  min-width: 210px;
  width: 100%;
  padding: 10px 15px;
}
.smf-action .smf-button-control__control[data-action=back]::after {
  content: "";
  position: absolute;
  right: 15px;
  mask: url("../images/common/arrow-2.svg") center no-repeat;
  mask-size: contain;
  background: currentcolor;
  width: 15px;
  height: 15px;
}
.smf-action .smf-button-control__control[data-action=back]:focus-visible, .smf-action .smf-button-control__control[data-action=back]:hover, .smf-action .smf-button-control__control[data-action=back]:active {
  background: var(--brand-color);
  color: var(--color-white);
}

/* 住所自動入力 */
div#autozip {
  display: none !important;
}

/* ================================
 * トップスライド
 * ================================ */
.main__slide {
  position: relative;
  margin-bottom: 200px;
}

.swiper-container {
  z-index: 0;
  position: relative;
  overflow: hidden;
  width: 60%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .swiper-container {
    width: 100%;
  }
}

.swiper-wrapper {
  display: flex;
  transition-property: transform;
}

.swiper-slide {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.swiper-slide picture {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  object-fit: contain;
  width: 100%;
  max-width: 100%;
}

/* ------ ナビゲーション ------ */
.swiper__navigation-next {
  content: "";
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 30px;
  mask-image: url(../images/common/slide-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: var(--color-white);
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .swiper__navigation-next {
    display: none;
  }
}

.swiper__navigation-prev {
  content: "";
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 30px;
  mask-image: url(../images/common/slide-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  transform: rotate(180deg);
  background-color: var(--color-white);
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .swiper__navigation-prev {
    display: none;
  }
}

/* ------ 一時お知らせ ------ */
.top-main-news {
  position: absolute;
  bottom: 100%;
  left: 0%;
  max-width: 250px;
}
@media screen and (max-width: 1024px) {
  .top-main-news {
    max-width: 200px;
  }
}

/* ------ キャッチコピー ------ */
.slide__catchphrase {
  z-index: 1;
  position: absolute;
  top: 80%;
  left: 12%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--color-white);
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .slide__catchphrase {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 576px) {
  .slide__catchphrase {
    left: 6%;
  }
}

/* キャッチコピー 共通 */
.slide__catchphrase-item {
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
  margin: 0;
}

/* キャッチコピー アイテム1 */
.slide__catchphrase-item01 {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 46px);
}
@media screen and (max-width: 768px) {
  .slide__catchphrase-item01 {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .slide__catchphrase-item01 {
    font-size: 20px;
  }
}

/* キャッチコピー アイテム2 */
.slide__catchphrase-item02 {
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 24px);
}
@media screen and (max-width: 768px) {
  .slide__catchphrase-item02 {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .slide__catchphrase-item02 {
    font-size: 16px;
  }
}

/* ------ ページネーション ------ */
.swiper-pagination {
  z-index: 10;
  position: absolute;
  bottom: -150px !important;
  text-align: center;
  transition: opacity var(--duration-normal);
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .swiper-pagination {
    bottom: -120px !important;
  }
}
.swiper-pagination-bullet {
  width: 100px;
  height: 6px;
  background-color: #E5E0CF;
  opacity: 1;
  border-radius: inherit;
}
.swiper-pagination-bullet-active {
  background-color: #58A4DB;
}

/* ------ フェードイン ------ */
.fade-in {
  opacity: 1;
}

/* ------ ズームアップ ------ */
.swiper-slide picture {
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 7s ease;
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.swiper-slide.swiper__zoom--active picture {
  transform: scale(1.05);
}

/* ================================
 * トップページ　スライド下
 * ================================ */
/* ------ ホームコンテンツ ------ */
.home__section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  padding: 20px;
  margin: 150px auto 0;
}

.content__location--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ------ 重要下層ページのリスト ------ */
.home__top-content {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* リスト */
.important-page__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
  list-style: none;
  padding-left: 0;
}

/* アイテム */
.important-page__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-default);
  transition: transform var(--duration-normal);
  background-color: var(--color-white);
  width: 360px;
  height: 460px;
}
.important-page__list-item:hover {
  transform: translateY(4px);
}

/* リンク */
.important-page__list-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}

/* 画像アイコン */
.important-page__list-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}

/* テキストエリア */
.important-page__list-textarea {
  text-align: start;
  width: 100%;
  height: 50%;
}

/* タイトル */
.important-page__list-title {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #A1BEE6;
  font-weight: 700;
  font-size: 28px;
  color: #265CA7;
  width: fit-content;
  padding-right: 35px;
}
.important-page__list-title::before {
  content: "";
  position: absolute;
  right: 0;
  border: 1px solid var(--brand-color);
  border-radius: 100%;
  width: 26px;
  height: 26px;
  margin: auto;
}
.important-page__list-title::after {
  content: "";
  position: absolute;
  right: 5px;
  mask-image: url(../images/common/arrow-2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: var(--brand-color);
  width: 14px;
  height: 14px;
  margin: auto;
}

/* テキスト */
.important-page__list-text {
  font-weight: 500;
  font-size: 18px;
  width: 100%;
  margin-top: 10px;
}

/* ------ ホームデフォルトタイトル ------ */
.home__title-container {
  display: flex;
  justify-content: center;
}

/* タイトル */
.home__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: clamp(56px, 4.1vw, 80px);
  color: #9CB9E3;
}

.home__title--left {
  align-items: flex-start;
}

.home__title-position--top {
  position: relative;
  top: -60px;
}
@media screen and (max-width: 1600px) {
  .home__title-position--top {
    top: -50px;
  }
}
@media screen and (max-width: 768px) {
  .home__title-position--top {
    top: -45px;
  }
}

/* サブタイトル */
.home__subtitle {
  font-weight: 500;
  font-size: clamp(24px, 1.6vw, 32px);
  color: var(--color-black);
}

/* ------ お知らせ ------ */
/* 背景 */
.background-news {
  padding-bottom: 50px;
}
.background-news::before {
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #FCFCF5;
  width: 100%;
  height: 100%;
}

.news__wrap {
  max-width: 900px;
  width: 100%;
}

/* タブ */
.news-tab__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

/* アイテム */
.news-tab__list-item {
  padding: 8px 20px;
  font-size: 14px;
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}
@media screen and (max-width: 768px) {
  .news-tab__list-item {
    font-size: 13px;
    padding: 6px 14px;
  }
}
.news-tab__list-item:hover {
  background-color: #e0e0e0;
}
.news-tab__list-item.is-active {
  border-color: var(--brand-color);
  background-color: var(--brand-color);
  color: var(--color-white);
}

/* リスト */
.news-cards {
  display: flex;
  flex-direction: column;
}

/* 投稿記事 */
.news-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
  padding: 20px;
}

/* 日付・カテゴリー */
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 日付 */
.news-card__date {
  font-weight: 500;
  font-size: 16px;
  min-width: 85px;
  width: 100%;
}

/* カテゴリー */
.news-card__category {
  display: flex;
  border: 1px solid #A1BEE6;
  background-color: var(--color-white);
  min-width: 100px;
  width: 100%;
}

.news-card__category-link {
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  padding: 3px 5px;
}

/* 投稿タイトル */
.news-card__title {
  display: flex;
  width: 100%;
}

.news-card__title-link {
  font-weight: 500;
  font-size: 16px;
  width: 100%;
}

/* ------ 会社概要 ------ */
.home__about {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .home__about {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 60px;
  }
}

/* 画像 */
.home__about-img {
  z-index: -1;
  position: relative;
  right: 50px;
  bottom: 0;
  max-width: 520px;
}
@media screen and (max-width: 1024px) {
  .home__about-img {
    right: auto;
    max-width: 800px;
  }
}

/* テキストエリア */
.home__about-textarea {
  background-color: var(--color-white);
  min-width: 650px;
  width: 100%;
  padding: 20px 20px 20px 0;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .home__about-textarea {
    position: relative;
    top: -30px;
    min-width: auto;
    margin-top: 0;
  }
}

/* ------ 特徴 ------ */
/* 背景 */
.background-feature {
  max-width: 100%;
  padding-bottom: 50px;
}
.background-feature::before {
  z-index: -1;
  content: "";
  position: absolute;
  background-image: url(../images/top/background-feature.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

/* コンテンツ */
.feature-box {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.feature-box__inner {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 200px;
  height: 100%;
  background-color: var(--color-white);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .feature-box__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
  }
}

/* コンテンツ スマホ用 */
.feature-box__inner--sp {
  display: flex;
  align-items: center;
}

/* 数字コンテンツ */
.feature-box__dt {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  height: auto;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .feature-box__dt {
    min-width: 100px;
  }
}
.feature-box__dt::after {
  content: "";
  position: absolute;
  right: 10px;
  background-color: #A1BEE6;
  width: 1px;
  height: 100%;
}

/* ポイント */
.feature-box__point {
  font-family: var(--font-sub);
  font-size: 26px;
  color: #A1BEE6;
}
@media screen and (max-width: 768px) {
  .feature-box__point {
    font-size: 16px;
  }
}

/* 数字 */
.feature-box__number {
  line-height: 1;
  font-family: var(--font-sub);
  font-size: 80px;
  color: #A1BEE6;
}
@media screen and (max-width: 768px) {
  .feature-box__number {
    font-size: 40px;
  }
}

/* テキストエリア */
.feature-box__textarea {
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .feature-box__textarea {
    font-size: 15px;
  }
}

/* タイトル */
.feature-box__title {
  font-weight: 700;
  font-size: 26px;
  color: var(--brand-color);
}
@media screen and (max-width: 768px) {
  .feature-box__title {
    font-size: 20px;
  }
}

/* テキスト */
.feature-box__text {
  font-size: 16px;
  margin-top: 10px;
}

/* ------ 数字で見る ------ */
/* 現在日付 */
.our-facts__update-history {
  font-weight: 400;
  font-size: 16px;
  margin-top: 30px;
}

/* リスト */
.our-facts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  max-width: 1000px;
  width: 100%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .our-facts__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

/* アイテム */
.our-facts__list-item {
  border: 1px solid #E5E0CF;
  background-color: var(--color-white);
  width: 100%;
  min-height: 180px;
  height: 100%;
  padding: 15px;
}
@media screen and (max-width: 576px) {
  .our-facts__list-item {
    padding: 10px;
  }
}

/* タイトル */
.our-facts__list-title {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
}
@media screen and (max-width: 576px) {
  .our-facts__list-title {
    font-size: 18px;
  }
}

/* 画像・数字 */
.our-facts__list-content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .our-facts__list-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
}

/* 画像 */
.our-facts__list-img {
  display: flex;
  align-items: center;
  max-width: 90px;
  width: 100%;
  height: 100%;
}

/* 数字 */
.our-facts__list-text {
  line-height: 1;
  font-family: var(--font-sub);
  font-size: 55px;
  color: var(--brand-color);
}
@media screen and (max-width: 576px) {
  .our-facts__list-text {
    font-size: 40px;
  }
}

.our-facts__list-smalltext {
  font-family: var(--font-sub);
  font-size: 24px;
  color: var(--brand-color);
}
@media screen and (max-width: 576px) {
  .our-facts__list-smalltext {
    font-size: 18px;
  }
}

/* サブテキスト */
.our-facts__list-subtext {
  text-align: center;
  font-family: var(--font-sub);
  font-size: 18px;
  color: var(--brand-color);
  margin-top: 10px;
}
@media screen and (max-width: 576px) {
  .our-facts__list-subtext {
    font-size: 14px;
  }
}

/* ------ アクセス ------ */
/* 背景 */
.background-access {
  padding-bottom: 50px;
}
.background-access::before {
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #FCFCF5;
  width: 100%;
  height: 100%;
}

/* 会社概要・地図 */
.home__access {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
}

/* 会社概要 */
.company-info {
  display: flex;
  max-width: 400px;
  width: 100%;
}

.company-info__list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
}

.company-info__list-term {
  font-weight: 700;
  font-size: 16px;
  width: 25%;
}

.company-info__list-description {
  font-size: 16px;
  width: 75%;
}

/* マップ */
.company__map {
  display: flex;
  width: 100%;
}

/* ================================
 * 会員専用ページ
 * ================================ */
/* ------ パスワード入力画面 ------ */
.password-form {
  max-width: 1040px;
  width: 100%;
  min-width: 0;
  padding: 0 20px;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .password-form {
    margin: 100px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .password-form {
    margin: 50px auto 0;
  }
}

/* 説明テキスト */
.password-form__text {
  font-size: 20px;
  text-align: center;
}

/* フォーム欄 */
.password-form__form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.password-form__label {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 入力フォーム */
.password-form__input {
  transition: border 0.2s ease-out 0s;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline-offset: 0;
  background: #eee;
  color: #333;
}

/* ================================
 * ニュース一覧・詳細
 * ================================ */
.news__content {
  flex: 1;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

/* ------ ニュース一覧 ------ */
/* リスト */
.news-list__lower {
  display: flex;
  flex-direction: column;
}

/* 投稿記事 */
.news-list__lower-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--color-border);
  padding: 20px;
}
.news-list__lower-item:last-child {
  border-bottom: 2px solid var(--color-border);
}

/* 日付・カテゴリー */
.news-list__lower-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 日付 */
.news-list__lower-time {
  font-weight: 500;
  font-size: 16px;
}

/* カテゴリー */
.news-list__lower-category {
  display: flex;
  justify-content: center;
  border: 1px solid #A1BEE6;
  background-color: var(--color-white);
  font-weight: 500;
  font-size: 12px;
  padding: 3px 5px;
}

/* 投稿タイトル */
.news-list__lower-title {
  font-weight: 500;
  font-size: 16px;
}

/* ------ ニュース詳細ページ ------ */
/* タイトル */
.news__title-group {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  padding-bottom: 15px;
}

.news__title {
  font-weight: 500;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 24px;
  }
}

/* 日付・カテゴリー */
.detail-news__box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

/* 日付 */
.detail-news__time {
  font-weight: 500;
  font-size: 16px;
}

/* カテゴリー */
.detail-news__category.cat-topics {
  display: flex;
  justify-content: center;
  border: 1px solid #A1BEE6;
  background-color: var(--color-white);
  font-weight: 500;
  font-size: 12px;
  padding: 3px 5px;
}

/* コンテンツ内容 */
.detail-news__content {
  margin-top: 60px;
}

/* お知らせ用タイトル（h1） */
h1.wp-block-heading {
  font-weight: 400;
  font-size: 26px;
  color: var(--brand-color);
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  h1.wp-block-heading {
    font-size: 24px;
  }
}

/* お知らせ用タイトル（h2） */
h2.wp-block-heading {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  padding-left: 40px;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  h2.wp-block-heading {
    font-size: 22px;
  }
}
h2.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #A7A4A4;
  width: 30px;
  height: 1px;
}

/* お知らせ用タイトル（h3） */
h3.wp-block-heading {
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
}

/* お知らせ用テキスト */
p.wp-block-paragraph {
  line-height: 1.8;
  font-weight: 400;
  font-size: 16px;
  margin-top: 20px;
}

.wp-block-image {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.wp-block-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.wp-block-list li {
  position: relative;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  padding-left: 20px;
}
.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  align-self: flex-start;
  border-radius: 100%;
  background-color: var(--brand-color);
  width: 8px;
  height: 8px;
  margin-top: 8px;
}

/* ================================
 * 404ページ
 * ================================ */
.error-page {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.sec_page-error {
  padding-bottom: 160px;
}

.page-error_image {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 40px;
}

.page-error_tile-wrap {
  margin-bottom: 40px;
}

.page-error_tile {
  display: grid;
  row-gap: 20px;
  justify-content: center;
}

.page-error_tile-en {
  padding: 0 10px 20px;
  border-bottom: 1px solid #265ca7;
  color: #265ca7;
  font-weight: 400;
  font-size: 64px;
  font-family: "Inter", sans-serif;
}

.page-error_tile-ja {
  font-size: 32px;
  text-align: center;
}

.page-error_text {
  text-align: center;
}

.page-error_bot_wrap {
  margin-top: 35px;
  text-align: center;
}

.page-error_bot {
  display: inline-block;
  min-width: 210px;
  height: 100%;
  padding: 10px 20px;
  border: 1px solid #265ca7;
  border-radius: 25px;
  background-color: #fff;
}

.page-error_bot:hover {
  background-color: #265ca7;
  transition: background-color 0.3s ease;
}

.page-error_bot-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #265ca7;
  font-weight: 700;
}

.btn_icon-arrow {
  padding-left: 20px;
  line-height: 1;
}

.page-error_bot-text .btn_icon-arrow img {
  vertical-align: middle;
}

.page-error_bot:hover .page-error_bot-text {
  color: #fff;
  transition: color 0.3s ease;
}

/* ================================
 * プライバシーポリシー
 * ================================ */
/* ================================
 * リクルート
 * ================================ */
/* ------ サブスライド ------ */
.sub-slider {
  width: 100%;
  margin-top: 200px;
}
.sub-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.sub-slider .swiper-slide {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-slider .swiper-slide {
    max-width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .sub-slider .swiper-slide {
    max-width: 200px;
  }
}
@media screen and (max-width: 576px) {
  .sub-slider {
    margin-top: 150px;
  }
}

/* ------ テキスト ------ */
.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-center {
  text-align: center !important;
}

.fs-big {
  font-size: 1.111em !important;
}

.fs-big-02 {
  font-size: 1.222em !important;
}

.fs-big-03 {
  font-size: 1.333em !important;
}

.fs-small {
  font-size: 0.889em !important;
}

.fs-small-02 {
  font-size: 0.778em !important;
}

.fs-small-03 {
  font-size: 0.667em !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* ------ padding ------ */
.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

/* ------ margin ------ */
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* ------ 位置調整 ------ */
/* 中央 */
.position-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* 右寄せ */
.position-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

/* 左寄せ */
.position-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

/* ------ 注釈テキスト ------ */
.notes-text {
  font-weight: 400;
  font-size: 15px;
}

/* ------ リンクを無効にする ------ */
.disabled-link {
  pointer-events: none;
  color: var(--color-black);
}
.disabled-link:hover {
  color: var(--color-black);
}

/* ------ 電話リンク ------ */
.tel-link {
  position: relative;
  pointer-events: auto;
  transition: color var(--duration-normal);
  color: var(--color-black);
}
@media screen and (max-width: 576px) {
  .tel-link {
    pointer-events: none;
    text-decoration: none;
  }
  .tel-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: var(--color-white);
    width: 100%;
    height: 2px;
  }
}

/* ------ 非表示用 ------ */
.hidden {
  display: none;
}

/* pc 非表示用（md = 768px用） */
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none !important;
  }
}
/* sp 非表示用（md = 768px用） */
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/* pc 非表示用（lg = 1024px用） */
@media screen and (min-width: 1024px) {
  .hidden-lg-pc {
    display: none !important;
  }
}
/* sp 非表示用（lg = 1024px用） */
@media screen and (max-width: 1024px) {
  .hidden-lg-sp {
    display: none !important;
  }
}
/* ------ ドロップダウン ------ */
.has-dropdown {
  display: flex;
  align-items: center;
  height: 100%;
}

/* ------ スクロール時、下から上へ表示 ------ */
.move-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.move-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ------ 会社-イメージカラー ------ */
.brand-color {
  color: var(--brand-color);
}