@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 */ /* 3 */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  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: 600;
}

/**
 * 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: 1000px), print {
  .mb-pc-5 {
    margin-bottom: 5em !important;
  }
  .mb-pc-4 {
    margin-bottom: 4em !important;
  }
  .mb-pc-3 {
    margin-bottom: 3em !important;
  }
  .mb-pc-2 {
    margin-bottom: 2em !important;
  }
  .mb-pc-1_5 {
    margin-bottom: 1.5em !important;
  }
  .mb-pc-1 {
    margin-bottom: 1em !important;
  }
  .mb-pc-05 {
    margin-bottom: 0.5em !important;
  }
  .mb-pc-0 {
    margin-bottom: 0 !important;
  }
  .mt-pc-5 {
    margin-top: 5em !important;
  }
  .mt-pc-4 {
    margin-top: 4em !important;
  }
  .mt-pc-3 {
    margin-top: 3em !important;
  }
  .mt-pc-2 {
    margin-top: 2em !important;
  }
  .mt-pc-1_5 {
    margin-top: 1.5em !important;
  }
  .mt-pc-1 {
    margin-top: 1em !important;
  }
  .mt-pc-05 {
    margin-top: 0.5em !important;
  }
  .mt-pc-0 {
    margin-top: 0 !important;
  }
  .ml-pc-5 {
    margin-left: 5em !important;
  }
  .ml-pc-4 {
    margin-left: 4em !important;
  }
  .ml-pc-3 {
    margin-left: 3em !important;
  }
  .ml-pc-2 {
    margin-left: 2em !important;
  }
  .ml-pc-1_5 {
    margin-left: 1.5em !important;
  }
  .ml-pc-1 {
    margin-left: 1em !important;
  }
  .ml-pc-05 {
    margin-left: 0.5em !important;
  }
  .ml-pc-0 {
    margin-left: 0 !important;
  }
  .mr-pc-5 {
    margin-right: 5em !important;
  }
  .mr-pc-4 {
    margin-right: 4em !important;
  }
  .mr-pc-3 {
    margin-right: 3em !important;
  }
  .mr-pc-2 {
    margin-right: 2em !important;
  }
  .mr-pc-1_5 {
    margin-right: 1.5em !important;
  }
  .mr-pc-1 {
    margin-right: 1em !important;
  }
  .mr-pc-05 {
    margin-right: 0.5em !important;
  }
  .mr-pc-0 {
    margin-right: 0 !important;
  }
  .my-pc-5 {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .my-pc-4 {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .my-pc-3 {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .my-pc-2 {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .my-pc-1_5 {
    margin-top: 1.5em !important;
    margin-bottom: 1.5em !important;
  }
  .my-pc-1 {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .my-pc-05 {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .my-pc-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-pc-5 {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .mx-pc-4 {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .mx-pc-3 {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .mx-pc-2 {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .mx-pc-1_5 {
    margin-left: 1.5em !important;
    margin-right: 1.5em !important;
  }
  .mx-pc-1 {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .mx-pc-05 {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .mx-pc-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 999px) {
  .mb-sp-5 {
    margin-bottom: 5em !important;
  }
  .mb-sp-4 {
    margin-bottom: 4em !important;
  }
  .mb-sp-3 {
    margin-bottom: 3em !important;
  }
  .mb-sp-2 {
    margin-bottom: 2em !important;
  }
  .mb-sp-1_5 {
    margin-bottom: 1.5em !important;
  }
  .mb-sp-1 {
    margin-bottom: 1em !important;
  }
  .mb-sp-05 {
    margin-bottom: 0.5em !important;
  }
  .mb-sp-0 {
    margin-bottom: 0 !important;
  }
  .mt-sp-5 {
    margin-top: 5em !important;
  }
  .mt-sp-4 {
    margin-top: 4em !important;
  }
  .mt-sp-3 {
    margin-top: 3em !important;
  }
  .mt-sp-2 {
    margin-top: 2em !important;
  }
  .mt-sp-1_5 {
    margin-top: 1.5em !important;
  }
  .mt-sp-1 {
    margin-top: 1em !important;
  }
  .mt-sp-05 {
    margin-top: 0.5em !important;
  }
  .mt-sp-0 {
    margin-top: 0 !important;
  }
  .ml-sp-5 {
    margin-left: 5em !important;
  }
  .ml-sp-4 {
    margin-left: 4em !important;
  }
  .ml-sp-3 {
    margin-left: 3em !important;
  }
  .ml-sp-2 {
    margin-left: 2em !important;
  }
  .ml-sp-1_5 {
    margin-left: 1.5em !important;
  }
  .ml-sp-1 {
    margin-left: 1em !important;
  }
  .ml-sp-05 {
    margin-left: 0.5em !important;
  }
  .ml-sp-0 {
    margin-left: 0 !important;
  }
  .mr-sp-5 {
    margin-right: 5em !important;
  }
  .mr-sp-4 {
    margin-right: 4em !important;
  }
  .mr-sp-3 {
    margin-right: 3em !important;
  }
  .mr-sp-2 {
    margin-right: 2em !important;
  }
  .mr-sp-1_5 {
    margin-right: 1.5em !important;
  }
  .mr-sp-1 {
    margin-right: 1em !important;
  }
  .mr-sp-05 {
    margin-right: 0.5em !important;
  }
  .mr-sp-0 {
    margin-right: 0 !important;
  }
  .my-sp-5 {
    margin-top: 5em !important;
    margin-bottom: 5em !important;
  }
  .my-sp-4 {
    margin-top: 4em !important;
    margin-bottom: 4em !important;
  }
  .my-sp-3 {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
  }
  .my-sp-2 {
    margin-top: 2em !important;
    margin-bottom: 2em !important;
  }
  .my-sp-1_5 {
    margin-top: 1.5em !important;
    margin-bottom: 1.5em !important;
  }
  .my-sp-1 {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
  }
  .my-sp-05 {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
  }
  .my-sp-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .mx-sp-5 {
    margin-left: 5em !important;
    margin-right: 5em !important;
  }
  .mx-sp-4 {
    margin-left: 4em !important;
    margin-right: 4em !important;
  }
  .mx-sp-3 {
    margin-left: 3em !important;
    margin-right: 3em !important;
  }
  .mx-sp-2 {
    margin-left: 2em !important;
    margin-right: 2em !important;
  }
  .mx-sp-1_5 {
    margin-left: 1.5em !important;
    margin-right: 1.5em !important;
  }
  .mx-sp-1 {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .mx-sp-05 {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .mx-sp-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.pb-5 {
  padding-bottom: 5em !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-items-center {
  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: 1000px), print {
  .d-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 999px) {
  .d-sp-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .d-ipc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .d-isp-none {
    display: none !important;
  }
}
.w-25 {
  width: 25% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

## initial

md 初期設定


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

input,
textarea {
  outline: 0;
}

input::-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: 999px) {
  .main_content img {
    display: block;
  }
}

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

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

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

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clear {
  clear: both;
}

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

## base

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


*/
.root:not(.root-index) {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100svh;
}

@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;
  }
}
.main_content {
  padding-top: 90px;
  background-color: #ffffff;
  padding-bottom: 5em;
}
@media screen and (max-width: 999px) {
  .main_content {
    padding-top: 70px;
  }
}
.main_content img {
  max-width: 100%;
}
.main_content .content_body {
  padding-top: 80px;
  position: relative;
  z-index: 2;
  min-height: 400px;
}
@media screen and (max-width: 999px) {
  .main_content .content_body {
    padding-top: 60px;
  }
}
@media screen and (max-width: 575px) {
  .main_content .content_body {
    padding-top: 40px;
  }
}
.main_content .content_body._index {
  padding-top: 100px;
}
@media screen and (max-width: 999px) {
  .main_content .content_body._index {
    padding-top: 60px;
  }
}
@media screen and (max-width: 575px) {
  .main_content .content_body._index {
    padding-top: 40px;
  }
}
.main_content .content_body > h2:first-child,
.main_content .content_body > .h2:first-child,
.main_content .content_body > h3:first-child {
  margin-top: 0;
}
.main_content .content_body img {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .main_content .content_body img {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 7px;
  }
}
.main_content .content_body > p {
  padding-left: 3.125rem;
}
@media screen and (max-width: 999px) {
  .main_content .content_body > p {
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .main_content .content_body > p {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 475px) {
  .main_content .content_body > p {
    padding-left: 2px;
  }
}
.main_content p:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (min-width: 1200px), print {
  .main_content .wp-block-table table,
  .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: 999px) {
  .youtube {
    max-width: 260px;
    height: 170px;
  }
}
.youtube iframe {
  max-width: 100%;
  max-height: 100%;
}

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

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

.inline_video {
  max-width: 100%;
}

.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: 1000px), 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: 999px) {
  figure img {
    margin-left: auto;
    margin-right: auto;
  }
}
figure figcaption {
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (min-width: 1000px), print {
  figure figcaption {
    padding-top: 0.9em;
    padding-bottom: 0.1em;
    text-align: center;
  }
  figure figcaption._left {
    text-align: left;
  }
}
@media screen and (max-width: 999px) {
  figure figcaption {
    font-size: 0.813rem;
    padding-top: 0.5em;
    padding-bottom: 0.1em;
    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;
  font-style: normal;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 2.2;
  background: #ffffff;
  color: #0f234d;
}
@media screen and (max-width: 420px) {
  body {
    font-weight: 400;
  }
}

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

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

em.large_text {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

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

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

.text-green {
  color: #82cbbe;
  font-weight: bold;
}

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

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

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

.text-white {
  color: #ffffff;
}

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

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

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

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

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text-gray {
  color: #ff0000;
}

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

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

.no_wrap {
  white-space: nowrap;
}

@media screen and (min-width: 1000px), print {
  p {
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 999px) {
  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: 1000px), print {
  .anotation {
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 999px) {
  .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: #0f234d;
}
.anotation._black::before {
  color: #0f234d;
}
.anotation._right {
  float: right;
}
.anotation._red {
  color: #ff0000;
}
.anotation._red::before {
  color: #ff0000;
}
@media screen and (min-width: 1000px), print {
  .anotation._sm {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1000px), print {
  .anotation._sm {
    font-size: 0.813rem;
  }
}

/**************************
pc
*/
@media screen and (min-width: 1000px), print {
  .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
  }
  .container_2 {
    width: 100%;
    box-sizing: border-box;
    padding-left: 35px;
    padding-right: 35px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
  }
  .pc_padding,
  .padding {
    padding-left: 40px;
    padding-right: 40px;
  }
  .imain_content .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
  }
}
/**************************
sp
*/
@media screen and (max-width: 999px) {
  .sp_container,
  .container {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .container_2 {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .sp_padding,
  .padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 575px) {
  .sp_container,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container_2 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sp_padding,
  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main_content h2:not(.cancel), .main_content .h2,
.main_content h3:not(.cancel), .main_content .h3,
.main_content h4:not(.cancel), .main_content .h4,
.main_content h5:not(.cancel), .main_content .h5,
.main_content h6:not(.cancel), .main_content .h6 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
}
.main_content .main_column .blog_contents h2:not(.cancel), .main_content .main_column .blog_contents .h2,
.main_content .main_column .blog_contents h3:not(.cancel), .main_content .main_column .blog_contents .h3,
.main_content .main_column .blog_contents h4:not(.cancel), .main_content .main_column .blog_contents .h4,
.main_content .main_column .blog_contents h5:not(.cancel), .main_content .main_column .blog_contents .h5 {
  margin-left: 0;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .main_content .main_column .blog_contents h2:not(.cancel), .main_content .main_column .blog_contents .h2,
  .main_content .main_column .blog_contents h3:not(.cancel), .main_content .main_column .blog_contents .h3,
  .main_content .main_column .blog_contents h4:not(.cancel), .main_content .main_column .blog_contents .h4,
  .main_content .main_column .blog_contents h5:not(.cancel), .main_content .main_column .blog_contents .h5 {
    margin-left: 0;
    width: 100%;
  }
}
.main_content h2:not(.cancel),
.main_content .h2 {
  color: #4c4c4c;
  letter-spacing: 0.04em;
  line-height: 1.3;
  background: #e17c36;
  background: linear-gradient(90deg, #d05f54 0%, #e17c36 40%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  top: 0;
  left: -2px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px), print {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    font-size: clamp(22px, 3.8vw, 38px);
  }
}
@media screen and (min-width: 576px), print {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    margin-top: 15px;
    margin-bottom: 3.1ex;
  }
  .main_content h2:not(.cancel)::after,
  .main_content .h2::after {
    bottom: -1.5ex;
  }
}
@media screen and (max-width: 575px) {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    margin-top: 0.5ex;
    margin-bottom: 1.8ex;
  }
  .main_content h2:not(.cancel)::after,
  .main_content .h2::after {
    bottom: -1ex;
  }
}
.main_content h3:not(.cancel),
.main_content .h3 {
  --diameter: 45px;
  padding-bottom: calc(var(--diameter) / 2.6);
  margin-bottom: 1em;
  line-height: 1.4;
  position: relative;
  transform: translateX(-2px);
}
.main_content h3:not(.cancel)::after,
.main_content .h3::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #cf5e55;
  background: linear-gradient(90deg, #cf5e55 0%, #e17c36 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    font-size: 2rem;
    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, 3vw, 1.875rem);
    margin-top: calc(var(--margin-section) * 0.7);
  }
}
@media screen and (max-width: 575px) {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    transform: translateX(-1px);
    margin-top: calc(var(--margin-section) * 0.8);
  }
}
.main_content h3:not(.cancel) + h4:not(.cancel),
.main_content .h3 + h4:not(.cancel) {
  margin-top: calc(var(--margin-section) / 1.4);
}
.main_content h4:not(.cancel),
.main_content .h4 {
  margin-top: calc(var(--margin-section) * 0.7);
  margin-bottom: 1.4em;
  line-height: 1.4;
  box-sizing: border-box;
  position: relative;
  z-index: 20;
  margin-left: 10px;
}
.main_content h4:not(.cancel)::before,
.main_content .h4::before {
  content: "";
  display: inline-block;
  background: url("../img/deco/01.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 70px;
  height: 60px;
  position: absolute;
  top: -5px;
  left: -32px;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .main_content h4:not(.cancel)::before,
  .main_content .h4::before {
    scale: 0.8;
    top: -0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .main_content h4:not(.cancel)::before,
  .main_content .h4::before {
    top: -0.8rem;
  }
}
@media screen and (max-width: 575px) {
  .main_content h4:not(.cancel)::before,
  .main_content .h4::before {
    transform-origin: top center;
    scale: 0.6;
    top: -0.3rem;
  }
}
@media screen and (min-width: 1200px), print {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    font-size: clamp(1.125rem, 2.8vw, 1.625rem);
  }
}
.main_content h4:not(.cancel) + h5:not(.cancel),
.main_content .h4 + h5:not(.cancel) {
  margin-top: calc(var(--margin-section) / 4);
}
.main_content h5:not(.cancel),
.main_content .h5 {
  display: inline-block;
  margin-top: calc(var(--margin-section) * 0.55);
  margin-bottom: 0.9em;
  line-height: 1.5;
  min-height: 50px;
  background-color: #faf6f8;
  align-content: center;
  padding: 0.5rem 1.25rem 0.4rem;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 1200px), print {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 1199px) {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  }
}
@media screen and (max-width: 999px) {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    padding: 0.5rem 0.9rem 0.4rem;
  }
}
.main_content h5:not(.cancel) + h6:not(.cancel),
.main_content .h5 + h6:not(.cancel) {
  margin-top: calc(var(--margin-section) / 3);
}
.main_content h6:not(.cancel),
.main_content .h6 {
  margin-top: calc(var(--margin-section) * 0.55);
  margin-bottom: 1.2em;
  line-height: 1.5;
  margin-left: 1.875rem;
}
@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, 2vw, 1.25rem);
  }
}
@media screen and (max-width: 575px) {
  .main_content h6:not(.cancel),
  .main_content .h6 {
    margin-left: 2px;
    margin-bottom: 1.2em;
  }
}

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

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

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

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

@media screen and (min-width: 1000px), print {
  .ul_horizontal_list::before, .ul_horizontal_list::after {
    content: "";
    display: table;
  }
  .ul_horizontal_list::after {
    clear: both;
  }
  .ul_horizontal_list > li,
  .ul_horizontal_list > * {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    white-space: nowrap;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ul_horizontal_list > li:first-child,
  .ul_horizontal_list > *:first-child {
    padding-left: 0;
  }
  .ul_horizontal_list > li:last-child,
  .ul_horizontal_list > *:last-child {
    padding-right: 0;
  }
  .main_content .ul_horizontal_list {
    padding-left: 0;
  }
  .main_content .ul_horizontal_list li::before {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .main_content .ul_horizontal_list > ul:not(.cancel) {
    margin-bottom: 0.3em;
  }
}
.inline-slash-list {
  display: 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):not(.acf-checkbox-list) {
  padding-left: 4rem;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 999px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
    padding-left: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
    padding-left: 2.4rem;
  }
}
@media screen and (max-width: 575px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
    padding-left: 1rem;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
  padding-left: 1.4em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li:not(:last-of-type) {
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 1000px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 999px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li {
    font-size: 0.938rem;
    line-height: 1.8;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/li.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 10px;
  height: 8px;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 1000px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
    top: 1.5ex;
  }
}
@media screen and (max-width: 999px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li::before {
    top: 1.2ex;
  }
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li ul {
  padding-left: 0.9rem;
  padding-top: 0.1rem;
  margin-bottom: 0.3rem;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) > li ol {
  padding-top: 0.1rem;
  padding-left: 0;
  margin-bottom: 0.3rem;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list):not(.inline_block_list) > li:last-child {
  margin-bottom: 0;
}
.main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list)._sm > li {
  margin-bottom: 0;
  line-height: 1.7;
}
@media screen and (min-width: 1000px), print {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list)._sm > li::before {
    top: 1.4ex;
  }
}
@media screen and (max-width: 999px) {
  .main_content ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list)._sm > li::before {
    top: 1.4ex;
  }
}

.main_content ol:not(.cancel) {
  padding-left: 3.125rem;
  list-style: none;
  counter-reset: num 0;
  margin-bottom: 1em;
}
@media screen and (max-width: 999px) {
  .main_content ol:not(.cancel) {
    padding-left: 2.45rem;
  }
}
@media screen and (max-width: 767px) {
  .main_content ol:not(.cancel) {
    padding-left: 1.45rem;
  }
}
@media screen and (max-width: 475px) {
  .main_content ol:not(.cancel) {
    padding-left: 2px;
  }
}
.main_content ol:not(.cancel) > li {
  padding-left: 2.4em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ol:not(.cancel) > li:not(:last-of-type) {
  margin-bottom: 0.1rem;
}
@media screen and (min-width: 1000px), print {
  .main_content ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 999px) {
  .main_content ol:not(.cancel) > li {
    font-size: 0.938rem;
    line-height: 1.8;
  }
}
.main_content ol:not(.cancel) > li::before {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) ".";
  color: #cf5e55;
  position: absolute;
  top: -0.2ex;
  left: 2px;
  text-align: right;
  width: 1.5em;
}
.main_content ol:not(.cancel) > li ul {
  padding-left: 0.9rem;
  padding-top: 0.1rem;
  margin-bottom: 0.3rem;
}
.main_content ol:not(.cancel) > li ol {
  padding-top: 0.1rem;
  padding-left: 0;
  margin-bottom: 0.3rem;
}
.main_content ol:not(.cancel):not(.inline_block_list) > li:last-child {
  margin-bottom: 0;
}
.main_content ol:not(.cancel)._sm > li {
  margin-bottom: 0;
  line-height: 1.7;
}
@media screen and (min-width: 1000px), print {
  .main_content ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}
@media screen and (max-width: 999px) {
  .main_content ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}

.dl::before, .dl::after {
  content: "";
  display: table;
}
.dl::after {
  clear: both;
}
.dl dt {
  clear: left;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  font-weight: bold;
}
.dl dt::before {
  margin-right: 0.5em;
}
@media screen and (min-width: 1000px), print {
  .dl dt {
    float: left;
  }
}
@media screen and (min-width: 1000px), print {
  .dl dt,
  .dl dd {
    float: left;
  }
}
.dl dt:last-child,
.dl dd:last-child {
  margin-bottom: 0;
}
.dl dd {
  width: 100%;
  box-sizing: border-box;
}
.dl dd:not(:last-child) {
  padding-bottom: 0.3em;
}
@media screen and (max-width: 999px) {
  .dl dd:not(:last-child) {
    margin-bottom: 0.7em;
  }
}
@media screen and (min-width: 1000px), print {
  .dl-2em dt {
    width: 2em;
  }
  .dl-2em dt .h-inline {
    width: -1.5em;
  }
  .dl-2em dd {
    margin-left: -3em;
    padding-left: 3em;
  }
  .dl-3em dt {
    width: 3em;
  }
  .dl-3em dt .h-inline {
    width: -0.5em;
  }
  .dl-3em dd {
    margin-left: -4em;
    padding-left: 4em;
  }
  .dl-4em dt {
    width: 4em;
  }
  .dl-4em dt .h-inline {
    width: 0.5em;
  }
  .dl-4em dd {
    margin-left: -5em;
    padding-left: 5em;
  }
  .dl-5em dt {
    width: 5em;
  }
  .dl-5em dt .h-inline {
    width: 1.5em;
  }
  .dl-5em dd {
    margin-left: -6em;
    padding-left: 6em;
  }
  .dl-6em dt {
    width: 6em;
  }
  .dl-6em dt .h-inline {
    width: 2.5em;
  }
  .dl-6em dd {
    margin-left: -7em;
    padding-left: 7em;
  }
  .dl-7em dt {
    width: 7em;
  }
  .dl-7em dt .h-inline {
    width: 3.5em;
  }
  .dl-7em dd {
    margin-left: -8em;
    padding-left: 8em;
  }
  .dl-8em dt {
    width: 8em;
  }
  .dl-8em dt .h-inline {
    width: 4.5em;
  }
  .dl-8em dd {
    margin-left: -9em;
    padding-left: 9em;
  }
  .dl-10em dt {
    width: 10em;
  }
  .dl-10em dt .h-inline {
    width: 6.5em;
  }
  .dl-10em dd {
    margin-left: -11em;
    padding-left: 11em;
  }
  .dl-12em dt {
    width: 12em;
  }
  .dl-12em dt .h-inline {
    width: 8.5em;
  }
  .dl-12em dd {
    margin-left: -13em;
    padding-left: 13em;
  }
  .dl-14em dt {
    width: 14em;
  }
  .dl-14em dt .h-inline {
    width: 10.5em;
  }
  .dl-14em dd {
    margin-left: -15em;
    padding-left: 15em;
  }
  .dl-16em dt {
    width: 16em;
  }
  .dl-16em dt .h-inline {
    width: 12.5em;
  }
  .dl-16em dd {
    margin-left: -17em;
    padding-left: 17em;
  }
  .dl-18em dt {
    width: 18em;
  }
  .dl-18em dt .h-inline {
    width: 14.5em;
  }
  .dl-18em dd {
    margin-left: -19em;
    padding-left: 19em;
  }
  .dl-20em dt {
    width: 20em;
  }
  .dl-20em dt .h-inline {
    width: 16.5em;
  }
  .dl-20em dd {
    margin-left: -21em;
    padding-left: 21em;
  }
}
.dl-mb_1em dd {
  margin-bottom: 1em;
}
.dl._underline {
  overflow: hidden;
}
.dl._underline dd:not(:last-child) {
  border-bottom: 1px solid #d2d2d2;
}
.dl._underline dt,
.dl._underline dd {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  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) {
  padding-left: 3.875rem;
}
@media screen and (max-width: 999px) {
  .main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) {
    padding-left: 2.75rem;
  }
}
@media screen and (max-width: 575px) {
  .main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 475px) {
  .main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) {
    padding-left: 0.9rem;
  }
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list):not(:last-child) {
  margin-bottom: 0.6em;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li {
  letter-spacing: 0.1em;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1000px), print {
  .main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li {
    font-size: 1rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 999px) {
  .main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li {
    font-size: 0.938rem;
    line-height: 1.8;
  }
}
.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.1ex;
  left: -0.1rem;
  border: none;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list)._red li {
  color: #ff0000;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list)._red li::before {
  color: #ff0000;
}

.main_content .link_list {
  padding-left: 4.375rem;
}
@media screen and (max-width: 999px) {
  .main_content .link_list {
    padding-left: 3.5rem;
  }
}
@media screen and (max-width: 575px) {
  .main_content .link_list {
    padding-left: 2.6rem;
  }
}
@media screen and (max-width: 475px) {
  .main_content .link_list {
    padding-left: 1.3rem;
  }
}
.main_content .link_list li {
  padding-left: 0 !important;
}
.main_content .link_list li::before {
  display: none !important;
}
@media screen and (min-width: 1000px), print {
  .main_content .link_list li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .main_content .link_list li {
    font-size: 0.938rem;
  }
}

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

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

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

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

wordpressのプラグインblockの場合（PublishPress Blocks）
<table class="wp-block-advgb-table">
    <thead></thead>
    <tbody><tbody>
</table>
*/
.table_wrapper table,
.root .wpnews table,
.main_content table.wp-block-advgb-table,
.main_content .wp-block-table table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  border-radius: 10px;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .table_wrapper table,
  .root .wpnews table,
  .main_content table.wp-block-advgb-table,
  .main_content .wp-block-table table {
    border-radius: 7px;
  }
}
.table_wrapper table caption,
.root .wpnews table caption,
.main_content table.wp-block-advgb-table caption,
.main_content .wp-block-table table caption {
  caption-side: bottom;
  text-align: right;
}
.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 {
  box-sizing: border-box;
  text-align: left;
  min-height: 60px;
}
@media screen and (min-width: 1000px), print {
  .table_wrapper table th,
  .table_wrapper table th p,
  .table_wrapper table td,
  .table_wrapper table td p,
  .root .wpnews table th,
  .root .wpnews table th p,
  .root .wpnews table td,
  .root .wpnews table td p,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table th p,
  .main_content table.wp-block-advgb-table td,
  .main_content table.wp-block-advgb-table td p,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table th p,
  .main_content .wp-block-table table td,
  .main_content .wp-block-table table td p {
    line-height: 1.75;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table th,
  .table_wrapper table th p,
  .table_wrapper table td,
  .table_wrapper table td p,
  .root .wpnews table th,
  .root .wpnews table th p,
  .root .wpnews table td,
  .root .wpnews table td p,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table th p,
  .main_content table.wp-block-advgb-table td,
  .main_content table.wp-block-advgb-table td p,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table th p,
  .main_content .wp-block-table table td,
  .main_content .wp-block-table table td p {
    line-height: 1.5;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table th,
  .table_wrapper table td,
  .root .wpnews table th,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table td {
    font-size: 0.938rem;
    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: #0f234d;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1000px), print {
  .table_wrapper table th,
  .root .wpnews table th,
  .main_content table.wp-block-advgb-table th,
  .main_content .wp-block-table table th {
    padding: 1.05em 1.19em 0.91em;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table th,
  .root .wpnews table th,
  .main_content table.wp-block-advgb-table th,
  .main_content .wp-block-table table th {
    padding: 1.26em 1.12em 1.12em;
  }
}
@media screen and (min-width: 1000px), print {
  .table_wrapper table td,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table td {
    padding: 1.05em 2.45em 0.91em;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table td,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table td {
    padding: 1.26em 1.12em 1.12em;
  }
}
.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: #e38849;
  background: linear-gradient(135deg, #d26c64 0%, #e38849 100%);
}
.table_wrapper table tbody th, .table_wrapper table tbody td,
.root .wpnews table tbody th,
.root .wpnews table tbody td,
.main_content table.wp-block-advgb-table tbody th,
.main_content table.wp-block-advgb-table tbody td,
.main_content .wp-block-table table tbody th,
.main_content .wp-block-table table tbody td {
  border: none !important;
}
.table_wrapper table tbody tr,
.root .wpnews table tbody tr,
.main_content table.wp-block-advgb-table tbody tr,
.main_content .wp-block-table table tbody tr {
  position: relative;
}
.table_wrapper table tbody tr:not(:last-of-type),
.root .wpnews table tbody tr:not(:last-of-type),
.main_content table.wp-block-advgb-table tbody tr:not(:last-of-type),
.main_content .wp-block-table table tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #c8d1e4;
}
.table_wrapper table tbody tr td,
.root .wpnews table tbody tr td,
.main_content table.wp-block-advgb-table tbody tr td,
.main_content .wp-block-table table tbody tr td {
  position: relative;
}
.table_wrapper table tbody tr td:not(:first-of-type)::before,
.root .wpnews table tbody tr td:not(:first-of-type)::before,
.main_content table.wp-block-advgb-table tbody tr td:not(:first-of-type)::before,
.main_content .wp-block-table table tbody tr td:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #c8d1e4;
  position: absolute;
  top: 0;
  left: 0;
}
.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 {
  font-weight: 500;
  text-align: left;
  color: #0f234d;
  background: #e38849;
  background-color: #eceae9;
  position: relative;
}
@media screen and (min-width: 1000px), 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 {
    padding: 1.05em 2.45em 0.91em;
    width: 260px;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table tbody th,
  .root .wpnews table tbody th,
  .main_content table.wp-block-advgb-table tbody th,
  .main_content .wp-block-table table tbody th {
    width: 120px;
    padding: 1.26em 1.12em 1.12em;
  }
}
.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: #0f234d;
  background-color: #f9f9fb;
  position: relative;
}
.table_wrapper table ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list),
.root .wpnews table ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list),
.main_content table.wp-block-advgb-table ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list),
.main_content .wp-block-table table ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
  padding-left: 0.8rem;
  margin-bottom: 0;
}
.table_wrapper table ol,
.root .wpnews table ol,
.main_content table.wp-block-advgb-table ol,
.main_content .wp-block-table table ol {
  padding-left: 0;
  margin-bottom: 0.1rem;
}

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

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

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

*/
.main_content .fixed_table {
  position: relative;
  overflow: auto;
  box-sizing: border-box;
}
.main_content .fixed_table table {
  box-sizing: border-box;
  position: static;
}
.main_content .fixed_table thead {
  border-bottom: none !important;
}
@media screen and (max-width: 999px) {
  .main_content .fixed_table table {
    width: 1000px !important;
  }
  .main_content .fixed_table 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: 1000px), 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: 999px) {
  .sp_row_to_column table {
    display: block;
    box-sizing: border-box;
    border-collapse: collapse;
    border-bottom: none;
    border-radius: 0;
  }
  .sp_row_to_column table > tbody:first-child > tr:first-child > *:first-child,
  .sp_row_to_column table > thead:first-child > tr:first-child > *:first-child,
  .sp_row_to_column table > tr:first-child > *:first-child {
    border-top: none;
  }
  .sp_row_to_column thead,
  .sp_row_to_column tbody,
  .sp_row_to_column tr {
    display: block;
    width: 100%;
  }
  .sp_row_to_column thead:nth-child(even),
  .sp_row_to_column tbody:nth-child(even),
  .sp_row_to_column tr:nth-child(even) {
    background-color: transparent;
  }
  .sp_row_to_column th,
  .sp_row_to_column td {
    display: block;
    box-sizing: border-box;
    width: 100% !important;
    white-space: normal;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .sp_row_to_column th {
    min-height: auto !important;
  }
}

.table_wrapper .table.sp_row_to_column tbody tr td {
  position: relative;
}
@media screen and (max-width: 999px) {
  .table_wrapper .table.sp_row_to_column tbody tr td:not(:first-of-type)::before {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

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


さまざまなオプション
wordpress標準table block用

*/
/* stylelint-disable-next-line no-duplicate-selectors */
.table_wrapper.small_padding td,
.table_wrapper.small_padding th {
  padding: 1.2em 1em;
}
@media screen and (min-width: 1000px), print {
  .table_wrapper.small_padding td,
  .table_wrapper.small_padding th {
    padding: 1.2em 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .table_wrapper.small_padding td,
  .table_wrapper.small_padding th {
    padding: 1.2em 0.5em;
  }
}

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

/*

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

画像だけの table を想定

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

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

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

## - a リンク設定

*/
a {
  color: #c27b00;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

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

/**************************
icon
*/
.out,
.ext,
.outlink,
.icon_out,
.icon_ext {
  display: inline-block;
  line-height: 1.4;
  color: #c27b00;
  padding-left: 1.2rem;
  padding-right: 5px;
  position: relative;
  transition: opacity 0.1s;
  text-decoration: none;
}
.out::before,
.ext::before,
.outlink::before,
.icon_out::before,
.icon_ext::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 0.8ex;
  left: 0;
}
.out:hover,
.ext:hover,
.outlink:hover,
.icon_out:hover,
.icon_ext:hover {
  color: #c27b00;
  opacity: 0.7;
  text-decoration: underline;
}
.out::before,
.ext::before,
.outlink::before,
.icon_out::before,
.icon_ext::before {
  top: 1.2ex !important;
}
.out::after,
.ext::after,
.outlink::after,
.icon_out::after,
.icon_ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 18px;
  height: 20px;
  transform: translateY(2px);
  margin-left: 5px;
}

.ext_white::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext_w.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 18px;
  height: 20px;
  transform: translateY(2px);
  margin-left: 5px;
}

.pdf,
.icon_pdf {
  display: inline-block;
  line-height: 1.4;
  color: #c27b00;
  padding-left: 1.2rem;
  padding-right: 5px;
  position: relative;
  transition: opacity 0.1s;
  text-decoration: none;
}
.pdf::before,
.icon_pdf::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 0.8ex;
  left: 0;
}
.pdf:hover,
.icon_pdf:hover {
  color: #c27b00;
  opacity: 0.7;
  text-decoration: underline;
}
.pdf::before,
.icon_pdf::before {
  top: 1.3ex;
}
.pdf::after,
.icon_pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 16px;
  height: 20px;
  transform: translateY(4px);
  margin-left: 5px;
}

.pdf_white::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf_w.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 16px;
  height: 20px;
  transform: translateY(4px);
  margin-left: 5px;
}

/**************************
link
*/
.link {
  display: inline-block;
  line-height: 1.4;
  color: #c27b00;
  padding-left: 1.2rem;
  padding-right: 5px;
  position: relative;
  transition: opacity 0.1s;
  text-decoration: none;
}
.link::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/link.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 0.8ex;
  left: 0;
}
.link:hover {
  color: #c27b00;
  opacity: 0.7;
  text-decoration: underline;
}
.link:hover {
  color: #c27b00;
  opacity: 0.8;
}
.link._2 {
  color: #c27b00;
}
.link._2::before {
  background: url("../img/icon/arrow/link_2.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
}

.link_2 {
  color: #4c4c4c;
}

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

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

## - .btn - 汎用ボタン

*/
.btn {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  align-content: center;
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: 0.12em;
  box-sizing: border-box;
  position: relative;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 575px) {
  .btn {
    font-size: 1.125rem;
  }
}
.btn:not(._no_icon) {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-right: 62px;
  transition: color 0.3s;
}
.btn:not(._no_icon)::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  transition: filetr 0.3s;
}
@media screen and (max-width: 575px) {
  .btn:not(._no_icon) {
    padding-right: 42px;
  }
  .btn:not(._no_icon)::after {
    width: 32px;
    height: 32px;
  }
}
.btn:not(._no_icon)._blue_icon {
  color: #2e374a;
}
.btn:not(._no_icon)._blue_icon::after {
  filter: brightness(0) saturate(100%) invert(15%) sepia(4%) saturate(6428%) hue-rotate(183deg) brightness(94%) contrast(80%);
}
.btn._pdf::after, .btn._pdf_2::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf_circle.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  transition: filetr 0.3s;
}
@media screen and (max-width: 575px) {
  .btn._pdf, .btn._pdf_2 {
    padding-right: 42px;
  }
  .btn._pdf::after, .btn._pdf_2::after {
    width: 32px;
    height: 32px;
  }
}
.btn._pdf_2 {
  color: #2e374a;
}
.btn._pdf_2::after {
  filter: brightness(0) saturate(100%) invert(15%) sepia(4%) saturate(6428%) hue-rotate(183deg) brightness(94%) contrast(80%);
}
.btn._ext::after, .btn._ext_2::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext_circle.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  transition: filetr 0.3s;
}
@media screen and (max-width: 575px) {
  .btn._ext, .btn._ext_2 {
    padding-right: 42px;
  }
  .btn._ext::after, .btn._ext_2::after {
    width: 32px;
    height: 32px;
  }
}
.btn._ext_2 {
  color: #2e374a;
}
.btn._ext_2::after {
  filter: brightness(0) saturate(100%) invert(15%) sepia(4%) saturate(6428%) hue-rotate(183deg) brightness(94%) contrast(80%);
}
.btn:hover {
  color: #788ebb;
}
.btn:hover::after {
  filter: brightness(0) saturate(100%) invert(56%) sepia(20%) saturate(692%) hue-rotate(182deg) brightness(95%) contrast(89%);
}
.btn.no_radius {
  border-radius: 0;
}
.btn._orange, .btn._red {
  position: relative;
  display: block;
  width: 100%;
  max-width: 460px;
  min-height: 140px;
  z-index: 20;
  border-radius: 10px;
  padding: 10px 110px 10px clamp(30px, 5vw, 70px);
  color: #ffffff;
  background-color: #eeeeee;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 8px 8px 20px 2px rgba(46, 55, 74, 0.38);
}
@media screen and (max-width: 999px) {
  .btn._orange, .btn._red {
    padding: 10px 65px 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .btn._orange, .btn._red {
    min-height: 120px;
    border-radius: 6px;
  }
}
@media screen and (max-width: 575px) {
  .btn._orange, .btn._red {
    min-height: 90px;
  }
}
.btn._orange:hover, .btn._red:hover {
  opacity: 0.9;
}
.btn._orange .inner, .btn._red .inner {
  color: #ffffff;
  position: relative;
  z-index: 20;
}
.btn._orange .inner .ja,
.btn._orange .inner .en, .btn._red .inner .ja,
.btn._red .inner .en {
  line-height: 1.5;
}
.btn._orange .inner .ja, .btn._red .inner .ja {
  font-weight: 400;
}
.btn._orange .inner .en, .btn._red .inner .en {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-left: 0.1rem;
}
.btn._orange::after, .btn._red::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_4.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 62px;
  height: 62px;
  position: absolute;
  top: 50%;
  right: clamp(20px, 4vw, 50px);
  transform: translateY(-50%);
  z-index: 20;
}
@media screen and (max-width: 999px) {
  .btn._orange::after, .btn._red::after {
    width: 40px;
    height: 40px;
    right: 20px;
  }
}
.btn._orange::before {
  content: "";
  display: inline-block;
  width: 101%;
  height: 100%;
  background: url("../img/deco/btn_bg_orange_2.webp") no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  z-index: 10;
  transition: 0.3s transform;
}
.btn._orange:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}
.btn._red::before {
  content: "";
  display: inline-block;
  width: 101%;
  height: 100%;
  background: url("../img/deco/btn_bg_red_2.webp") no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  z-index: 10;
  transition: 0.3s transform;
}
.btn._red:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}
.btn._index {
  background: #ffffff;
  border: 1px solid #f0f4f5;
  border-radius: 3px;
  color: #0f234d;
  min-height: 70px;
  position: relative;
  padding: 0.4em 48px 0.3em 22px;
  margin-bottom: 0;
}
.btn._index::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% - 30px);
  min-height: 30px;
  background-color: #eec9ca;
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
}
.btn._index::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/pink.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.btn._index.pdf-pink::after, .btn._index.ext-pink::after {
  right: 15px;
}
.btn-submit .content {
  justify-content: space-between;
}
.btn-submit .content > .text {
  text-align: center;
}
.btn._disabled {
  pointer-events: none;
  opacity: 0.3;
}

button.btn {
  cursor: pointer;
}

.btn_style1 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #0f234d;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.12em;
  position: relative;
  border: 1px solid #0f234d;
  border-radius: 100px;
  background-color: #ffffff;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px), print {
  .btn_style1 {
    min-width: 370px;
    min-height: 80px;
    font-size: 1.5rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .btn_style1 {
    font-size: clamp(1rem, 7vw, 1.25rem);
    min-width: clamp(280px, 40vw, 370px);
    min-height: clamp(60px, 12vw, 80px);
    padding-left: 1.4em;
    padding-right: 1.4em;
  }
}
.btn_style1::after {
  content: "";
  display: block;
  background: url("../img/icon/grid.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 34px;
  height: 34px;
  margin-left: clamp(5px, 1.3vw, 10px);
}
.btn_style1:hover {
  background-color: rgba(227, 136, 73, 0.2);
  border-color: #e38849;
  opacity: 1;
}

.btn_list {
  margin-top: 2em;
  margin-bottom: var(--margin-section);
}
.btn_list .btn {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.btn_list.column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.btn_list.column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 1000px), print {
  .btn_list {
    gap: 30px 40px;
  }
}
@media screen and (max-width: 999px) {
  .btn_list {
    gap: 30px;
  }
  .btn_list.column2, .btn_list.column3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .btn_list {
    flex-direction: column;
  }
  .btn_list.column2, .btn_list.column3 {
    grid-template-columns: 1fr;
  }
}

.index_btn_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 65px) clamp(30px, 3vw, 45px);
}
@media screen and (max-width: 899px) {
  .index_btn_list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 5vw, 65px) clamp(18px, 4.9vw, 80px);
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 475px) {
  .index_btn_list {
    grid-template-columns: 1fr;
    max-width: clamp(300px, 74vw, 400px);
    gap: 30px;
  }
}
.index_btn_list > li a {
  display: block;
}
.index_btn_list > li a .img_wrap {
  position: relative;
  margin-bottom: 17px;
  border-radius: 10px;
  box-shadow: 14px 14px 14px 1px rgba(46, 55, 74, 0.15);
  aspect-ratio: 37/25;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .index_btn_list > li a .img_wrap {
    box-shadow: 10px 10px 10px 1px rgba(46, 55, 74, 0.15);
    margin-bottom: 12px;
    aspect-ratio: initial;
    min-height: auto;
  }
}
@media screen and (max-width: 575px) {
  .index_btn_list > li a .img_wrap {
    margin-bottom: 7px;
    border-radius: 7px;
  }
}
.index_btn_list > li a .img_wrap img {
  display: block;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.index_btn_list > li a .btn_wrap {
  margin-left: 8px;
}
.index_btn_list > li a .btn_wrap .btn {
  font-size: clamp(18px, 2.2vw, 24px);
}

.index_text_btn_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 3vw, 45px);
}
@media screen and (max-width: 899px) {
  .index_text_btn_list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 5vw, 45px) clamp(18px, 4.9vw, 80px);
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 475px) {
  .index_text_btn_list {
    grid-template-columns: 1fr;
    max-width: clamp(300px, 74vw, 400px);
    gap: 30px;
  }
}
.index_text_btn_list > li {
  box-shadow: 5px 5px 14px 5px rgba(46, 55, 74, 0.08);
}
.index_text_btn_list > li a {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(18px, 2vw, 22px);
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 15px 50px 15px 25px;
  box-sizing: border-box;
  color: #2e374a;
  height: 100%;
  line-height: 1.5;
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.index_text_btn_list > li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e38849;
  background: linear-gradient(135deg, #d26c64 0%, #e38849 100%);
  opacity: 0;
  transform: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 5px;
  z-index: -1;
}
.index_text_btn_list > li a::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.index_text_btn_list > li a:hover {
  color: #ffffff;
  opacity: 1;
  background: transparent;
}
.index_text_btn_list > li a:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
}
.index_text_btn_list > li a:hover::after {
  filter: brightness(0) saturate(100%) invert(98%) sepia(7%) saturate(4%) hue-rotate(190deg) brightness(107%) contrast(100%);
}

.index_text_btn_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
@media screen and (max-width: 899px) {
  .index_text_btn_list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
@media screen and (max-width: 475px) {
  .index_text_btn_list {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 20px;
  }
}
.index_text_btn_list > li {
  box-shadow: 5px 5px 14px 5px rgba(46, 55, 74, 0.08);
}
.index_text_btn_list > li a {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 15px 50px 15px 25px;
  box-sizing: border-box;
  color: #2e374a;
  height: 100%;
  line-height: 1.5;
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 575px) {
  .index_text_btn_list > li a {
    font-size: 1rem;
  }
}
.index_text_btn_list > li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e38849;
  background: linear-gradient(135deg, #d26c64 0%, #e38849 100%);
  opacity: 0;
  transform: none;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 5px;
  z-index: -1;
}
.index_text_btn_list > li a::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.index_text_btn_list > li a:hover {
  color: #ffffff;
  opacity: 1;
  background: transparent;
}
.index_text_btn_list > li a:hover::before {
  opacity: 1;
  top: 0;
  left: 0;
}
.index_text_btn_list > li a:hover::after {
  filter: brightness(0) saturate(100%) invert(98%) sepia(7%) saturate(4%) hue-rotate(190deg) brightness(107%) contrast(100%);
}

.main_content .content_body .set .img_wrap > img,
.main_content .content_body .set figure > img {
  margin-top: 0;
  margin-bottom: 0;
}

.set:not(:last-child) {
  margin-bottom: var(--margin-section);
}
.set:not(._interview) > .left ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list),
.set:not(._interview) > .right ul:not(.cancel):not(.acf-radio-list):not(.acf-checkbox-list) {
  padding-left: 0.8rem;
}
.set:not(._interview) > .left ol,
.set:not(._interview) > .right ol {
  padding-left: 0;
}
@media screen and (min-width: 900px), print {
  .set:not(._interview) {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .set:not(._interview) > * {
    flex-grow: 10;
    width: 100%;
  }
  .set:not(._interview) > .left {
    order: 1;
  }
  .set:not(._interview) > .right {
    order: 2;
  }
  .set:not(._interview) > .fix {
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media screen and (max-width: 899px) {
  .set:not(._interview) > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-basis: auto !important;
  }
  .set:not(._interview) > *:first-child {
    margin-bottom: 0;
  }
  .set:not(._interview) > * > img {
    margin-left: auto;
    margin-right: auto;
  }
  .set:not(._interview)._column {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
@media screen and (min-width: 800px), print {
  .set._interview {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .set._interview > * {
    flex-grow: 10;
    width: 100%;
  }
  .set._interview > .left {
    order: 1;
  }
  .set._interview > .right {
    order: 2;
  }
  .set._interview > .fix {
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media screen and (max-width: 799px) {
  .set._interview > * {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-basis: auto !important;
  }
  .set._interview > *:first-child {
    margin-bottom: 0;
  }
  .set._interview > * > img {
    margin-left: auto;
    margin-right: auto;
  }
  .set._interview._column {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
.set .img_wrap > img,
.set figure > img {
  margin-top: 0;
  margin-bottom: 0;
}
.set._vertical {
  flex-direction: column;
  row-gap: clamp(15px, 2.5vw, 30px);
}
.set._vertical .img_wrap {
  overflow: hidden;
  max-height: 480px;
}
.set._vertical .img_wrap img {
  display: block;
}

.main_flex_area {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 80px 30px 120px;
  max-width: 1260px;
  margin: 0 auto;
  box-sizing: border-box;
  -moz-column-gap: clamp(30px, 6vw, 80px);
  column-gap: clamp(30px, 6vw, 80px);
}
@media screen and (max-width: 999px) {
  .main_flex_area {
    padding: 60px 60px 0;
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .main_flex_area {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main_flex_area > * {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.main_column {
  order: 1;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .main_column {
    padding-left: 0;
    margin-bottom: 60px;
  }
}
.main_column > .content_body {
  padding-top: 0;
}
.main_column > .content_body > .content_inner {
  padding-left: clamp(15px, 3.5vw, 50px);
  padding-right: clamp(15px, 3.5vw, 50px);
}
@media screen and (max-width: 575px) {
  .main_column > .content_body > .content_inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.sub_column {
  order: 2;
  width: clamp(250px, 25vw, 300px);
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .sub_column {
    width: 100%;
  }
}

@media screen and (min-width: 1000px), print {
  .breadcrumbs_area {
    padding-top: 8px;
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs_area {
    padding-top: 12px;
    padding-left: 1px;
    width: calc(100% - clamp(25px, 4.2vw, 55px));
  }
}

.breadcrumbs,
.bread_crumb {
  box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  flex-wrap: wrap;
  row-gap: 7px;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs,
  .bread_crumb {
    line-height: 2;
  }
}
@media screen and (max-width: 999px) and (min-width: 576px) {
  .breadcrumbs,
  .bread_crumb {
    padding-top: 0;
    padding-left: 0;
    line-height: 1.5;
  }
}
@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.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 999px) {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.breadcrumbs li:last-child,
.bread_crumb li:last-child {
  margin-left: 0;
  margin-right: 0;
  color: #d2d2d2;
}
.breadcrumbs li:not(:last-of-type),
.bread_crumb li:not(:last-of-type) {
  padding-right: 25px;
  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: #ffffff;
  position: absolute;
  inset: -1px 5px 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 li a,
.bread_crumb li a {
  color: #ffffff;
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 0;
  padding-left: 0;
  text-decoration: none;
  letter-spacing: 0.025em;
}
.breadcrumbs li a::before,
.bread_crumb li a::before {
  content: none !important;
}
.breadcrumbs li a:hover,
.bread_crumb li a:hover {
  opacity: 0.7;
  text-decoration: none;
  border-bottom: 0;
}
@media screen and (max-width: 899px) {
  .breadcrumbs li a,
  .bread_crumb li a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.pagelink_area {
  background-color: #f5f5f9;
  min-height: 65px;
  align-content: center;
  text-align: center;
  padding: 1rem 1rem 0.8rem;
  box-sizing: border-box;
  border-radius: 10px;
  max-width: 1100px;
  margin: 1.2rem auto 1rem;
}
@media screen and (max-width: 767px) {
  .pagelink_area {
    margin-top: 1.5em;
    border-radius: 10px;
  }
}
.pagelink_area ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}
@media screen and (max-width: 575px) {
  .pagelink_area ul {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 420px) {
  .pagelink_area ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.pagelink_area ul > li {
  position: relative;
}
@media screen and (max-width: 575px) {
  .pagelink_area ul > li {
    text-align: left;
  }
}
.pagelink_area ul > li a {
  color: #0f234d;
  text-decoration: none;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  box-sizing: border-box;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 575px) {
  .pagelink_area ul > li a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.875rem;
  }
}
.pagelink_area ul > li a::after {
  content: "↓";
  display: inline-block;
  transition: transform 0.2s;
}
.pagelink_area ul > li a:hover::after {
  transform: translateY(5px);
}

.main_content .pagelink_area + h3 {
  margin-top: 5.625rem;
}
@media screen and (max-width: 999px) {
  .main_content .pagelink_area + h3 {
    margin-top: 2.6rem;
  }
}

.img_pagelink_area ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 18px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .img_pagelink_area ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
}
@media screen and (max-width: 575px) {
  .img_pagelink_area ul {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.img_pagelink_area ul > li {
  background-color: #faf5f4;
  border-radius: 5px;
}
.img_pagelink_area ul > li a, .img_pagelink_area ul > li .label {
  min-height: 90px;
  padding: 15px 2.5rem 15px 1.25rem;
  align-content: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.img_pagelink_area ul > li a > img, .img_pagelink_area ul > li .label > img {
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .img_pagelink_area ul > li a, .img_pagelink_area ul > li .label {
    min-height: 70px;
    padding: 10px 2.5rem 10px 1.25rem;
  }
  .img_pagelink_area ul > li a > img, .img_pagelink_area ul > li .label > img {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 575px) {
  .img_pagelink_area ul > li a, .img_pagelink_area ul > li .label {
    min-height: 60px;
    padding: 7px 2.5rem 7px 1rem;
  }
  .img_pagelink_area ul > li a > img, .img_pagelink_area ul > li .label > img {
    width: 40px;
    height: 40px;
  }
}
.img_pagelink_area ul > li a {
  color: #0f234d;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
}
.img_pagelink_area ul > li a::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/pink.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 14px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(90deg);
  transition: top 0.2s;
}
.img_pagelink_area ul > li a:hover::before {
  transform: scale(1.5);
}
.img_pagelink_area ul > li a:hover::after {
  top: 60%;
}

/**************************
.box
*/
.box {
  background-color: #f5f5f9;
  box-sizing: border-box;
  border-radius: 10px;
  max-width: 1100px;
  margin: 0 auto 2em;
}
@media screen and (min-width: 1200px), print {
  .box {
    padding: 38px 50px 36px;
  }
}
@media screen and (max-width: 1199px) {
  .box {
    padding: clamp(30px, 3.3vw, 40px) clamp(20px, 3.5vw, 50px);
  }
}
@media screen and (max-width: 767px) {
  .box {
    border-radius: 7px;
  }
}
.box__head {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid #c8d1e4;
  padding-bottom: 0.9em;
  margin-bottom: 1.3em;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1000px), print {
  .box__head {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 999px) {
  .box__head {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 575px) {
  .box__head {
    font-size: 1.063rem;
    padding-bottom: 0.7em;
    margin-bottom: 0.8em;
  }
}
.box__body {
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 2;
}
@media screen and (max-width: 999px) {
  .box__body {
    font-size: 0.938rem;
  }
}
.box._important {
  background-color: #faf6f8;
}
.box._important .box__head,
.box._important .box__body {
  color: #cf5e55;
}
.box._important .box__head {
  padding-left: 35px;
  position: relative;
}
.box._important .box__head::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/caution.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0.4ex;
  left: 0;
}
@media screen and (max-width: 999px) {
  .box._important .box__head::before {
    top: 0.1ex;
  }
}

/**************************
お問い合わせパーツ
*/
.main_column .contact_box {
  display: block;
}
.main_column .contact_box__head {
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  min-width: auto;
  padding-right: 0;
}
.main_column .contact_box__head::after {
  width: 100%;
  height: 1px;
  background-color: #c8d1e4;
  position: absolute;
  inset: auto auto 0 50%;
  transform: translateX(-50%);
}
.main_column .contact_box__body {
  padding-left: 0;
  justify-content: center;
  margin: 0 auto;
}

.contact_box {
  border-radius: 10px;
  background-color: #0f234d;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 30px 50px;
  box-sizing: border-box;
  min-height: 160px;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .contact_box {
    justify-content: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 999px) {
  .contact_box {
    padding: 20px clamp(20px, 4vw, 40px);
  }
}
@media screen and (max-width: 899px) {
  .contact_box {
    display: block;
    padding: 25px clamp(20px, 4vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .contact_box {
    border-radius: 7px;
  }
}
.contact_box__head {
  padding-right: clamp(20px, 3.5vw, 45px);
  position: relative;
  line-height: 1.3;
  min-width: 350px;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .contact_box__head {
    min-width: 330px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 899px) {
  .contact_box__head {
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    min-width: auto;
    padding-right: 0;
  }
}
.contact_box__head::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #c8d1e4;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .contact_box__head::after {
    width: 100%;
    height: 1px;
    background-color: #c8d1e4;
    position: absolute;
    inset: auto auto 0 50%;
    transform: translateX(-50%);
  }
}
.contact_box__head .inner {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.375rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .contact_box__head .inner {
    font-size: 1.125rem;
  }
}
.contact_box__body {
  padding-left: clamp(30px, 5.5vw, 70px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 23px;
}
@media screen and (max-width: 999px) {
  .contact_box__body {
    padding-left: 30px;
    flex-direction: column;
  }
}
@media screen and (max-width: 899px) {
  .contact_box__body {
    padding-left: 0;
    justify-content: center;
    margin: 0 auto;
  }
}
.contact_box__body .tel {
  color: #ffffff;
  pointer-events: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .contact_box__body .tel {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .contact_box__body .tel {
    pointer-events: all;
  }
}
.contact_box__body .tel .num {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 2.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .contact_box__body .tel .num {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .contact_box__body .tel .num {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 575px) {
  .contact_box__body .tel .num {
    font-size: 1.5rem;
  }
}
.contact_box__body .tel .num * {
  color: #ffffff;
}
.contact_box__body .tel .pre_text,
.contact_box__body .tel .rear_text {
  margin-bottom: -0.7rem;
}
@media screen and (max-width: 767px) {
  .contact_box__body .tel .pre_text,
  .contact_box__body .tel .rear_text {
    font-size: 0.938rem;
  }
}
.contact_box__body .tel .pre_text {
  margin-right: 7px;
}
.contact_box__body .tel .rear_text {
  display: inline-block;
  margin-left: -5px;
}
.contact_box__body .other_text {
  margin-top: 8px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .contact_box__body .other_text {
    font-size: 0.938rem;
  }
}

.no_newsline_list {
  margin-top: clamp(2em, 4.5vw, 4.3em);
}

.newsline_list {
  --h-padding: clamp(0px, 2vw, 30px);
  border-top: 1px solid #c8d1e4;
}
@media screen and (max-width: 575px) {
  .newsline_list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.newsline_list > li {
  border-bottom: 1px solid #c8d1e4;
}
.newsline_list .newsline {
  color: #0f234d;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  transition: background-color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 90px;
  padding: 0.7em 60px 0.5em var(--h-padding);
}
@media screen and (min-width: 1200px), print {
  .newsline_list .newsline {
    display: flex;
  }
}
@media screen and (max-width: 1199px) {
  .newsline_list .newsline {
    display: block;
    padding-right: 37px;
  }
}
@media screen and (max-width: 575px) {
  .newsline_list .newsline {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.newsline_list .newsline::after {
  content: "";
  display: block;
  background: url("../img/icon/arrow/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: var(--h-padding);
  margin-top: -3px;
}
@media screen and (max-width: 575px) {
  .newsline_list .newsline::after {
    display: none;
  }
}
.newsline_list .newsline:hover {
  opacity: 1;
  background-color: rgba(227, 136, 73, 0.2);
}
.newsline_list .newsline__head {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px), print {
  .newsline_list .newsline__head {
    flex: 38% 0 0;
  }
}
@media screen and (max-width: 1199px) and (min-width: 800px) {
  .newsline_list .newsline__head {
    margin-bottom: 0.2em;
  }
}
.newsline_list .newsline__date {
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 1200px), print {
  .newsline_list .newsline__date {
    flex: 18ex 1.5 0;
  }
}
@media screen and (max-width: 1199px) {
  .newsline_list .newsline__date {
    flex: 18ex 0 0;
  }
}
.newsline_list .newsline__cate {
  flex: 140px 1.2 0;
  font-size: 16px;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  width: 140px;
  padding-right: 1em;
  gap: 5px;
}
.newsline_list .newsline__cate > .label {
  place-content: center center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 35, 77, 0.08);
  border-radius: 100px;
  line-height: 1;
  font-weight: 600;
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px), print {
  .newsline_list .newsline__cate > .label {
    height: 40px;
    width: 140px;
  }
}
@media screen and (max-width: 1199px) {
  .newsline_list .newsline__cate > .label {
    font-size: 0.875rem;
    height: clamp(27px, 3vw, 40px);
    width: clamp(88px, 9vw, 140px);
  }
}
.newsline_list .newsline__ex {
  line-height: 1.8;
}
@media screen and (max-width: 575px) {
  .newsline_list .newsline__ex {
    line-height: 1.6;
  }
}
.newsline_list .newsline__ex .label.new {
  font-size: 0;
}
.newsline_list .newsline__ex .label.new::after {
  content: "";
  font-size: 0;
  display: inline-block;
  margin-left: 7px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #f1b43f;
  position: relative;
  top: -3px;
}
.newsline_list .newsline__ex.pdf, .newsline_list .newsline__ex.ext {
  padding-left: 0;
  color: #0f234d;
}
.newsline_list .newsline__ex.pdf:hover, .newsline_list .newsline__ex.ext:hover {
  text-decoration: none;
  opacity: 1;
}
.newsline_list .newsline__ex.pdf::before, .newsline_list .newsline__ex.ext::before {
  display: none;
}
.newsline_list .newsline._disable {
  pointer-events: none;
}
.newsline_list .newsline._disable::after {
  display: none;
}

.newsdetail__head {
  margin-bottom: 2.5em;
}
.newsdetail__head h3 {
  margin-top: 0 !important;
}
.newsdetail__body {
  padding-bottom: clamp(20px, 10vw, 60px);
  max-width: 1090px;
  margin: auto;
}
.newsdetail__foot {
  padding-top: clamp(20px, 6vw, 30px);
  border-top: 1px solid #c8d1e4;
  text-align: center;
}
.newsdetail__info {
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
}
@media screen and (min-width: 800px), print {
  .newsdetail__info {
    display: flex;
  }
}
@media screen and (max-width: 799px) {
  .newsdetail__info {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.3em;
  }
}
.newsdetail__date {
  letter-spacing: 0;
  white-space: nowrap;
}
.newsdetail__cate {
  font-size: 16px;
  white-space: nowrap;
  display: flex;
  flex-grow: 0;
  flex-wrap: wrap;
  gap: 5px;
}
@media screen and (min-width: 800px), print {
  .newsdetail__cate {
    padding-right: 1em;
  }
}
.newsdetail__cate > .label {
  width: 120px;
  place-content: center center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(15, 35, 77, 0.08);
  border-radius: 100px;
  line-height: 1;
  padding-left: 1em;
  padding-right: 1em;
  box-sizing: border-box;
  font-size: 0.813rem;
}
@media screen and (min-width: 1200px), print {
  .newsdetail__cate > .label {
    height: 26px;
    width: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .newsdetail__cate > .label {
    font-size: 0.875rem;
    height: clamp(27px, 3vw, 40px);
    width: clamp(88px, 9vw, 120px);
  }
}

.contact_form_area.form_area {
  max-width: 1070px;
  margin: auto;
}
@media screen and (max-width: 575px) {
  .contact_form_area.form_area {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.contact_form_area.form_area .contact ul {
  padding-left: 0 !important;
}
.contact_form_area.form_area .contact label {
  margin-bottom: 0;
}
.contact_form_area.form_area .contact .form-group {
  margin-bottom: 0;
}
.contact_form_area.form_area .contact .required {
  font-weight: normal;
  background-color: #cf5e55;
  width: 50px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0;
  margin-right: 1em;
  padding-top: 0.1em;
}
.contact_form_area.form_area .contact .required-no {
  background-color: rgba(24, 55, 120, 0.4);
}
.contact_form_area.form_area .contact .alert {
  padding: 0.5em 0.7em;
  margin-bottom: 0;
  margin-top: 0.5em;
  line-height: 1;
  border-radius: 6px;
}
.contact_form_area.form_area .contact .header_html_area {
  margin-bottom: 3.5em;
  padding-left: 20px;
  padding-right: 20px;
}
.contact_form_area.form_area .contact__head {
  background-color: #ffffff;
  margin-bottom: 1.5em;
  padding: 100px 80px 30px 160px;
  position: relative;
  z-index: 2;
}
.contact_form_area.form_area .contact__head > p {
  text-align: center;
}
.contact_form_area.form_area .contact__body {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.contact_form_area.form_area .contact__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .contact_form_area.form_area .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;
  }
}
.contact_form_area.form_area .contact__gr {
  border-top: 1px solid #c8d1e4;
}
@media screen and (min-width: 768px) {
  .contact_form_area.form_area .contact__gr {
    display: flex;
    min-height: 90px;
  }
}
.contact_form_area.form_area .contact__gr-submit {
  padding: clamp(20px, 6vw, 70px) 1em;
  display: block;
}
.contact_form_area.form_area .contact__th {
  padding: 0.8em;
  background-color: #f3f5f8;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contact_form_area.form_area .contact__th {
    flex: 320px 0 0;
  }
}
.contact_form_area.form_area .contact__td {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  display: block;
  padding: 20px clamp(1em, 2.3vw, 2.5em);
  box-sizing: border-box;
}
.contact_form_area.form_area .contact__td .input-group {
  flex-wrap: nowrap;
}
.contact_form_area.form_area .contact__td .input-group .input-group-text {
  border: 0 none;
  background-color: transparent;
}
.contact_form_area.form_area .contact__td .radio_list {
  min-height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contact_form_area.form_area .contact__td .radio_list .icheck-primary.d-inline-block {
  display: inline-flex !important;
}
.contact_form_area.form_area .contact__td input:not([type=radio]):not([type=checkbox]):not([type=file]),
.contact_form_area.form_area .contact__td textarea,
.contact_form_area.form_area .contact__td select,
.contact_form_area.form_area .contact__td option {
  background-color: #f3f5f8;
  border: 1px solid #f3f5f8;
  border-radius: 6px;
  min-height: 50px;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  box-sizing: border-box;
}
.contact_form_area.form_area .contact__td input:not([type=radio]):not([type=checkbox]):not([type=file])::-moz-placeholder, .contact_form_area.form_area .contact__td textarea::-moz-placeholder, .contact_form_area.form_area .contact__td select::-moz-placeholder, .contact_form_area.form_area .contact__td option::-moz-placeholder {
  color: #99a3a8;
}
.contact_form_area.form_area .contact__td input:not([type=radio]):not([type=checkbox]):not([type=file])::placeholder,
.contact_form_area.form_area .contact__td textarea::placeholder,
.contact_form_area.form_area .contact__td select::placeholder,
.contact_form_area.form_area .contact__td option::placeholder {
  color: #99a3a8;
}
.contact_form_area.form_area .contact__td input:not([type=radio]):not([type=checkbox]):not([type=file]):focus, .contact_form_area.form_area .contact__td input:not([type=radio]):not([type=checkbox]):not([type=file]):active,
.contact_form_area.form_area .contact__td textarea:focus,
.contact_form_area.form_area .contact__td textarea:active,
.contact_form_area.form_area .contact__td select:focus,
.contact_form_area.form_area .contact__td select:active,
.contact_form_area.form_area .contact__td option:focus,
.contact_form_area.form_area .contact__td option:active {
  border: 1px solid #183778;
}
@media screen and (max-width: 767px) {
  .contact_form_area.form_area .contact__td input:not([type=radio]):not([type=checkbox]):not([type=file]),
  .contact_form_area.form_area .contact__td textarea,
  .contact_form_area.form_area .contact__td select,
  .contact_form_area.form_area .contact__td option {
    min-height: 45px;
    padding: 10px 1em;
  }
}
.contact_form_area.form_area .contact__td .custom-select {
  padding-right: 30px;
}
.contact_form_area.form_area .contact__td textarea {
  min-height: 160px;
}
.contact_form_area.form_area .contact__td p {
  margin-bottom: 0;
  padding-left: 0;
}
.contact_form_area.form_area .contact__td.name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
@media screen and (max-width: 575px) {
  .contact_form_area.form_area .contact__td.name {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}
.contact_form_area.form_area .contact__td select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.contact_form_area.form_area .contact .date_input_area {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.contact_form_area.form_area .contact .button_area {
  --submit-btn-width: 320px;
  --submit-btn-height: 100px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact_form_area.form_area .contact .button_area {
    justify-content: center;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .contact_form_area.form_area .contact .button_area {
    --submit-btn-width: 230px;
    --submit-btn-height: 60px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.contact_form_area.form_area .contact .button_area .btn {
  min-width: var(--submit-btn-widthmin-width);
  min-height: var(--submit-btn-height);
}
.contact_form_area.form_area .contact .button_area .btn._orange {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  width: var(--submit-btn-width);
  height: var(--submit-btn-height);
  border: 0 none;
  color: #ffffff;
  font-size: 1.5rem;
  background: url("../img/deco/btn_bg_orange_2.webp") no-repeat center/cover;
  border-radius: 10px;
}
.contact_form_area.form_area .contact .button_area .btn._orange::after {
  width: 50px;
  height: 50px;
  right: 30px;
}
.contact_form_area.form_area .contact .button_area .btn._orange::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .contact_form_area.form_area .contact .button_area .btn._orange {
    --submit-btn-width: 230px;
    font-size: 1.25rem;
  }
  .contact_form_area.form_area .contact .button_area .btn._orange::after {
    width: 30px;
    height: 30px;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .contact_form_area.form_area .contact .button_area .link-prev {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1em;
  }
}
.contact_form_area.form_area .contact .button_area .link-prev::before {
  transform: rotate(180deg);
  margin-top: 0.2em;
}

.contact_progress_area {
  margin-bottom: clamp(10px, 3vw, 25px);
}
@media screen and (max-width: 575px) {
  .contact_progress_area {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.contact_progress {
  --gap: clamp(1px, 1vw, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
}
.contact_progress li {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
@media screen and (max-width: 575px) {
  .contact_progress li {
    gap: 0;
  }
}
@media screen and (min-width: 700px), print {
  .contact_progress li:not(:last-child)::after {
    content: "";
    display: block;
    background: url("../img/icon/form/arrow.webp") 0 0 no-repeat transparent;
    background-size: contain;
    width: 47px;
    height: 7px;
  }
}
.contact_progress .item {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/icon/form/progress-passive.webp") 0 0/cover no-repeat transparent;
}
@media screen and (min-width: 576px), print {
  .contact_progress .item {
    width: 140px;
    height: 120px;
  }
}
@media screen and (max-width: 575px) {
  .contact_progress .item {
    width: 126px;
    height: 108px;
  }
}
.contact_progress .item.active {
  background-image: url("../img/icon/form/progress-active.webp");
}
.contact_progress._input > li:first-of-type .item {
  background-image: url("../img/icon/form/progress-active.webp");
}
.contact_progress._confirm > li:nth-of-type(2) .item {
  background-image: url("../img/icon/form/progress-active.webp");
}
.contact_progress._thanks > li:last-of-type .item {
  background-image: url("../img/icon/form/progress-active.webp");
}

.js-form_content._form_confirm .contact__td {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub_column__head {
  min-height: 50px;
  align-content: center;
  border-radius: 5px;
  background-color: #faf6f8;
  color: #183778;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px clamp(15px, 2.2vw, 22px);
}
.sub_column__head .text {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.375rem;
  line-height: 1.3;
  color: #183778;
}
@media screen and (max-width: 575px) {
  .sub_column__head {
    min-height: 40px;
    margin-bottom: 15px;
  }
  .sub_column__head .text {
    font-size: 1.25rem;
  }
}
.sub_column__box:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  .sub_column__box:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
.sub_column__box .box_head {
  padding: 16px clamp(15px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  background: #e17c36;
  background: linear-gradient(90deg, #d05f54 0%, #e17c36 40%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid #b9c3d6;
}
@media screen and (max-width: 575px) {
  .sub_column__box .box_head {
    padding: 12px clamp(15px, 2.2vw, 22px);
    font-size: 1.125rem;
  }
}
.sub_column__list > li {
  border-bottom: 1px solid #f4f4f4;
}
.sub_column__list > li.selected a, .sub_column__list > li.active a {
  color: #788ebb;
}
.sub_column__list > li.selected a::before, .sub_column__list > li.active a::before {
  filter: brightness(0) saturate(100%) invert(57%) sepia(58%) saturate(270%) hue-rotate(182deg) brightness(88%) contrast(82%);
}
.sub_column__list > li a {
  color: #0f234d;
  min-height: 55px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px clamp(12px, 1.5vw, 20px) 6px clamp(38px, 4.5vw, 45px);
  box-sizing: border-box;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sub_column__list > li a::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 999px) {
  .sub_column__list > li a::before {
    left: 16px;
  }
}
@media screen and (max-width: 575px) {
  .sub_column__list > li a {
    min-height: 50px;
    padding: 16px clamp(12px, 1.5vw, 20px) 13px clamp(38px, 4.5vw, 45px);
  }
}
.sub_column__list > li a:hover {
  background-color: #f2f6f7;
}
.sub_column__list > li a .text {
  line-height: 1.2;
  display: inline-block;
}

.root._blog {
  /**************************
  .main_column
  */
  /**************************
  sub_column
  */
}
.root._blog .header {
  background-color: transparent;
  transition: background-color 0.3s;
}
.root._blog .header .button_area__l > ul > li:not(:last-of-type)::after {
  background-color: #974f68;
}
.root._blog .header .button_area__r .btn_wrap .btn {
  box-shadow: 4px 12px 14px 2px rgba(24, 55, 120, 0.14);
}
.root._blog .header::before {
  content: none;
  display: none;
}
.root._blog .header.js-use_bg {
  background-color: #ffffff;
}
.root._blog .main_content {
  position: relative;
}
.root._blog .main_content .bg {
  width: 100%;
  min-height: 700px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  z-index: 0;
  pointer-events: none;
}
.root._blog .main_content .main_flex_area {
  padding: 25px 30px 120px;
  -moz-column-gap: clamp(30px, 6vw, 80px);
  column-gap: clamp(30px, 6vw, 80px);
}
@media screen and (max-width: 575px) {
  .root._blog .main_content .main_flex_area {
    padding: 25px 20px 60px;
  }
}
.root._blog .main_content .main_flex_area._detail {
  -moz-column-gap: clamp(30px, 4.5vw, 60px);
  column-gap: clamp(30px, 4.5vw, 60px);
}
@media screen and (max-width: 575px) {
  .root._blog .main_content .main_flex_area._detail {
    padding: 25px 5px 60px;
  }
}
@media screen and (max-width: 575px) {
  .root._blog .main_content .main_flex_area._detail .sub_column {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 999px) {
  .root._blog .main_content .main_flex_area .sub_column {
    padding-left: 0;
    padding-right: 0;
  }
}
.root._blog .content_header {
  background: transparent;
  position: relative;
}
.root._blog .content_header__wrap {
  min-height: 700px;
}
@media screen and (max-width: 575px) {
  .root._blog .content_header__wrap {
    min-height: 600px;
  }
}
.root._blog .content_header .inner {
  padding: 20px;
}
.root._blog .content_header .breadcrumbs_area {
  padding-left: 10px;
}
.root._blog .content_header .breadcrumbs li:last-child,
.root._blog .content_header .bread_crumb li:last-child {
  color: #b24e46;
}
.root._blog .content_header .title_wrap {
  padding-top: clamp(20px, 4.5vw, 55px);
  margin-bottom: 3.25rem;
  position: relative;
  width: 100%;
}
.root._blog .content_header .title_wrap .en {
  display: block;
  width: 410px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .root._blog .content_header .title_wrap .en {
    width: 287px;
  }
}
@media screen and (max-width: 420px) {
  .root._blog .content_header .title_wrap .en {
    width: 246px;
  }
}
.root._blog .content_header .title_wrap .ja {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-top: -0.3rem;
  margin-left: 18%;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .root._blog .content_header .title_wrap .ja {
    font-size: 1.375rem;
    margin-top: -0.2rem;
    margin-left: 15%;
  }
}
@media screen and (max-width: 575px) {
  .root._blog .content_header .title_wrap .ja {
    font-size: 1.188rem;
    margin-top: -0.1rem;
    margin-left: 12%;
  }
}
@media screen and (max-width: 420px) {
  .root._blog .content_header .title_wrap .ja {
    text-align: right;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    margin-left: 12%;
  }
}
.root._blog .main_column {
  padding-left: 0;
  padding-right: 0;
}
.root._blog .main_column .blog_wrap {
  margin-bottom: 50px;
}
.root._blog .main_column .blog_wrap._index h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  line-height: 1.5;
  margin-top: -0.8rem;
  margin-bottom: clamp(40px, 6vw, 70px);
}
@media screen and (max-width: 999px) {
  .root._blog .main_column .blog_wrap._index h2 {
    font-size: 28px;
  }
}
.root._blog .main_column .blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5.5vw, 80px);
}
@media screen and (max-width: 999px) {
  .root._blog .main_column .blog_list {
    gap: 40px clamp(20px, 4vw, 60px);
  }
}
@media screen and (max-width: 575px) {
  .root._blog .main_column .blog_list {
    grid-template-columns: 1fr;
    gap: 30px 20px;
  }
}
@media screen and (max-width: 420px) {
  .root._blog .main_column .blog_list {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    margin: 10px;
  }
}
.root._blog .sub_column .blog_search_area {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 575px) {
  .root._blog .sub_column .blog_search_area {
    margin-bottom: 40px;
  }
}
.root._blog .sub_column .blog_search_area .blog_search {
  position: relative;
  box-sizing: border-box;
}
.root._blog .sub_column .blog_search_area .blog_search input {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #183778;
  padding: 1.25rem 3.5rem 1.25rem 1.25rem;
  box-sizing: border-box;
  font-size: 16px;
}
.root._blog .sub_column .blog_search_area .blog_search input:focus {
  outline-color: transparent;
}
.root._blog .sub_column .blog_search_area .blog_search .inputBtn {
  width: 50px;
  height: 60px;
  background-color: transparent;
  outline: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: none;
  position: absolute;
  top: 1px;
  right: 8px;
}
.root._blog .sub_column .blog_search_area .blog_search .inputBtn::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/search_2.webp") 0 0 no-repeat transparent;
  background-size: 29px 28px;
  width: 29px;
  height: 28px;
}
.root._blog .sub_column__wrap:not(:last-of-type) {
  margin-bottom: 90px;
}
@media screen and (max-width: 575px) {
  .root._blog .sub_column__wrap:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.root._blog .sub_column__head .text {
  color: #0f234d;
}
.root._blog .sub_column__list > li {
  border-color: #b9c1d3;
}
.root._blog .sub_column__list._article > li a {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px 0 12px;
  min-height: 85px;
}
.root._blog .sub_column__list._article > li a::before {
  content: none;
  display: none;
}
.root._blog .sub_column__list._article .date,
.root._blog .sub_column__list._article .ex {
  padding-left: clamp(38px, 4.5vw, 45px);
  padding-right: clamp(12px, 1.5vw, 20px);
}
.root._blog .sub_column__list._article .date {
  color: rgba(24, 55, 120, 0.3);
  font-size: 0.938rem;
  line-height: 1.2;
  margin-bottom: 8px;
}
.root._blog .sub_column__list._article .ex {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.6;
  position: relative;
}
.root._blog .sub_column__list._article .ex::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 12px;
  height: 7px;
  position: absolute;
  top: 8px;
  left: 20px;
  transform: none;
}
.root._blog .sub_column__list._archive_year_list .js-accordion_toggle {
  display: block;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 10px;
  position: relative;
}
.root._blog .sub_column__list._archive_year_list .js-accordion_toggle._opened .toggle_btn::after {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.root._blog .sub_column__list._archive_year_list a,
.root._blog .sub_column__list._archive_year_list .toggle {
  display: block;
  position: relative;
  padding: 0 35px 0 10px;
  transition: color 0.1s;
}
.root._blog .sub_column__list._archive_year_list a > ._inner,
.root._blog .sub_column__list._archive_year_list .toggle > ._inner {
  font-size: 1rem;
  display: block;
  min-height: 50px;
  box-sizing: border-box;
  padding: 19px 0;
  line-height: 1.4;
}
.root._blog .sub_column__list._archive_year_list li {
  box-sizing: border-box;
}
.root._blog .sub_column__list._archive_year_list li a,
.root._blog .sub_column__list._archive_year_list li .accordion_toggle_area {
  font-weight: 500;
  display: block;
  position: relative;
  padding: 0 35px 0 30px;
  transition: color 0.1s;
}
.root._blog .sub_column__list._archive_year_list li a > ._inner,
.root._blog .sub_column__list._archive_year_list li .accordion_toggle_area > ._inner {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  padding: 19px 0;
  line-height: 1.4;
  transition: transform 0.2s cubic-bezier(0.34, 0.91, 0.34, 0.9);
  cursor: pointer;
}
.root._blog .sub_column__list._archive_year_list li a:hover,
.root._blog .sub_column__list._archive_year_list li .accordion_toggle_area:hover {
  opacity: 0.8;
}
.root._blog .sub_column__list._archive_year_list li a {
  text-decoration: none !important;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion {
  position: relative;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion .accordion_toggle_area {
  position: relative;
  cursor: pointer;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap {
  position: absolute;
  left: 10px;
  width: 12px;
  height: 12px;
  z-index: 1;
  box-sizing: content-box;
  top: 2.7ex;
  cursor: pointer;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap > .accordion_toggle {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: relative;
  box-sizing: border-box;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap > .accordion_toggle::before {
  display: block;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #0f234d;
  position: absolute;
  inset: 0;
  margin: auto;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion .accordion_toggle_area > .accordion_toggle_wrap > .accordion_toggle::after {
  display: block;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #0f234d;
  position: absolute;
  inset: 0;
  margin: auto;
  transform: rotate(90deg);
  transition: 0.1s;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion .accordion_toggle_area > a::after {
  display: none;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion.opened .accordion_toggle_area {
  border-bottom: 1px solid #b9c3d6;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion.opened .accordion_toggle_wrap > .accordion_toggle::before {
  display: none;
}
.root._blog .sub_column__list._archive_year_list li.js-sub_accordion.opened .accordion_toggle_wrap > .accordion_toggle::after {
  transform: rotate(0);
}
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2,
.root._blog .sub_column__list._archive_year_list li .month_list {
  overflow: hidden;
  transition: height 0.2s, opacity 0.2s;
  height: 0;
}
@media screen and (max-width: 999px) {
  .root._blog .sub_column__list._archive_year_list li .sub_menu__ul2.opened,
  .root._blog .sub_column__list._archive_year_list li .month_list.opened {
    margin-bottom: 5px;
  }
}
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2 > li a,
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2 > li .toggle,
.root._blog .sub_column__list._archive_year_list li .month_list > li a,
.root._blog .sub_column__list._archive_year_list li .month_list > li .toggle {
  display: block;
  position: relative;
  padding: 8px 35px 7px 50px;
  min-height: 50px;
  transition: color 0.1s;
  border-bottom: 1px solid #d5dcdf;
  box-sizing: border-box;
}
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2 > li a > ._inner,
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2 > li .toggle > ._inner,
.root._blog .sub_column__list._archive_year_list li .month_list > li a > ._inner,
.root._blog .sub_column__list._archive_year_list li .month_list > li .toggle > ._inner {
  display: block;
  min-height: 50px;
  box-sizing: border-box;
  padding: 15px 0;
  line-height: 1.4;
}
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2 > li a::before,
.root._blog .sub_column__list._archive_year_list li .month_list > li a::before {
  left: 29px;
}
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2 > li:not(:last-of-type),
.root._blog .sub_column__list._archive_year_list li .month_list > li:not(:last-of-type) {
  margin-bottom: 1px;
}
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2 > li:last-of-type a,
.root._blog .sub_column__list._archive_year_list li .month_list > li:last-of-type a {
  border-bottom: none;
}
.root._blog .sub_column__list._archive_year_list li .sub_menu__ul2.opened,
.root._blog .sub_column__list._archive_year_list li .month_list.opened {
  height: auto;
}
.root._blog .sub_column__list._archive_year_list li.active > a:hover {
  opacity: 0.7;
}

/**************************
	詳細ページ
*/
.main_content .blog_contents .h3 {
  margin-top: 0;
}
@media screen and (min-width: 1200px), print {
  .main_content .blog_contents h4 {
    margin-top: 45px;
  }
}
.main_content .blog_contents img {
  height: auto;
}

.blog_contents {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 60px clamp(30px, 5.5vw, 70px) 40px;
  position: relative;
  margin-bottom: 45px;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .blog_contents {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 575px) {
  .blog_contents {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
  }
}

.blog_contents .info_area,
.editor-styles-wrapper .info_area {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin: 0 0 0 auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 475px) {
  .blog_contents .info_area,
  .editor-styles-wrapper .info_area {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
.blog_contents .info_area .post_date,
.editor-styles-wrapper .info_area .post_date {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-right: 20px;
  line-height: 1.3;
}
.blog_contents .info_area .post_cate .cate,
.editor-styles-wrapper .info_area .post_cate .cate {
  color: #0f234d;
  display: inline-block;
  font-weight: 400;
  position: relative;
  z-index: 10;
  padding: 0.3rem 0.9rem 0.1rem;
  margin: 0.2rem 0;
  box-sizing: border-box;
  text-align: center;
  border-radius: 13px;
  font-size: 0.813rem;
  background-color: #ebedf1;
  line-height: 1.3;
}
.blog_contents .info_area .post_cate .cate:not(:last-of-type),
.editor-styles-wrapper .info_area .post_cate .cate:not(:last-of-type) {
  margin-right: 8px;
}
.blog_contents img,
.editor-styles-wrapper img {
  margin: 1rem auto;
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 999px) {
  .blog_contents img,
  .editor-styles-wrapper img {
    margin: 0 auto 30px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}
.blog_contents p,
.editor-styles-wrapper p {
  padding-left: 0;
  word-break: break-all;
}
.blog_contents p:not(:last-of-type),
.editor-styles-wrapper p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.blog_contents .indent,
.editor-styles-wrapper .indent {
  padding-left: 20px;
}
@media screen and (max-width: 999px) {
  .blog_contents .indent,
  .editor-styles-wrapper .indent {
    padding-left: 10px;
  }
}
.blog_contents figcaption,
.editor-styles-wrapper figcaption {
  background: transparent;
  position: inherit;
}

@media screen and (max-width: 575px) {
  .blog_detail_foot {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.blog_detail_foot__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px clamp(50px, 6.5vw, 110px);
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .blog_detail_foot__inner {
    grid-template-columns: 1fr;
  }
}
.blog_detail_foot .page_transition a {
  color: #0f234d;
}
.blog_detail_foot .page_transition._prev a .icon::after {
  transform: translate(-55%, -50%);
}
.blog_detail_foot .page_transition._prev a:hover .icon::after {
  transform: translate(-65%, -50%);
}
.blog_detail_foot .page_transition._next a {
  justify-content: flex-end;
}
.blog_detail_foot .page_transition._next a .icon::before {
  transform: translate(-50%, -50%) scale(-1, -1);
}
.blog_detail_foot .page_transition._next a .icon::after {
  transform: translate(-45%, -50%) scale(-1, -1);
}
.blog_detail_foot .page_transition._next a:hover .icon::after {
  transform: translate(-35%, -50%) scale(-1, -1);
}
.blog_detail_foot .page_transition a {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media screen and (max-width: 575px) {
  .blog_detail_foot .page_transition a {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
.blog_detail_foot .page_transition a .icon {
  flex-shrink: 0;
  display: block;
  width: 66px;
  height: 66px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .blog_detail_foot .page_transition a .icon {
    width: 50px;
    height: 50px;
  }
}
.blog_detail_foot .page_transition a .icon::before, .blog_detail_foot .page_transition a .icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.blog_detail_foot .page_transition a .icon::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_waku.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 575px) {
  .blog_detail_foot .page_transition a .icon::before {
    width: 50px;
    height: 50px;
  }
}
.blog_detail_foot .page_transition a .icon::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 66px;
  height: 66px;
  transition: transform 0.2s;
}
@media screen and (max-width: 575px) {
  .blog_detail_foot .page_transition a .icon::after {
    width: 50px;
    height: 50px;
  }
}
.blog_detail_foot .page_transition .transition_content {
  display: inline-block;
}
.blog_detail_foot .page_transition .post_date {
  font-size: 0.938rem;
  color: rgba(49, 49, 49, 0.6);
  line-height: 1.3;
}
.blog_detail_foot .page_transition .post_title {
  line-height: 1.3;
  font-size: 1.125rem;
}

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

@media screen and (min-width: 1000px), print {
  .wp-block-columns.is-layout-flex {
    margin-bottom: 2rem;
  }
}
.blog_list .card > a {
  display: block;
  text-decoration: none !important;
}
.blog_list .card > a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.blog_list .thum_box {
  width: 100%;
  max-width: 400px;
  height: clamp(250px, 28vw, 300px);
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 12px 12px 17px 0 rgba(46, 55, 74, 0.15);
}
@media screen and (max-width: 999px) {
  .blog_list .thum_box {
    max-width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .blog_list .thum_box {
    margin-bottom: 10px;
    border-radius: 7px;
  }
}
.blog_list .thum_box .new_icon {
  position: absolute;
  top: -20px;
  left: -20px;
  margin: 0;
}
.blog_list .thum_box img:not(.new_icon) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-top: 0;
  margin-bottom: 0;
}
.blog_list .explain_area {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  .blog_list .explain_area {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.blog_list .explain_area .info_area {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 0.5rem;
  gap: 5px clamp(10px, 1.2vw, 15px);
}
.blog_list .explain_area .info_area .post_date,
.blog_list .explain_area .info_area .post_cate {
  position: relative;
  color: #0f234d;
}
.blog_list .explain_area .info_area .post_date {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  flex-shrink: 0;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 575px) {
  .blog_list .explain_area .info_area .post_date {
    font-size: 0.938rem;
  }
}
.blog_list .explain_area .info_area .post_date:hover {
  text-decoration: none;
}
.blog_list .explain_area .info_area .post_cate {
  color: #0f234d;
  line-height: 1.2;
}
@media screen and (max-width: 420px) {
  .blog_list .explain_area .info_area .post_cate {
    margin-left: 0;
  }
}
.blog_list .explain_area .info_area .post_cate .cate {
  display: inline-block;
  font-weight: 400;
  position: relative;
  z-index: 10;
  padding: 0.3rem 0.9rem 0.1rem;
  margin: 0.2rem 0;
  box-sizing: border-box;
  text-align: center;
  border-radius: 13px;
  font-size: 0.813rem;
  background-color: #ebedf1;
  line-height: 1.4;
}
.blog_list .explain_area .info_area .post_cate .cate:not(:last-of-type) {
  margin-right: 0.4rem;
}
.blog_list .explain_area .info_area .post_cate .cate a:hover {
  text-decoration: underline;
}
.blog_list .explain_area .title {
  line-height: 1.3;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0f234d;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.content_header {
  position: relative;
  background-position: center;
  background-size: cover;
  min-height: 300px;
}
@media screen and (max-width: 999px) {
  .content_header {
    min-height: 230px;
  }
}
@media screen and (max-width: 767px) {
  .content_header {
    min-height: 135px;
  }
}
.content_header .inner {
  max-width: 1240px;
  min-height: inherit;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .content_header .inner {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 575px) {
  .content_header .inner {
    padding: 20px 45px 17px 25px;
  }
}
.content_header .title_wrap {
  position: relative;
  z-index: 20;
  color: #ffffff;
  box-sizing: border-box;
  margin-bottom: 18px;
  width: calc(100% - 150px);
}
@media screen and (max-width: 999px) {
  .content_header .title_wrap {
    width: calc(100% - clamp(25px, 4.2vw, 55px));
  }
}
@media screen and (max-width: 575px) {
  .content_header .title_wrap {
    margin-bottom: 8px;
  }
}
.content_header .title_wrap .sub_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  display: block;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .content_header .title_wrap .sub_title {
    font-size: 1rem;
  }
}
.content_header .title_wrap .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  transform: translateX(-2px);
}
@media screen and (max-width: 999px) {
  .content_header .title_wrap .title {
    font-size: clamp(22px, 3.6vw, 36px);
  }
}
.content_header .category_image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-bottom-right-radius: 20px;
  box-shadow: 12px 12px 20px rgba(46, 55, 74, 0.18);
}
@media screen and (min-width: 1000px), print {
  .content_header .category_image {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 999px) {
  .content_header .category_image {
    width: calc(100% - clamp(20px, 4vw, 50px));
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
@media screen and (max-width: 575px) {
  .content_header .category_image {
    width: calc(100% - 25px);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 10px 10px 22px rgba(46, 55, 74, 0.15);
  }
}

.college_map_wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.college_map_wrap ._test_img {
  position: absolute;
  top: -11px;
  left: 7px;
  z-index: -1;
}
.college_map_wrap ._map {
  position: absolute;
  top: 6px;
  left: 5px;
  pointer-events: none;
  opacity: 0.5;
}
.college_map_wrap a:hover {
  opacity: 1;
}
.college_map_wrap .pref_path {
  cursor: pointer;
}
.college_map_wrap .pref_path._hover, .college_map_wrap .pref_path:hover {
  opacity: 0.8;
}
.college_map_wrap .pref_path.density_1, .college_map_wrap .pref_path.density_2, .college_map_wrap .pref_path.density_3, .college_map_wrap .pref_path.density_4, .college_map_wrap .pref_path.density_5 {
  stroke-miterlimit: 10;
  stroke-width: 0.5px;
}
.college_map_wrap .pref_path.density_1 {
  fill: #ead0c5;
}
.college_map_wrap .pref_path.density_2 {
  fill: #f5bca2;
}
.college_map_wrap .pref_path.density_3 {
  fill: #ee9970;
  stroke: #ffffff;
  stroke-width: 1px;
}
.college_map_wrap .pref_path.density_4 {
  fill: #d96c33;
  stroke: #ffffff;
  stroke-width: 1px;
}
.college_map_wrap .okinawa_border,
.college_map_wrap .abroad_border {
  fill: none;
  stroke: #8a8a8a;
}
.college_map_wrap .pref_name_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 920px) {
  .college_map_wrap .pref_name_area {
    position: static;
    margin-top: 30px;
  }
  .college_map_wrap .pref_name_area > ._inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .college_map_wrap .pref_name_area > ._inner {
    display: grid;
    gap: 10px;
  }
}
.college_map_wrap .pref_name_area > ._inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box {
  position: absolute;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box__text {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none !important;
  font-size: 1.25rem;
  color: #303030 !important;
  pointer-events: all;
  line-height: 1;
  width: 65px;
  letter-spacing: 0.1em;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._hover .pref_text_box__text, .college_map_wrap .pref_name_area > ._inner .pref_text_box:hover .pref_text_box__text {
  color: #8c8190 !important;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._hover::before, .college_map_wrap .pref_name_area > ._inner .pref_text_box._hover::after, .college_map_wrap .pref_name_area > ._inner .pref_text_box:hover::before, .college_map_wrap .pref_name_area > ._inner .pref_text_box:hover::after {
  background-color: #8c8190;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box::before, .college_map_wrap .pref_name_area > ._inner .pref_text_box::after {
  display: block;
  content: "";
  background-color: #303030;
  height: 1px;
  position: absolute;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._hokkaido {
  left: 63.2%;
  top: 8.3%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._hokkaido::before {
  width: 30px;
  top: 30%;
  left: 127%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._hokkaido::after {
  width: 86px;
  top: 114.5%;
  left: calc(129% + 15px);
  transform: rotate(45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._tohoku {
  left: 54%;
  top: 36.3%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._tohoku::before {
  width: 30px;
  top: 31%;
  left: 123%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._tohoku::after {
  width: 86px;
  top: 118%;
  left: calc(129% + 14px);
  transform: rotate(45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kanto {
  left: 79.4%;
  top: 58.3%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kanto::before {
  width: 70px;
  top: 30%;
  right: 121%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kanto::after {
  width: 45px;
  top: 77%;
  right: 266%;
  transform: rotate(-45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._chubu {
  left: 41.5%;
  top: 52%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._chubu::before {
  width: 30px;
  top: 31%;
  left: 115%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._chubu::after {
  width: 86px;
  top: 117%;
  left: calc(129% + 11px);
  transform: rotate(45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kinki {
  left: 55%;
  top: 75%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kinki::before {
  width: 30px;
  top: 38%;
  right: 131%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kinki::after {
  width: 40px;
  top: -4%;
  right: 186%;
  transform: rotate(45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._chugoku {
  left: 15%;
  top: 62.4%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._chugoku::before {
  width: 30px;
  top: 31%;
  left: 115%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._chugoku::after {
  width: 86px;
  top: 117%;
  left: calc(129% + 11px);
  transform: rotate(45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._shikoku {
  left: 41.3%;
  top: 80.1%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._shikoku::before {
  width: 30px;
  top: 31%;
  right: 123%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._shikoku::after {
  width: 40px;
  top: -8%;
  right: 178%;
  transform: rotate(45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kyushu {
  left: 30%;
  top: 88.5%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kyushu::before {
  width: 30px;
  top: 33.5%;
  right: 122%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._kyushu::after {
  width: 40px;
  top: -6.5%;
  right: 177%;
  transform: rotate(45deg);
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._okinawa {
  left: 16%;
  top: 99%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._okinawa::before {
  width: 30px;
  top: 34%;
  right: 122%;
}
.college_map_wrap .pref_name_area > ._inner .pref_text_box._okinawa::after {
  width: 40px;
  top: -7%;
  right: 176%;
  transform: rotate(45deg);
}
@media screen and (max-width: 920px) {
  .college_map_wrap .pref_name_area > ._inner .pref_text_box {
    position: relative;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    text-align: center;
  }
  .college_map_wrap .pref_name_area > ._inner .pref_text_box::before, .college_map_wrap .pref_name_area > ._inner .pref_text_box::after {
    transform: rotate(0) !important;
    left: unset !important;
    display: none;
    position: static !important;
  }
  .college_map_wrap .pref_name_area > ._inner .pref_text_box__text {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #e9e4ea;
    border-radius: 2px;
    padding: 20px 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 576px) {
  .college_map_wrap .pref_name_area > ._inner .pref_text_box__text {
    font-size: 1rem;
    padding: 15px 10px 15px 5px;
  }
  .college_map_wrap .pref_name_area > ._inner .pref_text_box__text::before {
    transform: translateY(-1px);
    margin-right: 5px;
  }
}

body.modal_open {
  overflow: hidden;
}
body.modal_open .footer .icon_wrap {
  display: none;
}
body.modal_open .footer .scroll_to_top {
  display: none;
}
body.modal_open .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close,
body.modal_open .gallery_modal_wrap .gallery_modal_content .gallery_modal_inner .close_tellbtn {
  pointer-events: all;
}

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

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

.index_interview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 65px) clamp(30px, 3vw, 45px);
}
@media screen and (max-width: 1199px) {
  .index_interview {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 5vw, 65px) clamp(18px, 4.9vw, 80px);
    max-width: 900px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .index_interview {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 35px;
  }
}
.index_interview > li a {
  display: block;
}
.index_interview > li a .img_wrap {
  position: relative;
  margin-bottom: 19px;
  border-radius: 10px;
  box-shadow: 14px 14px 14px 1px rgba(46, 55, 74, 0.15);
  aspect-ratio: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .index_interview > li a .img_wrap {
    box-shadow: 10px 10px 10px 1px rgba(46, 55, 74, 0.15);
    aspect-ratio: initial;
    min-height: 250px;
  }
}
.index_interview > li a .img_wrap img {
  display: block;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.index_interview > li a .img_wrap .fog {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.index_interview > li a .img_wrap .text {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(20px, 2.2vw, 35px);
  padding-right: clamp(20px, 2.4vw, 35px);
  font-size: clamp(20px, 2vw, 25px);
  position: absolute;
  bottom: 25px;
  left: 0;
  line-height: 1.7;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .index_interview > li a .img_wrap .text {
    bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 599px) {
  .index_interview > li a .img_wrap .text {
    bottom: 15px;
    font-size: 20px;
  }
}
@media screen and (max-width: 420px) {
  .index_interview > li a .img_wrap .text br {
    display: none;
  }
}
.index_interview > li a .info {
  padding-left: clamp(20px, 2vw, 30px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-right: 58px;
  position: relative;
  color: #0f234d;
}
@media screen and (max-width: 1199px) {
  .index_interview > li a .info {
    padding-right: 53px;
  }
}
@media screen and (max-width: 767px) {
  .index_interview > li a .info {
    padding-right: 40px;
    padding-left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .index_interview > li a .info {
    padding-left: 22px;
  }
}
.index_interview > li a .info::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_5.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .index_interview > li a .info::after {
    right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .index_interview > li a .info::after {
    width: 32px;
    height: 32px;
  }
}
.index_interview > li a .info .name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  flex-shrink: 0;
  line-height: 1.2;
  font-size: clamp(25px, 2.5vw, 34px);
  padding-right: clamp(7px, 1.2vw, 16px);
  margin-right: clamp(7px, 1.2vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .index_interview > li a .info .name {
    font-size: 19px;
  }
}
@media screen and (max-width: 599px) {
  .index_interview > li a .info .name {
    padding-right: 14px;
    margin-right: 14px;
  }
}
.index_interview > li a .info .name .rear_text {
  font-size: clamp(16px, 15vw, 20px);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .index_interview > li a .info .name .rear_text {
    font-size: 14px;
    letter-spacing: 0.02em;
  }
}
.index_interview > li a .info .name::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  min-height: 40px;
  background-color: #b9c3d6;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.index_interview > li a .info .profile {
  position: relative;
  font-size: 0.938rem;
  box-sizing: border-box;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .index_interview > li a .info .profile {
    margin-top: 5px;
    font-size: 0.875rem;
  }
}
.index_interview > li a .info .profile .position,
.index_interview > li a .info .profile .year {
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) and (min-width: 600px) {
  .index_interview > li a .info .profile .position,
  .index_interview > li a .info .profile .year {
    letter-spacing: 0.06em;
  }
}

@font-face {
  font-family: "Apple Chancery", cursive;
  src: url("../font/AppleChancery.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.content_body._interview._detail {
  padding-top: 0;
}

.btn_wrap .btn_view_list {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 40px;
  font-size: 1.5rem;
  min-width: 200px;
  min-height: 80px;
  border: 1px solid #0f234d;
  color: #0f234d;
  padding: 10px clamp(30px, 5.5vw, 55px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1.5;
  -moz-column-gap: 14px;
  column-gap: 14px;
}
@media screen and (max-width: 767px) {
  .btn_wrap .btn_view_list {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 575px) {
  .btn_wrap .btn_view_list {
    font-size: 1rem;
    padding: 8px 25px;
    min-height: 60px;
  }
}
.btn_wrap .btn_view_list > img {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .btn_wrap .btn_view_list > img {
    width: 26px;
    height: auto;
  }
}

.interview_hero {
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .interview_hero {
    margin-bottom: 50px;
  }
}
.interview_hero__l {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  padding-top: 65px;
}
@media screen and (max-width: 799px) {
  .interview_hero__l {
    padding-top: 0;
    position: relative;
    left: 0;
    transform: none;
    width: calc(100% - 25px);
  }
}
.interview_hero__l .sp_bg {
  display: none;
}
@media screen and (max-width: 799px) {
  .interview_hero__l .sp_bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 0 !important;
    margin: 0 !important;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__l .inner {
    position: relative;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.interview_hero__l .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.interview_hero__l .title .category_title {
  display: block;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
@media screen and (max-width: 999px) {
  .interview_hero__l .title .category_title {
    font-size: 1.125rem;
    line-height: 1;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__l .title .category_title {
    display: none;
  }
}
.interview_hero__l .title .page_title {
  font-size: 42px;
  line-height: 1.3;
  margin-left: -2px;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 1259px) {
  .interview_hero__l .title .page_title {
    font-size: 36px;
  }
}
@media screen and (max-width: 999px) {
  .interview_hero__l .title .page_title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__l .title .page_title {
    font-size: 1.625rem;
    margin-bottom: 12px;
  }
}
.interview_hero__l .breadcrumbs_area .bread_crumb > li {
  line-height: 1.7;
}
.interview_hero__l .breadcrumbs_area .bread_crumb > li::after {
  color: #0f234d;
}
.interview_hero__l .breadcrumbs_area .bread_crumb > li:last-child {
  color: #97939e;
}
.interview_hero__l .breadcrumbs_area .bread_crumb > li a {
  color: #0f234d;
}
@media screen and (max-width: 999px) and (min-width: 800px) {
  .interview_hero__l .breadcrumbs_area {
    width: 300px;
    padding-top: 0.1rem;
  }
  .interview_hero__l .breadcrumbs_area .bread_crumb > li {
    opacity: 0.9;
  }
  .interview_hero__l .breadcrumbs_area .bread_crumb > li:not(:last-of-type) {
    padding-right: 25px;
  }
  .interview_hero__l .breadcrumbs_area .bread_crumb > li::after {
    inset: -2px 5px 0 auto;
    opacity: 0.5;
    font-size: 15px;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__l .breadcrumbs_area {
    padding-top: 0;
  }
}
.interview_hero__l .title_img_wrap {
  margin-top: -40px;
  margin-left: -135px;
  pointer-events: none;
}
.interview_hero__l .title_img_wrap img {
  display: block;
}
@media screen and (max-width: 1259px) {
  .interview_hero__l .title_img_wrap {
    margin-left: -85px;
  }
  .interview_hero__l .title_img_wrap img {
    width: 450px;
    height: auto;
  }
}
@media screen and (max-width: 999px) {
  .interview_hero__l .title_img_wrap {
    margin-top: -10px;
    margin-left: -60px;
  }
  .interview_hero__l .title_img_wrap img {
    width: 250px;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__l .title_img_wrap {
    display: none;
  }
}
.interview_hero__r {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 799px) {
  .interview_hero__r {
    margin-top: -48px;
  }
}
.interview_hero__r > .inner {
  width: 80%;
  min-height: clamp(450px, 57vw, 600px);
  margin: 0 0 0 auto;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  padding-left: 50px;
  padding-bottom: 75px;
}
@media screen and (min-width: 1600px), print {
  .interview_hero__r > .inner {
    min-height: 35vw;
  }
}
@media screen and (max-width: 999px) {
  .interview_hero__r > .inner {
    width: 87%;
    padding-left: 20px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__r > .inner {
    width: 100%;
    padding-bottom: 20px;
    min-height: 550px;
  }
}
@media screen and (max-width: 475px) {
  .interview_hero__r > .inner {
    min-height: 375px;
  }
}
.interview_hero__r > .inner .main_img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}
@media screen and (max-width: 799px) {
  .interview_hero__r > .inner .main_img {
    border-radius: 0;
    -o-object-position: top center;
    object-position: top center;
  }
}
.interview_hero__r > .inner .title_wrap {
  min-height: inherit;
  display: flex;
  align-items: flex-end;
}
.interview_hero__r > .inner h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 415px;
  position: relative;
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.4;
  letter-spacing: 0.12em;
  max-width: 65%;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .interview_hero__r > .inner h2 {
    text-shadow: 2px 2px 10px rgba(15, 35, 77, 0.6);
    max-width: 95%;
    padding-top: 300px;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__r > .inner h2 {
    padding-top: 0;
    line-height: 1.5;
  }
}
@media screen and (max-width: 575px) {
  .interview_hero__r > .inner h2 {
    font-size: 1.5rem;
  }
}
.interview_hero__r .profile_wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 799px) {
  .interview_hero__r .profile_wrap {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }
}
.interview_hero__r .profile_wrap .row {
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 5px 0 5px 35px;
  border-top-left-radius: 20px;
}
@media screen and (max-width: 999px) {
  .interview_hero__r .profile_wrap .row {
    padding: 5px 30px;
    height: 70px;
  }
}
@media screen and (max-width: 799px) {
  .interview_hero__r .profile_wrap .row {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    padding: 5px 25px;
  }
}
.interview_hero__r .profile_wrap .row::before {
  content: "";
  display: inline-block;
  background: url("../img/interview/deco.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 20px;
  height: 22px;
  position: absolute;
  bottom: 0;
  left: -19px;
}
.interview_hero__r .profile_wrap .row::after {
  content: "";
  display: inline-block;
  height: 80px;
  width: 30vw;
  background-color: #ffffff;
  position: absolute;
  left: 100%;
  bottom: 0;
}
@media screen and (max-width: 999px) {
  .interview_hero__r .profile_wrap .row::after {
    height: 70px;
  }
}
.interview_hero__r .profile_wrap .row .name {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 34px;
  position: relative;
  display: inline-block;
  padding-right: clamp(15px, 1.8vw, 28px);
  margin-right: clamp(15px, 1.8vw, 28px);
}
.interview_hero__r .profile_wrap .row .name .rear_text {
  font-size: 20px;
}
@media screen and (max-width: 999px) {
  .interview_hero__r .profile_wrap .row .name {
    font-size: 26px;
    padding-right: 12px;
    margin-right: 12px;
  }
  .interview_hero__r .profile_wrap .row .name .rear_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .interview_hero__r .profile_wrap .row .name {
    padding-right: 20px;
    margin-right: 20px;
  }
}
.interview_hero__r .profile_wrap .row .name::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 40px;
  background-color: #a6b2cb;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.interview_hero__r .profile_wrap .row .profile {
  display: flex;
  align-items: center;
  margin-top: 3px;
}
@media screen and (max-width: 799px) {
  .interview_hero__r .profile_wrap .row .profile {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 475px) {
  .interview_hero__r .profile_wrap .row .profile {
    flex-direction: column;
    align-items: flex-start;
  }
}
.interview_hero__r .profile_wrap .row .profile .position,
.interview_hero__r .profile_wrap .row .profile .year {
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 999px) {
  .interview_hero__r .profile_wrap .row .profile .position,
  .interview_hero__r .profile_wrap .row .profile .year {
    font-size: 0.938rem;
  }
}
.interview_hero__r .profile_wrap .row .profile .year {
  position: relative;
  padding-left: 34px;
}
.interview_hero__r .profile_wrap .row .profile .year::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: #0f234d;
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%) rotate(35deg);
}
@media screen and (max-width: 475px) {
  .interview_hero__r .profile_wrap .row .profile .year {
    padding-left: 0;
  }
  .interview_hero__r .profile_wrap .row .profile .year::before {
    content: none;
    display: none;
  }
}

.interview_swiper {
  position: relative;
}
.interview_swiper .en {
  margin-left: -77px;
}
@media screen and (max-width: 1259px) {
  .interview_swiper .en {
    margin-left: -50px;
  }
}
@media screen and (max-width: 575px) {
  .interview_swiper .en {
    width: 300px;
    margin-left: -20px;
    height: auto;
  }
}
.interview_swiper .swiper {
  position: relative;
  margin-top: -50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .interview_swiper .swiper {
    margin: -50px calc(50% - 50vw) 60px;
    width: 100vw;
  }
}
@media screen and (max-width: 899px) {
  .interview_swiper .swiper {
    margin: -30px calc(50% - 50vw) 60px;
  }
}
@media screen and (max-width: 575px) {
  .interview_swiper .swiper {
    margin: -10px calc(50% - 50vw) 40px;
  }
}
.interview_swiper .swiper .swiper-slide {
  width: 370px;
}
@media screen and (max-width: 575px) {
  .interview_swiper .swiper .swiper-slide {
    width: 320px;
  }
}
.interview_swiper .btn_area {
  width: 100%;
  text-align: center;
}
.interview_swiper .btn_area .btn_wrap {
  margin: 0 auto;
}

.swiper-button_area {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  width: 100vw;
}
@media screen and (max-width: 1199px) {
  .swiper-button_area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 999px) {
  .swiper-button_area {
    display: none;
  }
}

.interview_list_item {
  display: block;
}
.interview_list_item .img_wrap {
  position: relative;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 14px 14px 14px 1px rgba(46, 55, 74, 0.15);
  aspect-ratio: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .interview_list_item .img_wrap {
    box-shadow: 10px 10px 10px 1px rgba(46, 55, 74, 0.15);
    aspect-ratio: initial;
    min-height: 250px;
  }
}
.interview_list_item .img_wrap img {
  display: block;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.interview_list_item .img_wrap .fog {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.interview_list_item .img_wrap .image {
  -o-object-position: center -15px;
  object-position: center -15px;
}
@media screen and (max-width: 767px) {
  .interview_list_item .img_wrap .image {
    -o-object-position: center;
    object-position: center;
  }
}
.interview_list_item .img_wrap .text {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(20px, 2.2vw, 35px);
  padding-right: clamp(20px, 2.4vw, 35px);
  font-size: clamp(20px, 2vw, 25px);
  position: absolute;
  bottom: 25px;
  left: 0;
  line-height: 1.7;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .interview_list_item .img_wrap .text {
    bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 599px) {
  .interview_list_item .img_wrap .text {
    bottom: 15px;
    font-size: 20px;
  }
}
@media screen and (max-width: 420px) {
  .interview_list_item .img_wrap .text br {
    display: none;
  }
}
.interview_list_item .info {
  padding-left: clamp(20px, 2vw, 30px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-right: 58px;
  position: relative;
  color: #0f234d;
}
@media screen and (max-width: 1199px) {
  .interview_list_item .info {
    padding-right: 53px;
  }
}
@media screen and (max-width: 767px) {
  .interview_list_item .info {
    padding-right: 40px;
    padding-left: 5px;
  }
}
@media screen and (max-width: 599px) {
  .interview_list_item .info {
    padding-left: 22px;
  }
}
.interview_list_item .info::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_5.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1199px) {
  .interview_list_item .info::after {
    right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .interview_list_item .info::after {
    width: 32px;
    height: 32px;
  }
}
.interview_list_item .info .name {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  flex-shrink: 0;
  line-height: 1.3;
  font-size: clamp(25px, 2.5vw, 34px);
  padding-right: clamp(7px, 0.8vw, 12px);
  margin-right: clamp(7px, 0.8vw, 12px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview_list_item .info .name {
    font-size: 19px;
  }
}
@media screen and (max-width: 599px) {
  .interview_list_item .info .name {
    padding-right: 14px;
    margin-right: 14px;
  }
}
.interview_list_item .info .name .rear_text {
  font-size: clamp(16px, 15vw, 20px);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .interview_list_item .info .name .rear_text {
    font-size: 14px;
    letter-spacing: 0.02em;
  }
}
.interview_list_item .info .name::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  min-height: 40px;
  background-color: #b9c3d6;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.interview_list_item .info .profile {
  position: relative;
  font-size: 0.938rem;
  box-sizing: border-box;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .interview_list_item .info .profile {
    font-size: 0.875rem;
    margin-top: 5px;
  }
}
.interview_list_item .info .profile .position,
.interview_list_item .info .profile .year {
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) and (min-width: 600px) {
  .interview_list_item .info .profile .position,
  .interview_list_item .info .profile .year {
    letter-spacing: 0.06em;
  }
}

@font-face {
  font-family: "Apple Chancery", cursive;
  src: url("../font/AppleChancery.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.interview_section {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 899px) {
  .interview_section {
    margin-bottom: 50px;
  }
}
.interview_section:last-of-type, .interview_section.nomargin {
  margin-bottom: 50px;
}
.interview_section h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12em;
  padding-bottom: 0.8rem;
  line-height: 1.4;
  position: relative;
  transform: translateX(-2px);
  display: block;
  width: 100%;
  padding-left: 1.25rem;
}
.interview_section h3::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #cf5e55;
  background: linear-gradient(90deg, #cf5e55 0%, #e17c36 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 575px) {
  .interview_section h3::after {
    width: 100%;
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .interview_section h3 br {
    display: none;
  }
}
@media screen and (max-width: 1259px) {
  .interview_section h3 {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 1200px), print {
  .interview_section h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .interview_section h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
  }
}
@media screen and (max-width: 899px) {
  .interview_section h3 {
    margin-left: 1.4rem;
  }
}
@media screen and (max-width: 575px) {
  .interview_section h3 {
    padding-left: 0.5rem;
    margin-left: 0;
  }
}
.interview_section ._head {
  display: flex;
  position: relative;
}
.interview_section ._head .num_box {
  position: absolute;
  width: 108px;
  height: 92px;
  left: -65px;
  top: -37px;
}
@media screen and (max-width: 1399px) {
  .interview_section ._head .num_box {
    width: 90px;
    top: -27px;
    left: -45px;
  }
}
@media screen and (max-width: 899px) {
  .interview_section ._head .num_box {
    width: 70px;
    height: 80px;
    left: -28px;
  }
}
@media screen and (max-width: 575px) {
  .interview_section ._head .num_box {
    height: 65px;
    top: -48px;
    left: -22px;
  }
}
@media screen and (max-width: 1399px) {
  .interview_section ._head .num_box .deco {
    width: 90px;
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .interview_section ._head .num_box .deco {
    width: 70px;
  }
}
.interview_section ._head .num_box .num {
  font-family: "Apple Chancery", cursive;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 92px;
  line-height: 1;
  color: #ffffff;
}
@media screen and (max-width: 1399px) {
  .interview_section ._head .num_box .num {
    font-size: 60px;
  }
}
@media screen and (max-width: 999px) {
  .interview_section ._head .num_box .num {
    font-size: 55px;
  }
}
@media screen and (max-width: 899px) {
  .interview_section ._head .num_box .num {
    font-size: 50px;
  }
}
@media screen and (max-width: 575px) {
  .interview_section ._head .num_box .num {
    font-size: 40px;
  }
}
.interview_section .text_wrap {
  padding: clamp(20px, 4vw, 40px) clamp(20px, 3vw, 28px);
}
@media screen and (max-width: 575px) {
  .interview_section .text_wrap {
    padding: clamp(12px, 4vw, 40px) 0.5rem;
  }
}
.interview_section .img_wrap {
  border-radius: 10px;
}
.interview_section .img_wrap img {
  border-radius: 10px;
  display: block;
}
@media screen and (max-width: 999px) {
  .interview_section .img_wrap {
    overflow: hidden;
    max-width: 700px;
    max-height: 580px;
    margin: 0 auto;
    border-radius: 10px;
  }
  .interview_section .img_wrap img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
  }
}
@media screen and (max-width: 799px) {
  .interview_section .img_wrap {
    max-width: 600px;
    max-height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .interview_section .img_wrap {
    max-height: 400px;
  }
}
.interview_section .set:not(._vertical) .right > ._head,
.interview_section .set:not(._vertical) .left > ._head {
  margin-top: 18px;
}
@media screen and (max-width: 1099px) {
  .interview_section .right.fix,
  .interview_section .left.fix {
    flex-basis: 45% !important;
  }
}

.main_content._index_page {
  background-color: #f7f8fb;
}
.main_content._index_page:not(._normal) .content_header {
  min-height: auto;
}
.main_content._index_page:not(._normal) .content_header .inner {
  min-height: 300px;
}
@media screen and (max-width: 575px) {
  .main_content._index_page:not(._normal) .content_header .inner {
    min-height: 200px;
    padding: 20px 25px 17px;
  }
}
.main_content._index_page:not(._normal) .content_header .title_wrap {
  width: 100%;
  margin: 0 auto 18px;
}
.main_content._index_page:not(._normal) .content_header .title_wrap .title {
  margin: 0 auto;
  text-align: center;
}
.main_content._index_page:not(._normal) .content_header .category_image {
  position: absolute;
  top: 0;
  box-shadow: none;
  border-bottom-right-radius: 0;
  min-height: 540px;
}
@media screen and (min-width: 1000px), print {
  .main_content._index_page:not(._normal) .content_header .category_image {
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  .main_content._index_page:not(._normal) .content_header .category_image {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .main_content._index_page:not(._normal) .content_header .category_image {
    min-height: 270px;
  }
}
@media screen and (max-width: 575px) {
  .main_content._index_page:not(._normal) .content_header .category_image {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0;
  }
}
.main_content._index_page:not(._normal) .content_body {
  padding-top: 0;
}

.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-style: normal;
  font-weight: 400;
  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 {
  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;
  }
}
@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 {
  max-width: 245px;
  min-height: 56px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  border-radius: 28px;
  margin-bottom: 15px;
}
.search._long {
  max-width: none;
}
@media screen and (max-width: 767px) {
  .search {
    max-width: 450px;
    margin: 0 auto;
  }
}
.search .search__text {
  width: 100%;
  border-radius: 28px;
  padding-left: 18px;
  padding-right: 60px;
  height: 56px;
  line-height: 1;
  font-size: 16px;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  border: 1px solid #c8d1e4;
}
@media screen and (max-width: 575px) {
  .search .search__text {
    padding-left: 15px;
  }
}
.search__submit {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 0;
  background-color: transparent;
}
.search__submit::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: 30px;
  border: 0;
  margin: 0;
  box-sizing: border-box;
  background: url("../img/icon/search.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 22px;
  height: 28px;
}

.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: #0f234d;
  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;
  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: #c27b00;
}

.image_btn {
  display: block;
  max-width: 600px;
  width: 100%;
  aspect-ratio: 1.44/1;
  position: relative;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 10px 10px 0 0 rgba(240, 244, 245, 0.8);
  transition: box-shadow 0.2s;
}
.image_btn::before {
  content: none !important;
}
.image_btn .image {
  max-width: 600px;
}
.image_btn .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform 0.3s;
}
.image_btn .title {
  width: 100%;
  max-width: 280px;
  min-height: 70px;
  align-content: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  color: #0f234d;
  background-color: #ffffff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  box-sizing: border-box;
  padding: 5px 48px 5px 10px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .image_btn .title {
    bottom: 15px;
    font-size: 0.938rem;
  }
}
@media screen and (max-width: 700px) and (min-width: 576px) {
  .image_btn .title {
    max-width: 230px;
  }
}
.image_btn .title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% - 30px);
  background-color: #eec9ca;
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.image_btn .title::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/pink.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 14px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.image_btn .title.pdf::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/pdf.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 18px;
  height: 20px;
  position: relative;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  left: auto;
  margin-left: 0;
  margin-top: 0;
}
.image_btn .title.out::after, .image_btn .title.ext::after, .image_btn .title.outlink::after, .image_btn .title.icon_out::after, .image_btn .title.icon_ext::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/ext.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 17px;
  height: 14px;
  position: relative;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  left: auto;
  margin-left: 0;
  margin-top: 0;
}
.image_btn .title small {
  display: block;
}
.image_btn:hover {
  box-shadow: 4px 4px 0 0 #f0f4f5;
}
.image_btn:hover .image {
  overflow: hidden;
}
.image_btn:hover .image img {
  transform: scale(1.08);
}
.image_btn:hover .title {
  opacity: 0.9;
}
.image_btn._disabled {
  pointer-events: none;
  opacity: 0.3;
}

button.btn {
  cursor: pointer;
}

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

.main_column .image_grid {
  display: grid;
  gap: clamp(20px, 3.2vw, 40px);
  margin-bottom: clamp(20px, 3.2vw, 40px);
}
@media screen and (max-width: 767px) {
  .main_column .image_grid {
    gap: clamp(12px, 2.4vw, 18px);
  }
}
.main_column .image_grid._2column {
  gap: clamp(20px, 3.2vw, 40px);
}
.main_column .image_grid._3column {
  gap: clamp(20px, 3.2vw, 40px);
}

.image_grid {
  display: grid;
  gap: 40px;
  margin-bottom: clamp(20px, 6vw, 100px);
}
@media screen and (max-width: 767px) {
  .image_grid {
    margin-bottom: 1.5rem;
    gap: clamp(12px, 2.4vw, 18px);
  }
}
.image_grid._2column img, .image_grid._3column img {
  margin-top: 0;
  margin-bottom: 0;
}
.image_grid._2column {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 7vw, 100px);
}
@media screen and (max-width: 767px) {
  .image_grid._2column {
    gap: clamp(12px, 2.4vw, 18px);
  }
}
@media screen and (max-width: 450px) {
  .image_grid._2column {
    grid-template-columns: 1fr !important;
  }
}
.image_grid._3column {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.8vw, 50px);
}
@media screen and (max-width: 767px) {
  .image_grid._3column {
    gap: clamp(12px, 2.4vw, 18px);
  }
}
@media screen and (max-width: 450px) {
  .image_grid._3column {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 450px) {
  .image_grid._4column, .image_grid._5column, .image_grid._3column {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.image_grid img {
  display: block;
  width: 100%;
}

.sitemap_area {
  display: flex;
  -moz-column-gap: 30px;
  column-gap: 30px;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.sitemap_area > * {
  width: calc(33% - 20px);
}
@media screen and (max-width: 1199px) {
  .sitemap_area > * {
    -moz-column-gap: 20px;
    column-gap: 20px;
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 649px) {
  .sitemap_area > * {
    width: 100%;
  }
}
.sitemap_area .column {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 575px) {
  .sitemap_area .column {
    row-gap: 0;
  }
}
.sitemap_area .sitemap {
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  .sitemap_area .sitemap {
    margin-bottom: 10px;
  }
}
.sitemap_area .sitemap .title,
.sitemap_area .sitemap .h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .sitemap_area .sitemap .title,
  .sitemap_area .sitemap .h3 {
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
  }
}
.sitemap_area .sitemap .title a,
.sitemap_area .sitemap .h3 a {
  color: #0f234d;
  min-height: 39px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  justify-content: space-between;
  font-weight: 500;
  line-height: 1.4;
  box-sizing: border-box;
  transition: color 0.2s;
  text-decoration: none;
}
.sitemap_area .sitemap .title a::after,
.sitemap_area .sitemap .h3 a::after {
  content: "";
  display: block;
  background: url("../img/icon/arrow/circle_3.webp") center center/contain no-repeat transparent;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  .sitemap_area .sitemap .title a::after,
  .sitemap_area .sitemap .h3 a::after {
    width: 32px;
    height: 32px;
  }
}
.sitemap_area .sitemap .title a:hover,
.sitemap_area .sitemap .h3 a:hover {
  color: #4c4c4c;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .sitemap_area .sitemap .title a,
  .sitemap_area .sitemap .h3 a {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 575px) {
  .sitemap_area .sitemap .title a,
  .sitemap_area .sitemap .h3 a {
    font-size: 1rem;
  }
}
.sitemap_area .sitemap .title.kana a,
.sitemap_area .sitemap .h3.kana a {
  letter-spacing: 0.01em;
}
.sitemap_area .sitemap > ul {
  padding-left: 20px !important;
  box-sizing: border-box;
}
@media screen and (max-width: 575px) {
  .sitemap_area .sitemap > ul {
    padding-left: 10px !important;
  }
}
.sitemap_area .sitemap > ul li {
  margin-bottom: 10px;
}
.sitemap_area .sitemap > ul a {
  color: #0f234d;
}
.sitemap_area .sitemap > ul a:hover {
  opacity: 0.7;
  color: #4c4c4c;
}
.sitemap_area .sitemap > ul .a1 {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 5px;
  text-decoration: none;
}
.sitemap_area .sitemap > ul .a1::after {
  content: "";
  display: block;
  background: url("../img/icon/arrow/pink.webp") center center/contain no-repeat transparent;
  background-size: contain;
  width: 14px;
  height: 13px;
  flex-shrink: 0;
  margin-right: 5px;
  transform: translateY(-1px);
}
.sitemap_area .sitemap > ul .a2 {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding-left: 20px;
  text-decoration: none;
}
.sitemap_area .sitemap > ul .a2::after {
  content: "";
  display: block;
  background: url("../img/icon/arrow/pink.webp") center center/contain no-repeat transparent;
  background-size: 14px 13px;
  width: 14px;
  height: 13px;
  flex-shrink: 0;
  margin-right: 5px;
  transform: translateY(-1px);
}

.news_pager_area {
  padding-top: 40px;
}
@media screen and (min-width: 1000px), print {
  .news_pager_area {
    width: auto;
  }
}
@media screen and (max-width: 999px) {
  .news_pager_area {
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.news_pager_area > .news_pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.news_pager_area > .news_pager > .news_pager__box:not(.prev_link):not(.next_link):not(.text_link):not(.prev):not(.next) {
  text-align: center;
  margin: 5px 3px;
}
.news_pager_area > .news_pager > .news_pager__box:not(.prev_link):not(.next_link):not(.text_link):not(.prev):not(.next) > a,
.news_pager_area > .news_pager > .news_pager__box:not(.prev_link):not(.next_link):not(.text_link):not(.prev):not(.next) > span {
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  display: block;
  position: relative;
  font-size: 1.125rem;
  box-sizing: border-box;
  padding-left: 1px;
  transition: 0.2s background-color;
}
.news_pager_area > .news_pager > .news_pager__box:not(.prev_link):not(.next_link):not(.text_link):not(.prev):not(.next) > a.current,
.news_pager_area > .news_pager > .news_pager__box:not(.prev_link):not(.next_link):not(.text_link):not(.prev):not(.next) > span.current {
  background-color: #e7ebf1;
}
.news_pager_area > .news_pager > .news_pager__box:not(.prev_link):not(.next_link):not(.text_link):not(.prev):not(.next) > a:hover,
.news_pager_area > .news_pager > .news_pager__box:not(.prev_link):not(.next_link):not(.text_link):not(.prev):not(.next) > span:hover {
  background-color: #e7ebf1;
}
.news_pager_area > .news_pager > .news_pager__box > a {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: #0f234d;
  text-decoration: none;
  font-size: 1.125rem;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link, .news_pager_area > .news_pager > .news_pager__box > a.prev, .news_pager_area > .news_pager > .news_pager__box > a.next_link, .news_pager_area > .news_pager > .news_pager__box > a.next {
  color: transparent;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before, .news_pager_area > .news_pager > .news_pager__box > a.prev_link::after, .news_pager_area > .news_pager > .news_pager__box > a.prev::before, .news_pager_area > .news_pager > .news_pager__box > a.prev::after, .news_pager_area > .news_pager > .news_pager__box > a.next_link::before, .news_pager_area > .news_pager > .news_pager__box > a.next_link::after, .news_pager_area > .news_pager > .news_pager__box > a.next::before, .news_pager_area > .news_pager > .news_pager__box > a.next::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before, .news_pager_area > .news_pager > .news_pager__box > a.prev::before, .news_pager_area > .news_pager > .news_pager__box > a.next_link::before, .news_pager_area > .news_pager > .news_pager__box > a.next::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_waku.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 66px;
  height: 66px;
}
@media screen and (max-width: 575px) {
  .news_pager_area > .news_pager > .news_pager__box > a.prev_link::before, .news_pager_area > .news_pager > .news_pager__box > a.prev::before, .news_pager_area > .news_pager > .news_pager__box > a.next_link::before, .news_pager_area > .news_pager > .news_pager__box > a.next::before {
    width: 50px;
    height: 50px;
  }
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::after, .news_pager_area > .news_pager > .news_pager__box > a.prev::after, .news_pager_area > .news_pager > .news_pager__box > a.next_link::after, .news_pager_area > .news_pager > .news_pager__box > a.next::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 66px;
  height: 66px;
  transform: translate(-55%, -50%);
  transition: transform 0.2s;
}
@media screen and (max-width: 575px) {
  .news_pager_area > .news_pager > .news_pager__box > a.prev_link::after, .news_pager_area > .news_pager > .news_pager__box > a.prev::after, .news_pager_area > .news_pager > .news_pager__box > a.next_link::after, .news_pager_area > .news_pager > .news_pager__box > a.next::after {
    width: 50px;
    height: 50px;
  }
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link, .news_pager_area > .news_pager > .news_pager__box > a.prev {
  display: block;
  margin-right: 70px;
  position: relative;
  width: 66px;
  height: 66px;
}
@media screen and (max-width: 575px) {
  .news_pager_area > .news_pager > .news_pager__box > a.prev_link, .news_pager_area > .news_pager > .news_pager__box > a.prev {
    width: 50px;
    height: 50px;
  }
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::before, .news_pager_area > .news_pager > .news_pager__box > a.prev::before {
  transform: translate(-50%, -50%);
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link::after, .news_pager_area > .news_pager > .news_pager__box > a.prev::after {
  transform: translate(-55%, -50%);
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link:hover::after, .news_pager_area > .news_pager > .news_pager__box > a.prev:hover::after {
  transform: translate(-65%, -50%);
}
.news_pager_area > .news_pager > .news_pager__box > a.prev_link.prev_link-passive, .news_pager_area > .news_pager > .news_pager__box > a.prev.prev_link-passive {
  pointer-events: none;
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link, .news_pager_area > .news_pager > .news_pager__box > a.next {
  display: block;
  margin-left: 70px;
  position: relative;
  width: 66px;
  height: 66px;
}
@media screen and (max-width: 575px) {
  .news_pager_area > .news_pager > .news_pager__box > a.next_link, .news_pager_area > .news_pager > .news_pager__box > a.next {
    width: 50px;
    height: 50px;
  }
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link::before, .news_pager_area > .news_pager > .news_pager__box > a.next::before {
  transform: translate(-50%, -50%) scale(-1, -1);
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link::after, .news_pager_area > .news_pager > .news_pager__box > a.next::after {
  transform: translate(-45%, -50%) scale(-1, -1);
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link:hover::after, .news_pager_area > .news_pager > .news_pager__box > a.next:hover::after {
  transform: translate(-35%, -50%) scale(-1, -1);
}
.news_pager_area > .news_pager > .news_pager__box > a.next_link.next_link-passive, .news_pager_area > .news_pager > .news_pager__box > a.next.next_link-passive {
  pointer-events: none;
}
@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, .news_pager_area > .news_pager > .news_pager__box > a.prev {
    margin-right: 20px;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.next_link, .news_pager_area > .news_pager > .news_pager__box > a.next {
    margin-left: 20px;
  }
  .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, .news_pager_area > .news_pager > .news_pager__box > a.prev {
    margin-right: 10px;
  }
  .news_pager_area > .news_pager > .news_pager__box > a.next_link, .news_pager_area > .news_pager > .news_pager__box > a.next {
    margin-left: 10px;
  }
}

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

.swiper-button_wrap {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  display: flex;
  align-items: center;
  width: 66px;
  height: 66px;
  cursor: pointer;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 999px) {
  .swiper-button-prev,
  .swiper-button-next {
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.swiper-button-prev .icon,
.swiper-button-next .icon {
  display: block;
  width: 66px;
  height: 66px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .swiper-button-prev .icon,
  .swiper-button-next .icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .swiper-button-prev .icon,
  .swiper-button-next .icon {
    width: 40px;
    height: 40px;
  }
}
.swiper-button-prev .icon::before, .swiper-button-prev .icon::after,
.swiper-button-next .icon::before,
.swiper-button-next .icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.swiper-button-prev .icon::before,
.swiper-button-next .icon::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_waku.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 999px) {
  .swiper-button-prev .icon::before,
  .swiper-button-next .icon::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .swiper-button-prev .icon::before,
  .swiper-button-next .icon::before {
    width: 40px;
    height: 40px;
  }
}
.swiper-button-prev .icon::after,
.swiper-button-next .icon::after {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_arrow.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 66px;
  height: 66px;
  transition: transform 0.2s;
}
@media screen and (max-width: 999px) {
  .swiper-button-prev .icon::after,
  .swiper-button-next .icon::after {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .swiper-button-prev .icon::after,
  .swiper-button-next .icon::after {
    width: 40px;
    height: 40px;
  }
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev .icon::after {
  transform: translate(-55%, -50%);
}
.swiper-button-prev:hover .icon::after {
  transform: translate(-65%, -50%);
}

.swiper-button-next {
  justify-content: flex-end;
  right: 0;
}
.swiper-button-next .icon::before {
  transform: translate(-50%, -50%) scale(-1, -1);
}
.swiper-button-next .icon::after {
  transform: translate(-45%, -50%) scale(-1, -1);
}
.swiper-button-next:hover .icon::after {
  transform: translate(-35%, -50%) scale(-1, -1);
}

.news_tablink_list {
  display: flex;
  gap: clamp(5px, 2vw, 25px);
  margin-bottom: clamp(1.5em, 3vw, 2.5em);
}
@media screen and (max-width: 999px) {
  .news_tablink_list {
    gap: 7px;
  }
}
@media screen and (max-width: 575px) {
  .news_tablink_list {
    gap: 5px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.news_tablink_list > li {
  display: flex;
  width: 100%;
}
.news_tablink_list a {
  color: #0f234d;
  background-color: rgba(15, 35, 77, 0.08);
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(46px, 5vw, 65px);
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .news_tablink_list a {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 575px) {
  .news_tablink_list a {
    letter-spacing: -0.03ex;
  }
}
.news_tablink_list a.active {
  background-color: #788ebb;
  color: #ffffff;
}

:root {
  --pc-header-height: 90px;
  --sp-header-height: 70px;
  --sp-header-clamp: 70px;
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--pc-header-height);
  padding-left: 60px;
  padding-right: 5px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .container-header {
    padding-left: 30px;
  }
}
@media screen and (max-width: 999px) {
  .container-header {
    height: var(--sp-header-height);
    padding-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  .container-header {
    padding-left: 25px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
  background-color: #ffffff;
}
.header::before {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffffff;
  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__r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
@media screen and (min-width: 1000px), print {
  .header__r {
    height: 70px;
  }
}
.header__logo,
.header__logo .logo,
.header__logo img {
  display: block;
  width: 280px;
  height: auto;
}
@media screen and (max-width: 999px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 130px;
  }
}
.header__logo .logo {
  padding: 0;
  position: relative;
}
.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;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .header .button_area {
    display: none;
  }
}
.header .button_area__l {
  margin-right: clamp(15px, 2.5vw, 30px);
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(20px, 3.2vw, 29px);
  column-gap: clamp(20px, 3.2vw, 29px);
}
@media screen and (max-width: 1199px) {
  .header .button_area__l {
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-right: 15px;
  }
}
.header .button_area__r {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin-top: 20px;
}
.header .button_area__r .btn_wrap {
  position: relative;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.header .button_area__r .btn_wrap .btn {
  width: clamp(135px, 13.5vw, 160px);
  height: 120px;
  position: relative;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  padding: 20px 10px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transform: translateY(-10px);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 4px 4px 12px rgba(24, 55, 120, 0.18);
}
@media screen and (max-width: 1199px) {
  .header .button_area__r .btn_wrap .btn {
    width: 130px;
  }
}
@media screen and (max-width: 1099px) {
  .header .button_area__r .btn_wrap .btn {
    width: 120px;
  }
}
.header .button_area__r .btn_wrap .btn._bg_orange::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/11;
  background: url("../img/deco/btn_bg_orange_1.webp") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header .button_area__r .btn_wrap .btn._bg_red::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/11;
  background: url("../img/deco/btn_bg_red_1.webp") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header .button_area__r .btn_wrap .btn:hover {
  opacity: 1;
  transform: translateY(0);
}
.header .button_area__r .btn_wrap .top,
.header .button_area__r .btn_wrap .bottom {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 20;
  color: #ffffff;
}
.header .button_area__r .btn_wrap .top {
  font-size: 1.25rem;
  margin-bottom: 3px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 1199px) {
  .header .button_area__r .btn_wrap .top {
    font-size: 1.125rem;
  }
}
.header .button_area__r .btn_wrap .bottom {
  font-size: 1rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .header .button_area__r .btn_wrap .bottom {
    font-size: 0.938rem;
  }
}
.header.js-use_bg, .header.js-open_menu {
  box-shadow: 1px 1px 5px rgba(24, 55, 120, 0.15);
}
.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;
}

.tool_link {
  border: 1px solid #0f234d;
  border-radius: 20px;
  color: #0f234d;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
  box-sizing: border-box;
  padding: 2px 10px;
  background-color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  transition: 0.2s background-color;
}
@media screen and (max-width: 1199px) {
  .tool_link {
    padding: 3px 15px 2px;
    min-height: 36px;
  }
}
.tool_link:hover {
  background-color: #0f234d;
  color: #ffffff;
  opacity: 1;
}
.tool_link:hover .text {
  color: #ffffff;
}
.tool_link .text {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}
@media screen and (max-width: 1199px) {
  .tool_link .text {
    line-height: 1.6;
  }
}

.translate_wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
}
@media screen and (max-width: 1199px) {
  .translate_wrap {
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
}
.translate_wrap img {
  transition: 0.2s transform;
}
.translate_wrap .text {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  color: #0f234d;
  line-height: 1.4;
  transform: translateY(1px);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1199px) {
  .translate_wrap .text {
    font-size: 0.875rem;
  }
}
.translate_wrap:hover {
  opacity: 1;
}
.translate_wrap:hover img {
  transform: scale(-1, 1);
}

body.js-pc_menu_open .imain_content,
body.js-pc_menu_open .main_content,
body.js-pc_menu_open .footer {
  position: relative;
}
body.js-pc_menu_open .imain_content::after,
body.js-pc_menu_open .main_content::after,
body.js-pc_menu_open .footer::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 55, 74, 0.4392156863);
  z-index: 10001;
  cursor: pointer;
}

.gnav_area {
  width: 100%;
  height: calc(100vh - 90px);
  max-height: 720px;
  background-color: rgba(240, 241, 241, 0.96);
  padding: 60px 30px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  position: fixed;
  top: 90px;
  right: 0;
  box-sizing: border-box;
  overflow: auto;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.1s;
  pointer-events: none;
  box-shadow: 2px 12px 12px 0 rgba(46, 55, 74, 0.12);
}
.gnav_area._show {
  opacity: 1;
  z-index: 10002;
  pointer-events: all;
}
.gnav_area .gnav {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}
.gnav_area .gnav .row {
  display: grid;
  -moz-column-gap: clamp(25px, 2.5vw, 40px);
  column-gap: clamp(25px, 2.5vw, 40px);
}
.gnav_area .gnav .row._top {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 75px;
}
.gnav_area .gnav .row .gnav_link_list {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: clamp(20px, 2.5vw, 45px);
  column-gap: clamp(20px, 2.5vw, 45px);
}
.gnav_area .gnav .row .gnav_link_list > li a {
  color: #c27b00;
}
@media screen and (max-width: 1099px) {
  .gnav_area .gnav .row .gnav_link_list > li a {
    font-size: 15px;
    letter-spacing: 0.08em;
  }
}
.gnav_area .gnav_sitemap:not(:last-of-type) {
  margin-bottom: 40px;
}
.gnav_area .gnav_sitemap a {
  color: #222222;
  transition: color 0.1s;
}
.gnav_area .gnav_sitemap a:hover {
  color: #4c4c4c;
}
.gnav_area .gnav_sitemap .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  position: relative;
  border-bottom: 1px solid #c8d1e4;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) and (min-width: 1000px) {
  .gnav_area .gnav_sitemap .title {
    font-size: 1.063rem;
  }
}
.gnav_area .gnav_sitemap .title a {
  color: #0f234d;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  line-height: 1.5;
}
.gnav_area .gnav_sitemap .title a::before {
  display: block;
  content: "";
  width: 42px;
  height: 42px;
  background: url("../img/icon/arrow/circle_6.webp") no-repeat;
  background-size: contain;
  transform: translateY(-2px);
}
@media screen and (max-width: 1199px) and (min-width: 1000px) {
  .gnav_area .gnav_sitemap .title a {
    -moz-column-gap: 6px;
    column-gap: 6px;
  }
  .gnav_area .gnav_sitemap .title a::before {
    width: 34px;
    height: 34px;
  }
}
.gnav_area .gnav_sitemap .title a.kana {
  letter-spacing: -0.06em;
}
.gnav_area .gnav_sitemap .list {
  padding-right: 15px;
  padding-left: 20px;
  box-sizing: border-box;
}
.gnav_area .gnav_sitemap .list > li {
  font-size: 0.938rem;
}
.gnav_area .gnav_sitemap .list > li a {
  display: block;
  color: #0f234d;
}
.gnav_area .gnav_sitemap .list > li a ._inner {
  font-weight: 500;
  line-height: 1.5;
}
.gnav_area .gnav_sitemap .list > li:not(:last-of-type) {
  margin-bottom: 1.25rem;
}
.gnav_area__search {
  width: 100%;
  margin-bottom: 50px;
}
.gnav_area__search form {
  display: flex;
  align-items: center;
}
.gnav_area__search .search_input {
  overflow: initial;
  box-shadow: 0 4px 3px 0 rgba(9, 26, 55, 0.1);
}
.gnav_area__search .search_input .input {
  max-width: 870px;
  width: 86%;
  height: 55px;
  max-height: 55px;
  color: #222222;
  padding: 5px 20px;
  box-sizing: border-box;
  outline: none;
  border: 1px solid #e0e0e0;
  border-right: none;
}
.gnav_area__search .search_input .input::-moz-placeholder {
  color: #ababab;
}
.gnav_area__search .search_input .input::placeholder {
  color: #ababab;
}
.gnav_area__search .search_input .submit_btn {
  max-width: 140px;
  width: 14%;
  height: 55px;
  max-height: 55px;
  border: none;
  background-color: #56cdd8;
  color: #ffffff;
  font-size: 0.938rem;
  font-weight: 500;
  box-sizing: border-box;
}
.gnav_area .gnav_area_foot {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnav_area .gnav_area_foot .gnav_area_search {
  width: 100%;
  max-width: 420px;
  margin-right: clamp(50px, 5vw, 80px);
}
.gnav_area .gnav_area_foot .gnav_area_search .search {
  margin-bottom: 0;
}
.gnav_area .gnav_area_foot .sns_wrap {
  margin-right: clamp(20px, 4.5vw, 60px);
}
.gnav_area .gnav_area_foot .sns_wrap .sns_list {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.gnav_area .gnav_area_foot .sns_wrap .sns_list > li a {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eeeeee;
  border-radius: 50%;
}
.gnav_area .gnav_area_foot .contact_info {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap {
  flex-shrink: 0;
  margin: 0 auto;
  line-height: 1.3;
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .top {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}
@media screen and (max-width: 899px) {
  .gnav_area .gnav_area_foot .contact_info .tel_wrap .top {
    justify-content: flex-end;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 575px) {
  .gnav_area .gnav_area_foot .contact_info .tel_wrap .top {
    justify-content: center;
    text-align: center;
    margin-bottom: 2px;
    margin-right: -0.4rem;
  }
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .pre_text,
.gnav_area .gnav_area_foot .contact_info .tel_wrap .rear_text {
  display: inline-block;
  transform: translateY(-3px);
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .pre_text {
  margin-right: 9px;
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .rear_text {
  display: inline-block;
  margin-left: -10px;
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .num {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.625rem;
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .num * {
  color: #ffffff;
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .bottom {
  text-align: right;
}
@media screen and (max-width: 999px) {
  .gnav_area .gnav_area_foot .contact_info .tel_wrap .bottom {
    font-size: 0.938rem;
  }
}
@media screen and (max-width: 575px) {
  .gnav_area .gnav_area_foot .contact_info .tel_wrap .bottom {
    text-align: center;
    margin-right: -1rem;
  }
}
.gnav_area .gnav_area_foot .contact_info .tel_wrap .text {
  text-align: right;
}
@media screen and (max-width: 999px) {
  .gnav_area {
    display: none;
  }
}

.hamburger_btn {
  display: block;
  position: relative;
  height: 90px;
  width: 80px;
}
.hamburger_btn._sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .hamburger_btn._sp {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  .hamburger_btn._pc {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  .hamburger_btn {
    left: auto;
    right: 0;
  }
  .hamburger_btn._open {
    background-color: transparent;
    right: 5px;
    top: -10px;
  }
}
@media screen and (max-width: 899px) {
  .hamburger_btn {
    height: 70px;
    width: 70px;
  }
}
@media screen and (max-width: 575px) {
  .hamburger_btn {
    right: auto;
  }
}
@media screen and (min-width: 768px), print {
  .hamburger_btn:hover .hamburger_btn__line > span:first-of-type {
    transform: translateY(3px);
  }
  .hamburger_btn:hover .hamburger_btn__line > span:last-of-type {
    transform: translateY(-3px);
  }
}
.hamburger_btn__inner {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .hamburger_btn__inner {
    padding-top: 0;
  }
}
.hamburger_btn__line {
  width: 30px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
}
.hamburger_btn__line > span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #183778;
}
.hamburger_btn__line > span:nth-child(1), .hamburger_btn__line > span:nth-child(3) {
  transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger_btn._open .hamburger_btn__line span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
}
.hamburger_btn._open .hamburger_btn__line span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger_btn._open .hamburger_btn__line span:nth-child(2) {
  opacity: 0;
}
.hamburger_btn._open .hamburger_btn__line span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.mm-wrapper--opened .hamburger_btn {
  display: block;
  height: 100%;
}
body.mm-wrapper--opened .hamburger_btn__inner {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body.mm-wrapper--opened .hamburger_btn__line {
  width: 27px;
  height: 27px;
  position: relative;
}
body.mm-wrapper--opened .hamburger_btn__line > span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
body.mm-wrapper--opened .hamburger_btn__line > span:first-child {
  rotate: 45deg;
}
body.mm-wrapper--opened .hamburger_btn__line > span:nth-of-type(2) {
  rotate: -45deg;
}

.header._open_search {
  top: 50px;
}
.header._open_search .header__search_input_area {
  opacity: 1;
  transition: opacity 0.2s;
  pointer-events: all;
}
.header__search_input_area {
  background: #30a5bd;
  background: linear-gradient(135deg, #30a5bd 0%, #83ccbe 100%);
  height: 50px;
  width: 100%;
  position: absolute;
  top: -50px;
  left: 0;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.header__search_input_area .container {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  height: 50px;
  align-items: center;
}
.header__search_input_area .container > * {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.header__search_input_area .container > .left .search {
  width: 100%;
  max-width: none;
  border-radius: 5px;
  height: 28px;
}
.header__search_input_area .container > .left .search__text {
  color: #0f234d;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 0 10px 0 36px;
  width: 100%;
}
.header__search_input_area .container > .left .search__text:focus {
  outline: 1px rgba(255, 255, 255, 0.2) solid;
}
.header__search_input_area .container > .left .search__submit {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  right: auto;
  left: 8px;
  border-left: 0 none;
  background-image: url("../img/icon/header_search_input.webp");
  background-size: contain;
  width: 20px;
  height: 20px;
}
.header__search_input_area .container > .right {
  flex: 0 0 40px;
}
.header__search_input_area .container > .right a {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  top: 0;
  left: 0;
}
.header__search_input_area .container > .right a img {
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -14px;
  margin-left: -12px;
}

.footer {
  position: relative;
  z-index: 20;
}
.footer__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 63px;
  padding-bottom: 30px;
}
@media screen and (max-width: 899px) {
  .footer__wrap {
    padding-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .footer__wrap {
    padding-top: 35px;
  }
}
.footer .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.footer__container {
  max-width: 1260px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 30;
  box-sizing: border-box;
}
@media screen and (max-width: 575px) {
  .footer__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__1 {
  margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
  .footer__1 {
    margin-bottom: 32px;
  }
}
.footer__1 > .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 10px;
}
@media screen and (max-width: 899px) {
  .footer__1 > .inner {
    align-items: normal;
    flex-direction: column;
    gap: 25px 10px;
  }
}
@media screen and (max-width: 575px) {
  .footer__1 > .inner {
    gap: 10px;
  }
}
.footer__1 .logo > img {
  display: block;
}
@media screen and (max-width: 575px) {
  .footer__1 .logo {
    margin: 0 auto;
  }
  .footer__1 .logo > img {
    width: 300px;
    height: auto;
  }
}
.footer__1 .info_area {
  display: flex;
  color: #ffffff;
  -moz-column-gap: 28px;
  column-gap: 28px;
  font-weight: 400;
  margin: 0 0 0 auto;
  padding-top: 21px;
}
@media screen and (max-width: 899px) {
  .footer__1 .info_area {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .footer__1 .info_area {
    margin: 0 auto;
    text-align: center;
    justify-content: center;
  }
}
.footer__1 .info_area__l {
  padding-top: 0.5ex;
}
.footer__1 .info_area__l address {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 7px;
  column-gap: 7px;
  line-height: 1.7;
}
@media screen and (max-width: 575px) {
  .footer__1 .info_area__l address {
    margin-bottom: 8px;
    justify-content: center;
  }
}
.footer__1 .info_area__r .tel {
  line-height: 1.3;
}
.footer__1 .info_area__r .tel .top {
  display: flex;
  align-items: baseline;
  margin-bottom: 7px;
}
@media screen and (max-width: 899px) {
  .footer__1 .info_area__r .tel .top {
    justify-content: flex-end;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 575px) {
  .footer__1 .info_area__r .tel .top {
    justify-content: center;
    text-align: center;
    margin-bottom: 2px;
    margin-right: -0.4rem;
  }
}
.footer__1 .info_area__r .tel .pre_text,
.footer__1 .info_area__r .tel .rear_text {
  display: inline-block;
  transform: translateY(-3px);
}
.footer__1 .info_area__r .tel .pre_text {
  margin-right: 9px;
}
.footer__1 .info_area__r .tel .rear_text {
  display: inline-block;
  margin-left: -10px;
}
.footer__1 .info_area__r .tel .num {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.625rem;
}
.footer__1 .info_area__r .tel .num * {
  color: #ffffff;
}
.footer__1 .info_area__r .tel .bottom {
  text-align: right;
}
@media screen and (max-width: 999px) {
  .footer__1 .info_area__r .tel .bottom {
    font-size: 0.938rem;
  }
}
@media screen and (max-width: 575px) {
  .footer__1 .info_area__r .tel .bottom {
    text-align: center;
    margin-right: -1rem;
  }
}
.footer__2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
  .footer__2 {
    margin-bottom: 30px;
  }
}
.footer__2 .fsitemap_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 75px clamp(20px, 2vw, 40px);
}
@media screen and (max-width: 1199px) {
  .footer__2 .fsitemap_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 899px) {
  .footer__2 .fsitemap_wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px 25px;
  }
}
@media screen and (max-width: 575px) {
  .footer__2 .fsitemap_wrap {
    grid-template-columns: 1fr;
    grid-gap: 0 20px;
  }
}
@media screen and (min-width: 576px), print {
  .footer__2 .fsitemap_wrap._pc_none {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .footer__2 .fsitemap_wrap._sp_none {
    display: none;
  }
}
.footer__3 .btn_list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  grid-gap: clamp(20px, 4vw, 80px);
}
@media screen and (max-width: 999px) {
  .footer__3 .btn_list {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 699px) {
  .footer__3 .btn_list {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 575px) {
  .footer__3 .btn_list {
    margin: 0 auto 38px;
    grid-gap: 15px;
  }
}
.footer__3 .btn_wrap {
  width: 100%;
  max-width: 460px;
}
@media screen and (max-width: 699px) {
  .footer__3 .btn_wrap {
    margin: 0 auto;
  }
}
.footer__3 .btn {
  display: block;
  width: 100%;
  transition: opacity 0.5s;
}
.footer__3 .btn:hover {
  opacity: 0.8;
}
.footer__3 .btn:hover::after {
  filter: none;
}
@media screen and (max-width: 699px) {
  .footer__3 .btn {
    margin: 0 auto;
  }
}
.footer__3 .btn .ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.625rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 999px) {
  .footer__3 .btn .ja {
    font-size: clamp(18px, 2vw, 23px);
  }
}
@media screen and (max-width: 767px) {
  .footer__3 .btn .ja {
    font-size: 1.125rem;
  }
}
.footer__3 .btn .ja .rear_text {
  font-size: 1.375rem;
}
@media screen and (max-width: 999px) {
  .footer__3 .btn .ja .rear_text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__3 .btn .ja .rear_text {
    font-size: 1.125rem;
  }
}
.footer__3 .btn .en {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  display: block;
  line-height: 1.4;
}
.footer__3 .link_wrap {
  margin-bottom: 35px;
}
.footer__3 .link_wrap .link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(15px, 4vw, 40px);
}
@media screen and (max-width: 499px) {
  .footer__3 .link_wrap .link_list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 475px) {
  .footer__3 .link_wrap .link_list {
    gap: 10px 12px;
  }
}
.footer__3 .link_wrap .link_list > li {
  line-height: 1.5;
}
.footer__3 .link_wrap .link_list > li a {
  color: #ffffff;
  text-decoration: underline;
  padding-left: 1px;
  padding-right: 1px;
}
@media screen and (max-width: 575px) {
  .footer__3 .link_wrap .link_list > li a {
    font-size: 0.938rem;
  }
}
@media screen and (max-width: 499px) {
  .footer__3 .link_wrap .link_list > li a {
    text-decoration: none;
  }
}
.footer__3 .link_wrap .link_list > li a:hover {
  text-decoration: none;
}
.footer__3 .footer_logo {
  text-align: center;
}
.footer__3 .footer_logo > img {
  display: block;
  margin: 0 auto 37px;
}
@media screen and (max-width: 420px) {
  .footer__3 .footer_logo > img {
    width: 220px;
    height: auto;
  }
}
.footer .copyright {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}

.fsitemap .title {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 28px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .fsitemap .title {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .fsitemap .title {
    margin-top: 0.8rem;
    margin-bottom: 1.2rem;
  }
}
.fsitemap .title._katakana {
  letter-spacing: 0.01em;
}
.fsitemap .title a {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  color: #ffffff;
  position: relative;
  padding-left: 50px;
  display: block;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fsitemap .title a {
    padding-left: 42px;
    font-size: 1.188rem;
  }
}
@media screen and (max-width: 575px) {
  .fsitemap .title a {
    padding-left: 45px;
    font-size: 1.063rem;
  }
}
.fsitemap .title a::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/circle_2.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .fsitemap .title a::before {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 575px) {
  .fsitemap .title a::before {
    width: 28px;
    height: 28px;
    left: 4px;
  }
}
.fsitemap .title a .maru {
  margin-left: -6px;
  letter-spacing: -0.3em;
  display: inline-block;
}
.fsitemap > .list {
  padding-left: 20px;
  margin-top: 3.4ex;
}
@media screen and (max-width: 767px) {
  .fsitemap > .list {
    margin-top: 2ex;
  }
}
.fsitemap > .list > li:not(:last-of-type) {
  margin-bottom: 2ex;
}
@media screen and (max-width: 767px) {
  .fsitemap > .list > li:not(:last-of-type) {
    margin-bottom: 0.7ex;
  }
}
.fsitemap > .list > li a {
  display: block;
  font-size: 0.938rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.12em;
  transition: opacity 0.2s;
  line-height: 1.5;
}
.fsitemap > .list > li a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px), print {
  .fsitemap .details-summary {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .fsitemap {
    position: relative;
  }
  .fsitemap .details {
    display: flex;
  }
  .fsitemap .details-summary {
    width: 50px;
    min-height: 40px;
    position: absolute;
    top: 3px;
    right: 0;
    list-style: none;
  }
  .fsitemap .details-summary::-webkit-details-marker {
    display: none;
  }
  .fsitemap .details-summary > ._btn {
    display: block;
    width: 100%;
    min-height: 40px;
    position: relative;
  }
  .fsitemap .details-summary > ._btn::before, .fsitemap .details-summary > ._btn::after {
    content: "";
    background-color: #ffffff;
    width: 12px;
    height: 2px;
    position: absolute;
    inset: 0;
    margin: auto;
    transform-origin: center center;
  }
  .fsitemap .details-summary > ._btn::before {
    width: 2px;
    height: 12px;
    inset: 0;
    margin: auto;
    transition: transform 0.2s;
  }
  .fsitemap .details-summary.is-active > ._btn::after {
    opacity: 0;
  }
  .fsitemap .details-summary.is-active > ._btn::before {
    transform: rotate(90deg);
  }
  .fsitemap .details-content {
    transition: height 0.5s;
    padding-left: 20px;
  }
  .fsitemap .details-content .list {
    padding-bottom: 20px;
    opacity: 0;
  }
  .fsitemap .details-content .list li {
    font-size: 0.938rem;
  }
  .fsitemap .details-content .list li:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .fsitemap .details-content .list li a {
    color: #ffffff;
  }
}

.scroll_to_top {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 40px);
  right: 0;
  bottom: 40px;
  z-index: 1000;
  line-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  text-align: right;
  transition: opacity 0.1s, transform 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.scroll_to_top:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: 0.2s opacity;
}
@media screen and (min-width: 768px), print {
  .scroll_to_top {
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .scroll_to_top {
    bottom: 0;
  }
}
.scroll_to_top._show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.scroll_to_top._show a {
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
}
.scroll_to_top._fix {
  position: absolute;
  bottom: calc(100% + 40px);
}
@media screen and (max-width: 575px) {
  .scroll_to_top._fix {
    bottom: calc(100% + 20px);
  }
}
.scroll_to_top,
.scroll_to_top a {
  opacity: 0;
}
.scroll_to_top a {
  display: inline-block;
  position: relative;
  padding-top: 10px;
}
@media screen and (max-width: 575px) {
  .scroll_to_top a::before {
    top: 15px;
  }
}
.scroll_to_top a img {
  display: block;
}
@media screen and (max-width: 575px) {
  .scroll_to_top a img {
    width: 56px;
    height: auto;
  }
}

.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: #efefef;
  box-shadow: 0 5px 8px 0 rgba(94, 111, 128, 0.2);
}
@media screen and (min-width: 1400px), print {
  .pc_menu__panel {
    padding-top: 90px;
  }
}
@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, 35, 77, 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: 40px;
  }
}
.pc_menu__l {
  padding-top: 10px;
  flex-basis: 360px;
  flex-shrink: 0;
}
@media screen and (max-width: 1519px) {
  .pc_menu__l {
    flex-basis: 300px;
  }
}
.pc_menu__r {
  flex-grow: 10;
}
.pc_menu__sitemap {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.pc_menu__sitemap .column {
  width: 100%;
}
@media screen and (max-width: 1250px) {
  .pc_menu__sitemap {
    gap: 20px;
  }
}
.pc_menu__title {
  color: #ffffff;
  text-shadow: -2px 0 10px rgba(94, 111, 128, 0.4);
  line-height: 1;
  font-size: 50px;
  margin-bottom: 50px;
}
.pc_menu__search {
  padding-bottom: 30px;
  border-bottom: 1px solid #0f234d;
}
.pc_menu__search .head {
  font-size: 1rem;
  padding-left: 0.7em;
}
@media screen and (min-width: 1200px), print {
  .pc_menu__info {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .pc_menu__info {
    margin-top: clamp(30px, 3vw, 50px);
  }
}
.pc_menu__info .tel_area {
  line-height: 1;
  margin-bottom: 1em;
}
.pc_menu__info .tel_area .row {
  display: flex;
  align-items: flex-end;
}
.pc_menu__info .tel_area .tel {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
}
.pc_menu__info .tel_area .unit {
  font-size: 16px;
  position: relative;
  top: -0.2em;
}
.pc_menu__info .address_area > * {
  display: inline-block;
}
.pc_menu__info .address_area > *:not(:last-child) {
  margin-right: 0.7em;
}

.pc_sitemap {
  margin-bottom: 1em;
}
.pc_sitemap .title a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #0f234d;
  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 {
  margin-right: 10px;
  margin-left: -3px;
}
.pc_sitemap .title a:hover {
  color: #c27b00;
}
.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: #0f234d;
  text-decoration: none;
  font-size: 0.938rem;
  line-height: 1.4;
  transition: color 0.1s ease-out;
}
.pc_sitemap .list a:hover {
  color: #c27b00;
}

/**************************
	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: #0f234d;
  --mm-color-text-dimmed: #0f234d;
  --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(76, 76, 76, 0.9);
}
.mm-wrapper--opened .mm-panels,
.mm-wrapper--opened .mm-panel {
  padding: 0;
  position: relative;
  flex-grow: initial;
  height: auto;
  --mm-panel-parent-offset: -100%;
}
.mm-wrapper--opened .mm-panels .mm-navbar,
.mm-wrapper--opened .mm-panel .mm-navbar {
  border-bottom: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: 20px;
  margin-right: 20px;
}
.mm-wrapper--opened .mm-panels {
  overflow: auto;
}
.mm-wrapper--opened .mm-panel::after {
  display: none;
}

.drawer {
  background: #efefef;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}
.drawer a {
  color: #ffffff;
  box-shadow: none;
}
.drawer a:hover {
  opacity: 0.8;
}
.drawer input::-moz-placeholder {
  color: #bdc3c7;
}
.drawer input::placeholder {
  color: #bdc3c7;
}
.drawer__top {
  display: block;
  text-align: left;
}
.drawer__top__1, .drawer__top__2 {
  padding-left: 20px;
}
.drawer__top__1 {
  padding-right: 10px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  background-color: #ffffff;
}
.drawer__top__1__l .logo_wrap img {
  width: 130px;
  height: auto;
  display: block;
}
.drawer__top__1__r {
  width: 60px;
  height: 70px;
  position: relative;
}
.drawer__top__1__r .drawer__close_menu {
  width: 60px;
  height: 70px;
  cursor: pointer;
}
.drawer__top__1__r .hamburger_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.drawer__top__2 {
  padding-top: 19px;
  padding-right: 25px;
}
.drawer__bottom {
  display: block;
  overflow: visible;
  padding: 10px 20px 50px;
  background-color: #efefef;
}
.drawer__bottom::before {
  content: none !important;
  display: none !important;
}
.drawer__bottom::after {
  display: none;
}
.drawer__bottom > * {
  padding: 0;
}
.drawer__bottom.mm-listitem {
  border-bottom: none !important;
}
.drawer__bottom__1 .btn_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 1.75rem;
  width: 100%;
}
.drawer__bottom__1 .btn {
  padding: 20px;
  box-sizing: border-box;
  min-height: 90px;
  box-shadow: 8px 8px 20px 2px rgba(46, 55, 74, 0.15);
  margin-bottom: 0;
}
.drawer__bottom__1 .btn::after {
  content: none;
}
.drawer__bottom__1 .btn .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
}
.drawer__bottom__1 .btn .inner .top {
  font-size: 1.125rem;
}
.drawer__bottom__1 .btn .inner .bottom {
  font-size: 0.938rem;
  letter-spacing: 0.02em;
}
.drawer__bottom__2 {
  margin-bottom: 20px;
}
.drawer__bottom__2 .drawer_link_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-left: 2px;
}
.drawer__bottom__2 .drawer_link_list > span._right {
  display: inline-block;
  width: auto;
}
.drawer__bottom__2 .drawer_link_list .link._2 {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  color: #c27b00;
  font-size: 0.938rem;
  height: 25px;
  display: flex;
  align-items: center;
}
.drawer__bottom__2 .drawer_link_list .link._2::before {
  top: 1.2ex;
}
.drawer__bottom__2 .drawer_link_list .link._2::after {
  top: 1.2ex;
  transform: translateY(-1px);
}
.drawer__bottom__3 {
  margin-bottom: 25px;
  padding-left: 3px;
}
.drawer__bottom__3 .translate_wrap {
  margin: 0;
}
.drawer__bottom__4 .sns_list {
  display: flex;
  grid-gap: 15px;
}
.drawer__bottom__4 .sns_list > .li a {
  height: 50px;
  box-sizing: border-box;
}
.drawer__close_menu {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0;
}
.drawer__search .head {
  font-size: 1rem;
  padding-left: 0.7em;
  padding-bottom: 0.5em;
}
.drawer .button_area {
  padding-top: 25px;
  padding-bottom: 35px;
  display: flex;
  justify-content: center;
  max-width: 270px;
  margin: 0 auto;
}
.drawer .button_area .ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 45px;
  width: 100%;
  margin: 0 auto;
}
.drawer .button_area .ul .li {
  display: flex;
  align-items: center;
}
.drawer .button_area .ul .li a {
  padding: 0;
}
.drawer__info {
  margin-top: clamp(30px, 3vw, 50px);
}
.drawer__info .contact_area {
  display: block;
  margin-bottom: 20px;
}
.drawer__info .contact_area .btn._contact:hover {
  box-shadow: none;
}
.drawer__info .sns_area {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin: 0 auto;
}
.drawer__info .sns_area a {
  padding: 0;
  display: block;
}
.drawer .mm-navbars--top {
  border-bottom: 0 none;
}
.drawer .mm-navbars--bottom {
  border-top: 0 none;
}
.drawer .mm-btn--prev {
  padding-inline-end: 11px;
  border: none;
}
.drawer .mm-btn--prev::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/arrow/white.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 13px;
  height: 13px;
  transform: rotate(180deg) translate(5px, -2px);
}
.drawer .mm-btn--prev .mm-btn {
  width: 30px;
}
.drawer .mm-navbar title, .drawer .mm-navbar__title {
  min-height: 70px;
  justify-content: flex-start;
  font-size: 20px;
}
.drawer .mm-navbar title:last-child, .drawer .mm-navbar__title:last-child {
  padding-left: 0;
  padding-inline-start: 0 !important;
}
.drawer__li {
  min-height: 50px;
  font-size: 1.063rem;
  position: relative;
  /**************************
  子要素
  */
}
.drawer__li::after {
  content: none;
}
.drawer__li .mm-btn--next {
  width: 50px;
  border: none;
  height: 60px;
  margin-right: 10px;
  padding-left: 10px;
  cursor: pointer;
}
.drawer__li .mm-btn--next::before, .drawer__li .mm-btn--next::after {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #0f234d;
  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,
.drawer__li .mm-listitem--opened .drawer__a {
  color: #0f234d;
  position: relative;
  overflow: initial;
}
.drawer__li.mm-listitem--opened .drawer__a::after,
.drawer__li .mm-listitem--opened .drawer__a::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 60px);
  height: 1px;
  background-color: #c8d1e4;
}
.drawer__li.mm-listitem--opened .mm-panel > .sub_menu__ul2,
.drawer__li.mm-listitem--opened .mm-panel > .sub_menu__ul3,
.drawer__li.mm-listitem--opened .mm-panel > .sub_menu__ul4,
.drawer__li .mm-listitem--opened .mm-panel > .sub_menu__ul2,
.drawer__li .mm-listitem--opened .mm-panel > .sub_menu__ul3,
.drawer__li .mm-listitem--opened .mm-panel > .sub_menu__ul4 {
  padding-bottom: 1rem;
  padding-left: 1rem;
}
.drawer__li.mm-listitem--opened .mm-listitem,
.drawer__li .mm-listitem--opened .mm-listitem {
  margin-left: 0;
  margin-right: 0;
}
.drawer__li.mm-listitem--opened > .mm-btn--next::before, .drawer__li.mm-listitem--opened > .mm-btn--next::after,
.drawer__li .mm-listitem--opened > .mm-btn--next::before,
.drawer__li .mm-listitem--opened > .mm-btn--next::after {
  background-color: #0f234d;
  height: 2px;
}
.drawer__li.mm-listitem--opened > .mm-btn--next::after,
.drawer__li .mm-listitem--opened > .mm-btn--next::after {
  transform: rotate(0deg);
}
.drawer__li .mm-listview {
  margin-top: 0.1em;
}
.drawer__li .mm-listview > .mm-listitem {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.drawer__li .mm-listview > .mm-listitem::before {
  width: calc(100% - 1em);
  left: auto;
  right: 0;
}
.drawer__li .mm-listview > .mm-listitem:last-of-type {
  border-bottom: none;
}
.drawer__li .mm-listview > .mm-listitem:last-of-type::before {
  content: none;
  display: none;
}
.drawer__li .mm-listitem a {
  min-height: 50px;
  height: auto;
  font-size: 0.938rem;
  padding: 1em 0 0.8em 1.8em;
  box-sizing: border-box;
}
.drawer__li .mm-listitem a.a2, .drawer__li .mm-listitem a.a3, .drawer__li .mm-listitem a.a4 {
  padding: 0.4em 0 0.5em 2.5em;
  min-height: 40px;
}
.drawer__li .mm-listitem li {
  border-bottom: none;
  position: relative;
}
.drawer__li .moreover-level .mm-listitem::before {
  content: none;
  display: none;
}
.drawer .mm-listitem {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin-left: 20px;
  margin-right: 20px;
  transition: 0.2s;
  position: relative;
  border-bottom: none;
}
.drawer .mm-listitem::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #c8d1e4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.drawer .mm-listitem::after {
  display: none;
}
.drawer .mm-listitem.mm-listitem--selected > .mm-listitem__text {
  background: transparent;
}
.drawer .mm-listitem__text {
  display: flex;
  align-items: center;
}
.drawer__a {
  min-height: 60px;
  padding-left: 0.5em;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  transition: color 0.2s ease-out;
}

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

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

.pc_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc_none {
    display: block;
  }
}

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