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

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

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

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

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

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

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

接頭辞: s-
説明: 特定のコンテキストやページに限定されたスタイルに使用します。
---------------------------*/
/*---------------------------
Scale
---------------------------- */
:root {
  --scale-2: min(100vw / 375 * 1, 2px);
  --scale-4: min(100vw / 375 * 2, 4px);
  --scale-8: min(100vw / 375 * 4, 8px);
  --scale-12: min(100vw / 375 * 6, 12px);
  --scale-16: min(100vw / 375 * 8, 16px);
  --scale-20: min(100vw / 375 * 10, 20px);
  --scale-24: min(100vw / 375 * 12, 24px);
  --scale-32: min(100vw / 375 * 16, 32px);
  --scale-40: min(100vw / 375 * 20, 40px);
  --scale-56: min(100vw / 375 * 28, 56px);
  --scale-80: min(100vw / 375 * 40, 80px);
  --scale-120: min(100vw / 375 * 60, 120px);
  --scale-320: min(100vw / 375 * 240, 320px);
  --scale-400: min(100vw / 375 * 280, 400px);
}

/*---------------------------
Typo
---------------------------- */
:root {
  --typo-14: min(100vw / 375 * 13, 14px);
  --typo-16: min(100vw / 375 * 14, 16px);
  --typo-18: min(100vw / 375 * 15, 18px);
  --typo-20: min(100vw / 375 * 18, 20px);
  --typo-24: min(100vw / 375 * 20, 24px);
  --typo-32: min(100vw / 375 * 22, 32px);
  --typo-40: min(100vw / 375 * 26, 40px);
}

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

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

body {
  position: relative;
  color: var(--on-surface);
}
section {
  padding: var(--section-padding-block) var(--section-padding-inline);
}

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

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

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

span {
  display: inline-block;
}

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

strong {
}

p {
}

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

.button :is(a, button) {
}

nav ul li a[class*="button-"] {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--scale-8);
  padding: calc(1em / 20 * 16) calc(1em / 20 * 24);
  text-align: center;
}

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

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

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

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

.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: 15em;
}

/*-------------------------------
画像
---------------------------------*/
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"] {
  margin-top: 1em;
  font-size: 1.2em;
  background-color: var(--primary, #17962e);
  color: var(--on-primary, #fff);
  border: none;
  width: fit-content;
  line-height: 1;
  padding: 0.8em 2em;
}

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

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

/*==========================
// header
============================*/
header {
  height: var(--header-height);
  position: sticky;
  background: var(--surface);
  top: 0;
  z-index: 2;
  padding-left: var(--section-padding-inline);
  padding-right: var(--section-padding-inline);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1em;
  max-width: none;
  justify-content: space-between;
}

.header__cta a {
  font-size: var(--typo-20);
}

.header__logo {
  height: 100%;
}

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

/*---------------------
// ロゴ
-----------------------*/
header .container .header__logo {
  height: 100%;
  flex: 1 0 80px;
  max-width: 120px;
}

header .container .header__logo a {
  display: inline-block;
  height: 100%;
}

header .container .header__logo a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/*---------------------
// ナビ
-----------------------*/

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  flex: 1 1 auto;
  justify-content: flex-end;
}

header nav ul.header__nav {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  gap: 1em;
  align-items: center;
  justify-content: right;
}

header ul.header__cta {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

/*============================
#hamburger
============================*/
section#hamburger.hamburger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.2s ease;
  pointer-events: none;

  @media (width > 834px) {
    display: none;
  }
}

section#hamburger.hamburger.active {
  pointer-events: all;
}

section#hamburger.hamburger button {
  display: block;
  height: 2em;
  width: 2em;
  position: fixed;
  right: 1em;
  top: 1em;
  z-index: 100;
  pointer-events: all;
}

section#hamburger.hamburger button hr {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 0.1em;
  width: 2em;
  background: var(--text-color-primary);
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: 0.2s ease;
}

section#hamburger.hamburger button hr:nth-of-type(1) {
  transform: translate(-50%, calc(-50% - 0.5em));
}

section#hamburger.hamburger button hr:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + 0.5em));
}

section#hamburger.hamburger.active button hr:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

section#hamburger.hamburger.active button hr:nth-of-type(2) {
  opacity: 0;
}

section#hamburger.hamburger.active button hr:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}

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

section#hamburger.hamburger.active div.hamburger__container.container {
  visibility: visible;
  opacity: 1;
}

section#hamburger.hamburger div.hamburger__container.container nav {
  padding: 5em 2em 2em 2em;
  margin-inline-start: auto;
  margin-inline-end: 0;
  width: fit-content;
  min-width: calc(80vw - 4em);
  height: 100%;
  background-color: #fff;
  transform: translateX(100%);
  transition: 0.2s ease;
  animation-delay: 2s;
}

section#hamburger.hamburger.active div.hamburger__container.container nav {
  transform: translateX(0%);
  animation-delay: 2s;
}

section#hamburger.hamburger
  div.hamburger__container.container
  ul.hamburger__nav
  li {
  margin-bottom: 1em;
}

section#hamburger.hamburger div.hamburger__container.container ul li a {
  font-size: min(18rem * 1.414 + 9.79px, 18px);
}

section#hamburger.hamburger
  div.hamburger__container.container
  ul.hamburger__cta {
}

section#hamburger.hamburger
  div.hamburger__container.container
  ul.hamburger__cta
  li {
}

section#hamburger.hamburger
  div.hamburger__container.container
  ul.hamburger__cta
  li
  a {
}

/*---------------------
// FV
-----------------------*/
.fv img {
  width: 100%;
  max-width: 1366px;
  display: block;
  margin-inline: auto;
}

/*==========================
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 h2 {
}

section#notfound.notfound h2 small {
}

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

section#notfound.notfound div.container a {
}

/*============================
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;
}
