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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1200px), 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: 1199px) {
  .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: 1200px), 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: 1199px) {
  .pb-sp-5 {
    padding-bottom: 5em !important;
  }
  .pb-sp-4 {
    padding-bottom: 4em !important;
  }
  .pb-sp-3 {
    padding-bottom: 3em !important;
  }
  .pb-sp-2 {
    padding-bottom: 2em !important;
  }
  .pb-sp-1_5 {
    padding-bottom: 1.5em !important;
  }
  .pb-sp-1 {
    padding-bottom: 1em !important;
  }
  .pb-sp-05 {
    padding-bottom: 0.5em !important;
  }
  .pb-sp-0 {
    padding-bottom: 0 !important;
  }
  .pt-sp-5 {
    padding-top: 5em !important;
  }
  .pt-sp-4 {
    padding-top: 4em !important;
  }
  .pt-sp-3 {
    padding-top: 3em !important;
  }
  .pt-sp-2 {
    padding-top: 2em !important;
  }
  .pt-sp-1_5 {
    padding-top: 1.5em !important;
  }
  .pt-sp-1 {
    padding-top: 1em !important;
  }
  .pt-sp-05 {
    padding-top: 0.5em !important;
  }
  .pt-sp-0 {
    padding-top: 0 !important;
  }
  .pl-sp-5 {
    padding-left: 5em !important;
  }
  .pl-sp-4 {
    padding-left: 4em !important;
  }
  .pl-sp-3 {
    padding-left: 3em !important;
  }
  .pl-sp-2 {
    padding-left: 2em !important;
  }
  .pl-sp-1_5 {
    padding-left: 1.5em !important;
  }
  .pl-sp-1 {
    padding-left: 1em !important;
  }
  .pl-sp-05 {
    padding-left: 0.5em !important;
  }
  .pl-sp-0 {
    padding-left: 0 !important;
  }
  .pr-sp-5 {
    padding-right: 5em !important;
  }
  .pr-sp-4 {
    padding-right: 4em !important;
  }
  .pr-sp-3 {
    padding-right: 3em !important;
  }
  .pr-sp-2 {
    padding-right: 2em !important;
  }
  .pr-sp-1_5 {
    padding-right: 1.5em !important;
  }
  .pr-sp-1 {
    padding-right: 1em !important;
  }
  .pr-sp-05 {
    padding-right: 0.5em !important;
  }
  .pr-sp-0 {
    padding-right: 0 !important;
  }
  .py-sp-5 {
    padding-top: 5em !important;
    padding-bottom: 5em !important;
  }
  .py-sp-4 {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .py-sp-3 {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  .py-sp-2 {
    padding-top: 2em !important;
    padding-bottom: 2em !important;
  }
  .py-sp-1_5 {
    padding-top: 1.5em !important;
    padding-bottom: 1.5em !important;
  }
  .py-sp-1 {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  .py-sp-05 {
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
  }
  .py-sp-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .px-sp-5 {
    padding-left: 5em !important;
    padding-right: 5em !important;
  }
  .px-sp-4 {
    padding-left: 4em !important;
    padding-right: 4em !important;
  }
  .px-sp-3 {
    padding-left: 3em !important;
    padding-right: 3em !important;
  }
  .px-sp-2 {
    padding-left: 2em !important;
    padding-right: 2em !important;
  }
  .px-sp-1_5 {
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
  }
  .px-sp-1 {
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
  .px-sp-05 {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
  .px-sp-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.float-left {
  float: left !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1200px), print {
  .d-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .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: 1200px), print {
  .w-pc-100 {
    width: 100% !important;
  }
}
@media screen and (max-width: 1199px) {
  .w-sp-100 {
    width: 100% !important;
  }
}
@media screen and (max-width: 575px) {
  .w-xs-100 {
    width: 100% !important;
  }
}
.w-auto {
  width: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

## initial

md 初期設定


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

input,
textarea {
  outline: 0;
}

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

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

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

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

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

.none {
  display: none;
}

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

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

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

.main_content {
  max-width: 100%;
}
.main_content img._border {
  border: 1px solid #cccccc;
}
@media screen and (max-width: 1199px) {
  .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: 0.938rem;
    line-height: 1.5;
  }
}
body.js-body_no_scroll {
  overflow-y: hidden !important;
}

.main_content {
  background-color: #ffffff;
  padding-bottom: 5em;
}
.main_content-bg {
  background: url("../img/bg.webp") top center/cover no-repeat #ffffff;
}
.main_content img {
  max-width: 100%;
}
@media screen and (min-width: 1000px), print {
  .main_content .breadcrumbs,
  .main_content .bread_crumb {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 999px) {
  .main_content .breadcrumbs,
  .main_content .bread_crumb {
    margin-bottom: 1.5em;
    padding-bottom: 0;
  }
}
.main_content .content_body {
  position: relative;
  z-index: 2;
  min-height: 400px;
}
.main_content .content_body__panel {
  margin-left: -80px;
  background-color: #ffffff;
}
.main_content .content_body__panel > h2:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content .content_body__panel {
    padding: 100px 80px 40px;
  }
}
@media screen and (max-width: 1199px) {
  .main_content .content_body__panel {
    margin-left: -33px;
    padding: clamp(40px, 6vw, 80px) 20px clamp(40px, 6vw, 80px) 33px;
  }
}
@media screen and (max-width: 767px) {
  .main_content .content_body__panel {
    padding-bottom: 10px;
  }
}
.main_content .content_body__panel + * {
  margin-top: 0 !important;
}
.main_content > p:not(.cancel) {
  padding-left: 1em;
}
.main_content p:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 1200px), print {
  .main_content .wp-block-table table,
  .main_content .box,
  .main_content .flow_title {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.main_content .downward img {
  display: block;
  margin: auto;
}

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

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

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

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

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

.inline_video {
  max-width: 100%;
}

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

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

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

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

.scell {
  margin-right: 1em;
}

.scell2 {
  margin-right: 0.5em;
}

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

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

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

.signature {
  text-align: right;
}

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

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

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

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

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

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

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  letter-spacing: 0.07em;
  font-size: 1rem;
  line-height: 2.2;
  background: #ffffff;
  color: #0f2040;
}

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

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

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

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

.text-black {
  color: #0f2040 !important;
}

.text-white {
  color: #ffffff;
}

.text-blue {
  color: #ff0000;
}

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

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

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

.text-gray {
  color: #ff0000;
}

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

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

.no_wrap {
  white-space: nowrap;
}

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

/**************************
pc
*/
@media screen and (min-width: 1000px), print {
  .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 80px;
    padding-right: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1360px;
  }
  .pc_padding,
  .padding {
    padding-left: 80px;
    padding-right: 80px;
  }
}
/**************************
sp
*/
@media screen and (max-width: 999px) {
  .sp_container,
  .container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 33px;
    padding-right: 33px;
  }
  .sp_padding,
  .padding {
    padding-left: 33px;
    padding-right: 33px;
  }
}
.main_content h2:not(.cancel),
.main_content .h2 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  color: #0f2040;
  letter-spacing: 0.15em;
  line-height: 1.3;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px), print {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    font-size: clamp(22px, 4vw, 35px);
  }
}
@media screen and (min-width: 576px), print {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    padding-left: 25px;
    margin-top: 3.5ex;
    margin-bottom: 3ex;
  }
  .main_content h2:not(.cancel)::after,
  .main_content .h2::after {
    bottom: -1ex;
  }
}
@media screen and (max-width: 575px) {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    padding-left: 15px;
    margin-top: 3ex;
    margin-bottom: 3ex;
  }
  .main_content h2:not(.cancel)::after,
  .main_content .h2::after {
    bottom: -1ex;
  }
}
.main_content h2:not(.cancel)::before,
.main_content .h2::before {
  content: "";
  display: block;
  height: 65%;
  background-color: #333333;
  position: absolute;
  top: 23%;
  left: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content h2:not(.cancel)::before,
  .main_content .h2::before {
    width: 3px;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h2:not(.cancel)::before,
  .main_content .h2::before {
    width: 2px;
  }
}
.main_content h2:not(.cancel)::after,
.main_content .h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  left: 0;
  filter: blur(1px);
}
.main_content h3:not(.cancel),
.main_content .h3 {
  --diameter: 50px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  padding-top: calc(var(--diameter) / 3);
  padding-left: calc(var(--diameter) / 2);
  margin-left: calc(var(--diameter) / 2 * -1);
  margin-bottom: 1em;
  background: url("../img/icon/h3-circle.webp") 0 0/52px 52px no-repeat transparent;
  line-height: 1.4;
  letter-spacing: 0.15ex;
}
@media screen and (min-width: 1200px), print {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    font-size: 1.875rem;
    margin-top: calc(var(--margin-section) + var(--diameter) / 3 * -1);
  }
}
@media screen and (max-width: 1199px) {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    background-size: 40px 40px;
    margin-top: calc(var(--margin-section) * 0.7 + var(--diameter) / 3 * -1);
  }
}
.main_content h4:not(.cancel),
.main_content .h4 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-top: calc(var(--margin-section) * 0.4);
  margin-bottom: 1em;
  line-height: 1.4;
}
.main_content h4:not(.cancel)::before,
.main_content .h4::before {
  content: "";
  height: 1px;
  width: 20px;
  margin-right: 0.7em;
  background-color: #0f2040;
}
@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.125rem, 4vw, 1.5rem);
  }
}
.main_content h5:not(.cancel),
.main_content .h5 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  margin-top: calc(var(--margin-section) * 0.5);
  margin-bottom: 1em;
  background: linear-gradient(to bottom, rgba(172, 196, 221, 0.2) 0%, rgba(221, 226, 228, 0.2) 100%);
  padding: 0.6em 0.8em;
  line-height: 1.6;
}
@media screen and (min-width: 1200px), print {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    font-size: 1.313rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    font-size: clamp(1.125rem, 4vw, 1.313rem);
  }
}
.main_content h6:not(.cancel),
.main_content .h6 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #1f65a0;
  margin-top: calc(var(--margin-section) * 0.5);
  margin-bottom: 1em;
  line-height: 1.6;
}
@media screen and (min-width: 1200px), print {
  .main_content h6:not(.cancel),
  .main_content .h6 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h6:not(.cancel),
  .main_content .h6 {
    font-size: clamp(1.063rem, 4vw, 1.25rem);
  }
}

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

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

.main_content ul:not(.cancel):not(.acf-radio-list) {
  padding-left: 20px;
}
@media screen and (max-width: 575px) {
  .main_content ul:not(.cancel):not(.acf-radio-list) {
    padding-left: 0;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ul:not(.cancel):not(.acf-radio-list) > li {
  letter-spacing: 0.1em;
  padding-left: 2.7em;
  margin-bottom: 1em;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list) > li {
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 1199px) {
  .main_content ul:not(.cancel):not(.acf-radio-list) > li {
    font-size: 0.938rem;
    line-height: 1.5;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list) > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 1.2em;
  width: 6px;
  height: 6px;
  border: 1px solid #0f2040;
  border-radius: 3px;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list) > li::before {
    top: 1.7ex;
  }
}
@media screen and (max-width: 1199px) {
  .main_content ul:not(.cancel):not(.acf-radio-list) > li::before {
    top: 1ex;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list) > li ul {
  padding-left: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.inline_block_list) > li:last-child {
  margin-bottom: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list)._sm > li {
  margin-bottom: 0;
  line-height: 1.7;
}
@media screen and (min-width: 1200px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list)._sm > li::before {
    top: 1.4ex;
  }
}
@media screen and (max-width: 1199px) {
  .main_content ul:not(.cancel):not(.acf-radio-list)._sm > li::before {
    top: 1.4ex;
  }
}

.main_content ol:not(.cancel) {
  padding-left: 20px;
  list-style: none;
  counter-reset: num 0;
}
.main_content ol:not(.cancel):not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 575px) {
  .main_content ol:not(.cancel) {
    padding-left: 0;
  }
}
.main_content ol:not(.cancel) > li {
  letter-spacing: 0.1em;
  padding-left: 2.7em;
  margin-bottom: 0.5em;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 1199px) {
  .main_content ol:not(.cancel) > li {
    font-size: 0.938rem;
    line-height: 1.5;
  }
}
.main_content ol:not(.cancel) > li::before {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) ".";
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f2040;
  position: absolute;
  top: -0.28em;
  left: 0em;
  text-align: right;
  width: 1.5em;
}
.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: 1200px), print {
  .main_content ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}
@media screen and (max-width: 1199px) {
  .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: 1200px), print {
  .dl dt {
    float: left;
  }
}
@media screen and (min-width: 1200px), print {
  .dl dt,
  .dl dd {
    float: left;
  }
}
.dl dt:last-child,
.dl dd:last-child {
  margin-bottom: 0;
}
.dl dd {
  width: 100%;
  box-sizing: border-box;
}
.dl dd:not(:last-child) {
  padding-bottom: 0.3em;
}
@media screen and (max-width: 1199px) {
  .dl dd:not(:last-child) {
    margin-bottom: 0.7em;
  }
}
@media screen and (min-width: 1200px), print {
  .dl-2em dt {
    width: 2em;
  }
  .dl-2em dt .h-inline {
    width: -1.5em;
  }
  .dl-2em dd {
    margin-left: -3em;
    padding-left: 3em;
  }
  .dl-3em dt {
    width: 3em;
  }
  .dl-3em dt .h-inline {
    width: -0.5em;
  }
  .dl-3em dd {
    margin-left: -4em;
    padding-left: 4em;
  }
  .dl-4em dt {
    width: 4em;
  }
  .dl-4em dt .h-inline {
    width: 0.5em;
  }
  .dl-4em dd {
    margin-left: -5em;
    padding-left: 5em;
  }
  .dl-5em dt {
    width: 5em;
  }
  .dl-5em dt .h-inline {
    width: 1.5em;
  }
  .dl-5em dd {
    margin-left: -6em;
    padding-left: 6em;
  }
  .dl-6em dt {
    width: 6em;
  }
  .dl-6em dt .h-inline {
    width: 2.5em;
  }
  .dl-6em dd {
    margin-left: -7em;
    padding-left: 7em;
  }
  .dl-7em dt {
    width: 7em;
  }
  .dl-7em dt .h-inline {
    width: 3.5em;
  }
  .dl-7em dd {
    margin-left: -8em;
    padding-left: 8em;
  }
  .dl-8em dt {
    width: 8em;
  }
  .dl-8em dt .h-inline {
    width: 4.5em;
  }
  .dl-8em dd {
    margin-left: -9em;
    padding-left: 9em;
  }
  .dl-10em dt {
    width: 10em;
  }
  .dl-10em dt .h-inline {
    width: 6.5em;
  }
  .dl-10em dd {
    margin-left: -11em;
    padding-left: 11em;
  }
  .dl-12em dt {
    width: 12em;
  }
  .dl-12em dt .h-inline {
    width: 8.5em;
  }
  .dl-12em dd {
    margin-left: -13em;
    padding-left: 13em;
  }
  .dl-14em dt {
    width: 14em;
  }
  .dl-14em dt .h-inline {
    width: 10.5em;
  }
  .dl-14em dd {
    margin-left: -15em;
    padding-left: 15em;
  }
  .dl-16em dt {
    width: 16em;
  }
  .dl-16em dt .h-inline {
    width: 12.5em;
  }
  .dl-16em dd {
    margin-left: -17em;
    padding-left: 17em;
  }
  .dl-18em dt {
    width: 18em;
  }
  .dl-18em dt .h-inline {
    width: 14.5em;
  }
  .dl-18em dd {
    margin-left: -19em;
    padding-left: 19em;
  }
  .dl-20em dt {
    width: 20em;
  }
  .dl-20em dt .h-inline {
    width: 16.5em;
  }
  .dl-20em dd {
    margin-left: -21em;
    padding-left: 21em;
  }
}
.dl-mb_1em dd {
  margin-bottom: 1em;
}
.dl._underline {
  overflow: hidden;
}
.dl._underline dd:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
}
.dl._underline dt,
.dl._underline dd {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  box-sizing: border-box;
  font-size: 1rem;
}
.dl._horizontal dt {
  padding-top: 1em;
}
.dl._horizontal dt:first-child {
  padding-top: 0;
}
.dl._horizontal dd {
  padding-top: 0;
}

.main_content 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 {
  padding-left: 0 !important;
}
.main_content .link_list li::before {
  display: none !important;
}

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

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

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

wordpressのプラグインblockの場合（PublishPress Blocks）
<table class="wp-block-advgb-table">
    <thead></thead>
    <tbody><tbody>
</table>
*/
.table_wrapper table,
.root .wpnews table,
.main_content table.wp-block-advgb-table,
.main_content .wp-block-table table {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  border-collapse: collapse;
}
.table_wrapper table caption,
.root .wpnews table caption,
.main_content table.wp-block-advgb-table caption,
.main_content .wp-block-table table caption {
  display: none;
}
.table_wrapper table caption.cap,
.root .wpnews table caption.cap,
.main_content table.wp-block-advgb-table caption.cap,
.main_content .wp-block-table table caption.cap {
  display: block;
  text-align: left;
  font-weight: bold;
  color: #ff0000;
  padding-bottom: 0.5em;
}
.table_wrapper table th,
.table_wrapper table td,
.root .wpnews table th,
.root .wpnews table td,
.main_content table.wp-block-advgb-table th,
.main_content table.wp-block-advgb-table td,
.main_content .wp-block-table table th,
.main_content .wp-block-table table td {
  font-weight: normal;
  box-sizing: border-box;
  text-align: left;
  min-height: 70px;
  border: 1px solid #beccd1;
}
@media screen and (min-width: 1200px), 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.2;
  }
}
@media screen and (max-width: 1199px) {
  .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.8;
  }
}
@media screen and (max-width: 1199px) {
  .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: #0f2040;
  text-align: center;
  vertical-align: middle;
  font-size: clamp(16px, 1.7vw, 1rem);
  font-weight: normal;
}
@media screen and (min-width: 1200px), 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.7em 1.19em !important;
  }
}
@media screen and (max-width: 1199px) {
  .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.7em 0.84em !important;
  }
}
@media screen and (min-width: 1200px), 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.7em 1.75em !important;
  }
}
@media screen and (max-width: 1199px) {
  .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.7em 0.84em !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: #ffffff;
  background-color: #a3b2b9;
}
.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: #0f2040;
  background-color: #eeefef;
  font-weight: normal;
  letter-spacing: 0.15ex;
}
@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: 200px;
  }
}
@media screen and (max-width: 1199px) {
  .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: 200px;
  }
}
.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: #0f2040;
  background-color: #ffffff;
}

.root .wpnews table {
  width: auto;
}
.root .wpnews table tbody th {
  width: inherit;
}

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

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

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

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

スマホ時thとtdを縦に並べるためのstyle

*/
@media screen and (max-width: 1199px) {
  .sp_row_to_column table {
    display: block;
    box-sizing: border-box;
    border-collapse: collapse;
    border-bottom: none;
    border-radius: 0;
  }
  .sp_row_to_column table > tbody:first-child > tr:first-child > *:first-child,
  .sp_row_to_column table > thead:first-child > tr:first-child > *:first-child,
  .sp_row_to_column table > tr:first-child > *:first-child {
    border-top: none;
  }
  .sp_row_to_column thead,
  .sp_row_to_column tbody,
  .sp_row_to_column tr {
    display: block;
    width: 100%;
  }
  .sp_row_to_column thead:nth-child(even),
  .sp_row_to_column tbody:nth-child(even),
  .sp_row_to_column tr:nth-child(even) {
    background-color: transparent;
  }
  .sp_row_to_column th,
  .sp_row_to_column td {
    display: block;
    box-sizing: border-box;
    width: 100% !important;
    white-space: normal;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .sp_row_to_column th {
    color: #ffffff !important;
    background-color: #a3b2b9 !important;
    min-height: auto !important;
  }
  .sp_row_to_column td {
    color: #0f2040 !important;
    background-color: #ffffff !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: 1200px), 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: 1200px), print {
  ._th_long > table tbody th {
    width: 250px;
  }
}
@media screen and (max-width: 1199px) {
  ._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 リンク設定

*/
a {
  color: #549bd1;
  text-decoration: none;
}
a:hover {
  color: #0f2040;
}

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

/**************************
icon
*/
.out,
.ext,
.outlink,
.icon_out,
.icon_ext {
  display: inline-block;
  line-height: 1.4;
  color: #549bd1;
  padding-right: 15px;
  position: relative;
  transition: opacity 0.2s;
}
.out:hover,
.ext:hover,
.outlink:hover,
.icon_out:hover,
.icon_ext:hover {
  color: #549bd1;
}
.out::after,
.ext::after,
.outlink::after,
.icon_out::after,
.icon_ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0/18px 30px no-repeat transparent;
  width: 18px;
  height: 15px;
  margin-left: 0.3em;
  margin-top: -1em;
  position: relative;
  top: 0.1em;
  left: 0;
  background-position: 0 -15px;
}
.out:hover,
.ext:hover,
.outlink:hover,
.icon_out:hover,
.icon_ext:hover {
  color: #0f2040;
}
.out:hover::after,
.ext:hover::after,
.outlink:hover::after,
.icon_out:hover::after,
.icon_ext:hover::after {
  background-position: 0 0;
}

.pdf,
.icon_pdf {
  display: inline-block;
  line-height: 1.4;
  color: #549bd1;
  padding-right: 15px;
  position: relative;
  transition: opacity 0.2s;
}
.pdf:hover,
.icon_pdf:hover {
  color: #549bd1;
}
.pdf::after,
.icon_pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0/15px 38px no-repeat transparent;
  width: 15px;
  height: 19px;
  margin-left: 0.7em;
  margin-top: -1em;
  position: relative;
  top: 0.2em;
  left: 0;
}
.pdf:hover::after,
.icon_pdf:hover::after {
  background-position: 0 -19px;
}

/**************************
link
*/
.link {
  display: inline-block;
  line-height: 1.4;
  color: #549bd1;
  padding-right: 15px;
  position: relative;
  transition: opacity 0.2s;
}
.link:hover {
  color: #549bd1;
}
.link::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0/7px 22px no-repeat transparent;
  width: 7px;
  height: 11px;
  transform: translateY(-50%);
  position: relative;
  top: 0.25em;
  margin-left: 0.5em;
}
.link:hover {
  color: #549bd1;
}
.link:hover::after {
  background-position: 0 -11px;
}

.link_2 {
  color: #0f2040;
}

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

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

## - .btn - 汎用ボタン

*/
.btn {
  min-width: 250px;
  min-height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.063rem;
  text-decoration: none;
  color: #0f2040;
  line-height: 1.3;
  background-color: #ffffff;
  border: 0 none;
  border-radius: 40px;
  box-shadow: 0 3px 10px 0 rgba(6, 21, 35, 0.15);
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 1.1em 75px 1em 55px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 1.1em 70px 1em 50px;
  }
}
.btn.no_radius {
  border-radius: 0;
}
@media screen and (min-width: 1000px), print {
  .btn.large {
    min-width: 386px;
    min-height: 100px;
  }
}
.btn .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn .row > .text {
  flex-grow: 10;
}
.btn .row > .text + .icon {
  margin-left: 0.5em;
}
.btn .row > .icon {
  flex-grow: 0;
  display: flex;
  margin-top: -0.2em;
}
.btn .row > .icon + .text {
  margin-left: 0.5em;
}
.btn:not(._no_icon)::before {
  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: 22px;
  transform: translateY(-50%);
}
.btn._no_icon {
  padding-left: 50px;
  padding-right: 50px;
}
.btn.pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0/15px 38px no-repeat transparent;
  width: 15px;
  height: 19px;
  margin-left: 0.3em;
  margin-top: -1em;
  position: relative;
  top: 0.4em;
  left: 0;
}
.btn.pdf:hover {
  color: #0f2040;
}
.btn.out::after, .btn.ext::after, .btn.outlink::after, .btn.icon_out::after, .btn.icon_ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0/18px 30px no-repeat transparent;
  width: 18px;
  height: 15px;
  margin-left: 0.3em;
  margin-top: -1em;
  position: relative;
  top: 0.4em;
  left: 0;
}
.btn.out:hover, .btn.ext:hover, .btn.outlink:hover, .btn.icon_out:hover, .btn.icon_ext:hover {
  color: #0f2040;
}
.btn:hover {
  color: #ffffff;
  background-color: #4888bc;
}
.btn:hover::before {
  background-position: 0 -34px;
}
.btn-submit .content {
  justify-content: space-between;
}
.btn-submit .content > .text {
  text-align: center;
}
.btn._disabled {
  pointer-events: none;
  opacity: 0.3;
}
.btn._blue {
  background: linear-gradient(to bottom, #4fb8da 0%, #4888bc 100%);
  color: #ffffff;
  transition: color 0.2s ease-in-out;
}
.btn._blue:hover {
  background: #a5d1cf;
  color: #0f2040;
}
.btn._blue_with_icon {
  background: linear-gradient(to bottom, #4fb8da 0%, #4888bc 100%);
  color: #ffffff;
  transition: color 0.2s ease-in-out;
}
.btn._blue_with_icon:hover {
  background: #a5d1cf;
  color: #0f2040;
}
.btn._blue_with_icon::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/btn_white.webp") 0 0/21px 34px no-repeat transparent;
  width: 21px;
  height: 34px;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}
.btn-i {
  padding-left: 40px;
  min-height: 100px;
  border-radius: 50px;
  min-width: 300px;
  box-sizing: border-box;
  justify-content: flex-start;
}
.btn-i .icon {
  margin-right: 10px;
}
.btn-i .icon-switch {
  width: 48px;
  height: 46px;
  overflow: hidden;
}
.btn-i .icon-switch img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0 0;
  object-position: 0 0;
  width: 48px;
  height: 92px;
}
.btn-i .text {
  flex-grow: 10;
}
.btn-i .text .ja,
.btn-i .text .en {
  display: block;
}
.btn-i .text .ja {
  font-size: 1.063rem;
  margin-bottom: 0.2em;
}
.btn-i .text .en {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem;
}
.btn-i:hover .icon-switch img {
  -o-object-position: 0 -46px;
  object-position: 0 -46px;
}

button.btn {
  cursor: pointer;
}

.btn_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: var(--margin-section);
}
.btn_list .btn {
  width: 100%;
  margin-bottom: 0;
}
.btn_list.column2 > li {
  width: calc(50% - 10px);
}
.btn_list.column3 > li {
  width: calc(33.3333% - 13.3333333333px);
}
@media screen and (min-width: 1000px), print {
  .btn_list {
    gap: 30px;
  }
}
@media screen and (max-width: 999px) {
  .btn_list {
    gap: 20px;
  }
  .btn_list.column2 > li, .btn_list.column3 > li {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 575px) {
  .btn_list {
    flex-direction: column;
  }
  .btn_list.column2 > li, .btn_list.column3 > li {
    width: auto;
  }
}

.set:not(:last-child) {
  margin-bottom: var(--margin-section);
}
@media screen and (min-width: 1200px), print {
  .set {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .set > * {
    flex-grow: 10;
    width: 100%;
  }
  .set > .left {
    order: 1;
  }
  .set > .right {
    order: 2;
  }
  .set > .fix {
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media screen and (max-width: 1199px) {
  .set > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .set > *:first-child {
    margin-bottom: 2em;
  }
  .set > * > img {
    margin-left: auto;
    margin-right: auto;
  }
}

.breadcrumbs_area {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs_area {
    padding-left: 280px;
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs_area {
    padding-top: 30px;
  }
}

.breadcrumbs,
.bread_crumb {
  box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  flex-wrap: wrap;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs,
  .bread_crumb {
    line-height: 2;
  }
}
@media screen and (max-width: 999px) and (min-width: 576px) {
  .breadcrumbs,
  .bread_crumb {
    padding-top: 0;
    padding-bottom: 10px;
    padding-left: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 575px) {
  .breadcrumbs,
  .bread_crumb {
    padding-bottom: 0;
    display: flex;
  }
}
.breadcrumbs li,
.bread_crumb li {
  display: inline-block;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 0.813rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }
}
.breadcrumbs li:last-child,
.bread_crumb li:last-child {
  margin-left: 0;
  margin-right: 0;
}
.breadcrumbs li:not(:last-of-type),
.bread_crumb li:not(:last-of-type) {
  padding-right: 40px;
  position: relative;
}
.breadcrumbs li:not(:last-of-type)::after,
.bread_crumb li:not(:last-of-type)::after {
  font-size: 17px;
  font-weight: 400;
  display: inline-block;
  content: "/";
  color: #c1c1c1;
  position: absolute;
  inset: -1px 12px 0 auto;
}
@media screen and (max-width: 899px) {
  .breadcrumbs li:not(:last-of-type),
  .bread_crumb li:not(:last-of-type) {
    padding-right: 30px;
  }
  .breadcrumbs li:not(:last-of-type)::after,
  .bread_crumb li:not(:last-of-type)::after {
    inset: -5px 8px 0 auto;
  }
}
.breadcrumbs a,
.bread_crumb a {
  color: #549bd1;
  font-weight: 400;
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 0;
  padding-left: 0;
  text-decoration: none;
}
.breadcrumbs a:hover,
.bread_crumb a:hover {
  opacity: 0.7;
  text-decoration: none;
  border-bottom: 0;
}
@media screen and (max-width: 899px) {
  .breadcrumbs a,
  .bread_crumb a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.pagelink {
  margin-top: var(--margin-section);
}
@media screen and (min-width: 1000px), print {
  .pagelink {
    display: flex;
    align-items: center;
  }
}
.pagelink__head {
  position: relative;
}
@media screen and (min-width: 1000px), print {
  .pagelink__head {
    min-width: 140px;
    margin-right: 30px;
    flex-basis: 170px;
    flex-shrink: 2;
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 999px) {
  .pagelink__head {
    margin-bottom: 0.7em;
  }
}
.pagelink__head::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 50%;
  background-color: #0f2040;
}
@media screen and (min-width: 1000px), print {
  .pagelink__head::before {
    left: 0;
  }
}
@media screen and (max-width: 999px) {
  .pagelink__head::before {
    left: -33px;
  }
}
.pagelink__head .title {
  font-size: 1rem;
  padding-left: 0.7em;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .pagelink__head .title {
    margin-left: 1em;
  }
}
.pagelink__body {
  flex-grow: 10;
}
.pagelink__body ._box {
  min-height: 80px;
  background-color: #f5f7fa;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 60px;
  position: relative;
}
@media screen and (min-width: 576px), print {
  .pagelink__body ._box {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .pagelink__body ._box {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 1000px), print {
  .pagelink__body ._box {
    box-shadow: 1px 4px 20px 0 rgba(6, 21, 35, 0.15);
    border-radius: 40px;
  }
}
@media screen and (max-width: 999px) {
  .pagelink__body ._box {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    padding-right: 0;
    padding-left: 33px;
  }
  .pagelink__body ._box::after {
    content: "";
    display: block;
    height: 100%;
    width: 33px;
    position: absolute;
    top: 0;
    right: -33px;
    background-color: #f5f7fa;
  }
}
.pagelink__body ._box > li {
  margin: 0.5em 0;
}
@media screen and (min-width: 576px), print {
  .pagelink__body ._box > li:not(:last-child) {
    margin-right: 2em;
  }
}
@media screen and (max-width: 575px) {
  .pagelink__body ._box > li:not(:last-child) {
    margin-bottom: 1em;
  }
}
.pagelink__body ._box a {
  display: flex;
  align-items: center;
  color: #0f2040;
  line-height: 1.4;
}
.pagelink__body ._box a::after {
  content: "";
  display: block;
  background: url("../img/icon/arrow/down-black.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 11px;
  height: 7px;
}
@media screen and (min-width: 1000px), print {
  .pagelink__body ._box a {
    font-size: 1.063rem;
  }
}
@media screen and (max-width: 999px) {
  .pagelink__body ._box a {
    font-size: 1rem;
  }
}

/**************************
.box
*/
.box {
  background-color: #f4f4f4;
  margin-bottom: 2em;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px), print {
  .box {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 1199px) {
  .box {
    padding: clamp(30px, 3.3vw, 40px) clamp(30px, 3.5vw, 50px);
  }
}
.box .head {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 0.85em;
  margin-bottom: 0.85em;
}
.box .title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 1000px), print {
  .box .title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 999px) {
  .box .title {
    font-size: 1.125rem;
  }
}
.box._1 {
  background-color: #e5eff3;
}
.box._1 .head {
  border-bottom: 1px solid #b6d3de;
}
.box._2 {
  background-color: #e2edf8;
}
.box._2 .head {
  border-bottom: 1px solid #a5c1dd;
}

.newsline_list > li:not(:last-child) {
  border-bottom: 1px solid rgba(117, 131, 152, 0.2);
}
.newsline_list .newsline {
  padding: 1.25em 20px 0.8em 0;
  display: block;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
  color: #0f2040;
}
@media screen and (max-width: 575px) {
  .newsline_list .newsline {
    padding-right: 0;
  }
}
.newsline_list .newsline:hover .newsline__date,
.newsline_list .newsline:hover .newsline__cate > .label,
.newsline_list .newsline:hover .newsline__body {
  color: #549bd1;
}
.newsline_list .newsline__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
}
.newsline_list .newsline__date {
  color: #18264e;
  font-size: 0.875rem;
  min-width: 7.6em;
  margin-bottom: 0.4em;
  margin-top: 0.4em;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.newsline_list .newsline__cate {
  font-size: 12px;
  white-space: nowrap;
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 0.4em;
}
.newsline_list .newsline__cate > .label {
  margin-right: 1em;
  display: flex;
  align-items: center;
  height: 26px;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #f0f0f0;
  border-radius: 13px;
  color: #18264e;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.newsline_list .newsline__cate > .label:not(.new) {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
}
.newsline_list .newsline__cate > .label.new {
  background-color: #e4ecf9;
  color: #0f2040;
}
.newsline_list .newsline__body {
  color: #0f2040;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.newsline_list .newsline__ex {
  font-size: 1rem;
}
@media screen and (min-width: 576px), print {
  .newsline_list .newsline::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #0f2040;
    border-radius: 3px;
    box-sizing: border-box;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }
}
.newsline_list .newsline._disable {
  pointer-events: none;
}
.newsline_list .newsline._disable::after {
  display: none;
}
@media screen and (max-width: 1199px) {
  .newsline_list .newsline {
    display: block;
  }
}

.contact .required {
  display: inline-block;
  width: 70px;
  height: 32px;
  border-radius: 16px;
  align-content: center;
  text-align: center;
  line-height: 1.5;
  font-size: 14px;
  background-color: #ffffff;
  position: absolute;
  top: 2.1rem;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .contact .required {
    top: 0.55rem;
    right: 0;
  }
}
.contact__head {
  margin-left: -80px;
  background-color: #ffffff;
  margin-bottom: 1.5em;
  padding: 100px 80px 30px 160px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .contact__head {
    margin-bottom: 0.5em;
    margin-left: -33px;
    padding: clamp(40px, 6vw, 80px) 20px clamp(40px, 6vw, 80px) 55px;
  }
}
.contact__head > p {
  text-align: center;
}
@media screen and (max-width: 620px) {
  .contact__head > p {
    text-align: left;
  }
}
.contact__body {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.contact__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .contact__inner::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: calc(100% - 320px);
    height: 100%;
    width: 50vw;
    background-color: #f3f3f3;
    box-shadow: 5px 5px 9px rgba(94, 111, 128, 0.15);
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .contact__gr {
    display: flex;
    min-height: 100px;
  }
}
.contact__gr:not(:first-of-type) {
  border-top: 1px solid rgba(117, 131, 152, 0.2);
}
@media screen and (max-width: 767px) {
  .contact__gr:not(:first-of-type) {
    border-top: none;
  }
}
.contact__gr input[type=radio],
.contact__gr input[type=checkbox] {
  margin-right: 0.6em;
}
.contact__gr input[type=date i]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.contact__gr .form_btn_wrap {
  margin: 10px auto 0;
  width: 100%;
}
.contact__gr._submit {
  border-top: none;
  padding-top: 60px;
  padding-bottom: 0;
  display: block;
}
@media screen and (max-width: 575px) {
  .contact__gr._submit {
    padding-top: 20px;
  }
}
.contact__gr:last-of-type .contact__th {
  position: relative;
}
.contact__gr .previous {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.contact__th {
  background-color: #f3f3f3;
  flex-shrink: 0;
  padding: 2.42rem 115px 2.42rem 10px;
  box-sizing: border-box;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__th {
    min-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .contact__th {
    padding: 0.8rem 115px 0.8rem 1px;
  }
  .contact__th::after {
    content: "";
    display: inline-block;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    background-color: #f3f3f3;
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    z-index: -1;
  }
}
.contact__td {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 3.125rem;
  margin-right: 10px;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  box-sizing: border-box;
  align-content: center;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .contact__td {
    margin-left: 0;
    margin-right: 0;
  }
}
.contact__td input,
.contact__td textarea,
.contact__td select,
.contact__td option {
  background-color: #fafafa;
  box-sizing: border-box;
  box-shadow: 1px 1px 4px 1px rgba(101, 107, 121, 0.32) inset;
  padding: 20px 20px 20px 30px;
  min-height: 60px;
  width: 100%;
  border: none;
}
.contact__td input::-moz-placeholder, .contact__td textarea::-moz-placeholder, .contact__td select::-moz-placeholder, .contact__td option::-moz-placeholder {
  color: #99a3a8;
}
.contact__td input::placeholder,
.contact__td textarea::placeholder,
.contact__td select::placeholder,
.contact__td option::placeholder {
  color: #99a3a8;
}
@media screen and (max-width: 767px) {
  .contact__td input,
  .contact__td textarea,
  .contact__td select,
  .contact__td option {
    min-height: 45px;
    padding: 10px 18px;
  }
}
.contact__td textarea {
  min-height: 160px;
}
.contact__td p {
  margin-bottom: 0;
  padding-left: 0;
}
.contact__td.name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
@media screen and (max-width: 575px) {
  .contact__td.name {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.contact__td._half input {
  width: 50%;
  min-width: 280px;
}
@media screen and (max-width: 575px) {
  .contact__td._half input {
    width: 100%;
  }
}
.contact__td._medium input {
  width: 100%;
  max-width: 350px;
}
.contact__td._medium select {
  width: 240px;
}
.contact__td._short input {
  width: 100%;
  max-width: 180px;
}
.contact__td._short select {
  width: 120px;
}
.contact__td._row {
  display: flex;
  align-items: center;
  row-gap: 10px;
}
.contact__td._row .pre_text,
.contact__td._row .rear_text {
  display: inline-block;
  margin-top: 0.2rem;
}
.contact__td._row .pre_text {
  margin-right: 1.2rem;
  margin-left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .contact__td._row .pre_text {
    margin-right: 0.7rem;
    margin-left: 0.7rem;
  }
}
.contact__td._row .rear_text {
  margin-right: 1.2rem;
  margin-left: 1.2rem;
}
@media screen and (max-width: 767px) {
  .contact__td._row .rear_text {
    margin-right: 0.7rem;
    margin-left: 0.7rem;
  }
}
.contact__td._yubin input {
  padding: 20px 20px 20px 45px;
}
@media screen and (max-width: 767px) {
  .contact__td._yubin input {
    padding: 10px 20px 10px 45px;
  }
}
.contact__td._yubin .pre_text {
  position: absolute;
  left: 8px;
}
@media screen and (max-width: 767px) {
  .contact__td._yubin .pre_text {
    left: 5px;
  }
}
.contact__td select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

/**************************
	各項目 frame
*/
.text_frame input:focus, .text_frame input:active {
  outline: 2px solid #549bd1;
  outline-offset: -2px;
}

.select_frame {
  min-height: 60px;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .select_frame {
    min-height: 45px;
  }
}
.select_frame::after {
  display: block;
  content: "";
  width: 9px;
  height: 8px;
  background-size: contain;
  position: absolute;
  top: 1rem;
  right: 16px;
  z-index: 2;
}
.select_frame select {
  -webkit-user-modify: read-write-plaintext-only;
  -moz-user-modify: read-write-plaintext-only;
  box-sizing: border-box;
  margin: 0;
  border: 0 none;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  cursor: pointer;
}
.select_frame select:focus + .select_frame__display, .select_frame select:active + .select_frame__display {
  outline: 2px solid #549bd1;
  outline-offset: -2px;
}
.select_frame option {
  padding: 0 10px;
}

.select_area .date_box {
  display: flex;
}
@media screen and (max-width: 575px) {
  .select_area .date_box {
    flex-wrap: wrap;
  }
}
.select_area .date_box .date {
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.select_area .date_box .date._year {
  width: 36%;
  max-width: 180px;
}
@media screen and (max-width: 575px) {
  .select_area .date_box .date._year {
    width: 100%;
    max-width: none;
    margin-bottom: 1rem;
  }
}
.select_area .date_box .date._year .select_frame {
  width: 120px;
}
@media screen and (max-width: 575px) {
  .select_area .date_box .date._year .select_frame {
    width: 260px;
  }
}
.select_area .date_box .date._month, .select_area .date_box .date._day {
  width: 32%;
  max-width: 160px;
}
@media screen and (max-width: 575px) {
  .select_area .date_box .date._month, .select_area .date_box .date._day {
    width: 50%;
  }
}
.select_area .date_box .date._month .select_frame, .select_area .date_box .date._day .select_frame {
  width: 100px;
}
.select_area .date_box .date .date_text {
  margin-left: 11px;
  font-size: 1.125rem;
}
@media screen and (max-width: 575px) {
  .select_area .date_box .date .date_text {
    font-size: 1rem;
  }
}

.textarea_frame textarea {
  width: 100%;
  font-size: 1rem;
  box-sizing: border-box;
  line-height: 1.5em;
  margin: 0;
  padding: 1em 1.5em;
  height: 6em;
  resize: none;
}
.textarea_frame textarea:focus, .textarea_frame textarea:active {
  outline: 2px solid #549bd1;
  outline-offset: -2px;
}

.radio_frame {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.radio_frame label {
  margin-right: 2rem;
}
.radio_frame input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  padding: 0;
  transform: translateY(0.2rem);
}
.radio_frame input[type=radio]:checked {
  background-color: #4fb4d9;
  border: double 4px white;
}

.check_frame {
  position: relative;
  top: 0;
  left: 0;
  min-width: 19px;
  min-height: 19px;
}
.check_frame-focus .check_frame__display {
  outline: 2px solid #549bd1;
}
.check_frame__icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.check_frame__display {
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
}
.check_frame__input {
  cursor: pointer;
  position: absolute;
  -webkit-user-modify: read-write-plaintext-only;
  -moz-user-modify: read-write-plaintext-only;
  z-index: 1;
  left: 0;
  width: 19px;
  height: 19px;
  box-sizing: border-box;
  opacity: 0;
  padding: 0;
  margin: 0;
  border: 0 none;
}
.check_frame__input:focus + .check_frame__display {
  outline: 2px solid #549bd1;
  outline-offset: -2px;
}
.check_frame__display, .check_frame__input {
  top: 0.25em;
}
.check_frame__label {
  margin-left: 24px;
  display: block;
}
.check_frame__input:checked + .check_frame__display .check_frame__icon {
  opacity: 1;
  transform: scale(1);
}

/**************************
	確認・送信ボタン
*/
.form_btn_wrap .wpcf7-previous {
  margin-top: 15px;
  width: auto;
  border: none;
  background-color: transparent;
  box-shadow: none;
  text-decoration: underline;
  font-size: 1rem;
  letter-spacing: 0.14em;
  cursor: pointer;
}

.submit_btn {
  border: none;
  outline: none;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  width: 450px;
  height: 120px;
  align-content: center;
  position: relative;
  background: linear-gradient(to bottom, #4fb8da 0%, #4888bc 100%);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .submit_btn {
    width: 280px;
    height: 90px;
  }
}
.submit_btn p {
  padding: 0;
  margin: 0;
}
.submit_btn input[type=submit] {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  width: 450px;
  height: 120px;
  font-size: 1.375rem;
  letter-spacing: 0.15em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  color: #ffffff;
  box-shadow: none;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 80px;
  text-align: center;
  align-content: center;
  cursor: pointer;
  transform: translateX(-10px);
}
@media screen and (max-width: 767px) {
  .submit_btn input[type=submit] {
    text-align: left;
    padding: 0 70px 0 30px;
    font-size: 1.063rem;
    transform: none;
    width: 280px;
    height: 90px;
  }
}
.submit_btn .circle {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .submit_btn .circle {
    right: 10px;
  }
}
.submit_btn .back_btn {
  outline: 0;
  display: inline-block;
  margin: 0 0 0 auto;
  border: none;
  background-color: transparent;
  text-decoration: underline;
  text-align: center;
  transition: 0.2s;
}
.submit_btn .back_btn:hover {
  color: #23beb8;
}

/**************************
	フローバー 共通
*/
.contact__flow-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 60px;
  position: relative;
  width: 100%;
  max-width: 716px;
}
.contact__flow-list > li.line {
  width: clamp(50px, 10vw, 145px);
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  height: 1px;
  background-color: #9aa1ac;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__flow-list > li.line {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }
}
.contact__flow-list > li .info {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  letter-spacing: 0.1em;
  border: 1px solid #9aa1ac;
  text-align: center;
  align-content: center;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__flow-list > li .info {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 999px) {
  .contact__flow-list > li .info {
    row-gap: 10px;
  }
}
.contact__flow-list > li.active .info {
  background-color: #0f2040;
  border: 1px solid transparent;
}
.contact__flow-list > li.active .info::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0f2040;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .contact__flow-list > li.active .info::before {
    top: -20px;
    width: 8px;
    height: 8px;
  }
}
.contact__flow-list > li.active .info::after {
  content: "";
  display: inline-block;
  background: url("/common/img/form/flow_active.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 188px;
  height: 188px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .contact__flow-list > li.active .info::after {
    width: 120px;
    height: 120px;
  }
}
.contact__flow-list > li.active .info .num,
.contact__flow-list > li.active .info .text {
  color: #ffffff;
}
.contact__flow-list > li .num,
.contact__flow-list > li .text {
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact__flow-list > li .num,
  .contact__flow-list > li .text {
    font-size: 14px;
  }
}
.contact__flow-list > li .text {
  transform: translateY(-7px);
}

/**************************
	確認画面
*/
.contact._confirm {
  margin-top: 60px;
}
.contact._confirm .select_area .date_box .date._year .select_frame,
.contact._confirm .select_area .date_box .date._month .select_frame,
.contact._confirm .select_area .date_box .date._day .select_frame {
  width: auto;
}
.contact._confirm .select_frame {
  align-content: center;
  width: auto;
}
.contact._confirm .select_frame::after {
  content: none;
  display: none;
}
.contact._confirm .pre_text,
.contact._confirm .rear_text {
  margin-top: 0;
  align-content: center;
}

/**************************
	完了画面
*/
.content_header {
  padding-bottom: var(--image-height);
  margin-bottom: calc(var(--image-height) * -0.36);
  /*****************************
   * 下の画像の高さを決定する
   */
  /*****************************
   *
   */
}
@media screen and (min-width: 1360px), print {
  .content_header {
    --image-height: 460px;
  }
}
@media screen and (max-width: 1359px) {
  .content_header {
    --image-height: clamp(240px, 34vw, 460px);
  }
}
@media screen and (max-width: 1000px) {
  .content_header {
    --image-height: 240px;
  }
}
@media screen and (max-width: 575px) {
  .content_header {
    --image-height: 150px;
  }
}
@media screen and (min-width: 1400px), print {
  .content_header {
    padding-top: 182px;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1000px) {
  .content_header {
    padding-top: var(--sp-header-clamp);
  }
}
@media screen and (max-width: 999px) {
  .content_header {
    padding-top: calc(var(--sp-header-clamp) + clamp(10px, 1vw, 0px));
  }
}
@media screen and (min-width: 1000px), print {
  .content_header-no_image {
    padding-bottom: 32px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 999px) {
  .content_header-no_image {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.content_header .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.content_header .bg__shadow-wrapper {
  filter: drop-shadow(0 5px 8px rgba(94, 111, 128, 0.3));
}
@media screen and (min-width: 1000px), print {
  .content_header .bg__image_clip, .content_header .bg__image {
    width: 100vw;
    height: 600px;
  }
}
@media screen and (max-width: 999px) {
  .content_header .bg__image_clip, .content_header .bg__image {
    width: 100vw;
    height: clamp(425px, 52vw, 600px);
  }
}
@media screen and (min-width: 1000px), print {
  .content_header .bg__image_clip {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  }
}
@media screen and (max-width: 1099px) {
  .content_header .bg__image_clip {
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  }
}
@media screen and (max-width: 999px) {
  .content_header .bg__image_clip {
    clip-path: polygon(0 0, 100% 0, 100% 84.7%, 0 100%);
  }
}
.content_header .bg__image {
  background: linear-gradient(to bottom, #dee5e9 0%, #fafafa 100%);
  position: relative;
}
@keyframes zoom_before {
  0% {
    opacity: 0;
    filter: blur(50px);
  }
  10% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.8;
    transform: scale(1.33);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.33);
  }
}
@keyframes zoom_after {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.content_header .bg__image::before, .content_header .bg__image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.content_header .bg__image::before {
  background: url("../img/content_header/bg/pc/animation_left.webp") right center/cover no-repeat transparent;
  transform-origin: right 40%;
  z-index: 2;
  animation-name: zoom_before;
  animation-duration: 2.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
}
.content_header .bg__image::after {
  background: url("../img/content_header/bg/pc/default.webp") right center/cover no-repeat transparent;
  z-index: 1;
  animation-name: zoom_after;
  animation-duration: 2.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
}
@media screen and (min-width: 1000px), print {
  .content_header .bg__image::before {
    background-image: url("../img/content_header/bg/pc/animation_left.webp");
    transform-origin: right 40%;
  }
  .content_header .bg__image::after {
    background-image: url("../img/content_header/bg/pc/default.webp");
  }
}
@media screen and (max-width: 999px) {
  .content_header .bg__image::before {
    background-image: url("../img/content_header/bg/sp/animation_left.webp");
    transform-origin: right 37%;
  }
  .content_header .bg__image::after {
    background-image: url("../img/content_header/bg/sp/default.webp");
  }
}
.content_header svg {
  position: absolute;
}
.content_header .container {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1000px), print {
  .content_header .container::before {
    content: "";
    display: block;
    height: 2px;
    width: 120px;
    background-color: #0f2040;
    position: absolute;
    bottom: -32px;
  }
}
.content_header__title .ja {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  color: #0f2040;
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
}
@media screen and (min-width: 1000px), print {
  .content_header__title .ja {
    font-size: 38px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 999px) {
  .content_header__title .ja {
    font-size: clamp(22px, 3.5vw, 38px);
    margin-bottom: 0.2em;
  }
}
.content_header__title .ja .text {
  position: relative;
  z-index: 2;
}
.content_header__title .ja::after {
  content: "";
  display: block;
  background: url("../img/icon/title-echo.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 180px;
  height: 110px;
  position: absolute;
  top: calc(-55px + 0.8em);
  right: -144px;
  opacity: 0;
  transform-origin: left center;
  animation-name: echo;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
  animation-delay: 1.6s;
  animation-iteration-count: 1;
}
@keyframes echo {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@media screen and (max-width: 1000px) {
  .content_header__title .ja::after {
    transform: scale(0.65);
    transform-origin: center left;
  }
}
@media screen and (max-width: 575px) {
  .content_header__title .ja::after {
    width: 130px;
    top: calc(-44px + 0.8em);
    right: -104px;
    height: 80px;
  }
}
.content_header__title .en {
  position: relative;
}
@media screen and (min-width: 1000px), print {
  .content_header__title .en {
    left: 0.5em;
  }
}
@media screen and (max-width: 999px) {
  .content_header__title .en {
    left: clamp(0.2em, 0.3vw, 0.5em);
    margin-top: 0.3em;
    line-height: 1;
  }
}
.content_header__title .en__fg {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 200;
  position: relative;
  z-index: 2;
  color: #0f2040;
  opacity: 0;
  animation-name: left;
  animation-duration: 2.5s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
}
@keyframes left {
  0% {
    opacity: 0;
    transform: translateX(10px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@media screen and (max-width: 1000px) {
  .content_header__title .en__fg {
    transform: scale(0.65);
    transform-origin: center left;
  }
}
@media screen and (min-width: 1200px), print {
  .content_header__title .en__fg {
    font-size: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .content_header__title .en__fg {
    font-size: clamp(14px, 2.8vw, 24px);
  }
}
.content_header__title .en__bg {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  color: #ffffff;
  text-shadow: -2px 0 10px rgba(94, 111, 128, 0.4);
  line-height: 1;
  position: absolute;
  left: 0.7em;
  z-index: 1;
  opacity: 0;
  animation-name: left2;
  animation-duration: 2.5s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
  animation-delay: 1s;
  animation-iteration-count: 1;
}
@keyframes left2 {
  0% {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@media screen and (min-width: 1000px), print {
  .content_header__title .en__bg {
    font-size: 55px;
    top: 0.02em;
  }
}
@media screen and (max-width: 999px) {
  .content_header__title .en__bg {
    font-size: clamp(32px, 5.7vw, 55px);
    top: -0.22em;
  }
}
.content_header .fg {
  --container-width: 1200px;
}
.content_header .fg .image {
  position: absolute;
  z-index: 2;
  right: 0;
}
@media screen and (min-width: 1360px), print {
  .content_header .fg .image,
  .content_header .fg .image img {
    width: calc(100vw - (100vw - var(--container-width)) / 2 - 120px - 60px);
  }
}
@media screen and (max-width: 1359px) and (min-width: 1000px) {
  .content_header .fg .image,
  .content_header .fg .image img {
    width: calc(100vw - 80px - 60px - 120px);
  }
}
@media screen and (max-width: 999px) {
  .content_header .fg .image,
  .content_header .fg .image img {
    width: calc(100vw - 33px);
  }
}
.content_header .fg .image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  height: var(--image-height);
}

.mw_hero {
  margin-bottom: 40px;
}
@media screen and (min-width: 767px), print {
  .mw_hero {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 576px), print {
  .mw_hero {
    display: flex;
    justify-content: space-between;
  }
  .mw_hero__l {
    flex: 0 0 400px;
  }
  .mw_hero__r {
    flex: 0 10 800px;
    padding-left: clamp(20px, 4vw, 140px);
  }
}
@media screen and (max-width: 575px) {
  .mw_hero {
    margin-bottom: 50px;
  }
}
.mw_hero .catchcopy {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  font-size: clamp(18px, 5vw, 24px);
  margin-bottom: clamp(80px, 20vw, 120px);
}
.mw_hero .title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  margin-left: -0.3em;
  font-size: clamp(18px, 6vw, 34px);
  line-height: 1;
  margin-bottom: 1em;
}
.mw_hero .title .text {
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.mw_hero .title .text._large {
  font-size: 45px;
  font-size: clamp(23px, 8vw, 45px);
  margin-left: -0.2em;
  margin-right: 0.1em;
  letter-spacing: 0.1em;
  position: relative;
}
.mw_hero .title .deco::after {
  content: "";
  display: block;
  background: url("../img/medical_workers/deco_hero_text.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 160px;
  height: 130px;
  position: absolute;
  z-index: 1;
  top: -1.3em;
  left: -1.2em;
}
@media screen and (min-width: 576px), print {
  .mw_hero .photo_area {
    display: flex;
    padding-top: 100px;
  }
}
@media screen and (max-width: 575px) {
  .mw_hero .photo_area {
    display: none;
  }
}
.mw_hero .photo {
  position: relative;
  width: 400px;
  height: 520px;
  margin: auto;
}
.mw_hero .photo img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: inherit;
}
.mw_hero .photo .content {
  border-radius: 5px;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #ffffff;
  box-sizing: border-box;
}
.mw_hero .photo .frame {
  position: absolute;
  z-index: 1;
}
.mw_hero .photo-1 .content {
  left: 44px;
  top: 23px;
}
.mw_hero .photo-1 .content img {
  width: 320px;
  height: 421px;
}
@media screen and (min-width: 1000px), print {
  .mw_hero .photo-2 {
    top: -160px;
  }
}
.mw_hero .photo-2 .content {
  left: 27px;
  top: 22px;
}
.mw_hero .photo-2 .content img {
  width: 342px;
  height: 451px;
}

.mw_news {
  position: relative;
  padding-bottom: 50px;
  padding-top: clamp(40px, 10vw, 100px);
  padding-right: clamp(20px, 5vw, 50px);
}
@media screen and (max-width: 575px) {
  .mw_news {
    padding-right: 0;
  }
}
.mw_news__content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
}
@media screen and (min-width: 1000px), print {
  .mw_news__head {
    padding-right: 250px;
  }
}
.mw_news__head h3:not(.cancel) {
  margin-top: 0;
}
.mw_news__deco_text {
  pointer-events: none;
  position: absolute;
  top: -40px;
  right: -17%;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .mw_news__deco_text {
    top: -20px;
    right: -40%;
  }
}
.mw_news__deco_text img {
  display: block;
  max-width: inherit;
}
@media screen and (max-width: 999px) {
  .mw_news__deco_text img {
    width: clamp(400px, 80vw, 800px);
  }
}
@media screen and (min-width: 1000px), print {
  .mw_news__link {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 999px) {
  .mw_news__link {
    padding-top: 30px;
    text-align: center;
  }
}
.mw_news__link .btn {
  min-width: 230px;
}
.mw_news::after {
  content: "";
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(243, 243, 243, 0.5);
  box-shadow: 2px 2px 10px 0 rgba(94, 111, 128, 0.2);
}
@media screen and (max-width: 575px) {
  .mw_news::after {
    right: -33px;
  }
}

.root {
  overflow: hidden;
}
.root-search {
  overflow: hidden;
}
.root-search .content_header {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px), print {
  .root-search .content_header {
    padding-top: 175px;
    --image-height: auto;
  }
}
.root-search .content_header .bg {
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 1000px), print {
  .root-search .content_header .bg__image {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
    height: 505px;
  }
}
@media screen and (max-width: 999px) {
  .root-search .content_header .bg__image {
    clip-path: polygon(0 0, 100% 0, 100% 84.7%, 0 100%);
    height: clamp(340px, 20vw, 600px);
  }
}
@media screen and (max-width: 756px) {
  .root-search .content_header .bg__image {
    height: 285px;
  }
}
@media screen and (max-width: 575px) {
  .root-search .content_header .bg__image {
    height: 255px;
  }
}
@media screen and (min-width: 1000px), print {
  .root-search .content_header .container {
    max-height: 100px;
  }
  .root-search .content_header .container::before {
    bottom: -76px;
  }
}
.root-search .content_header__title {
  pointer-events: none;
}
@media screen and (min-width: 1000px), print {
  .root-search .content_header__title .ja {
    margin-bottom: 0;
  }
}
.root-search .content_body__panel {
  padding-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .root-search .content_body__panel {
    padding-bottom: 0;
  }
}
.root-search .breadcrumbs_area > .bread_crumb {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px), print {
  .root-search .breadcrumbs_area {
    transform: translateY(-33px);
  }
}

.serch_area {
  background: linear-gradient(0deg, rgb(72, 136, 188) 0%, rgb(79, 184, 218) 100%);
  box-shadow: 2.868px 4.096px 8px 0px rgba(94, 111, 128, 0.2);
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 1259px) {
  .serch_area {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 756px) {
  .serch_area {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 756px) {
  .serch_area {
    background: transparent;
    padding-right: 0;
    padding-left: 0;
    box-shadow: none;
  }
}
.serch_area__face {
  max-width: 1600px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.serch_area__face img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  mix-blend-mode: screen;
}
@media screen and (max-width: 1599px) {
  .serch_area__face {
    max-width: none;
    width: 1600px;
    left: -5%;
  }
}
@media screen and (max-width: 1199px) {
  .serch_area__face {
    left: -14%;
  }
}
@media screen and (max-width: 999px) {
  .serch_area__face {
    left: -19%;
  }
}
@media screen and (max-width: 899px) {
  .serch_area__face {
    top: 0;
    left: -25%;
  }
}
@media screen and (max-width: 850px) {
  .serch_area__face {
    left: -30%;
  }
}
@media screen and (max-width: 800px) {
  .serch_area__face {
    left: -35%;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__face {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 649px) {
  .serch_area__face {
    top: 5px;
  }
}
.serch_area__face .title {
  position: absolute;
  top: 19%;
  left: 51.5%;
}
.serch_area__face .title .symptoms_title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 2.188rem;
  color: #ffffff;
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1199px) {
  .serch_area__face .title {
    left: 56.5%;
  }
}
@media screen and (max-width: 999px) {
  .serch_area__face .title .symptoms_title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__face .title {
    position: static;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
  }
  .serch_area__face .title .symptoms_title {
    font-size: 1.125rem;
  }
}
.serch_area__face .icon {
  margin: auto;
  width: 100%;
  height: 100%;
}
.serch_area__face .icon .svg_wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 21%;
  right: auto;
  bottom: auto;
  left: 21%;
  margin: auto;
  width: 300px;
  height: 420px;
}
.serch_area__face .icon .svg_wrap svg {
  position: absolute;
}
@media screen and (max-width: 999px) {
  .serch_area__face .icon .svg_wrap {
    top: 16%;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__face .icon .svg_wrap {
    top: 20%;
    left: 20%;
    width: 23%;
    height: 47%;
  }
  .serch_area__face .icon .svg_wrap svg {
    height: 100%;
  }
}
@media screen and (max-width: 575px) {
  .serch_area__face .icon .svg_wrap {
    top: 13%;
    left: 26%;
    width: 39%;
    height: 70%;
  }
  .serch_area__face .icon .svg_wrap svg {
    width: 100% !important;
  }
}
.serch_area__face .icon .svg_wrap._pain svg {
  width: 280px;
}
.serch_area__face .icon .svg_wrap._pain svg .svg-elem-1 {
  stroke-dashoffset: 220.3977966309px;
  stroke-dasharray: 220.3977966309px;
}
.serch_area__face .icon .svg_wrap._pain svg .svg-elem-2 {
  stroke-dashoffset: 213.1933288574px;
  stroke-dasharray: 213.1933288574px;
}
.serch_area__face .icon .svg_wrap._pain.active .svg-elem-1 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._pain.active .svg-elem-2 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._itch svg {
  width: 240px;
}
.serch_area__face .icon .svg_wrap._itch svg .svg-elem-1 {
  stroke-dashoffset: 119.2502746582px;
  stroke-dasharray: 119.2502746582px;
}
.serch_area__face .icon .svg_wrap._itch svg .svg-elem-2 {
  stroke-dashoffset: 119.2503433228px;
  stroke-dasharray: 119.2503433228px;
}
.serch_area__face .icon .svg_wrap._itch.active .svg-elem-1 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._itch.active .svg-elem-2 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.12s;
}
.serch_area__face .icon .svg_wrap._ear_discharge svg {
  width: 70px;
  bottom: 0;
}
.serch_area__face .icon .svg_wrap._ear_discharge svg .svg-elem-1 {
  fill: transparent;
  stroke-dashoffset: 261.79px;
  stroke-dasharray: 261.79px;
}
@media screen and (max-width: 756px) {
  .serch_area__face .icon .svg_wrap._ear_discharge svg {
    width: 40px !important;
    height: auto;
  }
}
.serch_area__face .icon .svg_wrap._ear_discharge.active .svg-elem-1 {
  stroke-dashoffset: 261.79px;
  stroke-dasharray: 261.79px;
  fill: rgb(255, 255, 255);
  transition: fill 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.1s;
}
.serch_area__face .icon .svg_wrap._inarticulate svg {
  width: 285px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.serch_area__face .icon .svg_wrap._inarticulate svg .svg-elem-1 {
  fill: transparent;
  stroke-dasharray: 351.72px;
  stroke-dashoffset: 351.72px;
}
@media screen and (max-width: 756px) {
  .serch_area__face .icon .svg_wrap._inarticulate svg {
    width: 135px !important;
  }
}
.serch_area__face .icon .svg_wrap._inarticulate.active .svg-elem-1 {
  fill: rgb(255, 255, 255);
  stroke-dasharray: 351.72px;
  stroke-dashoffset: 351.72px;
  transition: fill 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._resound svg {
  width: 270px;
}
.serch_area__face .icon .svg_wrap._resound svg .svg-elem-1 {
  stroke-dashoffset: 1004.8438720703px;
  stroke-dasharray: 1004.8438720703px;
}
.serch_area__face .icon .svg_wrap._resound.active .svg-elem-1 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._resound svg {
  width: 240px;
}
.serch_area__face .icon .svg_wrap._resound svg .svg-elem-1 {
  stroke-dashoffset: 72.1693878174px;
  stroke-dasharray: 72.1693878174px;
}
.serch_area__face .icon .svg_wrap._resound svg .svg-elem-2 {
  stroke-dashoffset: 107.2511138916px;
  stroke-dasharray: 107.2511138916px;
}
.serch_area__face .icon .svg_wrap._resound svg .svg-elem-3 {
  stroke-dashoffset: 37.0804443359px;
  stroke-dasharray: 37.0804443359px;
}
.serch_area__face .icon .svg_wrap._resound svg .svg-elem-4 {
  stroke-dashoffset: 72.1698303223px;
  stroke-dasharray: 72.1698303223px;
}
.serch_area__face .icon .svg_wrap._resound svg .svg-elem-5 {
  stroke-dashoffset: 107.24949646px;
  stroke-dasharray: 107.24949646px;
}
.serch_area__face .icon .svg_wrap._resound svg .svg-elem-6 {
  stroke-dashoffset: 37.0700492859px;
  stroke-dasharray: 37.0700492859px;
}
.serch_area__face .icon .svg_wrap._resound.active .svg-elem-1 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._resound.active .svg-elem-2 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._resound.active .svg-elem-3 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._resound.active .svg-elem-4 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._resound.active .svg-elem-5 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._resound.active .svg-elem-6 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._clogged svg {
  width: 190px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.serch_area__face .icon .svg_wrap._clogged svg .svg-elem-1 {
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  fill: transparent;
}
.serch_area__face .icon .svg_wrap._clogged svg .svg-elem-2 {
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  fill: transparent;
}
.serch_area__face .icon .svg_wrap._clogged svg .svg-elem-3 {
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  fill: transparent;
}
.serch_area__face .icon .svg_wrap._clogged svg .svg-elem-4 {
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  fill: transparent;
}
.serch_area__face .icon .svg_wrap._clogged svg .svg-elem-5 {
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  fill: transparent;
}
@media screen and (max-width: 756px) {
  .serch_area__face .icon .svg_wrap._clogged svg {
    width: 130px !important;
  }
}
.serch_area__face .icon .svg_wrap._clogged.active .svg-elem-1 {
  fill: rgb(255, 255, 255);
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  transition: fill 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s, stroke-dashoffset 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
.serch_area__face .icon .svg_wrap._clogged.active .svg-elem-2 {
  fill: rgb(255, 255, 255);
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  transition: fill 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.1s, stroke-dashoffset 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.1s;
}
.serch_area__face .icon .svg_wrap._clogged.active .svg-elem-3 {
  fill: rgb(255, 255, 255);
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  transition: fill 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s, stroke-dashoffset 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.2s;
}
.serch_area__face .icon .svg_wrap._clogged.active .svg-elem-4 {
  fill: rgb(255, 255, 255);
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  transition: fill 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s, stroke-dashoffset 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.3s;
}
.serch_area__face .icon .svg_wrap._clogged.active .svg-elem-5 {
  fill: rgb(255, 255, 255);
  stroke-dashoffset: 72.0575px;
  stroke-dasharray: 72.0575px;
  transition: fill 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s, stroke-dashoffset 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.4s;
}
.serch_area__face .icon .svg_wrap._something svg {
  width: 130px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.serch_area__face .icon .svg_wrap._something svg .svg-elem-1 {
  stroke-dashoffset: 210.047744751px;
  stroke-dasharray: 210.047744751px;
}
@media screen and (max-width: 756px) {
  .serch_area__face .icon .svg_wrap._something svg {
    width: 100px !important;
  }
}
.serch_area__face .icon .svg_wrap._something.active .svg-elem-1 {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s;
}
@media screen and (max-width: 756px) {
  .serch_area__face {
    position: relative;
    background: linear-gradient(0deg, rgb(72, 136, 188) 0%, rgb(79, 184, 218) 100%);
  }
}
.serch_area__inner {
  max-width: 1200px;
  max-height: 100%;
  margin: auto;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 756px) {
  .serch_area__inner {
    flex-direction: column;
    position: static;
    box-sizing: border-box;
  }
}
.serch_area__main {
  flex-basis: 66.67%;
  padding-top: 165px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 999px) {
  .serch_area__main {
    padding-top: 120px;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__main {
    flex-basis: auto;
    width: 100%;
    padding-top: 0;
  }
}
.serch_area__main__top {
  display: flex;
  flex-direction: row-reverse;
  flex-grow: 1;
}
.serch_area__main__title {
  flex-basis: 25%;
  padding-top: 6px;
  padding-left: 25px;
  box-sizing: border-box;
}
.serch_area__main__title .symptoms_title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 2.188rem;
  color: #ffffff;
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  display: none;
}
@media screen and (max-width: 1199px) {
  .serch_area__main__title {
    flex-basis: 15%;
    padding-right: 30px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 999px) {
  .serch_area__main__title .symptoms_title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__main__title {
    position: absolute;
    top: 40px;
    right: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }
  .serch_area__main__title .symptoms_title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 575px) {
  .serch_area__main__title {
    top: 20px;
    right: 30px;
  }
  .serch_area__main__title .symptoms_title {
    font-size: 1rem;
  }
}
.serch_area__main__left {
  flex-basis: 75%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 756px) {
  .serch_area__main__left {
    position: absolute;
    top: 14%;
    left: 19%;
  }
}
@media screen and (max-width: 1340px) {
  .serch_area__main__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 999px) {
  .serch_area__main__bottom {
    align-items: flex-start;
  }
}
.serch_area__main__bottom .explanation_box {
  max-width: 600px;
  background-color: rgba(15, 32, 64, 0.2);
  text-align: center;
  color: #ffffff;
  line-height: 1.765;
  padding: 16px 10px;
  font-size: 1.063rem;
  margin-bottom: 60px;
  letter-spacing: 0.15em;
  box-sizing: border-box;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  90% {
    transform: translateX(-100%);
    opacity: 1;
  }
  91% {
    transform: translateX(-100%);
    opacity: 0;
  }
  92% {
    transform: translateX(0);
    opacity: 0;
  }
  99% {
    transform: translateX(0), translateY(100%);
    opacity: 1;
  }
  100% {
    transform: translateX(0), translateY(0%);
    opacity: 1;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__main__bottom .explanation_box {
    padding: 5px 15px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%; /* 親要素に合わせて幅を設定 */
  }
  .serch_area__main__bottom .explanation_box span {
    display: inline-block;
    animation: scroll 10s linear infinite;
    animation-delay: 2.5s;
  }
  .serch_area__main__bottom .explanation_box .br {
    display: none;
  }
}
@media screen and (max-width: 1340px) {
  .serch_area__main__bottom .explanation_box {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 999px) {
  .serch_area__main__bottom .explanation_box {
    margin-bottom: 10px;
    width: calc(100% - 20px);
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__main__bottom .explanation_box {
    width: 100%;
    max-width: none;
    margin-top: -34px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 576px) {
  .serch_area__main__bottom .explanation_box {
    margin-top: -29px;
  }
}
.serch_area__main__bottom .search_input_wrap {
  height: 120px;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  position: relative;
  background-color: rgba(117, 184, 220, 0.9);
}
.serch_area__main__bottom .search_input_wrap:before {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background-color: rgba(117, 184, 220, 0.9);
  position: absolute;
  right: 100%;
  z-index: -1;
  top: 0;
}
@media screen and (max-width: 1340px) {
  .serch_area__main__bottom .search_input_wrap {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 999px) {
  .serch_area__main__bottom .search_input_wrap {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 20px;
    padding-bottom: 15px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__main__bottom .search_input_wrap {
    padding-right: 20px;
    padding-left: 20px;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .serch_area__main__bottom .search_input_wrap:before {
    display: none;
  }
}
.serch_area__main__bottom .search_input_wrap > .head {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.serch_area__main__bottom .search_input_wrap > .body {
  position: relative;
}
.serch_area__main__bottom .search_input_wrap > .body .search_input {
  width: 460px;
  height: 60px;
  border: none;
  box-shadow: inset 1.338px 1.486px 5px 0px rgba(101, 107, 121, 0.35);
  box-sizing: border-box;
  padding: 10px 40px 10px 18px;
}
@media screen and (max-width: 999px) {
  .serch_area__main__bottom .search_input_wrap > .body {
    width: 100%;
  }
  .serch_area__main__bottom .search_input_wrap > .body .search_input {
    width: 100%;
    height: 40px;
  }
  .serch_area__main__bottom .search_input_wrap > .body .search__submit {
    height: 40px;
  }
}
.serch_area__symptoms {
  flex-basis: 33.33%;
  height: 100%;
  background-color: rgba(35, 125, 172, 0.9);
  box-shadow: -3.536px 3.536px 10px 0px rgba(65, 126, 161, 0.4);
  padding-top: 165px;
  padding-bottom: 105px;
  padding-left: 100px;
  box-sizing: border-box;
  margin-left: 0;
  margin-left: auto;
  position: relative;
}
.serch_area__symptoms::after {
  width: 100vw;
  height: 100%;
  display: block;
  content: "";
  background-color: rgba(35, 125, 172, 0.9);
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  border: 1px solid transparent;
  box-sizing: border-box;
}
.serch_area__symptoms._result::before {
  display: block;
  content: "";
  width: 30px;
  height: 26px;
  background: url("/common/img/search/search_triangle.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  bottom: auto;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 756px) {
  .serch_area__symptoms._result::before {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .serch_area__symptoms {
    padding-left: 40px;
  }
}
@media screen and (max-width: 999px) {
  .serch_area__symptoms {
    padding-top: 120px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__symptoms {
    flex-basis: auto;
    width: 100%;
    padding: 20px;
    box-shadow: none;
  }
  .serch_area__symptoms::after {
    display: none;
  }
}
.serch_area__symptoms .head {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 45px;
}
@media screen and (max-width: 999px) {
  .serch_area__symptoms .head {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 756px) {
  .serch_area__symptoms .head {
    display: none;
  }
}
.serch_area__symptoms .symptoms_list {
  max-height: 550px;
}
@media screen and (max-width: 756px) {
  .serch_area__symptoms .symptoms_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .serch_area__symptoms .symptoms_list > li {
    width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 575px) {
  .serch_area__symptoms .symptoms_list > li {
    width: 100%;
  }
}
.serch_area__symptoms .symptoms_list > li:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.serch_area__symptoms .symptoms_list .symptoms {
  min-height: 77px;
  justify-content: space-between;
  box-sizing: border-box;
  padding-right: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
}
.serch_area__symptoms .symptoms_list .symptoms > .text {
  color: #ffffff;
  font-size: 1.063rem;
  transition: transform 0.3s;
  pointer-events: none;
}
.serch_area__symptoms .symptoms_list .symptoms > .circle {
  transform: translateX(15px);
  height: 77px;
  width: 77px;
}
.serch_area__symptoms .symptoms_list .symptoms:hover > .text, .serch_area__symptoms .symptoms_list .symptoms.active > .text {
  color: #fdd000;
  transform: translateX(30px);
}
@media screen and (max-width: 999px) {
  .serch_area__symptoms .symptoms_list .symptoms > .text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .serch_area__symptoms .symptoms_list .symptoms {
    min-height: 50px;
  }
  .serch_area__symptoms .symptoms_list .symptoms > .circle {
    height: 50px;
    width: 50px;
  }
  .serch_area__symptoms .symptoms_list .symptoms > .circle .circle__content,
  .serch_area__symptoms .symptoms_list .symptoms > .circle .disc,
  .serch_area__symptoms .symptoms_list .symptoms > .circle .wave {
    height: 50px;
    width: 50px;
  }
  .serch_area__symptoms .symptoms_list .symptoms:hover > .text {
    transform: translateX(10px);
  }
}
.serch_area__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.serch_area__circle img {
  display: block;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 756px) {
  .serch_area__circle {
    display: none;
  }
}

.symptoms_btn_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 45px;
  column-gap: 45px;
  row-gap: 45px;
  background-color: #f0f1f1;
  padding: 35px 60px;
}
.symptoms_btn_list .btn {
  width: 100%;
  justify-content: flex-start;
  min-height: 90px;
}
@media screen and (max-width: 1199px) {
  .symptoms_btn_list {
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    padding: 30px 40px;
  }
  .symptoms_btn_list .btn {
    min-width: auto;
    padding-left: 30px;
  }
}
@media screen and (max-width: 756px) {
  .symptoms_btn_list {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px 20px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  .symptoms_btn_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.search_result_area {
  position: relative;
  padding-bottom: 120px;
  margin-top: 100px;
}
@media screen and (max-width: 999px) {
  .search_result_area {
    margin-top: 50px;
  }
}
@media screen and (max-width: 756px) {
  .search_result_area {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 576px) {
  .search_result_area {
    padding-bottom: 0;
  }
}
.search_result_area::after {
  display: block;
  content: "";
  width: 200vw;
  height: 100%;
  background-color: #f3f3f3;
  box-shadow: -4.145px 2.796px 8px 0px rgba(94, 111, 128, 0.2);
  position: absolute;
  top: 0;
  left: 370px;
  z-index: -1;
}
@media screen and (max-width: 576px) {
  .search_result_area::after {
    display: none;
  }
}
@media screen and (min-width: 1000px), print {
  .search_result_area .pagelink {
    margin-bottom: 100px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 999px) {
  .search_result_area .pagelink {
    margin-bottom: 50px;
  }
}
.search_result_area .pagelink__head::before {
  z-index: -1;
}
.search_result_area .pagelink__head > .title {
  z-index: -1;
}
.search_result_area__heading {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
  padding-top: 40px;
}
.search_result_area__heading::before {
  display: block;
  content: "";
  width: 82px;
  height: 82px;
  background: url("/common/img/icon/h3-circle_search.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 25px;
  left: -40px;
  z-index: -1;
}

.disease_box_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
@media screen and (max-width: 1260px) {
  .disease_box_wrap {
    row-gap: 50px;
  }
}
@media screen and (max-width: 999px) {
  .disease_box_wrap {
    row-gap: 30px;
  }
}

.disease_box {
  min-height: 380px;
  display: flex;
  background-color: #ffffff;
  padding: 48px 30px 75px 80px;
  box-sizing: border-box;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
  position: relative;
  transition: box-shadow 1s;
  transition: background-color 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.disease_box::after {
  display: block;
  content: "";
  width: 230px;
  height: 225px;
  background: url("/common/img/search/corner_circle.webp") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1260px) {
  .disease_box {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 999px) {
  .disease_box {
    flex-direction: column;
    row-gap: 30px;
    padding: 40px 30px 40px 30px;
  }
}
@media screen and (max-width: 756px) {
  .disease_box {
    flex-direction: column;
    row-gap: 20px;
    padding: 20px 30px 25px 30px;
  }
}
@media screen and (max-width: 576px) {
  .disease_box {
    row-gap: 15px;
    padding: 15px 25px;
  }
  .disease_box::after {
    width: 160px;
    height: 155px;
  }
}
@keyframes disease_box_hover_animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes disease_box_unhover_animation {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.disease_box.use_disc:hover .wave {
  filter: sepia(1) hue-rotate(60deg) saturate(5);
}
@media screen and (max-width: 999px) {
  .disease_box.use_disc .circle {
    width: 60px;
    height: 60px;
  }
  .disease_box.use_disc .circle__content {
    width: 60px;
    height: 60px;
  }
  .disease_box.use_disc .circle__content .disc {
    width: 60px;
    height: 60px;
  }
  .disease_box.use_disc .circle__content .wave {
    width: 60px;
    height: 60px;
  }
}
.disease_box:hover {
  box-shadow: 1px 1px 5px 0px rgba(6, 21, 35, 0.15);
  background: #f5f7fa;
}
.disease_box:hover::after {
  transform-origin: bottom left;
  animation: disease_box_hover_animation 1.5s forwards;
}
.disease_box:hover .disease_box__img img {
  transform-origin: bottom left;
  transform: scale(0.99);
}
.disease_box:not(:hover)::after {
  transform-origin: bottom left;
  animation: disease_box_unhover_animation 1s forwards;
}
.disease_box * {
  display: block;
}
.disease_box__text {
  flex-basis: 460px;
  color: #0f2040;
  position: relative;
  z-index: 2;
}
.disease_box__text > .head {
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  margin-bottom: 30px;
}
.disease_box__text > .head > .title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
  font-weight: 600;
}
.disease_box__text > .head > .title > .kanji {
  font-size: 1.875rem;
  letter-spacing: 0.11em;
  line-height: 1.5;
}
.disease_box__text > .head > .title > .kana {
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 1.3;
}
.disease_box__text > .body {
  letter-spacing: 0.05em;
  line-height: 2.063;
}
@media screen and (max-width: 999px) {
  .disease_box__text {
    flex-basis: auto;
    width: 100%;
  }
}
@media screen and (max-width: 756px) {
  .disease_box__text > .head {
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  .disease_box__text > .head > .title > .kanji {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .disease_box__text > .head {
    padding-bottom: 5px;
  }
  .disease_box__text > .head > .title > .kanji {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .disease_box__text > .head > .title > .kana {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .disease_box__text > .body {
    line-height: 1.5;
  }
}
.disease_box__img {
  width: 580px;
  position: absolute;
  top: -40px;
  right: -40px;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
}
.disease_box__img img {
  display: block;
  transition: 0.2s;
}
@media screen and (max-width: 1260px) {
  .disease_box__img {
    position: static;
    padding-left: 30px;
  }
}
@media screen and (max-width: 999px) {
  .disease_box__img {
    position: static;
    width: 100%;
    z-index: 2;
    padding-left: 0;
  }
}

.disease_detail_box_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  margin-top: 70px;
}
@media screen and (max-width: 756px) {
  .disease_detail_box_wrap {
    row-gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .disease_detail_box_wrap {
    margin-top: 40px;
  }
}

.disease_detail_box {
  padding: 60px 0 60px 70px;
  position: relative;
  box-sizing: border-box;
}
.disease_detail_box::after {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: linear-gradient(0deg, rgb(252, 252, 252) 0%, rgb(243, 243, 243) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-shadow: -4.145px 2.796px 8px 0px rgba(94, 111, 128, 0.2);
}
@media screen and (max-width: 756px) {
  .disease_detail_box {
    padding: 40px 0 40px 50px;
  }
}
@media screen and (max-width: 576px) {
  .disease_detail_box {
    padding: 40px 0 40px 40px;
  }
}
.disease_detail_box__title {
  margin-top: 0 !important;
  padding-bottom: 20px;
  position: relative;
}
.disease_detail_box__title::after {
  display: block;
  content: "";
  width: calc(100% - 25px);
  height: 2px;
  background-color: #0f2040;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 576px) {
  .disease_detail_box__title {
    padding-bottom: 10px;
  }
  .disease_detail_box__title::after {
    height: 1px;
  }
}
.disease_detail_box__sub_title {
  margin-top: calc(var(--margin-section) * 0.6) !important;
}

.use_disc .circle, .use_disc .circle__content,
.use_disc .circle .disc,
.use_disc .circle .wave {
  transform-origin: center center;
}
@media screen and (min-width: 576px), print {
  .use_disc .circle, .use_disc .circle__content,
  .use_disc .circle .disc,
  .use_disc .circle .wave {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 575px) {
  .use_disc .circle, .use_disc .circle__content,
  .use_disc .circle .disc,
  .use_disc .circle .wave {
    width: clamp(60px, 16vw, 80px);
    height: clamp(60px, 16vw, 80px);
  }
}
.use_disc .circle .disc,
.use_disc .circle .wave {
  position: absolute;
}
.use_disc .circle .disc {
  transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.use_disc .circle .wave {
  transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.use_disc .circle img {
  max-width: 100%;
}
.use_disc:hover .circle .disc {
  transform: scale(0.8);
  filter: brightness(0.9);
}
.use_disc:hover .circle .wave {
  transform: rotate(900deg);
  filter: brightness(2);
}

.disc_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.disc_link .text {
  color: #ffffff;
  line-height: 1.3;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (min-width: 1200px), print {
  .disc_link .text {
    min-width: calc(100% + 30px - 100px);
    font-size: 1rem;
    margin-right: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .disc_link .text {
    font-size: 0.938rem;
  }
}
.disc_link .circle {
  margin-top: -2px;
  margin-bottom: -2px;
}
.disc_link:hover .text {
  color: #fdd000;
}
@media screen and (min-width: 1200px), print {
  .disc_link:hover .text {
    transform: translateX(30px);
  }
}

.root-interview {
  overflow: hidden;
}
.root-interview .content_header {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px), print {
  .root-interview .content_header {
    padding-top: 175px;
    --image-height: auto;
  }
}
.root-interview .content_header .bg {
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 1000px), print {
  .root-interview .content_header .bg__image {
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 100%);
    height: 505px;
  }
}
@media screen and (max-width: 999px) {
  .root-interview .content_header .bg__image {
    clip-path: polygon(0 0, 100% 0, 100% 84.7%, 0 100%);
    height: clamp(430px, 47vw, 600px);
  }
}
@media screen and (max-width: 756px) {
  .root-interview .content_header .bg__image {
    height: clamp(335px, 52vw, 600px);
  }
}
@media screen and (min-width: 1000px), print {
  .root-interview .content_header .container {
    max-height: 100px;
  }
  .root-interview .content_header .container::before {
    bottom: -76px;
  }
}
.root-interview .content_header__title {
  pointer-events: none;
}
@media screen and (min-width: 1000px), print {
  .root-interview .content_header__title .ja {
    margin-bottom: 0;
  }
}
.root-interview .content_body__panel {
  padding-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .root-interview .content_body__panel {
    padding-bottom: 0;
  }
}
.root-interview .breadcrumbs_area > .bread_crumb {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px), print {
  .root-interview .breadcrumbs_area {
    transform: translateY(-33px);
  }
}

.intetview_area__main {
  margin-bottom: 107px;
}
@media screen and (min-width: 1600px), print {
  .intetview_area__main {
    background-color: #ceba95;
  }
}
@media screen and (max-width: 767px) {
  .intetview_area__main {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .intetview_area__main {
    margin-top: -20px;
  }
}
.intetview_area__main__container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.intetview_area__main__container::after {
  display: block;
  content: "";
  width: 200vw;
  height: 34px;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.3);
  background: linear-gradient(90deg, rgb(72, 136, 188) 0%, rgb(79, 184, 218) 30.94%, rgb(79, 184, 218) 100%);
  position: absolute;
  top: 100%;
  left: 69.06%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%);
}
@media screen and (max-width: 767px) {
  .intetview_area__main__container::after {
    width: 150px;
    height: 20px;
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 575px) {
  .intetview_area__main__container {
    padding-top: 30px;
  }
}
.intetview_area__main__img {
  position: relative;
  height: 500px;
}
.intetview_area__main__img .main_img {
  width: 3000px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
.intetview_area__main__img > .face {
  width: 1600px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  pointer-events: none;
}
.intetview_area__main__img img {
  display: block;
}
@media screen and (max-width: 767px) {
  .intetview_area__main__img .main_img {
    left: 35%;
  }
  .intetview_area__main__img > .face {
    left: 35%;
  }
}
@media screen and (max-width: 575px) {
  .intetview_area__main__img {
    height: 300px;
  }
  .intetview_area__main__img .main_img {
    width: 1800px;
    height: 300px;
    left: 30%;
  }
  .intetview_area__main__img > .face {
    width: 960px;
    height: 300px;
    left: 30%;
  }
}
.intetview_area__main__text {
  position: absolute;
  bottom: 73px;
  left: 12.3%;
  text-shadow: 2.3px 3.3px 4px rgba(6, 21, 35, 0.35);
  color: #ffffff;
  z-index: 101;
}
.intetview_area__main__text > .main {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.intetview_area__main__text > .main::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0px 3px 3px 0px rgba(6, 21, 35, 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
.intetview_area__main__text > .main > .name {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  font-size: 4.1875rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
.intetview_area__main__text > .main > .post {
  padding-top: 10px;
}
.intetview_area__main__text > .main > .post > .main {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.5;
}
.intetview_area__main__text > .sub {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  padding-left: 5px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1199px) {
  .intetview_area__main__text {
    left: 5%;
  }
}
@media screen and (max-width: 999px) {
  .intetview_area__main__text {
    bottom: 11%;
  }
  .intetview_area__main__text > .main {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .intetview_area__main__text > .main > .name {
    font-size: 3rem;
  }
  .intetview_area__main__text > .main > .post > .main {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 756px) {
  .intetview_area__main__text {
    left: 20px;
    color: #0f2040;
    text-shadow: none;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    box-sizing: border-box;
  }
  .intetview_area__main__text > .main {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .intetview_area__main__text > .main > .name {
    font-size: 2.5rem;
  }
  .intetview_area__main__text > .main > .post {
    padding-top: 0;
  }
  .intetview_area__main__text > .main > .post > .main {
    font-size: 1.125rem;
  }
  .intetview_area__main__text > .main > .post > .sub {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 575px) {
  .intetview_area__main__text > .main {
    padding-bottom: 0;
  }
  .intetview_area__main__text > .main > .name {
    font-size: 2rem;
  }
  .intetview_area__main__text > .sub {
    font-size: 1rem;
  }
}
@media screen and (max-width: 420px) {
  .intetview_area__main__text {
    padding: 10px;
  }
  .intetview_area__main__text > .main {
    padding-bottom: 5px;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .intetview_area__main__text > .main > .name {
    font-size: 1.625rem;
  }
  .intetview_area__main__text > .main > .post > .main {
    font-size: 1rem;
  }
  .intetview_area__main__text > .main > .post > .sub {
    line-height: 1.5;
  }
  .intetview_area__main__text > .sub {
    line-height: 1.5;
  }
}

.intetview_content_area {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media screen and (max-width: 1420px) {
  .intetview_content_area {
    padding-right: 20px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 999px) {
  .intetview_content_area {
    row-gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .intetview_content_area {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.intetview_section_box {
  position: relative;
}
.intetview_section_box._bg::after {
  display: block;
  content: "";
  width: 100vw;
  position: absolute;
  background: #f3f3f3;
  box-shadow: -4.145px 2.796px 8px 0px rgba(94, 111, 128, 0.2);
  z-index: -2;
}
.intetview_section_box._bg-1::after {
  height: 416px;
  top: 140px;
  left: 100px;
}
.intetview_section_box._bg-2::after {
  height: 786px;
  top: 177px;
  right: 430px;
}
.intetview_section_box._bg-3 {
  padding-top: 107px;
}
.intetview_section_box._bg-3::after {
  height: 550px;
  top: 0;
  left: 100px;
}
.intetview_section_box._bg-4::after {
  height: 580px;
  top: 172px;
  right: 430px;
}
@media screen and (max-width: 575px) {
  .intetview_section_box._bg::after {
    display: none;
  }
  .intetview_section_box._bg-3 {
    padding-top: 0;
  }
}
.intetview_section_box__heading {
  color: #0f2040;
  position: relative;
  padding-bottom: 27px;
  margin-bottom: 28px;
  display: flex;
}
.intetview_section_box__heading::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow: 0px 3px 3px 0px rgba(6, 21, 35, 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
.intetview_section_box__heading > .num {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 2.188rem;
  font-style: italic;
  margin-right: 42px;
  position: relative;
  line-height: 1.429;
}
.intetview_section_box__heading > .num::before {
  display: block;
  content: "";
  width: 60px;
  height: 42px;
  background: url("/common/img/interview/interview_heading_chapter.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: -18px;
  z-index: -1;
}
.intetview_section_box__heading > .num::after {
  display: block;
  content: "";
  width: 10px;
  height: 5px;
  background: #cedeea;
  position: absolute;
  top: 0.73em;
  right: -23px;
  bottom: auto;
  left: auto;
  margin: auto;
}
.intetview_section_box__heading > .text {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 2.188rem;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
  line-height: 1.429;
}
@media screen and (max-width: 1199px) {
  .intetview_section_box__heading {
    padding-bottom: 20px;
  }
  .intetview_section_box__heading > .num {
    font-size: 1.75rem;
  }
  .intetview_section_box__heading > .text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 999px) {
  .intetview_section_box__heading {
    padding-bottom: 10px;
  }
  .intetview_section_box__heading > .num {
    font-size: 1.5rem;
  }
  .intetview_section_box__heading > .num::before {
    top: -15px;
  }
  .intetview_section_box__heading > .num::after {
    height: 2px;
  }
  .intetview_section_box__heading > .text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  .intetview_section_box__heading {
    margin-top: 2em;
    margin-bottom: 20px;
  }
  .intetview_section_box__heading > .num {
    font-size: 1.25rem;
    margin-right: 20px;
  }
  .intetview_section_box__heading > .num::after {
    right: -14px;
  }
  .intetview_section_box__heading > .num::before {
    width: 42px;
    height: 42px;
    background: url("/common/img/interview/interview_heading_circle.webp") no-repeat;
    background-size: contain;
    top: -8px;
  }
  .intetview_section_box__heading > .text {
    font-size: 1.25rem;
  }
}
.intetview_section_box .text_wrap {
  line-height: 2.063;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  text-align: justify;
}
.intetview_section_box .img_wrap img {
  width: 100%;
  display: block;
}
.intetview_section_box._text_only, .intetview_section_box._img_right {
  padding-left: 200px;
  box-sizing: border-box;
}
.intetview_section_box._text_only .text_wrap, .intetview_section_box._img_right .text_wrap {
  padding-left: 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 1420px) {
  .intetview_section_box._text_only, .intetview_section_box._img_right {
    padding-left: 160px;
  }
}
@media screen and (max-width: 1199px) {
  .intetview_section_box._text_only, .intetview_section_box._img_right {
    padding-left: 100px;
  }
}
@media screen and (max-width: 999px) {
  .intetview_section_box._text_only, .intetview_section_box._img_right {
    padding-left: 0;
  }
}
.intetview_section_box._text_only, .intetview_section_box._img_left {
  padding-right: 100px;
}
@media screen and (max-width: 1420px) {
  .intetview_section_box._text_only, .intetview_section_box._img_left {
    padding-right: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .intetview_section_box._text_only, .intetview_section_box._img_left {
    padding-right: 30px;
  }
}
@media screen and (max-width: 999px) {
  .intetview_section_box._text_only, .intetview_section_box._img_left {
    padding-right: 0;
  }
  .intetview_section_box._text_only .text_wrap, .intetview_section_box._img_left .text_wrap {
    padding-left: 15px;
  }
}
.intetview_section_box._flex {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.intetview_section_box._flex .text_wrap {
  margin-top: -9px;
}
.intetview_section_box._flex._no_heading {
  -moz-column-gap: 100px;
  column-gap: 100px;
}
.intetview_section_box._flex._no_heading .text_wrap {
  flex-basis: 500px;
}
.intetview_section_box._flex._no_heading._img_left .img_wrap {
  width: 700px;
  flex-basis: 700px;
  position: relative;
}
.intetview_section_box._flex._no_heading._img_right .img_wrap {
  width: 600px;
  flex-basis: 600px;
  position: relative;
}
@media screen and (max-width: 1420px) {
  .intetview_section_box._flex._no_heading {
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .intetview_section_box._flex._no_heading {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 999px) {
  .intetview_section_box._flex._no_heading .text_wrap {
    flex-basis: auto;
  }
  .intetview_section_box._flex._no_heading._img_left .img_wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 595px;
    flex-basis: auto;
  }
  .intetview_section_box._flex._no_heading._img_right .img_wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    flex-basis: auto;
  }
}
.intetview_section_box._flex._use_heading {
  -moz-column-gap: 85px;
  column-gap: 85px;
}
.intetview_section_box._flex._use_heading .text_wrap {
  flex-basis: 600px;
}
.intetview_section_box._flex._use_heading._img_left .img_wrap {
  width: 595px;
  flex-basis: 595px;
  position: relative;
}
.intetview_section_box._flex._use_heading._img_right .img_wrap {
  width: 500px;
  flex-basis: 500px;
  position: relative;
}
@media screen and (max-width: 1420px) {
  .intetview_section_box._flex._use_heading {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
}
@media screen and (max-width: 1199px) {
  .intetview_section_box._flex._use_heading {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 999px) {
  .intetview_section_box._flex._use_heading .text_wrap {
    flex-basis: auto;
  }
  .intetview_section_box._flex._use_heading._img_left .img_wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 595px;
    flex-basis: auto;
  }
  .intetview_section_box._flex._use_heading._img_right .img_wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    flex-basis: auto;
  }
}
.intetview_section_box._flex._img_left .img_wrap {
  order: 1;
}
.intetview_section_box._flex._img_left .text_wrap {
  order: 2;
}
@media screen and (max-width: 999px) {
  .intetview_section_box._flex {
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 0;
  }
  .intetview_section_box._flex._img_left .img_wrap {
    order: 2;
  }
  .intetview_section_box._flex._img_left .text_wrap {
    order: 1;
  }
}

.doctor_profile_area {
  position: relative;
  box-sizing: border-box;
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-width: 1220px) {
  .doctor_profile_area {
    padding-right: 20px;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .doctor_profile_area {
    padding-top: 0;
  }
}
.doctor_profile_area__profile {
  background: #f6f6f6;
  background-size: cover;
  padding: 36px 68px 45px 68px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 3.473px 3.597px 8px 0px rgba(94, 111, 128, 0.2);
}
.doctor_profile_area__profile::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url("/common/img/interview/interview_profile_bg.webp") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.5;
  pointer-events: none;
}
.doctor_profile_area__profile::before {
  display: block;
  content: "";
  width: 300px;
  height: 44px;
  background: linear-gradient(90deg, rgb(72, 136, 188) 0%, rgb(79, 184, 218) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
  position: absolute;
  bottom: 0;
  top: calc(100% - 10px);
  right: 20px;
}
@media screen and (max-width: 999px) {
  .doctor_profile_area__profile {
    padding: 36px 40px 45px 40px;
  }
}
@media screen and (max-width: 767px) {
  .doctor_profile_area__profile {
    padding: 36px 30px 45px 30px;
  }
}
@media screen and (max-width: 575px) {
  .doctor_profile_area__profile {
    padding: 20px 20px 30px 20px;
  }
  .doctor_profile_area__profile::before {
    width: 200px;
    height: 20px;
    right: 10px;
  }
}
.doctor_profile_area__profile > .head {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(117, 131, 152, 0.35);
  padding-left: 10px;
  padding-bottom: 30px;
}
.doctor_profile_area__profile > .head > .text_wrap > .title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #b5b5b5;
  font-size: 1.25rem;
  letter-spacing: 0em;
}
.doctor_profile_area__profile > .head > .text_wrap > .name {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 33px;
  column-gap: 33px;
  line-height: 1.5;
  letter-spacing: 0.14em;
}
.doctor_profile_area__profile > .head > .text_wrap > .name > .post {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .doctor_profile_area__profile > .head {
    padding-bottom: 20px;
    padding-top: 0;
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .doctor_profile_area__profile > .head > .text_wrap > .title {
    font-size: 1.125rem;
  }
  .doctor_profile_area__profile > .head > .text_wrap > .name {
    font-size: 1.75rem;
  }
  .doctor_profile_area__profile > .head > .text_wrap > .name > .post {
    font-size: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .doctor_profile_area__profile > .head {
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
  }
  .doctor_profile_area__profile > .head > .text_wrap > .title {
    font-size: 1rem;
  }
  .doctor_profile_area__profile > .head > .text_wrap > .name {
    font-size: 1.375rem;
  }
}
.doctor_profile_area__profile > .body {
  display: flex;
  flex-direction: column;
  row-gap: 27px;
}
.doctor_profile_area__profile > .body .profile_gr {
  display: flex;
  -moz-column-gap: 32px;
  column-gap: 32px;
  padding-left: 7px;
}
.doctor_profile_area__profile > .body .profile_gr > .profile_th {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1.063rem;
  width: 135px;
  min-width: 135px;
  height: 40px;
  text-align: center;
  background: linear-gradient(0deg, rgba(221, 226, 228, 0.2) 0%, rgba(172, 196, 221, 0.2) 100%);
  position: relative;
}
.doctor_profile_area__profile > .body .profile_gr > .profile_th::before {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: rgba(15, 32, 64, 0.35);
  position: absolute;
  top: 0;
  right: -10px;
  bottom: 0;
  left: auto;
  margin: auto;
}
.doctor_profile_area__profile > .body .profile_gr > .profile_td {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.doctor_profile_area__profile > .body .profile_gr > .profile_td > .line {
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.doctor_profile_area__profile > .body .profile_gr > .profile_td > .line > .year {
  width: 110px;
  min-width: 110px;
}
@media screen and (max-width: 767px) {
  .doctor_profile_area__profile > .body .profile_gr {
    flex-direction: column;
    padding-left: 0;
  }
  .doctor_profile_area__profile > .body .profile_gr > .profile_th::before {
    display: none;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .doctor_profile_area__profile > .body .profile_gr > .profile_th {
    font-size: 1rem;
    height: 35px;
  }
  .doctor_profile_area__profile > .body .profile_gr > .profile_td > .line {
    flex-direction: column;
    align-items: flex-start;
  }
}

.content_body__panel._news {
  margin-bottom: 0;
  padding-bottom: 0;
}

.news_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.news_heading::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  box-shadow: 0px 3px 3px 0px rgba(6, 21, 35, 0.15);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1199px) {
  .news_heading {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 999px) {
  .news_heading {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .news_heading::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .news_heading {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.news_heading__text {
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  flex-basis: 160px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.news_heading__text::before {
  display: block;
  content: "";
  width: 80px;
  height: 80px;
  background: url("../img/icon/news_heading_circle.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: -15px;
  left: -40px;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .news_heading__text::before {
    left: -20px;
  }
}
@media screen and (max-width: 999px) {
  .news_heading__text {
    width: 100%;
    flex-basis: auto;
    margin-bottom: 30px;
  }
  .news_heading__text::before {
    width: 60px;
    height: 60px;
  }
  .news_heading__text::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    box-shadow: 0px 3px 3px 0px rgba(6, 21, 35, 0.15);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media screen and (max-width: 575px) {
  .news_heading__text {
    font-size: 1.375rem;
  }
}
.news_heading__btn_list {
  display: flex;
  gap: 20px;
}
.news_heading__btn_list .news_cat_btn {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  display: block;
  width: 196px;
  height: 56px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
  box-sizing: border-box;
  padding: 10px 10px;
  color: #0f2040;
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.news_heading__btn_list .news_cat_btn.selected {
  box-shadow: none;
  background-color: #eceef2;
}
.news_heading__btn_list .news_cat_btn:not(.selected):hover {
  box-shadow: 1px 2px 10px 0px rgba(6, 21, 35, 0.15);
}
@media screen and (max-width: 1199px) {
  .news_heading__btn_list .news_cat_btn {
    width: 170px;
    height: 45px;
    padding: 4px 10px;
  }
}
@media screen and (max-width: 999px) {
  .news_heading__btn_list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 757px) {
  .news_heading__btn_list {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }
  .news_heading__btn_list .news_cat_btn {
    width: 130px;
    height: 40px;
    font-size: 0.938rem;
  }
}

.content_body__panel._news h2 {
  margin-top: 0;
}

@media screen and (min-width: 1000px), print {
  .wpnews {
    min-height: 200px;
  }
}

.hews_title_head {
  display: flex;
  align-items: center;
  padding-left: 25px;
}
.hews_title_head > .date {
  font-size: 0.938rem;
  margin-right: 15px;
}
.hews_title_head > .cate {
  font-size: 12px;
  white-space: nowrap;
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 0.4em;
}
.hews_title_head > .cate > .label {
  margin-right: 1em;
  display: flex;
  align-items: center;
  height: 26px;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #f0f0f0;
  border-radius: 13px;
  color: #18264e;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.hews_title_head > .cate > .label:not(.new) {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
}
.hews_title_head > .cate > .label.new {
  background-color: #e4ecf9;
  color: #0f2040;
}
@media screen and (max-width: 575px) {
  .hews_title_head {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }
  .hews_title_head > .date {
    padding-left: 5px;
  }
  .hews_title_head > .cate {
    display: flex;
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .hews_title_head > .cate > .label {
    margin-right: 5px;
  }
}

.news_bottom_btn_column {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}
.news_bottom_btn_column::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(117, 131, 152, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.news_bottom_btn_column > * {
  width: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 757px) {
  .news_bottom_btn_column {
    flex-direction: column;
    row-gap: 25px;
  }
  .news_bottom_btn_column::before {
    display: none;
  }
  .news_bottom_btn_column > * {
    width: 100%;
  }
}
.news_bottom_btn_column .news_bottom_btn {
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  color: #0f2040;
}
.news_bottom_btn_column .news_bottom_btn__circle {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
  margin-right: 60px;
}
.news_bottom_btn_column .news_bottom_btn__circle::before {
  display: block;
  content: "";
  width: 6px;
  height: 9px;
  background: url("/common/img/icon/arrow/small_arrow.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 757px) {
  .news_bottom_btn_column .news_bottom_btn__circle {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 499px) {
  .news_bottom_btn_column .news_bottom_btn__circle {
    display: none;
  }
}
.news_bottom_btn_column .news_bottom_btn._prev {
  padding-left: 90px;
  padding-right: 20px;
}
.news_bottom_btn_column .news_bottom_btn._prev .news_bottom_btn__circle {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 757px) {
  .news_bottom_btn_column .news_bottom_btn._prev {
    border-bottom: 1px solid rgba(117, 131, 152, 0.2);
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 0;
  }
}
@media screen and (max-width: 499px) {
  .news_bottom_btn_column .news_bottom_btn._prev {
    padding-left: 0;
  }
}
.news_bottom_btn_column .news_bottom_btn._next {
  align-items: flex-end;
  padding-right: 90px;
  padding-left: 20px;
}
.news_bottom_btn_column .news_bottom_btn._next .news_bottom_btn__circle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
}
.news_bottom_btn_column .news_bottom_btn._next .news_bottom_btn__circle::before {
  transform: scale(-1, 1);
}
.news_bottom_btn_column .news_bottom_btn._next .news_bottom_btn__text_wrap {
  justify-content: flex-end;
}
.news_bottom_btn_column .news_bottom_btn._next .news_bottom_btn__text_wrap .head {
  flex-direction: row-reverse;
}
.news_bottom_btn_column .news_bottom_btn._next .news_bottom_btn__text_wrap > .label {
  margin-left: auto;
}
@media screen and (max-width: 757px) {
  .news_bottom_btn_column .news_bottom_btn._next {
    padding-right: 50px;
    padding-left: 0;
  }
}
@media screen and (max-width: 499px) {
  .news_bottom_btn_column .news_bottom_btn._next {
    align-items: flex-start;
    padding-right: 0;
  }
  .news_bottom_btn_column .news_bottom_btn._next .news_bottom_btn__text_wrap .head {
    flex-direction: row;
  }
  .news_bottom_btn_column .news_bottom_btn._next .news_bottom_btn__text_wrap > .label {
    margin-left: unset;
  }
}
.news_bottom_btn_column .news_bottom_btn__text_wrap {
  display: flex;
  flex-direction: column;
}
.news_bottom_btn_column .news_bottom_btn__text_wrap > .label {
  width: 100px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  background: linear-gradient(0deg, rgba(221, 226, 228, 0.2) 0%, rgba(172, 196, 221, 0.2) 100%);
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: #0f2040;
}
.news_bottom_btn_column .news_bottom_btn__text_wrap .head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1;
}
.news_bottom_btn_column .news_bottom_btn__text_wrap .head .date {
  color: #18264e;
  font-size: 0.875rem;
  min-width: 7.6em;
  margin-bottom: 0.4em;
  margin-top: 0.4em;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.news_bottom_btn_column .news_bottom_btn__text_wrap .head .cate {
  font-size: 12px;
  white-space: nowrap;
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: 0.4em;
}
.news_bottom_btn_column .news_bottom_btn__text_wrap .head .cate > .label {
  width: 100px;
  box-sizing: border-box;
  text-align: center;
  margin-right: 1em;
  display: flex;
  align-items: center;
  height: 26px;
  padding-left: 1em;
  padding-right: 1em;
  background-color: #f0f0f0;
  border-radius: 13px;
  color: #18264e;
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.news_bottom_btn_column .news_bottom_btn__text_wrap .head .cate > .label:not(.new) {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
}
@media screen and (max-width: 499px) {
  .news_bottom_btn_column .news_bottom_btn__text_wrap {
    width: 100%;
  }
}
.news_bottom_btn_column .news_bottom_btn:hover {
  color: #549bd1;
}
.news_bottom_btn_column .news_bottom_btn:hover._prev .news_bottom_btn__circle {
  box-shadow: 1px 2px 10px 0px rgba(6, 21, 35, 0.15);
}
.news_bottom_btn_column .news_bottom_btn:hover._prev .news_bottom_btn__circle::before {
  transform: translateX(-3px);
}
.news_bottom_btn_column .news_bottom_btn:hover._next .news_bottom_btn__circle {
  box-shadow: 1px 2px 10px 0px rgba(6, 21, 35, 0.15);
}
.news_bottom_btn_column .news_bottom_btn:hover._next .news_bottom_btn__circle::before {
  transform: scale(-1, 1) translateX(-3px);
}

.flow_title {
  margin-bottom: 1em;
}
@media screen and (min-width: 1000px), print {
  .flow_title {
    display: flex;
    align-items: center;
  }
}
.flow_title .head {
  display: flex;
  align-items: center;
}
.flow_title .step {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 0.5em;
  line-height: 1;
}
@media screen and (min-width: 1000px), print {
  .flow_title .step {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 999px) {
  .flow_title .step {
    font-size: 0.938rem;
  }
}
.flow_title .num {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1000px), print {
  .flow_title .num {
    font-size: 40px;
  }
  .flow_title .num::after {
    content: "";
    display: block;
    width: 2px;
    height: 0.8em;
    background-color: #cdcdcd;
    position: relative;
    top: 0.05em;
    margin-left: 0.6em;
    margin-right: 0.6em;
  }
}
@media screen and (max-width: 999px) {
  .flow_title .num {
    font-size: 30px;
  }
}
.flow_title .title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
}
@media screen and (min-width: 1000px), print {
  .flow_title .title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 999px) {
  .flow_title .title {
    font-size: 1.125rem;
  }
}

.search {
  height: 60px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
}
.search__text {
  border: 0 none;
  height: 60px;
  line-height: 60px;
  font-size: 1rem;
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 0 35px 0 10px;
  display: block;
  box-shadow: inset 2px 2px 2px 0 rgba(101, 107, 121, 0.35);
}
@media screen and (max-width: 1199px) {
  .search__text {
    font-size: 16px;
  }
}
.search__submit {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 1px;
  width: 45px;
  height: 60px;
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background: url("../img/icon/search.webp") center center/26px 26px no-repeat transparent;
}

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

.image_btn {
  display: flex;
  flex-direction: column;
}
.image_btn .image {
  box-shadow: 2px 3px 15px 0 rgba(6, 21, 35, 0.2);
  margin-bottom: 10px;
  overflow: hidden;
}
.image_btn .image img {
  display: block;
  width: 100%;
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}
.image_btn .title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  color: #0f2040;
  font-size: 1.125rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  min-height: 65px;
  position: relative;
  box-sizing: border-box;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}
@media screen and (min-width: 1000px), print {
  .image_btn .title small {
    display: block;
  }
}
.image_btn .title::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #0f2040;
  border-radius: 3px;
  box-sizing: border-box;
  margin-right: 0.7em;
  margin-left: 0.5em;
}
.image_btn .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  left: 0;
  bottom: 1px;
  filter: blur(1px);
}
.image_btn:hover .image img {
  transform: scale(1.1);
}
.image_btn:hover .title {
  color: #549bd1;
}

/**************************
pc で基本は 3列になり、
sp 1列 になるリスト
*/
.grid_list {
  gap: var(--gap);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: var(--gap);
}
@media screen and (min-width: 1000px), print {
  .grid_list {
    --gap: clamp(30px, 3vw, 45px);
  }
}
@media screen and (max-width: 999px) {
  .grid_list {
    --gap: clamp(20px, 4vw, 30px);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .grid_list {
    --gap: clamp(15px, 5vw, 20px);
    grid-template-columns: repeat(1, 1fr);
  }
}

.image_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}
.image_grid img {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .image_grid {
    gap: 10px;
  }
}

.news_pager_area {
  padding-top: 70px;
}
@media screen and (min-width: 1200px), print {
  .news_pager_area {
    width: auto;
  }
}
@media screen and (max-width: 1199px) {
  .news_pager_area {
    padding-top: 0;
    margin-bottom: 10px;
    margin-top: 50px;
  }
}
.news_pager_area > .news_pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) {
  text-align: center;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: #0f2040;
  display: block;
  position: relative;
  font-size: 1.125rem;
  padding-left: 3px;
  box-sizing: border-box;
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a.current {
  color: #90a0c1;
  border: none;
  background-color: rgba(193, 200, 213, 0.3);
}
.news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a:hover {
  color: #549bd1;
}
.news_pager_area > .news_pager > .news_pager__box > a {
  text-decoration: none;
  font-size: 1.125rem;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
  margin-right: 60px;
  position: relative;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before {
  display: block;
  content: "";
  width: 6px;
  height: 9px;
  background: url("/common/img/icon/arrow/small_arrow.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link:hover {
  box-shadow: 1px 2px 10px 0px rgba(6, 21, 35, 0.15);
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link:hover::before {
  transform: translateX(-3px);
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link.prev_link-passive {
  pointer-events: none;
  background-color: #e0e0e0;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #ffffff;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
  margin-left: 60px;
  position: relative;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link::before {
  display: block;
  content: "";
  width: 6px;
  height: 9px;
  background: url("/common/img/icon/arrow/small_arrow.webp") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: scale(-1, 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;
  background-color: #e0e0e0;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link:hover {
  box-shadow: 1px 2px 10px 0px rgba(6, 21, 35, 0.15);
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link:hover::before {
  transform: scale(-1, 1) translateX(-3px);
}
@media screen and (max-width: 767px) {
  .news_pager_area > .news_pager > .news_pager__box > a {
    font-size: 1rem;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.prev_link {
    margin-right: 20px;
    width: 45px;
    height: 45px;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.next_link {
    margin-left: 20px;
    width: 45px;
    height: 45px;
  }
  .news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) {
    padding: 0 5px;
  }
  .news_pager_area > .news_pager > .news_pager__box:not(.news_pager__box-prev):not(.news_pager__box-next) > a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 420px) {
  .news_pager_area > .news_pager > .news_pager__box > a {
    font-size: 0.875rem;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.prev_link {
    margin-right: 10px;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.next_link {
    margin-left: 10px;
  }
}

:root {
  --swiper-navigation-size: 8px;
  --swiper-navigation-color: #4888bc;
  --swiper-theme-color: #a5d1cf;
}

.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1px 15px 2px rgba(6, 21, 35, 0.1);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  border: 5px solid #ffffff;
  font-weight: bold;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-color: #a5d1cf;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0);
}

:root {
  --sp-header-height: 86px;
  --pc-header-height: 182px;
  --sp-header-clamp: clamp(var(--sp-header-height), 14vw, var(--pc-header-height));
}

.container-header {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
}
@media screen and (min-width: 1520px), print {
  .container-header {
    padding-left: 100px;
    padding-right: 100px;
    height: 182px;
  }
}
@media screen and (max-width: 1519px) {
  .container-header {
    max-width: 1360px;
    height: var(--sp-header-clamp);
    padding-left: 80px;
    padding-right: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1199px) {
  .container-header {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 999px) {
  .container-header {
    padding-left: 33px;
    padding-right: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
  pointer-events: none;
}
.header::before {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.header .logo,
.header .btn,
.header .pc_open_menu {
  pointer-events: all;
}
.header .container {
  align-items: center;
}
.header__r {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 1000px), print {
  .header__r {
    height: 70px;
  }
}
.header__logo,
.header__logo .logo,
.header__logo img {
  display: block;
  transform: translateX(-5px);
}
@media screen and (min-width: 1000px), print {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 420px;
    height: 126px;
  }
}
@media screen and (max-width: 999px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 240px;
    height: 72px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 174px;
    height: 72px;
  }
}
.header__logo .logo {
  position: relative;
}
.header__logo .logo img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.header__logo .logo .default {
  opacity: 1;
}
.header__logo .logo .home {
  opacity: 0;
}
.header__logo .logo-home .default {
  opacity: 0;
}
.header__logo .logo-home .home {
  opacity: 1;
}
.header .button_area {
  display: flex;
}
@media screen and (max-width: 1099px) {
  .header .button_area {
    display: none;
  }
}
.header .button_area > ul {
  display: flex;
  justify-content: flex-end;
}
.header .button_area > ul > li {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.header .button_area > ul .btn {
  display: flex;
  min-height: 70px;
  border-radius: 35px;
  padding-left: 0;
  padding-right: 0;
  min-width: auto;
}
.header .button_area > ul .btn._lang {
  width: 140px;
}
.header .button_area > ul .btn._contact {
  width: 240px;
}
.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;
}

.hamburger_btn {
  width: 70px;
  height: 70px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (max-width: 999px) {
  .hamburger_btn {
    width: 94px;
    height: 86px;
  }
}
.hamburger_btn__inner {
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 20px;
  top: 22px;
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 999px) {
  .hamburger_btn__inner {
    left: 32px;
    top: 30px;
  }
}
.mm-opened .hamburger_btn__inner, .menu-opened .hamburger_btn__inner, .hamburger_btn._open .hamburger_btn__inner {
  top: 7px;
}
@media screen and (max-width: 900px) {
  .mm-opened .hamburger_btn__inner, .menu-opened .hamburger_btn__inner, .hamburger_btn._open .hamburger_btn__inner {
    top: 15px;
  }
}
.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: 30px;
  transform: rotate(45deg);
}
.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: 30px;
  transform: rotate(-45deg);
}
.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;
}
.hamburger_btn__inner > span {
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 1px;
  background-color: #0f2040;
  position: absolute;
  transition: top 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger_btn__inner > span:nth-child(1) {
  top: 0;
}
.hamburger_btn__inner > span:nth-child(2) {
  top: 11px;
}
.hamburger_btn__inner > span:nth-child(3) {
  top: 23px;
  width: 26px;
}

.footer {
  background-color: #ffffff;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .footer {
    padding-bottom: 10px;
  }
}
.footer__1 {
  padding-top: 75px;
  margin-bottom: 20px;
}
.footer__1 .container {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
.footer__1__l {
  flex-basis: 725px;
}
.footer__1__r {
  flex-basis: 415px;
  flex-grow: 10;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .footer__1 .container {
    flex-direction: column;
    row-gap: 30px;
  }
  .footer__1__l {
    flex-basis: auto;
  }
  .footer__1__r {
    flex-basis: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__1 {
    padding-top: 40px;
  }
}
.footer__sitemap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer__sitemap .column {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__sitemap {
    flex-direction: column;
    gap: 0;
  }
}
.footer__background_line {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.footer__background_line img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  min-width: 1000px;
  bottom: 0;
}
@media screen and (max-width: 999px) {
  .footer__background_line img {
    left: 50%;
    margin-left: -500px;
  }
}
.footer__logo {
  padding-top: 15px;
  width: 340px;
  height: 60px;
  margin-bottom: 10px;
  transform: translate(-10px, -35px);
}
.footer__logo a,
.footer__logo img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 174px;
    height: 72px;
    transform: translate(-10px, 0);
  }
}
.footer__info {
  display: flex;
  margin-bottom: 60px;
}
@media screen and (min-width: 1200px), print {
  .footer__info {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__info {
    margin-top: clamp(30px, 3vw, 50px);
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .footer__info {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 420px) {
  .footer__info {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
.footer__info > .address_area {
  flex-basis: 222px;
  border-right: 1px solid #d7dde0;
  display: flex;
  flex-direction: column;
}
.footer__info > .address_area .title {
  flex-grow: 1;
  align-self: flex-start;
}
.footer__info > .address_area .zip {
  line-height: 1;
  margin-bottom: 13px;
}
.footer__info > .address_area .address {
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .footer__info > .address_area {
    flex-basis: auto;
    padding-right: 35px;
  }
  .footer__info > .address_area .zip {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .footer__info > .address_area {
    border-right: none;
  }
}
@media screen and (max-width: 420px) {
  .footer__info > .address_area {
    padding-right: 0;
  }
  .footer__info > .address_area .zip,
  .footer__info > .address_area .address {
    font-size: 0.938rem;
  }
}
.footer__info > .tel_area {
  padding-left: 35px;
}
.footer__info > .tel_area .unit {
  font-size: 0.938rem;
  line-height: 1;
  margin-bottom: 13px;
}
.footer__info > .tel_area .tel {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .footer__info > .tel_area {
    flex-basis: auto;
  }
  .footer__info > .tel_area .unit {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .footer__info > .tel_area {
    padding-left: 0;
  }
  .footer__info > .tel_area .tel {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 420px) {
  .footer__info > .tel_area .tel {
    font-size: 1.063rem;
  }
}
.footer__info .title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
.footer__info .title::after {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #0f2040;
  opacity: 0.35;
  position: absolute;
  top: 1.1em;
  right: -30px;
  bottom: auto;
  left: auto;
  margin: auto;
}
@media screen and (max-width: 1199px) {
  .footer__info .bottom {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer__info .bottom {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
}
@media screen and (max-width: 575px) {
  .footer__info .bottom {
    row-gap: 5px;
  }
}
@media screen and (min-width: 1200px), print {
  .footer__contact {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__contact {
    margin-top: clamp(30px, 3vw, 50px);
  }
}
@media screen and (min-width: 1200px), print {
  .footer__link_list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__link_list {
    margin-top: clamp(30px, 3vw, 50px);
  }
}
.footer__link_list li {
  display: inline-block;
}
.footer__link_list li:not(:last-child) {
  margin-right: 2em;
}
.footer__link_list a {
  text-decoration: none;
  color: #0f2040;
}
.footer__link_list a:hover {
  color: #549bd1;
}
.footer__copyright {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  justify-content: flex-end;
}
.footer__copyright .icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
.footer__copyright .icon img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .footer__copyright {
    justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .footer__copyright .icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
}
.footer__bottom {
  background-color: #0f2040;
  height: 80px;
  width: 100%;
  position: relative;
}
.footer__bottom::after {
  content: "";
  display: block;
  height: 80px;
  width: 350px;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  margin-left: -175px;
}
.footer__map {
  width: 100%;
  height: 330px;
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
}
.footer__map > iframe {
  width: 100%;
  height: 100%;
}
.footer__link {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 60px;
  column-gap: 60px;
  flex-grow: 1;
}
.footer__link li {
  position: relative;
}
.footer__link li a {
  padding-right: 0;
  color: #0f2040;
}
@media screen and (max-width: 1199px) {
  .footer__link {
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .footer__link {
    margin-bottom: 20px;
  }
}

.fsitemap {
  margin-bottom: 0.7em;
}
.fsitemap .title a {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0f2040;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  line-height: 1.5;
}
@media screen and (min-width: 1000px), print {
  .fsitemap .title a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 999px) {
  .fsitemap .title a {
    font-size: 1rem;
  }
}
.fsitemap .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;
  min-width: 22px;
}
.fsitemap .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  opacity: 0.5;
  filter: blur(0.5px);
}
.fsitemap .list {
  padding-top: 0.4em;
}
@media screen and (min-width: 1000px), print {
  .fsitemap .list {
    padding-left: 30px;
  }
}
.fsitemap .list a {
  display: inline-block;
  color: #0f2040;
  text-decoration: none;
  font-size: 0.938rem;
  line-height: 1.4;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.scroll_to_top {
  background-color: #0f2040;
  position: fixed;
  right: 50px;
  bottom: 55px;
  z-index: 999;
  line-height: 0;
  overflow: hidden;
  border-radius: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: opacity 0.1s, transform 0.12s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: 2.868px 4.096px 20px 0px rgba(6, 21, 35, 0.15);
}
@media screen and (min-width: 821px), print {
  .scroll_to_top {
    bottom: 55px;
  }
}
@media screen and (max-width: 820px) {
  .scroll_to_top {
    right: 10px;
    bottom: 10px;
  }
}
.scroll_to_top._show {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.scroll_to_top._show a {
  opacity: 1;
}
.scroll_to_top,
.scroll_to_top a {
  opacity: 0;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 575px) {
  .scroll_to_top,
  .scroll_to_top a {
    width: 80px;
    height: 80px;
  }
}
.scroll_to_top a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.scroll_to_top img {
  display: block;
  width: 12px;
  height: 12px;
}
.scroll_to_top .text {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
}

.pc_menu {
  z-index: 10000;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.pc_menu__panel {
  padding-bottom: 80px;
  position: relative;
  width: 100vw;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(226, 233, 237, 0.95) 0%, rgba(252, 252, 252, 0.95) 100%);
  box-shadow: 0 5px 8px 0 rgba(94, 111, 128, 0.2);
}
@media screen and (min-width: 1400px), print {
  .pc_menu__panel {
    padding-top: 182px;
  }
}
@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(15, 32, 64, 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: 80px;
  }
}
.pc_menu__l {
  padding-top: 10px;
  flex-basis: 360px;
  flex-shrink: 0;
}
@media screen and (max-width: 1519px) {
  .pc_menu__l {
    flex-basis: 300px;
  }
}
.pc_menu__r {
  flex-grow: 10;
}
.pc_menu__sitemap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.pc_menu__sitemap .column {
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .pc_menu__sitemap {
    gap: 20px;
  }
}
.pc_menu__title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  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 #0f2040;
}
.pc_menu__search .head {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 0.7em;
}
@media screen and (min-width: 1200px), print {
  .pc_menu__info {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .pc_menu__info {
    margin-top: clamp(30px, 3vw, 50px);
  }
}
.pc_menu__info .tel_area {
  line-height: 1;
  margin-bottom: 1em;
}
.pc_menu__info .tel_area .row {
  display: flex;
  align-items: flex-end;
}
.pc_menu__info .tel_area .tel {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  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 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0f2040;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  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: #549bd1;
}
.pc_sitemap .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  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: #0f2040;
  text-decoration: none;
  font-size: 0.938rem;
  line-height: 1.4;
  transition: color 0.1s ease-out;
}
.pc_sitemap .list a:hover {
  color: #549bd1;
}

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

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

.mm-menu--theme-light {
  --mm-color-background: transparent;
  --mm-color-text: var.palette("color", "default");
  --mm-color-text-dimmed: var.palette("color", "default");
  --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(15, 32, 64, 0.9);
}
.mm-wrapper--opened .mm-panels,
.mm-wrapper--opened .mm-panel {
  padding: 0;
}

.drawer {
  background: linear-gradient(to bottom, rgba(226, 233, 237, 0.95) 0%, rgba(252, 252, 252, 0.95) 100%);
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 1200px), print {
  .drawer {
    display: none;
  }
}
.drawer__top {
  display: block;
  text-align: left;
  padding-left: 33px;
  padding-right: 33px;
}
.drawer__top__1 {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.drawer__bottom {
  display: block;
  padding: 0;
  overflow: visible;
  padding-bottom: 10px;
  padding-left: 33px;
  padding-right: 33px;
}
.drawer__bottom::after {
  display: none;
}
.drawer__bottom > * {
  padding: 0;
}
.drawer__bottom .mm-listitem__text {
  overflow: visible;
}
.drawer__logo .logo,
.drawer__logo img {
  display: block;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .drawer__logo .logo,
  .drawer__logo img {
    width: 174px;
  }
}
.drawer__close_menu {
  width: 94px;
  height: 86px;
  position: absolute;
  top: 0;
  right: 0;
}
.drawer__title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
  color: #ffffff;
  text-shadow: -2px 0 10px rgba(94, 111, 128, 0.4);
  line-height: 1;
  padding-top: 10px;
  font-size: 35px;
  margin-bottom: 35px;
}
.drawer__search {
  padding-bottom: 30px;
}
.drawer__search .head {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 0.7em;
  padding-bottom: 0.5em;
}
.drawer .button_area {
  padding-top: 45px;
  padding-bottom: 35px;
  display: flex;
}
.drawer .button_area .ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
.drawer .button_area .ul .li {
  display: flex;
  align-items: center;
}
.drawer .button_area .ul .li._contact {
  flex-grow: 10;
}
.drawer .button_area .ul .btn {
  display: flex;
  border-radius: 28px;
  min-height: 56px;
  min-width: auto;
  font-size: 0.938rem;
  box-shadow: 0 1px 3px 0 rgba(6, 21, 35, 0.15);
}
.drawer .button_area .ul .btn._lang {
  padding-left: 0;
  padding-right: 0;
  width: 110px;
}
.drawer .button_area .ul .btn._contact {
  color: #ffffff;
  flex-grow: 10;
  padding-left: 0;
  padding-right: 0;
}
.drawer__info {
  margin-top: clamp(30px, 3vw, 50px);
}
.drawer__info .tel_area {
  line-height: 1;
  margin-bottom: 1em;
}
.drawer__info .tel_area .row {
  display: flex;
  align-items: center;
  margin-bottom: 0.7em;
}
.drawer__info .tel_area .tel {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}
.drawer__info .tel_area .unit {
  font-size: 15px;
}
.drawer__info .address_area {
  font-size: 0.938rem;
}
.drawer__info .address_area > * {
  display: inline-block;
}
.drawer__info .address_area > *:not(:last-child) {
  margin-right: 0.7em;
}
.drawer .mm-navbars--top {
  border-bottom: 0 none;
}
.drawer .mm-navbars--bottom {
  border-top: 0 none;
}
.drawer__li {
  min-height: 50px;
  font-size: 1.063rem;
  position: relative;
  padding-left: 33px;
  padding-right: 33px;
  /**************************
  子要素
  */
}
.drawer__li::after {
  display: none;
}
.drawer__li .mm-btn--next {
  padding-inline-end: 30px;
  border: none;
}
.drawer__li .mm-btn--next::before, .drawer__li .mm-btn--next::after {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #0f2040;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  left: inherit;
  margin: auto;
  padding: 0;
  border: 0 none;
}
.drawer__li .mm-btn--next::after {
  transition: transform 0.1s cubic-bezier(0.23, 1, 0.32, 1);
  transform: rotate(90deg);
}
.drawer__li.mm-listitem--opened .drawer__a {
  color: #549bd1;
}
.drawer__li.mm-listitem--opened .drawer__a::after {
  background-color: rgba(84, 155, 209, 0.5);
}
.drawer__li.mm-listitem--opened .mm-btn--next::before, .drawer__li.mm-listitem--opened .mm-btn--next::after {
  background-color: #549bd1;
  height: 2px;
}
.drawer__li.mm-listitem--opened .mm-btn--next::after {
  transform: rotate(0deg);
}
.drawer__li .mm-listview {
  margin-top: 0.7em;
  margin-bottom: 2em;
}
.drawer__li .mm-listitem {
  border: 0 none;
}
.drawer__li .mm-listitem::after {
  display: none;
}
.drawer__li .mm-listitem a {
  font-size: 0.938rem;
  padding: 0.6em 0 0.6em 1.5em;
}
.drawer__a {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 600;
  min-height: 50px;
  padding-left: 0.5em;
  display: flex;
  align-items: flex-end;
  width: 100%;
  position: relative;
  overflow: visible;
  transition: color 0.2s ease-out;
}
.drawer__a::after {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 1px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: background-color 0.2s ease-out;
}

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

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

@media screen and (max-width: 767px) {
  .wp-caption-text {
    line-height: 1.5;
  }
}