@charset "UTF-8";
:root {
  --margin-section: 2.4em;
}
/* ==========================================================================
   Global Theme Settings (Cleaned from WordPress)
   ========================================================================== */
:root {
    /* 今回のプロジェクトのメイン3色 */
    --theme-main: #0091ea;      /* 水色 */
    --theme-dark: #01579b;      /* ネイビー */
    --theme-accent: #9575cd;    /* ラベンダー */

    /* 基本色 */
    --wp--preset--color--black: #000000;
    --wp--preset--color--white: #ffffff;

    /* レイアウト用の基本数値（余白など） */
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
}

/* WordPressのブロックが使っていた最小限のレイアウト維持コード */
:where(.is-layout-flex) { gap: 0.5em; display: flex; flex-wrap: wrap; align-items: center; }
:where(.is-layout-grid) { gap: 0.5em; display: grid; }
.is-layout-flex > * { margin: 0; }
.is-layout-grid > * { margin: 0; }

/* ユーティリティクラス（念のため維持） */
.has-white-background-color { background-color: var(--wp--preset--color--white) !important; }
.has-black-color { color: var(--wp--preset--color--black) !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

## initial

md 初期設定


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

input,
textarea {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.none {
  display: none;
}

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

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

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

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

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

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

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

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clear {
  clear: both;
}

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

## base

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


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

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

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

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

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

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

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

.inline_video {
  max-width: 100%;
}

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

.scell {
  margin-right: 1em;
}

.scell2 {
  margin-right: 0.5em;
}

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

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

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

.signature {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.9;
  color: #222222;
}

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

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

em.large_text {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

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

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

.text-green {
  color: #0091ea;
  font-weight: bold;
}

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

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

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

.text-white {
  color: #ffffff;
}

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

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

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

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

.text-gray {
  color: #ff0000;
}

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

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

.no_wrap {
  white-space: nowrap;
}

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

/**************************
pc
*/
@media screen and (min-width: 1000px), print {
  .container {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1260px;
  }
  .container_lg {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1460px;
  }
  .pc_padding,
  .padding {
    padding-left: 30px;
    padding-right: 30px;
  }
  .imain_content .container {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1260px;
  }
}
/**************************
sp
*/
@media screen and (max-width: 999px) {
  .sp_container,
  .container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .sp_padding,
  .padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/**************************
xs
*/
@media screen and (max-width: 575px) {
  .sp_container,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sp_padding,
  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

/* ==========================================================================
   🏥 箇条書き（ul）：無骨さを消した最新のリストデザイン
   ========================================================================== */

/* 1. 全体設定：余計な余白とWPの黒ポチを完全に消去 */
.main_content ul:not(.cancel) {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

/* 2. リスト項目：文字の間隔と配置を整える */
.main_content ul:not(.cancel) > li {
    position: relative;
    padding-left: 1.8rem; /* ポチを置くスペース */
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: #444444;
    letter-spacing: 0.05em; /* ほんの少し広げて読みやすく */
    font-size: 1rem;
}

/* 3. ★ポチのデザイン：ドットと同じ水色（#00b7ee）のモダンな横棒 */
.main_content ul:not(.cancel) > li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.8em; /* 文字の高さに合わせる */
    
    /* デザイン：ただの丸ではなく、細長いカプセル型で垢抜けさせる */
    width: 10px;
    height: 4px;
    background-color: #00b7ee;
    border-radius: 2px;
    
    /* ほんの少し傾けて「優しさ」を出す（お好みで！） */
    transform: rotate(-10deg);
}

/* 4. 横並びリスト（必要な時だけ .inline-list を使う） */
.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
}

/* 📱 スマホ対応：余白の微調整 */
@media screen and (max-width: 767px) {
    .main_content ul:not(.cancel) > li {
        padding-left: 1.5rem;
        line-height: 1.6;
    }
}

.main_content ol:not(.cancel) {
  list-style: none;
  counter-reset: num 0;
  padding-right: 1.9em;
  padding-left: 2em;
}
.main_content ol:not(.cancel):not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 575px) {
  .main_content ol:not(.cancel) {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .main_content ol:not(.cancel) {
    padding-right: 1.2em;
    padding-left: 1.4em;
  }
}
@media screen and (max-width: 576px) {
  .main_content ol:not(.cancel) {
    padding-left: 0em;
  }
}
@media screen and (max-width: 475px) {
  .main_content ol:not(.cancel) {
    padding-right: 0.8em;
  }
}
.main_content ol:not(.cancel) > li {
  padding-left: 1.8em;
  letter-spacing: 0.12em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ol:not(.cancel) > li:not(:last-of-type) {
  margin-bottom: 0.6em;
}
@media screen and (min-width: 1000px), print {
  .main_content ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 999px) {
  .main_content ol:not(.cancel) > li {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.main_content ol:not(.cancel) > li::before {
  counter-increment: num 1;
  content: counter(num, decimal-leading-zero) ".";
  font-weight: 700;
  color: #222222;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  letter-spacing: 0.12em;
}
.main_content ol:not(.cancel):not(.inline_block_list) > li:last-child {
  margin-bottom: 0;
}
.main_content ol:not(.cancel)._sm > li {
  margin-bottom: 0;
  line-height: 1.7;
}
@media screen and (min-width: 1000px), print {
  .main_content ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}
@media screen and (max-width: 999px) {
  .main_content ol:not(.cancel)._sm > li::before {
    top: 0;
  }
}

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

.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li {
  letter-spacing: 0.1em;
  padding-left: 2.7em;
  margin-bottom: 1em;
  position: relative;
  top: 0;
  left: 0;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li:last-child {
  margin-bottom: 0;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list) > li::before {
  content: "※";
  width: 0.5em;
  position: absolute;
  background: 0 none;
  top: 0.04em;
  left: 0.5em;
  border: none;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list)._red li {
  color: #ff0000;
}
.main_content ul.anotation_list:not(.cancel):not(.acf-radio-list)._red li::before {
  color: #ff0000;
}

.main_content .link_list {
  padding-left: 1.9rem;
}
.main_content .link_list li:not(:last-of-type) {
  margin-bottom: 0.4em;
}
.main_content .link_list li::before {
  display: none !important;
}
@media screen and (max-width: 999px) {
  .main_content .link_list {
    padding-left: 1rem;
  }
}

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

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

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

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

wordpressのプラグインblockの場合（PublishPress Blocks）
<table class="wp-block-advgb-table">
    <thead></thead>
    <tbody><tbody>
</table>
*/
.table_wrapper table,
.root .wpnews table,
.main_content table.wp-block-advgb-table,
.main_content .wp-block-table table {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 899px) {
  .table_wrapper table,
  .root .wpnews table,
  .main_content table.wp-block-advgb-table,
  .main_content .wp-block-table table {
    margin-bottom: 1em;
  }
}
.table_wrapper table caption,
.root .wpnews table caption,
.main_content table.wp-block-advgb-table caption,
.main_content .wp-block-table table caption {
  display: none;
}
.table_wrapper table caption.cap,
.root .wpnews table caption.cap,
.main_content table.wp-block-advgb-table caption.cap,
.main_content .wp-block-table table caption.cap {
  display: block;
  text-align: left;
  font-weight: bold;
  color: #ff0000;
  padding-bottom: 0.5em;
}
.table_wrapper table th,
.table_wrapper table td,
.root .wpnews table th,
.root .wpnews table td,
.main_content table.wp-block-advgb-table th,
.main_content table.wp-block-advgb-table td,
.main_content .wp-block-table table th,
.main_content .wp-block-table table td {
  font-weight: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  letter-spacing: 0;
  min-height: 60px;
  position: relative;
}
@media screen and (min-width: 1000px), print {
  .table_wrapper table th,
  .table_wrapper table th p,
  .table_wrapper table td,
  .table_wrapper table td p,
  .root .wpnews table th,
  .root .wpnews table th p,
  .root .wpnews table td,
  .root .wpnews table td p,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table th p,
  .main_content table.wp-block-advgb-table td,
  .main_content table.wp-block-advgb-table td p,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table th p,
  .main_content .wp-block-table table td,
  .main_content .wp-block-table table td p {
    line-height: 1.71;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table th,
  .table_wrapper table th p,
  .table_wrapper table td,
  .table_wrapper table td p,
  .root .wpnews table th,
  .root .wpnews table th p,
  .root .wpnews table td,
  .root .wpnews table td p,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table th p,
  .main_content table.wp-block-advgb-table td,
  .main_content table.wp-block-advgb-table td p,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table th p,
  .main_content .wp-block-table table td,
  .main_content .wp-block-table table td p {
    line-height: 1.36;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table th,
  .table_wrapper table td,
  .root .wpnews table th,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table th,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table th,
  .main_content .wp-block-table table td {
    min-height: auto;
  }
}
.table_wrapper table th,
.root .wpnews table th,
.main_content table.wp-block-advgb-table th,
.main_content .wp-block-table table th {
  color: #222222;
  text-align: center;
  vertical-align: middle;
  font-size: clamp(16px, 1.7vw, 1rem);
  font-weight: 700;
}
@media screen and (min-width: 1000px), print {
  .table_wrapper table th,
  .root .wpnews table th,
  .main_content table.wp-block-advgb-table th,
  .main_content .wp-block-table table th {
    padding: 0.84em 0.72em !important;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table th,
  .root .wpnews table th,
  .main_content table.wp-block-advgb-table th,
  .main_content .wp-block-table table th {
    padding: 0.6em 0.72em !important;
  }
}
.table_wrapper table td,
.root .wpnews table td,
.main_content table.wp-block-advgb-table td,
.main_content .wp-block-table table td {
  border: none;
}
@media screen and (min-width: 1000px), print {
  .table_wrapper table td,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table td {
    padding: 0.84em 1.5em !important;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table td,
  .root .wpnews table td,
  .main_content table.wp-block-advgb-table td,
  .main_content .wp-block-table table td {
    padding: 0.6em 0.72em !important;
  }
}
.table_wrapper table thead,
.root .wpnews table thead,
.main_content table.wp-block-advgb-table thead,
.main_content .wp-block-table table thead {
  border-bottom: 0 none;
  position: relative;
}
.table_wrapper table thead th,
.root .wpnews table thead th,
.main_content table.wp-block-advgb-table thead th,
.main_content .wp-block-table table thead th {
  color: #222222;
  background-color: #eeeeee;
  position: relative;
  border: 1px solid #d8d8d8;
}
.table_wrapper table thead th:first-of-type,
.root .wpnews table thead th:first-of-type,
.main_content table.wp-block-advgb-table thead th:first-of-type,
.main_content .wp-block-table table thead th:first-of-type {
  background-color: #e5e5e5;
  border-right: none;
}
.table_wrapper table thead th:not(:first-of-type),
.root .wpnews table thead th:not(:first-of-type),
.main_content table.wp-block-advgb-table thead th:not(:first-of-type),
.main_content .wp-block-table table thead th:not(:first-of-type) {
  border-left: none;
}
.table_wrapper table thead td, .table_wrapper table thead th,
.root .wpnews table thead td,
.root .wpnews table thead th,
.main_content table.wp-block-advgb-table thead td,
.main_content table.wp-block-advgb-table thead th,
.main_content .wp-block-table table thead td,
.main_content .wp-block-table table thead th {
  border-bottom: none;
}
.table_wrapper table tbody th,
.root .wpnews table tbody th,
.main_content table.wp-block-advgb-table tbody th,
.main_content .wp-block-table table tbody th {
  text-align: center;
  color: #222222;
  background-color: #f5f5f5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  border-right: none;
}
@media screen and (min-width: 768px), print {
  .table_wrapper table tbody th,
  .root .wpnews table tbody th,
  .main_content table.wp-block-advgb-table tbody th,
  .main_content .wp-block-table table tbody th {
    width: 190px;
  }
}
@media screen and (max-width: 999px) {
  .table_wrapper table tbody th,
  .root .wpnews table tbody th,
  .main_content table.wp-block-advgb-table tbody th,
  .main_content .wp-block-table table tbody th {
    width: 120px;
  }
}
.table_wrapper table tbody td,
.root .wpnews table tbody td,
.main_content table.wp-block-advgb-table tbody td,
.main_content .wp-block-table table tbody td {
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
}
.table_wrapper table tbody td:first-of-type,
.root .wpnews table tbody td:first-of-type,
.main_content table.wp-block-advgb-table tbody td:first-of-type,
.main_content .wp-block-table table tbody td:first-of-type {
  border-left: none;
}
.table_wrapper table tbody td:not(:last-of-type),
.root .wpnews table tbody td:not(:last-of-type),
.main_content table.wp-block-advgb-table tbody td:not(:last-of-type),
.main_content .wp-block-table table tbody td:not(:last-of-type) {
  border-right: none;
  border-left: none;
}
.table_wrapper table tbody tr:not(:last-of-type) td, .table_wrapper table tbody tr:not(:last-of-type) th,
.root .wpnews table tbody tr:not(:last-of-type) td,
.root .wpnews table tbody tr:not(:last-of-type) th,
.main_content table.wp-block-advgb-table tbody tr:not(:last-of-type) td,
.main_content table.wp-block-advgb-table tbody tr:not(:last-of-type) th,
.main_content .wp-block-table table tbody tr:not(:last-of-type) td,
.main_content .wp-block-table table tbody tr:not(:last-of-type) th {
  border-bottom: none;
}

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

角丸めるための記述

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

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

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

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

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

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

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

/*

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

画像だけの table を想定

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

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

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

## - a リンク設定

*/
.content_body a:not(.cancel):not(.out):not(.ext):not(.outlink):not(.icon_out):not(.icon_ext):not(.pdf):not(.icon_pdf):not(.link):not(.link_2):not(.btn):not(.image_btn):not(.fc-event) {
  text-decoration: underline;
}

a {
  color: #0091ea;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

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

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

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

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

/* ==========================================================================
   🏥 共通リンクデザイン：紺から水色へ変化する large_link
   ========================================================================== */
.large_link {
    display: inline-flex !important;
    align-items: center;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    
    /* 1. テキスト設定：通常時は信頼感のある紺色 */
    color: #005588 !important; 
    font-size: 1.15rem;
    font-weight: 700; /* 太さをしっかり固定 */
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

/* 2. ★丸アイコン：通常時は紺色の丸 */
.large_link::after {
    content: "\00bb" !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    
    /* 丸のサイズ */
    width: 38px;
    height: 38px;
    margin-left: 15px;
    
    /* デザイン：紺色の丸 */
    background-color: #005588 !important; 
    color: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 4px 4px 0px rgba(0, 183, 238, 0.15); 
    
    /* >> のフォント調整 */
    font-family: "Arial Black", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    
    padding-left: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.large_link::before {
    content: none !important;
}

/* --- ホバーアクション：親しみやすい水色へ --- */
.large_link:hover {
    color: #00b7ee !important; 
}

.large_link:hover::after {
    background-color: #00b7ee !important; 
    transform: translateX(10px); /* 右にスッと動く */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); 
}

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

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

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

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

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

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

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

.main_column {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 60px;
}
.main_column h2:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 1259px) {
  .main_column {
    padding-left: 30px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 999px) {
  .main_column {
    padding-left: 0;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .main_column {
    padding-top: 25px;
  }
}

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

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

.breadcrumbs,
.bread_crumb {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transform: translateX(-0.1em);
  transform: translateX(-0.1em);
  row-gap: 7px;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs,
  .bread_crumb {
    line-height: 2;
  }
}
@media screen and (max-width: 999px) and (min-width: 576px) {
  .breadcrumbs,
  .bread_crumb {
    padding-top: 0;
    padding-bottom: 10px;
    padding-left: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 575px) {
  .breadcrumbs,
  .bread_crumb {
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 3px;
  }
}
.breadcrumbs li,
.bread_crumb li {
  display: inline-block;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1000px), print {
  .breadcrumbs li,
  .bread_crumb li {
    font-size: 1rem;
  }
}
.breadcrumbs li:last-child,
.bread_crumb li:last-child {
  margin-left: 0;
  margin-right: 0;
  color: #b8b8b8;
}
.breadcrumbs li:not(:last-of-type),
.bread_crumb li:not(:last-of-type) {
  padding-right: 2.2em;
  position: relative;
}
.breadcrumbs li:not(:last-of-type)::after,
.bread_crumb li:not(:last-of-type)::after {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
  content: "/";
  color: #b8b8b8;
  position: absolute;
  inset: 0 12px 0 auto;
}
@media screen and (max-width: 899px) {
  .breadcrumbs li:not(:last-of-type),
  .bread_crumb li:not(:last-of-type) {
    padding-right: 30px;
  }
  .breadcrumbs li:not(:last-of-type)::after,
  .bread_crumb li:not(:last-of-type)::after {
    inset: 0 8px 0 auto;
  }
}
.breadcrumbs li a,
.bread_crumb li a {
  font-size: 0.938rem;
  color: #313131;
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 0;
  padding-left: 0;
  text-decoration: none !important;
  letter-spacing: 0.1em;
}
.breadcrumbs li a::before,
.bread_crumb li a::before {
  content: none !important;
}
.breadcrumbs li a:hover,
.bread_crumb li a:hover {
  opacity: 0.7;
  text-decoration: none;
  border-bottom: 0;
}
@media screen and (max-width: 899px) {
  .breadcrumbs li a,
  .bread_crumb li a {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

.pagelink_area {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 999px) {
  .pagelink_area {
    margin-bottom: 0.8rem;
  }
}
.pagelink_area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px clamp(20px, 5vw, 50px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f2f2f2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  border-radius: 10px;
  min-height: 68px;
  padding: 10px 50px;
}
@media screen and (max-width: 767px) {
  .pagelink_area ul {
    gap: 10px 25px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 575px) {
  .pagelink_area ul {
    padding-left: 10px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.pagelink_area ul > li a {
  color: #222222;
  font-weight: 500;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.pagelink_area ul > li a::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  content: "";
  display: inline-block;
  background: url("./common/img/icon/arrow/pagelink.webp") 0 0 no-repeat transparent;
  background-size: contain;
  width: 14px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.pagelink_area ul > li a:hover::before {
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
}
@media screen and (max-width: 999px) {
  .pagelink_area ul > li a {
    font-size: 0.938rem;
  }
  .pagelink_area ul > li a::before {
    bottom: 5px;
  }
}
@media screen and (max-width: 575px) {
  .pagelink_area ul > li a {
    font-size: 0.875rem;
    -webkit-column-gap: 7px;
    -moz-column-gap: 7px;
    column-gap: 7px;
    letter-spacing: 0.05em;
  }
}
.pagelink_area ul > li a .text {
  line-height: 1.4;
}

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

/**************************
.box
*/
.box {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  background-color: #f2f2f2;
  margin-bottom: 2.5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 3px;
  border-radius: 15px;
  padding: clamp(25px, 3vw, 34px) clamp(25px, 4vw, 68px);
}
@media screen and (max-width: 1199px) {
  .box {
    margin-bottom: 2em;
  }
}
.box .head {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 999px) {
  .box .head {
    margin-bottom: 0.5rem;
  }
}
.box .title {
  line-height: 1.4;
  padding-left: 1px;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 1000px), print {
  .box .title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 999px) {
  .box .title {
    font-size: 1.125rem;
  }
}
/* 重要ボックス：ラベンダーで目を引くデザイン */
.box._important {
  background-color: #f3f4fa; /* 薄いラベンダーグレー */
  border: 1px solid #d1d5ff; /* 枠線 */
  border-left: 8px solid #9575cd; /* 左側にアクセントカラー */
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}
.box._important .title {
  color: #7e57c2; /* 濃く鮮やかなラベンダー（これが目立ちます） */
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --swiper-navigation-size: 8px;
  --swiper-navigation-color: #0091ea;
  --swiper-theme-color: ;
}

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

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

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
  pointer-events: none;
}
.header .logo,
.header .btn,
.header .header_btn,
.header .open_menu,
.header .sp_open_menu {
  pointer-events: all;
}
.header a {
  color: #222222;
}
.header__l, .header__r {
  position: relative;
  z-index: 100;
}
.header__r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1299px) {
  .header__r {
    gap: 30px;
  }
}
@media screen and (max-width: 999px) {
  .header__r {
    gap: 15px;
  }
}
.header__logo,
.header__logo .logo,
.header__logo img {
  display: block;
  width: 366px;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo,
  .header__logo .logo,
  .header__logo img {
    width: 246px;
  }
}
.header__logo .logo {
  padding: 0;
  position: relative;
}
.header__logo .logo .default {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header__link {
    display: none;
  }
}
.header__link .header_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 15px;
}
@media screen and (max-width: 1299px) {
  .header__link .header_link_list {
    gap: 10px;
  }
}
@media screen and (max-width: 999px) {
  .header__link .header_link_list {
    gap: 5px;
  }
}
@media screen and (max-width: 899px) {
  .header__link .header_link_list {
    display: none;
  }
}
.header__link .header_link_list > li .header_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 60px;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* ==========================================================================
   🏥 ヘッダーボタン：ホバーで水色きらりん
   ========================================================================== */

/* ボタン共通の土台設定（光を走らせるために必要） */
.header__link .header_link_list > li .header_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 走る光をボタン内に閉じ込める */
  z-index: 1;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

/* 各職種の通常時カラー */
.header__link .header_link_list > li .header_btn._nurse {
  background: linear-gradient(135deg, #01579b 0%, #0091ea 100%);
  color: #fff;
  border: none;
}
.header__link .header_link_list > li .header_btn._associate_nurse { background-color: #0091ea; border: 1px solid #0091ea; color: #fff; }
.header__link .header_link_list > li .header_btn._care_worker { background-color: #01579b; border: 1px solid #01579b; color: #fff; }

/* 🌟 全ボタン共通：ホバーしたら背景水色 ＋ 文字白 */
.header__link .header_link_list > li .header_btn:hover {
  background: #0091ea !important;
  color: #fff !important;
  transform: translateY(-2px);
  border-color: #0091ea;
}

/* ✨ しまーな光（きらりん）の本体 */
.header__link .header_link_list > li .header_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.1) 35%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0) 50%
  );
  transition: none;
  pointer-events: none;
  z-index: 2;
}

/* ホバーした瞬間に光がシュンッ！と走る */
.header__link .header_link_list > li .header_btn:hover::before {
  left: 150%;
  transition: left 0.6s ease-in-out;
}

/* メニューボタンのサイズ（ここも残しておきます） */
.header__menu_btn {
  width: 60px;
  height: 60px;
}


@media screen and (max-width: 767px) {
  .header__menu_btn {
    width: 46px;
    height: 46px;
  }
}
.header.js-use_bg::before {
  display: block;
  content: "";
  width: 100%;
  height: 175px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgb(246, 249, 250)), to(rgba(246, 250, 242, 0)));
  background: linear-gradient(180deg, rgb(246, 249, 250) 20%, rgba(246, 250, 242, 0) 100%);
  position: absolute;
  top: -40px;
  left: 0;
}
@media screen and (max-width: 999px) {
  .header.js-use_bg::before {
    height: 100px;
  }
}
.header.js-use_bg::before, .header.js-open_menu::before {
  opacity: 1;
}
.header.js-use_bg .default, .header.js-open_menu .default {
  opacity: 1;
}
.header.js-use_bg .home, .header.js-open_menu .home {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   🏥 ドロワー（ハンバーガーメニュー）：全機能統合・レスポンシブ決定版
   ========================================================================== */

/* --- 1. ドロワー基本設定（モバイル設定を継承） --- */
.drawer {
  width: 490px;
  height: 95vh;
  overflow: hidden;
  background-color: #f2f2f2;
  border-radius: 0 0 0 30px;
  box-sizing: border-box;
  padding: 0 55px 0 100px; /* PCデフォルト */
}

/* 📱 モバイル用レスポンシブ継承 */
@media screen and (max-width: 1399px) { .drawer { padding-right: 30px; padding-left: 30px; } }
@media screen and (max-width: 999px) { .drawer { padding-right: 20px; padding-left: 20px; } }
@media screen and (max-width: 576px) { .drawer { width: 100%; border-radius: 0; } }

.drawer__top {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) { .drawer__top { padding-top: 20px; margin-bottom: 30px; } }

.drawer__close_menu {
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 100%;
}
@media screen and (max-width: 767px) { .drawer__close_menu { width: 46px; height: 46px; } }

/* --- 2. 検索窓（最上部）：アイコン ＋ ホバー演出 --- */
.drawer__search {
  position: relative;
  margin-bottom: 20px; /* 最上部検索窓の下の余白 */
}
.drawer__search .search_input {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.drawer__search .search_input::after {
  content: "";
  display: block;
  background: url("../img/icon/search.webp") center center no-repeat transparent;
  background-size: contain;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: filter 0.3s ease, transform 0.3s ease;
}
/* ホバーでアイコンを水色に */
.drawer__search .search_input:hover::after {
  filter: invert(44%) sepia(91%) saturate(2853%) hue-rotate(178deg) brightness(98%) contrast(101%);
  transform: translateY(-50%) scale(1.1);
}
.drawer__search .search_input .input {
  display: block;
  width: 100%;
  height: 56px;
  padding: 11px 60px 10px 22px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
}
.drawer__search .search_input .submit_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 56px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  z-index: 3;
}

/* --- 3. アコーディオン：水色 ＋ ＋マーク ＋ バー演出 --- */
.drawer__li {
  min-height: 50px;
  font-size: 1.063rem;
  position: relative;
  border-bottom: 1px solid rgba(180, 164, 193, 0.3);
}
.drawer__a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 25px 0 20px 0;
  font-weight: 700;
  color: #333;
  transition: color 0.3s ease;
}
.drawer__li:hover > .drawer__a { color: #0091ea !important; }

/* ＋/－ トグルボタン */
.drawer__li .mm-btn--next {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 8px;
  z-index: 5;
}
.drawer__li .mm-btn--next::before, 
.drawer__li .mm-btn--next::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: #222222;
  position: absolute;
  inset: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.drawer__li .mm-btn--next::after { transform: rotate(90deg); }
.drawer__li:hover .mm-btn--next { background-color: #0091ea !important; }
.drawer__li:hover .mm-btn--next::before,
.drawer__li:hover .mm-btn--next::after { background-color: #fff !important; }
.drawer__li.mm-listitem--opened > .mm-btn--next::after { transform: rotate(0deg); }

/* 子メニュー（第2階層）のバー演出 */
.drawer__li .mm-listview > li { position: relative; overflow: hidden; background-color: #fff; }
.drawer__li .mm-listview > li a {
  position: relative;
  display: block;
  padding: 1.2rem 20px 1.2rem 40px !important;
  color: #333;
  z-index: 1;
  transition: color 0.3s ease;
}
.drawer__li .mm-listview > li a::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 0; height: 100%;
  background-color: #0091ea;
  z-index: -1;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.drawer__li .mm-listview > li a:hover { color: #fff !important; }
.drawer__li .mm-listview > li a:hover::before { width: 100%; }

/* --- 4. 下部ボタン：均等配置 ＋ きらりん --- */
.drawer__bottom {
  margin-top: 40px;
  padding-bottom: 30px;
}
@media screen and (max-width: 400px) { .drawer__bottom { padding-left: 20px; padding-right: 20px; } }

/* ⚠️ 均等配置の修正：お問い合わせボタンに付く余計な余白を消す */
.drawer .button_area .ul .li.drawer__search {
  margin-bottom: 0 !important; 
}

.drawer .button_area .ul {
  display: flex;
  flex-direction: column;
  gap: 16px; /* 👈 これですべてのボタン間隔を16pxに統一 */
  padding: 0;
  margin: 0;
}
.drawer .button_area .ul .li { width: 100%; }

.drawer .button_area .ul .li a.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 10px 20px;
  background-color: #01579b;
  color: #fff;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.drawer .button_area .ul .li a.btn::after { display: none !important; } /* ドット撲滅 */
.drawer .button_area .ul .li a.btn:hover { background-color: #0091ea; transform: translateY(-2px); }

/* ✨ きらりん（しまーな光） */
.drawer .button_area .ul .li a.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -150%; width: 150%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 70%);
  z-index: 2;
  pointer-events: none;
}
.drawer .button_area .ul .li a.btn:hover::before { left: 150%; transition: left 0.6s ease-in-out; }
/**************************
project
*/
body {
  background-color: #ffffff;
}

/**************************
debug
*/
.has-text-align-center {
  text-align: center !important;
}
/* ==========================================================================
   ✨ 共通きらりんボタン（kirarin_btn）
   ========================================================================== */

.kirarin_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px; /* 必要に応じて調整 */
  margin: 0 auto;
  min-height: 64px;
  background-color: #01579b; /* ネイビー */
  color: #fff !important;
  border-radius: 60px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.kirarin_btn span {
  position: relative;
  z-index: 3;
}

/* ホバー演出 */
.kirarin_btn:hover {
  background-color: #0091ea; /* 水色 */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ==========================================================================
   ✨ 共通きらりんボタン（kirarin_btn）：アンダーライン排除版
   ========================================================================== */

.kirarin_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  min-height: 64px;
  background-color: #01579b; /* ネイビー */
  color: #fff !important;
  border-radius: 60px;
  border: none;
  /* ⚠️ ここでアンダーラインを強制的に消します */
  text-decoration: none !important; 
  font-weight: 700;
  font-size: 1.1rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.kirarin_btn span {
  position: relative;
  z-index: 3;
  /* ⚠️ spanに対してもアンダーラインが出ないように念押し */
  text-decoration: none !important; 
}

/* 
 既存のCSSまたは<style>タグに追加 
h2.complete-title {
    border: none !important;     
    position: relative;
    display: inline-block;        
    padding-bottom: 15px;       
    margin-bottom: 30px;         
    text-align: center;
}

h2.complete-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); 
    width: 40px;                  
    height: 4px;                 
    background-color: #003366;    
}
 */

/* ホバー演出（水色変化） */
.kirarin_btn:hover {
  background-color: #0091ea; 
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-decoration: none !important; /* ホバー時も絶対に出さない */
}

/* ✨ きらりん光エフェクト */
.kirarin_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 2;
  pointer-events: none;
}

.kirarin_btn:hover::before {
  left: 150%;
  transition: left 0.6s ease-in-out;
}

/* ==========================================================================
   🏥 募集要項：滑らかなアニメーション版アコーディオン
   ========================================================================== */

/* アコーディオンの外枠 */
.recruit_accordion {
    margin-bottom: 40px;
    border-top: 1px solid #e1e8ed; /* */
}

/* ヘッダー（クリック部分） */
.accordion_header {
    width: 100%;
    padding: 20px;
    background: #f8fafc;
    border: none;
    border-bottom: 1px solid #e1e8ed;
    text-align: left;
    font-weight: bold;
    font-size: 1.1rem;
    color: #005588; /*[cite: 2] 誠実なネイビーを適用 */
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease; /* */
}

/* プラス・マイナスアイコンの回転アニメーション */
.accordion_header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* アイコンも滑らかに回転 */
}

/* 開いた状態のヘッダー：背景を少し濃くし、アイコンを回転 */
.accordion_header.is-open {
    background: #edf2f7;
}

.accordion_header.is-open::after {
    content: '-';
    transform: rotate(180deg); /*[cite: 4] 半回転させて動きを出す */
}

.accordion_header:hover {
    background: #edf2f7;
}

/* 【重要】シュルっと動く中身の設定 */
.accordion_content {
    display: grid; /*[cite: 4] Gridを使って高さを制御 */
    grid-template-rows: 0fr; /*[cite: 4] 最初は高さ「0」の状態 */
    transition: grid-template-rows 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s ease; /*[cite: 4] ドロワー風のイージング */
    overflow: hidden;
    background: #fff;
    padding: 0 20px; /*[cite: 4] 左右の余白だけ先に設定 */
    border-bottom: 1px solid #e1e8ed;
}

/* ボタンが開いた（is-openクラスがついた）時の設定 */
.accordion_header.is-open + .accordion_content {
    grid-template-rows: 1fr; /*[cite: 4] 中身にぴったりの高さまで広げる */
    padding: 20px; /*[cite: 4] 開いた時だけ上下の余白を作る */
}

/* アニメーションを滑らかに動かすための「おまじない」 */
.table_wrapper {
    min-height: 0; /*[cite: 4] これがないとGridアニメーションが機能しません */
}


/* ==========================================================================
   🏥 募集要項：テーブルデザイン（インラインスタイル廃止版）
   ========================================================================== */

/* テーブル全体の骨組み */
.recruit_accordion .table {
    width: 100% !important;
    border-collapse: collapse;
    border-top: 2px solid #005588; /* 上部に誠実なネイビーの太線 */
    margin: 0;
    table-layout: fixed; /* 列の幅を固定してガタつきを防ぐ */
}

/* 各行の基本設定 */
.recruit_accordion .table tr {
    border-bottom: 1px solid #e1e8ed; /* 控えめなグレーの区切り線 */
}

/* 左側：項目見出し (th) */
.recruit_accordion .table th {
    width: 25%; /* 直接％を入れず、ここで一括設定 */
    padding: 20px 15px; /* 高さの代わりに余白で調整 */
    background-color: #f8faff; /* 清潔感のある極薄い水色 */
    color: #005588; /* 文字はネイビー */
    font-weight: 700;
    text-align: left;
    vertical-align: middle;
    font-size: 0.95rem;
}

/* 右側：内容 (td) */
.recruit_accordion .table td {
    padding: 20px 20px;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    vertical-align: middle;
}

/* 📱 スマホ表示の最適化 */
@media screen and (max-width: 767px) {
    .recruit_accordion .table th {
        width: 35%; /* スマホでは項目名を少し広げる */
        padding: 15px 10px;
        font-size: 0.85rem;
    }
    .recruit_accordion .table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

/* --- 親要素の調整：幅を奪い合う Flex を解除 --- */

/* タイトルの親。flex のままだと子が縮むため block に変更 */
.ibenefit_area__head__l,
.itop_data__head {
    display: block;
    width: 100%;
    overflow: visible; /* 右上のドットを表示させるために必須 */
}

/* ---
/* ==========================================================================
   🏥 番号付きリスト（ステップ案内）：WPクラスと独自クラスの両方に対応
   ========================================================================== */

/* 1. 全体設定：.wp-block-list または .c-list_step がついている時だけ発動 */
.main_content ol.wp-block-list,
.main_content ol.c-list_step {
    list-style: none; /* デフォルトの数字を消す */
    counter-reset: step-counter;
    padding-left: 0;
    margin: 1.5rem 0;
}

/* 2. リスト項目：配置の調整 */
.main_content ol.wp-block-list li,
.main_content ol.c-list_step li {
    position: relative;
    padding-left: 45px; /* 数字の円のスペース */
    margin-bottom: 20px;
    line-height: 1.8;
    display: flex;
    align-items: center;
    min-height: 30px;
}

/* 3. 数字の円：ネイビーのデザイン */
.main_content ol.wp-block-list li::before,
.main_content ol.c-list_step li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    /* サイズと形 */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    
    /* 色設定 */
    background-color: #005588; /* 誠実なネイビー */
    color: #ffffff;
    
    /* 文字配置 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* 段落（p）の読みやすさ向上 */
.main_content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ==========================================================================
   🏥 見学の流れ：番号リストのデザイン修正（グリーンをネイビーに変更）
   ========================================================================== */

/* 1. リスト全体の余白調整 */
.main_content ol.wp-block-list {
    list-style: none; /* デフォルトの数字を消す */
    counter-reset: step-counter; /* 数字を数え直す設定 */
    padding-left: 0;
    margin-top: 1.5rem;
}

/* 2. リスト項目：テキストの配置 */
.main_content ol.wp-block-list li {
    position: relative;
    padding-left: 45px; /* 数字の円を置くための左余白 */
    margin-bottom: 20px;
    line-height: 1.8;
    min-height: 30px;
    display: flex;
    align-items: center;
}

/* 3. ★数字の円：グリーンから誠実なネイビーへ */
.main_content ol.wp-block-list li::before {
    content: counter(step-counter); /* 自動で 1, 2, 3... と入れる */
    counter-increment: step-counter;
    
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 上下中央揃え */
    
    /* サイズと形 */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    
    /* --- 色の変更箇所 --- */
    background-color: #005588; /* 誠実なネイビーに変更（お好みで #00b7ee 水色もOK） */
    color: #ffffff; /* 文字は白 */
    
    /* フォント調整 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: sans-serif;
}

/* ==========================================================================
   🏥 基本設定：はみ出し防止とリセット
   ========================================================================== */
.main_content, .main_content section, .container, .content_body {
    overflow: visible; /* ドットのはみ出しを許可 */
}

/* 既存の装飾を一度クリア（干渉防止） */
.main_content h2::before, .main_content h2::after,
.main_content h3::before, .main_content h3::after,
.main_content h4::before, .main_content h4::after {
    content: none;
    display: none;
}

/* ==========================================================================
   🏥 H2見出し：TOPページ流「Stylish」デザイン（クラスなしでも適用）
   ========================================================================== */
.main_content h2 {
    all: revert;
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 4rem 0 2rem;
    padding: 1.2rem 1.5rem 1.2rem 2.2rem; /* 左に線の余白 */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 8px 8px 0px rgba(0, 183, 238, 0.1); /* 水色の硬い影 */
    color: #222222;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 4.5vw, 1.7rem);
    line-height: 1.4;
    overflow: visible;
}

/* 左側のネイビーバー（直線を維持するため擬似要素で配置） */
.main_content h2::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 12px;
    background-color: #005588;
    border-radius: 12px 0 0 12px;
}

/* 右上の水色ドット */
.main_content h2::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background-color: #00b7ee;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
}

/* ==========================================================================
   🏥 H3見出し：ネイビー下線 ＋ ラベンダーの差し色
   ========================================================================== */
/* ==========================================================================
   🏥 見出し：ネイビー下線 ＋ ラベンダー ＋ 水色影の決定版
   ========================================================================== */
.main_content h3,
.main_content h3.c-heading_sub {
    all: revert;
    display: block;
    position: relative;
    margin: 3.5rem 0 1.5rem;
    padding: 0 0 12px 10px; /* サイドバーを消したので左の余白を調整 */
    
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;

    /* 下線：誠実なネイビー一色 */
    border-bottom: 3px solid #005588 !important;
    
    /* お気に入りの「水色の硬い影」を継承 */
    box-shadow: 0px 4px 0px rgba(0, 183, 238, 0.15) !important;

    color: #222222;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: clamp(1.15rem, 4vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ★修正：左側のラベンダーアクセントライン */
.main_content h3::after,
.main_content h3.c-heading_sub::after {
    content: "" !important;
    display: block !important;
    position: absolute;
    bottom: -3px; /* ネイビーの下線にピタッと重ねる */
    left: 0;
    width: 60px;  /* 短めのラベンダーで「粋」な感じに */
    height: 3px;
    background-color: #9575cd; /* 優しさのラベンダー */
    z-index: 2;   /* ネイビーより手前に出す */
}

/* ★念のため：左の紺色サイドバーを完全に消去 */
.main_content h3::before,
.main_content h3.c-heading_sub::before {
    content: none !important;
    display: none !important;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
    .main_content h3 {
        padding-bottom: 8px;
        margin-top: 2.5rem;
    }
}

/* ==========================================================================
   🏥 H4・H5デザイン（帯スタイル）
   ========================================================================== */
.main_content h4 {
    all: revert;
    display: block;
    width: 100%;
    margin: 3rem 0 1.5rem;
    padding: 12px 20px;
    background-color: #f6fcff;
    border-left: 6px solid #00b7ee;
    border-radius: 0 8px 8px 0;
    color: #005588;
    font-size: 1.15rem;
    font-weight: 700;
}

.main_content h5 {
    all: revert;
    display: block;
    margin: 2.5rem 0 1rem;
    padding-left: 15px;
    border-left: 3px solid #00b7ee;
    color: #333333;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==========================================================================
   🏥 一般的な箇条書き（ul）：小さな丸ポチ
   ========================================================================== */
.main_content ul:not(.bread_crumb):not(.cancel):not(#js-anchor_link) {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}
.main_content ul:not(.bread_crumb):not(.cancel):not(#js-anchor_link) li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #444;
}
.main_content ul:not(.bread_crumb):not(.cancel):not(#js-anchor_link) li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background-color: #9b7fd4;
    border-radius: 50%;
}

/* ==========================================================================
   🏥 看護部目標（ol）：紺色のバーを廃止し、数字を主役にしたデザイン
   ========================================================================== */
.main_content ol.c-goal-cards {
    list-style: none;
    counter-reset: goal-counter;
    padding: 0;
    margin: 3rem 0;
}

.main_content ol.c-goal-cards > li {
    position: relative;
    margin-bottom: 3.5rem;
    padding: 2.5rem 2rem 2rem; /* バーを消した分、左右の余白を均等に */
    background-color: #ffffff;
    
    /* 角丸を均等にして、優しい印象に戻す */
    border-radius: 16px; 
    
    /* 影：硬い影から、ふわっとした透明感のある影へ（くどさを消す） */
    box-shadow: 0 10px 30px rgba(0, 183, 238, 0.08);
    overflow: visible;
}

/* ★修正：左の紺色のバーを完全に消去 */
.main_content ol.c-goal-cards > li::after {
    content: none !important;
}

/* ★修正：数字ラベル（デザインの唯一のアクセントにする） */
.main_content ol.c-goal-cards > li::before {
    counter-increment: goal-counter;
    content: "0" counter(goal-counter);
    position: absolute;
    top: -18px; /* 少し上に浮かせる */
    left: 25px;
    
    background-color: #005588; /* 誠実なネイビー */
    color: #ffffff;
    padding: 4px 18px;
    border-radius: 50px; /* 優しい丸いタグに */
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 10;
    
    /* ラベルの下にだけ、小さな影をつけて浮かせる */
    box-shadow: 0 4px 10px rgba(0, 85, 136, 0.2);
}

/* カード内のタイトル */
.main_content ol.c-goal-cards .goal-title {
    color: #005588; /* タイトルをネイビーにして、バーの代わりに視線を誘導 */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    display: block;
}

/* リストのポチ（●）を少しだけ右に寄せる調整 */
.main_content ol.c-goal-cards ul {
    margin-top: 1rem;
    padding-left: 5px;
}

/* 📱 スマホ対応 */
@media screen and (max-width: 767px) {
    .main_content ol.c-goal-cards > li {
        padding: 2.2rem 1.5rem 1.5rem;
        margin-bottom: 3rem;
    }
    .main_content ol.c-goal-cards > li::before {
        left: 20px;
        font-size: 0.85rem;
    }
}
/* ==========================================================================
   🏥 お祝い金・理念セクション
   ========================================================================== */
/* お祝い金エリアの紫テーマ上書き */
.main_content #gift._important {
    border: 2px solid #e0d0f5;
    background-color: #f8f4ff;
    border-radius: 16px;
    padding: 30px;
}
.main_content #gift._important h4 {
    background-color: #eee0ff;
    border-left-color: #6b4fa3;
    color: #5a3e8c;
}
.main_content #gift._important ul li::before {
    background-color: #9b7fd4;
}

/* 理念テキスト（中央揃え・柔らかカード） */
.main_content .c-mission-text {
    display: block;
    margin: 1.5rem 0 4rem;
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border: 1px solid #f0f8fa;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 183, 238, 0.08);
    color: #445566;
    font-size: 1.15rem;
    text-align: center;
    line-height: 1.8;
}

/* ==========================================================================
   📱 モバイル完全対応（絶対崩さない）
   ========================================================================== */
@media screen and (max-width: 767px) {
    .main_content h2 {
        padding: 12px 15px 12px 1.5rem;
        box-shadow: 6px 6px 0px rgba(0, 183, 238, 0.1);
        margin: 3rem 0 1.5rem;
    }
    .main_content h2::before { width: 8px; }
    .main_content h2::after { width: 18px; height: 18px; top: -6px; right: -6px; }

    .main_content h3 { padding-left: 15px; margin-top: 2.5rem; }
    
    .main_content ol.c-goal-cards > li {
        padding: 2rem 1.2rem 1.5rem 1.5rem;
        box-shadow: 6px 6px 0px rgba(0, 183, 238, 0.1);
    }
    .main_content ol.c-goal-cards > li::after { width: 8px; }
    
    .main_content .c-mission-text { padding: 1.5rem; font-size: 1.05rem; }
}

/* 文章の枠：Flexboxだと回り込まないのでblockに固定 */
.message_wrap {
    display: block !important;
    overflow: hidden; /* 回り込みの崩れ防止 */
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 画像の共通設定：ここでサイズと白っぽさを強制する */
.img_in_text {
    display: block;
    /* ★サイズを300pxに強制。これで絶対に小さくなります */
    width: 300px !important;
    height: auto !important;
    
    /* 白っぽく清潔感を出す加工 */
    filter: brightness(1.08) contrast(0.92) saturate(0.85);
    opacity: 0.95;
    border-radius: 8px;
}

/* 右寄りの設定 */
.right_img {
    float: right;
    margin-left: 25px;
    margin-bottom: 10px;
}

/* 左寄りの設定 */
.left_img {
    float: left;
    margin-right: 25px;
    margin-bottom: 10px;
}

/* スマホ対応：画面が狭いときは回り込みを解除 */
@media screen and (max-width: 767px) {
    .img_in_text {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 15px !important;
        filter: none;
        opacity: 1;
    }
}

/* 休憩時間やグレー文字のスタイル */
.small-info {
    font-size: 0.75em;
    font-weight: normal;
    color: #666;
}

.card-gray-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* 看護体制の「：」を大きく */
.-big-colon span {
    font-size: 1.5em;
    vertical-align: middle;
    margin: 0 5px;
    color: var(--base-navy);
}

/* ５・６番の実績見せ（アチーブメント） */
.-achievement {
    background-color: #f0faff !important; /* 少し色を変えて目立たせる */
    border: 2px solid var(--base-navy) !important;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    text-align: left;
}

.achievement-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.check-icon {
    color: #fff;
    background: var(--base-navy);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
/* 1. 画像のコンテナ：右寄せと「重なり順」の設定 */
.footer__container .footer__deco {
    position: relative;
    z-index: 1;           /* 数値を「1」にすることで、背景よりは上、メニューよりは下に配置 */
    margin-top: -85px;    /* 上への食い込み具合 */
    text-align: right;     /* 右寄せ */
    width: 100%;
    clear: both;
    line-height: 0;
}

/* 2. 画像本体：幅をマックス300pxに制限 */
.footer__container .footer__deco img {
    display: inline-block;
    width: 300px;         /* ★ここを300pxに固定 */
    max-width: 100%;      /* 画面が300pxより狭い時は100%にする */
    height: auto;
    vertical-align: bottom;
}

/* 3. ヘッダー：重なり順だけを最強にする */
/* positionは書かないことで、元の設定（fixed等）を壊さずに維持します */
header, 
.header, 
.header__r,
.header__link,
.header__menu_btn {
    z-index: 9999 !important; /* 圧倒的に大きな数値で、画像の上に表示させる */
}

/* ==========================================================================
   共通あしらい用（キャラクター装飾）パーツ 【新設・挿絵専用マックスサイズ】
   ========================================================================== */

/* 💡 クッキリ色味を出しつつ、縦横比を絶対に崩さずに縮小する正しい記述 */
.img_in_text.has-max-size {
    max-width: 320px;   /* マックス横幅320px */
    max-height: 320px;  /* マックス高さ320px */
    width: 140px;       /* 通常時のベースサイズ（スローガン横等でちょうどいいサイズ） */
    
    /* 縦横比の崩れを完全に防ぐ */
    height: auto !important;
    object-fit: contain !important; 
    
    /* 🛠️ 透かすのを完全にやめて、100%クッキリ表示（ボケを解消！） */
    opacity: 1.0 !important; 
}

/* モバイル（スマホ）画面の設定 */
@media screen and (max-width: 767px) {
    .img_in_text.has-max-size {
        width: 100px;   /* スマホでは100pxにして文字の邪魔をしないようにする */
        height: auto !important;
        opacity: 1.0 !important; /* スマホでもクッキリ */
    }
}

/* ==========================================================================
   お知らせ詳細ページ専用追加スタイル（news.css）
   ========================================================================== */

/* 1. ページ頭の英字（MIKIYAMA NEWS）の上品な極細・カーニング最適化 */
.content_specific_header__bar .title_wrap .entext,
.content_header .title_wrap .entext {
    display: inline-block;
    color: #005588; /* 誠実で知的な深紺一色 */

    /* 🚀 ゴツいImpactを綺麗に卒業し、シュッとした欧文モダンフォントへ変更 */
    font-family: "Helvetica Neue", "Arial", -apple-system, sans-serif;
    font-size: 2.0em;       /* 座布団に綺麗に収まる大文字サイズ */
    
    /* 🎨 【最重要】太さを「500」まで落とし、スマートで知的な細さに調整 */
    font-weight: 800;       
    font-style: normal;     /* 真っ直ぐ綺麗に立たせる */
    
    /* 💡 線を細くした分、文字同士の距離をわずかに詰め、スカスカ感を完全シャットアウト */
    letter-spacing: -0.01em; 
    line-height: 1.0;
    margin-bottom: 6px;
    
    /* 大文字でバシッと横のラインを揃える */
    text-transform: uppercase;
}

/* 📱 スマホ表示（767px以下）の時のバランス調整 */
@media screen and (max-width: 767px) {
    .content_specific_header__bar .title_wrap .entext {
        font-size: 1.3em; 
    }
}
/* ==========================================================================
   共通ボタン：光る紺色ボタン（btn-shiny-navy）
   ========================================================================== */
.btn-shiny-navy {
    background-color: #005588 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 15px 40px !important;
    font-size: 16px !important;
    font-weight: bold;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 85, 136, 0.3) !important;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-width: 180px;
    transition: all 0.2s ease !important;
}

/* きらりんエフェクト */
.btn-shiny-navy::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s;
}
.btn-shiny-navy:hover::before {
    left: 100%;
}

/* ホバーアクション（押し込む動き） */
.btn-shiny-navy:hover {
    transform: translateY(4px) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
}
.btn-shiny-navy:active {
    transform: translateY(6px) !important;
    box-shadow: none !important;
}

/* スマホ用調整 */
@media screen and (max-width: 767px) {
    .btn-shiny-navy {
        width: 80% !important;
        max-width: 280px;
        padding: 12px 20px !important;
    }
}
/* ==========================================================================
   サイトマップ型フッター用スタイル
   ========================================================================== */
/* 3つのブロックを横並びにする器 */
.footer__sitemap_container {
    display: flex;
    gap: 40px; /* ブロック同士の間隔 */
    margin-top: 20px;
}

/* 各カテゴリのブロック */
.footer__sitemap_block {
    flex: 1; /* 均等な幅に広げる */
}

/* カテゴリの見出し（太字） */
.footer__sitemap_title {
    font-weight: bold;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* 下にうっすら線を引く */
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* リンクのリスト（縦並び） */
.footer__sitemap_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__sitemap_list li {
    margin-bottom: 8px; /* リンク同士の上下の間隔 */
}

.footer__sitemap_list a {
    color: rgba(255, 255, 255, 0.8); /* 少し柔らかい白 */
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

/* マウスを乗せたときに明るくする */
.footer__sitemap_list a:hover {
    color: #ffffff;
}

/* スマホ表示の時は縦並びにする */
@media screen and (max-width: 767px) {
    .footer__sitemap_container {
        flex-direction: column;
        gap: 20px;
    }
}
/* 新卒エントリー用 ピンクボタン */
.btn._pink {
    background-color: #f48fb1; /* 優しいピンク色 */
    color: #ffffff;
}

/* ホバー時の挙動 */
.btn._pink:hover {
    background-color: #ec407a; /* ホバーで少し濃いピンクへ */
    color: #ffffff;
}