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

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-webkit-keyframes _on_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes _on_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes header_index_show {
  0% {
    display: none;
  }
  1% {
    display: block;
    opacity: 0;
    top: -30px;
  }
  100% {
    top: 0;
    opacity: 1;
    display: block;
  }
}
@keyframes header_index_show {
  0% {
    display: none;
  }
  1% {
    display: block;
    opacity: 0;
    top: -30px;
  }
  100% {
    top: 0;
    opacity: 1;
    display: block;
  }
}
@-webkit-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_index_hide {
  0% {
    top: 0;
    opacity: 1;
    display: block;
  }
  99% {
    top: -30px;
    opacity: 0;
    display: block;
  }
  100% {
    top: -30px;
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes header_search_show {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(64px);
    transform: translateY(64px);
  }
}
@keyframes header_search_show {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(64px);
    transform: translateY(64px);
  }
}
@-webkit-keyframes header_search_hide {
  0% {
    -webkit-transform: translateY(64px);
    transform: translateY(64px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes header_search_hide {
  0% {
    -webkit-transform: translateY(64px);
    transform: translateY(64px);
  }
  100% {
    -webkit-transform: translateY(0);
    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%;
  -ms-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 {
  -webkit-box-sizing: content-box;
  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 {
  -webkit-box-sizing: border-box;
  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] {
  -webkit-box-sizing: border-box;
  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: 1000px), 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: 999px) {
  .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: 1000px), 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: 999px) {
  .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 {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

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

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

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  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: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

@media screen and (min-width: 1000px), print {
  .d-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .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: 1000px), print {
  .w-pc-100 {
    width: 100% !important;
  }
}
@media screen and (max-width: 999px) {
  .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::-webkit-input-placeholder {
  color: #bdc3c7;
  opacity: 0.75;
}

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

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

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

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

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

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

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

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

textarea::-ms-input-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;
  -webkit-transition: 0.2s opacity;
  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: 999px) {
  .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: #ffffff;
  padding-top: 150px;
}
@media screen and (max-width: 999px) {
  .main_content {
    padding-top: 125px;
  }
}
@media screen and (max-width: 767px) {
  .main_content {
    padding-top: 100px;
  }
}
.main_content img {
  display: block;
  max-width: 100%;
  border-radius: 10px;
}
.main_content._overflow {
  overflow: hidden;
}
.main_content .content_body {
  position: relative;
  padding-bottom: 120px;
}
@media screen and (max-width: 999px) {
  .main_content .content_body {
    padding-bottom: 85px;
  }
}
.main_content .content_body:not(.cancel) {
  z-index: 2;
  min-height: 400px;
}
.main_content .content_body p:not(.cancel) {
  padding-left: 1.9em;
  padding-right: 1.9em;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .main_content .content_body p:not(.cancel) {
    padding-left: 1.2em;
    padding-right: 1em;
  }
}
@media screen and (max-width: 576px) {
  .main_content .content_body p:not(.cancel) {
    padding-left: 0;
    padding-right: 0;
  }
}
.main_content .content_body .no_indent {
  padding-left: 0 !important;
}
.main_content .content_body p:not(.cancel),
.main_content .content_body li,
.main_content .content_body table td,
.main_content .content_body .box .body {
  letter-spacing: 0.03em !important;
  line-height: 1.9 !important;
}
@media screen and (max-width: 999px) {
  .main_content .content_body p:not(.cancel),
  .main_content .content_body li,
  .main_content .content_body table td,
  .main_content .content_body .box .body {
    line-height: 1.7 !important;
  }
}
.main_content p:not(:last-child):not(.cancel) {
  margin-bottom: 1em;
}
.main_content .downward img {
  display: block;
  margin: auto;
}
.main_content .left_text {
  text-align: left;
}
.main_content .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.main_content .right_text {
  text-align: right;
}

.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: 999px) {
  .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%;
}

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;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
.banner img {
  display: block;
  max-width: 100%;
}

.signature {
  text-align: right;
}

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

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff0000));
  background: linear-gradient(transparent 60%, #ff0000 60%);
}

figure img {
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 999px) {
  figure img {
    margin-left: auto;
    margin-right: auto;
  }
}
figure figcaption {
  font-size: 0.875rem;
}
@media screen and (min-width: 1000px), print {
  figure figcaption {
    padding-top: 0.2em;
    text-align: center;
  }
  figure figcaption._left {
    text-align: left;
  }
}
@media screen and (max-width: 999px) {
  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;
}

@media screen and (max-width: 999px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 1000px), print {
  .pc_none {
    display: none;
  }
}

.wp-block-image._shadow img {
  -webkit-box-shadow: 21.213px 21.213px 60px 0 rgba(205, 206, 214, 0.6);
  box-shadow: 21.213px 21.213px 60px 0 rgba(205, 206, 214, 0.6);
}

.test {
  position: relative;
}
.test .container {
  position: relative;
  display: inline-block;
}
.test .background {
  display: block;
  width: 100%;
  max-width: 300px;
}
.test .text {
  font-size: 50px; /* 適宜調整 */
  color: black; /* 通常の文字色 */
  position: absolute;
  z-index: 1;
  top: 0;
  left: -10px;
}
.test .text::before {
  content: attr(data-text); /* 元の文字を再現 */
  position: absolute;
  top: 0;
  left: 0;
  color: transparent; /* 透明にする */
  -webkit-text-stroke: 2px green; /* 縁取り色 */
  text-stroke: 2px green; /* モダンブラウザ用 */
  mix-blend-mode: difference; /* 背景に応じて縁取りを適用 */
  z-index: -1;
}

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.08em;
  font-size: 1rem;
  line-height: 1.9;
  color: #222222;
}

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

.large_text {
  font-weight: normal;
}
@media screen and (min-width: 1000px), print {
  .large_text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 999px) {
  .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: #00be9b;
  font-weight: bold;
}

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

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

.text-black {
  color: #222222 !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: 1000px), print {
  p {
    font-size: 1rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 999px) {
  p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
/**************************
anotation
*/
.anotation {
  position: relative;
  top: 0;
  left: 0;
  line-height: 1.5;
  padding-left: 1.3em;
}
@media screen and (min-width: 1000px), print {
  .anotation {
    font-size: 1rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 999px) {
  .anotation {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.anotation::before {
  content: "※";
  width: 1em;
  position: absolute;
  top: 0.04em;
  left: 0;
  color: #ff0000;
}
.anotation._black {
  color: #222222;
}
.anotation._black::before {
  color: #222222;
}
.anotation._right {
  float: right;
}
.anotation._red {
  color: #ff0000;
}
.anotation._red::before {
  color: #ff0000;
}
@media screen and (min-width: 1000px), print {
  .anotation._sm {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1000px), print {
  .anotation._sm {
    font-size: 0.813rem;
  }
}

/**************************
pc
*/
@media screen and (min-width: 1000px), print {
  .container {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1260px;
  }
  .container_lg {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1460px;
  }
  .pc_padding,
  .padding {
    padding-left: 30px;
    padding-right: 30px;
  }
  .imain_content .container {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1260px;
  }
}
/**************************
sp
*/
@media screen and (max-width: 999px) {
  .sp_container,
  .container {
    -webkit-box-sizing: border-box;
    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 {
  line-height: 1.4;
  letter-spacing: 0;
}
@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 {
    letter-spacing: 0.1em;
  }
}
.main_content h2:not(.cancel), .main_content .h2,
.main_content h3:not(.cancel), .main_content .h3,
.main_content h4:not(.cancel), .main_content .h4 {
  font-weight: 500;
}
.main_content h5:not(.cancel), .main_content .h5,
.main_content h6:not(.cancel), .main_content .h6 {
  font-weight: 700;
}
.main_content h2:not(.cancel):not(.fc-toolbar-title),
.main_content .h2 {
  position: relative;
  border-bottom: 2px solid #f2f2f2;
  letter-spacing: 0.1rem;
}
.main_content h2:not(.cancel):not(.fc-toolbar-title)::before,
.main_content .h2::before {
  display: block;
  content: "";
  width: 100px;
  height: 40px;
  background-color: #dbf2ee;
  border-radius: 3px;
  position: absolute;
  top: -0.4em;
  left: -20px;
  z-index: -1;
}
.main_content h2:not(.cancel):not(.fc-toolbar-title)::after,
.main_content .h2::after {
  display: block;
  content: "";
  width: clamp(30px, 8.33vw, 100px);
  height: 2px;
  background-color: #00be9b;
  position: absolute;
  left: 0;
  bottom: -2px;
}
@media screen and (min-width: 1200px), print {
  .main_content h2:not(.cancel):not(.fc-toolbar-title),
  .main_content .h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h2:not(.cancel):not(.fc-toolbar-title),
  .main_content .h2 {
    font-size: clamp(24px, 4vw, 34px);
  }
}
@media screen and (min-width: 768px), print {
  .main_content h2:not(.cancel):not(.fc-toolbar-title),
  .main_content .h2 {
    padding-bottom: 20px;
    margin-top: 3em;
    margin-bottom: 1.2em;
  }
}
@media screen and (max-width: 767px) {
  .main_content h2:not(.cancel):not(.fc-toolbar-title),
  .main_content .h2 {
    padding-bottom: 15px;
    margin-top: 2.6em;
    margin-bottom: 1em;
  }
  .main_content h2:not(.cancel):not(.fc-toolbar-title)::before,
  .main_content .h2::before {
    width: 70px;
    height: 30px;
    top: -0.3em;
    left: -15px;
  }
}
.main_content h2:not(.cancel):not(.fc-toolbar-title) + h3:not(.cancel),
.main_content .h2 + h3:not(.cancel) {
  margin-top: calc(var(--margin-section) / 5);
}
.main_content h3:not(.cancel),
.main_content .h3 {
  margin-top: var(--margin-section);
  margin-bottom: 1em;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  background-color: #f5f5f5;
  border-radius: 5px;
  min-height: 50px;
  padding: 0.2em 1em;
}
@media screen and (min-width: 1200px), print {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    font-size: clamp(1.313rem, 4vw, 1.625rem);
  }
}
@media screen and (max-width: 999px) {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    margin-top: calc(var(--margin-section) * 0.7);
  }
}
@media screen and (max-width: 767px) {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    margin-bottom: 0.8em;
    padding: 0.2em 0.6em;
    min-height: auto;
  }
}
.main_content h3:not(.cancel) + h4:not(.cancel),
.main_content .h3 + h4:not(.cancel) {
  margin-top: calc(var(--margin-section) / 4);
}
.main_content h4:not(.cancel),
.main_content .h4 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: calc(var(--margin-section) * 0.9);
  margin-bottom: 0.6em;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
  margin-left: 1em;
}
.main_content h4:not(.cancel)::before,
.main_content .h4::before {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  background-color: #bbe3dc;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    font-size: clamp(1.25rem, 4vw, 1.438rem);
  }
}
@media screen and (max-width: 999px) {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    margin-top: calc(var(--margin-section) * 0.6);
  }
}
@media screen and (max-width: 767px) {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    margin-bottom: 0.6em;
  }
}
@media screen and (max-width: 575px) {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    margin-left: 0;
  }
}
.main_content h4:not(.cancel) + h5:not(.cancel),
.main_content .h4 + h5:not(.cancel) {
  margin-top: 0.5em;
}
.main_content h5:not(.cancel),
.main_content .h5 {
  margin-top: calc(var(--margin-section) * 1.3);
  margin-bottom: 0.5em;
  padding-left: 10px;
  position: relative;
  margin-left: 1em;
}
.main_content h5:not(.cancel)::before,
.main_content .h5::before {
  display: block;
  content: "";
  width: 36px;
  height: 20px;
  background-color: #dbf2ee;
  border-radius: 3px;
  position: absolute;
  top: -0.1em;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1200px), print {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    font-size: clamp(1.125rem, 4vw, 1.25rem);
  }
}
@media screen and (max-width: 999px) {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    margin-top: calc(var(--margin-section) * 0.8);
  }
}
@media screen and (max-width: 575px) {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    margin-left: 0;
  }
}
.main_content h5:not(.cancel) + h6:not(.cancel),
.main_content .h5 + h6:not(.cancel) {
  margin-top: calc(var(--margin-section) / 1.2);
}
.main_content h6:not(.cancel),
.main_content .h6 {
  margin-top: calc(var(--margin-section) * 1.3);
  margin-bottom: 0.3em;
  font-size: 1.125rem;
  color: #4a9a8e;
  margin-left: 1em;
}
@media screen and (max-width: 999px) {
  .main_content h6:not(.cancel),
  .main_content .h6 {
    margin-top: calc(var(--margin-section) * 0.5);
  }
}
@media screen and (max-width: 575px) {
  .main_content h6:not(.cancel),
  .main_content .h6 {
    margin-left: 0;
  }
}

.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: 1000px), 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: 999px) {
  .pc_inline_block_list li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 999px) {
  .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: 1000px), 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: 999px) {
  .main_content .ul_horizontal_list > ul:not(.cancel) {
    margin-bottom: 0.3em;
  }
}
.inline-slash-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.inline-slash-list > li:not(:last-child)::after {
  content: "/";
  margin-left: 1em;
  margin-right: 1em;
}

.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
  padding-right: 1.9em;
  padding-left: 2em;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
    padding-right: 1.2em;
    padding-left: 1.4em;
  }
}
@media screen and (max-width: 576px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
    padding-left: 0em;
  }
}
@media screen and (max-width: 475px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
    padding-right: 0.8em;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
  padding-left: 1.6em;
  letter-spacing: 0.12em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li:not(:last-of-type) {
  margin-bottom: 1em;
}
@media screen and (min-width: 1000px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
    font-size: 1rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 999px) {
  .main_content 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 {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #222222;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 1000px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
    top: 1.5ex;
  }
}
@media screen and (max-width: 999px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
    top: 1.2ex;
  }
}
.main_content 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 {
  margin-bottom: 0;
}

ul.acf-radio-list ul.acf-checkbox-list > li,
ul.acf-bl > li {
  padding-left: 0 !important;
}
ul.acf-radio-list ul.acf-checkbox-list > li::before,
ul.acf-bl > li::before {
  content: none !important;
  display: none;
}

.main_content ol:not(.cancel) {
  list-style: none;
  counter-reset: num 0;
  padding-right: 1.9em;
  padding-left: 2em;
}
.main_content ol:not(.cancel):not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 575px) {
  .main_content ol:not(.cancel) {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .main_content ol:not(.cancel) {
    padding-right: 1.2em;
    padding-left: 1.4em;
  }
}
@media screen and (max-width: 576px) {
  .main_content ol:not(.cancel) {
    padding-left: 0em;
  }
}
@media screen and (max-width: 475px) {
  .main_content ol:not(.cancel) {
    padding-right: 0.8em;
  }
}
.main_content ol:not(.cancel) > li {
  padding-left: 1.8em;
  letter-spacing: 0.12em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ol:not(.cancel) > li:not(:last-of-type) {
  margin-bottom: 0.6em;
}
@media screen and (min-width: 1000px), print {
  .main_content ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 999px) {
  .main_content ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.main_content ol:not(.cancel) > li::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) ".";
  font-weight: 700;
  color: #222222;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  letter-spacing: 0.12em;
}
.main_content ol:not(.cancel):not(.inline_block_list) > li:last-child {
  margin-bottom: 0;
}
.main_content ol:not(.cancel)._sm > li {
  margin-bottom: 0;
  line-height: 1.7;
}
@media screen and (min-width: 1000px), print {
  .main_content ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}
@media screen and (max-width: 999px) {
  .main_content 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: 1000px), print {
  .dl dt {
    float: left;
  }
}
@media screen and (min-width: 1000px), print {
  .dl dt,
  .dl dd {
    float: left;
  }
}
.dl dt:last-child,
.dl dd:last-child {
  margin-bottom: 0;
}
.dl dd {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.dl dd:not(:last-child) {
  padding-bottom: 0.3em;
}
@media screen and (max-width: 999px) {
  .dl dd:not(:last-child) {
    margin-bottom: 0.7em;
  }
}
@media screen and (min-width: 1000px), 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;
  -webkit-box-sizing: border-box;
  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 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 {
  letter-spacing: 0.1em;
  padding-left: 2.7em;
  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.5em;
  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 {
  padding-left: 1.9rem;
}
.main_content .link_list li:not(:last-of-type) {
  margin-bottom: 0.4em;
}
.main_content .link_list li::before {
  display: none !important;
}
@media screen and (max-width: 999px) {
  .main_content .link_list {
    padding-left: 1rem;
  }
}

.image_btn_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4.2vw, 60px);
  margin-top: 1em;
  margin-bottom: var(--margin-section);
}
@media screen and (max-width: 999px) {
  .image_btn_list {
    row-gap: 50px;
  }
}
@media screen and (max-width: 799px) {
  .image_btn_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .image_btn_list {
    grid-template-columns: 1fr;
    row-gap: 35px;
  }
}

/**************************
・テーブルのルール
基本的に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%;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  letter-spacing: 0;
  min-height: 60px;
  position: relative;
}
@media screen and (min-width: 1000px), 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.71;
  }
}
@media screen and (max-width: 999px) {
  .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.36;
  }
}
@media screen and (max-width: 999px) {
  .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: #222222;
  text-align: center;
  vertical-align: middle;
  font-size: clamp(16px, 1.7vw, 1rem);
  font-weight: 700;
}
@media screen and (min-width: 1000px), 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: 999px) {
  .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: 1000px), 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: 999px) {
  .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: #222222;
  background-color: #eeeeee;
  position: relative;
  border: 1px solid #d8d8d8;
}
.table_wrapper table thead th:first-of-type,
.root .wpnews table thead th:first-of-type,
.main_content table.wp-block-advgb-table thead th:first-of-type,
.main_content .wp-block-table table thead th:first-of-type {
  background-color: #e5e5e5;
  border-right: none;
}
.table_wrapper table thead th:not(:first-of-type),
.root .wpnews table thead th:not(:first-of-type),
.main_content table.wp-block-advgb-table thead th:not(:first-of-type),
.main_content .wp-block-table table thead th:not(:first-of-type) {
  border-left: none;
}
.table_wrapper table thead td, .table_wrapper table thead th,
.root .wpnews table thead td,
.root .wpnews table thead th,
.main_content table.wp-block-advgb-table thead td,
.main_content table.wp-block-advgb-table thead th,
.main_content .wp-block-table table thead td,
.main_content .wp-block-table table thead th {
  border-bottom: none;
}
.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: #222222;
  background-color: #f5f5f5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  border-right: none;
}
@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: 999px) {
  .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: #222222;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
}
.table_wrapper table tbody td:first-of-type,
.root .wpnews table tbody td:first-of-type,
.main_content table.wp-block-advgb-table tbody td:first-of-type,
.main_content .wp-block-table table tbody td:first-of-type {
  border-left: none;
}
.table_wrapper table tbody td:not(:last-of-type),
.root .wpnews table tbody td:not(:last-of-type),
.main_content table.wp-block-advgb-table tbody td:not(:last-of-type),
.main_content .wp-block-table table tbody td:not(:last-of-type) {
  border-right: none;
  border-left: none;
}
.table_wrapper table tbody tr:not(:last-of-type) td, .table_wrapper table tbody tr:not(:last-of-type) th,
.root .wpnews table tbody tr:not(:last-of-type) td,
.root .wpnews table tbody tr:not(:last-of-type) th,
.main_content table.wp-block-advgb-table tbody tr:not(:last-of-type) td,
.main_content table.wp-block-advgb-table tbody tr:not(:last-of-type) th,
.main_content .wp-block-table table tbody tr:not(:last-of-type) td,
.main_content .wp-block-table table tbody tr:not(:last-of-type) th {
  border-bottom: none;
}

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

角丸めるための記述

*/
.table_wrapper table thead th:first-child,
.root .wpnews table thead th:first-child,
.main_content table.wp-block-advgb-table thead th:first-child,
.main_content .wp-block-table table thead th:first-child {
  border-radius: 15px 0 0 0;
}
.table_wrapper table thead th:last-child,
.root .wpnews table thead th:last-child,
.main_content table.wp-block-advgb-table thead th:last-child,
.main_content .wp-block-table table thead th:last-child {
  border-radius: 0 15px 0 0;
}
.table_wrapper table thead td:last-child,
.root .wpnews table thead td:last-child,
.main_content table.wp-block-advgb-table thead td:last-child,
.main_content .wp-block-table table thead td:last-child {
  border-radius: 0 15px 0 0;
}
.table_wrapper table tbody tr:last-child th,
.root .wpnews table tbody tr:last-child th,
.main_content table.wp-block-advgb-table tbody tr:last-child th,
.main_content .wp-block-table table tbody tr:last-child th {
  border-radius: 0 0 0 15px;
}
.table_wrapper table tbody tr:last-child td:last-child,
.root .wpnews table tbody tr:last-child td:last-child,
.main_content table.wp-block-advgb-table tbody tr:last-child td:last-child,
.main_content .wp-block-table table tbody tr:last-child td:last-child {
  border-radius: 0 0 15px 0;
}
.table_wrapper table.sp_row_to_column tbody tr:first-child th,
.root .wpnews table.sp_row_to_column tbody tr:first-child th,
.main_content table.wp-block-advgb-table.sp_row_to_column tbody tr:first-child th,
.main_content .wp-block-table table.sp_row_to_column tbody tr:first-child th {
  border-radius: 15px 0 0 0;
}
.table_wrapper table.sp_row_to_column tbody tr:first-child td:last-child,
.root .wpnews table.sp_row_to_column tbody tr:first-child td:last-child,
.main_content table.wp-block-advgb-table.sp_row_to_column tbody tr:first-child td:last-child,
.main_content .wp-block-table table.sp_row_to_column tbody tr:first-child td:last-child {
  border-radius: 0 15px 0 0;
}

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

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

*/
.main_content .fixed_table_wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
.main_content .fixed_table_wrapper table {
  -webkit-box-sizing: border-box;
  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: 999px) {
  .main_content .fixed_table_wrapper table {
    width: 1140px !important;
  }
  .main_content .fixed_table_wrapper thead th {
    width: auto !important;
  }
}
.main_content .fixed_table._fixed_th table {
  overflow: auto;
  -webkit-box-sizing: border-box;
  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: -webkit-sticky;
  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: -webkit-sticky;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0;
  z-index: 10;
}
.main_content ._yubi img {
  width: 85px;
  display: block;
}
@media screen and (min-width: 1000px), print {
  .main_content ._yubi {
    display: none;
  }
}
@media screen and (max-width: 1259px) {
  .products_container .main_content ._yubi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*********************************
スマホ時thとtdを縦に並べるためのstyle
*/
@media screen and (max-width: 999px) {
  .sp_row_to_column table {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-collapse: collapse;
    border-bottom: none !important;
    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 !important;
  }
  .sp_row_to_column tbody tr:first-child th {
    border-radius: 15px 15px 0 0 !important;
  }
  .sp_row_to_column tbody tr:last-child th {
    border-radius: 0 0 0 0 !important;
  }
  .sp_row_to_column tbody tr:first-child td:last-child {
    border-radius: 0 0 0 0 !important;
  }
  .sp_row_to_column tbody tr:last-child td:last-child {
    border-radius: 0 0 15px 15px !important;
  }
  .sp_row_to_column.sp_row_to_column tbody tr:first-child th {
    border-radius: 15px 0 0 0;
  }
  .sp_row_to_column.sp_row_to_column tbody tr:first-child td:last-child {
    border-radius: 0 15px 0 0;
  }
  .sp_row_to_column tbody td:not(:last-of-type) {
    border-right: 1px solid #d8d8d8 !important;
    border-left: 1px solid #d8d8d8 !important;
    border-bottom: 1px solid #d8d8d8 !important;
  }
  .sp_row_to_column tbody th {
    border-right: 1px solid #d8d8d8 !important;
    border-bottom: 1px solid #d8d8d8 !important;
  }
  .sp_row_to_column tbody td {
    border-top: none !important;
  }
  .sp_row_to_column thead,
  .sp_row_to_column tbody,
  .sp_row_to_column tr {
    display: block;
    width: 100%;
    height: auto !important;
  }
  .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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto !important;
    width: 100% !important;
    white-space: normal;
  }
  .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: 1000px), 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: 1000px), print {
  ._th_long > table tbody th {
    width: 250px;
  }
}
@media screen and (max-width: 999px) {
  ._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(.btn):not(.image_btn):not(.fc-event) {
  text-decoration: underline;
}

a {
  color: #00be9b;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

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

/**************************
icon
*/
.pdf:not(.btn):not(.box_btn):not(.large_link),
.icon_pdf:not(.btn):not(.box_btn) {
  display: inline-block;
  line-height: 1.4;
  color: #00be9b;
  padding-right: 17px;
  position: relative;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  text-decoration: none;
  font-weight: 700;
  padding-right: 23px;
}
.pdf:not(.btn):not(.box_btn):not(.large_link)::before,
.icon_pdf:not(.btn):not(.box_btn)::before {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 10px;
  height: 14px;
  position: absolute;
  top: 0.3rem;
  right: 0;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.pdf:not(.btn):not(.box_btn):not(.large_link):hover,
.icon_pdf:not(.btn):not(.box_btn):hover {
  opacity: 0.6;
}
.pdf:not(.btn):not(.box_btn):not(.large_link)::before,
.icon_pdf:not(.btn):not(.box_btn)::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 18px;
  height: 20px;
  position: absolute;
  top: 0.1rem;
  right: 0;
}

.out:not(.btn):not(.box_btn),
.ext:not(.btn):not(.box_btn):not(.large_link),
.outlink:not(.btn):not(.box_btn),
.icon_out:not(.btn):not(.box_btn),
.icon_ext:not(.btn):not(.box_btn) {
  display: inline-block;
  line-height: 1.4;
  color: #00be9b;
  padding-right: 17px;
  position: relative;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  text-decoration: none;
  font-weight: 700;
  padding-right: 27px;
}
.out:not(.btn):not(.box_btn)::before,
.ext:not(.btn):not(.box_btn):not(.large_link)::before,
.outlink:not(.btn):not(.box_btn)::before,
.icon_out:not(.btn):not(.box_btn)::before,
.icon_ext:not(.btn):not(.box_btn)::before {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 10px;
  height: 14px;
  position: absolute;
  top: 0.3rem;
  right: 0;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.out:not(.btn):not(.box_btn):hover,
.ext:not(.btn):not(.box_btn):not(.large_link):hover,
.outlink:not(.btn):not(.box_btn):hover,
.icon_out:not(.btn):not(.box_btn):hover,
.icon_ext:not(.btn):not(.box_btn):hover {
  opacity: 0.6;
}
.out:not(.btn):not(.box_btn)::before,
.ext:not(.btn):not(.box_btn):not(.large_link)::before,
.outlink:not(.btn):not(.box_btn)::before,
.icon_out:not(.btn):not(.box_btn)::before,
.icon_ext:not(.btn):not(.box_btn)::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 0.3rem;
  right: 0;
}

/**************************
link
*/
.link {
  display: inline-block;
  line-height: 1.4;
  color: #00be9b;
  padding-right: 17px;
  position: relative;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  text-decoration: none;
  font-weight: 700;
}
.link::before {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 10px;
  height: 14px;
  position: absolute;
  top: 0.3rem;
  right: 0;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.link:hover {
  opacity: 0.6;
}
.link:hover {
  color: #00be9b;
  opacity: 0.8;
}
.link-prev {
  padding-right: 0;
}
.link-prev::before {
  position: relative;
  top: 0.15rem;
  left: 0;
  right: 0;
  margin-right: 0.7rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.large_link {
  display: inline-block;
  -ms-flex-line-pack: center;
  align-content: center;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1.4rem;
  position: relative;
  padding-right: 75px;
  z-index: 0;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  color: #222222;
  min-height: 55px;
  text-align: left;
}
.large_link::before {
  display: block;
  content: "";
  width: 42px;
  height: 60px;
  background-color: #222222;
  border-radius: 21px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.large_link::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .large_link {
    padding-right: 60px;
  }
}
.large_link:hover {
  color: #00be9b;
  opacity: 1;
}
.large_link:hover::before {
  background-color: #00be9b;
}
.large_link._white {
  background-color: #ffffff;
}
.large_link.pdf {
  position: relative;
}
.large_link.pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf_white.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 16px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  left: inherit;
  margin: auto;
  border-radius: 0;
}
.large_link.out, .large_link.ext, .large_link.outlink, .large_link.icon_out, .large_link.icon_ext {
  position: relative;
}
.large_link.out::after, .large_link.ext::after, .large_link.outlink::after, .large_link.icon_out::after, .large_link.icon_ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext_white.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  left: inherit;
  margin: auto;
  border-radius: 0;
}
.large_link-submit .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.large_link-submit .content > .text {
  text-align: center;
}
.large_link._disabled {
  pointer-events: none;
  opacity: 0.3;
}

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

## - .btn - 汎用ボタン

*/
.large_link {
  display: inline-block;
  -ms-flex-line-pack: center;
  align-content: center;
  text-decoration: none !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1.4rem;
  position: relative;
  padding-right: 75px;
  z-index: 0;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  color: #222222;
  min-height: 55px;
  text-align: left;
}
.large_link::before {
  display: block;
  content: "";
  width: 42px;
  height: 60px;
  background-color: #222222;
  border-radius: 21px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.large_link::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .large_link {
    padding-right: 60px;
  }
}
.large_link:hover {
  color: #00be9b;
  opacity: 1;
}
.large_link:hover::before {
  background-color: #00be9b;
}
.large_link._white {
  background-color: #ffffff;
}
.large_link.pdf {
  position: relative;
}
.large_link.pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf_white.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 16px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  left: auto;
  margin: auto;
  border-radius: 0;
}
.large_link.ext {
  position: relative;
}
.large_link.ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext_white.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  left: auto;
  margin: auto;
  border-radius: 0;
}
.large_link-submit .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.large_link-submit .content > .text {
  text-align: center;
}
.large_link._disabled {
  pointer-events: none;
  opacity: 0.3;
}

.btn {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 270px;
  min-height: 62px;
  font-size: 1rem;
  text-align: center;
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
  box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 30px 16px 10px;
  margin-bottom: 20px;
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  color: #222222;
  text-decoration: none !important;
  background-color: #f2f2f2;
}
.btn::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #222222;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.btn._white {
  background-color: #ffffff;
}
.btn.pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 16px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  left: auto;
  margin: auto;
  border-radius: 0;
}
.btn.ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  margin: auto;
  border-radius: 0;
}
.btn:hover {
  color: #ffffff;
  background-color: #00be9b;
  opacity: 1;
}
.btn:hover::after {
  background-color: #ffffff;
}
.btn:hover.pdf::after {
  background: url("../img/icon/pdf_white.webp") 0 0 no-repeat transparent;
  background-size: contain;
}
.btn:hover.ext::after {
  background: url("../img/icon/ext_white.webp") 0 0 no-repeat transparent;
  background-size: contain;
}

.root .btn-submit,
.root button.btn,
.root input.btn {
  display: block;
  width: 330px;
  max-width: 330px;
  min-height: 100px;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 30px 30px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background-color: #00be9b;
}
.root .btn-submit .text,
.root button.btn .text,
.root input.btn .text {
  position: relative;
  z-index: 2;
}
.root .btn-submit::before,
.root button.btn::before,
.root input.btn::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 1;
}
.root .btn-submit::after,
.root button.btn::after,
.root input.btn::after {
  display: block;
  content: "";
  width: 320px;
  height: 100%;
  background-color: #00b792;
  -webkit-clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  top: calc(100% - 40px);
  z-index: 0;
  margin: unset;
  border-radius: 0;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.root .btn-submit:hover,
.root button.btn:hover,
.root input.btn:hover {
  opacity: 1;
  color: #ffffff;
}
.root .btn-submit:hover::after,
.root button.btn:hover::after,
.root input.btn:hover::after {
  -webkit-transform: scale(5);
  transform: scale(5);
}
@media screen and (max-width: 767px) {
  .root .btn-submit,
  .root button.btn,
  .root input.btn {
    padding: 20px 20px 20px 10px;
    min-height: auto;
    font-size: 1.125rem;
    width: 100%;
    min-width: auto;
  }
  .root .btn-submit::before,
  .root button.btn::before,
  .root input.btn::before {
    right: 15px;
  }
}

.btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: var(--margin-section);
}
.btn_list .btn {
  width: 100%;
  margin-bottom: 0;
}
.btn_list.column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.btn_list.column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1000px), print {
  .btn_list {
    gap: 20px;
  }
}
@media screen and (max-width: 999px) {
  .btn_list {
    gap: 20px;
  }
  .btn_list.column2, .btn_list.column3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .btn_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .btn_list.column2, .btn_list.column3 {
    grid-template-columns: 1fr;
  }
}

.set {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 1.9em;
  padding-left: 1.9em;
}
@media screen and (max-width: 767px) {
  .set {
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 576px) {
  .set {
    padding-right: 0;
    padding-left: 0;
  }
}
.set:not(:last-child) {
  margin-bottom: var(--margin-section);
}
@media screen and (min-width: 1000px), print {
  .set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .set > * {
    -webkit-box-flex: 10;
    -ms-flex-positive: 10;
    flex-grow: 10;
    width: 100%;
  }
  .set > .left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .set > .right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .set > .fix {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 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;
  }
}

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

.column_layout {
  --gap: clamp(10px, 1vw, 16px);
}
@media screen and (min-width: 1000px), print {
  .column_layout._2, .column_layout._3, .column_layout._4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .column_layout._4 > * {
    width: calc((100% - 3 * var(--gap)) / 4);
  }
  .column_layout._3 > * {
    width: calc((100% - 2 * var(--gap)) / 3);
  }
  .column_layout._2 > * {
    width: calc((100% - 1 * var(--gap)) / 2);
  }
}
@media screen and (max-width: 999px) {
  .column_layout._2 > *, .column_layout._3 > *, .column_layout._4 > * {
    margin-bottom: 1em;
  }
}

.main_flex_area {
  position: relative;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  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 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 60px;
}
.main_column h2:first-of-type {
  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;
  }
}

.sub_column {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 220px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 999px) {
  .sub_column {
    width: 100%;
  }
  .sub_column::after {
    position: absolute;
    top: 0;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 1000px), print {
  .breadcrumbs_area {
    margin-bottom: 1.8rem;
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs_area {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs_area {
    margin-bottom: 1.2rem;
  }
}

.breadcrumbs,
.bread_crumb {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transform: translateX(-0.1em);
  transform: translateX(-0.1em);
  row-gap: 7px;
}
@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-bottom: 10px;
    padding-left: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 575px) {
  .breadcrumbs,
  .bread_crumb {
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 3px;
  }
}
.breadcrumbs li,
.bread_crumb li {
  display: inline-block;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 1rem;
  }
}
.breadcrumbs li:last-child,
.bread_crumb li:last-child {
  margin-left: 0;
  margin-right: 0;
  color: #b8b8b8;
}
.breadcrumbs li:not(:last-of-type),
.bread_crumb li:not(:last-of-type) {
  padding-right: 2.2em;
  position: relative;
}
.breadcrumbs li:not(:last-of-type)::after,
.bread_crumb li:not(:last-of-type)::after {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
  content: "/";
  color: #b8b8b8;
  position: absolute;
  inset: 0 12px 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:not(:last-of-type)::after,
  .bread_crumb li:not(:last-of-type)::after {
    inset: 0 8px 0 auto;
  }
}
.breadcrumbs li a,
.bread_crumb li a {
  font-size: 0.938rem;
  color: #313131;
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 0;
  padding-left: 0;
  text-decoration: none !important;
  letter-spacing: 0.1em;
}
.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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 999px) {
  .pagelink_area {
    margin-bottom: 0.8rem;
  }
}
.pagelink_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px clamp(20px, 5vw, 50px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f2f2f2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  border-radius: 10px;
  min-height: 68px;
  padding: 10px 50px;
}
@media screen and (max-width: 767px) {
  .pagelink_area ul {
    gap: 10px 25px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 575px) {
  .pagelink_area ul {
    padding-left: 10px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.pagelink_area ul > li a {
  color: #222222;
  font-weight: 500;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.pagelink_area ul > li a::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/pagelink.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 14px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.pagelink_area ul > li a:hover::before {
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
}
@media screen and (max-width: 999px) {
  .pagelink_area ul > li a {
    font-size: 0.938rem;
  }
  .pagelink_area ul > li a::before {
    bottom: 5px;
  }
}
@media screen and (max-width: 575px) {
  .pagelink_area ul > li a {
    font-size: 0.875rem;
    -webkit-column-gap: 7px;
    -moz-column-gap: 7px;
    column-gap: 7px;
    letter-spacing: 0.05em;
  }
}
.pagelink_area ul > li a .text {
  line-height: 1.4;
}

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

/**************************
.box
*/
.box {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  background-color: #f2f2f2;
  margin-bottom: 2.5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  border-radius: 15px;
  padding: clamp(25px, 3vw, 34px) clamp(25px, 4vw, 68px);
}
@media screen and (max-width: 1199px) {
  .box {
    margin-bottom: 2em;
  }
}
.box .head {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 999px) {
  .box .head {
    margin-bottom: 0.5rem;
  }
}
.box .title {
  line-height: 1.4;
  padding-left: 1px;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 1000px), print {
  .box .title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 999px) {
  .box .title {
    font-size: 1.125rem;
  }
}
.box._important {
  background-color: #fbf6e8;
}
.box._important .title {
  color: #c69500;
}

/**************************
お問い合わせパーツ
*/
.contact_box {
  width: 100%;
  max-width: 1140px;
  background: #f2f2f2;
  border-radius: 5px;
  padding: 2.5rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  border-radius: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px), print {
  .contact_box {
    padding: 34px 68px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .contact_box {
    padding: clamp(20px, 2vw, 34px) clamp(20px, 2vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .contact_box {
    display: block;
  }
}
.contact_box > * {
  height: 100%;
}
.contact_box__head {
  width: 32.8%;
  font-size: 1.25rem;
  font-weight: 700;
  border-right: 1px solid #222222;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  .contact_box__head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 32.8%;
    padding-right: clamp(20px, 2vw, 30px);
  }
}
@media screen and (max-width: 999px) {
  .contact_box__head {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .contact_box__head {
    max-width: none;
    width: 100%;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #222222;
    margin-bottom: 15px;
    padding-bottom: 10px;
    padding-right: 0;
  }
}
.contact_box__body {
  width: 67.2%;
}
@media screen and (max-width: 767px) {
  .contact_box__body {
    max-width: none;
    width: 100%;
  }
}
.contact_box__body .tell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}
.contact_box__body .tell > .label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.contact_box__body .tell > .number {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 999px) {
  .contact_box__body .tell > .label {
    font-size: 1.125rem;
  }
  .contact_box__body .tell > .number {
    font-size: 1.5rem;
  }
}

.newsline_list > li:not(:last-of-type) {
  border-bottom: 1px solid #e7e7e7;
}
.newsline_list .newsline {
  padding: 1.3em 20px 1.2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.75rem;
  -moz-column-gap: 1.75rem;
  column-gap: 1.75rem;
  width: 100%;
  text-decoration: none;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #222222;
}
@media screen and (max-width: 575px) {
  .newsline_list .newsline {
    padding: 1em 10px;
  }
}
.newsline_list .newsline:hover .newsline__body {
  color: #00be9b;
}
.newsline_list .newsline__head {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.45rem;
  -moz-column-gap: 0.45rem;
  column-gap: 0.45rem;
  line-height: 1.5;
}
@media screen and (max-width: 999px) {
  .newsline_list .newsline__head {
    gap: 10px;
    margin-bottom: 5px;
  }
}
.newsline_list .newsline__date {
  font-family: Jost, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #313131;
  font-size: 0.938rem;
  min-width: 6.25rem;
  line-height: 1.6;
  -webkit-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  letter-spacing: 0;
}
@media screen and (max-width: 999px) {
  .newsline_list .newsline__date {
    min-width: auto;
  }
}
.newsline_list .newsline__cate {
  font-size: 15px;
  font-weight: 500;
  gap: 3px;
  max-width: 250px;
  line-height: 1.5;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 999px) {
  .newsline_list .newsline__cate {
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.newsline_list .newsline__cate > .label {
  display: inline-block;
  -ms-flex-line-pack: center;
  align-content: center;
  min-width: 100px;
  max-height: 30px;
  background-color: #f2f2f2;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.2rem;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.newsline_list .newsline__body {
  color: #313131;
  -webkit-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.newsline_list .newsline__ex {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
}
.newsline_list .newsline._disable {
  pointer-events: none;
}
.newsline_list .newsline._disable::after {
  display: none;
}
@media screen and (max-width: 999px) {
  .newsline_list .newsline {
    display: block;
  }
}

.index_area {
  margin-top: -45px;
}
@media screen and (max-width: 1199px) {
  .index_area {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1099px) {
  .index_area {
    margin-top: -15px;
  }
}
@media screen and (max-width: 575px) {
  .index_area {
    margin-top: 0;
  }
}

@font-face {
  font-family: Amandine;
  src: url("/common/font/amandine-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.content_header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.content_header::before {
  display: block;
  content: "";
  width: 50vw;
  height: 330px;
  border-radius: 0 30px 30px 0;
  background-color: #f2f2f2;
  position: absolute;
  top: 4em;
  left: -50%;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .content_header {
    margin-bottom: 20px;
  }
  .content_header::before {
    top: 3.7em;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .content_header::before {
    top: 3.1em;
    height: 150px;
  }
}
.content_header-sm::before {
  height: 120px;
}
.content_header .title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 23px;
}
.content_header .title_wrap > .parent_title {
  font-size: 1.125rem;
  font-weight: 700;
}
.content_header .title_wrap > .page_title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 999px) {
  .content_header .title_wrap > .page_title {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .content_header .title_wrap > .parent_title {
    font-size: 1rem;
  }
  .content_header .title_wrap > .page_title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 420px) {
  .content_header .title_wrap > .page_title {
    font-size: 1.5rem;
  }
}
.content_header__image img {
  border-radius: clamp(10px, 2vw, 20px);
}

@font-face {
  font-family: Amandine;
  src: url("/common/font/amandine-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.content_specific_header_wrapper {
  padding-top: 60px;
}
@media screen and (max-width: 1199px) and (min-width: 1000px) {
  .content_specific_header_wrapper {
    padding-top: 30px;
  }
}
@media screen and (max-width: 999px) and (min-width: 768px) {
  .content_specific_header_wrapper {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .content_specific_header_wrapper {
    padding-top: 20px;
  }
}

.content_specific_header {
  margin-bottom: 30px;
  position: relative;
}
@media screen and (min-width: 600px), print {
  .content_specific_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.content_specific_header__bar {
  --radius: clamp(10px, 2vw, 30px);
  background-color: #f2f2f2;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  max-width: 65%;
}
@media screen and (max-width: 599px) {
  .content_specific_header__bar {
    display: block;
    max-width: 95%;
  }
}
.content_specific_header__bar::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #f2f2f2;
  right: 100%;
  top: 0;
  width: calc((100vw - 100%) / 2);
  height: 100%;
}
.content_specific_header__breadcrumb {
  padding-top: clamp(1px, 1vw, 1em);
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
@media screen and (min-width: 600px), print {
  .content_specific_header__breadcrumb .breadcrumbs_area {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .content_specific_header__breadcrumb {
    padding-top: 1.3em;
  }
}
.content_specific_header .title_wrap {
  padding: 1.3em 1.5em 1.3em 4em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.content_specific_header .title_wrap > .en {
  font-size: 1.125rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
  height: 80px;
}
.content_specific_header .title_wrap > .en img {
  max-height: 100%;
  width: auto;
  max-width: inherit;
  display: block;
}
.content_specific_header .title_wrap > .ja {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: -0.2em;
  display: block;
}
@media screen and (max-width: 999px) {
  .content_specific_header .title_wrap {
    padding: 1em 2em;
  }
  .content_specific_header .title_wrap > .en {
    height: 40px;
  }
  .content_specific_header .title_wrap > .ja {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .content_specific_header .title_wrap {
    padding: 0.8em 1em 0.8em 1.5em;
  }
  .content_specific_header .title_wrap > .ja {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 420px) {
  .content_specific_header .title_wrap {
    padding: 0.8em 0.5em;
  }
  .content_specific_header .title_wrap > .ja {
    font-size: 1.125rem;
  }
}

@font-face {
  font-family: Amandine;
  src: url("/common/font/amandine-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body.modal_open {
  overflow: hidden;
}
body.modal_open .footer .icon_wrap {
  display: none;
}
body.modal_open .footer .scroll_to_top {
  display: none;
}

.photo_gallery_area .photo_wrap .gallery_modal_btn {
  width: 100%;
  background: none;
  border: none;
  height: auto;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.photo_gallery_area .photo_wrap .photo_box {
  width: 100%;
  border-radius: 3px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .photo_gallery_area .photo_wrap .photo_box:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 575px) {
  .photo_gallery_area .photo_wrap .photo_box {
    border-radius: 5px;
  }
}
.photo_gallery_area .photo_wrap .photo_box img {
  width: 100%;
}

.gallery_modal_wrap .gallery_modal.is-open {
  display: block;
  opacity: 1;
}
.gallery_modal_wrap .gallery_modal.is-open .gallery_modal_content {
  -webkit-animation: appear 0.7s forwards;
  animation: appear 0.7s forwards;
}
@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.gallery_modal_wrap .gallery_modal {
  pointer-events: none;
}
.gallery_modal_wrap .gallery_modal .overlay,
.gallery_modal_wrap .gallery_modal .overlay_tell {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  opacity: 0;
  min-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .gallery_modal_wrap .gallery_modal .overlay,
  .gallery_modal_wrap .gallery_modal .overlay_tell {
    min-width: 900px;
  }
}
@media screen and (max-width: 999px) {
  .gallery_modal_wrap .gallery_modal .overlay,
  .gallery_modal_wrap .gallery_modal .overlay_tell {
    min-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .gallery_modal_wrap .gallery_modal .overlay,
  .gallery_modal_wrap .gallery_modal .overlay_tell {
    min-width: 320px;
  }
}
.gallery_modal_wrap .gallery_modal.active {
  pointer-events: all;
}
.gallery_modal_wrap .gallery_modal.active .overlay,
.gallery_modal_wrap .gallery_modal.active .overlay_tell {
  opacity: 1;
}
.gallery_modal_wrap .gallery_modal.active .overlay .gallery_modal_content,
.gallery_modal_wrap .gallery_modal.active .overlay_tell .gallery_modal_content {
  pointer-events: all;
}
.gallery_modal_wrap .gallery_modal.active .overlay .gallery_modal_content .gallery_modal_inner img,
.gallery_modal_wrap .gallery_modal.active .overlay_tell .gallery_modal_content .gallery_modal_inner img {
  pointer-events: all;
}
.gallery_modal_wrap .gallery_modal_content {
  pointer-events: none;
}
@media screen and (max-width: 575px) {
  .gallery_modal_wrap .gallery_modal_content {
    margin-top: 20px;
  }
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner {
  width: 100%;
  max-width: 950px;
  min-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner {
    width: auto;
    max-width: 700px;
    min-width: auto;
    margin: 0 auto;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 575px) {
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner {
    padding: 30px;
  }
}
@media screen and (max-width: 420px) {
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner {
    padding: 20px 10px;
  }
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close,
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  pointer-events: all;
}
@media screen and (max-width: 575px) {
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close,
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn {
    margin-bottom: 10px;
  }
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close .text,
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn .text {
  font-size: 0.938rem;
  letter-spacing: 0.1em;
  margin-right: 13px;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  cursor: pointer;
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close .close_btn,
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn .close_btn {
  position: relative;
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  outline: none;
  cursor: pointer;
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close .close_btn::before, .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close .close_btn::after,
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn .close_btn::before,
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn .close_btn::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #091a37;
  position: absolute;
  top: 50%;
  left: 50%;
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close .close_btn::before,
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn .close_btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close .close_btn::after,
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn .close_btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .img_wrap {
  width: calc(100% - 30px);
  -webkit-box-shadow: 6px 6px 10px rgba(215, 215, 218, 0.5411764706);
  box-shadow: 6px 6px 10px rgba(215, 215, 218, 0.5411764706);
  max-height: 700px;
  max-width: 750px;
  margin: 0 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* ネイティブの滑らかなスクロールを有効化 */
}
@media screen and (max-width: 767px) {
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .img_wrap {
    max-height: 600px;
  }
}
@media screen and (max-width: 575px) {
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .img_wrap {
    max-height: 450px;
  }
}
@media screen and (max-width: 400px) {
  .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .img_wrap {
    max-height: 390px;
  }
}
.gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .img_wrap img {
  display: block;
  width: 100%;
  border-radius: 3px;
}

@font-face {
  font-family: Amandine;
  src: url("/common/font/amandine-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/**************************
.main_column
*/
.main_column {
  padding-top: 0;
  -ms-flex-preferred-size: 860px;
  flex-basis: 860px;
  padding-left: 0;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.main_column .blog_wrap {
  margin-bottom: 50px;
}
.main_column .blog_wrap._index h2 {
  margin-bottom: 1.5em;
}
.main_column .blog_wrap._index h2 + h2:not(.cancel) {
  margin-top: 0;
  margin-bottom: 2em;
}
.main_column .blog_wrap._index h3 {
  margin-top: 0;
}
.main_column .blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(25px, 5vw, 60px);
}
@media screen and (max-width: 999px) {
  .main_column .blog_list {
    padding-left: 15px;
    padding-right: 15px;
    gap: 40px clamp(20px, 5.5vw, 80px);
  }
}
@media screen and (max-width: 575px) {
  .main_column .blog_list {
    grid-template-columns: 1fr;
    gap: 30px 20px;
  }
}
@media screen and (max-width: 420px) {
  .main_column .blog_list {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    margin: 10px;
  }
}
.main_column .blog_list .card > a {
  display: block;
  text-decoration: none !important;
}
.main_column .blog_list .card > a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.main_column .blog_list .thum_area {
  width: 100%;
  max-width: 400px;
  height: 260px;
  position: relative;
  margin-bottom: 25px;
}
.main_column .blog_list .thum_area::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 8px 0 0 8px;
  mix-blend-mode: multiply;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  background-color: rgba(205, 206, 214, 0.6);
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .main_column .blog_list .thum_area {
    max-width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .main_column .blog_list .thum_area {
    margin-bottom: 15px;
  }
}
.main_column .blog_list .thum_area .thum_box {
  overflow: hidden;
  max-width: inherit;
  width: inherit;
  height: inherit;
}
.main_column .blog_list .thum_area .thum_box .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.main_column .blog_list .thum_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.main_column .blog_list .explain_area {
  position: relative;
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 999px) and (min-width: 578px) {
  .main_column .blog_list .explain_area {
    padding-left: 15px;
  }
}
.main_column .blog_list .explain_area::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  min-height: 60px;
  height: 100%;
  background-color: #191919;
}
.main_column .blog_list .explain_area .info_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 0.2rem;
}
.main_column .blog_list .explain_area .info_area .post_date,
.main_column .blog_list .explain_area .info_area .post_cate {
  position: relative;
}
.main_column .blog_list .explain_area .info_area .post_date {
  font-family: Jost, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 0.2rem;
  line-height: 1.2;
  color: rgba(49, 49, 49, 0.6);
}
@media screen and (max-width: 575px) {
  .main_column .blog_list .explain_area .info_area .post_date {
    font-size: 0.938rem;
  }
}
.main_column .blog_list .explain_area .info_area .post_date:hover {
  text-decoration: none;
}
.main_column .blog_list .explain_area .info_area .post_cate {
  margin-left: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 420px) {
  .main_column .blog_list .explain_area .info_area .post_cate {
    margin-left: 0;
  }
}
.main_column .blog_list .explain_area .info_area .post_cate .cate {
  font-weight: 400;
  position: relative;
  z-index: 10;
  color: #914d96;
  padding: 2px px;
  margin: 0.2rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main_column .blog_list .explain_area .info_area .post_cate .cate:not(:last-of-type) {
  margin-right: 0.4rem;
}
.main_column .blog_list .explain_area .info_area .post_cate .cate a:hover {
  text-decoration: underline;
}
.main_column .blog_list .explain_area .title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.125rem;
  color: #191919;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/**************************
sub_column
*/
.sub_column {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 260px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
  padding-top: 0;
  overflow: visible;
}
@media screen and (max-width: 1199px) {
  .sub_column {
    width: 270px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
  }
}
@media screen and (max-width: 999px) {
  .sub_column {
    width: 100%;
    margin: 0;
    margin-bottom: 40px;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 420px) {
  .sub_column {
    padding-left: 0;
    padding-right: 0;
  }
}
.sub_column .blog_search_area {
  margin-bottom: 3.125rem;
}
.sub_column .blog_search_area .blog_search {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub_column .blog_search_area .blog_search input {
  width: 100%;
  height: 60px;
  border-radius: 3px;
  border: 1px solid #eaeaea;
  padding: 1.25rem 3.5rem 1.25rem 1.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub_column .blog_search_area .blog_search .inputBtn {
  width: 40px;
  height: 60px;
  background-color: transparent;
  outline: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border: none;
  position: absolute;
  top: 0;
  right: 10px;
}
.sub_column .blog_search_area .blog_search .inputBtn::after {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/search_p.webp") 0 0 no-repeat transparent;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}
.sub_column .blog_sub_box:not(:last-of-type) {
  margin-bottom: 3.75rem;
}
.sub_column .blog_sub_box .blog_sub_box_head {
  padding-bottom: 10px;
  padding-left: 10px;
}
.sub_column .blog_sub_box .blog_sub_box_head .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-0.9rem);
  transform: translateX(-0.9rem);
}
.sub_column .blog_sub_box .blog_sub_box_head .icon_wrap {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.sub_column .blog_sub_box .blog_sub_box_head .icon_wrap img {
  display: block;
}
.sub_column .blog_sub_box .blog_sub_box_head .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #914d96;
}
@media screen and (max-width: 575px) {
  .sub_column .blog_sub_box .blog_sub_box_head .title {
    font-size: 1.25rem;
  }
}
.sub_column .blog_sub_box .blog_sub_box_body._new_article > li a {
  min-height: 80px;
}
.sub_column .blog_sub_box .blog_sub_box_body > li:not(:last-of-type) a {
  border-bottom: 1px solid #d5dcdf;
}
.sub_column .blog_sub_box .blog_sub_box_body > li a {
  font-weight: 500;
  display: block;
  padding: 8px 35px 8px 16px;
  min-height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  -ms-flex-line-pack: center;
  align-content: center;
  color: #333333;
}
.sub_column .blog_sub_box .blog_sub_box_body > li a::after {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 17px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sub_column .blog_sub_box .blog_sub_box_body > li a:hover {
  text-decoration: none;
  background-color: #f2f4fa;
}
.sub_column .blog_sub_box .blog_sub_box_body > li .date {
  font-family: Jost, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: rgba(49, 49, 49, 0.6);
  font-size: 0.938rem;
  line-height: 1.2;
}
.sub_column .blog_sub_box .blog_sub_box_body > li .ex {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.6;
}
.sub_column .blog_sub_box .blog_sub_box_accordion {
  background-image: linear-gradient(to right, #d2d2d2, #d2d2d2 5px, transparent 6px);
  background-size: 12px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_toggle {
  display: block;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 10px;
  position: relative;
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_toggle._opened .toggle_btn::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_content {
  position: relative;
  top: 0;
  left: 0;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out, max-height 0.5s ease-out;
  transition: opacity 0.5s ease-out, max-height 0.5s ease-out;
  overflow: hidden;
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_content._opened {
  max-height: 100em;
  opacity: 1;
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_content .blog_sub_box_body {
  padding-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_content .blog_sub_box_body > li a {
  max-width: 75px;
  color: #333333;
  font-size: 0.938rem;
  padding: 5px 25px 5px 9px;
  background-color: #f6f6f6;
  background-image: none;
  border-radius: 4px;
  position: relative;
  line-height: 1.3;
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_content .blog_sub_box_body > li a::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/pink.png") 0 0 no-repeat transparent;
  background-size: 11px 11px;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sub_column .blog_sub_box .blog_sub_box_accordion .js-accordion_content .blog_sub_box_body > li a:hover {
  text-decoration: none;
  background-color: #e9ecf6;
}
.sub_column .archive_year_list > .li1 {
  border-bottom: 1px solid #eef1f4;
}
.sub_column .archive_year_list > .li1 a,
.sub_column .archive_year_list > .li1 .toggle {
  display: block;
  position: relative;
  padding: 0 35px 0 10px;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}
.sub_column .archive_year_list > .li1 a > ._inner,
.sub_column .archive_year_list > .li1 .toggle > ._inner {
  font-size: 1rem;
  display: block;
  min-height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0;
  line-height: 1.4;
}
.sub_column .archive_year_list li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub_column .archive_year_list li a,
.sub_column .archive_year_list li .accordion_toggle_area {
  color: #333333;
  font-weight: 500;
  display: block;
  position: relative;
  padding: 0 35px 0 20px;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}
.sub_column .archive_year_list li a > ._inner,
.sub_column .archive_year_list li .accordion_toggle_area > ._inner {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0;
  line-height: 1.4;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.34, 0.91, 0.34, 0.9);
  transition: -webkit-transform 0.2s cubic-bezier(0.34, 0.91, 0.34, 0.9);
  transition: transform 0.2s cubic-bezier(0.34, 0.91, 0.34, 0.9);
  transition: transform 0.2s cubic-bezier(0.34, 0.91, 0.34, 0.9), -webkit-transform 0.2s cubic-bezier(0.34, 0.91, 0.34, 0.9);
  cursor: pointer;
}
.sub_column .archive_year_list li a:hover,
.sub_column .archive_year_list li .accordion_toggle_area:hover {
  opacity: 0.8;
}
.sub_column .archive_year_list li a {
  text-decoration: none !important;
}
.sub_column .archive_year_list li .accordion_toggle_area {
  border-bottom: 1px solid #333333;
}
.sub_column .archive_year_list li.js-sub_accordion {
  position: relative;
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area {
  position: relative;
  cursor: pointer;
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap {
  position: absolute;
  right: 14px;
  width: 12px;
  height: 12px;
  z-index: 1;
  padding: 3px;
  border-radius: 5px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  top: 1.3em;
  cursor: pointer;
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap > .accordion_toggle {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap > .accordion_toggle::before {
  display: block;
  content: "";
  width: 11px;
  height: 1px;
  background-color: #99909d;
  position: absolute;
  inset: 0;
  margin: auto;
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap > .accordion_toggle::after {
  display: block;
  content: "";
  width: 11px;
  height: 1px;
  background-color: #99909d;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media screen and (max-width: 999px) {
  .sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap {
    top: 0.9em;
  }
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area.opened > .accordion_toggle_wrap > .accordion_toggle::before {
  display: none;
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area.opened > .accordion_toggle_wrap > .accordion_toggle::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.sub_column .archive_year_list li.js-sub_accordion .accordion_toggle_area > a::after {
  display: none;
}
.sub_column .archive_year_list li .sub_menu__ul2,
.sub_column .archive_year_list li .month_list {
  overflow: hidden;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  height: 0;
}
@media screen and (max-width: 999px) {
  .sub_column .archive_year_list li .sub_menu__ul2.opened,
  .sub_column .archive_year_list li .month_list.opened {
    margin-bottom: 5px;
  }
}
.sub_column .archive_year_list li .sub_menu__ul2 > li a,
.sub_column .archive_year_list li .sub_menu__ul2 > li .toggle,
.sub_column .archive_year_list li .month_list > li a,
.sub_column .archive_year_list li .month_list > li .toggle {
  display: block;
  position: relative;
  padding: 13px 35px 12px 40px;
  min-height: 60px;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  border-bottom: 1px solid #d5dcdf;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sub_column .archive_year_list li .sub_menu__ul2 > li a > ._inner,
.sub_column .archive_year_list li .sub_menu__ul2 > li .toggle > ._inner,
.sub_column .archive_year_list li .month_list > li a > ._inner,
.sub_column .archive_year_list li .month_list > li .toggle > ._inner {
  display: block;
  min-height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 0;
  line-height: 1.4;
}
.sub_column .archive_year_list li .sub_menu__ul2 > li a::after,
.sub_column .archive_year_list li .month_list > li a::after {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 17px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sub_column .archive_year_list li .sub_menu__ul2 > li:not(:last-of-type),
.sub_column .archive_year_list li .month_list > li:not(:last-of-type) {
  margin-bottom: 1px;
}
.sub_column .archive_year_list li .sub_menu__ul2.opened,
.sub_column .archive_year_list li .month_list.opened {
  height: auto;
}
.sub_column .archive_year_list li.active > a:hover {
  opacity: 0.7;
}

/**************************
	詳細ページ
*/
.main_column._detail {
  position: relative;
}
@media screen and (max-width: 575px) {
  .main_column._detail {
    padding-bottom: 40px;
  }
}

.blog_contents {
  background-color: #ffffff;
  border-radius: 3px;
  padding: 45px clamp(30px, 4.5vw, 80px) 80px;
  position: relative;
  margin-bottom: 45px;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .blog_contents {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 575px) {
  .blog_contents {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
}
.blog_contents h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.875rem;
  position: relative;
  border-bottom: 1px solid #e9e4ea;
  color: #914d96;
  padding-bottom: 25px;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .blog_contents h2 {
    font-size: clamp(24px, 5vw, 28px);
    padding-bottom: 15px;
    margin-bottom: 0.7rem;
  }
}

.blog_contents .info_area,
.editor-styles-wrapper .info_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 475px) {
  .blog_contents .info_area,
  .editor-styles-wrapper .info_area {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
.blog_contents .info_area .post_date,
.editor-styles-wrapper .info_area .post_date {
  font-family: Jost, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: rgba(115, 115, 115, 0.8);
  margin-right: 25px;
}
.blog_contents .info_area .post_cate .cate,
.editor-styles-wrapper .info_area .post_cate .cate {
  text-decoration: none !important;
  color: #914d96;
}
.blog_contents .info_area .post_cate .cate:not(:last-of-type),
.editor-styles-wrapper .info_area .post_cate .cate:not(:last-of-type) {
  margin-right: 8px;
}
.blog_contents img,
.editor-styles-wrapper img {
  margin: 1rem auto;
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 999px) {
  .blog_contents img,
  .editor-styles-wrapper img {
    margin: 0 auto 30px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 999px) {
  .blog_contents .img_column img,
  .blog_contents .img_list img,
  .blog_contents .img_list_02 img,
  .blog_contents .blog_set img,
  .editor-styles-wrapper .img_column img,
  .editor-styles-wrapper .img_list img,
  .editor-styles-wrapper .img_list_02 img,
  .editor-styles-wrapper .blog_set img {
    padding-left: 0;
    padding-right: 0;
    -webkit-box-sizing: initial;
    box-sizing: initial;
  }
}
.blog_contents .img_column p,
.blog_contents .img_list p,
.blog_contents .img_list_02 p,
.blog_contents .blog_set p,
.editor-styles-wrapper .img_column p,
.editor-styles-wrapper .img_list p,
.editor-styles-wrapper .img_list_02 p,
.editor-styles-wrapper .blog_set p {
  padding-left: 0;
}
.blog_contents .img_column,
.editor-styles-wrapper .img_column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 20px;
  padding: 20px 0;
}
.blog_contents .img_column img,
.editor-styles-wrapper .img_column img {
  margin: auto;
}
@media screen and (max-width: 999px) {
  .blog_contents .img_column,
  .editor-styles-wrapper .img_column {
    margin: 0 10px 30px;
    gap: 20px;
  }
}
@media screen and (max-width: 420px) {
  .blog_contents .img_column,
  .editor-styles-wrapper .img_column {
    grid-template-columns: 1fr;
  }
}
.blog_contents .img_list,
.editor-styles-wrapper .img_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 20px 40px;
}
.blog_contents .img_list img,
.editor-styles-wrapper .img_list img {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 999px) {
  .blog_contents .img_list,
  .editor-styles-wrapper .img_list {
    gap: 10px;
  }
}
.blog_contents .img_list_02,
.editor-styles-wrapper .img_list_02 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.blog_contents .img_list_02 img,
.editor-styles-wrapper .img_list_02 img {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .blog_contents .img_list_02,
  .editor-styles-wrapper .img_list_02 {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .blog_contents .img_list_02,
  .editor-styles-wrapper .img_list_02 {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog_contents .img_list_02 img,
  .editor-styles-wrapper .img_list_02 img {
    max-width: none;
  }
}
@media screen and (min-width: 1000px), print {
  .blog_contents .blog_set,
  .editor-styles-wrapper .blog_set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 780px;
    margin: 0 20px 40px;
  }
  .blog_contents .blog_set p,
  .editor-styles-wrapper .blog_set p {
    padding-left: 0;
  }
  .blog_contents .blog_set img:not(.cancel),
  .editor-styles-wrapper .blog_set img:not(.cancel) {
    margin: 0;
  }
  .blog_contents .blog_set > *,
  .editor-styles-wrapper .blog_set > * {
    -webkit-box-flex: 5;
    -ms-flex-positive: 5;
    flex-grow: 5;
  }
  .blog_contents .blog_set > .left,
  .editor-styles-wrapper .blog_set > .left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .blog_contents .blog_set > .right,
  .editor-styles-wrapper .blog_set > .right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .blog_contents .blog_set > .fix,
  .editor-styles-wrapper .blog_set > .fix {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 100%;
  }
  .blog_contents .blog_set > .flex,
  .editor-styles-wrapper .blog_set > .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 999px) {
  .blog_contents .blog_set,
  .editor-styles-wrapper .blog_set {
    margin: 0 10px 30px;
  }
  .blog_contents .blog_set > *,
  .editor-styles-wrapper .blog_set > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog_contents .blog_set > *:first-child,
  .editor-styles-wrapper .blog_set > *:first-child {
    margin-bottom: 2em;
  }
  .blog_contents .blog_set > * > img,
  .editor-styles-wrapper .blog_set > * > img {
    margin-left: auto;
    margin-right: auto;
  }
}
.blog_contents p,
.editor-styles-wrapper p {
  padding-left: 0;
  word-break: break-all;
}
.blog_contents p:not(:last-of-type),
.editor-styles-wrapper p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.blog_contents .indent,
.editor-styles-wrapper .indent {
  padding-left: 20px;
}
@media screen and (max-width: 999px) {
  .blog_contents .indent,
  .editor-styles-wrapper .indent {
    padding-left: 10px;
  }
}
.blog_contents figcaption,
.editor-styles-wrapper figcaption {
  background: transparent;
  position: inherit;
}

.blog_detail_foot__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
}
@media screen and (max-width: 575px) {
  .blog_detail_foot__inner {
    grid-template-columns: 1fr;
  }
}
.blog_detail_foot .page_transition a {
  position: relative;
  display: block;
}
.blog_detail_foot .page_transition a::before {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/circle.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 44px;
  height: 45px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-53%);
  transform: translateY(-53%);
}
.blog_detail_foot .page_transition .transition_content {
  display: inline-block;
}
.blog_detail_foot .page_transition .post_date {
  font-family: Jost, sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.938rem;
  color: rgba(49, 49, 49, 0.6);
  line-height: 1.3;
}
.blog_detail_foot .page_transition .post_title {
  line-height: 1.3;
  color: #333333;
  font-size: 1.125rem;
}
.blog_detail_foot .page_transition._prev a {
  padding-left: 65px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 475px) {
  .blog_detail_foot .page_transition._prev a {
    padding-left: 60px;
  }
}
.blog_detail_foot .page_transition._prev a::before {
  left: 0;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.blog_detail_foot .page_transition._prev a:hover::before {
  left: -5px;
}
.blog_detail_foot .page_transition._next a {
  padding-right: 65px;
  text-align: right;
}
@media screen and (max-width: 475px) {
  .blog_detail_foot .page_transition._next a {
    padding-right: 60px;
  }
}
.blog_detail_foot .page_transition._next a::before {
  right: 0;
  -webkit-transform: translateY(-53%) scale(-1, 1);
  transform: translateY(-53%) scale(-1, 1);
  -webkit-transition: right 0.2s;
  transition: right 0.2s;
}
.blog_detail_foot .page_transition._next a:hover::before {
  right: -5px;
}
.blog_detail_foot .page_transition._next a .transition_content {
  text-align: left;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: transparent;
  position: inherit;
  color: #444444;
}

@media screen and (min-width: 1000px), print {
  .wp-block-columns.is-layout-flex {
    margin-bottom: 2rem;
  }
}
:root {
  --max-width: 1200px;
  --background-color: #f2f2f2;
  --box-shadow: 21.213px 21.213px 60px 0px rgba(242, 241, 242, 60%);
  --sun-color: #eb4747;
  --sat-color: #2791ce;
}

.calendar {
  background-color: var(--background-color);
  max-width: var(--max-width);
  padding: 40px 30px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 15px;
  /**************************
  	Toolbar
  */
  /**************************
  	sp時のカレンダー説明
  	受付枠あり 受付枠なし
  */
  /**************************
     イベント
  */
}
@media screen and (max-width: 1199px) {
  .calendar {
    padding: clamp(25px, 2vw, 50px) clamp(5px, 2vw, 50px) clamp(25px, 2vw, 50px);
  }
}
.calendar h2 {
  font-size: 50px !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  color: #222222 !important;
  line-height: 1 !important;
  font-weight: 500;
}
.calendar h2 .unit {
  font-size: 1.25rem;
}
.calendar h2 .year {
  margin-right: 10px;
  margin-left: 5px;
}
.calendar h2::before {
  content: none !important;
}
@media screen and (max-width: 768px) {
  .calendar h2 {
    font-size: 28px !important;
  }
  .calendar h2 .unit {
    font-size: 0.875rem;
  }
  .calendar h2 .year {
    margin-right: 8px;
    margin-left: 2px;
  }
}
.calendar .sp_explanation_wrap {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 285px;
  height: 52px;
  border-radius: 26px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 5px auto 0;
  gap: 25px;
}
.calendar .sp_explanation_wrap .sp_explanation {
  padding-left: 20px;
  position: relative;
}
.calendar .sp_explanation_wrap .sp_explanation::before {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
}
.calendar .sp_explanation_wrap .sp_explanation._available::before {
  background-color: #00be9b;
}
.calendar .sp_explanation_wrap .sp_explanation._unavailable::before {
  background-color: #b8b8b8;
}
@media screen and (min-width: 768px), print {
  .calendar .sp_explanation_wrap {
    display: none;
  }
}
.calendar fc-header-toolbar fc-toolbar fc-toolbar-ltr .fc-theme-standard .fc-scrollgrid {
  border: none;
}
.calendar .fc .fc-toolbar {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.calendar .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.7em;
  border-bottom: 1px solid #d7d7d7;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .calendar .fc .fc-toolbar.fc-header-toolbar {
    width: calc(100% - 30px);
    padding-bottom: 15px;
  }
}
.calendar .fc .fc-toolbar {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.calendar .fc-toolbar-titl e {
  font-size: 1.5em;
}
.calendar .fc-button {
  height: 40px;
  background-color: transparent;
  color: #222222;
  font-size: 30px;
  letter-spacing: 0.1em;
  position: relative;
  border-radius: 0;
  outline: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .calendar .fc-button {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .calendar .fc-button {
    height: 20px;
    line-height: 20px;
  }
}
.calendar .fc-button.fc-button-primary:active {
  background-color: #eeeeee;
  color: #333333;
}
.calendar .fc-button.fc-customPrev-button {
  border-right: 1px solid #d7d7d7;
  padding-right: 30px;
}
.calendar .fc-button.fc-customPrev-button::before {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/line_arrow.webp") no-repeat;
  background-size: contain;
  width: 8px;
  height: 13px;
  background-position: 0 bottom;
  -webkit-transform: translateY(-2px) scale(-1, 1);
  transform: translateY(-2px) scale(-1, 1);
  margin-right: 10px;
  -webkit-transition: translate 0.2s;
  transition: translate 0.2s;
}
.calendar .fc-button.fc-customPrev-button.past-month {
  opacity: 0.3;
  pointer-events: none;
  border-color: #989898;
}
.calendar .fc-button.fc-customNext-button {
  border-left: 1px solid #d7d7d7;
  padding-left: 30px;
}
.calendar .fc-button.fc-customNext-button::after {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/line_arrow.webp") no-repeat;
  background-size: contain;
  width: 8px;
  height: 13px;
  background-position: 0 bottom;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .calendar .fc-button.fc-customPrev-button {
    padding-right: 15px;
  }
  .calendar .fc-button.fc-customPrev-button::before {
    -webkit-transform: translateY(1px) scale(-1, 1);
    transform: translateY(1px) scale(-1, 1);
  }
  .calendar .fc-button.fc-customNext-button {
    padding-left: 15px;
  }
  .calendar .fc-button.fc-customNext-button::after {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
}
.calendar .fc-button:hover {
  opacity: 0.8;
  background-color: transparent;
  color: #333333;
}
.calendar .fc-prev-button,
.calendar .fc-next-button {
  font-size: 1.2em !important;
}
.calendar .fc-event {
  border-radius: 0;
  font-size: 0.8em;
  padding: 2px 5px;
}
.calendar .fc-event.fc-event-past {
  pointer-events: none;
  background-color: #b8b8b8 !important;
  border-color: #b8b8b8 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.calendar .fc-event._disable {
  pointer-events: none;
}

/**************************
	dayGridMonth
*/
.fc-dayGridMonth-view table {
  border: none !important;
  border-collapse: separate;
  border-spacing: 10px;
}
@media screen and (max-width: 999px) {
  .fc-dayGridMonth-view table {
    border-spacing: 6px;
  }
}
.fc-dayGridMonth-view table thead {
  border-bottom: 2px solid #333333;
}
.fc-dayGridMonth-view table thead .fc-scroller-harness {
  margin-bottom: -15px;
}
.fc-dayGridMonth-view table thead tr th {
  position: relative;
  border: none;
  background: transparent !important;
}
.fc-dayGridMonth-view table thead tr th a {
  font-size: 1.25rem;
  color: #222222;
}
.fc-dayGridMonth-view table thead tr th.fc-day-sun a {
  color: var(--sun-color);
}
.fc-dayGridMonth-view table thead tr th.fc-day-sat a {
  color: var(--sat-color);
}
.fc-dayGridMonth-view table thead tr td {
  border: none;
}
.fc-dayGridMonth-view table thead .fc-scrollgrid-sync-inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-line-pack: center;
  align-content: center;
  position: relative;
  text-align: center;
  text-align: left;
  padding-left: 0.8em;
}
.fc-dayGridMonth-view table thead .fc-scrollgrid-sync-inner .fc-col-header-cell-cushion {
  padding: 0;
  pointer-events: none;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .fc-dayGridMonth-view table thead .fc-scrollgrid-sync-inner {
    padding-left: 0;
    text-align: center;
  }
  .fc-dayGridMonth-view table thead .fc-scrollgrid-sync-inner .fc-col-header-cell-cushion {
    font-size: 1rem;
  }
}
.fc-dayGridMonth-view table tbody tr:first-child td {
  border: none !important;
}
.fc-dayGridMonth-view table tbody tr td {
  position: relative;
  border-radius: 5px;
}
.fc-dayGridMonth-view table tbody tr td.fc-day {
  background-color: #ffffff;
}
.fc-dayGridMonth-view table tbody tr td.fc-day-sun, .fc-dayGridMonth-view table tbody tr td.fc-day-tue, .fc-dayGridMonth-view table tbody tr td.fc-day-thu, .fc-dayGridMonth-view table tbody tr td.fc-day-sat {
  background-color: #ffffff;
}
.fc-dayGridMonth-view table tbody tr td.fc-day-today {
  background-color: #ffffff !important;
}
.fc-dayGridMonth-view table tbody tr td:first-of-type {
  border-left: none !important;
}
.fc-dayGridMonth-view table tbody tr td:last-of-type {
  border-right: none !important;
}
.fc-dayGridMonth-view table tbody tr .fc-daygrid-day-frame {
  min-height: 70px;
  padding: 7px 10px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  .fc-dayGridMonth-view table tbody tr .fc-daygrid-day-frame {
    min-height: 50px;
    padding: 5px;
  }
}
.fc-dayGridMonth-view table .fc-scrollgrid-sync-table tbody tr:last-child td {
  border-bottom: none !important;
}
.fc-dayGridMonth-view table .fc-scrollgrid-sync-table tbody tr:first-child td {
  border-top: none !important;
}
.fc-dayGridMonth-view .fc-daygrid-day-events::after,
.fc-dayGridMonth-view .fc-daygrid-day-events::before,
.fc-dayGridMonth-view .fc-daygrid-day-frame::after,
.fc-dayGridMonth-view .fc-daygrid-day-frame::before,
.fc-dayGridMonth-view .fc-daygrid-event-harness::after,
.fc-dayGridMonth-view .fc-daygrid-event-harness::before {
  display: none !important;
}
.fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5px;
  margin-bottom: 0;
  padding-left: 38px;
}
.fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events::before, .fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events::after {
  display: none;
}
.fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events .fc-daygrid-event-harness::before, .fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events .fc-daygrid-event-harness::after {
  display: none;
}
.fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events .fc-daygrid-event-harness a {
  white-space: initial;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: -0.04em;
  position: relative;
  margin-left: 0;
  margin-right: 0;
  max-width: 120px;
  min-height: 20px;
  padding: 2px 4px;
  line-height: 1.1;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 0px 0px rgba(46, 55, 74, 0.15);
  box-shadow: 0px 3px 0px 0px rgba(46, 55, 74, 0.15);
}
.fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events .fc-daygrid-event-harness a .fc-event-title-container {
  -ms-flex-line-pack: center;
  align-content: center;
}
.fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events .fc-daygrid-event-harness a .fc-event-main {
  text-align: center;
}
.fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events .fc-daygrid-event-harness a .fc-event-main .type {
  display: block;
  margin: 2px auto 0;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .fc-dayGridMonth-view .fc-daygrid-body-natural .fc-daygrid-day-events {
    max-width: none;
    width: 100%;
    padding-left: 0;
  }
}
.fc-dayGridMonth-view .fc-theme-standard {
  border: none;
}
.fc-dayGridMonth-view .fc-theme-standard .fc-list {
  border: none;
}
.fc-dayGridMonth-view .fc-list-day-cushion .fc-cell-shaded {
  background-color: #ffffff;
}
.fc-dayGridMonth-view .fc-daygrid-day .fc-daygrid-day-number {
  font-size: 1rem;
  font-weight: bold;
  width: 35px;
  text-align: center;
  pointer-events: none;
  text-decoration: none !important;
  color: #222222;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .fc-dayGridMonth-view .fc-daygrid-day .fc-daygrid-day-number {
    width: auto;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 576px) {
  .fc-dayGridMonth-view .fc-daygrid-day .fc-daygrid-day-number {
    font-size: 0.875rem;
  }
}
.fc-dayGridMonth-view .fc-daygrid-day.fc-day-past {
  background-color: #e1e1e1;
}
.fc-dayGridMonth-view .fc-daygrid-day.fc-day-sun .fc-daygrid-day-number {
  color: var(--sun-color);
}
.fc-dayGridMonth-view .fc-daygrid-day.fc-day-sun.fc-day-past .fc-daygrid-day-number {
  color: var(--sun-color);
}
.fc-dayGridMonth-view .fc-daygrid-day.fc-day-sat .fc-daygrid-day-number {
  color: var(--sat-color);
}
.fc-dayGridMonth-view .fc-daygrid-day.fc-day-sat.fc-day-past .fc-daygrid-day-number {
  color: var(--sat-color);
}
@media screen and (max-width: 767px) {
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) {
    border-radius: 5px 5px 0 0;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) .fc-daygrid-day-events {
    width: 100%;
    height: 100%;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) .fc-daygrid-event-harness {
    width: 100%;
    height: 100%;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) .fc-daygrid-day-bottom {
    display: none;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) .fc-daygrid-day-events {
    border: none !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 0;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) .fc-daygrid-day-events .fc-event {
    border: none !important;
    background-color: transparent !important;
    width: 100%;
    height: 100%;
    margin-top: 0;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) .fc-event-main {
    width: 7px !important;
    height: 7px !important;
    min-width: auto;
    min-height: auto;
    border-radius: 100%;
    background-color: #00be9b;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past).event_empty .fc-daygrid-day-events {
    width: 7px;
    height: 7px !important;
    min-height: auto;
    border-radius: 100%;
    background-color: #b8b8b8;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@media screen and (max-width: 576px) {
  .fc-dayGridMonth-view .fc-daygrid-day {
    max-height: 50px;
    max-width: 50px;
  }
  .fc-dayGridMonth-view .fc-daygrid-day .fc-daygrid-day-events {
    min-height: auto;
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past):not(.event_empty) .fc-event-main {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  .fc-dayGridMonth-view .fc-daygrid-day:not(.fc-day-past).event_empty .fc-daygrid-day-events {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
.fc-dayGridMonth-view .fc-daygrid-day-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-right: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 5px;
  left: 7px;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .fc-dayGridMonth-view .fc-daygrid-day-top {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .fc-dayGridMonth-view .fc-daygrid-day-top {
    padding-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.fc-dayGridMonth-view .fc-daygrid-day-bottom {
  display: none;
}
.fc-dayGridMonth-view .fc-day-disabled {
  opacity: 0;
}

/**************************
    listMonth
*/
.fc-listMonth-view.fc-list {
  border: none;
}
.fc-listMonth-view table tbody {
  padding: 20px;
}
.fc-listMonth-view table tbody tr th {
  background: #fbfbfb;
  border: none;
  position: relative;
  text-align: left;
}
.fc-listMonth-view table tbody tr th .fc-list-day-cushion {
  padding: 20px 30px 0;
  background: #fbfbfb;
}
.fc-listMonth-view table tbody tr th::before {
  content: "";
  display: inline-block;
  width: calc(100% - 40px);
  height: 1px;
  background-image: linear-gradient(to right, #bcc5c5 1px, transparent 1px);
  background-size: 3px 1px;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.fc-listMonth-view table tbody tr td {
  border: none;
  background-color: #fbfbfb;
  position: relative;
}
.fc-listMonth-view table tbody tr td.fc-list-event-title {
  padding: 2px 18px 3px;
}
.fc-listMonth-view table tbody tr td.fc-list-event-graphic {
  display: none;
}
.fc-listMonth-view table tbody tr:first-of-type th .fc-list-day-cushion {
  background: #fbfbfb;
  padding: 10px 30px 0;
}
.fc-listMonth-view table tbody tr:first-of-type th::before {
  content: none;
}
.fc-listMonth-view .fc-list-event-time {
  display: none;
}
.fc-listMonth-view .fc-listMonth-view {
  border: none;
}
.fc-listMonth-view .fc-list-day-cushion .fc-list-day-text,
.fc-listMonth-view .fc-list-day-cushion .fc-list-day-side-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  float: none;
  text-decoration: none !important;
}
.fc-listMonth-view .fc-list-day-cushion .fc-list-day-text {
  font-size: 20px;
}
.fc-listMonth-view .fc-list-day-cushion .fc-list-day-side-text {
  color: #aaaaaa;
  font-size: 14px;
}
.fc-listMonth-view .fc-list-day-cushion .fc-list-day-side-text::before {
  content: "/";
  display: inline-block;
  margin: 0 0.1rem 0 0.2rem;
  color: #aaaaaa;
}
.fc-listMonth-view .fc-list-event._disable .fc-list-event-title > a {
  background-color: #d0d0ca;
  pointer-events: none;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .fc-listMonth-view .fc-list-event br {
    display: none;
  }
}
.fc-listMonth-view .fc-list-event-title > a {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  padding: 5px 20px 5px 6px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.03em;
  width: calc(100% - 20px);
  -webkit-box-shadow: 2px 2px 2px 0 rgba(228, 231, 232, 0.8);
  box-shadow: 2px 2px 2px 0 rgba(228, 231, 232, 0.8);
  position: relative;
  text-decoration: none !important;
}
.fc-listMonth-view .fc-list-event-title > a::after {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/calendar.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 4px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.fc-listMonth-view .fc-list-event-title > a.graduate {
  background-color: #9153b8;
}
.fc-listMonth-view .fc-list-event-title > a.career {
  background-color: #4d4fa8;
}
.fc-listMonth-view .fc-list-event-title > a.internship {
  background-color: #ba6cbd;
}
.fc-listMonth-view .fc-list-event-title > a.info_session {
  background-color: #4d4fa8;
}
.fc-listMonth-view .fc-list-event-title > a.info_session_local {
  background-color: #4d4fa8;
}
.fc-listMonth-view .fc-list-event-title > a.info_session_online {
  background-color: #a84da1;
}
.fc-listMonth-view .fc-list-event-title > a.tour {
  background-color: #4da5a8;
}
.fc-listMonth-view .fc-list-event-title > a.event_mynavi {
  background-color: #4d8fa8;
}
.fc-listMonth-view .fc-list-event-title > a.event_nurse {
  background-color: #a84d51;
}
.fc-listMonth-view .fc-list-event-title > a.default {
  background-color: #eeeeee;
}
.fc-listMonth-view .fc-list-event-title > a .type {
  margin-left: 7px;
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.modal.is-open {
  display: block;
  z-index: 9999;
}
.modal .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal_inner {
  width: 100%;
  max-width: 500px;
  padding: 40px 20px;
  margin: 0 auto;
  min-height: 200px;
  background-color: #ffffff;
  opacity: 1;
  z-index: 99999;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-flex-line-pack: center;
  align-content: center;
}
.modal .modal_inner .text_wrap {
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .modal .modal_inner {
    max-width: 350px;
  }
}
.modal .modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background-color: transparent;
}
.modal .modal_close::before, .modal .modal_close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #aaaaaa;
}
.modal .modal_close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal .modal_close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal .text_wrap {
  text-align: center;
  margin-bottom: 25px;
}
.modal .text_wrap .date {
  font-size: 26px;
}
.modal .text_wrap .text {
  font-size: 0.938rem;
}
.modal .btn_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.modal .btn_wrap .modal_btn {
  background-color: green;
}
.modal .btn_wrap .modal_btn.close {
  position: relative;
}
.modal .btn_wrap .modal_btn.close button {
  cursor: pointer;
  min-width: 110px;
  width: 100%;
  height: 50px;
  border: none;
  background-color: #e57373;
  color: #ffffff;
}
.modal .btn_wrap .modal_btn.next {
  background-color: #51bfe8;
}
.modal .btn_wrap .modal_btn.next button {
  cursor: pointer;
  background-color: transparent;
  padding: 10px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -ms-flex-line-pack: center;
  align-content: center;
  display: block;
  height: 100%;
  color: #ffffff;
  border: none;
  outline: none;
  width: 100%;
}

/**************************
Q&Aのアコーディオン
a.accordion
*/
.accordion_area {
  position: relative;
  z-index: 5;
}
.accordion_area::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 8px 0 0 8px;
  mix-blend-mode: multiply;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  background-color: rgba(245, 243, 245, 0.8);
  z-index: -1;
  pointer-events: none;
}
.accordion_area:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (max-width: 475px) {
  .accordion_area:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.accordion_area > .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 23px 55px 21px 60px;
  min-height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .accordion_area > .head {
    padding: 22px 30px 19px;
    min-height: 65px;
  }
}
@media screen and (max-width: 475px) {
  .accordion_area > .head {
    padding: 22px 20px 19px;
  }
}
.accordion_area > .head > .head_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.accordion_area > .head .title {
  padding: 10px 20px 10px 0;
  min-height: 50px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 1.063rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.accordion_area > .head .accordion_toggle {
  display: block;
  width: 19px;
  height: 19px;
  min-width: 19px;
  position: relative;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
@media screen and (max-width: 767px) {
  .accordion_area > .head .accordion_toggle {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}
.accordion_area > .head .accordion_toggle::before {
  display: block;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #914d96;
  position: absolute;
  inset: 0;
  margin: auto;
}
.accordion_area > .head .accordion_toggle::after {
  display: block;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #914d96;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordion_area > .js-accordion_content {
  padding-left: 40px;
  padding-right: 40px;
  background-color: #ffffff;
  position: relative;
  height: 0;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.accordion_area > .js-accordion_content::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: 1px;
  background-color: #eeebee;
}
@media screen and (max-width: 767px) {
  .accordion_area > .js-accordion_content::after {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 475px) {
  .accordion_area > .js-accordion_content::after {
    width: calc(100% - 30px);
  }
}
.accordion_area > .js-accordion_content > .body .answer_main {
  font-weight: bold;
  font-size: 1.063rem;
}
.accordion_area._faq > .head {
  position: relative;
  line-height: 1.5;
}
.accordion_area._faq > .head .text_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.accordion_area._faq > .head .question {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: #914d96;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .accordion_area._faq > .head .question {
    font-size: 1.25rem;
    margin-right: 10px;
  }
}
@media screen and (max-width: 475px) {
  .accordion_area._faq > .head .question {
    font-size: 1.125rem;
    margin-right: 8px;
  }
}
.accordion_area._faq > .head .question_text {
  color: #333333;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .accordion_area._faq > .head .question_text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 475px) {
  .accordion_area._faq > .head .question_text {
    font-size: 1rem;
  }
}
.accordion_area._faq > .js-accordion_content {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .accordion_area._faq > .js-accordion_content {
    padding: 0 10px;
  }
}
.accordion_area._faq > .js-accordion_content > .body {
  padding-left: clamp(30px, 5vw, 60px);
  padding-right: clamp(20px, 3.5vw, 35px);
}
.accordion_area._faq > .js-accordion_content > .body > .body_inner {
  width: 100%;
}
.accordion_area._faq > .js-accordion_content > .body .answer_main {
  font-weight: bold;
  font-size: 1.063rem;
}
.accordion_area._faq > .js-accordion_content > .body .btn_wrap {
  padding-top: 10px;
}
.accordion_area.opened > .head .accordion_toggle::before {
  display: none;
}
.accordion_area.opened > .head .accordion_toggle::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.accordion_area.opened > .js-accordion_content {
  padding-top: 33px;
  padding-bottom: 40px;
  opacity: 1;
  height: auto;
}
@media screen and (max-width: 475px) {
  .accordion_area.opened > .js-accordion_content {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.wpnews {
  max-width: 100%;
}
.wpnews::before, .wpnews::after {
  content: "";
  display: table;
}
.wpnews::after {
  clear: both;
}
@media screen and (min-width: 1000px), print {
  .wpnews {
    min-height: 200px;
  }
}
.root .wpnews {
  margin: 0 auto;
}
.wpnews img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 999px) {
  .wpnews img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .wpnews table {
    max-width: 100%;
  }
}
.wpnews > h2:not(.cancel):first-child,
.wpnews > h3:not(.cancel):first-child,
.wpnews > h4:not(.cancel):first-child,
.wpnews > h5:not(.cancel):first-child,
.wpnews > h6:not(.cancel):first-child {
  margin-top: 0;
}
.wpnews h2:not(.cancel),
.wpnews h3:not(.cancel),
.wpnews h4:not(.cancel),
.wpnews h5:not(.cancel),
.wpnews h6:not(.cancel) {
  margin-top: 2em;
  margin-bottom: 1.25rem;
}
.wpnews ul:not(.cancel),
.wpnews ol:not(.cancel),
.wpnews table {
  margin-top: 1em;
}
.wpnews a {
  text-decoration: underline;
}
.wpnews blockquote {
  padding: 10px;
  border-left: 5px solid #a4adb8;
  background-color: #f7f7f7;
  margin-bottom: 1em;
}
.wpnews p {
  word-break: break-all;
}

.news_index {
  margin-top: 50px;
}
.news_index__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 3px solid #e7e7e7;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .news_index__head {
    display: block;
    border-bottom: 0;
  }
}
.news_index__head__l {
  padding-bottom: 1em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news_index__head__l {
    margin-bottom: 10px;
  }
}
.news_index__head__heading {
  font-size: 2.125rem;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .news_index__head__heading {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .news_index__head__heading {
    font-size: 1.375rem;
  }
}
.news_index__head .news_tab_list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 5px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .news_index__head .news_tab_list {
    border-bottom: 3px solid #e7e7e7;
  }
}
@media screen and (max-width: 576px) {
  .news_index__head .news_tab_list {
    width: 100%;
  }
}
.news_index__head .news_tab_list > li {
  width: 100px;
}
@media screen and (max-width: 576px) {
  .news_index__head .news_tab_list > li {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .news_index__head .news_tab_list > li .tab {
    font-size: 0.875rem;
  }
}
.news_index__head .news_tab_list > li .tab {
  display: block;
  text-align: center;
  color: #222222;
  font-weight: 700;
  position: relative;
}
.news_index__head .news_tab_list > li .tab._selected {
  margin-bottom: 0.9em 0.2rem;
}
.news_index__head .news_tab_list > li .tab._selected::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #222222;
  position: absolute;
  bottom: -8px;
}
@media screen and (min-width: 1000px), print {
  .news_index__body {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.news_area {
  padding-top: 20px;
}
.news_area__head {
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .news_area__head {
    margin-bottom: 10px;
  }
}
.news_area__head .info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news_area__head .info_box .new {
  margin-left: 0;
}
.news_area__date {
  margin-right: 25px;
}
.news_area__cat {
  margin-right: 10px;
}
.news_area__cat .label {
  display: inline-block;
  -ms-flex-line-pack: center;
  align-content: center;
  min-width: 100px;
  max-height: 30px;
  background-color: #f2f2f2;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.1em;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.news_area__title {
  font-size: clamp(1.375rem, 4vw, 2.5rem);
}
.news_area__body {
  padding: clamp(20px, 4.5vw, 70px) clamp(20px, 4.5vw, 80px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: clamp(10px, 2vw, 30px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news_area__foot {
    text-align: right;
  }
}

.link_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 90px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 2px 3px 15px 0 rgba(6, 21, 35, 0.2);
  box-shadow: 2px 3px 15px 0 rgba(6, 21, 35, 0.2);
  position: relative;
  font-size: 1.063rem;
  line-height: 1.4;
  color: #222222;
  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);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 1000px), print {
  .link_btn small {
    display: block;
  }
}
.link_btn:hover {
  color: #00be9b;
}

.image_grid {
  display: grid;
  gap: 20px;
  margin-top: 1em;
  margin-bottom: 2em;
  padding-left: 1.9em;
  padding-right: 1.9em;
}
@media screen and (max-width: 767px) {
  .image_grid {
    margin-bottom: 1.5em;
    padding-right: 1em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 767px) {
  .image_grid:not(._2column):not(._3column) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .image_grid:not(._2column):not(._3column) {
    grid-template-columns: repeat(1, 1fr);
  }
}
.image_grid._2column {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(15px, 3.5vw, 55px);
}
@media screen and (max-width: 767px) {
  .image_grid._2column {
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .image_grid._2column {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.image_grid._3column {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 3.5vw, 25px);
}
@media screen and (max-width: 767px) {
  .image_grid._3column {
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .image_grid._3column {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.image_grid img {
  display: block;
  width: 100%;
}

.news_pager_area {
  padding-top: 70px;
}
@media screen and (min-width: 1000px), print {
  .news_pager_area {
    width: auto;
  }
}
@media screen and (max-width: 999px) {
  .news_pager_area {
    padding-top: 0;
    margin-bottom: 10px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .news_pager_area {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.news_pager_area > .news_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next):not(.text_link) {
  text-align: center;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next):not(.text_link) > a {
  color: #00be9b;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  display: block;
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 1px;
  -webkit-transition: 0.2s background-color;
  transition: 0.2s background-color;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next):not(.text_link) > a.current {
  color: #222222;
  background-color: #f2f2f2;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next):not(.text_link) > a:hover {
  color: #222222;
  background-color: #f2f2f2;
}
.news_pager_area > .news_pager > .news_pager__box > a {
  text-decoration: none !important;
  font-size: 1rem;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link {
  display: block;
  margin-right: 25px;
  padding-left: 25px;
  position: relative;
  color: #222222;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before {
  display: block;
  content: "";
  background: url("/common/img/icon/arrow/pager.webp") no-repeat;
  background-size: contain;
  width: 12px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto;
  -webkit-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.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 {
  -webkit-filter: brightness(0) saturate(100%) invert(74%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(99%) contrast(87%);
  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: 25px;
  padding-right: 25px;
  position: relative;
  color: #222222;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link::before {
  display: block;
  content: "";
  background: url("/common/img/icon/arrow/pager.webp") no-repeat;
  background-size: contain;
  width: 12px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  margin: auto;
  -webkit-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.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 {
  -webkit-filter: brightness(0) saturate(100%) invert(74%) sepia(0%) saturate(0%) hue-rotate(138deg) brightness(99%) contrast(87%);
  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;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.next_link {
    margin-left: 20px;
  }
  .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: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
  }
}
@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 {
  --swiper-navigation-size: 8px;
  --swiper-navigation-color: #00be9b;
  --swiper-theme-color: ;
}

.new {
  display: inline-block;
  text-align: center;
  padding: 1px 9px;
  line-height: 21px;
  border-radius: 15px;
  background-color: #e3b822;
  color: #ffffff;
  font-weight: 700;
  margin-left: 10px;
  font-size: 0.875rem;
}

:root {
  --sp-header-height: 100px;
  --pc-header-height: 125px;
  --sp-header-clamp: 100px;
}

.container-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  height: 125px;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 1399px) {
  .container-header {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media screen and (max-width: 999px) {
  .container-header {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .container-header {
    height: 100px;
  }
}
@media screen and (max-width: 575px) {
  .container-header {
    padding: 0 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
  pointer-events: none;
}
.header .logo,
.header .btn,
.header .header_btn,
.header .open_menu,
.header .sp_open_menu {
  pointer-events: all;
}
.header a {
  color: #222222;
}
.header__l, .header__r {
  position: relative;
  z-index: 100;
}
.header__r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1299px) {
  .header__r {
    gap: 30px;
  }
}
@media screen and (max-width: 999px) {
  .header__r {
    gap: 15px;
  }
}
.header__logo,
.header__logo .logo,
.header__logo img {
  display: block;
  width: 366px;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 246px;
  }
}
.header__logo .logo {
  padding: 0;
  position: relative;
}
.header__logo .logo .default {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header__link {
    display: none;
  }
}
.header__link .header_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 15px;
}
@media screen and (max-width: 1299px) {
  .header__link .header_link_list {
    gap: 10px;
  }
}
@media screen and (max-width: 999px) {
  .header__link .header_link_list {
    gap: 5px;
  }
}
@media screen and (max-width: 899px) {
  .header__link .header_link_list {
    display: none;
  }
}
.header__link .header_link_list > li .header_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 60px;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__link .header_link_list > li .header_btn._nurse {
  background-color: #00be9b;
  border: 1px solid #00be9b;
}
.header__link .header_link_list > li .header_btn._associate_nurse {
  background-color: #3497ca;
  border: 1px solid #3497ca;
}
.header__link .header_link_list > li .header_btn._care_worker {
  background-color: #3d68c9;
  border: 1px solid #3d68c9;
}
.header__link .header_link_list > li .header_btn:hover {
  background-color: #ffffff;
}
.header__link .header_link_list > li .header_btn:hover._nurse {
  color: #00be9b;
}
.header__link .header_link_list > li .header_btn:hover._associate_nurse {
  color: #3497ca;
}
.header__link .header_link_list > li .header_btn:hover._care_worker {
  color: #3d68c9;
}
.header__menu_btn {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .header__menu_btn {
    width: 46px;
    height: 46px;
  }
}
.header.js-use_bg::before {
  display: block;
  content: "";
  width: 100%;
  height: 175px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgb(246, 249, 250)), to(rgba(246, 250, 242, 0)));
  background: linear-gradient(180deg, rgb(246, 249, 250) 20%, rgba(246, 250, 242, 0) 100%);
  position: absolute;
  top: -40px;
  left: 0;
}
@media screen and (max-width: 999px) {
  .header.js-use_bg::before {
    height: 100px;
  }
}
.header.js-use_bg::before, .header.js-open_menu::before {
  opacity: 1;
}
.header.js-use_bg .default, .header.js-open_menu .default {
  opacity: 1;
}
.header.js-use_bg .home, .header.js-open_menu .home {
  opacity: 0;
}

.gnav {
  width: 100%;
}
@media screen and (max-width: 999px) {
  .gnav {
    display: none;
  }
}
.gnav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.gnav__li {
  position: relative;
  height: inherit;
  text-align: center;
  display: inline-block;
}
.gnav__a {
  color: #313131;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: clamp(4px, 0.4vw, 6px);
  margin-right: clamp(4px, 0.4vw, 6px);
  padding-left: 6px;
  padding-right: 6px;
  height: 100%;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .gnav__a {
    padding-left: 3px;
    padding-right: 3px;
  }
}
.gnav__a.hover {
  color: #914d96;
}
.gnav__a._hover {
  position: relative;
}
.gnav__a:hover {
  color: #914d96;
}
.gnav__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .gnav__text {
    font-size: 1.063rem;
  }
}
@media screen and (max-width: 1198px) and (min-width: 1000px) {
  .gnav__text {
    font-size: 1rem;
  }
}
.gnav__text .maru {
  letter-spacing: -1px;
  margin: 0 -2px;
}
.gnav__sub {
  width: 100%;
  visibility: hidden;
  position: absolute;
  top: 25px;
  z-index: 99;
  padding-top: 30px;
}
.gnav__sub__container {
  min-width: 315px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  -webkit-box-shadow: 5px 5px 5px 1px rgba(215, 215, 218, 0.1);
  box-shadow: 5px 5px 5px 1px rgba(215, 215, 218, 0.1);
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 3px;
  -webkit-transition: -webkit-backdrop-filter 0.5s;
  transition: -webkit-backdrop-filter 0.5s;
  transition: backdrop-filter 0.5s;
  transition: backdrop-filter 0.5s, -webkit-backdrop-filter 0.5s;
}
.gnav__sub__container._long {
  min-width: 450px;
}
.gnav__sub .anime {
  position: relative;
  opacity: 0;
  -webkit-transform: scaleY(0.98) translateY(-10px);
  transform: scaleY(0.98) translateY(-10px);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.gnav__sub .li1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.gnav__sub .li1:not(:last-of-type) {
  border-bottom: 1px solid #d6d0d9;
  margin-bottom: 8px;
}
.gnav__sub .li1._disable > a {
  color: #bfc7ce;
  pointer-events: none;
}
.gnav__sub .li1._disable > a ._inner {
  color: #bfc7ce;
}
.gnav__sub .li1._disable > a ._inner::before {
  -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(1%) saturate(7374%) hue-rotate(185deg) brightness(80%) contrast(106%);
  filter: brightness(0) saturate(100%) invert(96%) sepia(1%) saturate(7374%) hue-rotate(185deg) brightness(80%) contrast(106%);
}
.gnav__sub .a1 {
  display: block;
  padding: 17px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}
.gnav__sub .a1:hover ._inner {
  color: #914d96;
}
.gnav__sub ._inner {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  position: relative;
  line-height: 1.4;
  font-size: 1.125rem;
  color: #333333;
}
.gnav__sub li.active > a,
.gnav__sub li > a:hover {
  font-weight: bold;
  text-decoration: none;
}
.gnav__sub .li2,
.gnav__sub .li3 {
  display: none;
}
.gnav__sub-show {
  visibility: visible;
}
.gnav__sub-show .anime {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.open_menu {
  width: 60px;
  height: 60px;
  background-color: #000000;
  border-radius: 100%;
  position: fixed;
  right: 100px;
}
@media screen and (max-width: 1599px) {
  .open_menu {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .open_menu {
    width: 46px;
    height: 46px;
  }
}

.hamburger_btn {
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .hamburger_btn {
    width: 46px;
    height: 46px;
    left: auto;
    right: 0;
    border-radius: 50%;
  }
}
@media screen and (max-width: 575px) {
  .hamburger_btn {
    right: auto;
  }
}
.hamburger_btn__inner {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 20px;
  top: 20px;
  -webkit-transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 767px) {
  .hamburger_btn__inner {
    left: 13px;
    top: 13px;
  }
}
.mm-opened .hamburger_btn__inner, .menu-opened .hamburger_btn__inner, .hamburger_btn._open .hamburger_btn__inner {
  top: 10px;
}
@media screen and (max-width: 767px) {
  .mm-opened .hamburger_btn__inner, .menu-opened .hamburger_btn__inner, .hamburger_btn._open .hamburger_btn__inner {
    top: 3px;
  }
}
.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: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
}
.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: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #ffffff;
}
.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: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger_btn__inner > span {
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 1px;
  background-color: #ffffff;
  position: absolute;
  -webkit-transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-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: 8px;
}
.hamburger_btn__inner > span:nth-child(3) {
  top: 16px;
}

.footer {
  position: relative;
  background-color: #222222;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.footer__container {
  position: relative;
  padding-top: 70px;
  padding-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .footer__container {
    padding-top: 60px;
  }
}
.footer__deco {
  width: 330px;
  position: absolute;
  top: -87px;
  right: 20px;
  pointer-events: none;
}
.footer__deco img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__deco {
    width: 280px;
    top: -57px;
  }
}
@media screen and (max-width: 576px) {
  .footer__deco {
    width: 220px;
    top: -57px;
  }
}
.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(20px, 15.67vw, 94px);
  margin-bottom: 68px;
}
@media screen and (max-width: 1399px) {
  .footer__column {
    gap: clamp(20px, 2vw, 70px);
  }
}
@media screen and (max-width: 999px) {
  .footer__column {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__column {
    display: block;
  }
}
.footer__l {
  -ms-flex-preferred-size: clamp(360px, 42.2vw, 506px);
  flex-basis: clamp(360px, 42.2vw, 506px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer__l {
    width: 100%;
  }
}
.footer__l__1 {
  padding-bottom: 19px;
  border-bottom: 1px solid #5c5c5c;
}
.footer__l__1 .logo_wrap a {
  display: inline-block;
}
.footer__l__1 .logo_wrap img {
  display: block;
}
@media screen and (max-width: 999px) {
  .footer__l__1 {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer__l__1 .logo_wrap {
    margin: 0 auto;
    width: 300px;
  }
  .footer__l__1 .logo_wrap img {
    width: 100%;
    height: auto;
  }
}
.footer__l__2 {
  padding-top: 28px;
  padding-bottom: 37px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #5c5c5c;
}
@media screen and (max-width: 999px) {
  .footer__l__2 {
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
.footer__l__2 .address {
  color: #ffffff;
  margin-bottom: 14px;
}
.footer__l__2 .address > .yubin {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .footer__l__2 .address {
    text-align: center;
    margin-bottom: 10px;
  }
}
.footer__l__2 .tell {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .footer__l__2 .tell {
    margin-bottom: 30px;
  }
}
.footer__l__2 .tell > .label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.footer__l__2 .tell > .number {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer__l__2 .tell {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .footer__l__2 .tell {
    gap: 10px;
  }
  .footer__l__2 .tell > .label {
    font-size: 1.125rem;
  }
  .footer__l__2 .tell > .number {
    font-size: 1.5rem;
  }
}
.footer__l__2 .gmap {
  border-radius: 15px;
  overflow: hidden;
  display: none;
}
.footer__l__2 .gmap iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .footer__l__2 .gmap {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .footer__l__2 .gmap {
    height: 340px;
  }
}
.footer__l__3 {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .footer__l__3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer__sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: clamp(20px, 3.31vw, 53px);
  -moz-column-gap: clamp(20px, 3.31vw, 53px);
  column-gap: clamp(20px, 3.31vw, 53px);
  row-gap: 12px;
  padding-right: 20px;
}
.footer__sitemap:not(:last-of-type) {
  margin-bottom: 12px;
}
.footer__sitemap > li {
  position: relative;
}
.footer__sitemap > li:not(:last-of-type)::after {
  display: block;
  content: "/";
  font-size: 1.063rem;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: clamp(-32px, -2.355vw, -15px);
}
.footer__sitemap a {
  color: #ffffff;
  font-size: 1.063rem;
  position: relative;
  letter-spacing: 0;
}
.footer__sitemap a.ext {
  color: #ffffff !important;
  font-weight: 400 !important;
}
.footer__sitemap a.ext::before {
  background: url("../img/icon/ext_white.webp") no-repeat !important;
  background-size: contain !important;
}
@media screen and (max-width: 767px) {
  .footer__sitemap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 0;
  }
  .footer__sitemap > li:not(:last-of-type)::after {
    font-size: 1rem;
  }
  .footer__sitemap a {
    font-size: 1rem;
  }
}
.footer__r {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
}
@media screen and (max-width: 1399px) {
  .footer__r {
    width: 100%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__r {
    display: none;
  }
}
.footer__r .gmap {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}
.footer__r .gmap iframe {
  width: 100%;
  height: 100%;
}
.footer__btn_area {
  margin-bottom: 30px;
}
.footer__btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(10px, 1.88vw, 30px);
}
.footer__btn_list > * {
  width: clamp(200px, 33%, 330px);
}
@media screen and (max-width: 678px) {
  .footer__btn_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
  .footer__btn_list > * {
    max-width: 330px;
    width: 100%;
  }
}
.footer__btn {
  display: block;
  max-width: 330px;
  min-height: 100px;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 30px 30px 10px;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.footer__btn .text {
  position: relative;
  z-index: 2;
}
.footer__btn::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 1;
}
.footer__btn::after {
  display: block;
  content: "";
  width: 320px;
  height: 100%;
  -webkit-clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  top: calc(100% - 40px);
  z-index: 0;
}
.footer__btn._nurse {
  background-color: #00be9b;
}
.footer__btn._nurse::after {
  background-color: #00b792;
}
.footer__btn._associate_nurse {
  background-color: #3497ca;
}
.footer__btn._associate_nurse::after {
  background-color: #2e8ec4;
}
.footer__btn._care_worker {
  background-color: #3d68c9;
}
.footer__btn._care_worker::after {
  background-color: #365fc3;
}
.footer__btn:hover {
  opacity: 1;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
@media screen and (max-width: 767px) {
  .footer__btn {
    padding: 20px 20px 20px 10px;
    min-height: auto;
    font-size: 1.125rem;
  }
  .footer__btn::before {
    right: 15px;
  }
}
.footer__link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px clamp(15px, 3.31vw, 35px);
}
.footer__link {
  color: #ffffff;
  border-bottom: 1px solid #727272;
  letter-spacing: 0.03em;
}
.footer__link:hover {
  border-bottom: none;
}
.footer__link._ext {
  position: relative;
  padding-right: 28px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: none;
}
.footer__link._ext > .text {
  border-bottom: 1px solid #727272;
}
.footer__link._ext::after {
  display: block;
  content: "";
  width: 28px;
  height: 100%;
  background: url("../img/icon/ext_white.webp") no-repeat;
  background-size: 20px 14px;
  background-position-x: right;
  position: absolute;
  top: 0.4em;
  right: 0;
}
.footer__copy {
  color: #ffffff;
  font-size: 0.813rem;
  text-align: center;
  padding-top: 25px;
}

.scroll_to_top {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 1585px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 40px);
  transform: translate(-50%, 40px);
  right: 0;
  bottom: 55px;
  z-index: 1000;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  text-align: right;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 0.1s, -webkit-transform 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 0.1s, transform 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 0.1s, transform 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.scroll_to_top:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
@media screen and (min-width: 821px), print {
  .scroll_to_top {
    bottom: 55px;
  }
}
@media screen and (max-width: 820px) {
  .scroll_to_top {
    padding-left: 12px;
    padding-right: 12px;
    bottom: 15px;
  }
}
.scroll_to_top._show {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.scroll_to_top._show a {
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
}
.scroll_to_top._fix .arrow {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.scroll_to_top._fix .text {
  color: #ffffff;
}
.scroll_to_top,
.scroll_to_top a {
  opacity: 0;
}
.scroll_to_top a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding-top: 10px;
}
@media screen and (max-width: 575px) {
  .scroll_to_top a::before {
    top: 15px;
  }
}
.scroll_to_top a .arrow {
  width: 17px;
}
.scroll_to_top a .text {
  text-align: center;
  color: #212121;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.scroll_to_top a .character {
  width: 47px;
}
.scroll_to_top a img {
  width: 100%;
  display: block;
}

.pc_menu {
  z-index: 10000;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  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: #ffffff;
  -webkit-box-shadow: 0 5px 8px 0 rgba(94, 111, 128, 0.2);
  box-shadow: 0 5px 8px 0 rgba(94, 111, 128, 0.2);
}
@media screen and (min-width: 1400px), print {
  .pc_menu__panel {
    padding-top: 125px;
  }
}
@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(34, 34, 34, 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;
  -ms-flex-preferred-size: 360px;
  flex-basis: 360px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1519px) {
  .pc_menu__l {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
  }
}
.pc_menu__r {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}
.pc_menu__sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  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 #222222;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  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;
}

.pc_sitemap {
  margin-bottom: 1em;
}
.pc_sitemap .title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #222222;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  -webkit-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (min-width: 1000px), print {
  .pc_sitemap .title a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 999px) {
  .pc_sitemap .title a {
    font-size: 1rem;
  }
}
.pc_sitemap .title a::before {
  content: "";
  display: block;
  background: url("../img/icon/list-point.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 22px;
  height: 34px;
  margin-right: 10px;
  margin-left: -3px;
}
.pc_sitemap .title a:hover {
  color: #00be9b;
}
.pc_sitemap .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.pc_sitemap .list {
  padding-top: 0.8em;
}
@media screen and (min-width: 1000px), print {
  .pc_sitemap .list {
    padding-left: 30px;
  }
}
.pc_sitemap .list li {
  margin-top: 0.1em;
}
.pc_sitemap .list a {
  display: inline-block;
  color: #222222;
  text-decoration: none;
  font-size: 0.938rem;
  line-height: 1.4;
  -webkit-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
}
.pc_sitemap .list a:hover {
  color: #00be9b;
}

/**************************
	drawer
*/
body.mm-wrapper--opened {
  overflow-y: hidden !important;
}

.mm-menu,
.mm-menu *,
.mm-menu::after,
.mm-menu::before {
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.mm-menu--theme-light {
  --mm-color-background: #f2f2f2;
  --mm-color-text: #222222;
  --mm-color-text-dimmed:#222222;
  --mm-color-icon: transparent;
  --mm-blocker-visibility-delay: 0;
  --mm-color-background-highlight: transparent;
}

@media screen and (max-width: 575px) {
  :root {
    --mm-min-size: 100%;
    --mm-size: 100%;
    --mm-max-size: 100%;
  }
}

.mm-wrapper--opened .mm-wrapper__blocker {
  --mm-blocker-opacity-delay: 0.1s;
  background: rgba(27, 27, 27, 0.9);
}
.mm-wrapper--opened .mm-panels,
.mm-wrapper--opened .mm-panel {
  padding: 0;
  --mm-panel-parent-offset: -100%;
}
.mm-wrapper--opened .mm-panels .mm-navbar,
.mm-wrapper--opened .mm-panel .mm-navbar {
  border-bottom: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  margin-left: 20px;
  margin-right: 25px;
}

.drawer {
  width: 490px;
  height: 95vh;
  overflow: hidden;
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 55px;
  padding-right: 100px;
  background-color: #f2f2f2;
  border-radius: 0 0 0 30px;
}
@media screen and (max-width: 1399px) {
  .drawer {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 999px) {
  .drawer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .drawer {
    width: 100%;
    border-radius: 0;
  }
}
.drawer a:not(.btn):not(.box_btn) {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.drawer a:not(.btn):not(.box_btn):hover {
  opacity: 0.8;
}
.drawer input::-webkit-input-placeholder {
  color: #bdc3c7;
}
.drawer input::-moz-placeholder {
  color: #bdc3c7;
}
.drawer input:-ms-input-placeholder {
  color: #bdc3c7;
}
.drawer input::-ms-input-placeholder {
  color: #bdc3c7;
}
.drawer input::placeholder {
  color: #bdc3c7;
}
.drawer__top {
  padding-top: 32px;
  padding-right: 0;
  margin-bottom: 18px;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .drawer__top {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}
.drawer__close_menu {
  width: 60px;
  height: 60px;
  background-color: #000000;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .drawer__close_menu {
    width: 46px;
    height: 46px;
  }
}
.drawer__bottom {
  display: block;
  padding: 0;
  overflow: visible;
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 400px) {
  .drawer__bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.drawer__bottom.mm-listitem {
  border-bottom: none !important;
}
.drawer__bottom__1.mm-listitem__text {
  padding: 5px 0;
}
.drawer .mm-navbars--top {
  border-bottom: 0 none;
  position: relative;
  z-index: 2;
}
.drawer .mm-navbars--bottom {
  border-top: 0 none;
}
.drawer .mm-btn--prev {
  -webkit-padding-end: 11px;
  padding-inline-end: 11px;
  border: none;
}
.drawer .mm-btn--prev::before {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/white.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(180deg) translate(5px, -2px);
  transform: rotate(180deg) translate(5px, -2px);
}
.drawer .mm-btn--prev .mm-btn {
  width: 30px;
}
.drawer .mm-navbar title, .drawer .mm-navbar__title {
  min-height: 70px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 20px;
}
.drawer .mm-navbar title:last-child, .drawer .mm-navbar__title:last-child {
  padding-left: 0;
  -webkit-padding-start: 0 !important;
  padding-inline-start: 0 !important;
}
.drawer__li {
  min-height: 50px;
  font-size: 1.063rem;
  position: relative;
  /**************************
  子要素
  */
}
.drawer__li::after {
  content: none;
}
.drawer__li._last {
  border-bottom: none !important;
}
.drawer__li .mm-listitem--vertical:not(.mm-listitem--opened) > .mm-panel {
  display: block;
}
.drawer__li .mm-panel .mm-btn--next {
  display: none;
}
.drawer__li > .mm-panel {
  padding-left: 30px;
}
@media screen and (max-width: 999px) {
  .drawer__li > .mm-panel {
    padding-left: 10px;
  }
}
.drawer__li > .mm-panel .a2 {
  padding-left: 40px;
  color: #333333;
}
.drawer__li .mm-listitem__text {
  padding-left: 0;
  font-weight: 700;
}
.drawer__li .mm-btn--next {
  -webkit-padding-end: 30px;
  padding-inline-end: 30px;
  border: none;
  height: 68px;
  margin-right: 10px;
}
.drawer__li .mm-btn--next::before, .drawer__li .mm-btn--next::after {
  display: block;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #222222;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  left: inherit;
  margin: auto;
  padding: 0;
  border: 0 none;
}
.drawer__li .mm-btn--next::after {
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.1s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.drawer__li .second-level .mm-btn--next {
  display: none;
}
.drawer__li .second-level ul {
  padding-left: 20px;
}
.drawer__li .second-level ul > li a {
  color: #333333;
  font-weight: 500;
}
.drawer__li.mm-listitem--opened .drawer__a,
.drawer__li .mm-listitem--opened .drawer__a {
  color: #333333;
}
.drawer__li.mm-listitem--opened .drawer__a::after,
.drawer__li .mm-listitem--opened .drawer__a::after {
  background-color: rgba(0, 190, 155, 0.5);
}
.drawer__li.mm-listitem--opened > a,
.drawer__li .mm-listitem--opened > a {
  border-bottom: none !important;
}
.drawer__li.mm-listitem--opened .mm-listitem,
.drawer__li .mm-listitem--opened .mm-listitem {
  margin-left: 0;
  margin-right: 0;
}
.drawer__li.mm-listitem--opened > .mm-btn--next::before, .drawer__li.mm-listitem--opened > .mm-btn--next::after,
.drawer__li .mm-listitem--opened > .mm-btn--next::before,
.drawer__li .mm-listitem--opened > .mm-btn--next::after {
  background-color: #333333;
  height: 2px;
}
.drawer__li.mm-listitem--opened > .mm-btn--next::after,
.drawer__li .mm-listitem--opened > .mm-btn--next::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.drawer__li .mm-listview {
  margin-bottom: 0.2em;
}
.drawer__li .mm-listitem:last-of-type {
  border-bottom: none !important;
}
.drawer__li .mm-listitem a {
  font-weight: 500;
  font-size: 1rem;
  padding: 1.2rem 0 1.2rem 0;
}
@media screen and (max-width: 400px) {
  .drawer__li .mm-listitem a {
    padding: 1.2rem 0 1.2rem 0;
  }
}
.drawer .mm-listitem {
  margin-left: 0;
  margin-right: 0;
}
.drawer .mm-listitem a:not(.btn):not(.link2) {
  border-bottom: 1px solid rgba(180, 164, 193, 0.5);
}
.drawer .mm-listitem::after {
  display: none;
}
.drawer .mm-listitem__text {
  text-overflow: initial;
  white-space: initial;
  overflow: auto;
}
.drawer__a {
  font-size: 1.063rem;
  min-height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  padding-top: 25px;
  padding-bottom: 20px;
}
.drawer__a.pointer_none {
  pointer-events: none;
}
.drawer__a._ext {
  position: relative;
}
.drawer__a._ext::before {
  content: "";
  display: inline-block;
  background: url(../img/icon/ext.webp) 0 0 no-repeat transparent;
  background-size: contain;
  width: 20px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  left: auto;
  margin: auto;
  border-radius: 0;
}
.drawer__search {
  position: relative;
  margin-bottom: 20px;
}
.drawer__search .search_input {
  overflow: initial;
  display: block;
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 0;
}
.drawer__search .search_input::after {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/search.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.drawer__search .search_input form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.drawer__search .search_input .input {
  display: block;
  width: 100%;
  height: 56px;
  max-height: 56px;
  padding: 11px 50px 10px 22px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  outline: none;
  font-size: 16px;
}
.drawer__search .search_input .input::-webkit-input-placeholder {
  color: #a9a9a9;
  font-weight: 700;
}
.drawer__search .search_input .input::-moz-placeholder {
  color: #a9a9a9;
  font-weight: 700;
}
.drawer__search .search_input .input:-ms-input-placeholder {
  color: #a9a9a9;
  font-weight: 700;
}
.drawer__search .search_input .input::-ms-input-placeholder {
  color: #a9a9a9;
  font-weight: 700;
}
.drawer__search .search_input .input::placeholder {
  color: #a9a9a9;
  font-weight: 700;
}
.drawer__search .search_input .input > div {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.drawer__search .search_input .submit_btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  max-height: 50px;
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-size: 0.938rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 26px;
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  position: absolute;
  top: 0;
  right: 0;
}
.drawer .button_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
.drawer .button_area .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

/**************************
project
*/
body {
  background-color: #ffffff;
}

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