@charset "UTF-8";
/*----------------------------------
Foundation
------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
:root {
  --width-contents-max: 2000px;
  --width-contents: 1080px;
  --color-black: 68, 68, 68;
  --color-sub: 136, 136, 136;
  --color-white: 255, 255, 255;
  --color-grey-bg-base: 230, 230, 230;
  --color-grey: 244, 244, 244;
  --color-grey-input: 237, 237, 237;
  --color-grey-hover: 180, 180, 180;
  --color-attension: 239, 69, 41;
  --color-attension-text: 208, 50, 22;
  --color-note-text: 85, 85, 85;
  --color-border-foot: 128, 128, 128;
  --color-border: 204, 204, 204;
  --color-red-base: 233, 69, 41;
  --color-red: 254, 244, 242;
  --color-red-dark: 249, 181, 169;
  --font-size-80: 8rem;
  --font-size-72: 7.2rem;
  --font-size-64: 6.4rem;
  --font-size-56: 5.6rem;
  --font-size-53: 5.3rem;
  --font-size-48: 4.8rem;
  --font-size-40: 4rem;
  --font-size-38: 3.8rem;
  --font-size-34: 3.4rem;
  --font-size-32: 3.2rem;
  --font-size-28: 2.8rem;
  --font-size-24: 2.4rem;
  --font-size-21: 2.1rem;
  --font-size-18: 1.8rem;
  --font-size-16: 1.6rem;
  --font-size-15: 1.5rem;
  --font-size-14: 1.4rem;
  --font-size-13: 1.3rem;
  --font-size-12: 1.2rem;
  --font-size-11: 1.1rem;
  --font-size-10: 1rem;
  --font-line-height-1: 1;
  --font-line-height-12: 1.2;
  --font-line-height-14: 1.4;
  --font-line-height-15: 1.5;
  --font-line-height-16: 1.6;
  --font-line-height-175: 1.75;
  --font-line-height-18: 1.8;
  --font-line-height-24: 2.4;
  --font-letter-spacing-25: 0.025em;
  --font-letter-spacing-10: 0.1em;
  --font-letter-spacing-2: 0.02em;
  --font-letter-spacing-1: 0.01em;
  --font-letter-spacing-0: 0;
  --font-letter-spacing-4-negative: -0.04em;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-small: 0 4px 4px rgba(0, 0, 0, 0.25);
  --shadow-large: 0px 10px 40px 0px rgba(68, 68, 68, 0.2);
  --shadow-modal: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  --animation-timing-function: cubic-bezier(0.3, 0.3, 0.13, 1);
  --font-family-sans: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-family-zenkakau: "Zen Kaku Gothic Antique", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: middle;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.text-base, .post-page ol, .post-page ul, .p-tabs__link, .p-card-image__text, .p-card-image__name.--text-large, .c-button-base, .c-button-base-white.--text-red, .c-card-bordered__btn, ul.c-list-basic, ol.c-list-basic {
  font-size: var(--font-size-16);
  line-height: var(--font-line-height-175);
  letter-spacing: var(--font-letter-spacing-25);
}

@media (max-width: 768px) {
  .text-base, .post-page ol, .post-page ul, .p-tabs__link, .p-card-image__text, .p-card-image__name.--text-large, .c-button-base, .c-button-base-white.--text-red, .c-card-bordered__btn, ul.c-list-basic, ol.c-list-basic {
    font-size: var(--font-size-14);
  }
}
.text-base-middle, .dialog-profile__name-en, .p-category-menu-list__link, .p-category-menu-list__ttl, .p-category-menu-list-child__link, .p-navigation-local__link, .p-footer-group__logo-group-text, .p-news-list__text, .tag-filter__label, .year-select, .p-filter-year__rss, .p-card__text-sub, .p-card__tags-item, .p-card__text, .p-card__caption, .p-card__btn, .p-card-image__name, .p-card.--btn-only .p-card__btn__subtitle, .p-header-list__link, .p-header-list-child__title-link, .p-header-list-child-list__link, .c-button-base-white, ul.c-list-basic.text-middle li, table.c-table-basic.text-small th,
table.c-table-basic.text-small td, .page-back__link, .c-anchorlink__item {
  font-size: var(--font-size-14);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-25);
}

@media (max-width: 768px) {
  .text-base-middle, .dialog-profile__name-en, .p-category-menu-list__link, .p-category-menu-list__ttl, .p-category-menu-list-child__link, .p-navigation-local__link, .p-footer-group__logo-group-text, .p-news-list__text, .tag-filter__label, .year-select, .p-filter-year__rss, .p-card__text-sub, .p-card__tags-item, .p-card__text, .p-card__caption, .p-card__btn, .p-card-image__name, .p-card.--btn-only .p-card__btn__subtitle, .p-header-list__link, .p-header-list-child__title-link, .p-header-list-child-list__link, .c-button-base-white, ul.c-list-basic.text-middle li, table.c-table-basic.text-small th,
  table.c-table-basic.text-small td, .page-back__link, .c-anchorlink__item {
    font-size: var(--font-size-12);
  }
}
.text-base-small, .post-page figcaption, .p-bread__link, .p-card-image__position, .c-unit, ul.c-list-basic.text-small li, .c-pdf__text, .c-notation {
  font-size: var(--font-size-12);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-0);
}

@media (max-width: 768px) {
  .text-base-small, .post-page figcaption, .p-bread__link, .p-card-image__position, .c-unit, ul.c-list-basic.text-small li, .c-pdf__text, .c-notation {
    font-size: var(--font-size-10);
  }
}
.heading-lv1, .c-page-header__title, .c-page-header.--white .c-page-header__inner:not(:has(img)) .c-page-header__title {
  font-family: var(--font-family-zenkakau);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-56);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-10);
}

.heading-lv2, .post-page h2, .c-page-header__inner:not(:has(img)) .c-page-header__title, .c-post-header__title, .c-heading-lv2 {
  font-family: var(--font-family-zenkakau);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-48);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-2);
}

.heading-lv3, .dialog-profile__name, .post-page h3, .p-card__heading, .c-heading-lv3 {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-32);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-2);
}

.heading-lv4, .post-page h4, .p-card.--btn-only .p-card__btn__title, .c-heading-lv4 {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-24);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-2);
}

@media (max-width: 768px) {
  .heading-lv1, .c-page-header__title, .c-page-header.--white .c-page-header__inner:not(:has(img)) .c-page-header__title {
    font-size: var(--font-size-28);
    line-height: var(--font-line-height-15);
    letter-spacing: var(--font-letter-spacing-2);
  }
  .heading-lv2, .post-page h2, .c-page-header__inner:not(:has(img)) .c-page-header__title, .c-post-header__title, .c-heading-lv2 {
    font-size: var(--font-size-24);
    line-height: var(--font-line-height-15);
    letter-spacing: var(--font-letter-spacing-2);
  }
  .heading-lv3, .dialog-profile__name, .post-page h3, .p-card__heading, .c-heading-lv3 {
    font-size: var(--font-size-21);
    line-height: var(--font-line-height-15);
    letter-spacing: var(--font-letter-spacing-2);
  }
  .heading-lv4, .post-page h4, .p-card.--btn-only .p-card__btn__title, .c-heading-lv4 {
    font-size: var(--font-size-18);
    line-height: var(--font-line-height-15);
    letter-spacing: var(--font-letter-spacing-2);
  }
}
/*----------------------------------
Foundation
------------------------------------*/
/*
  MAIN:general
--------------------------------------------- */
@view-transition {
  navigation: auto;
}
:root {
  view-transition-name: page;
}

::view-transition-old(page),
::view-transition-new(page) {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

html {
  font-size: 62.5%;
  background-color: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: rgba(var(--color-white), 1);
  color: rgba(var(--color-black), 1);
  font-size: var(--font-size-16);
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-line-height-175);
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
  margin: 0;
  width: 100%;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: var(--font-size-14);
  }
}
main {
  position: relative;
}

a {
  text-decoration: none;
  color: rgba(var(--color-black), 1);
  outline-color: rgba(var(--color-black), 1);
  outline-width: 1px;
}

p,
dl {
  text-align: left;
}

p {
  letter-spacing: var(--font-letter-spacing-25);
  margin-top: 56px;
}

@media (max-width: 768px) {
  p {
    margin-top: 40px;
  }
}
p + p {
  margin-top: 16px !important;
}

p + ul,
ul + p {
  margin-top: 16px !important;
}

p.text-base-small {
  margin-top: 20px;
}

p.text-base-small + p.text-base-small {
  margin-top: 20px;
}

a:hover {
  text-decoration: none;
}

input[type=submit] {
  cursor: pointer;
}

@-ms-viewport {
  width: auto !important;
}
img,
video {
  max-width: 100%;
  height: auto;
  width: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

button,
select {
  border: 0;
  text-transform: none;
}

button,
input,
select,
textarea {
  border: 0;
  font-family: inherit;
  outline-color: rgba(var(--color-black), 1);
  outline-width: 1px;
}

button {
  padding: 0;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  outline: none;
}

select {
  background: 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

input {
  border: 0;
  vertical-align: baseline;
}

input[type=button],
input[type=submit] {
  cursor: pointer;
  border-radius: 0;
}

textarea {
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

strong {
  font-weight: var(--font-weight-bold);
}

u {
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--color-black), 1);
  padding-bottom: 1px;
}

/*----------------------------------
Layout
------------------------------------*/
/*----------------------------------
Foundation
------------------------------------*/
.l-wrapper {
  max-width: var(--width-contents-max);
  width: 100%;
  margin: 0 auto;
}

.l-contents {
  max-width: var(--width-contents-max);
  width: 100%;
  margin: 0 auto;
}

.l-contents-inner {
  max-width: var(--width-contents);
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

.l-contents-main {
  padding-top: 100px;
}
.l-contents-main > *:first-child {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .l-contents-main {
    padding-top: 60px;
  }
}
.l-contents-main.--with-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 3.8461538462%;
}
.l-contents-main.--with-side .--side {
  width: 23.0769230769%;
}
.l-contents-main.--with-side .--side > *:first-child {
  margin-top: 0 !important;
}
.l-contents-main.--with-side .--main {
  width: 73.0769230769%;
}
.l-contents-main.--with-side .--main > *:first-child {
  margin-top: 0 !important;
}
.l-contents-main.--with-side .--side-248 {
  width: 23.8461538462%;
}
.l-contents-main.--with-side .--side-248 > *:first-child {
  margin-top: 0 !important;
}
.l-contents-main.--with-side .--main-752 {
  width: 72.3076923077%;
}
.l-contents-main.--with-side .--main-752 > *:first-child {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .l-contents-main.--with-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
  }
  .l-contents-main.--with-side .--side {
    width: 100%;
  }
  .l-contents-main.--with-side .--main {
    width: 100%;
  }
  .l-contents-main.--with-side .--side-248 {
    width: 100%;
  }
  .l-contents-main.--with-side .--side-248 > *:first-child {
    margin-top: 0 !important;
  }
  .l-contents-main.--with-side .--main-752 {
    width: 100%;
  }
  .l-contents-main.--with-side .--main-752 > *:first-child {
    margin-top: 0 !important;
  }
}
.l-box-border {
  border: 1px solid rgba(var(--color-border));
}

/*------------------------------------
component
------------------------------------ */
.c-button-wrapper,
.c-image-wrapper {
  margin-top: 56px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.c-button-wrapper.--flex-col,
.c-image-wrapper.--flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-button-wrapper.--justify-center,
.c-image-wrapper.--justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button-wrapper__figure-ttl,
.c-image-wrapper__figure-ttl {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-24);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-0);
  text-align: center;
  padding-bottom: 13px;
}

@media (max-width: 768px) {
  .c-button-wrapper,
  .c-image-wrapper {
    margin-top: 40px;
  }
  .c-button-wrapper__figure-ttl,
  .c-image-wrapper__figure-ttl {
    font-size: var(--font-size-12);
    padding-bottom: 0px;
  }
}
.c-button-base {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: rgba(var(--color-black), 1);
  color: rgba(var(--color-white), 1);
  font-weight: var(--font-weight-bold);
  padding: 16px 55px 16px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 300px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  justify-content: center;
  height: 100%;
}
@media (any-hover: hover) {
  .c-button-base:hover {
    color: rgba(var(--color-white), 1);
    background-color: rgba(var(--color-attension-text), 1);
  }
}
@media (any-hover: hover) {
  .c-button-base:hover .p-header-list-child__icon {
    background-color: rgba(var(--color-attension), 1);
  }
}
.c-button-base__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 22px;
  height: 8px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/icon_arrow.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/icon_arrow.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-base__icon-external {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/icon_external.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/icon_external.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-base__icon-anchor {
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  display: inline-block;
  width: 22px;
  height: 8px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/icon_arrow.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/icon_arrow.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-base__icon-pdf {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/icon_pdf.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/icon_pdf.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-base__icon-close {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/icon_close.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/icon_close.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .c-button-base {
    width: 100%;
    padding: 14px 47px 14px 30px;
    text-align: center;
    min-width: 100%;
    border-radius: 4px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-button-base__icon {
    right: 16px;
  }
  .c-button-base__icon-external {
    right: 16px;
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .c-button-base__icon-anchor {
    right: 16px;
  }
  .c-button-base__icon-pdf {
    right: 16px;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.c-button-base-white {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(var(--color-white), 1);
  color: rgba(var(--color-black), 1);
  font-weight: var(--font-weight-bold);
  padding: 13px 45px 13px 30px;
  text-align: center;
  min-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgba(var(--color-border), 1);
  border-radius: 4px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.c-button-base-white.--center {
  text-align: center;
  padding: 13px 40px 13px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button-base-white:hover {
  color: rgba(var(--color-attension), 1);
  background-color: rgba(var(--color-red), 1);
  border: 1px solid rgba(var(--color-attension), 1);
}
.c-button-base-white:hover .p-header-list-child__icon {
  background-color: rgba(var(--color-attension), 1);
}
.c-button-base-white__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 22px;
  height: 8px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/icon_arrow.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/icon_arrow.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-base-white__icon-external {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/icon_external.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/icon_external.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.c-button-base-white.--text-red {
  color: rgba(var(--color-attension-text), 1);
  padding: 16px 46px 16px 32px;
  border: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-button-base-white.--text-red:hover {
  color: rgba(var(--color-white), 1);
  background-color: rgba(var(--color-attension-text), 1);
}
.c-button-base-white.--text-red:hover .p-header-list-child__icon {
  background-color: rgba(var(--color-white), 1);
}
.c-button-base-white.--shadow {
  -webkit-box-shadow: var(--shadow-large);
          box-shadow: var(--shadow-large);
}

@media (max-width: 768px) {
  .c-button-base-white {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 12px 45px 12px 30px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 100%;
    border: 1px solid rgba(var(--color-border), 1);
  }
  .c-button-base-white.--center {
    text-align: center;
    padding: 12px 36px 12px 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .c-button-base-white.--text-red {
    padding: 14px 38px 14px 30px !important;
  }
}
.--align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-icon {
  display: block;
  position: relative;
  background-color: rgba(var(--color-white), 1);
  border: 1px solid rgba(var(--color-red-dark), 1);
  color: rgba(var(--color-attension), 1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.c-icon__image.--arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 22px;
  height: 8px;
  background-color: currentColor;
  -webkit-mask: url(/en/assets/img/common/icon/icon_arrow.svg) no-repeat center/contain;
          mask: url(/en/assets/img/common/icon/icon_arrow.svg) no-repeat center/contain;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-icon__image.--external {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: url(/en/assets/img/common/icon/icon_external.svg) no-repeat center/contain;
          mask: url(/en/assets/img/common/icon/icon_external.svg) no-repeat center/contain;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-icon__image.--download {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 17px;
  height: 17px;
  background-color: currentColor;
  -webkit-mask: url(/en/assets/img/common/icon/icon_download.svg) no-repeat center/contain;
          mask: url(/en/assets/img/common/icon/icon_download.svg) no-repeat center/contain;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-icon__image.--pdf {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask: url(/en/assets/img/common/icon/icon_pdf.svg) no-repeat center/contain;
          mask: url(/en/assets/img/common/icon/icon_pdf.svg) no-repeat center/contain;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-icon__image.--excel {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask: url(/en/assets/img/common/icon/icon_xls.svg) no-repeat center/contain;
          mask: url(/en/assets/img/common/icon/icon_xls.svg) no-repeat center/contain;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.c-icon:has(.--excel) {
  color: #528045;
  border: 1px solid rgba(80, 168, 55, 0.4);
}
@media (any-hover: hover) {
  a:hover .c-icon {
    background-color: rgba(var(--color-red), 1);
  }
}

.c-icon-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("/en/assets/img/common/icon/link.svg") no-repeat center/contain;
          mask: url("/en/assets/img/common/icon/link.svg") no-repeat center/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  a:hover .c-icon-arrow {
    background-color: rgba(var(--color-attension-text), 1);
  }
}

@media (max-width: 768px) {
  .c-icon {
    width: 30px;
    height: 30px;
  }
  .c-icon__image.--arrow {
    width: 16px;
    height: 6px;
  }
  .c-icon__image.--external {
    width: 12px;
    height: 12px;
  }
  .c-icon__image.--download {
    width: 16px;
    height: 16px;
  }
  .c-icon__image.--pdf {
    width: 16px;
    height: 16px;
  }
  .c-icon__image.--excel {
    width: 16px;
    height: 16px;
  }
}
.c-columns {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-columns.--halves-10 {
  gap: 10px 0.9615384615%;
}
.c-columns.--halves-10 > .c-columns__item {
  width: 49.5192307692%;
}
.c-columns.--halves-56 {
  gap: 40px 5.3846153846%;
}
.c-columns.--halves-56 > .c-columns__item {
  width: 47.3076923077%;
}
.c-columns.--halves {
  gap: 40px 3.8461538462%;
}
.c-columns.--halves > .c-columns__item {
  width: 48.0769230769%;
}
.c-columns.--thirds {
  gap: 40px 3.8461538462%;
}
.c-columns.--thirds > .c-columns__item {
  width: 30.7692307692%;
}
.c-columns.--quarters {
  gap: 40px 3.8461538462%;
}
.c-columns.--quarters > .c-columns__item {
  width: 22.1153846154%;
}
.c-columns.--quarters.--gap-20 {
  gap: 56px 1.9230769231%;
}
.c-columns.--quarters.--gap-20 > .c-columns__item {
  width: 23.5576923077%;
}
.c-columns.--align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-columns__item {
  background-color: rgba(var(--color-white), 1);
}
.c-columns__item > * {
  margin-top: 30px !important;
}
.c-columns__item > *:first-child {
  margin-top: 0 !important;
}
.c-columns.--mt-40-child .c-columns__item > * {
  margin-top: 40px !important;
}
.c-columns.--mt-40-child .c-columns__item > *:first-child {
  margin-top: 0 !important;
}
.c-columns.--mt-40-child .c-columns__item > .u-mt-20 {
  margin-top: 20px !important;
}

.c-columns.--one-fourth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 5.3846153846%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-columns.--one-fourth .--item-01 {
  width: 25%;
}
.c-columns.--one-fourth .--item-01 > *:first-child {
  margin-top: 0 !important;
}
.c-columns.--one-fourth .--item-03 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-columns.--one-fourth .--item-03 > *:first-child {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .c-columns.--one-fourth {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-columns.--one-fourth .--item-01 {
    width: 100%;
  }
  .c-columns.--one-fourth .--item-03 {
    width: 100%;
  }
}
.c-columns.--one-thirds {
  gap: 0 3.8461538462%;
}
.c-columns.--one-thirds .--item-01 {
  width: 30.7692307692%;
}
.c-columns.--one-thirds .--item-01 > *:first-child {
  margin-top: 0 !important;
}
.c-columns.--one-thirds .--item-02 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-columns.--one-thirds .--item-02 > *:first-child {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .c-columns.--one-thirds {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .c-columns.--one-thirds .--item-01 {
    width: 100%;
  }
  .c-columns.--one-thirds .--item-02 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .c-columns {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .c-columns.--sp-halves-20 {
    gap: 40px 20px !important;
  }
  .c-columns.--sp-halves-20 > .c-columns__item {
    width: calc((100% - 20px) / 2) !important;
  }
  .c-columns.--halves-10 {
    gap: 10px 0;
  }
  .c-columns.--halves-10 > .c-columns__item {
    width: 100%;
  }
  .c-columns.--halves-56 {
    gap: 56px 0;
  }
  .c-columns.--halves-56 > .c-columns__item {
    width: 100%;
  }
  .c-columns.--halves {
    gap: 40px 0;
  }
  .c-columns.--halves > .c-columns__item {
    width: 100%;
  }
  .c-columns.--thirds {
    gap: 40px 0;
  }
  .c-columns.--thirds > .c-columns__item {
    width: 100%;
  }
  .c-columns.--quarters {
    gap: 40px 0;
  }
  .c-columns.--quarters > .c-columns__item {
    width: 100%;
  }
  .c-columns__item > * {
    margin-top: 20px !important;
  }
  .c-columns__item > *:first-child {
    margin-top: 0 !important;
  }
}
.c-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-tags__item {
  color: rgba(var(--color-attension-text), 1);
  font-size: var(--font-size-11);
  line-height: var(--font-line-height-175);
  letter-spacing: var(--font-letter-spacing-0);
}
.c-tags__item::before {
  content: "#";
  display: inline-block;
}

.c-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.c-cat__item {
  font-size: var(--font-size-11);
  line-height: var(--font-line-height-175);
  letter-spacing: var(--font-letter-spacing-25);
  border: 1px solid rgba(var(--color-border), 1);
  padding: 2px 8px;
}

.c-text-number {
  font-family: var(--font-family-roboto);
}

.c-page-header {
  width: 100%;
  overflow: hidden;
}
.c-page-header__inner {
  position: relative;
  display: grid;
  place-items: center;
}
.c-page-header__inner img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  grid-area: 1/1;
  aspect-ratio: 1560/284;
  min-height: 284px;
  height: 100%;
}
.c-page-header__inner:not(:has(img)) .c-page-header__title {
  color: rgba(var(--color-black), 1);
  padding-top: 0;
}
.c-page-header__inner:not(:has(img)) {
  background-color: rgba(var(--color-grey), 1);
  aspect-ratio: auto;
  padding: 100px 0;
}
.c-page-header__title {
  grid-area: 1/1;
  max-width: var(--width-contents);
  padding: 0 20px;
  width: 100%;
  margin: 0;
  z-index: 1;
  color: rgba(var(--color-white), 1);
}

.c-page-header.--white {
  border-top: 1px solid rgba(var(--color-grey-bg-base), 1);
}
.c-page-header.--white .c-page-header__inner {
  background-color: rgba(var(--color-white), 1);
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .c-page-header__inner {
    height: auto;
  }
  .c-page-header__inner img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    grid-area: 1/1;
    aspect-ratio: 375/122;
    min-height: 122px;
    height: 100%;
  }
  .c-page-header__inner:not(:has(img)) .c-page-header__title {
    color: rgba(var(--color-black), 1);
    padding-top: 0;
  }
  .c-page-header__inner:not(:has(img)) {
    background-color: rgba(var(--color-grey), 1);
    min-height: initial;
    padding: 60px 0;
  }
  .c-page-header__title {
    padding: 40px 20px;
  }
  .c-page-header.--white .c-page-header__title {
    padding-bottom: 0;
  }
}
.c-post-header {
  background-color: rgba(var(--color-grey), 1);
}
.c-post-header__inner {
  max-width: var(--width-contents);
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  overflow: hidden;
}
.c-post-header__title {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .c-post-header__inner {
    padding: 40px 20px;
  }
  .c-post-header__title {
    margin-top: 20px;
  }
}
.c-heading-lv2 {
  margin-top: 56px;
}

.c-heading-lv3 {
  margin-top: 56px;
}
.c-heading-lv3 + * {
  margin-top: 56px;
}

@media (max-width: 768px) {
  .c-heading-lv3 {
    margin-top: 40px;
  }
  .c-heading-lv3 + * {
    margin-top: 40px;
  }
}
.c-heading-lv4 {
  margin-top: 56px;
}
.c-heading-lv4 + * {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .c-heading-lv4 {
    margin-top: 40px;
  }
  .c-heading-lv4 + * {
    margin-top: 40px;
  }
}
.c-unit {
  color: rgba(var(--color-sub), 1);
  font-weight: var(--font-weight-medium);
  padding-left: 10px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-top: 5px;
}

.l-contents-main section {
  margin-top: 200px;
}
.l-contents-main section > *:first-child {
  margin-top: 0 !important;
}
.l-contents-main .c-anchorlink-wrapper + section {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .l-contents-main section {
    margin-top: 120px;
  }
  .l-contents-main .c-anchorlink-wrapper + section {
    margin-top: 60px;
  }
}
.c-card-bordered__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  background-color: rgba(var(--color-white), 1);
  -webkit-box-shadow: var(--shadow-large);
          box-shadow: var(--shadow-large);
  -webkit-transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: 1px solid rgba(var(--color-white), 1);
  overflow: hidden;
}
.c-card-bordered__inner {
  padding: 40px;
}
.c-card-bordered .c-heading-lv4 {
  margin-top: 0px;
}
.c-card-bordered ul.c-list-basic {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.c-card-bordered__btn {
  display: block;
  position: relative;
  text-align: center;
  font-weight: var(--font-weight-bold);
  border-top: 1px solid rgba(var(--color-border), 1);
  padding: 16px 30px 16px 30px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.c-card-bordered .c-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-card-bordered__link:hover {
  border: 1px solid rgba(var(--color-red-dark), 1);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (any-hover: hover) {
  .c-card-bordered__link:hover .c-card-bordered__btn {
    border-top: 1px solid rgba(var(--color-red-dark), 1);
    color: rgba(var(--color-attension-text), 1);
    background-color: rgba(var(--color-red), 1);
  }
}

@media (max-width: 768px) {
  .c-card-bordered__inner {
    padding: 20px;
  }
}
ul.c-list-basic {
  margin-top: 56px;
  list-style: disc;
  margin-left: 20px;
}
ul.c-list-basic li {
  margin-top: 16px;
}
ul.c-list-basic li:first-child {
  margin-top: 0;
}
ul.c-list-basic.text-middle li {
  margin-top: 8px;
}
ul.c-list-basic .c-list-basic {
  margin-top: 16px;
}

@media (max-width: 768px) {
  ul.c-list-basic {
    margin-top: 40px;
    margin-left: 20px;
  }
  ul.c-list-basic li {
    margin-top: 14px;
  }
  ul.c-list-basic .c-list-basic {
    margin-top: 14px;
  }
}
ol.c-list-basic {
  margin-top: 56px;
  list-style: decimal;
  margin-left: 20px;
}
ol.c-list-basic li {
  margin-top: 16px;
}
ol.c-list-basic li:first-child {
  margin-top: 0;
}
ol.c-list-basic .c-list-basic {
  margin-top: 16px;
}

@media (max-width: 768px) {
  ol.c-list-basic {
    margin-top: 40px;
    margin-left: 20px;
  }
  ol.c-list-basic li {
    margin-top: 14px;
  }
  ol.c-list-basic .c-list-basic {
    margin-top: 14px;
  }
}
.c-text-bold {
  font-weight: var(--font-weight-bold);
}

.c-pdf {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-pdf__logo {
  width: 158px;
}
.c-pdf__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: rgba(var(--color-sub), 1);
}

@media (max-width: 768px) {
  .c-pdf {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-banner-powered {
  width: 105px;
}

table.c-table-basic {
  margin-top: 56px;
  border-collapse: collapse;
  border-top: 1px solid rgba(var(--color-border-foot), 0.4);
  width: 100%;
}
table.c-table-basic th {
  background-color: rgba(var(--color-black), 0.06);
}
table.c-table-basic th,
table.c-table-basic td {
  border-top: 1px solid rgba(var(--color-border-foot), 0.4);
  border-bottom: 1px solid rgba(var(--color-border-foot), 0.4);
  padding: 16px;
}
table.c-table-basic th > *:first-child,
table.c-table-basic td > *:first-child {
  margin-top: 0 !important;
}
table.c-table-basic caption {
  margin: 0 auto 10px 0;
}
table.c-table-basic .head-td {
  background-color: rgba(var(--color-black), 0.06);
}
table.c-table-basic.--border td,
table.c-table-basic.--border th {
  border-top: 1px solid rgba(var(--color-border));
  border-right: 1px solid rgba(var(--color-border));
  border-bottom: 1px solid rgba(var(--color-border));
  border-left: 1px solid rgba(var(--color-border));
}
table.c-table-basic.--border tr > *:first-child {
  border-left: none;
}
table.c-table-basic.--border tr > *:last-child {
  border-right: none;
}
table.c-table-basic.text-small th,
table.c-table-basic.text-small td {
  padding: 16px;
}
table.c-table-basic.text-small .head-td {
  font-weight: var(--font-weight-bold);
  background-color: rgba(var(--color-black), 0.06);
}
table.c-table-basic.--small th,
table.c-table-basic.--small td {
  padding: 8px 16px;
}
table.c-table-basic .no-border {
  border-top: none;
  border-bottom: none;
}
table.c-table-basic .no-border-top {
  border-top: none !important;
}
table.c-table-basic .no-border-bottom {
  border-bottom: none !important;
}
table.c-table-basic .no-border-left {
  border-left: none !important;
}
table.c-table-basic .no-border-right {
  border-right: none !important;
}
table.c-table-basic.--calendar tr.--narrow td,
table.c-table-basic.--calendar tr.--narrow th {
  padding: 4px 16px;
}
table.c-table-basic.--calendar tr.--narrow-top td,
table.c-table-basic.--calendar tr.--narrow-top th {
  padding-top: 4px;
}
table.c-table-basic.--calendar tr.--narrow-bottom td,
table.c-table-basic.--calendar tr.--narrow-bottom th {
  padding-bottom: 4px;
}
table.c-table-basic tr.--narrow td,
table.c-table-basic tr.--narrow th {
  padding: 8px 16px;
}
table.c-table-basic tr.--narrow-top td,
table.c-table-basic tr.--narrow-top th {
  padding-top: 8px;
}
table.c-table-basic tr.--narrow-bottom td,
table.c-table-basic tr.--narrow-bottom th {
  padding-bottom: 8px;
}
table.c-table-basic.--table-18-percent .col--name {
  width: 18%;
  white-space: nowrap;
}
table.c-table-basic.--table-18-percent .col--value {
  width: 78%;
}
table.c-table-basic.th-bg-white th {
  background-color: rgba(var(--color-white), 1);
}
table.c-table-basic.--table-20-percent .col {
  width: 20%;
}
table.c-table-basic.--table-50-percent .col {
  width: 50%;
}
table.c-table-basic.--padding-16 th,
table.c-table-basic.--padding-16 td {
  padding: 16px;
}

@media (max-width: 768px) {
  .sp-scrollable {
    overflow-x: scroll;
  }
  .sp-scrollable table.c-table-basic {
    width: 100%;
    min-width: 768px;
    table-layout: fixed;
  }
  .sp-scrollable table.c-table-basic th,
  .sp-scrollable table.c-table-basic td {
    max-width: 70px;
  }
  table.c-table-basic {
    margin-top: 40px;
  }
  table.c-table-basic th,
  table.c-table-basic td {
    padding: 12px;
  }
  table.c-table-basic.text-small th,
  table.c-table-basic.text-small td {
    font-size: var(--font-size-10);
    padding: 10px;
  }
  table.c-table-basic.sp-text-small th,
  table.c-table-basic.sp-text-small td {
    font-size: var(--font-size-12);
    padding: 12px;
  }
  table.c-table-basic.sp-layout-row th,
  table.c-table-basic.sp-layout-row td {
    display: block;
    width: 100%;
    border: none;
  }
  table.c-table-basic.sp-layout-row .sp-no-border-top {
    border-top: 1px solid rgba(var(--color-border-foot), 0.4);
  }
  table.c-table-basic.sp-layout-row .sp-border-bottom {
    border-bottom: 1px solid rgba(var(--color-border-foot), 0.4);
  }
  table.c-table-basic.--small th,
  table.c-table-basic.--small td {
    font-size: var(--font-size-12);
    padding: 6px 12px;
  }
  table.c-table-basic.--calendar tr.--narrow td,
  table.c-table-basic.--calendar tr.--narrow th {
    padding: 3px 12px;
  }
  table.c-table-basic.--calendar tr.--narrow-top td,
  table.c-table-basic.--calendar tr.--narrow-top th {
    padding-top: 3px;
  }
  table.c-table-basic.--calendar tr.--narrow-bottom td,
  table.c-table-basic.--calendar tr.--narrow-bottom th {
    padding-bottom: 3px;
  }
  table.c-table-basic tr.--narrow td,
  table.c-table-basic tr.--narrow th {
    padding: 6px 12px;
  }
  table.c-table-basic tr.--narrow-top td,
  table.c-table-basic tr.--narrow-top th {
    padding-top: 6px;
  }
  table.c-table-basic tr.--narrow-bottom td,
  table.c-table-basic tr.--narrow-bottom th {
    padding-bottom: 6px;
  }
  table.c-table-basic.--table-18-percent .col--name {
    width: 32%;
    white-space: nowrap;
  }
  table.c-table-basic.--table-18-percent .col--value {
    width: 68%;
  }
}
.c-note {
  margin-top: 56px;
}
.c-note > * {
  margin-top: 20px !important;
  color: rgba(var(--color-sub), 1);
}

@media (max-width: 768px) {
  .c-note {
    margin-top: 40px;
  }
  .c-note > * {
    margin-top: 20px !important;
  }
}
.c-notation {
  color: rgba(var(--color-sub), 1);
  margin-top: 20px;
}

table + .c-notation {
  margin-top: 10px;
}

.c-text-red {
  color: rgba(var(--color-attension-text), 1);
}

.c-link-text {
  position: relative;
  color: rgba(var(--color-attension-text), 1);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.c-link-text .--external {
  margin-left: 8px;
  display: block;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url(/en/assets/img/common/icon/icon_external.svg) no-repeat center/contain;
          mask: url(/en/assets/img/common/icon/icon_external.svg) no-repeat center/contain;
}

.c-date {
  text-align: right;
}

.page-back {
  border-top: 1px solid rgba(var(--color-border-foot), 0.4);
  padding-top: 56px;
  margin-top: 56px;
}
.page-back__link {
  display: inline-block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .page-back__link:hover {
    color: rgba(var(--color-attension), 1);
  }
}
.page-back__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  background-color: currentColor;
  -webkit-mask: url(/en/assets/img/common/icon/icon_chevron.svg) no-repeat center/contain;
          mask: url(/en/assets/img/common/icon/icon_chevron.svg) no-repeat center/contain;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 768px) {
  .page-back {
    font-size: var(--font-size-11);
    padding-top: 40px;
    margin-top: 40px;
  }
}
.c-anchorlink-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  background-color: rgba(var(--color-black), 0.06);
}

.c-anchorlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 90%;
}
.c-anchorlink__item {
  padding: 10px 20px;
}
@media (any-hover: hover) {
  .c-anchorlink__item :hover {
    color: rgba(var(--color-attension-text), 1);
  }
}
.c-anchorlink__item__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/link_black.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/link_black.svg") no-repeat center/contain;
  rotate: 90deg;
}

@media (max-width: 768px) {
  .c-anchorlink {
    max-width: initial;
  }
}
.c-image-full {
  width: 100vw;
  max-width: var(--width-contents-max);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.c-image-full img {
  width: 100%;
  height: auto;
  display: block;
}

/*------------------------------------
project
------------------------------------ */
header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
}

.p-header {
  max-width: var(--width-contents-max);
  width: 100%;
  padding: 0 2.5641025641vw;
  border-bottom: 1px solid rgba(var(--color-grey-bg-base), 1);
  position: sticky;
  margin: 0 auto;
  z-index: 9999;
}
.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.p-header__logo {
  padding: 21px 1.3461538462vw 21px 0;
  max-width: 280px;
  min-width: 183px;
  width: 17.3717948718vw;
}
.p-header__menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-header__sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.2820512821vw 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__search {
  margin-left: 1.2820512821vw;
}
.p-header__utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  margin-left: 1.2820512821vw;
}
.p-header__burger {
  display: none;
}

@media (max-width: 1280px) {
  .p-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .p-header__logo {
    width: 223px;
    position: absolute;
    top: 0;
    left: 20px;
    padding: 20px 20px 20px 0;
  }
  .p-header__menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .p-header__menus {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-header__sub-menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .p-header {
    padding: 0 20px;
    height: 72px;
  }
  .p-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-header__logo {
    position: relative;
    top: auto;
    left: auto;
    padding: 21px 21px 21px 0;
    width: 183px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-header__menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
  }
  .p-header__menus {
    position: relative;
    top: auto;
    left: auto;
    background-color: rgba(var(--color-white), 1);
    width: 100%;
    padding-bottom: 20px;
  }
  .p-header__search {
    display: none;
  }
  .p-header__utility {
    display: none;
  }
  .p-header__burger {
    display: block;
  }
}
.p-header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.p-header-list__item {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-header-list__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0.641025641vw 28px 0.641025641vw;
  font-weight: var(--font-weight-bold);
  border-bottom: 4px solid rgba(var(--color-white), 1);
  -webkit-transition: color 0.3s ease, border-bottom 0.3s ease;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  z-index: 2;
}
.p-header-list__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-header-list__link:hover {
    border-bottom: 4px solid rgba(var(--color-black), 1);
  }
}
@media (any-hover: hover) {
  .p-header-list__link:hover .p-header-list__icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.p-header-list__link.--current {
  color: rgba(var(--color-attension-text), 1);
  border-bottom: 4px solid rgba(var(--color-attension-text), 1);
}
.p-header-list__link.--current .p-header-list__icon {
  background-color: rgba(var(--color-black), 1);
}

@media (max-width: 1280px) {
  .p-header-list {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .p-header-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid rgba(var(--color-border), 1);
  }
  .p-header-list__link {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 21px 20px 21px 20px;
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--font-letter-spacing-0);
    border-bottom: none;
    border-top: 1px solid rgba(var(--color-border), 1);
  }
  .p-header-list__icon {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: 0;
    -webkit-mask: none;
            mask: none;
    background-color: transparent;
  }
  .p-header-list__icon::before, .p-header-list__icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: currentColor;
  }
  .p-header-list__icon::before {
    width: 1px;
    height: 9px;
  }
  .p-header-list__icon::after {
    width: 9px;
    height: 1px;
  }
  .p-header-list__link:hover {
    border-bottom: none;
  }
  .p-header-list__link:hover .p-header-list__icon {
    -webkit-transform: none;
            transform: none;
  }
  .p-header-list__link.--current {
    border-bottom: none;
  }
  .p-header-list__link.--current .p-header-list__icon {
    background-color: transparent;
  }
  .p-header-list__link.--current .p-header-list__icon::before, .p-header-list__link.--current .p-header-list__icon::after {
    content: "";
    background-color: rgba(var(--color-black), 1);
  }
  .p-header-list__item.is-open .p-header-list__icon::before {
    opacity: 0;
  }
}
.p-header-list-child {
  padding: 20px;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  opacity: 0;
  width: auto;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: rgba(var(--color-white), 1);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  z-index: 999;
}
.p-header-list-child__title {
  border-bottom: 1px solid rgba(var(--color-border), 1);
  padding-bottom: 20px;
}
.p-header-list-child__title-link {
  display: block;
  padding: 10px 20px;
  -webkit-transition: color 0.3s, background-color 0.3s ease;
  transition: color 0.3s, background-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-header-list-child__title-link:hover {
    color: rgba(var(--color-attension), 1);
    background-color: rgba(var(--color-red), 1);
  }
}
@media (any-hover: hover) {
  .p-header-list-child__title-link:hover .p-header-list-child__icon {
    background-color: rgba(var(--color-attension), 1);
    -webkit-transform: translateX(2px) rotate(-90deg);
            transform: translateX(2px) rotate(-90deg);
  }
}
.p-header-list-child__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-header-list__item:last-child .p-header-list-child {
  left: -150px;
  right: 0;
}
.p-header-list__item.is-narrow .p-header-list-child {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  .p-header-list-child {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-width: auto;
    background-color: rgba(var(--color-white), 1);
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
    -webkit-box-shadow: none;
            box-shadow: none;
    z-index: 999;
    height: 0;
    opacity: 1;
    visibility: visible;
    overflow-y: hidden;
    padding: 0;
    margin: 0 20px;
  }
  .p-header-list-child__title {
    border-bottom: none;
    padding: 10px 0 10px 0;
    border-top: 1px solid rgba(var(--color-border), 1);
  }
  .p-header-list-child__title-link {
    display: block;
    padding: 10px 10px 10px 10px;
  }
  .p-header-list-child__title-link:hover {
    background-color: rgba(var(--color-red), 1);
  }
  .p-header-list-child__title-link:hover .p-header-list-child__icon {
    background-color: rgba(var(--color-attension), 1);
  }
  .p-header-list-child__icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background-color: currentColor;
    -webkit-mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
            mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
.p-header-list-child-list__wrapper {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
}

@media (max-width: 768px) {
  .p-header-list-child-list__wrapper {
    padding: 10px 0 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
    border-top: 1px solid rgba(var(--color-border), 1);
  }
  .p-header-list-child-list__wrapper.--third-on-wide .p-header-list-child-list:first-child {
    width: 100%;
  }
}
.p-header-list-child-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-header-list-child-list.--till-6 {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto); /* ←6件ごとに次の列へ */
  gap: 0 20px;
}
.p-header-list-child-list.--till-7 {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, auto); /* ←7件ごとに次の列へ */
  gap: 0 20px;
}
.p-header-list-child-list.--till-10 {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(10, auto); /* ←6件ごとに次の列へ */
  gap: 0 20px;
}
.p-header-list-child-list.--till-3 {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto); /* ←3件ごとに次の列へ */
  gap: 0 20px;
}
.p-header-list-child-list__link {
  display: block;
  padding: 10px 10px 10px 20px;
  -webkit-transition: color 0.3s, background-color 0.3s ease;
  transition: color 0.3s, background-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-header-list-child-list__link:hover {
    background-color: rgba(var(--color-red), 1);
    color: rgba(var(--color-attension), 1);
  }
}
@media (any-hover: hover) {
  .p-header-list-child-list__link:hover .p-header-list-child-list__icon, .p-header-list-child-list__link:hover .p-header-list-child__icon {
    background-color: rgba(var(--color-attension), 1);
    -webkit-transform: translateX(2px) rotate(-90deg);
            transform: translateX(2px) rotate(-90deg);
  }
}
.p-header-list-child-list__link.--no-link {
  cursor: default;
  pointer-events: none;
}
.p-header-list-child-list__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (max-width: 768px) {
  .p-header-list-child-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-header-list-child-list.--till-6 {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto); /* ←6件ごとに次の列へ */
    gap: 0 20px;
  }
  .p-header-list-child-list.--till-3 {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto); /* ←3件ごとに次の列へ */
    gap: 0 20px;
  }
  .p-header-list-child-list__link {
    display: block;
    padding: 10px;
  }
  .p-header-list-child-list__link:hover {
    background-color: transparent;
  }
  .p-header-list-child-list__link:hover .p-header-list-child__icon {
    background-color: currentColor;
  }
  .p-header-list-child-list__icon {
    margin-left: 7px;
    -webkit-mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
            mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
  }
}
.p-header-list-child-list__link + .p-header-list-child-list {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .p-header-list-child-list__link + .p-header-list-child-list {
    margin-left: 0;
  }
  .p-header-list-child-list__item.--has-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-header-list-child-list__item.--has-child > a.p-header-list-child-list__link {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-header-list-child-list__item.--has-child .p-header-list-child-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/* ===== JS用 CSS ===== */
/* トランジション無効化用 */
.no-transition,
.no-transition * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* SP: メニューラッパーの表示 */
@media (max-width: 768px) {
  .p-header__menu-wrapper {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  .p-header__menu-wrapper.is-open {
    opacity: 1;
  }
}
.p-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 1280px) {
  .p-search-form__input {
    max-width: 210px;
  }
}
.p-header__search {
  min-width: 200px;
}
.p-header__search .mf-search-box {
  --input-border-style: none;
  --hover-highlight-color: rgba(var(--color-grey-input), 1);
  --button-color: rgba(var(--color-grey-input), 1);
  --button-hover-color: rgba(var(--color-grey-input), 1);
  --button-selected-color: rgba(var(--color-grey-input), 1);
  --button-selected-border-color: rgba(var(--color-grey-input), 1);
  --icon-size: 16px;
  --border-color: rgba(var(--color-grey-input), 1);
  margin: 0;
  overflow: visible;
}
.p-header__search #mf-search-bar_input {
  background-color: rgba(var(--color-grey-input), 1);
  padding: 7px 24px 7px 38px;
  border-radius: 204px !important;
  font-size: var(--font-size-14);
  line-height: var(--font-line-height-1);
  letter-spacing: var(--font-letter-spacing-0);
  width: 200px;
  height: auto;
}
.p-header__search #mf-search-bar_input::-webkit-input-placeholder {
  color: #999;
}
.p-header__search #mf-search-bar_input::-moz-placeholder {
  color: #999;
}
.p-header__search #mf-search-bar_input:-ms-input-placeholder {
  color: #999;
}
.p-header__search #mf-search-bar_input::-ms-input-placeholder {
  color: #999;
}
.p-header__search #mf-search-bar_input::placeholder {
  color: #999;
}
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_input-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  right: auto;
  top: 0;
  height: 100%;
  padding: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  background: url("/assets/img/common/icon/search.svg");
  width: 16px;
  height: 16px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_input-buttons .mf-search-bar_input_alt-btn {
  color: transparent;
}
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_input-buttons .mf-search-bar_input_alt-btn .mf-search-bar_input_alt-btn_icon {
  font-size: 0;
  height: auto;
}
.p-header__search .mf-search-bar_input_alt-btn_icon svg {
  display: none;
}
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_input-buttons .mf-search-bar_input_alt-btn:focus {
  color: transparent !important;
}
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_input-buttons .mf-search-bar_input_alt-btn:hover {
  color: transparent !important;
}
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_dropdown-list .mf-search-bar_dropdown-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 1.5rem;
  margin: 2px 4px;
  padding: 15px;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
}
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_dropdown-list .mf-search-bar_dropdown-list_item:hover,
.p-header__search .mf-search-box .mf-search-bar .mf-search-bar_dropdown-list .mf-search-bar_dropdown-list_item.mf-search-bar_dropdown-list_item--selected {
  background-color: rgba(var(--color-grey-input), 1);
}

.p-header-button-mail__link {
  display: block;
  position: relative;
  border: 1px solid rgba(var(--color-border), 1);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  font-size: 0;
}
@media (any-hover: hover) {
  .p-header-button-mail__link:hover {
    border: 1px solid rgba(var(--color-red-dark), 1);
    background-color: rgba(var(--color-red), 1);
  }
}
@media (any-hover: hover) {
  .p-header-button-mail__link:hover .p-header-button-mail__icon {
    color: rgba(var(--color-attension-text), 1);
  }
}
.p-header-button-mail__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url(/assets/img/common/icon/mail.svg) no-repeat center/contain;
          mask: url(/assets/img/common/icon/mail.svg) no-repeat center/contain;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-header-button-lang__link {
  font-size: var(--font-size-13);
  line-height: var(--font-line-height-1);
  letter-spacing: var(--font-letter-spacing-0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border: 1px solid rgba(var(--color-border), 1);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-header-button-lang__link:hover {
    color: rgba(var(--color-attension-text), 1);
    border: 1px solid rgba(var(--color-red-dark), 1);
    background-color: rgba(var(--color-red), 1);
  }
}
@media (any-hover: hover) {
  .p-header-button-lang__link:hover .p-header-button-mail__icon {
    color: rgba(var(--color-attension-text), 1);
  }
}

.burger {
  background-color: rgba(var(--color-black), 1);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.burger__bar {
  display: block;
  background-color: #fff;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.burger__bar::before, .burger__bar::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 18px;
  height: 2px;
  position: absolute;
  left: 0;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
}
.burger__bar::before {
  top: -6px;
}
.burger__bar::after {
  bottom: -6px;
}

.p-header__burger.is-active .burger {
  border: 1px solid rgba(var(--color-red-dark), 1);
  background-color: rgba(var(--color-red), 1);
}
.p-header__burger.is-active .burger .burger__bar {
  background-color: transparent;
}
.p-header__burger.is-active .burger .burger__bar::before {
  background-color: rgba(var(--color-attension), 1);
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-header__burger.is-active .burger .burger__bar::after {
  background-color: rgba(var(--color-attension), 1);
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-header-burger-wrapper {
  display: none;
}

@media (max-width: 768px) {
  .p-header-burger-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 10px;
  }
}
.p-card {
  height: 100%;
}
.p-card__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  background-color: rgba(var(--color-white), 1);
  -webkit-box-shadow: var(--shadow-large);
          box-shadow: var(--shadow-large);
  -webkit-transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: 1px solid rgba(var(--color-white), 1);
  overflow: hidden;
}
.p-card__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
}
.p-card__heading {
  font-family: var(--font-family-sans);
  text-align: center;
  min-height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-card__text-sub {
  margin-top: 20px;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.p-card__tags {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
}
.p-card__tags-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 16px);
  padding: 10px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  background-color: rgba(var(--color-grey), 1);
}
.p-card__text {
  margin-top: 40px;
}
.p-card__caption {
  margin-top: 20px;
}
.p-card__btn {
  position: relative;
  text-align: center;
  font-weight: var(--font-weight-bold);
  border-top: 1px solid rgba(var(--color-border), 1);
  padding: 22px 66px 22px 30px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-card__btn.--small {
  padding: 16px 30px 16px 30px;
}
.p-card .c-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-card__link:hover {
  border: 1px solid rgba(var(--color-red-dark), 1);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (any-hover: hover) {
  .p-card__link:hover .p-card__btn {
    border-top: 1px solid rgba(var(--color-red-dark), 1);
    color: rgba(var(--color-attension-text), 1);
    background-color: rgba(var(--color-red), 1);
  }
}

@media (max-width: 768px) {
  .p-card__link {
    overflow: hidden;
  }
  .p-card__contents {
    padding: 30px 20px;
  }
  .p-card__heading {
    font-family: var(--font-family-sans);
    min-height: auto;
  }
  .p-card__text-sub {
    margin-top: 10px;
  }
  .p-card__tags {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 10px;
  }
  .p-card__tags-item {
    width: calc(100% - 10px);
    padding: 10px;
    background-color: rgba(var(--color-grey), 1);
  }
  .p-card__text {
    margin-top: 20px;
  }
  .p-card__btn {
    padding: 22px 56px 22px 30px;
  }
  .p-card__btn.--small {
    font-size: var(--font-size-14);
    padding: 16px 30px 16px 30px;
  }
}
.p-card-image {
  height: 100%;
}
.p-card-image__link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
  background-color: rgba(var(--color-white), 1);
  -webkit-box-shadow: var(--shadow-large);
          box-shadow: var(--shadow-large);
  -webkit-transition: outline 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: outline 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: outline 0.3s ease, box-shadow 0.3s ease;
  transition: outline 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: none;
  outline: 1px solid transparent;
  outline-offset: 0;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-card-image__content {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-card-image__text-area {
  padding: 30px 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.p-card-image__text-area.--low {
  padding: 20px;
}
.p-card-image__text {
  font-weight: var(--font-weight-bold);
}
.p-card-image__name {
  margin-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-weight-bold);
  gap: 0 6px;
}
.p-card-image__name.--text-large {
  margin-top: 0;
}
.p-card-image__position {
  font-weight: var(--font-weight-medium);
  color: var(--color-sub);
}
.p-card-image__btn {
  position: relative;
  text-align: center;
  font-weight: var(--font-weight-bold);
  border-top: 1px solid rgba(var(--color-border), 1);
  padding: 16px 60px 16px 30px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-card-image .c-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .p-card-image__link:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    outline: 1px solid rgba(var(--color-red-dark), 1);
  }
}
@media (any-hover: hover) {
  .p-card-image__link:hover .p-card-image__btn {
    border-top: 1px solid rgba(var(--color-red-dark), 1);
    color: rgba(var(--color-attension-text), 1);
    background-color: rgba(var(--color-red), 1);
  }
}

@media (max-width: 768px) {
  .p-card-image__text-area {
    padding: 20px;
  }
  .p-card-image__text-area.--low {
    padding: 20px;
  }
  .p-card-image__name {
    margin-top: 10px;
    gap: 0 5px;
  }
  .p-card-image__btn {
    padding: 16px 50px 16px 30px;
  }
  .p-card-image .c-icon {
    right: 16px;
  }
}
.p-card.--btn-only .p-card__btn {
  text-align: left;
  border-top: none;
  padding: 20px 60px 20px 20px;
}
.p-card.--btn-only .p-card__btn__subtitle {
  font-weight: var(--font-weight-regular);
}

@media (max-width: 768px) {
  .p-card.--btn-only .p-card__btn__subtitle {
    margin-left: 6px;
  }
}
.p-bread__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
}
.p-bread__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-bread__link {
  position: relative;
  display: block;
  margin-right: 20px;
  padding: 20px 20px 20px 0;
  -webkit-transition: 0.3s color ease;
  transition: 0.3s color ease;
  white-space: nowrap;
}
.p-bread__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  content: "";
  background-image: url("/assets/img/common/icon/link_black.svg");
  width: 12px;
  height: 12px;
}
@media (any-hover: hover) {
  .p-bread__link:hover {
    color: rgba(var(--color-attension-text), 1);
  }
}
.p-bread__link.--current {
  color: rgba(var(--color-sub), 1);
  pointer-events: none;
}
.p-bread__link.--current::after {
  content: none;
}

@media (max-width: 768px) {
  .p-bread__list {
    overflow: hidden;
  }
  .p-bread__item:last-child {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    min-width: 0;
  }
  .p-bread__link {
    margin-right: 10px;
    padding: 11px 22px 11px 0;
  }
  .p-bread__link.--current {
    padding-right: 0;
    margin-right: 0;
  }
  .p-bread__text {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    max-width: 100%;
  }
}
.p-tabs {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.p-tabs__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-tabs__link {
  padding: 8px 16px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(var(--color-border), 1);
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.p-tabs__link.--current {
  border-color: rgba(var(--color-black), 1);
  font-weight: var(--font-weight-bold);
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-tabs__link:hover {
    border-bottom: 1px solid rgba(var(--color-attension), 0.4);
    color: rgba(var(--color-attension-text), 1);
  }
}

@media (max-width: 768px) {
  .p-tabs {
    margin-top: 60px;
  }
  .p-tabs__link {
    padding: 3px 8px;
    font-size: var(--font-size-12);
    line-height: var(--font-line-height-24);
    min-height: 64px;
  }
  .p-tabs.--height-low-sp .p-tabs__link {
    min-height: auto;
  }
}
.tag-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.tag-filter__item {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tag-filter .tag-filter__item input {
  display: none;
}

@media (max-width: 768px) {
  .tag-filter {
    gap: 8px;
  }
}
.tag-filter__label {
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  padding: 4px 16px 4px 16px;
  position: relative;
  border: 1px solid transparent;
}
.tag-filter__label::before {
  content: "#";
  display: inline-block;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .tag-filter__label {
    padding: 4px 26px 4px 8px;
  }
}
.tag-filter__item input:checked + .tag-filter__label {
  padding: 4px 34px 4px 16px;
  border-radius: 4px;
  color: rgba(var(--color-attension-text), 1);
  background-color: rgba(var(--color-red-base), 0.06);
  border: 1px solid rgba(var(--color-red-base), 0.4);
  position: relative;
}

.tag-filter__item input:checked + .tag-filter__label::after {
  content: "×";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 10px;
  margin-left: 8px;
  color: rgba(var(--color-attension-text), 1);
}

@media (max-width: 768px) {
  .tag-filter__item input:checked + .tag-filter__label {
    padding: 4px 26px 4px 16px;
  }
  .tag-filter__item input:checked + .tag-filter__label::after {
    content: "×";
    right: 8px;
    font-size: 10px;
  }
}
.year-select-wrap {
  position: relative;
  width: 240px;
}
.year-select-wrap::after {
  content: "";
  display: inline-block;
  background-image: url("/assets/img/common/icon/link_black.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 768px) {
  .year-select-wrap {
    width: 100%;
  }
  .year-select-wrap::after {
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.year-select {
  position: relative;
  width: 240px;
  border: 1px solid rgba(var(--color-border-foot), 0.4);
  height: 40px;
  border-radius: 4px;
  padding: 9px 12px 9px 16px;
  background-color: rgba(var(--color-white), 1);
}

@media (max-width: 768px) {
  .year-select {
    width: 100%;
    padding: 11px 36px 11px 16px;
  }
}
.p-filter {
  margin-top: 40px;
  padding: 20px 20px 0 20px;
  background-color: rgba(var(--color-black), 0.06);
}
.p-filter__title {
  padding-bottom: 20px;
  cursor: pointer;
}
.p-filter__title-inner {
  position: relative;
}
.p-filter__title-inner::before, .p-filter__title-inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  display: block;
  width: 18px;
  height: 2px;
  background-color: rgba(var(--color-black), 1);
  -webkit-transition: opacity 0.12s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.12s ease, -webkit-transform 0.18s ease;
  transition: transform 0.18s ease, opacity 0.12s ease;
  transition: transform 0.18s ease, opacity 0.12s ease, -webkit-transform 0.18s ease;
}
.p-filter__title-inner::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-filter__title-inner::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.p-filter__title-inner.is-close::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.p-filter__title-inner.is-close::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 768px) {
  .p-filter {
    padding: 20px 20px 0 20px;
  }
}
.p-filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 0;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(var(--color-border-foot), 0.4);
}
.p-filter-group + .p-filter-group {
  border-top: none;
  padding-top: 0;
}
.p-filter-group__ttl {
  width: 100px;
}
.p-filter-group__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-filter-group-wrapper {
  padding-bottom: 20px;
}

.p-filter-group-wrapper.is-close {
  display: none;
}

.total-number {
  margin-top: 40px;
  font-weight: var(--font-weight-bold);
}

.p-filter-year {
  padding: 20px;
  background-color: rgba(var(--color-black), 0.06);
}
.p-filter-year__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-filter-year__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-filter-year__form .p-filter-group__ttl {
  width: auto;
}
.p-filter-year__rss {
  position: relative;
  padding-left: 32px;
}
.p-filter-year__rss::before {
  content: "";
  display: inline-block;
  background-image: url("/assets/img/common/icon/icon_rss.svg");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 768px) {
  .p-filter-year__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
  .p-filter-year__form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
  }
  .p-filter-year__form .p-filter-group__ttl {
    width: auto;
  }
}
.p-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  border-bottom: 1px solid rgba(var(--color-border), 1);
}
.p-news-list__link {
  position: relative;
  display: block;
  padding: 21px 64px 25px 20px;
  border-top: 1px solid rgba(var(--color-border), 1);
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-news-list__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.p-news-list__date {
  color: rgba(var(--color-note-text), 1);
  font-size: var(--font-size-10);
  line-height: var(--font-line-height-175);
  letter-spacing: var(--font-letter-spacing-0);
}
.p-news-list__text {
  margin-top: 8px;
}
.p-news-list .c-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-news-list__link:hover {
  background-color: rgba(var(--color-red), 1);
}
.p-news-list__link:hover .p-news-list__text {
  color: rgba(var(--color-attension-text), 1);
}

@media (max-width: 768px) {
  .p-news-list__link {
    padding: 14px 47px 20px 10px;
  }
  .p-news-list__date {
    line-height: var(--font-line-height-15);
  }
  .p-news-list__text {
    margin-top: 7px;
  }
  .p-news-list .c-icon {
    position: absolute;
  }
  .p-news-button-sp {
    margin-top: 30px;
  }
}
.p-noresult {
  text-align: center;
  margin: 40px 0;
}

.p-footer {
  max-width: var(--width-contents-max);
  width: 100%;
  padding: 0 40px;
  margin: 200px auto 0;
  background-color: rgba(var(--color-black), 1);
  color: rgba(var(--color-white), 1);
}
.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4.0540540541%;
  padding: 56px 0 40px;
}
.p-footer__logo-wrapper {
  width: 250px;
}
.p-footer__logo {
  width: 250px;
}
.p-footer__contact {
  margin-top: 30px;
}
.p-footer__contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  border: 1px solid rgba(var(--color-border-foot), 0.4);
  color: rgba(var(--color-border), 1);
  padding: 13px;
  font-size: var(--font-size-14);
  line-height: var(--font-line-height-1);
  font-weight: var(--font-weight-bold);
  border-radius: 4px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-footer__contact-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/mail.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/mail.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-footer__contact-link:hover {
    color: rgba(var(--color-black), 1);
    background-color: rgba(var(--color-white), 1);
  }
}
.p-footer__menu-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 40px 1.7094017094%;
}

@media (max-width: 1200px) {
  .p-footer__menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-footer .p-footer-list {
    width: calc((100% - 40px) / 2);
  }
}
.p-footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-footer-list__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 29px 10px 10px;
  color: rgba(var(--color-white), 1);
  font-size: var(--font-size-14);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-0);
  font-weight: var(--font-weight-bold);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer-list__link:hover {
    color: rgba(var(--color-grey-hover), 1);
  }
}
@media (any-hover: hover) {
  .p-footer-list__link:hover .p-footer__icon {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}

.p-footer-utility {
  border-top: 1px solid rgba(var(--color-border), 0.2);
}
.p-footer-utility__list {
  margin-top: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-footer-utility__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 29px 10px 10px;
  color: rgba(var(--color-border), 1);
  font-size: var(--font-size-12);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-0);
  font-weight: var(--font-weight-bold);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer-utility__link:hover {
    color: rgba(var(--color-grey-hover), 1);
  }
}
@media (any-hover: hover) {
  .p-footer-utility__link:hover .p-footer__icon {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}

.p-footer__cr {
  margin-top: 15px;
  padding-bottom: 20px;
  color: rgb(153, 153, 153);
  font-size: var(--font-size-10);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-0);
  text-align: right;
}

.p-footer__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 7px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/icon_chevron.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/icon_chevron.svg") no-repeat center/contain;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-footer-list-child {
  padding-left: 10px;
}

.p-footer-list-child-list__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 29px 10px 10px;
  color: rgba(var(--color-border), 1);
  font-size: var(--font-size-12);
  line-height: var(--font-line-height-15);
  letter-spacing: var(--font-letter-spacing-0);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer-list-child-list__link:hover {
    color: rgba(var(--color-grey-hover), 1);
  }
}
@media (any-hover: hover) {
  .p-footer-list-child-list__link:hover .p-footer__icon {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.p-footer-list-child-list__link.--no-link {
  cursor: default;
  pointer-events: none;
}
.p-footer-list-child-list .p-footer-list-child-list {
  padding-left: 20px;
}

.p-footer-group {
  max-width: var(--width-contents-max);
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: rgba(var(--color-white), 1);
}
.p-footer-group__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer-group__logo-group {
  width: 250px;
  padding: 0 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer-group__logo-group-image {
  width: 151px;
}
.p-footer-group__logo-group-text {
  margin-left: 12px;
  white-space: nowrap;
}
.p-footer-group__listlogo {
  padding-left: 40px;
  border-left: 1px solid rgba(var(--color-border), 1);
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 3.1028368794%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer-group__listlogo img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.p-footer-group__listlogo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer-group__listlogo-item.--change {
  width: 70px;
}
.p-footer-group__listlogo-item.--trust-bank {
  width: 107px;
}
.p-footer-group__listlogo-item.--uoclose {
  width: 46px;
}
.p-footer-group__listlogo-item.--cyleague {
  width: 112px;
}
.p-footer-group__listlogo-item.--gobmates {
  width: 77px;
}
.p-footer-group__listlogo-item.--tcs {
  width: 81px;
}
.p-footer-group__listlogo-item.--fundbook {
  width: 105px;
}
.p-footer-group__listlogo-item.--grivity {
  width: 90px;
}
.p-footer-group__listlogo-item.--ggravity {
  width: 90px;
}
.p-footer-group__listlogo-item.--perf {
  width: 82px;
}
.p-footer-group__listlogo-item.--ideal-route {
  width: 92px;
}
.p-footer-group__listlogo-item.--onwords {
  width: 76px;
}
.p-footer-group__listlogo-item.--dfa-robotics {
  width: 82px;
}
.p-footer-group__listlogo-item.--beacapp {
  width: 90px;
}
.p-footer-group__listlogo-item.--third {
  width: 61px;
}
.p-footer-group__listlogo-item.--travel-zip {
  width: 67px;
}
.p-footer-group__listlogo-item.--governance-tech {
  width: 112px;
}
.p-footer-group__listlogo-item.--e-guardian {
  width: 76px;
}

@media (max-width: 768px) {
  .p-footer {
    width: 100%;
    padding: 0 20px;
    margin: 120px auto 0;
  }
  .p-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
    padding: 36px 0 20px;
  }
  .p-footer__logo-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 10px;
  }
  .p-footer__logo {
    width: 141px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-footer__contact {
    margin-top: 0;
  }
  .p-footer__contact-link {
    min-width: 163px;
    width: 100%;
    color: rgba(var(--color-border), 1);
    padding: 7px 15px 7px 15px;
    font-size: var(--font-size-12);
    line-height: var(--font-line-height-15);
  }
  .p-footer__menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px 20px;
  }
  .p-footer-list {
    width: calc(50% - 10px);
  }
  .p-footer-list:first-child {
    width: 100%;
  }
  .p-footer-list__link {
    padding: 8px 19px 8px 0;
    font-size: var(--font-size-12);
    letter-spacing: var(--font-letter-spacing-25);
  }
  .p-footer-utility {
    border-top: 1px solid rgba(var(--color-border), 0.2);
  }
  .p-footer-utility__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-footer-utility__link {
    padding: 8px 19px 8px 0;
    color: rgba(var(--color-border), 1);
    font-size: var(--font-size-10);
  }
  .p-footer__cr {
    text-align: center;
  }
  .p-footer-list-child {
    padding-left: 10px;
  }
  .p-footer-list-child-list__link {
    padding: 8px 19px 8px 0;
    font-size: var(--font-size-10);
  }
  .p-footer-group {
    max-width: 100%;
  }
  .p-footer-group__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
  .p-footer-group__logo-group {
    width: 100%;
    padding: 30px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-footer-group__logo-group-image {
    width: 117px;
  }
  .p-footer-group__logo-group-text {
    margin-left: 12px;
    font-size: var(--font-size-12);
    line-height: var(--font-line-height-1);
    letter-spacing: var(--font-letter-spacing-0);
  }
  .p-footer-group__listlogo {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(var(--color-border), 1);
    margin: 0;
    padding: 20px 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .p-footer-group__listlogo-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
main:has(> .p-navigation-local:last-child) + footer .p-footer {
  margin-top: 0;
}

main:has(.cta-recruit) + footer .p-footer {
  margin-top: 100px;
}

.p-pagenate {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 8px;
}
.p-pagenate__link {
  width: 41px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border: 1px solid rgba(var(--color-border-foot), 0.4);
  border-radius: 4px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-pagenate__link:hover {
    border: 1px solid rgba(var(--color-attension), 0.4);
    color: rgba(var(--color-attension-text), 1);
    background-color: rgba(var(--color-red-base), 0.04);
  }
}
.p-pagenate__link.is-current {
  background-color: rgba(var(--color-sub), 1);
  color: rgba(var(--color-white), 1);
  pointer-events: none;
}
.p-pagenate__link.--prev {
  font-size: 0;
  width: 46px;
  height: 36px;
}
.p-pagenate__link.--prev .p-pagenate__link-icon {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-pagenate__link.--next {
  font-size: 0;
  width: 46px;
  height: 36px;
}
.p-pagenate__link.--next .p-pagenate__link-icon {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.p-pagenate__link-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/link.svg") no-repeat center/contain;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.post-page h2 {
  font-family: var(--font-family-sans);
  margin-top: 56px;
}
.post-page h3 {
  margin-top: 56px;
}
.post-page h4 {
  margin-top: 56px;
}
.post-page p a {
  position: relative;
  color: rgba(var(--color-attension-text), 1);
}
.post-page p a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--color-attension-text), 1);
}
.post-page p a:hover::before {
  content: none;
}
.post-page p a[target=_blank] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-page p a[target=_blank]::before {
  width: calc(100% - 26px);
}
.post-page p a[target=_blank]::after {
  content: "";
  background-image: url("/assets/img/common/icon/icon_external.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  margin-right: 3px;
}
.post-page p a[target=_blank]:hover::before {
  content: none;
}
.post-page figure {
  margin-top: 56px;
}
.post-page .mt-figure-center figcaption {
  text-align: center;
}
.post-page img {
  width: initial;
}
.post-page p:has(> img) {
  margin-top: 56px !important;
}
.post-page p:has(> img) + p {
  margin-top: 56px !important;
}
.post-page figcaption {
  margin-top: 16px;
}
.post-page iframe {
  margin-top: 56px;
  max-width: 100%;
}
.post-page iframe[src*="youtube.com"] {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.post-page ol {
  margin-top: 40px;
  list-style: revert;
  margin-left: 20px;
}
.post-page ol li {
  margin-top: 6px;
}
.post-page ol li:first-child {
  margin-top: 0;
}
.post-page ol ul,
.post-page ol ol {
  margin-top: 6px;
}
.post-page ol + p {
  margin-top: 40px !important;
}
.post-page ul {
  margin-top: 40px;
  list-style: revert;
  margin-left: 20px;
}
.post-page ul li {
  margin-top: 6px;
}
.post-page ul li:first-child {
  margin-top: 0;
}
.post-page ul ul,
.post-page ul ol {
  margin-top: 6px;
}
.post-page ul + p {
  margin-top: 40px !important;
}
.post-page hr {
  margin-top: 56px;
  border-color: rgba(var(--color-border), 1);
}
.post-page table {
  margin-top: 56px;
  border-collapse: collapse;
  border-top: 1px solid rgba(var(--color-border-foot), 0.4);
  width: 100%;
}
.post-page table p {
  margin-top: 0;
  letter-spacing: normal;
}
.post-page th {
  background-color: rgba(var(--color-black), 0.06);
}
.post-page th,
.post-page td {
  border-top: 1px solid rgba(var(--color-border-foot), 0.4);
  border-bottom: 1px solid rgba(var(--color-border-foot), 0.4);
  padding: 16px 12px;
  text-align: left;
}
.post-page .head-td {
  background-color: rgba(var(--color-black), 0.06);
}
.post-page .mt-be-columns {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px 3.8461538462%;
  /* 2カラムの場合 */
}
.post-page .mt-be-columns:has(.mt-be-column:nth-child(2):last-child) .mt-be-column {
  width: 48.0769230769%;
}
.post-page .mt-be-columns {
  /* 3カラムの場合 */
}
.post-page .mt-be-columns:has(.mt-be-column:nth-child(3):last-child) .mt-be-column {
  width: 30.7692307692%;
}
.post-page .mt-be-columns {
  /* 4カラムの場合 */
}
.post-page .mt-be-columns:has(.mt-be-column:nth-child(4):last-child) .mt-be-column {
  width: 22.1153846154%;
}
.post-page .mt-be-columns .mt-be-column > *:first-child {
  margin-top: 0;
}
.post-page .mt-be-columns .mt-be-column > *:not(:first-child) {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .post-page p a[target=_blank]::after {
    margin-left: 8px;
    margin-right: 5px;
  }
  .post-page figure {
    margin-top: 40px;
  }
  .post-page p:has(> img) {
    margin-top: 40px !important;
  }
  .post-page p:has(> img) + p {
    margin-top: 40px !important;
  }
  .post-page iframe {
    margin-top: 40px;
  }
  .post-page ol {
    margin-top: 40px;
    margin-left: 18px;
  }
  .post-page ul {
    margin-top: 40px;
    margin-left: 18px;
  }
  .post-page hr {
    margin-top: 40px;
  }
  .post-page table {
    margin-top: 40px;
  }
  .post-page th,
  .post-page td {
    padding: 14px;
  }
  .post-page .mt-be-columns {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .post-page .mt-be-columns:has(.mt-be-column:nth-child(2):last-child) .mt-be-column {
    width: 100%;
  }
  .post-page .mt-be-columns {
    /* 3カラムの場合 */
  }
  .post-page .mt-be-columns:has(.mt-be-column:nth-child(3):last-child) .mt-be-column {
    width: 100%;
  }
  .post-page .mt-be-columns {
    /* 4カラムの場合 */
  }
  .post-page .mt-be-columns:has(.mt-be-column:nth-child(4):last-child) .mt-be-column {
    width: 100%;
  }
}
th p,
td p,
li p {
  margin-top: 0;
}

.p-cta {
  margin-top: 58px;
  background-color: rgba(var(--color-black), 0.06);
  padding: 20px;
  text-align: center;
}
.p-cta__text {
  margin-top: 0;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .p-cta {
    margin-top: 40px;
  }
}
.p-navigation-local {
  max-width: var(--width-contents-max);
  width: 100%;
  margin: 100px auto 0;
  background-color: rgba(var(--color-black), 0.06);
  padding-top: 100px;
  padding-bottom: 100px;
}
.p-navigation-local.--sub {
  padding: 40px;
  margin-top: 56px;
}
.p-navigation-local.--sub .p-navigation-local__inner {
  padding: 0;
}
.p-navigation-local.--sub .c-button-base-white {
  margin-bottom: 20px;
}
.p-navigation-local.--sub .p-navigation-local__list.--rows {
  gap: 0 20px;
}
.p-navigation-local__inner {
  max-width: var(--width-contents);
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.p-navigation-local__inner > .c-button-base-white {
  margin-bottom: 56px;
}
.p-navigation-local__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-navigation-local__ttl {
  font-weight: var(--font-weight-bold);
}
.p-navigation-local__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-navigation-local__list.--rows {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px 40px;
}
.p-navigation-local__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 19px 10px 20px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-weight: var(--font-weight-medium);
}
@media (any-hover: hover) {
  .p-navigation-local__link:hover {
    color: rgba(var(--color-attension-text), 1);
  }
}
@media (any-hover: hover) {
  .p-navigation-local__link:hover .p-navigation-local__icon {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}
.p-navigation-local__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 7px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/icon_chevron.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/icon_chevron.svg") no-repeat center/contain;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (max-width: 768px) {
  .p-navigation-local {
    margin: 120px auto 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-navigation-local.--sub {
    padding: 20px;
  }
  .p-navigation-local.--sub .p-navigation-local__list.--rows {
    gap: 20px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-navigation-local__inner > .c-button-base-white {
    margin-bottom: 40px;
    width: 100%;
  }
  .p-navigation-local__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 20px;
  }
  .p-navigation-local__group {
    width: calc((100% - 20px) / 2);
  }
  .p-navigation-local__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 17px 10px 10px;
  }
  .p-navigation-local__icon {
    margin-left: 5px;
  }
}
body#ir-top .p-navigation-local .c-button-base-white {
  display: none;
}

.--bg-grey {
  background-color: rgba(var(--color-grey), 1);
}

.p-category-menu {
  margin-top: 0 !important;
  padding: 10px;
}
.p-category-menu.--padding-narrow {
  padding: 0 0 10px;
}

@media (max-width: 768px) {
  .p-category-menu.--padding-narrow {
    padding: 0 0 20px;
  }
}
.p-category-menu-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-weight-bold);
  padding: 10px 20px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-category-menu-list__link:hover {
  color: rgba(var(--color-attension-text), 1);
}
@media (any-hover: hover) {
  .p-category-menu-list__link:hover .c-icon-arrow {
    -webkit-transform: translateX(2px) rotate(-90deg);
            transform: translateX(2px) rotate(-90deg);
  }
}
.p-category-menu-list__link .c-icon-arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-category-menu-list__ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-weight-bold);
  padding: 20px 20px 10px;
  display: block;
}

@media (max-width: 768px) {
  .p-category-menu-list__link {
    font-size: var(--font-size-10);
    padding: 10px;
  }
  .p-category-menu-list__ttl {
    font-size: var(--font-size-14);
    padding: 20px 20px 10px;
  }
}
.p-category-menu-list-child {
  margin-left: 20px;
}
.p-category-menu-list-child__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
}
.p-category-menu-list-child__link:hover {
  color: rgba(var(--color-attension-text), 1);
}
@media (any-hover: hover) {
  .p-category-menu-list-child__link:hover .c-icon-arrow {
    -webkit-transform: translateX(2px) rotate(-90deg);
            transform: translateX(2px) rotate(-90deg);
  }
}
.p-category-menu-list-child__link .c-icon-arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (max-width: 768px) {
  .p-category-menu-list-child__link {
    font-size: var(--font-size-10);
    padding: 10px;
  }
}
.p-banner {
  margin-top: 56px;
  background-color: rgba(var(--color-grey), 1);
  padding: 48px 6.5384615385%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .p-banner {
    margin-top: 40px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .p-banner__item .c-button-base {
    min-width: 100%;
  }
  .p-banner__item:nth-child(1), .p-banner__item:nth-child(2) {
    width: calc(50% - 5px);
  }
  .p-banner__item:nth-child(3) {
    width: 100%;
  }
}
dialog {
  color: rgba(var(--color-black), 1);
}

.dialog {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  width: 100vw;
  height: 100vh;
  --duration: 0.3s;
  -webkit-transition: opacity var(--duration) allow-discrete;
  transition: opacity var(--duration) allow-discrete;
  inset: 0; /* 閉じるときも上下中央を維持するために指定 */
  position: fixed; /*閉じるときも上下中央を維持するために指定 */
  background-color: rgba(var(--color-black), 0.15);
}
.dialog__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.dialog[open] {
  opacity: 1;
}
@starting-style {
  .dialog[open] {
    opacity: 0;
  }
}
.dialog__contents {
  position: relative;
}
.dialog .dialog__inner {
  padding: 56px 100px;
  max-width: 1000px;
  height: 600px;
  margin: 0;
  position: relative;
  background-color: rgba(var(--color-white), 1);
  border-radius: 4px;
  overflow-y: auto;
  -webkit-box-shadow: var(--shadow-modal);
          box-shadow: var(--shadow-modal);
}
.dialog {
  /* 背景 */
}
.dialog::-ms-backdrop {
  background-color: rgba(235, 235, 235, 0.25);
  opacity: 0;
  -ms-transition: display var(--duration) allow-discrete, opacity var(--duration);
  transition: display var(--duration) allow-discrete, opacity var(--duration);
}
.dialog::backdrop {
  background-color: rgba(235, 235, 235, 0.25);
  opacity: 0;
  -webkit-transition: display var(--duration) allow-discrete, opacity var(--duration);
  transition: display var(--duration) allow-discrete, opacity var(--duration);
}
.dialog[open]::-ms-backdrop {
  opacity: 1;
}
.dialog[open]::backdrop {
  opacity: 1;
}
@starting-style {
  .dialog[open]::-ms-backdrop {
    opacity: 0;
  }
  .dialog[open]::backdrop {
    opacity: 0;
  }
}

:root:has(dialog[open]) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

@media (max-width: 768px) {
  .dialog {
    overflow-y: hidden;
  }
  .dialog__contents {
    margin: 20px;
  }
  .dialog .dialog__inner {
    padding: 40px 20px;
    max-width: 100%;
  }
}
.dialog-close {
  width: 40px;
  height: 40px;
  background-color: rgba(var(--color-white), 1);
  border-radius: 9999px;
  -webkit-box-shadow: var(--shadow-large);
          box-shadow: var(--shadow-large);
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: 10000;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.dialog-close__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.dialog-close:hover {
  color: rgba(var(--color-attension), 1);
  background-color: rgba(var(--color-red), 1);
  border: 1px solid rgba(var(--color-attension), 1);
}
.dialog-close__icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("/assets/img/common/icon/icon_close.svg") no-repeat center/contain;
          mask: url("/assets/img/common/icon/icon_close.svg") no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.dialog-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dialog-profile__text-area {
  width: 41.25%;
}
.dialog-profile__image-area {
  width: 56.25%;
}
.dialog-profile__name-en {
  font-weight: var(--font-weight-bold);
  margin-top: 10px;
}
.dialog-profile__position {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .dialog-profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .dialog-profile__text-area {
    width: 100%;
  }
  .dialog-profile__image-area {
    width: 100%;
  }
}
table.c-table-basic.--table-profile .col--year {
  width: 15%;
  min-width: 124px;
}
table.c-table-basic.--table-profile .col--value {
  width: 85%;
}
table.c-table-basic.--table-profile th {
  white-space: nowrap;
}
table.c-table-basic.--table-profile td {
  padding: 16px 16px 16px 0;
}

@media (max-width: 768px) {
  table.c-table-basic.--table-profile .col--year {
    width: 30%;
    min-width: 93px;
  }
  table.c-table-basic.--table-profile .col--value {
    width: 70%;
  }
  table.c-table-basic.--table-profile th {
    white-space: nowrap;
  }
  table.c-table-basic.--table-profile td {
    padding: 12px 12px 12px 0;
  }
}
/*------------------------------------
utility
------------------------------------ */
@media screen and (min-width: 768px) {
  .u-hidden-lgview {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden-smview {
    display: none !important;
  }
}
.u-text-center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left;
}

.u-ml-auto {
  margin-left: auto;
}

.u-mr-auto {
  margin-right: auto;
}

.u-margin-auto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.u-va-middle {
  vertical-align: middle;
}

.u-va-top {
  vertical-align: top;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-ws-nowrap {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .u-font-size-10-sp {
    font-size: var(--font-size-10) !important;
  }
  .u-font-size-11-sp {
    font-size: var(--font-size-11) !important;
  }
  .u-font-size-12-sp {
    font-size: var(--font-size-12) !important;
  }
  .u-font-size-13-sp {
    font-size: var(--font-size-13) !important;
  }
  .u-font-size-14-sp {
    font-size: var(--font-size-14) !important;
  }
  .u-font-size-15-sp {
    font-size: var(--font-size-15) !important;
  }
  .u-pb-10-sp {
    padding-bottom: 10px;
  }
  .u-pb-20-sp {
    padding-bottom: 20px;
  }
  .u-pb-30-sp {
    padding-bottom: 30px;
  }
  .u-pb-40-sp {
    padding-bottom: 40px;
  }
}
.u-mt-low {
  margin-top: 40px !important;
}

.u-mt-base {
  margin-top: 56px !important;
}

@media (max-width: 768px) {
  .u-mt-base {
    margin-top: 40px !important;
  }
}
.u-width-full {
  width: 100% !important;
}

@media (max-width: 768px) {
  .u-width-full-sp {
    width: 100% !important;
  }
}
.u-width-5-percent {
  width: 5%;
}

.u-width-10-percent {
  width: 10%;
}

.u-width-15-percent {
  width: 15%;
}

.u-width-20-percent {
  width: 20%;
}

.u-width-25-percent {
  width: 25%;
}

.u-width-30-percent {
  width: 30%;
}

.u-width-35-percent {
  width: 35%;
}

.u-width-40-percent {
  width: 40%;
}

.u-width-45-percent {
  width: 45%;
}

.u-width-50-percent {
  width: 50%;
}

.u-width-55-percent {
  width: 55%;
}

.u-width-60-percent {
  width: 60%;
}

.u-width-65-percent {
  width: 65%;
}

.u-width-70-percent {
  width: 70%;
}

.u-width-75-percent {
  width: 75%;
}

.u-width-80-percent {
  width: 80%;
}

.u-width-85-percent {
  width: 85%;
}

.u-width-90-percent {
  width: 90%;
}

.u-width-95-percent {
  width: 95%;
}

@media (max-width: 768px) {
  .u-width-5-percent-sp {
    width: 5%;
  }
  .u-width-10-percent-sp {
    width: 10%;
  }
  .u-width-15-percent-sp {
    width: 15%;
  }
  .u-width-20-percent-sp {
    width: 20%;
  }
  .u-width-25-percent-sp {
    width: 25%;
  }
  .u-width-30-percent-sp {
    width: 30%;
  }
  .u-width-35-percent-sp {
    width: 35%;
  }
  .u-width-40-percent-sp {
    width: 40%;
  }
  .u-width-45-percent-sp {
    width: 45%;
  }
  .u-width-50-percent-sp {
    width: 50%;
  }
  .u-width-55-percent-sp {
    width: 55%;
  }
  .u-width-60-percent-sp {
    width: 60%;
  }
  .u-width-65-percent-sp {
    width: 65%;
  }
  .u-width-70-percent-sp {
    width: 70%;
  }
  .u-width-75-percent-sp {
    width: 75%;
  }
  .u-width-80-percent-sp {
    width: 80%;
  }
  .u-width-85-percent-sp {
    width: 85%;
  }
  .u-width-90-percent-sp {
    width: 90%;
  }
  .u-width-95-percent-sp {
    width: 95%;
  }
}
.u-mt-0 {
  margin-top: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pr-60 {
  padding-right: 60px !important;
}

.u-pl-60 {
  padding-left: 60px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pr-70 {
  padding-right: 70px !important;
}

.u-pl-70 {
  padding-left: 70px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pr-80 {
  padding-right: 80px !important;
}

.u-pl-80 {
  padding-left: 80px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pr-90 {
  padding-right: 90px !important;
}

.u-pl-90 {
  padding-left: 90px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pr-100 {
  padding-right: 100px !important;
}

.u-pl-100 {
  padding-left: 100px !important;
}

@media (max-width: 768px) {
  .u-gap-20-sp {
    gap: 20px 0 !important;
  }
}
@media (max-width: 768px) {
  .u-mt-20-sp {
    margin-top: 20px !important;
  }
  .u-mt-40-sp {
    margin-top: 40px !important;
  }
  .u-mt-56-sp {
    margin-top: 56px !important;
  }
}
/*# sourceMappingURL=style.min.css.map */
