@charset "UTF-8";
:root {
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --font-default: 'GenJyuuGothicX', sans-serif;
  --header-height: 100px;
  --brand-color: #1776ca;
  --color-black: #000;
  --color-white: #fff;
  --color-red: #e00;
  --color-blue: #00e;
  --color-hover-link: #1776ca;
  --color-border: #D8DDE3;
  --color-border-link: #1776ca;
  --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);
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 80px;
  }
}
/*
  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 {
  overflow-wrap: anywhere;
  font-family: var(--font-default);
  font-size: 18px;
  font-weight: 500;
  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.7777777778;
}
@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.3;
  }
}

/* 本文行間 */
.text {
  line-height: 1.5;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .text {
    line-height: 1.8;
  }
}

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;
  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);
}

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

/* ------ メニュー ------ */
.header__inner {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  height: auto;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    display: none;
  }
}

/* リスト */
.header__mainlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* アイテム */
.header__mainlist-item {
  padding-bottom: 10px;
}

/* リンク */
.header__mainlist-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  transition: color var(--transition-normal);
}
.header__mainlist-link:hover {
  color: var(--color-hover-link);
}

/* サブリスト */
.header__sublist {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

/* サブリンク */
.header__sublist-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  transition: color var(--transition-normal);
}
.header__sublist-link:hover {
  color: var(--color-hover-link);
}

/* ------ ドロップメニュー ------ */
.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(--color-hover-link);
  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: 16px;
  width: 100%;
  height: 100%;
}
.header__dropdown-list-link:hover {
  color: var(--color-hover-link);
}

/* ------ ハンバーガーメニュー　ボタン ------ */
.header-spgnavtrigger {
  z-index: 1001;
  position: fixed;
  top: 15px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: var(--color-black);
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .header-spgnavtrigger {
    display: none;
  }
}
.header-spgnavtrigger span, .header-spgnavtrigger::before, .header-spgnavtrigger::after {
  content: "";
  position: absolute;
  background-color: var(--color-white);
  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] {
  margin-right: 15px;
}
.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);
}

/* ------ 検索欄 ------ */
.search-form {
  display: flex;
  align-items: center;
}
.search-reader-text {
  position: absolute;
  overflow: hidden;
  clip-path: inset(50%);
  word-wrap: normal !important;
  border: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
}
.search-box {
  border: 1px solid #333;
  border-radius: 6px;
  outline-offset: 0px;
  margin-right: 10px;
  padding: 5px;
}
.search-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 30px;
  height: 30px;
}
.search-button::before {
  content: "";
  position: absolute;
  right: 0;
  mask-image: url(../images/common/search-icon.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background-color: #254092;
  width: 32px;
  height: 32px;
}
.search-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .search-sp {
    position: fixed;
    top: 80px;
    right: 30px;
    display: block;
  }
}

/* ================================
 * ハンバーガーメニュー
 * ================================ */
.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;
}
@media screen and (min-width: 768px) {
  .gnav {
    display: none;
  }
}
.gnav[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

/* リンク */
.gnav__list-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-normal);
  color: var(--color-black);
  min-height: 60px;
  padding-right: 60px;
  padding-left: 20px;
}
.gnav__list-link:hover {
  opacity: 0.7;
}

/* ハンバーガーメニュー内 ボタン */
.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: #D8DDE3;
  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 {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .main {
    margin-top: 60px;
  }
}

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

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

/* 各コンテンツ */
.main__content {
  flex: 1;
  max-width: 1040px;
  width: 100%;
  min-width: 0;
  padding: 0 20px;
  margin: 150px auto 0;
}

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

/* ================================
 * フッター
 * ================================ */
.footer {
  display: flex;
  background-color: #f1f3f5;
  margin-top: 100px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  max-width: 1240px;
  width: 100%;
  padding: 30px 20px 0;
  margin: 0 auto;
}

/* ------ フッターメインメニュー ------ */
.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: 10px 0 5px 0;
}
.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;
}

/* リンク */
.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__importantlist {
  display: flex;
  gap: 60px;
  margin: 50px 0 15px;
}
@media screen and (max-width: 768px) {
  .footer__importantlist {
    justify-content: center;
  }
}

/* リンク */
.footer__importantlist-link {
  position: relative;
  background: linear-gradient(to right, var(--color-hover-link) 50%, var(--color-black) 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position var(--duration-slow);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
}
.footer__importantlist-link:hover {
  background-position: 0 100%;
  color: transparent;
}

/* ------ その他リスト ------ */
.footer__othersmenu-wrap {
  padding: 30px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.footer__otherslist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  width: 100%;
}

/* ------ 下部メニュー ------ */
.footer__profiles {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  font-weight: 700;
  font-size: 14px;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .footer__profiles {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* アドレス */
.footer__address {
  font-style: normal;
  text-align: center;
}

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

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

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.breadcrumb__list-link {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.breadcrumb__list-link::before {
  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;
  background-color: var(--color-black);
  width: 12px;
  height: 12px;
  margin: auto;
}

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

.default-button__link {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
  transition: color var(--duration-normal), background var(--duration-normal);
  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);
}

/* ------ 下線が左から表示 ------ */
.buttom02-link {
  position: relative;
  display: flex;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
}
.buttom02-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  transform: translateX(-30%);
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  border-bottom: 1px solid var(--color-border-link);
  width: 100%;
}
.buttom02-link:hover {
  transform: translateX(0);
}
.buttom02-link:hover::after {
  transform: translateX(0);
  opacity: 1;
}

/* ================================
 * サイドメニュー
 * ================================ */
.main__aside {
  position: sticky; /* スクロールに追従 */
  top: 20px;
  flex-shrink: 0;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .main__aside {
    position: static; /* スマホはstickyを解除 */
    width: 100%;
  }
}

/* ローカルナビ本体 */
.localnav {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

/* タイトル */
.localnav__title {
  margin: 0;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: bold;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .localnav__title {
    position: relative;
    cursor: pointer;
  }
  .localnav__title::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transition: transform 0.2s ease;
  }
  .localnav__title .is-open::after {
    transform: translateY(-25%) rotate(-135deg);
  }
}

.localnav__title-link {
  color: inherit;
  text-decoration: none;
}
.localnav__title-link:hover {
  text-decoration: underline;
}

/* リスト */
.localnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .localnav__list[data-localnav] {
    display: none; /* JSで開閉制御 */
  }
  .localnav__list[data-localnav] .is-open {
    display: block;
  }
}

/* アイテム */
.localnav__list-item {
  border-bottom: 1px solid #e0e0e0;
}
.localnav__list-item:last-child {
  border-bottom: none;
}

/* リンク */
.localnav__list-link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.localnav__list-link:hover {
  background-color: #f5f5f5;
  color: #0066cc;
}
.localnav__list-link.active {
  background-color: #0066cc;
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}

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

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

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

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

/* テキスト */
.two-columu__text {
  font-weight: 500;
  font-size: 18px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .two-columu__text {
    font-size: 16px;
    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-columu__title-top {
  font-weight: 700;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .two-columu__title-top {
    font-size: 22px;
  }
}

/* ================================
 * トップスライド
 * ================================ */
.main__slide {
  position: relative;
}

.swiper-container {
  z-index: 0;
  position: relative;
  overflow: hidden;
  width: 80%;
  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/arrow-2.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/arrow-2.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;
  }
}

/* スライド ページネーション */
.swiper-pagination {
  z-index: 10;
  position: absolute;
  text-align: center;
  transition: opacity --duration-normal;
  transform: translate3d(0, 0, 0);
}
.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: var(--color-white);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-blue);
}

/* キャッチコピー */
.slide__catchphrase {
  z-index: 1;
  position: absolute;
  right: 6%;
  bottom: 6%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

/* キャッチコピー */
.slide__catchphrase-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  margin: 0;
}

/* キャッチコピー アイテム1 */
.slide__catchphrase-item01 {
  background: rgba(247, 247, 243, 0.8);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.3em;
  text-align: center;
  padding: 5px 15px 5px 25px;
}

/* キャッチコピー アイテム2 */
.slide__catchphrase-item02 {
  background: rgba(247, 247, 243, 0.8);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.3em;
  text-align: center;
  padding: 5px 15px 5px 25px;
}

/* フェードイン */
.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: 1000px;
  width: 100%;
  padding: 20px;
  margin: 100px auto 0;
}

/* ホームタイトル */
.home__title-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 50px;
}
.home__title-wrap::before {
  content: "";
  position: absolute;
  bottom: -15px;
  background-color: var(--color-blue);
  width: 35%;
  height: 3px;
}

.home__title {
  font-weight: 700;
  font-size: 30px;
}

/* ------ お知らせ ------ */
.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%;
}

/* ================================
 * ニュース一覧・詳細
 * ================================ */
/* ================================
 * 概要
 * ================================ */
/* ================================
 * アクセス
 * ================================ */
/* ================================
 * お問い合わせ
 * ================================ */
/* Snow Monkey Forms */
/* フォーム全体 */
.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-color: 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-color: #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 #208D61;
  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] {
  min-width: 260px;
  padding: 12px 24px;
  gap: 8px;
  background-color: #208D61;
  color: var(--color-white);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.smf-action .smf-button-control__control[data-action=confirm]::before, .smf-action .smf-button-control__control[data-action=complete]::before {
  width: 15px;
  height: 15px;
  background: currentcolor;
  content: "";
  mask: url("../images/common/arrow-1.svg") center no-repeat;
  mask-size: contain;
}
.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-color: var(--color-white);
  color: #208D61;
}
.smf-action .smf-button-control__control[data-action=back] {
  min-width: 260px;
  padding: 11px 24px;
  gap: 8px;
  background-color: var(--color-white);
  color: #208D61;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.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-color: #208D61;
  color: var(--color-white);
}

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

/* ================================
 * プライバシーポリシー
 * ================================ */
/* ================================
 * 404ページ
 * ================================ */
.error-page {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

/* ------ テキスト ------ */
.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;
}

/* ------ 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);
}
.tel-link:hover {
  color: var(--color-hover-link);
}
.tel-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: var(--color-hover-link);
  width: 100%;
  height: 2px;
}
@media screen and (max-width: 576px) {
  .tel-link {
    pointer-events: none;
    text-decoration: none;
  }
}

/* ------ 非表示用 ------ */
.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);
}