@charset "UTF-8";
/*-------------------------
// コンポーネント（Component）

接頭辞: c-
説明: 再利用可能なUIコンポーネントに使用します。
---------------------------*/

/*-------------------------
// ユーティリティ（Utility）

接頭辞: u-
説明: 単一のプロパティやスタイルを提供するクラスに使用します。
---------------------------*/

/*-------------------------
// レイアウト（Layout）

接頭辞: l-
説明: ページのレイアウト構造を定義するクラスに使用します。
---------------------------*/

/*-------------------------
// スコープ（Scope）

接頭辞: s-
説明: 特定のコンテキストやページに限定されたスタイルに使用します。
---------------------------*/
/*---------------------------
Scale
---------------------------- */
:root {
  --scale-2: min(100vw / 375 * 2, 2px);
  --scale-4: min(100vw / 375 * 4, 4px);
  --scale-8: min(100vw / 375 * 8, 8px);
  --scale-12: min(100vw / 375 * 11, 12px);
  --scale-14: min(100vw / 375 * 12, 14px);
  --scale-16: min(100vw / 375 * 13, 16px);
  --scale-18: min(100vw / 375 * 14, 18px);
  --scale-20: min(100vw / 375 * 15, 20px);
  --scale-24: min(100vw / 375 * 16, 24px);
  --scale-32: min(100vw / 375 * 18, 32px);
  --scale-40: min(100vw / 375 * 20, 40px);
  --scale-56: min(100vw / 375 * 40, 56px);
  --scale-80: min(100vw / 375 * 56, 80px);
}
/*---------------------------
Layout
---------------------------- */
:root {
  --width-full: 100%;
  --width-mid: 1080;
  --padding-block: var(--scale-80);
  --padding-inline: var(--scale-20);
  --gap-row: var(--scale-56);
  --gap-column: var(--scale-40);
}

/*---------------------------
全体のレイアウト
---------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  /* iOS 15 対策 */
}

body {
  background: var(--surface);
  position: relative;
  color: var(--on-surface);
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media not screen and (max-width: 768px) {
  .sp {
    display: none !important;
  }
}

/* -----------------------------
  画像の配置スタイル
----------------------------- */
.wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image.alignright {
  margin-left: auto;
  margin-right: 0;
}

.wp-block-image.alignleft {
  margin-left: 0;
  margin-right: auto;
}

/*------------------------------
文字
-------------------------------*/
body {
}

span {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
}

strong {
}

p {
}

/*------------------------------
リンク、ボタン
-------------------------------*/
a {
  color: inherit;
}

.button :is(a, button) {
}

nav ul li a:has([class*="menu-icon"]) {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--scale-8);
  padding: var(--scale-16, 16px);
  text-align: center;
  font-size: var(--scale-20, 20px);
  justify-content: center;
}

nav ul li a[class*="button-"] span {
  flex-grow: 0;
}

nav ul li a[class*="button-"] span.menu-icon-left {
  flex-grow: 0;
}

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 130%;
}

.button-style-border {
  border: var(--scale-4, 4px) solid;
}

.button-color-transparent {
  background-color: transparent;
  color: var(--on-surface);
}

.button-color-default {
  background-color: #0d47a1;
  color: #ffffff;
}

.cta-button-color-primary {
  background-color: var(--button-primary, #17962e);
  color: var(--on-button-primary, #ffffff);
}

.cta-button-color-secondary {
  background-color: var(--button-secondary, #ff9800);
  color: var(--on-button-secondary, #ffffff);
}

.button-color-surface {
  background-color: var(--surface);
  color: var(--on-surface);
}

.button-color-primary {
  background-color: var(--primary);
  color: var(--on-primary);
}

.button-color-secondary {
  background-color: var(--secondary);
  color: var(--on-secondary);
}

.button-color-tertiary {
  background-color: var(--tertiary);
  color: var(--on-tertiary);
}

.button-shadow-small {
  box-shadow: 0px var(--scale-4, 4px) var(--scale-8, 8px) 0px
    rgba(0, 0, 0, 0.16);
}

.button-shadow-large {
  box-shadow: 0px var(--scale-8, 8px) var(--scale-16, 16px) 0px
    rgba(0, 0, 0, 0.16);
}

.button-shape-rounded {
  border-radius: var(--scale-8);
}

.button-shape-elongated {
  border-radius: 9999px;
}

.button-width-short {
  width: 10em;
}

.button-width-long {
  width: 100%;
  max-width: 560px;
}

/*-------------------------------
画像
---------------------------------*/
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

/*-------------------------
テーブル
---------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------------
フォーム
---------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="color"],
input[type="file"],
input[type="range"],
textarea {
  border: 1px solid var(--border-color, #aaa);
  border-radius: 2px;
  padding: 0.5em 1em;
  width: 100%;
  background-color: var(--surface);
}

input[type="submit"] {
  display: flex;
  max-width: 400px;
  padding: var(--scale-20, 20px) var(--scale-16, 16px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 1000px;
  background: var(--tertiary, #ee6e00);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-24, 24px);
  font-style: normal;
  font-weight: 700;
  width: 100%;
  margin-inline: auto;
  line-height: normal;
}

th.required:before {
  content: "必須";
  display: inline-block;
  font-size: 0.9em;
  padding: 0.2em 0.4em;
  background-color: var(--bgcolor-button-cta);
  color: var(--text-color-on-dark);
  font-weight: normal;
  line-height: 1;
}

select {
  appearance: auto;
}

/*-------------------------
リスト
---------------------------*/
ol {
  list-style: auto inside;
}

/*==========================
// #header
============================*/
#header {
  /*height: var(--header-height);*/
  position: sticky;
  background: var(--surface);
  top: 0;
  z-index: 2;
  padding-left: var(--padding-inline, 40px);
  padding-right: var(--padding-inline, 40px);
  padding-top: var(--scale-8, 8px);
  padding-bottom: var(--sacle-8, 8px);
  gap: var(--scale-16);

  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  align-self: stretch;
}

#header .header__container {
  margin-inline: auto;

  display: flex;
  max-width: var(--content-m, 1080px);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  height: 100%;
}

#header nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--scale-16, 16px);
  height: 100%;
}

#header .header__nav {
  display: flex;
  align-items: center;
  gap: var(--scale-16, 16px);
  color: var(--on-surface, #263238);
  text-align: center;
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */
}

#header .header__logo {
  height: 100%;
  flex: 0 0 auto;
}

#header .header__logo img {
  width: auto;
  height: auto;
  max-height: 100%;
}

#header img {
  width: auto;
  height: auto;
  max-height: 100%;
}

/*============================
#hamburger--button
============================*/
div#hamburger-button {
  width: 40px;
  aspect-ratio: 1 / 1;
  transition: 0.2s ease;
  pointer-events: none;
  background-color: var(--surface-variant);
  right: 0;
  top: 0;
  position: fixed;
  z-index: 100;
  display: flex;
  pointer-events: all;
  align-items: center;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

div#hamburger-button.open {
  gap: 0;
}

div#hamburger-button hr {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--on-surface);
  transition: 0.2s ease;
  border: none;
}

div#hamburger-button.open {
  background-color: var(--primary);
}

div#hamburger-button.open hr {
  background-color: var(--on-primary);
}

div#hamburger-button hr:nth-of-type(3) {
}

div#hamburger-button.open hr:nth-of-type(1) {
  transform: translateY(50%) rotate(45deg);
}

div#hamburger-button.open hr:nth-of-type(2) {
  display: none;
}

div#hamburger-button.open hr:nth-of-type(3) {
  transform: translateY(-50%) rotate(135deg);
}

div#hamburger-button div.hamburger__container.container {
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: 0.2s ease;
}

/*============================
#hamburger
============================*/
section#hamburger {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  width: 100vw;
  height: 100vh;
  z-index: 50;
  display: flex;
  justify-content: right;
  transition: 0.2s ease;
  transform: translateX(100%);
}

section#hamburger.open {
  transform: translateX(0%);
  background: rgba(0, 0, 0, 0.16);
}

section#hamburger div.hamburger__container.container {
  width: 80%;
  max-width: 400px;
  background: var(--surface, #fff);
  justify-content: right;
  padding: var(--padding-block) var(--padding-inline);
}

section#hamburger div.hamburger__container.container nav {
  display: flex;
  flex-direction: column;
  gap: var(--scale-24);
}

section#hamburger div.hamburger__container.container nav ul.hamburger__nav {
  display: flex;
  align-items: center;
  color: var(--on-surface, #263238);
  text-align: center;
  font-size: var(--typo-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  flex-direction: column;
}

section#hamburger div.hamburger__container.container nav ul.hamburger__nav li {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

section#hamburger
  div.hamburger__container.container
  nav
  ul.hamburger__nav
  li
  a {
  padding: var(--scale-8);
  display: block;
}

@media screen and not (max-width: 1080px) {
  div#hamburger-button {
    display: none;
  }

  section#hamburger,
  section#hamburger.open {
    transform: translateX(100%);
  }
}

/*==========================
pagination
============================*/

nav.navigation.pagination {
  margin-top: min(100vw / 750 * 40, 40px);
}

nav.navigation.pagination h2.screen-reader-text {
}

nav.navigation.pagination div.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  font-size: min(20rem * 1.414 + 9.79px, 20px);
}

nav.navigation.pagination div.nav-links .page-numbers {
  width: 2em;
  line-height: 1;
  text-align: center;
  padding: 0.5em;
  background-color: var(--bgcolor-secondary);
}

nav.navigation.pagination div.nav-links span.page-numbers.current {
  color: var(--text-color-on-dark);
  background-color: var(--text-color-link);
}

nav.navigation.pagination div.nav-links a.page-numbers {
}

nav.navigation.pagination div.nav-links a.next.page-numbers {
}

div.newer-older {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  width: 100%;
  font-size: min(20rem * 1.414 + 9.79px, 20px);
  justify-content: space-between;
}

div.newer-older p.older {
}

div.newer-older p a {
  width: 2em;
  line-height: 1;
  text-align: center;
  padding: 0.5em;
  text-decoration: none;
  color: var(--text-color-on-dark);
  background-color: var(--text-color-link);
}

div.newer-older p.newer {
}

div.newer-older p.newer a {
}

/*============================
404 notfound
============================*/
section#notfound.notfound {
  padding-left: min(100vw / 750 * 48, 48px);
  padding-right: min(100vw / 750 * 48, 48px);
}

section#notfound.notfound div.container {
  text-align: center;
}

/*============================
404 notfound
============================*/

div.breadcrumbs {
  font-size: min(14rem * 1.414 + 9.79px, 14px);
  border-top: 1px solid var(--color-decoration);
  border-bottom: 1px solid var(--color-decoration);
  padding-top: 1em;
  padding-bottom: 1em;
}

div.breadcrumbs div.container {
}

div.breadcrumbs div.container span {
}

div.breadcrumbs div.container span a {
  color: var(--text-color-primary);
}

div.breadcrumbs div.container span a:hover {
  text-decoration: underline;
}

div.breadcrumbs div.container span a.home span {
}

div.breadcrumbs div.container span span.post.post-page.current-item {
  font-weight: bold;
}
