@charset "UTF-8";
:root {
  --margin-section: 3.3em;
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes _on_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes header_index_show {
  0% {
    display: none;
  }
  1% {
    display: block;
    opacity: 0;
    top: -30px;
  }
  100% {
    top: 0;
    opacity: 1;
    display: block;
  }
}
@keyframes header_index_hide {
  0% {
    top: 0;
    opacity: 1;
    display: block;
  }
  99% {
    top: -30px;
    opacity: 0;
    display: block;
  }
  100% {
    top: -30px;
    opacity: 0;
    display: none;
  }
}
@keyframes header_search_show {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(64px);
  }
}
@keyframes header_search_hide {
  0% {
    transform: translateY(64px);
  }
  100% {
    transform: translateY(0);
  }
}
/* stylelint-disable at-rule-empty-line-before */
/* simple clearfix */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%; /* 3 */
  text-size-adjust: 100%; /* 3 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects;
  text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

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

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

.mb-5 {
  margin-bottom: 5em !important;
}

.mb-4 {
  margin-bottom: 4em !important;
}

.mb-3 {
  margin-bottom: 3em !important;
}

.mb-2 {
  margin-bottom: 2em !important;
}

.mb-1_5 {
  margin-bottom: 1.5em !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

.mb-05 {
  margin-bottom: 0.5em !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mt-1_5 {
  margin-top: 1.5em !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mt-05 {
  margin-top: 0.5em !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.ml-5 {
  margin-left: 5em !important;
}

.ml-4 {
  margin-left: 4em !important;
}

.ml-3 {
  margin-left: 3em !important;
}

.ml-2 {
  margin-left: 2em !important;
}

.ml-1_5 {
  margin-left: 1.5em !important;
}

.ml-1 {
  margin-left: 1em !important;
}

.ml-05 {
  margin-left: 0.5em !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-5 {
  margin-right: 5em !important;
}

.mr-4 {
  margin-right: 4em !important;
}

.mr-3 {
  margin-right: 3em !important;
}

.mr-2 {
  margin-right: 2em !important;
}

.mr-1_5 {
  margin-right: 1.5em !important;
}

.mr-1 {
  margin-right: 1em !important;
}

.mr-05 {
  margin-right: 0.5em !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.my-5 {
  margin-top: 5em !important;
  margin-bottom: 5em !important;
}

.my-4 {
  margin-top: 4em !important;
  margin-bottom: 4em !important;
}

.my-3 {
  margin-top: 3em !important;
  margin-bottom: 3em !important;
}

.my-2 {
  margin-top: 2em !important;
  margin-bottom: 2em !important;
}

.my-1_5 {
  margin-top: 1.5em !important;
  margin-bottom: 1.5em !important;
}

.my-1 {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}

.my-05 {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-5 {
  margin-left: 5em !important;
  margin-right: 5em !important;
}

.mx-4 {
  margin-left: 4em !important;
  margin-right: 4em !important;
}

.mx-3 {
  margin-left: 3em !important;
  margin-right: 3em !important;
}

.mx-2 {
  margin-left: 2em !important;
  margin-right: 2em !important;
}

.mx-1_5 {
  margin-left: 1.5em !important;
  margin-right: 1.5em !important;
}

.mx-1 {
  margin-left: 1em !important;
  margin-right: 1em !important;
}

.mx-05 {
  margin-left: 0.5em !important;
  margin-right: 0.5em !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media screen and (min-width: 1100px), print {
  .mb-pc-5 {
    margin-bottom: 5em !important;
  }
  .mb-pc-4 {
    margin-bottom: 4em !important;
  }
  .mb-pc-3 {
    margin-bottom: 3em !important;
  }
  .mb-pc-2 {
    margin-bottom: 2em !important;
  }
  .mb-pc-1_5 {
    margin-bottom: 1.5em !important;
  }
  .mb-pc-1 {
    margin-bottom: 1em !important;
  }
  .mb-pc-05 {
    margin-bottom: 0.5em !important;
  }
  .mb-pc-0 {
    margin-bottom: 0 !important;
  }
  .mt-pc-5 {
    margin-top: 5em !important;
  }
  .mt-pc-4 {
    margin-top: 4em !important;
  }
  .mt-pc-3 {
    margin-top: 3em !important;
  }
  .mt-pc-2 {
    margin-top: 2em !important;
  }
  .mt-pc-1_5 {
    margin-top: 1.5em !important;
  }
  .mt-pc-1 {
    margin-top: 1em !important;
  }
  .mt-pc-05 {
    margin-top: 0.5em !important;
  }
  .mt-pc-0 {
    margin-top: 0 !important;
  }
  .ml-pc-5 {
    margin-left: 5em !important;
  }
  .ml-pc-4 {
    margin-left: 4em !important;
  }
  .ml-pc-3 {
    margin-left: 3em !important;
  }
  .ml-pc-2 {
    margin-left: 2em !important;
  }
  .ml-pc-1_5 {
    margin-left: 1.5em !important;
  }
  .ml-pc-1 {
    margin-left: 1em !important;
  }
  .ml-pc-05 {
    margin-left: 0.5em !important;
  }
  .ml-pc-0 {
    margin-left: 0 !important;
  }
  .mr-pc-5 {
    margin-right: 5em !important;
  }
  .mr-pc-4 {
    margin-right: 4em !important;
  }
  .mr-pc-3 {
    margin-right: 3em !important;
  }
  .mr-pc-2 {
    margin-right: 2em !important;
  }
  .mr-pc-1_5 {
    margin-right: 1.5em !important;
  }
  .mr-pc-1 {
    margin-right: 1em !important;
  }
  .mr-pc-05 {
    margin-right: 0.5em !important;
  }
  .mr-pc-0 {
    margin-right: 0 !important;
  }
  .my-pc-5 {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .my-pc-4 {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .my-pc-3 {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .my-pc-2 {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .my-pc-1_5 {
    margin-top: 1.5em !important;
    margin-bottom: 1.5em !important;
  }
  .my-pc-1 {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .my-pc-05 {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .my-pc-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-pc-5 {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .mx-pc-4 {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .mx-pc-3 {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .mx-pc-2 {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .mx-pc-1_5 {
    margin-left: 1.5em !important;
    margin-right: 1.5em !important;
  }
  .mx-pc-1 {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .mx-pc-05 {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .mx-pc-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1099px) {
  .mb-sp-5 {
    margin-bottom: 5em !important;
  }
  .mb-sp-4 {
    margin-bottom: 4em !important;
  }
  .mb-sp-3 {
    margin-bottom: 3em !important;
  }
  .mb-sp-2 {
    margin-bottom: 2em !important;
  }
  .mb-sp-1_5 {
    margin-bottom: 1.5em !important;
  }
  .mb-sp-1 {
    margin-bottom: 1em !important;
  }
  .mb-sp-05 {
    margin-bottom: 0.5em !important;
  }
  .mb-sp-0 {
    margin-bottom: 0 !important;
  }
  .mt-sp-5 {
    margin-top: 5em !important;
  }
  .mt-sp-4 {
    margin-top: 4em !important;
  }
  .mt-sp-3 {
    margin-top: 3em !important;
  }
  .mt-sp-2 {
    margin-top: 2em !important;
  }
  .mt-sp-1_5 {
    margin-top: 1.5em !important;
  }
  .mt-sp-1 {
    margin-top: 1em !important;
  }
  .mt-sp-05 {
    margin-top: 0.5em !important;
  }
  .mt-sp-0 {
    margin-top: 0 !important;
  }
  .ml-sp-5 {
    margin-left: 5em !important;
  }
  .ml-sp-4 {
    margin-left: 4em !important;
  }
  .ml-sp-3 {
    margin-left: 3em !important;
  }
  .ml-sp-2 {
    margin-left: 2em !important;
  }
  .ml-sp-1_5 {
    margin-left: 1.5em !important;
  }
  .ml-sp-1 {
    margin-left: 1em !important;
  }
  .ml-sp-05 {
    margin-left: 0.5em !important;
  }
  .ml-sp-0 {
    margin-left: 0 !important;
  }
  .mr-sp-5 {
    margin-right: 5em !important;
  }
  .mr-sp-4 {
    margin-right: 4em !important;
  }
  .mr-sp-3 {
    margin-right: 3em !important;
  }
  .mr-sp-2 {
    margin-right: 2em !important;
  }
  .mr-sp-1_5 {
    margin-right: 1.5em !important;
  }
  .mr-sp-1 {
    margin-right: 1em !important;
  }
  .mr-sp-05 {
    margin-right: 0.5em !important;
  }
  .mr-sp-0 {
    margin-right: 0 !important;
  }
  .my-sp-5 {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .my-sp-4 {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .my-sp-3 {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .my-sp-2 {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .my-sp-1_5 {
    margin-top: 1.5em !important;
    margin-bottom: 1.5em !important;
  }
  .my-sp-1 {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .my-sp-05 {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .my-sp-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-sp-5 {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .mx-sp-4 {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .mx-sp-3 {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .mx-sp-2 {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .mx-sp-1_5 {
    margin-left: 1.5em !important;
    margin-right: 1.5em !important;
  }
  .mx-sp-1 {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .mx-sp-05 {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .mx-sp-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.pb-5 {
  padding-bottom: 5em !important;
}

.pb-4 {
  padding-bottom: 4em !important;
}

.pb-3 {
  padding-bottom: 3em !important;
}

.pb-2 {
  padding-bottom: 2em !important;
}

.pb-1_5 {
  padding-bottom: 1.5em !important;
}

.pb-1 {
  padding-bottom: 1em !important;
}

.pb-05 {
  padding-bottom: 0.5em !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-5 {
  padding-top: 5em !important;
}

.pt-4 {
  padding-top: 4em !important;
}

.pt-3 {
  padding-top: 3em !important;
}

.pt-2 {
  padding-top: 2em !important;
}

.pt-1_5 {
  padding-top: 1.5em !important;
}

.pt-1 {
  padding-top: 1em !important;
}

.pt-05 {
  padding-top: 0.5em !important;
}

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

.pl-5 {
  padding-left: 5em !important;
}

.pl-4 {
  padding-left: 4em !important;
}

.pl-3 {
  padding-left: 3em !important;
}

.pl-2 {
  padding-left: 2em !important;
}

.pl-1_5 {
  padding-left: 1.5em !important;
}

.pl-1 {
  padding-left: 1em !important;
}

.pl-05 {
  padding-left: 0.5em !important;
}

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

.pr-5 {
  padding-right: 5em !important;
}

.pr-4 {
  padding-right: 4em !important;
}

.pr-3 {
  padding-right: 3em !important;
}

.pr-2 {
  padding-right: 2em !important;
}

.pr-1_5 {
  padding-right: 1.5em !important;
}

.pr-1 {
  padding-right: 1em !important;
}

.pr-05 {
  padding-right: 0.5em !important;
}

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

.py-5 {
  padding-top: 5em !important;
  padding-bottom: 5em !important;
}

.py-4 {
  padding-top: 4em !important;
  padding-bottom: 4em !important;
}

.py-3 {
  padding-top: 3em !important;
  padding-bottom: 3em !important;
}

.py-2 {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}

.py-1_5 {
  padding-top: 1.5em !important;
  padding-bottom: 1.5em !important;
}

.py-1 {
  padding-top: 1em !important;
  padding-bottom: 1em !important;
}

.py-05 {
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-5 {
  padding-left: 5em !important;
  padding-right: 5em !important;
}

.px-4 {
  padding-left: 4em !important;
  padding-right: 4em !important;
}

.px-3 {
  padding-left: 3em !important;
  padding-right: 3em !important;
}

.px-2 {
  padding-left: 2em !important;
  padding-right: 2em !important;
}

.px-1_5 {
  padding-left: 1.5em !important;
  padding-right: 1.5em !important;
}

.px-1 {
  padding-left: 1em !important;
  padding-right: 1em !important;
}

.px-05 {
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}

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

@media screen and (min-width: 1100px), print {
  .pb-pc-5 {
    padding-bottom: 5em !important;
  }
  .pb-pc-4 {
    padding-bottom: 4em !important;
  }
  .pb-pc-3 {
    padding-bottom: 3em !important;
  }
  .pb-pc-2 {
    padding-bottom: 2em !important;
  }
  .pb-pc-1_5 {
    padding-bottom: 1.5em !important;
  }
  .pb-pc-1 {
    padding-bottom: 1em !important;
  }
  .pb-pc-05 {
    padding-bottom: 0.5em !important;
  }
  .pb-pc-0 {
    padding-bottom: 0 !important;
  }
  .pt-pc-5 {
    padding-top: 5em !important;
  }
  .pt-pc-4 {
    padding-top: 4em !important;
  }
  .pt-pc-3 {
    padding-top: 3em !important;
  }
  .pt-pc-2 {
    padding-top: 2em !important;
  }
  .pt-pc-1_5 {
    padding-top: 1.5em !important;
  }
  .pt-pc-1 {
    padding-top: 1em !important;
  }
  .pt-pc-05 {
    padding-top: 0.5em !important;
  }
  .pt-pc-0 {
    padding-top: 0 !important;
  }
  .pl-pc-5 {
    padding-left: 5em !important;
  }
  .pl-pc-4 {
    padding-left: 4em !important;
  }
  .pl-pc-3 {
    padding-left: 3em !important;
  }
  .pl-pc-2 {
    padding-left: 2em !important;
  }
  .pl-pc-1_5 {
    padding-left: 1.5em !important;
  }
  .pl-pc-1 {
    padding-left: 1em !important;
  }
  .pl-pc-05 {
    padding-left: 0.5em !important;
  }
  .pl-pc-0 {
    padding-left: 0 !important;
  }
  .pr-pc-5 {
    padding-right: 5em !important;
  }
  .pr-pc-4 {
    padding-right: 4em !important;
  }
  .pr-pc-3 {
    padding-right: 3em !important;
  }
  .pr-pc-2 {
    padding-right: 2em !important;
  }
  .pr-pc-1_5 {
    padding-right: 1.5em !important;
  }
  .pr-pc-1 {
    padding-right: 1em !important;
  }
  .pr-pc-05 {
    padding-right: 0.5em !important;
  }
  .pr-pc-0 {
    padding-right: 0 !important;
  }
  .py-pc-5 {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .py-pc-4 {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .py-pc-3 {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .py-pc-2 {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .py-pc-1_5 {
    padding-top: 1.5em !important;
    padding-bottom: 1.5em !important;
  }
  .py-pc-1 {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .py-pc-05 {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .py-pc-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-pc-5 {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .px-pc-4 {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .px-pc-3 {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .px-pc-2 {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .px-pc-1_5 {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
  }
  .px-pc-1 {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .px-pc-05 {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .px-pc-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 1099px) {
  .pb-sp-5 {
    padding-bottom: 5em !important;
  }
  .pb-sp-4 {
    padding-bottom: 4em !important;
  }
  .pb-sp-3 {
    padding-bottom: 3em !important;
  }
  .pb-sp-2 {
    padding-bottom: 2em !important;
  }
  .pb-sp-1_5 {
    padding-bottom: 1.5em !important;
  }
  .pb-sp-1 {
    padding-bottom: 1em !important;
  }
  .pb-sp-05 {
    padding-bottom: 0.5em !important;
  }
  .pb-sp-0 {
    padding-bottom: 0 !important;
  }
  .pt-sp-5 {
    padding-top: 5em !important;
  }
  .pt-sp-4 {
    padding-top: 4em !important;
  }
  .pt-sp-3 {
    padding-top: 3em !important;
  }
  .pt-sp-2 {
    padding-top: 2em !important;
  }
  .pt-sp-1_5 {
    padding-top: 1.5em !important;
  }
  .pt-sp-1 {
    padding-top: 1em !important;
  }
  .pt-sp-05 {
    padding-top: 0.5em !important;
  }
  .pt-sp-0 {
    padding-top: 0 !important;
  }
  .pl-sp-5 {
    padding-left: 5em !important;
  }
  .pl-sp-4 {
    padding-left: 4em !important;
  }
  .pl-sp-3 {
    padding-left: 3em !important;
  }
  .pl-sp-2 {
    padding-left: 2em !important;
  }
  .pl-sp-1_5 {
    padding-left: 1.5em !important;
  }
  .pl-sp-1 {
    padding-left: 1em !important;
  }
  .pl-sp-05 {
    padding-left: 0.5em !important;
  }
  .pl-sp-0 {
    padding-left: 0 !important;
  }
  .pr-sp-5 {
    padding-right: 5em !important;
  }
  .pr-sp-4 {
    padding-right: 4em !important;
  }
  .pr-sp-3 {
    padding-right: 3em !important;
  }
  .pr-sp-2 {
    padding-right: 2em !important;
  }
  .pr-sp-1_5 {
    padding-right: 1.5em !important;
  }
  .pr-sp-1 {
    padding-right: 1em !important;
  }
  .pr-sp-05 {
    padding-right: 0.5em !important;
  }
  .pr-sp-0 {
    padding-right: 0 !important;
  }
  .py-sp-5 {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .py-sp-4 {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .py-sp-3 {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .py-sp-2 {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .py-sp-1_5 {
    padding-top: 1.5em !important;
    padding-bottom: 1.5em !important;
  }
  .py-sp-1 {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .py-sp-05 {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .py-sp-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-sp-5 {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .px-sp-4 {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .px-sp-3 {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .px-sp-2 {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .px-sp-1_5 {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
  }
  .px-sp-1 {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .px-sp-05 {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .px-sp-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.text-left {
  text-align: left !important;
}

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

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

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.fs-1 {
  font-size: 2.5rem !important;
}

.fs-2 {
  font-size: 2rem !important;
}

.fs-3 {
  font-size: 1.75rem !important;
}

.fs-4 {
  font-size: 1.5rem !important;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.border-0 {
  border-width: 0 !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

@media screen and (min-width: 1100px), print {
  .d-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 1099px) {
  .d-sp-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .d-ipc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .d-isp-none {
    display: none !important;
  }
}
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

@media screen and (min-width: 1100px), print {
  .w-pc-100 {
    width: 100% !important;
  }
}
@media screen and (max-width: 1099px) {
  .w-sp-100 {
    width: 100% !important;
  }
}
@media screen and (max-width: 575px) {
  .w-xs-100 {
    width: 100% !important;
  }
}
.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.bg-gray {
  background-color: #c1c1c1 !important;
}

.root .main_content .mb_3em {
  margin-bottom: 3em;
}
.root .main_content .mb_2em {
  margin-bottom: 2em;
}
.root .main_content .mb_1_5em {
  margin-bottom: 1.5em;
}
.root .main_content .mb_1em {
  margin-bottom: 1em;
}
.root .main_content .mb_05em {
  margin-bottom: 0.5em;
}
.root .main_content .mb_0em,
.root .main_content .no_mb,
.root .main_content .mb_none {
  margin-bottom: 0;
}

/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## initial

md 初期設定


*/
/* stylelint-disable-next-line media-feature-name-no-unknown */
@media only screen and (min-device-pixel-ratio: 2), (resolution >= 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
li {
  list-style: none;
}

input,
textarea {
  outline: 0;
}

input::-moz-placeholder {
  color: #bdc3c7;
  opacity: 0.75;
}

input::placeholder {
  color: #bdc3c7;
  opacity: 0.75;
}

input::input-placeholder {
  color: #bdc3c7;
  opacity: 0.75;
}

textarea::-moz-placeholder {
  color: #bdc3c7;
  opacity: 0.75;
}

textarea::placeholder {
  color: #bdc3c7;
  opacity: 0.75;
}

.none {
  display: none;
}

.on_opacity:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.2s opacity;
}

img[usemap],
map,
map area {
  outline: none;
}

/**************************
img
*/
.img {
  max-width: 100%;
  display: block;
}

.main_content {
  max-width: 100%;
}
.main_content img._border {
  border: 1px solid #cccccc;
}
@media screen and (max-width: 1099px) {
  .main_content img {
    display: block;
  }
}

/**************************
.image_radius
*/
.image_radius {
  border-radius: 10px;
}

.root .no_radius {
  border-radius: inherit;
}

/**************************
clearfix
*/
.clearfix::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clear {
  clear: both;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## base

コンポーネント設定。
各ページでよく使い回す記述。
このサイト専用の共通設定。


*/
@media screen and (max-width: 999px) {
  select,
  input {
    font-size: 1rem;
  }
  .text_frame input,
  .textarea_frame textarea {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
    line-height: 1.5;
  }
}
body.js-body_no_scroll {
  overflow-y: hidden !important;
}

.main_content {
  background-color: #f1f1f1;
  padding-bottom: 100px;
}
@media screen and (max-width: 999px) {
  .main_content {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .main_content {
    padding-bottom: 30px;
  }
}
.main_content._index {
  background-color: #f6f9fa;
}
@media screen and (max-width: 999px) {
  .main_content._recruit .content_body .main_column {
    padding-bottom: 0;
  }
}
.main_content img {
  max-width: 100%;
}
.main_content .content_body {
  position: relative;
  z-index: 2;
  min-height: 400px;
}
.main_content .content_body._single_column {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .main_content .content_body._single_column {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.main_content p:not(:last-child) {
  margin-bottom: 1em;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .main_content p:not(:last-child) {
    letter-spacing: 0.06em;
  }
}
.main_content .downward img {
  display: block;
  margin: auto;
}

.gmap {
  width: 100%;
  height: 430px;
  background-color: #cccccc;
}
.gmap > iframe {
  max-width: 100%;
}
.gmap > img {
  max-width: 100%;
}

.video,
.video video {
  max-width: 100%;
}

.youtube {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1099px) {
  .youtube {
    max-width: 260px;
    height: 170px;
  }
}
.youtube iframe {
  max-width: 100%;
  max-height: 100%;
}

.gcalendar {
  max-width: 100%;
}
.gcalendar > iframe {
  max-width: 100%;
  height: 300px;
}
.gcalendar > img {
  max-width: 100%;
}

.twitter {
  overflow: hidden;
}
.twitter > iframe {
  margin-left: auto;
  margin-right: auto;
}

.inline_video {
  max-width: 100%;
}

.wide_container {
  width: 100vw;
  max-width: none;
  min-width: 0;
  position: relative;
  top: 0;
  left: -50vw;
  right: -50vw;
  margin-right: 50%;
  margin-left: 50%;
}

@media screen and (min-width: 1100px), print {
  .pc_wide_container {
    width: 100vw;
    max-width: none;
    min-width: 0;
    position: relative;
    top: 0;
    left: -50vw;
    right: -50vw;
    margin-right: 50%;
    margin-left: 50%;
  }
}

@media screen and (min-width: 768px) {
  .ipc_wide_container {
    width: 100vw;
    max-width: none;
    min-width: 0;
    position: relative;
    top: 0;
    left: -50vw;
    right: -50vw;
    margin-right: 50%;
    margin-left: 50%;
  }
}

input:focus, input:active,
textarea:focus,
textarea:active {
  /* text-decoration: underline; */
  outline: 2px solid #549bd1;
}

.scell {
  margin-right: 1em;
}

.scell2 {
  margin-right: 0.5em;
}

/**************************
	.sup_area
*/
.sup_area {
  position: relative;
  top: 0;
  left: 0;
}

.sup {
  position: absolute;
  top: -0.8em;
  left: 0;
  width: 100%;
  font-size: 0.625rem;
  display: inline-block;
  text-align: center;
}

.banner {
  display: inline-block;
}
.banner:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.2s opacity;
}
.banner img {
  display: block;
  max-width: 100%;
}

.signature {
  text-align: right;
}

.shadow {
  box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.3);
}

.marker {
  background: linear-gradient(transparent 60%, #ff0000 60%);
}

figure img {
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 1099px) {
  figure img {
    margin-left: auto;
    margin-right: auto;
  }
}
figure figcaption {
  font-size: 0.875rem;
}
@media screen and (min-width: 1100px), print {
  figure figcaption {
    padding-top: 0.2em;
    text-align: center;
  }
  figure figcaption._left {
    text-align: left;
  }
}
@media screen and (max-width: 1099px) {
  figure figcaption {
    padding-top: 0.2em;
    text-align: center;
  }
}

hr {
  border-top: 1px solid #cccccc;
  border-right: 0 none;
  border-left: 0 none;
  border-bottom: 0 none;
}
@media screen and (min-width: 768px) {
  hr {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  hr {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.swiper {
  overflow: hidden;
  width: 100%;
}

.skip_to_main_content {
  border-style: none;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  z-index: 100;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  letter-spacing: 0.12em;
  font-size: 1rem;
  line-height: 1.75;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: 0.06em;
  }
}

em,
.bold,
.em {
  font-weight: bold;
  font-style: normal;
}

.large_text {
  font-weight: normal;
}
@media screen and (min-width: 1100px), print {
  .large_text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1099px) {
  .large_text {
    font-size: 1rem;
  }
}

em.large_text {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.caution,
.red_text,
.text-red {
  color: #ff0000;
  -webkit-text-decoration-color: #ff0000;
  text-decoration-color: #ff0000;
}

.text-orange {
  color: #ff0000 !important;
  font-weight: bold;
}

.text-green {
  color: #0b8b35;
  font-weight: bold;
}

.text-strong {
  font-size: 1.375rem;
  color: #ff0000;
}
@media screen and (max-width: 1099px) {
  .text-strong {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.text-pink {
  color: #ff0000 !important;
}

.text-black {
  color: #1a1a1a !important;
}

.text-white {
  color: #ffffff;
}

.text-blue {
  color: #2494b0;
}

.text-sm {
  font-size: 80%;
}

.text-lg {
  font-size: 130%;
}

.text-yellow {
  color: #a67f07;
  font-weight: bold;
}

.text-gray {
  color: #ff0000;
}

.no_text,
.hide-text {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  /* stylelint-disable-next-line at-rule-empty-line-before */
}

.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.no_wrap {
  white-space: nowrap;
}

@media screen and (min-width: 1100px), print {
  p {
    font-size: 1rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 1099px) {
  p {
    font-size: 1rem;
    line-height: 1.75;
  }
}
/**************************
anotation
*/
.anotation {
  position: relative;
  top: 0;
  left: 0;
  line-height: 1.5;
  padding-left: 1.3em;
}
@media screen and (min-width: 1100px), print {
  .anotation {
    font-size: 1rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 1099px) {
  .anotation {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.anotation::before {
  content: "※";
  width: 1em;
  position: absolute;
  top: 0.04em;
  left: 0;
  color: #ff0000;
}
.anotation._black {
  color: #1a1a1a;
}
.anotation._black::before {
  color: #1a1a1a;
}
.anotation._right {
  float: right;
}
.anotation._red {
  color: #ff0000;
}
.anotation._red::before {
  color: #ff0000;
}
@media screen and (min-width: 1100px), print {
  .anotation._sm {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1100px), print {
  .anotation._sm {
    font-size: 0.813rem;
  }
}

/**************************
pc
*/
@media screen and (min-width: 1000px), print {
  .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1260px;
  }
  .pc_padding,
  .padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/**************************
sp
*/
@media screen and (max-width: 999px) {
  .sp_container,
  .container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .sp_padding,
  .padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/**************************
xs
*/
@media screen and (max-width: 575px) {
  .sp_container,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sp_padding,
  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main_content h2:not(.cancel), .main_content .h2,
.main_content h3:not(.cancel), .main_content .h3,
.main_content h4:not(.cancel), .main_content .h4,
.main_content h5:not(.cancel), .main_content .h5,
.main_content h6:not(.cancel), .main_content .h6,
.editor-visual-editor h2:not(.cancel),
.editor-visual-editor .h2,
.editor-visual-editor h3:not(.cancel),
.editor-visual-editor .h3,
.editor-visual-editor h4:not(.cancel),
.editor-visual-editor .h4,
.editor-visual-editor h5:not(.cancel),
.editor-visual-editor .h5,
.editor-visual-editor h6:not(.cancel),
.editor-visual-editor .h6 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 575px) {
  .main_content h2:not(.cancel), .main_content .h2,
  .main_content h3:not(.cancel), .main_content .h3,
  .main_content h4:not(.cancel), .main_content .h4,
  .main_content h5:not(.cancel), .main_content .h5,
  .main_content h6:not(.cancel), .main_content .h6,
  .editor-visual-editor h2:not(.cancel),
  .editor-visual-editor .h2,
  .editor-visual-editor h3:not(.cancel),
  .editor-visual-editor .h3,
  .editor-visual-editor h4:not(.cancel),
  .editor-visual-editor .h4,
  .editor-visual-editor h5:not(.cancel),
  .editor-visual-editor .h5,
  .editor-visual-editor h6:not(.cancel),
  .editor-visual-editor .h6 {
    letter-spacing: 0.1em;
  }
}
.main_content h2:not(.cancel),
.main_content .h2,
.editor-visual-editor h2:not(.cancel),
.editor-visual-editor .h2 {
  position: relative;
}
@media screen and (min-width: 1200px), print {
  .main_content h2:not(.cancel),
  .main_content .h2,
  .editor-visual-editor h2:not(.cancel),
  .editor-visual-editor .h2 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h2:not(.cancel),
  .main_content .h2,
  .editor-visual-editor h2:not(.cancel),
  .editor-visual-editor .h2 {
    font-size: clamp(22px, 4vw, 35px);
  }
}
@media screen and (min-width: 768px), print {
  .main_content h2:not(.cancel),
  .main_content .h2,
  .editor-visual-editor h2:not(.cancel),
  .editor-visual-editor .h2 {
    padding-bottom: 25px;
    margin-top: 2.2em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #cfcfcf;
  }
}
@media screen and (max-width: 767px) {
  .main_content h2:not(.cancel),
  .main_content .h2,
  .editor-visual-editor h2:not(.cancel),
  .editor-visual-editor .h2 {
    padding-bottom: 15px;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #cfcfcf;
  }
}
.main_content h2:not(.cancel) + h3:not(.cancel),
.main_content .h2 + h3:not(.cancel),
.editor-visual-editor h2:not(.cancel) + h3:not(.cancel),
.editor-visual-editor .h2 + h3:not(.cancel) {
  margin-top: calc(var(--margin-section) / 2);
}
.main_content h3:not(.cancel),
.main_content .h3,
.editor-visual-editor h3:not(.cancel),
.editor-visual-editor .h3 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 20px 8px;
  min-height: 56px;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.4;
  background-color: #f1f1f1;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 1200px), print {
  .main_content h3:not(.cancel),
  .main_content .h3,
  .editor-visual-editor h3:not(.cancel),
  .editor-visual-editor .h3 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h3:not(.cancel),
  .main_content .h3,
  .editor-visual-editor h3:not(.cancel),
  .editor-visual-editor .h3 {
    min-height: 50px;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
}
@media screen and (max-width: 767px) {
  .main_content h3:not(.cancel),
  .main_content .h3,
  .editor-visual-editor h3:not(.cancel),
  .editor-visual-editor .h3 {
    margin-bottom: 0.8em;
    padding: 9px 0.8rem 8px;
  }
}
.main_content h3:not(.cancel) + h4:not(.cancel),
.main_content .h3 + h4:not(.cancel),
.editor-visual-editor h3:not(.cancel) + h4:not(.cancel),
.editor-visual-editor .h3 + h4:not(.cancel) {
  margin-top: calc(var(--margin-section) / 2.5);
}
.main_content h4:not(.cancel),
.main_content .h4,
.editor-visual-editor h4:not(.cancel),
.editor-visual-editor .h4 {
  display: inline-block;
  margin-top: calc(var(--margin-section) * 0.3);
  margin-bottom: 0.8em;
  line-height: 1.4;
  padding-left: 25px;
  box-sizing: border-box;
  position: relative;
}
.main_content h4:not(.cancel)::before,
.main_content .h4::before,
.editor-visual-editor h4:not(.cancel)::before,
.editor-visual-editor .h4::before {
  content: "";
  display: inline-block;
  border: 4px solid #0b8b35;
  border-radius: 100%;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0.45em;
  left: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content h4:not(.cancel),
  .main_content .h4,
  .editor-visual-editor h4:not(.cancel),
  .editor-visual-editor .h4 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h4:not(.cancel),
  .main_content .h4,
  .editor-visual-editor h4:not(.cancel),
  .editor-visual-editor .h4 {
    font-size: clamp(1.125rem, 4vw, 1.625rem);
  }
}
@media screen and (max-width: 767px) {
  .main_content h4:not(.cancel),
  .main_content .h4,
  .editor-visual-editor h4:not(.cancel),
  .editor-visual-editor .h4 {
    margin-bottom: 0.7em;
  }
  .main_content h4:not(.cancel)::before,
  .main_content .h4::before,
  .editor-visual-editor h4:not(.cancel)::before,
  .editor-visual-editor .h4::before {
    top: 0.5em;
    left: 0;
  }
}
@media screen and (max-width: 575px) {
  .main_content h4:not(.cancel),
  .main_content .h4,
  .editor-visual-editor h4:not(.cancel),
  .editor-visual-editor .h4 {
    margin-bottom: 0.7em;
  }
  .main_content h4:not(.cancel)::before,
  .main_content .h4::before,
  .editor-visual-editor h4:not(.cancel)::before,
  .editor-visual-editor .h4::before {
    top: 0.4em;
    left: 0;
    border: 2px solid #0b8b35;
    width: 12px;
    height: 12px;
  }
}
.main_content h4:not(.cancel) + h5:not(.cancel),
.main_content .h4 + h5:not(.cancel),
.editor-visual-editor h4:not(.cancel) + h5:not(.cancel),
.editor-visual-editor .h4 + h5:not(.cancel) {
  margin-top: calc(var(--margin-section) / 1.5);
}
.main_content h5:not(.cancel),
.main_content .h5,
.editor-visual-editor h5:not(.cancel),
.editor-visual-editor .h5 {
  margin-top: calc(var(--margin-section) * 0.5);
  margin-bottom: 0.3em;
  padding-left: 22px;
  position: relative;
}
.main_content h5:not(.cancel)::before,
.main_content .h5::before,
.editor-visual-editor h5:not(.cancel)::before,
.editor-visual-editor .h5::before {
  content: "";
  display: inline-block;
  background-color: #0b8b35;
  border-radius: 100%;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0.55em;
  left: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content h5:not(.cancel),
  .main_content .h5,
  .editor-visual-editor h5:not(.cancel),
  .editor-visual-editor .h5 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h5:not(.cancel),
  .main_content .h5,
  .editor-visual-editor h5:not(.cancel),
  .editor-visual-editor .h5 {
    font-size: clamp(1.063rem, 4vw, 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  .main_content h5:not(.cancel),
  .main_content .h5,
  .editor-visual-editor h5:not(.cancel),
  .editor-visual-editor .h5 {
    margin-bottom: 0.8em;
  }
}
@media screen and (max-width: 575px) {
  .main_content h5:not(.cancel)::before,
  .main_content .h5::before,
  .editor-visual-editor h5:not(.cancel)::before,
  .editor-visual-editor .h5::before {
    top: 0.45em;
  }
}
.main_content h5:not(.cancel) + h6:not(.cancel),
.main_content .h5 + h6:not(.cancel),
.editor-visual-editor h5:not(.cancel) + h6:not(.cancel),
.editor-visual-editor .h5 + h6:not(.cancel) {
  margin-top: calc(var(--margin-section) / 1.2);
}
.main_content h6:not(.cancel),
.main_content .h6,
.editor-visual-editor h6:not(.cancel),
.editor-visual-editor .h6 {
  margin-top: calc(var(--margin-section) * 0.4);
  margin-bottom: 0.4em;
  font-size: 1.25rem;
  color: #0b8b35;
}

.inline_list {
  list-style-type: none;
}
.inline_list, .inline_list > li, .inline_list > * {
  margin: 0;
  padding: 0;
  display: inline;
}

.inline_block_list::before, .inline_block_list::after {
  content: "";
  display: table;
}
.inline_block_list::after {
  clear: both;
}
.inline_block_list > li, .inline_block_list > * {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  padding-left: 20px;
  padding-right: 20px;
}
.inline_block_list > li:first-child, .inline_block_list > *:first-child {
  padding-left: 0;
}
.inline_block_list > li:last-child, .inline_block_list > *:last-child {
  padding-right: 0;
}

@media screen and (min-width: 1100px), print {
  .pc_inline_block_list::before, .pc_inline_block_list::after {
    content: "";
    display: table;
  }
  .pc_inline_block_list::after {
    clear: both;
  }
  .pc_inline_block_list > li, .pc_inline_block_list > * {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  .pc_inline_block_list > li:first-child, .pc_inline_block_list > *:first-child {
    padding-left: 0;
  }
  .pc_inline_block_list > li:last-child, .pc_inline_block_list > *:last-child {
    padding-right: 0;
  }
}
@media screen and (max-width: 1099px) {
  .pc_inline_block_list li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1099px) {
  .sp_inline_block_list::before, .sp_inline_block_list::after {
    content: "";
    display: table;
  }
  .sp_inline_block_list::after {
    clear: both;
  }
  .sp_inline_block_list > li, .sp_inline_block_list > * {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  .sp_inline_block_list > li:first-child, .sp_inline_block_list > *:first-child {
    padding-left: 0;
  }
  .sp_inline_block_list > li:last-child, .sp_inline_block_list > *:last-child {
    padding-right: 0;
  }
}
.horizontal_list::before, .horizontal_list::after {
  content: "";
  display: table;
}
.horizontal_list::after {
  clear: both;
}
.horizontal_list > li,
.horizontal_list > * {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  white-space: nowrap;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}
.horizontal_list > li:first-child,
.horizontal_list > *:first-child {
  padding-left: 0;
}
.horizontal_list > li:last-child,
.horizontal_list > *:last-child {
  padding-right: 0;
}
.main_content .horizontal_list {
  padding-left: 0;
}
.main_content .horizontal_list li::before {
  display: none;
}

@media screen and (min-width: 1100px), print {
  .ul_horizontal_list::before, .ul_horizontal_list::after {
    content: "";
    display: table;
  }
  .ul_horizontal_list::after {
    clear: both;
  }
  .ul_horizontal_list > li,
  .ul_horizontal_list > * {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    white-space: nowrap;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ul_horizontal_list > li:first-child,
  .ul_horizontal_list > *:first-child {
    padding-left: 0;
  }
  .ul_horizontal_list > li:last-child,
  .ul_horizontal_list > *:last-child {
    padding-right: 0;
  }
  .main_content .ul_horizontal_list {
    padding-left: 0;
  }
  .main_content .ul_horizontal_list li::before {
    display: none;
  }
}
@media screen and (max-width: 1099px) {
  .main_content .ul_horizontal_list > ul:not(.cancel) {
    margin-bottom: 0.3em;
  }
}
.inline-slash-list {
  display: inline-flex;
  flex-wrap: wrap;
}
.inline-slash-list > li:not(:last-child)::after {
  content: "/";
  margin-left: 1em;
  margin-right: 1em;
}

@media screen and (max-width: 575px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list),
  .imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list),
  .editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
    padding-left: 0;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(:last-child),
.imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(:last-child),
.editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list).link_list,
.imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list).link_list,
.editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list).link_list {
  padding-left: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li,
.imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li,
.editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
  padding-left: 1em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li:not(:last-of-type),
.imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li:not(:last-of-type),
.editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li:not(:last-of-type) {
  margin-bottom: 0.9em;
}
@media screen and (min-width: 1100px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li,
  .imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li,
  .editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1099px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li,
  .imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li,
  .editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before,
.imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before,
.editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid #0b8b35;
  border-radius: 4px;
  box-sizing: border-box;
}
@media screen and (min-width: 1100px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before,
  .imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before,
  .editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
    top: 1.2ex;
  }
}
@media screen and (max-width: 1099px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before,
  .imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before,
  .editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
    top: 1.3ex;
    left: 0.1rem;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li ul,
.imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li ul,
.editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li ul {
  padding-left: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(.inline_block_list) > li:last-child,
.imain_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(.inline_block_list) > li:last-child,
.editor-visual-editor ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(.inline_block_list) > li:last-child {
  margin-bottom: 0;
}

.main_content .content_body .main_column ol:not(.cancel),
.main_content .content_body .main_column .wp-block-column-is-layout-flow ol:not(.cancel),
.editor-visual-editor .content_body .main_column ol:not(.cancel),
.editor-visual-editor .content_body .main_column .wp-block-column-is-layout-flow ol:not(.cancel) {
  padding-left: 1.55rem;
}
@media screen and (max-width: 767px) {
  .main_content .content_body .main_column ol:not(.cancel),
  .main_content .content_body .main_column .wp-block-column-is-layout-flow ol:not(.cancel),
  .editor-visual-editor .content_body .main_column ol:not(.cancel),
  .editor-visual-editor .content_body .main_column .wp-block-column-is-layout-flow ol:not(.cancel) {
    padding-left: 0.85rem;
  }
}
.main_content ol:not(.cancel),
.editor-visual-editor ol:not(.cancel) {
  list-style: none;
  counter-reset: num 0;
}
.main_content ol:not(.cancel):not(:last-child),
.editor-visual-editor ol:not(.cancel):not(:last-child) {
  margin-bottom: 0.8em;
}
@media screen and (max-width: 575px) {
  .main_content ol:not(.cancel),
  .editor-visual-editor ol:not(.cancel) {
    padding-left: 0;
  }
}
.main_content ol:not(.cancel) > li,
.editor-visual-editor ol:not(.cancel) > li {
  letter-spacing: 0.1em;
  padding-left: 20px;
  margin-bottom: 0.5em;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1100px), print {
  .main_content ol:not(.cancel) > li,
  .editor-visual-editor ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1099px) {
  .main_content ol:not(.cancel) > li,
  .editor-visual-editor ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.main_content ol:not(.cancel) > li::before,
.editor-visual-editor ol:not(.cancel) > li::before {
  font-family: Marcellus, serif;
  font-weight: 400;
  counter-increment: num 1;
  content: counter(num);
  color: #0b8b35;
  font-size: 1.125rem;
  position: absolute;
  top: -0.03em;
  left: 0;
  width: 1.5em;
}
.main_content ol:not(.cancel):not(.inline_block_list) > li:last-child,
.editor-visual-editor ol:not(.cancel):not(.inline_block_list) > li:last-child {
  margin-bottom: 0;
}
.main_content ol:not(.cancel)._sm > li,
.editor-visual-editor ol:not(.cancel)._sm > li {
  margin-bottom: 0;
  line-height: 1.7;
}
@media screen and (min-width: 1100px), print {
  .main_content ol:not(.cancel)._sm > li::before,
  .editor-visual-editor ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}
@media screen and (max-width: 1099px) {
  .main_content ol:not(.cancel)._sm > li::before,
  .editor-visual-editor ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}

.dl::before, .dl::after {
  content: "";
  display: table;
}
.dl::after {
  clear: both;
}
.dl dt {
  clear: left;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  font-weight: bold;
}
.dl dt::before {
  margin-right: 0.5em;
}
@media screen and (min-width: 1100px), print {
  .dl dt {
    float: left;
  }
}
@media screen and (min-width: 1100px), print {
  .dl dt,
  .dl dd {
    float: left;
  }
}
.dl dt:last-child,
.dl dd:last-child {
  margin-bottom: 0;
}
.dl dd {
  width: 100%;
  box-sizing: border-box;
}
.dl dd:not(:last-child) {
  padding-bottom: 0.3em;
}
@media screen and (max-width: 1099px) {
  .dl dd:not(:last-child) {
    margin-bottom: 0.7em;
  }
}
@media screen and (min-width: 1100px), print {
  .dl-2em dt {
    width: 2em;
  }
  .dl-2em dt .h-inline {
    width: -1.5em;
  }
  .dl-2em dd {
    margin-left: -3em;
    padding-left: 3em;
  }
  .dl-3em dt {
    width: 3em;
  }
  .dl-3em dt .h-inline {
    width: -0.5em;
  }
  .dl-3em dd {
    margin-left: -4em;
    padding-left: 4em;
  }
  .dl-4em dt {
    width: 4em;
  }
  .dl-4em dt .h-inline {
    width: 0.5em;
  }
  .dl-4em dd {
    margin-left: -5em;
    padding-left: 5em;
  }
  .dl-5em dt {
    width: 5em;
  }
  .dl-5em dt .h-inline {
    width: 1.5em;
  }
  .dl-5em dd {
    margin-left: -6em;
    padding-left: 6em;
  }
  .dl-6em dt {
    width: 6em;
  }
  .dl-6em dt .h-inline {
    width: 2.5em;
  }
  .dl-6em dd {
    margin-left: -7em;
    padding-left: 7em;
  }
  .dl-7em dt {
    width: 7em;
  }
  .dl-7em dt .h-inline {
    width: 3.5em;
  }
  .dl-7em dd {
    margin-left: -8em;
    padding-left: 8em;
  }
  .dl-8em dt {
    width: 8em;
  }
  .dl-8em dt .h-inline {
    width: 4.5em;
  }
  .dl-8em dd {
    margin-left: -9em;
    padding-left: 9em;
  }
  .dl-10em dt {
    width: 10em;
  }
  .dl-10em dt .h-inline {
    width: 6.5em;
  }
  .dl-10em dd {
    margin-left: -11em;
    padding-left: 11em;
  }
  .dl-12em dt {
    width: 12em;
  }
  .dl-12em dt .h-inline {
    width: 8.5em;
  }
  .dl-12em dd {
    margin-left: -13em;
    padding-left: 13em;
  }
  .dl-14em dt {
    width: 14em;
  }
  .dl-14em dt .h-inline {
    width: 10.5em;
  }
  .dl-14em dd {
    margin-left: -15em;
    padding-left: 15em;
  }
  .dl-16em dt {
    width: 16em;
  }
  .dl-16em dt .h-inline {
    width: 12.5em;
  }
  .dl-16em dd {
    margin-left: -17em;
    padding-left: 17em;
  }
  .dl-18em dt {
    width: 18em;
  }
  .dl-18em dt .h-inline {
    width: 14.5em;
  }
  .dl-18em dd {
    margin-left: -19em;
    padding-left: 19em;
  }
  .dl-20em dt {
    width: 20em;
  }
  .dl-20em dt .h-inline {
    width: 16.5em;
  }
  .dl-20em dd {
    margin-left: -21em;
    padding-left: 21em;
  }
}
.dl-mb_1em dd {
  margin-bottom: 1em;
}
.dl._underline {
  overflow: hidden;
}
.dl._underline dd:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
}
.dl._underline dt,
.dl._underline dd {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  box-sizing: border-box;
  font-size: 1rem;
}
.dl._horizontal dt {
  padding-top: 1em;
}
.dl._horizontal dt:first-child {
  padding-top: 0;
}
.dl._horizontal dd {
  padding-top: 0;
}

.main_content .content_body .main_column ul.anotation_list:not(.cancel):not(.acf-radio-list),
.main_content .content_body .main_column .wp-block-column-is-layout-flow ul.anotation_list:not(.cancel):not(.acf-radio-list) {
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .main_content .content_body .main_column ul.anotation_list:not(.cancel):not(.acf-radio-list),
  .main_content .content_body .main_column .wp-block-column-is-layout-flow ul.anotation_list:not(.cancel):not(.acf-radio-list) {
    padding-left: 0.8rem;
  }
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) {
  padding-left: 0;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li {
  padding-left: 1.4em;
  margin-bottom: 1em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li:last-child {
  margin-bottom: 0;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li::before {
  content: "※";
  width: 0.5em;
  position: absolute;
  background: 0 none;
  top: 0.04em;
  left: -0.1rem;
  border: none;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list)._red li {
  color: #ff0000;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list)._red li::before {
  color: #ff0000;
}

.main_content .link_list li {
  padding-left: 0 !important;
}
.main_content .link_list li::before {
  display: none !important;
}

.main_content ol:not(.cancel).custom_list {
  padding-top: 1rem;
}
.main_content ol:not(.cancel).custom_list li {
  letter-spacing: 0.1em;
  position: relative;
  top: 0;
  left: 0;
  padding-left: 3rem;
  margin-bottom: 25px;
}
@media screen and (min-width: 1100px), print {
  .main_content ol:not(.cancel).custom_list li {
    font-size: 1rem;
    line-height: 1.225;
  }
}
@media screen and (max-width: 1099px) {
  .main_content ol:not(.cancel).custom_list li {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.main_content ol:not(.cancel).custom_list li::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero);
  font-weight: 600;
  color: #f6b6b4;
  position: absolute;
  top: 0;
  left: 0.4rem;
  text-align: right;
  width: 1.5em;
}
.main_content ol:not(.cancel).custom_list li::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/num_frame.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -10px;
  left: 0;
}

/**************************
・テーブルのルール
基本的にtableにはclassを指定しない

静的コーディング この形を基本とする
<figure class="table_wrapper">
    <table>
        <thead></thead>
        <tbody><tbody>
    </table>
<figure>

wordpressの標準blockの場合
<figure class="wp-block-table">
    <table>
        <thead></thead>
        <tbody><tbody>
    </table>
<figure>

wordpressのプラグインblockの場合（PublishPress Blocks）
<table class="wp-block-advgb-table">
    <thead></thead>
    <tbody><tbody>
</table>
*/
.table_wrapper table,
.root .wpnews table,
.main_content table.wp-block-advgb-table,
.main_content .wp-block-table table {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 899px) {
  .table_wrapper table,
  .root .wpnews table,
  .main_content table.wp-block-advgb-table,
  .main_content .wp-block-table table {
    margin-bottom: 1em;
  }
}
.table_wrapper table caption,
.root .wpnews table caption,
.main_content table.wp-block-advgb-table caption,
.main_content .wp-block-table table caption {
  display: none;
}
.table_wrapper table caption.cap,
.root .wpnews table caption.cap,
.main_content table.wp-block-advgb-table caption.cap,
.main_content .wp-block-table table caption.cap {
  display: block;
  text-align: left;
  font-weight: bold;
  color: #ff0000;
  padding-bottom: 0.5em;
}
.table_wrapper table th,
.table_wrapper table td,
.root .wpnews table th,
.root .wpnews table td,
.main_content table.wp-block-advgb-table th,
.main_content table.wp-block-advgb-table td,
.main_content .wp-block-table table th,
.main_content .wp-block-table table td {
  font-weight: normal;
  box-sizing: border-box;
  text-align: left;
  letter-spacing: 0;
  min-height: 60px;
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .table_wrapper table th,
  .table_wrapper table th p,
  .table_wrapper table td,
  .table_wrapper table td p,
  .root .wpnews table th,
  .root .wpnews table th p,
  .root .wpnews table td,
  .root .wpnews table td p,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table th p,
  .main_content table.wp-block-advgb-table td,
  .main_content table.wp-block-advgb-table td p,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table th p,
  .main_content .wp-block-table table td,
  .main_content .wp-block-table table td p {
    line-height: 1.575;
  }
}
@media screen and (max-width: 1099px) {
  .table_wrapper table th,
  .table_wrapper table th p,
  .table_wrapper table td,
  .table_wrapper table td p,
  .root .wpnews table th,
  .root .wpnews table th p,
  .root .wpnews table td,
  .root .wpnews table td p,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table th p,
  .main_content table.wp-block-advgb-table td,
  .main_content table.wp-block-advgb-table td p,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table th p,
  .main_content .wp-block-table table td,
  .main_content .wp-block-table table td p {
    line-height: 1.4;
  }
}
@media screen and (max-width: 1099px) {
  .table_wrapper table th,
  .table_wrapper table td,
  .root .wpnews table th,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table td {
    min-height: auto;
  }
}
.table_wrapper table th,
.root .wpnews table th,
.main_content table.wp-block-advgb-table th,
.main_content .wp-block-table table th {
  color: #1a1a1a;
  text-align: center;
  vertical-align: middle;
  font-size: clamp(16px, 1.7vw, 1rem);
}
@media screen and (min-width: 1100px), print {
  .table_wrapper table th,
  .root .wpnews table th,
  .main_content table.wp-block-advgb-table th,
  .main_content .wp-block-table table th {
    padding: 0.84em 0.72em !important;
  }
}
@media screen and (max-width: 1099px) {
  .table_wrapper table th,
  .root .wpnews table th,
  .main_content table.wp-block-advgb-table th,
  .main_content .wp-block-table table th {
    padding: 0.6em 0.72em !important;
  }
}
.table_wrapper table td,
.root .wpnews table td,
.main_content table.wp-block-advgb-table td,
.main_content .wp-block-table table td {
  border: none;
}
@media screen and (min-width: 1100px), print {
  .table_wrapper table td,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table td {
    padding: 0.84em 1.5em !important;
  }
}
@media screen and (max-width: 1099px) {
  .table_wrapper table td,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table td {
    padding: 0.6em 0.72em !important;
  }
}
.table_wrapper table thead,
.root .wpnews table thead,
.main_content table.wp-block-advgb-table thead,
.main_content .wp-block-table table thead {
  border-bottom: 0 none;
  position: relative;
}
.table_wrapper table thead th,
.root .wpnews table thead th,
.main_content table.wp-block-advgb-table thead th,
.main_content .wp-block-table table thead th {
  color: #1a1a1a;
  background-color: #e5e5e5;
  position: relative;
  border: 1px solid #cfcfcf;
}
.table_wrapper table tbody th,
.root .wpnews table tbody th,
.main_content table.wp-block-advgb-table tbody th,
.main_content .wp-block-table table tbody th {
  text-align: center;
  color: #1a1a1a;
  background-color: #f6f6f6;
  box-sizing: border-box;
  border: 1px solid #cfcfcf;
}
@media screen and (min-width: 768px), print {
  .table_wrapper table tbody th,
  .root .wpnews table tbody th,
  .main_content table.wp-block-advgb-table tbody th,
  .main_content .wp-block-table table tbody th {
    width: 190px;
  }
}
@media screen and (max-width: 1099px) {
  .table_wrapper table tbody th,
  .root .wpnews table tbody th,
  .main_content table.wp-block-advgb-table tbody th,
  .main_content .wp-block-table table tbody th {
    width: 120px;
  }
}
.table_wrapper table tbody td,
.root .wpnews table tbody td,
.main_content table.wp-block-advgb-table tbody td,
.main_content .wp-block-table table tbody td {
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #cfcfcf;
}
.table_wrapper table tbody td:not(:first-of-type)::before,
.root .wpnews table tbody td:not(:first-of-type)::before,
.main_content table.wp-block-advgb-table tbody td:not(:first-of-type)::before,
.main_content .wp-block-table table tbody td:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #c5d4da;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/**************************

スマホ時横スクロールさせるためのstyle

*/
.main_content .fixed_table_wrapper {
  position: relative;
  overflow-x: auto;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
.main_content .fixed_table_wrapper table {
  box-sizing: border-box;
  position: static;
}
.main_content .fixed_table_wrapper table.fixed_table {
  margin-bottom: 0;
}
.main_content .fixed_table_wrapper thead {
  border-bottom: none !important;
}
@media screen and (max-width: 1099px) {
  .main_content .fixed_table_wrapper table {
    width: 1000px !important;
  }
  .main_content .fixed_table_wrapper thead th {
    width: auto !important;
  }
}
.main_content .fixed_table._fixed_th table {
  overflow: auto;
  box-sizing: border-box;
  position: static;
}
.main_content .fixed_table._fixed_th table thead tr th:last-of-type {
  border-radius: 0;
}
.main_content .fixed_table._fixed_th table th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main_content .fixed_table._fixed_th table th:first-child {
    max-width: 100px;
  }
}
@media screen and (max-width: 420px) {
  .main_content .fixed_table._fixed_th table th:first-child {
    max-width: 50px;
  }
}
.main_content .fixed_table._fixed_th table td:first-child {
  position: sticky;
  left: 0;
  border-left: 1px solid #c4c4c4;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main_content .fixed_table._fixed_th table td:first-child {
    max-width: 100px;
  }
}
@media screen and (max-width: 420px) {
  .main_content .fixed_table._fixed_th table td:first-child {
    max-width: 50px;
  }
}
.main_content ._yubi {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  z-index: 10;
}
.main_content ._yubi img {
  width: 85px;
  display: block;
}
@media screen and (min-width: 1100px), print {
  .main_content ._yubi {
    display: none;
  }
}
@media screen and (max-width: 1259px) {
  .products_container .main_content ._yubi {
    display: flex;
  }
}

/*********************************
スマホ時thとtdを縦に並べるためのstyle
*/
@media screen and (max-width: 1099px) {
  .sp_row_to_column table {
    display: block;
    box-sizing: border-box;
    border-collapse: collapse;
    border-bottom: none;
    border-radius: 0;
  }
  .sp_row_to_column table > tbody:first-child > tr:first-child > *:first-child,
  .sp_row_to_column table > thead:first-child > tr:first-child > *:first-child,
  .sp_row_to_column table > tr:first-child > *:first-child {
    border-top: none;
  }
  .sp_row_to_column thead,
  .sp_row_to_column tbody,
  .sp_row_to_column tr {
    display: block;
    width: 100%;
  }
  .sp_row_to_column thead:nth-child(even),
  .sp_row_to_column tbody:nth-child(even),
  .sp_row_to_column tr:nth-child(even) {
    background-color: transparent;
  }
  .sp_row_to_column th,
  .sp_row_to_column td {
    display: block;
    box-sizing: border-box;
    width: 100% !important;
    white-space: normal;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .sp_row_to_column th {
    min-height: auto !important;
  }
}

/**************************
さまざまなオプション
wordpress標準table block用
*/
/* stylelint-disable-next-line no-duplicate-selectors */
.table_wrapper.small_padding td,
.table_wrapper.small_padding th {
  padding: 1.2em 1em;
}
@media screen and (min-width: 1100px), print {
  .table_wrapper.small_padding td,
  .table_wrapper.small_padding th {
    padding: 1.2em 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .table_wrapper.small_padding td,
  .table_wrapper.small_padding th {
    padding: 1.2em 0.5em;
  }
}

._sm > table {
  max-width: 31em;
}
._md > table {
  max-width: 50em;
}
._td_right > table td {
  text-align: right;
}
._th_right > table th {
  text-align: right;
}
._thead_th_right > table thead th {
  text-align: right;
}
._tbody_th_right > table thead th {
  text-align: right;
}
._center > table th,
._center > table td {
  text-align: center;
}
._th_long > table tbody th {
  vertical-align: top;
}
@media screen and (min-width: 1100px), print {
  ._th_long > table tbody th {
    width: 250px;
  }
}
@media screen and (max-width: 1099px) {
  ._th_long > table tbody th {
    width: 150px;
  }
}
._th_50 > table th {
  width: 50%;
}
._th_center > table th {
  text-align: center;
}
._td_center > table td {
  text-align: center;
}
._thead_th_auto > table tbody th {
  width: auto;
  min-width: 0;
}
._th_auto > table tbody th {
  width: auto;
}
._td_auto > table tbody td {
  width: auto;
}
._td_middle > table tbody td {
  vertical-align: middle;
}
._noborder > table th,
._noborder > table td {
  border: 0 none;
  background-color: transparent;
  text-align: left;
  vertical-align: top;
}
._noborder > table th {
  padding-right: 2em;
}

/*

<div class="_h3">table._no_border</div>

画像だけの table を想定

*/
/* stylelint-disable-next-line no-duplicate-selectors */
table table._no_border {
  width: auto;
  margin: auto;
}
table table._no_border th,
table table._no_border td {
  padding: 0 1em;
  vertical-align: middle;
}

table._underline tr:not(:last-child) th,
table._underline tr:not(:last-child) td {
  border: 0 none;
  border-bottom: 1px solid #d2d2d2;
}

/**************************

## - a リンク設定

*/
.content_body a:not(.cancel):not(.out):not(.ext):not(.outlink):not(.icon_out):not(.icon_ext):not(.pdf):not(.icon_pdf):not(.link):not(.link_2):not(.a1):not(.a2):not(.btn):not(:has(img)):not(.btn):not(h5 a):not(.text_pdf)::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 9px;
  height: 8px;
  margin-right: 0.2rem;
  transform: translateY(-0.2ex);
  margin-left: 0.3rem;
}

a {
  color: #0b8b35;
  text-decoration: none;
  font-weight: 500;
}
a:hover {
  opacity: 0.7;
}

.url {
  text-decoration: underline;
  color: #0b8b35;
  word-break: break-all;
}
.url:hover, .url:focus, .url:active {
  color: #0b8b35;
  text-decoration: none;
}

/**************************
icon
*/
.out,
.ext:not(.btn),
.outlink,
.icon_out,
.icon_ext {
  display: inline-block;
  line-height: 1.4;
  color: #0b8b35;
  position: relative;
  transition: opacity 0.1s;
  text-decoration: none;
}
.out:hover,
.ext:not(.btn):hover,
.outlink:hover,
.icon_out:hover,
.icon_ext:hover {
  color: #0b8b35;
  opacity: 0.7;
}
@media screen and (min-width: 768px), print {
  .out:hover::before,
  .ext:not(.btn):hover::before,
  .outlink:hover::before,
  .icon_out:hover::before,
  .icon_ext:hover::before {
    left: 5px;
  }
}
.out::after,
.ext:not(.btn)::after,
.outlink::after,
.icon_out::after,
.icon_ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 22px;
  height: 16px;
  background-size: 22px 32px;
  margin-left: 5px;
  background-position-y: -16px;
}

.pdf:not(.btn),
.icon_pdf {
  display: inline-block;
  line-height: 1.4;
  color: #0b8b35;
  position: relative;
  transition: opacity 0.1s;
  text-decoration: none;
}
.pdf:not(.btn):hover,
.icon_pdf:hover {
  color: #0b8b35;
  opacity: 0.7;
}
@media screen and (min-width: 768px), print {
  .pdf:not(.btn):hover::before,
  .icon_pdf:hover::before {
    left: 5px;
  }
}
.pdf:not(.btn)::after,
.icon_pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 16px;
  height: 18px;
  background-size: 16px 36px;
  margin-left: 5px;
  background-position-y: -18px;
}

.text_pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 18px;
  height: 20px;
  margin-left: 0.1em;
  margin-top: -1em;
  position: relative;
  top: 0.2em;
  left: 0;
  margin-right: 0.2rem;
}
.text_pdf.link {
  padding-left: 17px;
}
.text_pdf.link::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 9px;
  height: 8px;
  margin-right: 0.2rem;
  transform: translateY(1.7ex);
  margin-left: 0.3rem;
}

/**************************
link
*/
.link {
  display: inline-block;
  line-height: 1.4;
  color: #0b8b35;
  position: relative;
  transition: opacity 0.1s;
  text-decoration: none;
  padding-right: 0.5rem;
}
.link:hover {
  color: #0b8b35;
  opacity: 0.7;
}
@media screen and (min-width: 768px), print {
  .link:hover::before {
    left: 5px;
  }
}
.link:hover {
  color: #0b8b35;
  opacity: 0.8;
}

.link_2 {
  color: #0b8b35;
}

button.link,
input.link {
  border: 0 none;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
  text-align: left;
  line-height: 1.7;
}
button.link::before,
input.link::before {
  top: 1.2ex;
}

/**************************

## - .btn - 汎用ボタン

*/
.btn {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  display: inline-block;
  align-content: center;
  min-width: 240px;
  min-height: 80px;
  text-decoration: none;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
  background: #0b8b35;
  border: 1px solid #0b8b35;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 10px 30px 7px 30px;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 0;
  font-size: 1.25rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 10px 20px 7px 20px;
    font-size: 1.125rem;
  }
}
.btn:hover {
  background-color: #ffffff;
  color: #0b8b35 !important;
}
.btn.pdf::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 16px;
  height: 18px;
  background-size: 16px 36px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .btn.pdf::before {
    right: 20px;
  }
}
.btn.pdf:hover::before {
  background-position-y: -18px;
}
.btn.out::before, .btn.ext::before, .btn.outlink::before, .btn.icon_out::before, .btn.icon_ext::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0 no-repeat transparent;
  width: 22px;
  height: 16px;
  background-size: 22px 32px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .btn.out::before, .btn.ext::before, .btn.outlink::before, .btn.icon_out::before, .btn.icon_ext::before {
    right: 20px;
  }
}
.btn.out:hover::before, .btn.ext:hover::before, .btn.outlink:hover::before, .btn.icon_out:hover::before, .btn.icon_ext:hover::before {
  background-position-y: -16px;
}
.btn._disabled {
  pointer-events: none;
  opacity: 0.3;
}

button.btn {
  cursor: pointer;
}

.set:not(:last-child) {
  margin-bottom: var(--margin-section);
}
@media screen and (min-width: 1000px), print {
  .set {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .set > * {
    flex-grow: 10;
    width: 100%;
  }
  .set > .right > p,
  .set > .left > p {
    padding-left: 1.5rem;
  }
}
@media screen and (min-width: 1000px) and (max-width: 767px) {
  .set > .right > p,
  .set > .left > p {
    padding-left: 0.8rem;
  }
}
@media screen and (min-width: 1000px), print {
  .set > .left {
    order: 1;
  }
  .set > .right {
    order: 2;
  }
  .set > .fix {
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media screen and (max-width: 999px) {
  .set > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .set > *:first-child {
    margin-bottom: 2em;
  }
  .set > * .img_wrap > img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 550px;
  }
}
.set .img_wrap._2column {
  display: flex;
  gap: clamp(20px, 3.5vw, 40px) 20px;
}
@media screen and (max-width: 575px) {
  .set .img_wrap._2column {
    gap: 12px;
  }
}
.set .img_wrap._2column > .inner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .set .img_wrap._2column > .inner img {
    height: 100%;
  }
}
.set._row .img_wrap._2column {
  flex-direction: column;
}
.set._row .img_wrap._2column > .inner {
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .set._row .img_wrap._2column {
    max-height: none;
    max-width: 550px;
    margin: 0 auto;
  }
  .set._row .img_wrap._2column .inner {
    max-height: 600px;
    height: 100%;
  }
}
@media screen and (max-width: 899px) {
  .set._row .img_wrap._2column {
    flex-direction: row;
    max-width: none;
  }
  .set._row .img_wrap._2column .inner._01 {
    width: calc(100% - 20px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: auto;
  }
  .set._row .img_wrap._2column .inner._01 > img {
    height: 100%;
  }
  .set._row .img_wrap._2column .inner._02 {
    width: 66%;
    max-width: 800px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 575px) {
  .set._row .img_wrap._2column {
    max-height: none;
  }
  .set._row .img_wrap._2column .inner {
    max-height: 450px;
    height: 100%;
  }
}
@media screen and (max-width: 499px) {
  .set._row .img_wrap._2column {
    flex-direction: column;
    max-height: none;
  }
  .set._row .img_wrap._2column > .inner {
    max-height: none;
  }
  .set._row .img_wrap._2column > .inner._01 {
    width: 100%;
    max-width: 800px;
    flex-shrink: 0;
  }
  .set._row .img_wrap._2column > .inner._02 {
    width: 100%;
  }
}
.set._vertical {
  flex-direction: column;
  row-gap: clamp(35px, 5.5vw, 60px);
}
.set._vertical .img_wrap {
  max-height: 480px;
  overflow: hidden;
}
.set._vertical .img_wrap._2column img {
  height: 100%;
  max-width: none;
}
.set._vertical .img_wrap._2column > .inner._01 {
  width: 66%;
  max-width: 800px;
  flex-shrink: 0;
}
.set._vertical .img_wrap._2column > .inner._02 {
  width: calc(100% - 20px);
}
@media screen and (max-width: 499px) {
  .set._vertical .img_wrap._2column {
    flex-direction: column;
    max-height: none;
  }
  .set._vertical .img_wrap._2column > .inner._01 {
    width: 100%;
    max-width: 800px;
    flex-shrink: 0;
  }
  .set._vertical .img_wrap._2column > .inner._02 {
    width: 100%;
  }
}

@media screen and (min-width: 1000px), print {
  section .set p:not(.cancel) {
    padding-left: 0;
  }
}
@media screen and (max-width: 999px) {
  section .set p:not(.cancel) {
    padding-left: 0;
  }
}

.interview_section .set:not(:last-child) {
  margin-bottom: 0;
}
.interview_section:not(:last-of-type) {
  margin-bottom: var(--margin-section);
}
@media screen and (max-width: 575px) {
  .interview_section:not(:last-of-type) {
    margin-bottom: calc(var(--margin-section) * 0.5);
  }
}

.main_flex_area {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 999px) {
  .main_flex_area {
    display: block;
  }
}
.main_flex_area > * {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.main_column {
  order: 1;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(30px, 6.5vw, 100px);
  padding-top: 40px;
  padding-bottom: 180px;
}
.main_column > *:first-child {
  margin-top: 0;
}
.main_column > *:first-child:not(.cancel) {
  margin-top: 0;
}
@media screen and (max-width: 1259px) {
  .main_column {
    padding-left: 30px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 999px) {
  .main_column {
    padding-left: 0;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .main_column {
    padding-top: 25px;
  }
}
.main_column._index {
  padding-left: 0;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .main_column._index {
    padding-top: 35px;
    padding-bottom: 70px;
  }
}

.sub_column {
  order: 2;
  width: 220px;
  flex-shrink: 0;
  padding-top: 40px;
  box-sizing: border-box;
  background-color: #f6f9fa;
  position: relative;
  padding-bottom: 3em;
  padding-right: 35px;
}
.sub_column::after {
  content: "";
  display: inline-block;
  width: 100vw;
  height: 100%;
  background-color: #f6f9fa;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 999px) {
  .sub_column {
    width: 100%;
    padding-right: 0;
  }
  .sub_column::after {
    position: absolute;
    top: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.breadcrumbs_area {
  margin-bottom: 35px;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs_area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs_area {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
}

.breadcrumbs,
.bread_crumb {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs,
  .bread_crumb {
    line-height: 2;
  }
}
@media screen and (max-width: 999px) and (min-width: 576px) {
  .breadcrumbs,
  .bread_crumb {
    padding-top: 0;
    padding-left: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs,
  .bread_crumb {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 575px) {
  .breadcrumbs,
  .bread_crumb {
    display: flex;
  }
}
.breadcrumbs li,
.bread_crumb li {
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }
}
.breadcrumbs li:last-child,
.bread_crumb li:last-child {
  margin-left: 0;
  margin-right: 0;
  color: #7a7a7a;
}
.breadcrumbs li:not(:last-of-type),
.bread_crumb li:not(:last-of-type) {
  padding-right: 2em;
  position: relative;
}
.breadcrumbs li:not(:last-of-type)::after,
.bread_crumb li:not(:last-of-type)::after {
  width: 7px;
  height: 11px;
  background: url("../img/icon/arrow/bread_arrow.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  content: "";
  position: absolute;
  inset: 0.3em 10px 0 auto;
}
@media screen and (max-width: 899px) {
  .breadcrumbs li:not(:last-of-type),
  .bread_crumb li:not(:last-of-type) {
    padding-right: 30px;
  }
}
.breadcrumbs li a,
.bread_crumb li a {
  color: #1a1a1a;
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  letter-spacing: 0.025em;
}
.breadcrumbs li a::before,
.bread_crumb li a::before {
  content: none !important;
}
.breadcrumbs li a:hover,
.bread_crumb li a:hover {
  opacity: 0.7;
  text-decoration: none;
  border-bottom: 0;
}
@media screen and (max-width: 899px) {
  .breadcrumbs li a,
  .bread_crumb li a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.pagelink_area {
  min-height: 80px;
  align-content: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 17px clamp(20px, 3.5vw, 38px);
  background-color: #f6f9fa;
  border: 1px solid #e5ebed;
  border-radius: 3px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .pagelink_area {
    min-height: 55px;
  }
}
.pagelink_area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(20px, 5vw, 50px);
}
@media screen and (max-width: 575px) {
  .pagelink_area ul {
    gap: 10px clamp(20px, 5vw, 50px);
    flex-direction: column;
  }
}
.pagelink_area ul > li {
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .pagelink_area ul > li {
    text-align: left;
  }
}
.pagelink_area ul > li a {
  color: #112f44;
  line-height: 1.5;
  display: inline-block;
  text-align: left;
  padding-left: 20px;
  position: relative;
}
.pagelink_area ul > li a::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/pagelink.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 8px;
  height: 10px;
  position: absolute;
  top: 1ex;
  left: 0;
  transition: bottom 0.2s;
}
@media screen and (max-width: 767px) {
  .pagelink_area ul > li a {
    font-size: 0.938rem;
    padding-left: 17px;
  }
}

.js-anchor_link + h2:not(.cancel) {
  margin-top: 40px;
}

.newsline_list > li:not(:last-of-type) {
  margin-bottom: 1px;
}
.newsline_list .newsline {
  padding: 20px 40px 30px 40px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .newsline_list .newsline {
    padding: 1em 20px 1em 20px;
  }
}
.newsline_list .newsline .newsline__body {
  display: flex;
  align-items: center;
}
.newsline_list .newsline .newsline__body .newsline__ex.pdf, .newsline_list .newsline .newsline__body .newsline__ex.ext {
  padding-left: 0;
}
.newsline_list .newsline .newsline__body .newsline__ex.pdf::before, .newsline_list .newsline .newsline__body .newsline__ex.ext::before {
  content: none;
}
.newsline_list .newsline:hover .newsline__body {
  color: #0b8b35;
}
.newsline_list .newsline::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_gray.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 11px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .newsline_list .newsline::after {
    right: 10px;
  }
}
.newsline_list .newsline__head {
  display: flex;
  align-items: center;
  line-height: 1;
}
.newsline_list .newsline__date {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 1rem;
  min-width: 6.9em;
  margin-bottom: 0.4em;
  margin-top: 0.4em;
}
@media screen and (max-width: 767px) {
  .newsline_list .newsline__date {
    font-size: 0.875rem;
    line-height: 1;
    display: inline-block;
  }
}
.newsline_list .newsline__body {
  color: #1a1a1a;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.newsline_list .newsline__ex {
  font-size: 1.125rem;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  .newsline_list .newsline__ex {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.newsline_list .newsline._disable {
  pointer-events: none;
}
.newsline_list .new {
  font-size: 14px;
  color: #f19b9d;
  margin-left: 5px;
}

.pr_box {
  position: relative;
  background-color: #f0f5f7;
  display: block;
  padding: 50px 60px 60px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .pr_box {
    padding: 30px;
  }
}
.pr_box .new {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 80px;
  text-align: center;
  background-color: #dac118;
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 10px 0 0 20px;
  border-radius: 0 0 0 100%;
}
@media screen and (max-width: 540px) {
  .pr_box .new {
    width: 50px;
    height: 50px;
    font-size: 0.875rem;
    padding: 5px 0 0 15px;
  }
}

.pr_head {
  border-bottom: 2px solid #d6e2e6;
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .pr_head {
    margin-bottom: 10px;
    padding-bottom: 16px;
  }
}
.pr_head .title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #112f44;
  letter-spacing: 0.01em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pr_head .title {
    font-size: 1.875rem;
  }
}
.pr_head .number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #4097c3 50%, #1769af 60%, #1769af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.6;
}

.pr_body {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .pr_body {
    flex-direction: column-reverse;
    margin-top: 20px;
    gap: 10px;
  }
}
.pr_body .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 360px;
}
@media screen and (max-width: 999px) {
  .pr_body .left {
    max-width: 100%;
  }
}
.pr_body .left .body .toc {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  color: #1187ae;
  position: relative;
  display: flex;
  z-index: 2;
  justify-content: center;
}
.pr_body .left .body .toc::before {
  content: "";
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 20px;
  background-color: #e6edf0;
  z-index: -1;
}
.pr_body .left .body .list li {
  position: relative;
  padding: 17px;
  padding-left: 30px;
  padding-right: 60px;
  line-height: 1.6;
}
@media screen and (max-width: 540px) {
  .pr_body .left .body .list li {
    padding: 10px 20px;
  }
}
.pr_body .left .body .list li:not(:last-child) {
  border-bottom: 1px dotted #84a1ac;
}
.pr_body .left .body .list li::before {
  content: "";
  background: url("../img/icon/circle_blue.webp") center center/contain no-repeat transparent;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 26px;
  left: 10px;
}
@media screen and (max-width: 540px) {
  .pr_body .left .body .list li::before {
    top: 19px;
    left: 2px;
  }
}
.pr_body .left .foot a:hover span::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(357%) hue-rotate(194deg) brightness(113%) contrast(100%);
}
.pr_body .left .foot span::before {
  content: "";
  background: url("../img/icon/arrow/circle_black.webp") center center/contain no-repeat transparent;
  width: 40px;
  height: 40px;
  opacity: 1;
  position: absolute;
  top: 20px;
  left: 30px;
}
.pr_body .left .foot .btn {
  position: relative;
  min-width: 360px;
  padding-left: 82px;
  border: unset;
  background-color: #ffffff;
  box-shadow: 11px 10px 20px -9px #cecece;
}
@media screen and (max-width: 999px) {
  .pr_body .left .foot .btn {
    min-width: 100%;
    margin-top: 20px;
  }
}
.pr_body .right {
  max-width: 340px;
}
@media screen and (max-width: 999px) {
  .pr_body .right {
    max-width: 100%;
  }
}
.pr_body .right img {
  width: 100%;
}

.pr_foot {
  text-align: end;
  color: #6f8a9d;
}

.backnumber_area h3 {
  margin-top: 40px !important;
}

.backnumber_container:not(:last-child) {
  margin-bottom: 90px;
}
@media screen and (max-width: 540px) {
  .backnumber_container:not(:last-child) {
    margin-bottom: 60px;
  }
}

.backnumber_wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px 50px;
}
@media screen and (max-width: 540px) {
  .backnumber_wrap {
    margin-top: 20px;
    gap: 20px 50px;
  }
}

.backnumber_item {
  background-color: #ffffff;
  box-shadow: 7px 2px 25px 8px #f0f0f0;
}
.backnumber_item a {
  width: 100%;
  height: 100%;
  display: inline-block;
  text-align: center;
  padding: 20px 20px 16px;
  box-sizing: border-box;
}
.backnumber_item a .image {
  line-height: 0;
}
.backnumber_item a .image img {
  width: 100%;
}
.backnumber_item a .number {
  color: #112f44;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  line-height: 1.6;
  display: inline-block;
  margin-top: 20px;
  padding-left: 18px;
}
.backnumber_item a .number::before {
  content: "";
  background: url("../img/icon/arrow/sankaku_b.webp") center center/contain no-repeat transparent;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(-50%, -50%);
}

.sub_content_title {
  position: relative;
  z-index: 10;
}
.sub_content_title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid transparent; /* ボーダーを設定し透明にする */
  -o-border-image: linear-gradient(135deg, #3383c3, #4db6d9) 1;
  border-image: linear-gradient(135deg, #3383c3, #4db6d9) 1;
  color: #112f44;
  letter-spacing: 0.02em;
  padding-top: 5px;
  padding-bottom: 23px;
  font-weight: 500;
  padding-left: 42px;
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.sub_content_title a::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle.webp") 0 0 no-repeat transparent;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
}
.sub_content_title a::before {
  content: none;
}
.sub_content_title a > .inner {
  transition: transform 0.2s cubic-bezier(0.34, 0.91, 0.34, 0.9);
}
.sub_content_title a:hover > .inner {
  transform: translateX(5px);
}
@media screen and (max-width: 1099px) {
  .sub_content_title a {
    padding-bottom: 15px;
  }
}

.sub_content {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 999px) {
  .sub_content {
    padding-left: 1px;
  }
}
.sub_content > .sub_menu > .li1 {
  position: relative;
}
.sub_content > .sub_menu > .li1.active .a1 {
  color: #209cc4;
}
.sub_content > .sub_menu > .li1.js-sub_accordion a::after {
  content: none;
}
.sub_content > .sub_menu > .li1 .a1 > ._inner {
  font-size: 0.938rem;
  letter-spacing: 0.08em;
}
.sub_content > .sub_menu > .li1 a {
  color: #313131;
  display: block;
  position: relative;
  padding: 0 0 0 2px;
  transition: color 0.1s;
}
.sub_content > .sub_menu > .li1 a::after {
  content: "";
  position: absolute;
  bottom: 0;
  margin: auto;
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 9px;
  height: 8px;
  top: 0.8ex;
}
.sub_content > .sub_menu > .li1 a > ._inner {
  font-size: 1.063rem;
  display: block;
  min-height: 50px;
  box-sizing: border-box;
  padding: 21px 0 19px 20px;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 999px) {
  .sub_content > .sub_menu > .li1 a > ._inner {
    padding: 13px 0 11px 20px;
    min-height: 40px;
  }
}
.sub_content > .sub_menu .li2 a {
  padding-left: 10px !important;
}
.sub_content > .sub_menu .li2 a::before {
  content: none;
}
.sub_content > .sub_menu li {
  box-sizing: border-box;
}
.sub_content > .sub_menu li a {
  color: #313131;
  display: block;
  position: relative;
  padding: 0 35px 0 10px;
  transition: color 0.1s;
}
.sub_content > .sub_menu li a > ._inner {
  display: block;
  min-height: 50px;
  box-sizing: border-box;
  padding: 20px 0;
  line-height: 1.4;
}
.sub_content > .sub_menu li a > ._inner.ext, .sub_content > .sub_menu li a > ._inner.pdf {
  color: #313131;
}
.sub_content > .sub_menu li a > ._inner.ext::after, .sub_content > .sub_menu li a > ._inner.pdf::after {
  inset: 0 0 0 auto;
  left: auto;
  right: 5px;
}
.sub_content > .sub_menu li a > ._inner.ext:hover, .sub_content > .sub_menu li a > ._inner.pdf:hover {
  color: #209cc4;
}
.sub_content > .sub_menu li.js-sub_accordion {
  position: relative;
}
.sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_outer {
  position: relative;
}
.sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap {
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  z-index: 10;
}
@media screen and (max-width: 999px) {
  .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap {
    width: 20px;
  }
}
.sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle {
  display: block;
  width: 10px;
  height: 30px;
  border-radius: 100%;
  position: relative;
  box-sizing: border-box;
  transform: translateY(1.7px);
  pointer-events: all;
  cursor: pointer;
}
.sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::before {
  display: block;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #209cc4;
  position: absolute;
  inset: 0;
  margin: auto;
}
.sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::after {
  display: block;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #209cc4;
  position: absolute;
  inset: 0;
  margin: auto;
  transform: rotate(90deg);
  transition: 0.1s;
}
.sub_content > .sub_menu li.js-sub_accordion .a1 {
  position: relative;
}
@media screen and (max-width: 1099px) {
  .sub_content > .sub_menu li.js-sub_accordion .a1 {
    padding-right: 0;
    margin-right: 0;
  }
}
.sub_content > .sub_menu li.js-sub_accordion.active {
  color: #209cc4;
}
.sub_content > .sub_menu li.js-sub_accordion.active .a1::after {
  content: none;
  display: none;
}
.sub_content > .sub_menu li.js-sub_accordion.opened .accordion_toggle_outer > a {
  background-color: transparent;
}
.sub_content > .sub_menu li.js-sub_accordion.opened .accordion_toggle_wrap > .accordion_toggle::before {
  display: none;
}
.sub_content > .sub_menu li.js-sub_accordion.opened .accordion_toggle_wrap > .accordion_toggle::after {
  transform: rotate(0);
}
.sub_content > .sub_menu li.js-sub_accordion.opened > a ._inner::before {
  background-size: 9px 5px;
  width: 9px;
  height: 5px;
  transform: rotate(90deg);
}
.sub_content > .sub_menu li.js-sub_accordion > a::after {
  display: none;
}
.sub_content > .sub_menu li .sub_menu__ul2 {
  overflow: hidden;
  transition: opacity 0.5s;
  height: 0;
  position: relative;
}
.sub_content > .sub_menu li .sub_menu__ul2::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #e6ecef;
  left: 4px;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li a {
  color: #313131;
  display: block;
  position: relative;
  padding-left: 20px;
  transition: color 0.1s;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li a > ._inner {
  font-size: 0.938rem;
  display: block;
  min-height: auto;
  box-sizing: border-box;
  padding: 10px 0 10px 20px;
  line-height: 1.4;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li a:hover > ._inner::before {
  left: 6px;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li:not(:last-of-type) {
  margin-bottom: 1px;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li:last-of-type {
  margin-bottom: 15px;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li.active .a2 {
  box-sizing: border-box;
  margin-right: 0;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li.active .a2 > ._inner {
  color: #209cc4;
}
.sub_content > .sub_menu li .sub_menu__ul2 > li.active .a2 > ._inner::before {
  content: none;
  display: none;
}
.sub_content > .sub_menu li .sub_menu__ul2.opened {
  height: auto;
}
.sub_content > .sub_menu li.active > a::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.sub_content > .sub_menu li.active > a:hover {
  opacity: 0.7;
}

.main_content._nurse .sub_content {
  position: relative;
  z-index: 10;
}
.main_content._nurse .sub_content > .sub_menu > .li1 {
  position: relative;
}
.main_content._nurse .sub_content > .sub_menu > .li1.active .a1 {
  color: #e0689d;
}
.main_content._nurse .sub_content > .sub_menu .li2 {
  position: relative;
}
.main_content._nurse .sub_content > .sub_menu .li2.active .a2 .inner {
  color: #e0689d;
}
.main_content._nurse .sub_content > .sub_menu li a.a1::after {
  content: "";
  position: absolute;
  top: 0.8ex;
  bottom: 0;
  margin: auto;
  display: inline-block;
  background: url("../img/icon/arrow/pink.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 6px;
  height: 5px;
}
.main_content._nurse .sub_content > .sub_menu li a > ._inner.ext:hover, .main_content._nurse .sub_content > .sub_menu li a > ._inner.pdf:hover {
  color: #e0689d;
}
.main_content._nurse .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_outer a::after {
  content: none;
}
.main_content._nurse .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::before {
  background-color: #e0689d;
}
.main_content._nurse .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::after {
  background-color: #e0689d;
}
.main_content._nurse .sub_content > .sub_menu li.js-sub_accordion.active {
  color: #e0689d;
}
.main_content._nurse .sub_content > .sub_menu li .sub_menu__ul2 > li.active .a2 > ._inner {
  color: #e0689d;
}
.main_content._dock .sub_content {
  position: relative;
  z-index: 10;
}
.main_content._dock .sub_content > .sub_menu > .li1 {
  position: relative;
}
.main_content._dock .sub_content > .sub_menu > .li1.active .a1 {
  color: #209cc4;
}
.main_content._dock .sub_content > .sub_menu .li2 {
  position: relative;
}
.main_content._dock .sub_content > .sub_menu .li2.active .a2 .inner {
  color: #209cc4;
}
.main_content._dock .sub_content > .sub_menu li a > ._inner.ext:hover, .main_content._dock .sub_content > .sub_menu li a > ._inner.pdf:hover {
  color: #209cc4;
}
.main_content._dock .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_outer a::after {
  content: none;
}
.main_content._dock .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::before {
  background-color: #209cc4;
}
.main_content._dock .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::after {
  background-color: #209cc4;
}
.main_content._dock .sub_content > .sub_menu li.js-sub_accordion.active {
  color: #209cc4;
}
.main_content._dock .sub_content > .sub_menu li .sub_menu__ul2 > li.active .a2 > ._inner {
  color: #209cc4;
}
.main_content._reha .sub_content {
  position: relative;
  z-index: 10;
}
.main_content._reha .sub_content > .sub_menu > .li1 {
  position: relative;
}
.main_content._reha .sub_content > .sub_menu > .li1.active .a1 {
  color: #84d0f3;
}
.main_content._reha .sub_content > .sub_menu .li2 {
  position: relative;
}
.main_content._reha .sub_content > .sub_menu .li2.active .a2 .inner {
  color: #84d0f3;
}
.main_content._reha .sub_content > .sub_menu li a.a1::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  background: url("../img/icon/arrow/reha.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 6px;
  height: 5px;
  transform: translateY(-0.2ex);
}
.main_content._reha .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_outer a::after {
  content: none;
}
.main_content._reha .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::before {
  background-color: #ffffff;
}
.main_content._reha .sub_content > .sub_menu li.js-sub_accordion .accordion_toggle_wrap > .accordion_toggle::after {
  background-color: #ffffff;
}
.main_content._reha .sub_content > .sub_menu li.js-sub_accordion.active {
  color: #84d0f3;
}
.main_content._reha .sub_content > .sub_menu li .sub_menu__ul2 > li.active .a2 > ._inner {
  color: #84d0f3;
}

.box {
  border-radius: 5px;
  box-shadow: 0px 30px 30px 0px rgba(227, 228, 227, 0.3);
  -webkit-backdrop-filter: blur(10px) brightness(107%);
  backdrop-filter: blur(10px) brightness(107%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0 40px 25px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .box {
    padding: 0 20px 15px;
  }
}
.box__head {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.375rem;
  text-align: center;
  border-bottom: 1px solid #787c79;
  letter-spacing: 0.03em;
  padding: 20px 10px 15px;
}
@media screen and (max-width: 767px) {
  .box__head {
    font-size: 0.875rem;
    padding: 5px 10px;
    margin-bottom: 5px;
  }
}
.box__body {
  padding: 10px 10px 0x;
}
.box__body .tell {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 2.25rem;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .box__body .tell {
    font-size: 1.375rem;
  }
  .box__body .tell img {
    width: 20px;
  }
}
.box__body .date {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  line-height: 1;
  margin-bottom: 20px;
}
.box__body .date > .time {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .box__body .date {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .box__body .date > .time {
    font-size: 1rem;
  }
}
.box__body .mail a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #0b8b35;
  font-size: 1.125rem;
  position: relative;
  letter-spacing: 0.1rem;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .box__body .mail a {
    font-size: 0.875rem;
  }
}

.category_header {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
  box-sizing: border-box;
  padding: 55px 30px 10px;
}
.category_header .category_text {
  font-size: 48px;
  color: #2f2d2d;
  letter-spacing: 0.3em;
  text-align: center;
}
.category_header .category_text > .jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.category_header .category_text > .en {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 1rem;
  color: #0b8b35;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 1199px) {
  .category_header {
    height: 250px;
    padding-top: 120px;
  }
  .category_header .category_text > .jp {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 999px) {
  .category_header {
    height: 170px;
    padding-top: 80px;
  }
  .category_header .category_text > .jp {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 576px) {
  .category_header {
    height: 170px;
    padding-top: 90px;
  }
  .category_header .category_text > .jp {
    font-size: 1.625rem;
  }
}

.wpnews {
  padding: 40px 80px 0;
  box-sizing: border-box;
  background-color: #ffffff;
}
.wpnews::before, .wpnews::after {
  content: "";
  display: table;
}
.wpnews::after {
  clear: both;
}
@media screen and (max-width: 1199px) {
  .wpnews {
    padding: 40px 60px 0;
  }
}
@media screen and (max-width: 999px) {
  .wpnews {
    padding: 30px 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .wpnews {
    padding: 20px 20px 0;
  }
}
.wpnews h3.title {
  margin-bottom: 20px;
}
.wpnews__head {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
@media screen and (max-width: 999px) {
  .wpnews__head {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .wpnews__head {
    margin-bottom: 10px;
  }
}
.root .wpnews__head h1:not(.cancel),
.root .wpnews__head h2:not(.cancel) {
  margin-bottom: 20px;
}
.wpnews__date {
  font-family: Marcellus, serif;
  font-weight: 400;
  color: #0b8b35;
  letter-spacing: 0.06em;
  margin-right: 23px;
}
.wpnews__content {
  max-width: 100%;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 80px;
}
@media screen and (max-width: 1199px) {
  .wpnews__content {
    padding-bottom: 30px;
  }
}
.root .wpnews__content {
  margin: 0 auto;
}
.wpnews__content p {
  letter-spacing: 0.1em;
}
.wpnews__content img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1099px) {
  .wpnews__content img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .wpnews__content table {
    max-width: 100%;
  }
}
.wpnews__content > h2:not(.cancel):first-child,
.wpnews__content > h3:not(.cancel):first-child,
.wpnews__content > h4:not(.cancel):first-child,
.wpnews__content > h5:not(.cancel):first-child,
.wpnews__content > h6:not(.cancel):first-child {
  margin-top: 0;
}
.wpnews__content ul:not(.cancel),
.wpnews__content ol:not(.cancel),
.wpnews__content table {
  margin-top: 1em;
}
.wpnews__foot {
  padding: 40px 0;
}
@media screen and (max-width: 1199px) {
  .wpnews__foot {
    padding: 20px 0;
  }
}
.wpnews__foot .back_btn {
  color: #454545;
  font-weight: 400;
  padding-left: 22px;
  position: relative;
  line-height: 1;
}
.wpnews__foot .back_btn::before {
  display: block;
  content: "";
  width: 9px;
  height: 15px;
  background: url("../img/icon/arrow/green_arrow.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.wpnews blockquote {
  padding: 10px;
  border-left: 5px solid #a4adb8;
  background-color: #f7f7f7;
  margin-bottom: 1em;
}

.link_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  box-sizing: border-box;
  box-shadow: 2px 3px 15px 0 rgba(6, 21, 35, 0.2);
  position: relative;
  font-size: 1.063rem;
  line-height: 1.4;
  color: #1a1a1a;
  padding: 0.7em clamp(50px, 5vw, 70px) 0.7em clamp(20px, 2.5vw, 30px);
  background-color: #ffffff;
  /**************************
  右の icon
  */
}
.link_btn::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/btn.webp") 0 0/21px 68px no-repeat transparent;
  width: 21px;
  height: 34px;
  position: absolute;
  top: 50%;
  right: clamp(20px, 2.5vw, 30px);
  transform: translateY(-50%);
}
@media screen and (min-width: 1000px), print {
  .link_btn small {
    display: block;
  }
}
.link_btn:hover {
  color: #0b8b35;
}

.annotation_list li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
}
.annotation_list li::before {
  content: "※";
  position: absolute;
  top: 0em;
  left: 0;
}

.news_pager_area {
  padding-top: 70px;
}
@media screen and (min-width: 1100px), print {
  .news_pager_area {
    width: auto;
  }
}
@media screen and (max-width: 1099px) {
  .news_pager_area {
    padding-top: 0;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
.news_pager_area > .news_pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) {
  text-align: center;
  margin: 5px 10px;
}
@media screen and (max-width: 767px) {
  .news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) {
    margin: 5px;
  }
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a {
  font-family: Marcellus, serif;
  font-weight: 400;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  display: block;
  position: relative;
  font-size: 1.125rem;
  box-sizing: border-box;
  padding-left: 1px;
  transition: 0.2s background-color;
  color: #1a1a1a;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a.current {
  background-color: #ffffff;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a:hover {
  background-color: #ffffff;
}
.news_pager_area > .news_pager > .news_pager__box > a {
  text-decoration: none;
  font-size: 1.125rem;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link, .news_pager_area > .news_pager > .news_pager__box > a.next_link {
  position: relative;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before, .news_pager_area > .news_pager > .news_pager__box > a.next_link::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 9px;
  height: 15px;
  margin-right: 0.2rem;
  transform: translateY(-0.2ex);
  margin-left: 0.3rem;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link {
  display: block;
  margin-right: 35px;
  color: #1a1a1a;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before {
  transform: rotate(180deg);
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link:hover {
  opacity: 0.7;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link.prev_link-passive {
  pointer-events: none;
  color: #b4b4b4;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link.prev_link-passive::before {
  filter: brightness(0) saturate(100%) invert(74%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(99%) contrast(87%);
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link {
  display: block;
  margin-left: 35px;
  color: #1a1a1a;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link.next_link-passive {
  pointer-events: none;
  color: #b4b4b4;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link.next_link-passive::before {
  filter: brightness(0) saturate(100%) invert(74%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(99%) contrast(87%);
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .news_pager_area > .news_pager > .news_pager__box > a {
    font-size: 1rem;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.prev_link {
    margin-right: 20px;
    width: 15px;
    height: 35px;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.next_link {
    margin-left: 20px;
    width: 15px;
    height: 35px;
  }
  .news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) {
    padding: 0 5px;
  }
  .news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a {
    width: 30px;
    height: 30px;
    line-height: 26px;
  }
}
@media screen and (max-width: 420px) {
  .news_pager_area > .news_pager > .news_pager__box > a {
    font-size: 0.875rem;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.prev_link {
    margin-right: 10px;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.next_link {
    margin-left: 10px;
  }
}

:root {
  --sp-header-height: 75px;
  --pc-header-height: 120px;
  --sp-header-clamp: 75px;
}

.header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1000;
}
.header__logo {
  width: 574px;
  padding-top: 20px;
}
.header__logo a:hover {
  opacity: 1;
}
.header__logo img {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .header__logo {
    width: 243px;
    padding-top: 15px;
  }
}
.header__open_menu {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 1080px) {
  .header__open_menu {
    display: block;
  }
}

.container-header {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .container-header {
    align-items: center;
  }
}

.root:not(.root-index) .gnav {
  display: none;
}

.gnav {
  padding-top: 35px;
}
@media screen and (max-width: 1080px) {
  .gnav {
    display: none;
  }
}
.gnav__ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gnav__li {
  text-align: right;
}
.gnav__a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #1a1a1a;
  letter-spacing: 0em;
}

.header__open_menu {
  background-color: #ffffff;
  border-radius: 100%;
  opacity: 0.8;
  box-shadow: 0px 30px 30px 0px rgba(227, 228, 227, 0.5);
}

.hamburger_btn {
  width: 80px;
  height: 80px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .hamburger_btn {
    width: 60px;
    height: 60px;
    left: auto;
    right: 0;
    border-radius: 50%;
  }
  .hamburger_btn._open {
    background-color: transparent;
    right: 0;
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger_btn {
    width: 40px;
    height: 40px;
  }
}
.hamburger_btn__inner {
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 33px;
  top: 10px;
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 1199px) {
  .hamburger_btn__inner {
    left: 23px;
    top: 22px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger_btn__inner {
    left: 13px;
    top: 12px;
  }
}
.mm-opened .hamburger_btn__inner, .menu-opened .hamburger_btn__inner, .hamburger_btn._open .hamburger_btn__inner {
  top: 3px;
}
@media screen and (max-width: 900px) {
  .mm-opened .hamburger_btn__inner, .menu-opened .hamburger_btn__inner, .hamburger_btn._open .hamburger_btn__inner {
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .mm-opened .hamburger_btn__inner, .menu-opened .hamburger_btn__inner, .hamburger_btn._open .hamburger_btn__inner {
    top: 5px;
  }
}
.mm-opened .hamburger_btn__inner > span:nth-child(1), .menu-opened .hamburger_btn__inner > span:nth-child(1), .hamburger_btn._open .hamburger_btn__inner > span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
  background-color: #1a1a1a;
}
.mm-opened .hamburger_btn__inner > span:nth-child(2), .menu-opened .hamburger_btn__inner > span:nth-child(2), .hamburger_btn._open .hamburger_btn__inner > span:nth-child(2) {
  top: 14px;
  transform: rotate(-45deg);
  background-color: #1a1a1a;
}
.mm-opened .hamburger_btn__inner > span:nth-child(3), .menu-opened .hamburger_btn__inner > span:nth-child(3), .hamburger_btn._open .hamburger_btn__inner > span:nth-child(3) {
  opacity: 0;
  top: 14px;
  transform: rotate(-45deg);
}
.hamburger_btn__inner > span {
  display: block;
  height: 1px;
  width: 14px;
  border-radius: 0.5px;
  background-color: #1a1a1a;
  position: absolute;
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger_btn__inner > span:nth-child(1) {
  top: 0;
}
.hamburger_btn__inner > span:nth-child(2) {
  top: 7px;
}
.hamburger_btn__inner > span:nth-child(3) {
  top: 15px;
}

.mm-page[inert=true] .hamburger_btn__inner > span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 10px;
}
.mm-page[inert=true] .hamburger_btn__inner > span:nth-of-type(2) {
  transform: rotate(-45deg);
  top: 10px;
}
.mm-page[inert=true] .hamburger_btn__inner > span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 10px;
}

.drawer {
  width: 100vw;
  height: 100svh;
  -webkit-backdrop-filter: blur(10px) brightness(107%);
  backdrop-filter: blur(10px) brightness(107%);
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  padding: 100px 20px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.1s, opacity 0.2s;
}
.drawer._show {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (min-width: 1080px), print {
  .drawer {
    display: none;
  }
}
.drawer__close {
  position: fixed;
  z-index: 100;
  top: 32px;
  right: 32px;
  width: 34px;
  height: 34px;
  display: block;
  cursor: pointer;
}
.drawer__close img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .drawer__close {
    width: 17px;
    height: 17px;
  }
}
.drawer__top {
  position: relative;
}
.drawer__top img {
  width: 100vw;
  position: absolute;
  bottom: -120px;
  left: -20px;
  pointer-events: none;
}
@media screen and (min-width: 1000px), print {
  .drawer__top img {
    bottom: -200px;
  }
}
@media screen and (max-width: 400px) {
  .drawer__top img {
    bottom: -100px;
  }
}
@media screen and (max-height: 700px) and (min-width: 576px) {
  .drawer__top img {
    display: none;
  }
}
.drawer__ul li {
  text-align: center;
}
.drawer__ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .drawer__ul li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.drawer__ul li a {
  font-weight: 600;
  font-size: 1.125rem;
}
.drawer__logo {
  width: 236px;
  margin: 0 auto;
}
.drawer__logo img {
  display: block;
  width: 100%;
}

.footer {
  background-color: #333333;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 110px;
}
@media screen and (max-width: 1260px) {
  .footer__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 999px) {
  .footer__inner {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 575px) {
  .footer__inner {
    padding-top: 30px;
  }
}
.footer__1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
  gap: 30px;
}
.footer__1__l {
  padding-top: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 575px) {
  .footer__1__l {
    width: 100%;
  }
}
.footer__1__r {
  width: 50%;
  max-width: 540px;
}
@media screen and (max-width: 999px) {
  .footer__1__r {
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  .footer__1 {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__1 {
    margin-bottom: 30px;
  }
}
.footer__info_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__info_wrap:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .footer__info_wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .footer__info_wrap {
    flex-direction: column;
    gap: 10px;
  }
  .footer__info_wrap:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.footer__info_wrap__label {
  width: 180px;
  height: 120px;
  background-color: #404040;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0em;
}
.footer__info_wrap__label img {
  width: 38px;
  height: 36px;
}
@media screen and (max-width: 1200px) {
  .footer__info_wrap__label {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .footer__info_wrap__label {
    width: 140px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 575px) {
  .footer__info_wrap__label {
    width: 100%;
    height: 40px;
    flex-direction: row;
  }
  .footer__info_wrap__label img {
    width: 32px;
    height: 30px;
  }
}
.footer__info_group_tell {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer__info_group_tell > .label {
  width: 22px;
}
.footer__info_group_tell > .label img {
  display: block;
  width: 100%;
}
.footer__info_group_tell > .text {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 2.25rem;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer__info_group_tell > .text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 575px) {
  .footer__info_group_tell {
    margin-bottom: 15px;
  }
}
.footer__info_group {
  display: flex;
  align-items: center;
  gap: 23px;
  line-height: 1;
}
.footer__info_group:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .footer__info_group:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.footer__info_group > .label {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #24b554;
}
.footer__info_group > .text {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #ffffff;
}
.footer__address {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 1.125rem;
  }
}
.footer__address_sub {
  font-size: 1.125rem;
  color: #b3b3b3;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer__address_sub {
    font-size: 1rem;
  }
}
.footer__gmap {
  width: 100%;
  height: 320px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .footer__gmap {
    width: 100%;
  }
}
.footer__gmap iframe {
  width: 100%;
  height: 100%;
}
.footer__2 {
  margin-bottom: 13px;
}
.footer__logo {
  width: 575px;
}
.footer__logo img {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .footer__logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 243px;
  }
}
.footer__3 {
  height: 60px;
  border-top: 1px solid #474747;
}
.footer__copy {
  font-family: Marcellus, serif;
  font-weight: 400;
  font-size: 0.875rem;
  text-align: right;
  color: #bfbfbf;
  line-height: 60px;
  opacity: 0.3;
}

.pc_menu {
  z-index: 10000;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.pc_menu__panel {
  padding-bottom: 80px;
  position: relative;
  width: 100vw;
  z-index: 2;
  background: linear-gradient(180deg, #87c0cb 0%, #2c81b3 100%);
  box-shadow: 0 5px 8px 0 rgba(94, 111, 128, 0.2);
}
@media screen and (min-width: 1400px), print {
  .pc_menu__panel {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1399px) {
  .pc_menu__panel {
    padding-top: var(--sp-header-clamp);
  }
}
.pc_menu .background {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.3);
  z-index: 1;
}
.pc_menu._show {
  opacity: 1;
  pointer-events: all;
}
.pc_menu .container.container-header {
  gap: clamp(40px, 5vw, 70px);
  height: auto;
}
@media screen and (max-width: 1519px) and (min-width: 1199px) {
  .pc_menu .container.container-header {
    padding-right: 80px;
    padding-left: 30px;
  }
}
.pc_menu__l {
  padding-top: 10px;
  flex-basis: 360px;
  flex-shrink: 0;
}
@media screen and (max-width: 1519px) {
  .pc_menu__l {
    flex-basis: 300px;
  }
}
.pc_menu__r {
  flex-grow: 10;
}
.pc_menu__sitemap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.pc_menu__sitemap .column {
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .pc_menu__sitemap {
    gap: 20px;
  }
}
.pc_menu__title {
  color: #ffffff;
  text-shadow: -2px 0 10px rgba(94, 111, 128, 0.4);
  line-height: 1;
  font-size: 50px;
  margin-bottom: 50px;
}
.pc_menu__search {
  padding-bottom: 30px;
  border-bottom: 1px solid #1a1a1a;
}
.pc_menu__search .head {
  font-size: 1rem;
  padding-left: 0.7em;
}
@media screen and (min-width: 1200px), print {
  .pc_menu__info {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .pc_menu__info {
    margin-top: clamp(30px, 3vw, 50px);
  }
}
.pc_menu__info .tel_area {
  line-height: 1;
  margin-bottom: 1em;
}
.pc_menu__info .tel_area .row {
  display: flex;
  align-items: flex-end;
}
.pc_menu__info .tel_area .tel {
  font-size: 28px;
}
.pc_menu__info .tel_area .unit {
  font-size: 16px;
  position: relative;
  top: -0.2em;
}
.pc_menu__info .address_area > * {
  display: inline-block;
}
.pc_menu__info .address_area > *:not(:last-child) {
  margin-right: 0.7em;
}

/**************************
project
*/
html {
  overflow-x: hidden;
}

body {
  background-color: #f6f6f6;
  overflow-x: hidden;
}

/**************************
debug
*/
.has-text-align-center {
  text-align: center !important;
}