@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 {
  opacity: 0.75;
}

input::-moz-placeholder {
  opacity: 0.75;
}

input:-ms-input-placeholder {
  opacity: 0.75;
}

input::-ms-input-placeholder {
  opacity: 0.75;
}

input::placeholder {
  opacity: 0.75;
}

input::input-placeholder {
  opacity: 0.75;
}

textarea::-webkit-input-placeholder {
  opacity: 0.75;
}

textarea::-moz-placeholder {
  opacity: 0.75;
}

textarea:-ms-input-placeholder {
  opacity: 0.75;
}

textarea::-ms-input-placeholder {
  opacity: 0.75;
}

textarea::placeholder {
  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;
}
@media screen and (max-width: 1329px) {
  body {
    padding-bottom: 50px;
  }
}

.main_content {
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .main_content {
    padding-top: 85px;
  }
}
@media screen and (max-width: 767px) {
  .main_content {
    padding-top: 85px;
  }
}
.main_content img {
  display: block;
  max-width: 100%;
}
.main_content._overflow {
  overflow: hidden;
}
.main_content .content_body {
  position: relative;
  padding-bottom: 140px;
}
@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) {
  letter-spacing: 0.12em;
}
.main_content .content_body .no_indent {
  padding-left: 0 !important;
}
.main_content .content_body p:not(.cancel),
.main_content .content_body .box .body {
  line-height: 2.25;
}
@media screen and (max-width: 999px) {
  .main_content .content_body p:not(.cancel),
  .main_content .content_body .box .body {
    line-height: 1.7;
  }
}
.main_content .content_body table td,
.main_content .content_body li {
  line-height: 1.875;
}
@media screen and (max-width: 999px) {
  .main_content .content_body table td,
  .main_content .content_body li {
    line-height: 1.7;
  }
}
.main_content .content_body h1 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
.main_content .content_body h2 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
.main_content .content_body h3 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
.main_content .content_body h4 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
.main_content .content_body h5 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
.main_content .content_body h6 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent) {
  margin-left: 1.3em;
  margin-right: 1.3em;
}
@media screen and (max-width: 767px) {
  .main_content .content_body h1 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h2 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h3 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h4 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h5 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h6 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent) {
    margin-left: 1.2em;
    margin-right: 1em;
  }
}
@media screen and (max-width: 576px) {
  .main_content .content_body h1 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h2 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h3 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h4 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h5 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent),
  .main_content .content_body h6 ~ :not(h1, h2, h3, h4, h5, h6, .no-indent) {
    margin-left: 0;
    margin-right: 0;
  }
}
.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%;
}

.wp-block-video {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.youtube {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .youtube {
    max-width: 280px;
    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;
}

.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: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", sans-serif;
  font-weight: 400;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 2.25;
  color: #1a1a1a;
}

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;
}
@media screen and (max-width: 999px) {
  .text-strong {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

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

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

.text-white {
  color: #ffffff;
}

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

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

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

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

.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: 2.25;
  }
}
@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: 2.25;
  }
}
@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: #1a1a1a;
}
.anotation._black::before {
  color: #1a1a1a;
}
.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: 20px;
    padding-right: 20px;
  }
  .sp_padding,
  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/**************************
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 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  position: relative;
  border-bottom: 4px solid #e5e5e5;
  letter-spacing: 0.1rem;
}
.main_content h2:not(.cancel):not(.fc-toolbar-title)::after,
.main_content .h2::after {
  display: block;
  content: "";
  width: clamp(30px, 8.33vw, 120px);
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgb(8, 163, 55)), color-stop(70%, rgb(102, 55, 195)));
  background: linear-gradient(90deg, rgb(8, 163, 55) 40%, rgb(102, 55, 195) 70%);
  position: absolute;
  left: 0;
  bottom: -4px;
}
@media screen and (min-width: 1200px), print {
  .main_content h2:not(.cancel):not(.fc-toolbar-title),
  .main_content .h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h2:not(.cancel):not(.fc-toolbar-title),
  .main_content .h2 {
    font-size: clamp(24px, 4vw, 30px);
  }
}
@media screen and (min-width: 768px), print {
  .main_content h2:not(.cancel):not(.fc-toolbar-title),
  .main_content .h2 {
    padding-bottom: 20px;
    margin-top: 2em;
    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 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  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: #ececec;
  border-radius: 5px;
  min-height: 50px;
  padding: 0.2em 1em 0.2em 20px;
}
@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 0.2em 20px;
    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 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  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;
  padding-left: 20px;
}
.main_content h4:not(.cancel)::before,
.main_content .h4::before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  top: -0.2rem;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 2px solid #333333;
}
@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.5rem);
  }
}
@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;
  }
}
.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 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  margin-top: calc(var(--margin-section) * 1.3);
  margin-bottom: 0.5em;
  padding-left: 3px;
  padding-right: 3px;
  padding-bottom: 10px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #333333;
}
@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);
  }
}
.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 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  margin-top: calc(var(--margin-section) * 1.3);
  margin-bottom: 0.5em;
  font-size: 1.125rem;
}
@media screen and (max-width: 999px) {
  .main_content h6:not(.cancel),
  .main_content .h6 {
    margin-top: calc(var(--margin-section) * 0.5);
  }
}

.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):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
  padding-left: 1.2em;
  letter-spacing: 0.1em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li:not(:last-of-type) {
  margin-bottom: 0.6em;
}
@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: 5px;
  height: 5px;
  background-color: #0da53b;
  border-radius: 2.5px;
  -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.4ex;
  }
}
@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;
}
.main_content ol:not(.cancel):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ol:not(.cancel) > li {
  padding-left: 2em;
  letter-spacing: 0.1em;
  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 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) ".";
  color: #0da53b;
  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 li:not(:last-of-type) {
  margin-bottom: 0.4em;
}
.main_content .link_list li::before {
  display: none !important;
}

.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: 1000px;
  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: 2.025;
  }
}
@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: #1a1a1a;
  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: #262626;
  background-color: #e2e2e2;
  position: relative;
  border: 1px solid #bfbfbf;
}
.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: #e2e2e2;
}
.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: #262626;
  background-color: #f4f4f4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #bfbfbf;
}
@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: 240px;
  }
}
@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: #262626;
  background-color: #ffffff;
  border: 1px solid #bfbfbf;
}
.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: 0 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 0 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 0 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 0;
}
.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 0 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: 0 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 0 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: 1000px !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: 0 0 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 0 0 !important;
  }
  .sp_row_to_column.sp_row_to_column tbody tr:first-child th {
    border-radius: 0 0 0 0;
  }
  .sp_row_to_column.sp_row_to_column tbody tr:first-child td:last-child {
    border-radius: 0 0 0 0;
  }
  .sp_row_to_column tbody td:not(:last-of-type) {
    border-right: 1px solid #bfbfbf !important;
    border-left: 1px solid #bfbfbf !important;
    border-bottom: 1px solid #bfbfbf !important;
  }
  .sp_row_to_column tbody th {
    border-right: 1px solid #bfbfbf !important;
    border-bottom: 1px solid #bfbfbf !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: #808080;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.url {
  text-decoration: underline;
  color: #808080;
  word-break: break-all;
}
.url:hover, .url:focus, .url:active {
  color: #808080;
  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: #808080;
  padding-left: 26px;
  position: relative;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  text-decoration: underline;
}
.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") no-repeat;
  background-size: contain;
  width: 12px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 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;
  left: 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: #808080;
  padding-left: 26px;
  position: relative;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  text-decoration: underline;
}
.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") no-repeat;
  background-size: contain;
  width: 12px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 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;
  left: 0;
}

/**************************
link
*/
.link {
  display: inline-block;
  line-height: 1.4;
  color: #808080;
  padding-left: 26px;
  position: relative;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
  text-decoration: underline;
}
.link::before {
  content: "";
  display: inline-block;
  background: url("/common/img/icon/arrow/link.webp") no-repeat;
  background-size: contain;
  width: 12px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.link:hover {
  opacity: 0.6;
}
.link:hover {
  color: #808080;
  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);
}

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

## - .btn - 汎用ボタン

*/
.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 360px;
  min-height: 100px;
  font-size: 1rem;
  border-radius: 5px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  -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: #1a1a1a;
  text-decoration: none !important;
  text-align: left;
  padding: 20px 80px 20px clamp(20px, 3.75vw, 60px);
  background-color: #f7f7f7;
  border: 1px solid #ffffff;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  line-height: 1.5;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn::after {
  display: block;
  content: "";
  width: 42px;
  height: 42px;
  background: url("/common/img/icon/arrow/btn_arrow.webp") no-repeat;
  background-size: contain;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  left: auto;
  margin: auto;
}
@media screen and (max-width: 999px) {
  .btn {
    min-width: 320px;
    min-height: 80px;
    padding: 10px 60px 10px clamp(20px, 3.75vw, 60px);
  }
  .btn::after {
    width: 35px;
    height: 35px;
    right: 15px;
  }
}
.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 {
  opacity: 1;
  border: 1px solid #d9d9d9;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.root .btn_box._submit_btn {
  position: relative;
}
.root .btn_box._submit_btn::after {
  display: block;
  content: "";
  width: 12px;
  height: 9px;
  background: url("/common/img/icon/arrow/white_arrow.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 39px;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 2;
}
.root .btn-submit,
.root button.btn,
.root input.btn {
  display: block;
  width: 320px;
  max-width: 320px;
  min-height: 80px;
  border-radius: 3px;
  color: #ffffff;
  background-color: #1a1a1a;
  text-align: center;
  font-size: 1.125rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 30px 30px 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  text-align: center;
  cursor: pointer;
}
.root .btn-submit:hover,
.root button.btn:hover,
.root input.btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 576px) {
  .root .btn-submit,
  .root button.btn,
  .root input.btn {
    width: 100%;
    min-width: auto;
  }
}

.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);
  }
  .btn_list.column2 .btn, .btn_list.column3 .btn {
    max-width: 100% !important;
    min-width: 100% !important;
  }
}
@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;
}
.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;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .main_flex_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.main_flex_area > * {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.main_column {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  max-width: 880px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .main_column {
    max-width: none;
    margin-bottom: 40px;
  }
}

.sub_column {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 260px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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%);
  }
}
.sub_column .sidebar_tab_cate .head {
  margin-bottom: 40px;
}
.sub_column .sidebar_tab_cate .head .title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.3;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 999px) {
  .sub_column .sidebar_tab_cate .head {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .sub_column .sidebar_tab_cate .sidebar_tab_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.sub_column .sidebar_tab_cate .sidebar_tab_list li:not(:last-of-type) {
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 999px) {
  .sub_column .sidebar_tab_cate .sidebar_tab_list li:not(:last-of-type) {
    border-bottom: none;
  }
}
.sub_column .sidebar_tab_cate .sidebar_tab_list .tab {
  display: block;
  min-height: 60px;
  line-height: 60px;
  padding: 0 13px 0 23px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 999px) {
  .sub_column .sidebar_tab_cate .sidebar_tab_list .tab {
    height: 40px;
    border-radius: 3px;
    border: 1px solid #e1e1e1;
    background-color: transparent;
    font-size: 0.875rem;
    padding: 0.5em 1em;
    min-height: auto;
    line-height: unset;
  }
}
.sub_column .sidebar_tab_cate .sidebar_tab_list .tab.producer {
  color: #08a337;
}
.sub_column .sidebar_tab_cate .sidebar_tab_list .tab.operator {
  color: #6634ca;
}
.sub_column .sidebar_tab_cate .sidebar_tab_list .tab.important {
  color: #db452d;
}
.sub_column .sidebar_tab_cate .sidebar_tab_list .tab.event {
  color: #2379da;
}
.sub_column .sidebar_tab_cate .sidebar_tab_list .tab.whole {
  color: #2379da;
}
.sub_column .sidebar_tab_cate .sidebar_tab_list .tab._selected::before {
  display: block;
  content: "";
  width: 2px;
  height: 15px;
  background-color: #404040;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 999px) {
  .sub_column .sidebar_tab_cate .sidebar_tab_list .tab._selected {
    background-color: #eaeaea;
  }
  .sub_column .sidebar_tab_cate .sidebar_tab_list .tab._selected::before {
    display: none;
  }
}

.breadcrumbs_area._sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .breadcrumbs_area._sp {
    display: block;
  }
  .breadcrumbs_area._pc {
    display: none;
  }
}

.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-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;
  letter-spacing: 0.05rem;
  font-size: 0.938rem;
}
.breadcrumbs li:last-child,
.bread_crumb li:last-child {
  margin-left: 0;
  margin-right: 0;
  color: #ffffff;
  opacity: 0.5;
}
@media screen and (max-width: 999px) {
  .breadcrumbs li:last-child,
  .bread_crumb li:last-child {
    color: #1a1a1a;
    opacity: 0.5;
  }
}
.breadcrumbs li:not(:last-of-type),
.bread_crumb li:not(:last-of-type) {
  padding-right: 2.3em;
  position: relative;
}
.breadcrumbs li:not(:last-of-type)::after,
.bread_crumb li:not(:last-of-type)::after {
  display: inline-block;
  content: "";
  width: 11px;
  height: 20px;
  background: url("/common/img/icon/slash.webp") no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.7rem;
}
@media screen and (max-width: 999px) {
  .breadcrumbs li:not(:last-of-type)::after,
  .bread_crumb li:not(:last-of-type)::after {
    background: url("/common/img/icon/slash_black.webp") no-repeat;
    background-size: contain;
  }
}
@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: #ffffff;
  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: 999px) {
  .breadcrumbs li a,
  .bread_crumb li a {
    color: #1a1a1a;
  }
}
@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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px clamp(20px, 5vw, 45px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  min-height: 80px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 10px;
  padding: 25px 50px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  border: 1px solid #ffffff;
  background-color: #f6f6f6;
}
@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;
    padding: 10px 50px;
  }
}
.pagelink_area ul > li a {
  color: #1a1a1a;
  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::before {
  -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: 22px;
  height: 22px;
  -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(3px);
  transform: translateY(3px);
}
@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 {
  background-color: #eeeeee;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box .box_head {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  padding-top: clamp(28px, 3.8vw, 38px);
  padding-bottom: clamp(10px, 1.8vw, 18px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: clamp(25px, 3vw, 30px);
  border-bottom: 2px solid #dddddd;
}
.box .box_body {
  padding-top: clamp(20px, 3vw, 30px);
  padding-bottom: clamp(30px, 5vw, 60px);
}

/**************************
お問い合わせパーツ
*/
.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.newsline_list .newsline {
  background-color: #ffffff;
  border-radius: 5px;
  min-height: 120px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .newsline_list .newsline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 5px 20px;
  }
}
.newsline_list .newsline__head {
  width: 160px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 10px;
  text-align: center;
  border-right: 1px solid #f5f5f5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  .newsline_list .newsline__head {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid #f5f5f5;
  }
}
.newsline_list .newsline__date {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1;
  margin-bottom: 9px;
}
@media screen and (max-width: 576px) {
  .newsline_list .newsline__date {
    margin-bottom: 5px;
  }
}
.newsline_list .newsline__cate {
  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;
  gap: 7px;
}
.newsline_list .newsline__cate .label {
  line-height: 1;
  font-size: 0.875rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-left: 9px;
}
.newsline_list .newsline__cate .label::before {
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.newsline_list .newsline__cate .label.producer {
  color: #08a337;
}
.newsline_list .newsline__cate .label.producer::before {
  background-color: #08a337;
}
.newsline_list .newsline__cate .label.operator {
  color: #6634ca;
}
.newsline_list .newsline__cate .label.operator::before {
  background-color: #6634ca;
}
.newsline_list .newsline__cate .label.important {
  color: #db452d;
}
.newsline_list .newsline__cate .label.important::before {
  background-color: #db452d;
}
.newsline_list .newsline__cate .label.event {
  color: #2379da;
}
.newsline_list .newsline__cate .label.event::before {
  background-color: #2379da;
}
@media screen and (max-width: 576px) {
  .newsline_list .newsline__cate {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.newsline_list .newsline__body {
  padding: 10px 30px;
}
@media screen and (max-width: 576px) {
  .newsline_list .newsline__body {
    padding: 10px 0;
  }
}
.newsline_list .newsline__ex {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  color: #1a1a1a !important;
  text-decoration: none !important;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.newsline_list .newsline:hover .newsline__ex {
  color: #0da53b !important;
}
.newsline_list .newsline._disable {
  pointer-events: none;
}
.newsline_list .newsline._disable::after {
  display: none;
}

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

.content_header {
  border-radius: 10px;
  padding: 0 30px;
  max-width: 1440px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 999px) {
  .content_header {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

.back_link {
  color: #262626;
  position: relative;
  padding-left: 60px;
  text-decoration: none !important;
}
.back_link::before {
  display: block;
  content: "";
  width: 42px;
  height: 42px;
  background: url("/common/img/icon/arrow/btn_arrow.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.index_btn_colun {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: clamp(20px, 3.62vw, 58px);
  -moz-column-gap: clamp(20px, 3.62vw, 58px);
  column-gap: clamp(20px, 3.62vw, 58px);
  row-gap: clamp(30px, 5vw, 80px);
  margin-top: 120px;
}
@media screen and (max-width: 1299px) {
  .index_btn_colun {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .index_btn_colun {
    margin-top: 80px;
  }
}
@media screen and (max-width: 999px) {
  .index_btn_colun {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .index_btn_colun {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}
@media screen and (max-width: 576px) {
  .index_btn_colun {
    grid-template-columns: repeat(1, 1fr);
  }
}

.index_btn {
  display: block;
  max-width: 360px;
  border: 2px solid #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(192, 192, 192, 0.2);
  box-shadow: 0px 10px 30px 0px rgba(192, 192, 192, 0.2);
  border-radius: 3px;
  text-decoration: none !important;
  margin: 0 auto;
}
.index_btn__img {
  display: block;
  aspect-ratio: 356/240;
  overflow: hidden;
}
.index_btn__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 3px 3px 0 0;
}
.index_btn__text {
  display: block;
  background-color: #f7f7f7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 23px 80px 23px 40px;
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
}
.index_btn__text::after {
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  background: url("/common/img/icon/arrow/btn_arrow_s.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  left: auto;
  margin: auto;
}
@media screen and (max-width: 999px) {
  .index_btn__text {
    padding: 20px 65px 20px 30px;
    font-size: 1rem;
  }
  .index_btn__text::after {
    right: 20px;
  }
}
/**************************
一覧画面
*/
.case_study_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 4.375vw, 70px) clamp(20px, 5vw, 80px);
}
@media screen and (min-width: 1000px), print {
  .case_study_list {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1599px) {
  .case_study_list {
    gap: clamp(30px, 4.375vw, 70px) clamp(20px, 2.6vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .case_study_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .case_study_list > * {
    width: 100%;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }
}

.case_study_btn {
  max-width: 560px;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  aspect-ratio: 560/400;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  padding: 0 clamp(10px, 1.25vw, 20px) clamp(45px, 3.43vw, 55px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}
.case_study_btn__unpublished {
  display: none;
  position: absolute;
  right: 32px;
  bottom: 30px;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .case_study_btn__unpublished {
    right: 22px;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .case_study_btn__unpublished {
    right: 15px;
    bottom: 15px;
  }
}
.case_study_btn._unpublished {
  pointer-events: none;
}
.case_study_btn._unpublished .case_study_btn__unpublished {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.case_study_btn._unpublished .case_study_btn__unpublished__icon {
  margin-right: 10px;
  width: 24px;
}
.case_study_btn._unpublished .case_study_btn__unpublished__icon img {
  width: 100%;
}
.case_study_btn._unpublished .case_study_btn__unpublished__text {
  line-height: 1;
  color: #ffffff;
}
.case_study_btn._unpublished .case_study_btn__img img {
  opacity: 0.5;
}
.case_study_btn._unpublished .case_study_btn__arrow {
  display: none;
}
.case_study_btn__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #737373;
}
.case_study_btn__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: -webkit-transform 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: transform 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: transform 0.2s cubic-bezier(0.47, 0, 0.745, 0.715), -webkit-transform 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  width: 100%;
  height: 100%;
}
.case_study_btn__num {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1;
  padding: 14px 8px 14px 10px;
  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;
}
.case_study_btn__text_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-right: 65px;
  padding-left: clamp(5px, 1.25vw, 20px);
}
@media screen and (max-width: 767px) {
  .case_study_btn__text_wrap {
    padding-right: clamp(5px, 1.25vw, 20px);
  }
}
.case_study_btn__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  background-color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(18px, 2.25vw, 2.25rem);
  padding: 0 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.case_study_btn__title ._inner {
  display: block;
  color: #000000;
  background: -webkit-gradient(linear, left top, right top, from(rgb(9, 105, 41)), to(rgb(110, 164, 53)));
  background: linear-gradient(90deg, rgb(9, 105, 41) 0%, rgb(110, 164, 53) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}
.case_study_btn__caption {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.667;
  font-size: clamp(14px, 1.12vw, 1.125rem);
}
.case_study_btn__arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 32px;
  bottom: 30px;
}
@media screen and (max-width: 999px) {
  .case_study_btn__arrow {
    right: 22px;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .case_study_btn__arrow {
    width: 30px;
    height: 30px;
    right: 15px;
    bottom: 15px;
  }
}
.case_study_btn:hover {
  opacity: 1 !important;
}
.case_study_btn:hover .case_study_btn__title ._inner {
  background: -webkit-gradient(linear, left top, right top, from(rgb(110, 164, 53)), to(rgb(9, 105, 41)));
  background: linear-gradient(90deg, rgb(110, 164, 53) 0%, rgb(9, 105, 41) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.case_study_btn:hover .case_study_btn__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.case_study_btn ~ .check_list {
  margin-top: 25px;
  padding-left: clamp(15px, 2.5vw, 40px);
  border-left: 3px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .case_study_btn ~ .check_list {
    margin-top: 15px;
  }
}

/**************************
詳細画面
*/
.content_body._case_study {
  padding-bottom: 0;
}

.case_study,
.editor-styles-wrapper {
  margin-top: 63px;
}
@media screen and (max-width: 999px) {
  .case_study,
  .editor-styles-wrapper {
    margin-top: 30px;
  }
}
.case_study h1 ~ :not(h1, h2, h3, h4, h5, h6),
.case_study h2 ~ :not(h1, h2, h3, h4, h5, h6),
.case_study h3 ~ :not(h1, h2, h3, h4, h5, h6),
.case_study h4 ~ :not(h1, h2, h3, h4, h5, h6),
.case_study h5 ~ :not(h1, h2, h3, h4, h5, h6),
.case_study h6 ~ :not(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper h1 ~ :not(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper h2 ~ :not(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper h3 ~ :not(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper h4 ~ :not(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper h5 ~ :not(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper h6 ~ :not(h1, h2, h3, h4, h5, h6) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media screen and (max-width: 767px) {
  .case_study h1 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h2 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h3 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h4 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h5 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h6 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h1 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h2 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h3 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h4 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h5 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h6 ~ :not(h1, h2, h3, h4, h5, h6) {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 576px) {
  .case_study h1 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h2 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h3 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h4 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h5 ~ :not(h1, h2, h3, h4, h5, h6),
  .case_study h6 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h1 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h2 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h3 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h4 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h5 ~ :not(h1, h2, h3, h4, h5, h6),
  .editor-styles-wrapper h6 ~ :not(h1, h2, h3, h4, h5, h6) {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.case_study ul li::before,
.editor-styles-wrapper ul li::before {
  background-color: #d69917 !important;
}
.case_study .pagelink_list,
.editor-styles-wrapper .pagelink_list {
  background-color: #eeeeee;
}
.case_study__h3,
.editor-styles-wrapper__h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  background-color: #ffffff;
  font-size: clamp(24px, 2.5vw, 2.5rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 32px;
  margin-top: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .case_study__h3,
  .editor-styles-wrapper__h3 {
    margin-bottom: 20px;
    min-height: 30px;
  }
}
.case_study__h4,
.editor-styles-wrapper__h4 {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 40px;
  background-color: #f4f4f4;
  padding-right: 15px;
  padding-left: 15px;
  letter-spacing: 0.08em;
}
.case_study__h4:first-of-type,
.editor-styles-wrapper__h4:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 999px) {
  .case_study__h4,
  .editor-styles-wrapper__h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    min-height: 30px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.case_study__head,
.editor-styles-wrapper__head {
  margin-bottom: 30px;
}
.case_study__body,
.editor-styles-wrapper__body {
  position: relative;
  padding-bottom: 140px;
}
@media screen and (max-width: 576px) {
  .case_study__body::before,
  .editor-styles-wrapper__body::before {
    display: none;
  }
}
.case_study__title,
.editor-styles-wrapper__title {
  padding-left: clamp(20px, 2.5vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin-bottom: 35px;
}
@media screen and (max-width: 999px) {
  .case_study__title,
  .editor-styles-wrapper__title {
    margin-bottom: 25px;
  }
}
.case_study__title::before,
.editor-styles-wrapper__title::before {
  display: block;
  content: "";
  width: 6px;
  height: calc(100% - clamp(5px, 2.55vw, 15px));
  background-color: #333333;
  position: absolute;
  bottom: 0;
  left: 0;
}
.case_study__title .main,
.editor-styles-wrapper__title .main {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 3rem;
  font-size: clamp(28px, 3vw, 3rem);
  line-height: 1.5;
  margin-bottom: 8px;
}
.case_study__title .sub,
.editor-styles-wrapper__title .sub {
  font-size: 1rem;
  font-size: clamp(14px, 1vw, 1rem);
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}
.case_study__title .sub br,
.editor-styles-wrapper__title .sub br {
  display: none;
}
.case_study__main_image_wrap,
.editor-styles-wrapper__main_image_wrap {
  aspect-ratio: 1200/700;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: clamp(20px, 3.7vw, 40px) clamp(20px, 6.25vw, 100px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  margin-bottom: 15px;
  position: relative;
}
.case_study__main_image_wrap:before,
.editor-styles-wrapper__main_image_wrap:before {
  display: block;
  content: "";
  width: 100%;
  height: 70%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), color-stop(20%, rgb(0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 70%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.8;
}
.case_study__explanation,
.editor-styles-wrapper__explanation {
  color: #ffffff;
  line-height: 1.875;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1000px), print {
  .case_study__explanation,
  .editor-styles-wrapper__explanation {
    font-size: 1.063rem;
  }
}
.case_study__profile_row,
.editor-styles-wrapper__profile_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(25px, 5vw, 90px);
}
.case_study__profile_row .profile,
.editor-styles-wrapper__profile_row .profile {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 460px;
  flex-basis: 460px;
}
.case_study__profile_row .profile__img,
.editor-styles-wrapper__profile_row .profile__img {
  margin-bottom: 10px;
  padding-top: 12px;
}
@media screen and (max-width: 999px) {
  .case_study__profile_row .profile__img,
  .editor-styles-wrapper__profile_row .profile__img {
    padding-top: 0;
    margin-top: 10px;
  }
}
.case_study__profile_row .profile__name,
.editor-styles-wrapper__profile_row .profile__name {
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.case_study__profile_row .profile__block:not(:last-of-type),
.editor-styles-wrapper__profile_row .profile__block:not(:last-of-type) {
  margin-bottom: 15px;
}
.case_study__profile_row .profile__block__title,
.editor-styles-wrapper__profile_row .profile__block__title {
  font-size: 0.938rem;
  font-weight: 700;
  border-left: 2px solid #333333;
  line-height: 1.2;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 5px;
}
.case_study__profile_row .profile__block__content,
.editor-styles-wrapper__profile_row .profile__block__content {
  font-size: 0.938rem;
  padding-left: 20px;
  color: #8c8c8c;
  letter-spacing: 0.12em;
  line-height: 1.333;
}
.case_study__profile_row .profile__block__content p,
.editor-styles-wrapper__profile_row .profile__block__content p {
  font-size: 0.938rem !important;
  letter-spacing: 0.12em !important;
  line-height: 1.333 !important;
}
@media screen and (max-width: 999px) {
  .case_study__profile_row,
  .editor-styles-wrapper__profile_row {
    display: block;
  }
}
.case_study .set > *:first-child,
.editor-styles-wrapper .set > *:first-child {
  margin-bottom: 0 !important;
}
.case_study .set img,
.editor-styles-wrapper .set img {
  padding-top: 12px;
}
@media screen and (max-width: 999px) {
  .case_study .set img,
  .editor-styles-wrapper .set img {
    padding-top: 10px;
  }
}
.case_study .case_study_panel,
.editor-styles-wrapper .case_study_panel {
  background-color: #ffffff;
  padding: 35px clamp(20px, 6.25vw, 100px) clamp(25px, 4.6vw, 75px);
}
.case_study .case_study_panel:not(:last-of-type),
.editor-styles-wrapper .case_study_panel:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .case_study .case_study_panel:not(:last-of-type),
  .editor-styles-wrapper .case_study_panel:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.case_study .case_study_panel p,
.editor-styles-wrapper .case_study_panel p {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.case_study .case_study_panel__head,
.editor-styles-wrapper .case_study_panel__head {
  margin-bottom: 37px;
  margin-bottom: clamp(20px, 2.31vw, 37px);
}
@media screen and (max-width: 999px) {
  .case_study .case_study_panel__head,
  .editor-styles-wrapper .case_study_panel__head {
    margin-bottom: 20px;
  }
}
.case_study .case_study_panel__title,
.editor-styles-wrapper .case_study_panel__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 2.5rem);
  letter-spacing: 0.01rem;
  line-height: 1.5;
  border-bottom: 1px solid #333333;
  padding-bottom: 13px;
}
.case_study .case_study_panel__body,
.editor-styles-wrapper .case_study_panel__body {
  line-height: 2;
}

.about_exp {
  padding-top: 2.75rem;
}
.about_exp .green_text {
  color: #20a61d;
}

.business_area {
  overflow: hidden;
}
.business_area__1 {
  padding-bottom: 6.25rem;
}
.business_area__1__head {
  text-align: center;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 575px) {
  .business_area__1__head {
    margin-bottom: 2rem;
  }
}
.business_area__1__head h2 {
  text-align: center;
  margin-bottom: 0.9rem;
}
.business_area__1__head h2 img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1259px) {
  .business_area__1__head h2 img {
    width: clamp(308px, 33vw, 420px);
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .business_area__1__head h2 img {
    width: 252px;
  }
}
.business_area__1__head .en {
  display: block;
  margin: 0 auto !important;
}
.business_area__1 .illust_wrap {
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 575px) {
  .business_area__1 .illust_wrap {
    margin-bottom: 4rem;
  }
}
.business_area__1 .illust_wrap .illust {
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .business_area__1 .illust_wrap .illust {
    width: 425px;
    height: auto;
  }
}
@media screen and (max-width: 475px) {
  .business_area__1 .illust_wrap .illust {
    width: 300px;
    height: auto;
  }
}
.business_area__1 .illust_wrap .text_box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: clamp(20px, 6vw, 80px);
  -moz-column-gap: clamp(20px, 6vw, 80px);
  column-gap: clamp(20px, 6vw, 80px);
}
@media screen and (max-width: 699px) {
  .business_area__1 .illust_wrap .text_box {
    -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;
    row-gap: 40px;
  }
}
.business_area__1 .illust_wrap .text_box img {
  max-width: none;
}
@media screen and (max-width: 699px) {
  .business_area__1 .illust_wrap .text_box .text_1 {
    width: 616px;
    height: auto;
  }
}
@media screen and (max-width: 475px) {
  .business_area__1 .illust_wrap .text_box .text_1 {
    width: 385px;
  }
}
@media screen and (max-width: 425px) {
  .business_area__1 .illust_wrap .text_box .text_1 {
    width: 308px;
  }
}
@media screen and (max-width: 699px) {
  .business_area__1 .illust_wrap .text_box .text_2 {
    width: 452px;
    height: auto;
  }
}
@media screen and (max-width: 475px) {
  .business_area__1 .illust_wrap .text_box .text_2 {
    width: 283px;
  }
}
@media screen and (max-width: 425px) {
  .business_area__1 .illust_wrap .text_box .text_2 {
    width: 226px;
  }
}
.business_area__1 .worry_wrap .title_wrap {
  position: relative;
  margin-bottom: 3.75rem;
  text-align: center;
}
.business_area__1 .worry_wrap .title_wrap .ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(20px, 3vw, 36px);
  position: relative;
  z-index: 20;
  color: #191919;
}
.business_area__1 .worry_wrap .title_wrap .qmark {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .business_area__1 .worry_wrap .title_wrap .qmark {
    width: 55px;
    height: auto;
  }
}
.business_area__1 .worry_list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3.5vw, 50px);
}
@media screen and (max-width: 575px) {
  .business_area__1 .worry_list {
    grid-template-columns: 1fr;
  }
}
.business_area__1 .worry_list > li {
  background-color: #ebebeb;
  border-radius: 3px;
  padding: clamp(20px, 3.5vw, 45px) clamp(15px, 3vw, 40px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 340px;
  position: relative;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 999px) {
  .business_area__1 .worry_list > li {
    min-height: 260px;
  }
}
@media screen and (max-width: 575px) {
  .business_area__1 .worry_list > li {
    min-height: 200px;
  }
}
.business_area__1 .worry_list > li .icon_wrap {
  margin: 0 auto 1.55rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business_area__1 .worry_list > li .icon_wrap {
    margin: 0 auto 1rem;
  }
}
.business_area__1 .worry_list > li .icon_wrap img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .business_area__1 .worry_list > li .icon_wrap img {
    width: clamp(70px, 11.7vw, 90px);
    height: auto;
  }
}
@media screen and (max-width: 999px) {
  .business_area__1 .worry_list > li .text {
    font-size: 0.938rem;
    text-align: center;
  }
}
.business_area__2 {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4.2rem;
  overflow: hidden;
  color: #ffffff;
}
.business_area__2 .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.business_area__2__head {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}
.business_area__2__head .icon {
  display: block;
  margin: 0 auto 22px;
}
@media screen and (max-width: 699px) {
  .business_area__2__head .icon {
    width: 12px;
    height: auto;
    margin: 0 auto 12px;
  }
}
.business_area__2__head .title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.4;
}
.business_area__2__body {
  position: relative;
}
.business_area__2__body .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 799px) {
  .business_area__2__body .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.business_area__2__body .text_wrap {
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 1.25rem;
  padding-left: clamp(20px, 4vw, 80px);
  padding-right: clamp(20px, 3vw, 35px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 799px) {
  .business_area__2__body .text_wrap {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }
  .business_area__2__body .text_wrap > p {
    line-height: 2 !important;
  }
}
.business_area__2__body .img_wrap {
  width: 50%;
  padding-left: clamp(20px, 3.5vw, 60px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 799px) {
  .business_area__2__body .img_wrap {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 999px) {
  .business_area__2__body .img_wrap .illust {
    width: 340px;
    height: auto;
  }
}
@media screen and (max-width: 799px) {
  .business_area__2__body .img_wrap .illust {
    margin: 0 auto;
  }
}

.merit_area {
  padding-top: 7.5rem;
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .merit_area {
    padding-top: 6rem;
    padding-bottom: 7.5rem;
  }
}
.merit_area__head {
  position: relative;
  margin-bottom: 5.6rem;
}
.merit_area__head .ja {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #191919;
  line-height: 1.5;
  font-size: clamp(20px, 3vw, 36px);
  text-align: center;
  position: relative;
  z-index: 20;
}
.merit_area__head .ja .text_wrap {
  display: inline-block;
}
.merit_area__head .en {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .merit_area__head .en {
    width: 435px;
    height: auto;
  }
}
@media screen and (max-width: 475px) {
  .merit_area__head .en {
    width: 348px;
  }
}
.merit_area__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 39px) clamp(20px, 3.5vw, 60px);
}
@media screen and (max-width: 849px) {
  .merit_area__list {
    grid-template-columns: 1fr;
  }
}
.merit_area__list > li {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 35px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.merit_area__list .icon_wrap {
  margin-bottom: 22px;
}
.merit_area__list .icon_wrap .icon {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 849px) {
  .merit_area__list .icon_wrap {
    margin-bottom: 12px;
  }
  .merit_area__list .icon_wrap .icon {
    width: 70px;
    height: auto;
  }
}
.merit_area__list .point {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #19ab34;
  display: block;
  margin-bottom: 5px;
}
.merit_area__list .title {
  font-size: clamp(18px, 2vw, 20px);
  color: #262626;
  padding-bottom: 1.875rem;
  margin-bottom: 1.4rem;
  position: relative;
  line-height: 1.4;
}
.merit_area__list .title::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #333333;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 849px) {
  .merit_area__list .title {
    padding-bottom: 1.4rem;
  }
}
.merit_area__list .text {
  padding-left: 4px;
}
@media screen and (max-width: 999px) {
  .merit_area__list .text {
    font-size: 0.938rem;
  }
}

.goals_area .text_wrap {
  position: relative;
  text-align: center;
}
.goals_area .text_wrap .ja {
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 899px) {
  .goals_area .text_wrap .ja._producer {
    width: 624px;
    height: auto;
  }
}
@media screen and (max-width: 699px) {
  .goals_area .text_wrap .ja._producer {
    width: 300px;
  }
}
@media screen and (max-width: 899px) {
  .goals_area .text_wrap .ja._operator {
    width: 612px;
    height: auto;
  }
}
@media screen and (max-width: 699px) {
  .goals_area .text_wrap .ja._operator {
    width: 320px;
  }
}
.goals_area .text_wrap .en {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media screen and (max-width: 999px) {
  .goals_area .text_wrap .en {
    top: -85px;
    width: 470px;
    height: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 699px) {
  .goals_area .text_wrap .en {
    top: -65px;
  }
}
@media screen and (max-width: 575px) {
  .goals_area .text_wrap .en {
    width: 344px;
    height: auto;
  }
}

.event_h2 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.4;
  padding-left: clamp(20px, 3vw, 30px);
  position: relative;
  margin-top: 2em;
  margin-bottom: 0.75em;
}
.event_h2::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: calc(100% - 6px);
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.event_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(20px, 5.5vw, 80px);
  -moz-column-gap: clamp(20px, 5.5vw, 80px);
  column-gap: clamp(20px, 5.5vw, 80px);
  color: #191919;
  padding-top: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(30px, 5vw, 50px);
}
@media screen and (max-width: 767px) {
  .event_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0;
  }
}
.event_info .info_box {
  padding-top: 20px;
}
.event_info .info_row {
  min-height: 140px;
  position: relative;
}
.event_info .info_row:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #6a6a6a 2px, transparent 2px);
  background-size: 5px 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.event_info .info_row_head {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 10px 5px 20px 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px dotted #595959;
}
.event_info .info_row_head .icon {
  display: block;
}
.event_info .info_row_head .title {
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.event_info .info_row_body {
  padding: clamp(15px, 2.5vw, 30px) 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.9;
  letter-spacing: 0.12em;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(15px, 1.6vw, 16px);
}
.event_info .info_row_body .date {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.5;
}
.event_info .info_row_body .date .date_text {
  font-size: clamp(15px, 1.6vw, 16px);
  margin-right: 9px;
  margin-left: 2px;
}
.event_info .info_row_body .time {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: clamp(17px, 2.4vw, 24px);
  line-height: 1.5;
}
.event_info .info_row_body .place {
  font-size: clamp(17px, 2.4vw, 24px);
  line-height: 1.5;
}
.event_info .info_row_body .address {
  margin-bottom: 1rem;
}
.event_info .info_row_body .text {
  line-height: 1.5;
  font-size: clamp(15px, 1.6vw, 16px);
}
.event_info .person_box {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 1.1rem;
}
.event_info .person_box > .inner {
  width: clamp(500px, 35vw, 560px);
  min-height: 280px;
  background-color: #ffffff;
  padding: 10px clamp(20px, 3vw, 39px) 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .event_info .person_box > .inner {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}
.event_info .person_box .person_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding-bottom: 11px;
  position: relative;
}
.event_info .person_box .person_head::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #7f7f7f 2px, transparent 2px);
  background-size: 5px 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.event_info .person_box .person_body {
  gap: clamp(15px, 2vw, 40px);
  padding-top: 1.25rem;
}
@media screen and (min-width: 577px), print {
  .event_info .person_box .person_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.event_info .person_box .person_body .icon_wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .event_info .person_box .person_body .icon_wrap {
    margin: 0 auto 20px;
  }
}
.event_info .person_box .person_body .profile {
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .event_info .person_box .person_body .profile {
    text-align: center;
  }
}
.event_info .person_box .person_body .profile .text {
  margin-bottom: 10px;
}
.event_info .person_box .person_body .profile .name {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
}

.circle_icon {
  display: block;
  width: 100%;
  max-width: 81px;
  max-height: 81px;
  background-color: #ffffff;
  border-radius: 100%;
}
.circle_icon img {
  width: 100%;
  height: 100%;
}

.fixed_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 190px;
  z-index: 10;
}
@media screen and (max-width: 1329px) {
  .fixed_btn_area {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .fixed_btn_area > * {
    width: 50%;
  }
}
.fixed_btn_area > * {
  -ms-flex-item-align: end;
  align-self: end;
}
.fixed_btn_area .fixed_btn {
  display: block;
  width: 60px;
  height: 240px;
  color: #ffffff;
  font-size: 1.125rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 10px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  letter-spacing: 0.2rem;
  cursor: pointer;
}
@media screen and (max-width: 1329px) {
  .fixed_btn_area .fixed_btn {
    width: 100%;
    height: 50px;
    -webkit-writing-mode: unset;
    -ms-writing-mode: unset;
    writing-mode: unset;
    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-top: 1px solid #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .fixed_btn_area .fixed_btn {
    font-size: 1rem;
  }
}
.fixed_btn_area .fixed_btn._signup {
  background: url("/common/img/btn/signup_btn_bg.webp") no-repeat;
  background-size: 60px 240px;
  z-index: 2;
}
.fixed_btn_area .fixed_btn._signup::before {
  display: inline-block;
  content: "";
  width: 22px;
  height: 22px;
  background: url("/common/img/icon/signup.webp") no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}
@media screen and (max-width: 1329px) {
  .fixed_btn_area .fixed_btn._signup {
    background: -webkit-gradient(linear, left top, right top, from(rgb(48, 166, 16)), to(rgb(12, 146, 116)));
    background: linear-gradient(90deg, rgb(48, 166, 16) 0%, rgb(12, 146, 116) 100%);
  }
  .fixed_btn_area .fixed_btn._signup::before {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.fixed_btn_area .fixed_btn._contact {
  background: url("/common/img/btn/contact_btn_bg.webp") no-repeat;
  background-size: 60px 240px;
  margin-top: -20px;
}
.fixed_btn_area .fixed_btn._contact::before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 17px;
  background: url("/common/img/icon/contact.webp") no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}
@media screen and (max-width: 1329px) {
  .fixed_btn_area .fixed_btn._contact {
    background: #333333;
  }
  .fixed_btn_area .fixed_btn._contact::before {
    margin-right: 10px;
    margin-bottom: 0;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
}
@media screen and (min-width: 1330px), print {
  .fixed_btn_area .fixed_btn:hover {
    opacity: 1 !important;
    width: 70px;
    z-index: 10;
    background-size: 70px 240px;
    padding-right: 20px;
  }
}

.issue_column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: clamp(20px, 5vw, 80px);
  -moz-column-gap: clamp(20px, 5vw, 80px);
  column-gap: clamp(20px, 5vw, 80px);
  row-gap: clamp(20px, 5vw, 80px);
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.issue_column .issue_box {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .issue_column {
    grid-template-columns: repeat(1, 1fr);
  }
}

.issue_box {
  display: block;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #ffffff;
  border-radius: 3px;
  -webkit-box-shadow: 7.071px 7.071px 30px 0px rgba(125, 125, 125, 0.1);
  box-shadow: 7.071px 7.071px 30px 0px rgba(125, 125, 125, 0.1);
  padding: 100px clamp(20px, 1.875vw, 30px) 30px clamp(20px, 2.5vw, 40px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none !important;
  color: #1a1a1a !important;
  cursor: pointer;
}
.issue_box__icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: clamp(20px, 1.875vw, 30px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.issue_box__icon img {
  width: 24px;
}
.issue_box__head {
  padding-right: 100px;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.issue_box__head::after {
  display: block;
  content: "";
  width: 80px;
  height: 1px;
  background-color: #313131;
  position: absolute;
  bottom: 0;
  left: 0;
}
.issue_box__title {
  font-size: clamp(20px, 1.5vw, 1.5rem);
  line-height: 1.5;
}
.issue_box__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 10px;
}
.issue_box__arrow img {
  width: 40px;
  height: 40px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 999px) {
  .issue_box {
    padding-top: 80px;
  }
  .issue_box__icon {
    top: 20px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .issue_box {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .issue_box__head {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .issue_box__body {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1000px), print {
  .main_flex_area._faq {
    margin-top: 100px;
  }
}

.faq_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .faq_list {
    gap: 10px;
  }
}

.accordion {
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
}
.accordion__btn {
  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;
  padding: 23px clamp(20px, 2.9vw, 35px) 23px clamp(20px, 5vw, 60px);
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .accordion__btn {
    display: block;
    position: relative;
    padding-top: 15px;
    padding-right: 50px;
    padding-bottom: 15px;
  }
}
.accordion__num {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: rgba(26, 26, 26, 0.3);
  margin-right: 57px;
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.accordion__num::after {
  display: block;
  content: "";
  width: 13px;
  height: 62px;
  background: url("/common/img/icon/slash_faq.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.2em;
  right: -33px;
}
@media screen and (max-width: 767px) {
  .accordion__num {
    line-height: 1.2;
    margin-bottom: 5px;
    font-size: 1.25rem;
  }
  .accordion__num::after {
    display: none;
  }
}
.accordion__title_wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 6px;
  padding-right: 20px;
}
.accordion__cate {
  font-size: 0.938rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.accordion__cate .label.whole {
  color: #2379da;
}
.accordion__cate .label.producer {
  color: #08a337;
}
.accordion__cate .label.operator {
  color: #6634ca;
}
.accordion__cate .label.other {
  color: #a6a6a6;
}
@media screen and (max-width: 767px) {
  .accordion__cate {
    margin-bottom: 5px;
  }
}
.accordion__title {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .accordion__title {
    line-height: 1.5;
  }
}
.accordion__toggle_btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(64, 64, 64, 0.2);
  position: relative;
  border-radius: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.accordion__toggle_btn::before, .accordion__toggle_btn::after {
  display: block;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.accordion__toggle_btn::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .accordion__toggle_btn {
    position: absolute;
    top: 0;
    right: clamp(20px, 2.9vw, 35px);
    bottom: 0;
    left: auto;
    margin: auto;
  }
}
.accordion__content {
  padding-right: clamp(20px, 2.9vw, 35px);
  padding-left: clamp(20px, 5vw, 60px);
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out, padding-bottom 0.3s ease-out;
  border-radius: 0 0 5px 5px;
  line-height: 1.875;
}
.accordion__content p {
  line-height: 1.875 !important;
}
.accordion.open .accordion__btn {
  border-radius: 5px 5px 0 0;
}
.accordion.open .accordion__content {
  padding-top: 20px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .accordion.open .accordion__content {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}
.accordion.open .accordion__toggle_btn::before {
  opacity: 0;
}
.accordion.open .accordion__toggle_btn::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.event_btn_box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ececec;
  border-radius: 5px;
  padding: clamp(20px, 3.33vw, 35px) clamp(20px, 5vw, 60px);
  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;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 1000px), print {
  .event_btn_box {
    margin-top: 80px;
  }
}
.event_btn_box::before {
  display: block;
  content: "";
  width: 3px;
  height: 60px;
  background-color: #333333;
  position: absolute;
  top: clamp(20px, 3.33vw, 40px);
  left: clamp(20px, 5vw, 60px);
}
.event_btn_box__l {
  padding-left: clamp(25px, 4.16vw, 50px);
}
.event_btn_box__l .circle_link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  text-decoration: none !important;
  font-size: clamp(1rem, 2vw, 1.5rem);
}
@media screen and (min-width: 849px), print {
  .event_btn_box__l .circle_link {
    min-height: 66px;
  }
}
@media screen and (max-width: 576px) {
  .event_btn_box__l .circle_link {
    padding-left: 50px;
  }
  .event_btn_box__l .circle_link::before {
    width: 32px;
    height: 32px;
  }
}
.event_btn_box__r .btn {
  min-height: 50px;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px), print {
  .event_btn_box__r .btn {
    min-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  .event_btn_box__r .btn {
    min-width: 100%;
  }
}
@media screen and (max-width: 999px) {
  .event_btn_box {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 849px) {
  .event_btn_box {
    display: block;
  }
  .event_btn_box::before {
    display: none;
  }
  .event_btn_box__l {
    padding-left: 0;
    text-align: center;
  }
  .event_btn_box__r {
    text-align: center;
    margin-top: 15px;
  }
}

.event_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.event_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 40px 20px 20px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #1a1a1a;
  text-decoration: none !important;
}
.event_box__img {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 220/140;
  max-width: 220px;
  margin-right: clamp(20px, 3.33vw, 40px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.event_box__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.event_box__info_wrap {
  display: block;
  margin-right: clamp(20px, 3.33vw, 40px);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.event_box__title {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  border-bottom: 2px solid #eeeeee;
  line-height: 1.5;
  padding-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.08rem;
  margin-bottom: 15px;
}
.event_box__info {
  display: block;
}
.event_box__info__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.event_box__info__line:not(:last-of-type) {
  margin-bottom: 5px;
}
.event_box__info__line__icon {
  display: block;
  width: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 4px;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.event_box__info__line__icon img {
  width: 100%;
}
.event_box__info__line__label {
  font-size: 0.938rem;
  color: #808080;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
  line-height: 1.5;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.event_box__info__line__text {
  line-height: 1.5;
}
.event_box__arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.event_box__arrow img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 999px) {
  .event_box {
    padding-right: 20px;
  }
  .event_box__img {
    max-width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .event_box__img {
    max-width: 100px;
  }
  .event_box__arrow img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 576px) {
  .event_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .event_box__img {
    max-width: none;
    width: 100%;
    aspect-ratio: 220/140;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .event_box__info_wrap {
    margin-right: 0;
  }
  .event_box__info__line__label {
    margin-right: 10px;
  }
  .event_box__arrow {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}
.event_box:hover {
  opacity: 1;
}
.event_box:hover .event_box__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.event_box:hover .event_box__title {
  color: #0da53b;
}

.check_list > li {
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 1000px), print {
  .check_list > li {
    font-size: 1.125rem;
  }
}
.check_list > li::before {
  display: block;
  content: "";
  width: 18px;
  height: 15px;
  background: url("/common/img/icon/check.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.5em;
  left: 0;
}

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

.category_header {
  border-radius: clamp(5px, 0.625vw, 10px);
  margin: 0 auto 40px;
  min-height: 200px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category_header .container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.category_header .breadcrumbs_area {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50%;
}
.category_header .title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  display: block;
  color: #ffffff;
  font-size: 2.25rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 999px) {
  .category_header {
    min-height: 120px;
    margin-bottom: 15px;
  }
  .category_header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .category_header .breadcrumbs_area {
    width: 100%;
  }
  .category_header .breadcrumbs_area .bread_crumb {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .category_header .title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 475px) {
  .category_header {
    padding-right: 0.8em;
  }
  .category_header .title {
    font-size: 1.5rem;
  }
}

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

@media screen and (min-width: 1000px), print {
  .main_flex_area._news {
    margin-top: 80px;
  }
}

.news_area__content {
  background-color: #ffffff;
  padding: clamp(20px, 4.5vw, 60px) clamp(20px, 4.5vw, 80px) clamp(20px, 5vw, 120px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 40px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
  box-shadow: 0px 3px 30px 0px rgba(192, 192, 192, 0.2);
}
.news_area__content p {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.news_area__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .news_area__head {
    display: block;
  }
}
.news_area__date {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  margin-right: 25px;
  color: #333333;
  line-height: 1;
}
.news_area__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news_area__cate .label {
  font-size: 0.875rem;
  font-weight: 700;
}
.news_area__cate .label.producer {
  color: #08a337;
}
.news_area__cate .label.operator {
  color: #6634ca;
}
.news_area__cate .label.important {
  color: #db452d;
}
.news_area__cate .label.event {
  color: #2379da;
}
.news_area__cate .label.whole {
  color: #2379da;
}
.news_area__title {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  line-height: 1.5;
  color: #333333;
  border-bottom: 2px solid #333333;
  padding-bottom: 0.8em;
  margin-bottom: 1.2em;
  font-weight: 500;
}
@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: #1a1a1a;
  padding: 0.7em clamp(50px, 5vw, 70px) 0.7em clamp(20px, 2.5vw, 30px);
  background-color: #ffffff;
  /**************************
  右の icon
  */
}
.link_btn::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/btn.webp") 0 0/21px 68px no-repeat transparent;
  width: 21px;
  height: 34px;
  position: absolute;
  top: 50%;
  right: clamp(20px, 2.5vw, 30px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 1000px), print {
  .link_btn small {
    display: block;
  }
}
.link_btn:hover {
  color: #808080;
}

.circle_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 42px;
  color: #1a1a1a !important;
  font-weight: 500;
  padding-left: 60px;
  position: relative;
}
.circle_link::before {
  display: inline-block;
  content: "";
  width: 42px;
  height: 42px;
  background: url("/common/img/icon/arrow/btn_arrow.webp") no-repeat;
  background-size: contain;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
}

.image_grid {
  display: grid;
  gap: 20px;
  margin-top: 1em;
  margin-bottom: 2em;
  padding-left: 1.3em;
  padding-right: 1.3em;
}
@media screen and (max-width: 767px) {
  .image_grid {
    padding-left: 1.2em;
    padding-right: 1em;
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 576px) {
  .image_grid {
    padding-left: 0;
    padding-right: 0;
  }
}
@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%;
}

.sitemap_layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(20px, 6.66vw, 80px);
  -moz-column-gap: clamp(20px, 6.66vw, 80px);
  column-gap: clamp(20px, 6.66vw, 80px);
  row-gap: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sitemap_layout > .column {
  width: calc(50% - clamp(20px, 6.66vw, 80px) / 2);
}
@media screen and (min-width: 1000px), print {
  .sitemap_layout {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .sitemap_layout {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .sitemap_layout > .column {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .sitemap_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sitemap_layout > .column {
    width: 100%;
  }
}
.sitemap_layout .sitemap_heading {
  border-bottom: 1px solid #535353;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #313131;
}
.sitemap_layout .sitemap_heading a {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  padding-right: 1.6em;
  position: relative;
}
.sitemap_layout .sitemap_heading a::after {
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  background: url("/common/img/icon/arrow/btn_arrow_s.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.4em;
  right: 10px;
}
@media screen and (max-width: 999px) {
  .sitemap_layout .sitemap_heading {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .sitemap_layout .sitemap_heading {
    font-size: 1.25rem;
  }
  .sitemap_layout .sitemap_heading a::after {
    top: 0.3em;
  }
}
@media screen and (max-width: 576px) {
  .sitemap_layout .sitemap_heading a::before {
    width: 25px;
    height: 25px;
  }
}
.sitemap_layout ul {
  margin-top: 20px;
  padding-left: 5px;
}
.sitemap_layout ul li a {
  display: block;
  padding-left: 1.6em;
  position: relative;
  text-decoration: none !important;
}
.sitemap_layout ul li a::before {
  display: block;
  content: "";
  width: 10px;
  height: 7px;
  background: url("/common/img/icon/arrow/link_arrow.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.8em;
  left: 0;
}

.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: 35px;
}
@media screen and (max-width: 767px) {
  .news_pager_area > .news_pager {
    gap: 20px;
  }
}
.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 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #333333;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  display: block;
  position: relative;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.2s background-color;
  transition: 0.2s background-color;
  padding-right: 5px;
  padding-left: 5px;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next):not(.text_link) > a.current {
  color: #0da53b;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next):not(.text_link) > a.current::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #0da53b;
  position: absolute;
  bottom: 0;
  left: 0;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next):not(.text_link) > a:hover {
  color: #0da53b;
}
.news_pager_area > .news_pager > .news_pager__box > a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  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: #1a1a1a;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before {
  display: block;
  content: "";
  background: url("/common/img/icon/arrow/btn_arrow.webp") no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 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.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: #1a1a1a;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link::before {
  display: block;
  content: "";
  background: url("/common/img/icon/arrow/btn_arrow.webp") no-repeat;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 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.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;
}

:root {
  --swiper-navigation-size: 8px;
  --swiper-navigation-color: #00be9b;
  --swiper-theme-color: ;
}

.new {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  display: inline-block;
  text-align: center;
  padding: 0 8px;
  line-height: 21px;
  border-radius: 3px;
  background-color: #e5e5e5;
  color: #808080;
  margin-left: 5px;
  font-size: 0.75rem;
}

:root {
  --sp-header-height: 85px;
  --pc-header-height: 80px;
  --sp-header-clamp: 85px;
}

.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: 80px;
  max-width: 1500px;
  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: 85px;
  }
}
@media screen and (max-width: 575px) {
  .container-header {
    padding: 0 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}
.header::before {
  display: block;
  content: "";
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 767px) {
  .header::before {
    height: 85px;
  }
}
.header .logo,
.header .btn,
.header .sp_open_menu {
  pointer-events: all;
}
.header a {
  color: #1a1a1a;
}
.header__l, .header__r {
  position: relative;
  z-index: 100;
}
.header__l {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(20px, 2vw, 40px);
}
@media screen and (max-width: 1399px) {
  .header__r {
    gap: clamp(20px, 1.8vw, 44px);
  }
}
@media screen and (max-width: 1199px) {
  .header__r {
    gap: 0;
  }
}
.header__logo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.header__logo .logo .main {
  width: 452px;
}
.header__logo .logo .main img {
  width: 100%;
}
@media screen and (max-width: 699px) {
  .header__logo .logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px;
  }
  .header__logo .logo .main {
    line-height: 1;
  }
}
@media screen and (max-width: 576px) {
  .header__logo .logo .main {
    width: 283px;
  }
}
.header__search {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .header__search {
    display: none;
  }
}
.header__search .search_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 120px;
  height: 50px;
  background-color: #333333;
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 13px 25px;
}
.header__search .search_button__icon {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.header__search .search_button__icon img {
  width: 100%;
}
.header__search .search_button__text {
  font-size: 0.875rem;
}
.header__search_input_area {
  border-radius: 3px;
  -webkit-box-shadow: 0px 5px 5px 5px rgba(51, 51, 51, 0.1);
  box-shadow: 0px 5px 5px 5px rgba(51, 51, 51, 0.1);
  background-color: #f6f6f6;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 460px;
  position: absolute;
  top: 50px;
  left: auto;
  right: 0;
  -webkit-transition: opacity 0.3s, top 0.3s;
  transition: opacity 0.3s, top 0.3s;
  opacity: 0;
  pointer-events: none;
}
.header__search_input_area .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__search_input_area .search {
  width: 100%;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
}
.header__search_input_area .search__submit {
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1px;
  width: 45px;
  height: 30px;
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  left: auto;
  background-image: url("/common/img/icon/search_black.webp");
  background-size: contain;
  width: 22px;
  height: 22px;
  background-color: transparent;
}
.header__search_input_area .search__text {
  color: #1b1b1b;
  background-color: #ffffff;
  border: 1px solid #404040;
  border-radius: 3px;
  height: 34px;
  padding: 0 45px 0 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  background-color: #e9e9e9;
  -webkit-box-shadow: inset 0px 3px 2px 0px rgba(185, 185, 185, 0.3);
  box-shadow: inset 0px 3px 2px 0px rgba(185, 185, 185, 0.3);
  border-radius: 25px;
}
.header._open_search .header__search_input_area {
  opacity: 1;
  top: 60px;
  -webkit-transition: opacity 0.3s, top 0.3s;
  transition: opacity 0.3s, top 0.3s;
  pointer-events: all;
}
.header__sp_menu {
  display: none;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1199px) {
  .header__sp_menu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header__sp_menu {
    width: 46px;
    height: 46px;
  }
}
.header.js-use_bg::before {
  opacity: 1;
}
.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: 1199px) {
  .gnav {
    display: none;
  }
}
.gnav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 30px);
  height: 100%;
}
@media screen and (max-width: 1399px) {
  .gnav__ul {
    gap: 10px;
  }
}
.gnav__li {
  position: relative;
  height: inherit;
  text-align: center;
  display: inline-block;
}
.gnav__li:nth-of-type(3) .gnav__sub__container {
  min-width: 310px !important;
}
.gnav__a {
  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;
  height: 100%;
  line-height: 1.5;
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 1199px) {
  .gnav__a {
    padding-left: 3px;
    padding-right: 3px;
  }
}
.gnav__a.hover {
  color: #999999;
}
.gnav__a._hover {
  position: relative;
}
.gnav__a:hover {
  color: #999999;
}
.gnav__text {
  font-size: 1rem;
  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;
}
.gnav__text .maru {
  letter-spacing: -1px;
  margin: 0 -2px;
}
@media screen and (max-width: 1399px) {
  .gnav__text {
    font-size: 0.938rem;
  }
}
.gnav__sub {
  width: 100%;
  visibility: hidden;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 99;
  padding-top: 30px;
}
.gnav__sub__container {
  min-width: 260px;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  -webkit-box-shadow: 3.536px 3.536px 20px 0px rgba(206, 206, 206, 0.5);
  box-shadow: 3.536px 3.536px 20px 0px rgba(206, 206, 206, 0.5);
  background-color: #ffffff;
  position: absolute;
  top: -10px;
  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 dotted #d6d0d9;
}
.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: 18px 20px 18px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  position: relative;
}
.gnav__sub .a1::after {
  display: block;
  content: "";
  width: 12px;
  height: 9px;
  background: url("/common/img/icon/arrow/gnav_sub.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.gnav__sub .a1:hover ._inner {
  color: #0da53b;
}
.gnav__sub ._inner {
  position: relative;
  line-height: 1.4;
  font-size: 1rem;
}
.gnav__sub li.active > a,
.gnav__sub li > a:hover {
  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: #000000;
}
.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: #000000;
}
.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: #000000;
  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 {
  color: #fff;
}
.footer__band {
  background: -webkit-gradient(linear, left top, right top, from(rgb(70, 149, 48)), color-stop(57%, rgb(18, 149, 89)), to(rgb(68, 34, 138)));
  background: linear-gradient(90deg, rgb(70, 149, 48) 0%, rgb(18, 149, 89) 57%, rgb(68, 34, 138) 100%);
}
.footer__container {
  padding-top: 30px;
  padding-bottom: 13px;
}
.footer__left {
  min-width: 0;
}
.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.footer__logo {
  width: 310px;
}
.footer__logo a {
  display: block;
}
.footer__logo img {
  width: 100%;
}
.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 16px;
  margin-bottom: 20px;
}
.footer__contact__l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 4.37vw, 70px);
}
.footer__contact_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}
.footer__contact_texts {
  display: grid;
  position: relative;
}
.footer__contact_label {
  margin: 0;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
}
.footer__org {
  width: 202px;
}
.footer__org img {
  width: 100%;
}
.footer__contact_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__address {
  font-style: normal;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.7;
}
.footer__address .line {
  display: inline-block;
  line-height: 1;
}
.footer__address .line._zip {
  margin-right: 5px;
}
.footer__tel {
  margin: 0;
  line-height: 1;
}
.footer__tel_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
  padding-left: 2px;
}
.footer__tel_num {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1;
}
.footer__tel_icon {
  width: 14px;
  height: 20px;
}
.footer__tel_icon img {
  width: 100%;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.footer__nav {
  justify-self: end;
}
.footer__nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__nav_item {
  position: relative;
}
.footer__nav_item + .footer__nav_item::before {
  content: "/";
  font-size: 0.938rem;
  margin-inline: 10px;
}
.footer__nav_link {
  color: #ffffff !important;
  font-size: 0.938rem;
  position: relative;
}
.footer__nav_link:hover, .footer__nav_link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__nav_link._pdf {
  padding-right: 26px;
}
.footer__nav_link._pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf_white.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 18px;
  height: 20px;
  position: absolute;
  top: 0.1rem;
  right: 0;
}
.footer__copyright {
  color: #75ce80;
  font-size: 0.875rem;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 419px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 1099px) {
  .footer__contact {
    display: block;
  }
  .footer__contact__l {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 999px) {
  .footer__brand {
    margin-bottom: 20px;
  }
  .footer__nav {
    justify-self: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__contact__l {
    display: block;
  }
  .footer__contact_texts::after {
    display: none;
  }
  .footer__contact_block {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 576px) {
  .footer__container {
    padding-top: 20px;
  }
  .footer__contact {
    margin-bottom: 10px;
    display: block;
  }
}
@media screen and (max-width: 455px) {
  .footer__nav_item {
    line-height: 1.6;
  }
  .footer__nav_item::before {
    display: none;
  }
  .footer__nav_list {
    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: 80px;
  }
}
@media screen and (max-width: 1399px) {
  .pc_menu__panel {
    padding-top: var(--sp-header-clamp);
  }
}
.pc_menu .background {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(26, 26, 26, 0.3);
  z-index: 1;
}
.pc_menu._show {
  opacity: 1;
  pointer-events: all;
}
.pc_menu .container.container-header {
  gap: clamp(40px, 5vw, 70px);
  height: auto;
}
@media screen and (max-width: 1519px) and (min-width: 1199px) {
  .pc_menu .container.container-header {
    padding-right: 80px;
    padding-left: 30px;
  }
}
.pc_menu__l {
  padding-top: 10px;
  -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 #1a1a1a;
}
.pc_menu__search .head {
  font-size: 1rem;
  padding-left: 0.7em;
}
@media screen and (min-width: 1200px), print {
  .pc_menu__info {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .pc_menu__info {
    margin-top: clamp(30px, 3vw, 50px);
  }
}
.pc_menu__info .tel_area {
  line-height: 1;
  margin-bottom: 1em;
}
.pc_menu__info .tel_area .row {
  display: -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: #1a1a1a;
  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: #808080;
}
.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: #1a1a1a;
  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: #808080;
}

/**************************
	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 30px;
  --mm-panel-parent-offset: -100%;
}
.mm-wrapper--opened .mm-panels::after,
.mm-wrapper--opened .mm-panel::after {
  display: none;
}
.mm-wrapper--opened .mm-panels .mm-navbar,
.mm-wrapper--opened .mm-panel .mm-navbar {
  border-bottom: none;
  border-bottom: 1px solid rgba(49, 49, 49, 0.5);
  margin-left: 20px;
  margin-right: 25px;
}
.mm-wrapper--opened .mm-panels.mm-panel--opened > .mm-listview,
.mm-wrapper--opened .mm-panel.mm-panel--opened > .mm-listview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .mm-wrapper--opened .mm-panels,
  .mm-wrapper--opened .mm-panel {
    padding: 0 30px;
  }
}

.drawer {
  width: 490px;
  height: 100vh;
  overflow: hidden;
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f6f6f6;
}
@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 {
  height: 80px;
  padding: 0 30px 0;
  margin-bottom: 18px;
  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;
  background-color: #ffffff;
}
.drawer__top .logo_wrap a {
  display: block;
  width: clamp(283px, 26vw, 452px);
}
.drawer__top .logo_wrap a img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .drawer__top {
    padding: 0 20px 0;
  }
}
.drawer__close_menu {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .drawer__close_menu {
    width: 46px;
    height: 46px;
  }
}
.drawer__bottom {
  display: block;
  padding: 0;
  overflow: visible;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  margin-top: 8px;
  border-top: 1px solid #313131;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@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__link_list {
  padding-top: 30px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  overflow: hidden !important;
}
.drawer__link_list a {
  border-bottom: none !important;
  color: #313131;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.drawer__link_list a._pdf {
  padding-right: 26px;
}
.drawer__link_list a._pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf_black.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 18px;
  height: 20px;
  position: absolute;
  top: 0.1rem;
  right: 0;
}
.drawer__link_list a::before {
  display: block;
  content: "";
  width: 7px;
  height: 10px;
  background: url("/common/img/icon/arrow/link2.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 1px;
  right: auto;
  bottom: 0;
  left: 8px;
  margin: auto;
}
.drawer__footer {
  margin-left: -30px !important;
  margin-right: -30px !important;
  padding: 26px 20px 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(70, 149, 48)), color-stop(50%, rgb(18, 149, 89)), to(rgb(68, 34, 138)));
  background: linear-gradient(90deg, rgb(70, 149, 48) 0%, rgb(18, 149, 89) 50%, rgb(68, 34, 138) 100%);
  border-radius: 3px 3px 0 0;
}
.drawer__footer__band {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden !important;
}
.drawer__footer__contact_block {
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.drawer__footer__contact_label {
  font-size: 0.875rem;
  color: #ffffff;
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 10px;
}
.drawer__footer__org {
  width: 202px;
}
.drawer__footer__org img {
  width: 100%;
}
.drawer__footer__contact_info {
  display: block;
}
.drawer__footer__address {
  font-style: normal;
  color: #ffffff;
  margin-bottom: 15px;
}
@media screen and (min-width: 767px), print {
  .drawer__footer__address .br {
    display: none;
  }
}
.drawer__footer__tel_link {
  border-bottom: none !important;
}
.drawer__footer__tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
  padding-left: 2px;
}
.drawer__footer__tel_icon {
  display: inline-block;
  width: 14px;
  height: 20px;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.drawer__footer__tel_icon img {
  display: block;
  width: 100%;
}
.drawer__footer__tel_num {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1;
}
.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 {
  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 {
  padding-right: 0;
}
.drawer__li .mm-panel .mm-btn--next {
  display: none;
}
.drawer__li > .mm-panel {
  padding-left: 30px;
}
.drawer__li > .mm-panel .a2 {
  padding-left: 40px;
  color: #313131;
}
.drawer__li .mm-listitem__text {
  font-weight: 500;
}
.drawer__li .mm-btn--next {
  -webkit-padding-end: 50px;
  padding-inline-end: 50px;
  border: none;
  height: 70px;
}
.drawer__li .mm-btn--next::before {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - 24px);
  border-right: 1px dotted #b3b3b3;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
}
.drawer__li .mm-btn--next::after {
  display: block;
  content: "";
  width: 12px;
  height: 9px;
  background: url("/common/img/icon/arrow/gnav_sub.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 31px;
  right: 15px;
  bottom: auto;
  left: inherit;
  margin: auto;
  padding: 0;
  border: 0 none;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.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: #313131;
  font-weight: 500;
}
.drawer__li.mm-listitem--opened .drawer__a,
.drawer__li .mm-listitem--opened .drawer__a {
  color: #313131;
}
.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-listview {
  margin-bottom: 1.5em;
}
.drawer__li .mm-listitem:last-of-type {
  border-bottom: none !important;
}
.drawer__li .mm-listitem a {
  font-weight: 500;
  font-size: 0.938rem;
  padding: 1.2rem 0 1.2rem 35px;
  position: relative;
  opacity: 0.7;
}
.drawer__li .mm-listitem a::before {
  display: block;
  content: "";
  width: 6px;
  height: 5px;
  background: url("/common/img/icon/arrow/triangle.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 20px;
  margin: auto;
}
.drawer .mm-listitem {
  margin-left: 0;
  margin-right: 0;
}
.drawer .mm-listitem:not(.no_border) a:not(.btn):not(.link2) {
  border-bottom: 2px solid #e8e8e8;
}
.drawer .mm-listitem::after {
  display: none;
}
.drawer .mm-listitem__text {
  text-overflow: initial;
  white-space: initial;
  overflow: auto;
}
.drawer__a {
  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: 20px 0 20px 40px;
}
.drawer__a::before {
  display: block;
  content: "";
  width: 6px;
  height: 5px;
  background: url("/common/img/icon/arrow/triangle.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  right: auto;
  bottom: 0;
  left: 25px;
  margin: auto;
}
.drawer__a.pointer_none {
  pointer-events: none;
}
.drawer__search {
  position: relative;
}
.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_black.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 30px;
  -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: 50px;
  max-height: 50px;
  padding: 11px 60px 10px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  border-radius: 25px;
  outline: none;
  font-size: 16px;
  background-color: #e9e9e9;
  -webkit-box-shadow: inset 0px 3px 2px 0px rgba(185, 185, 185, 0.3);
  box-shadow: inset 0px 3px 2px 0px rgba(185, 185, 185, 0.3);
}
.drawer__search .search_input .input::-webkit-input-placeholder {
  color: #aaaaaa;
}
.drawer__search .search_input .input::-moz-placeholder {
  color: #aaaaaa;
}
.drawer__search .search_input .input:-ms-input-placeholder {
  color: #aaaaaa;
}
.drawer__search .search_input .input::-ms-input-placeholder {
  color: #aaaaaa;
}
.drawer__search .search_input .input::placeholder {
  color: #aaaaaa;
}
.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;
}

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

/**************************
debug
*/
.has-text-align-center {
  text-align: center !important;
}
/*# sourceMappingURL=common.css.map */
