@charset "UTF-8";
:root {
  --ltr-space-default: 0.085em;
  --line-height-default: 2;
  --line-height-hdr: 1.4;
  --line-height-none: 1;
  --font-primary: "秀英丸ゴシック L", "Shuei MaruGo L";
  --font-secondary: "ヒラギノ角ゴ オールド W6 JIS2004", "Hiragino Sans Old W6 JIS2004";
  --font-secondary--light: "ヒラギノ角ゴ オールド W3 JIS2004", "Hiragino Sans Old W3 JIS2004";
  --font-jp: "秀英丸ゴシック B", "Shuei MaruGo B";
  --font-jp2: "Zen Kaku Gothic New", sans-serif;
  --font-jp3: "秀英丸ゴシック B", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-noto-sans: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --fz-primary: 1.125rem;
  --fz-half: 0.5rem;
  --fz-pc: 16;
  --fz-sp: 14;
  --rem-pc: calc(1 / var(--fz-pc) * 1rem);
  --rem-sp: calc(1 / var(--fz-sp) * 1rem);
  --clr-main: #215074;
  --clr-sub: #8fa6b7;
  --clr-body: #535353;
  --clr-dark-blue: #101560;
  --clr-link: #333;
  --clr-wht: #fff;
  --clr-blk: #000;
  --bg-main: #215074;
  --bg-sub: #8fa6b7;
  --bg-wht: #fff;
  --bg-dark-blue: #324860;
  --bg-light-blue: #d9e4ec;
  --bg-off_wht: #f7f7f7;
  --bg-blk: #000;
  --btn-clr-main: #fff;
  --btn-bg-main: var(--clr-main);
  --btn-bg-main-hvr: #64859e;
  --btn-clr-wht: var(--clr-main);
  --btn-bg-wht: var(--bg-wht);
  --btn-bg-wht-hvr: var(--bg-sub);
  --btn-clr-cta: var(--clr-main);
  --btn-bg-cta: #ffe678;
  --btn-bg-cta-hvr: #fff2bb;
  --brd-main: #215074;
  --transit-default: all 0.4s ease-out;
  --clr-text-primary-crew: #221714;
  --clr-text-secondary-crew: #215074;
  --clr-text-placeholder-crew: #9fa0a0;
  --clr-primary-default-crew: #135072;
  --clr-bg-01-crew: #eee;
  --clr-bg-02-crew: #dfe5ee;
}

/* ##############################################################################

    KEYFRAMES

############################################################################## */
/* ##############################################################################

    style info : リセット及びフォントサイズ

############################################################################## */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
  background: #fff;
  color: #333;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ins {
  background-color: #ff9;
  color: #333;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #333;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #333;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

progress {
  appearance: none;
}

progress::-webkit-progress-bar {
  background-color: var(--clr-wht);
}

progress::-webkit-progress-value {
  background-color: var(--clr-sub);
}

progress::-moz-progress-bar {
  background-color: var(--clr-sub);
}

progress::-ms-fill {
  background-color: var(--clr-sub);
}

/*-- ClearFix --*/
/* For modern browsers */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/*隙間消し*/
li img {
  vertical-align: bottom;
}

/* Reset input[type="search"] */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

input[type=search]:focus {
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration {
  display: none;
}

/* iOS reset */
input[type=submit] {
  -webkit-appearance: none;
}

@media print, screen and (min-width: 768px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  @-moz-document url-prefix() {
    * {
      font-feature-settings: "palt";
    }
  }
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 0) {
  * {
    font-feature-settings: "palt";
  }
}
/* ##############################################################################

    COMMON

############################################################################## */
html {
  font-size: 16px;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
html.no_scroll {
  overflow: hidden;
}
@media screen and (min-width: 48em) and (max-width: 67.5em) {
  html {
    overflow-y: auto;
    overflow-x: auto;
  }
}
@media screen and (max-width: 47.9375em) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: var(--font-primary, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  line-height: var(--line-height-default, 1.8);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: var(--ltr-space-default, 0.08em);
  *font-size: small;
  *font: x-small;
  color: var(--clr-body, #333);
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
  word-break: break-word;
  font-size: 1.0625rem;
}
@media screen and (min-width: 48em) and (max-width: 67.5em) {
  body:not(.mce-content-body) {
    min-width: 1080px;
  }
}
@media screen and (max-width: 67.5em) {
  body {
    padding-top: 64px;
  }
}
@media screen and (max-width: 47.9375em) {
  body {
    font-size: 1.1428571429rem;
    -webkit-text-size-adjust: none;
  }
}

.win body {
  -webkit-text-stroke: 0.2px;
}

.safari body {
  -webkit-text-size-adjust: 100%;
}

form * {
  line-height: var(--line-height-default, 1.8);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: var(--ltr-space-default, 0.08em);
}
form *:not([class*=font-]):not(a):not(button) {
  font-family: var(--font-primary, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
}

ul,
ol {
  list-style: none;
}

small {
  font-size: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  small {
    font-size: 0.9285714286rem;
  }
}

a,
a[href="javascript:void(0);"]:hover {
  color: inherit;
  text-decoration: none;
  transition: var(--transit-default, all 0.4s ease-out);
  outline: none;
}

a[href="javascript:void(0);"],
a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: default;
  opacity: 1;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
}
@media screen and (max-width: 47.9375em) {
  img {
    max-width: 100%;
    height: auto;
  }
}

address,
em,
i {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--line-height-hdr, 1.4);
}

svg {
  transition: var(--transit-default, all 0.4s ease-out);
}
svg[preserveAspectRatio=none] {
  height: auto;
}

#wrapper {
  overflow: hidden;
}

.blc:not(:last-child) {
  margin-bottom: 56px;
}
@media screen and (max-width: 47.9375em) {
  .blc:not(:last-child) {
    margin-bottom: 28px;
  }
}

.blc-lg:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 47.9375em) {
  .blc-lg:not(:last-child) {
    margin-bottom: 40px;
  }
}

.blc-sm:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 47.9375em) {
  .blc-sm:not(:last-child) {
    margin-bottom: 24px;
  }
}

.blc-xs:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 47.9375em) {
  .blc-xs:not(:last-child) {
    margin-bottom: 16px;
  }
}

.blc-footer:not(:last-child) {
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
  padding-bottom: 51px;
  margin-bottom: 48px;
}
@media screen and (max-width: 47.9375em) {
  .blc-footer:not(:last-child) {
    padding-bottom: 26px;
    margin-bottom: 24px;
  }
}

.bkm {
  display: flex;
  justify-content: center;
  align-items: center;
}

input[name=s] {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--clr-main, #1d7fb7);
  border-radius: 9999px;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
}
input[name=s]:focus {
  box-shadow: 0 0 0.5rem rgba(33, 80, 116, 0.3);
  outline: none;
}
input[name=s] + button {
  border: 0;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
}

.has_scroll .scrollbar {
  padding-right: 16px;
}
@media screen and (max-width: 47.9375em) {
  .has_scroll .scrollbar {
    padding-right: 6px;
  }
}

.scrollbar {
  overflow: auto;
  height: 100%;
}
.scrollbar::-webkit-scrollbar {
  width: 6px;
}
.scrollbar::-webkit-scrollbar:horizontal {
  height: 6px;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 6px;
  border: none;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(83, 83, 83, 0.1);
  border-radius: 6px;
  box-shadow: none;
}

.modal-trigger {
  cursor: pointer;
  transition: var(--transit-default);
}
.modal-trigger:hover {
  opacity: 0.7;
}

.modal-common {
  position: fixed;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1080px;
  z-index: 99999;
  border-radius: 0.3125rem;
  padding: 32px 40px;
  border: 2px solid var(--clr-sub, #ccc);
  background-color: var(--bg-wht, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
}
.modal-common:not(:has(iframe)) {
  height: calc(100% - 188px);
}
@media screen and (max-width: 47.9375em) {
  .modal-common {
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    background-color: unset;
  }
}
.modal-common .close {
  position: absolute;
  top: -2.1875rem;
  right: 0;
  width: 1.5rem;
  height: 1.1875rem;
  pointer-events: none;
}
@media screen and (max-width: 47.9375em) {
  .modal-common .close {
    right: 5%;
  }
}
.modal-common .close::before, .modal-common .close::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--bg-wht, #fff);
}
.modal-common .close::before {
  transform: rotate(45deg);
}
.modal-common .close::after {
  transform: rotate(-45deg);
}
.modal-common .modal-img {
  max-width: 100%;
  max-height: 100%;
  cursor: zoom-in;
}
.modal-common .modal-img.zoomed {
  cursor: zoom-out;
}
.modal-common .modal-img.zoomed img {
  max-width: none;
  max-height: none;
  width: 150%;
}
.modal-common + .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
.modal-common.active, .modal-common.active + .overlay {
  opacity: 1;
  pointer-events: auto;
}
.modal-common.active {
  overflow: scroll;
}

#progress_bar {
  position: fixed;
  top: 64px;
  z-index: 99999;
  width: 100%;
  height: 8px;
  opacity: 0;
  transition: var(--transit-default);
}
#progress_bar.active {
  opacity: 1;
}

/* Wysiwyg editor
 **************************************** */
.mce-content-body ol {
  list-style: decimal;
}

.mce-content-body ul:not(:first-child),
.mce-content-body ol:not(:first-child) {
  margin-top: 1em;
}

.mce-content-body ul:not(:last-child),
.mce-content-body ol:not(:last-child) {
  margin-bottom: 1em;
}

.list li,
.mce-content-body ul li,
.mce-content-body ol li {
  position: relative;
  margin: 0;
  border-bottom: none;
  padding: 0;
  margin-left: 1.5294117647em;
  padding-top: 0.5em;
}

.list li,
.mce-content-body ul li {
  list-style: none;
}
.list li::before,
.mce-content-body ul li::before {
  content: "";
  position: absolute;
  top: 1.3em;
  left: -1.5294117647em;
  width: 0.5882352941em;
  aspect-ratio: 1/1;
  border: 1px solid var(--clr-main, #1d7fb7);
  background-color: var(--bg-main, #1d7fb7);
}

.mce-content-body ul[style="list-style-type: circle;"] li::before {
  background-color: var(--bg-wht, #fff);
}

.list li::before,
.mce-content-body ul:not([style="list-style-type: square;"]) li::before {
  border-radius: 50%;
}

.mce-content-body img {
  margin: 1em 0;
  max-width: 100%;
  height: auto;
}

.mce-content-body hr {
  position: relative;
  border: 0;
  height: 6.4px;
}
.mce-content-body hr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#204e70 40%, transparent 40%);
  background-size: 6.4px 6.4px;
}

.box {
  position: relative;
  border-radius: 0.625rem;
  padding: 24px 48px;
  font-size: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .box {
    background-size: 7px;
    padding: 20px;
  }
}
.box:not(.box-fukidashi):not(.box-wh) {
  background-image: url(../../../../images/wp/new/common/ptn-box.png);
}
@media screen and (max-width: 47.9375em) {
  .box:not(.box-fukidashi):not(.box-wh) {
    background-image: url(../../../../images/wp/new/common/ptn-box_sp.png);
    background-size: 7px;
  }
}
.box:not(.box-fukidashi):not(.box-wh)::before, .box:not(.box-fukidashi):not(.box-wh)::after {
  top: 16px;
}
@media screen and (max-width: 47.9375em) {
  .box:not(.box-fukidashi):not(.box-wh)::before, .box:not(.box-fukidashi):not(.box-wh)::after {
    top: 8px;
  }
}

.box:not(.box-fukidashi)::before, .box:not(.box-fukidashi)::after,
.box--circle::before,
.box--circle::after {
  content: "";
  position: absolute;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: var(--bg-wht, #fff);
  border-radius: 50%;
}
@media screen and (max-width: 47.9375em) {
  .box:not(.box-fukidashi)::before, .box:not(.box-fukidashi)::after,
  .box--circle::before,
  .box--circle::after {
    width: 0.7142857143rem;
    height: 0.7142857143rem;
  }
}
.box:not(.box-fukidashi)::before,
.box--circle::before {
  left: 16px;
}
@media screen and (max-width: 47.9375em) {
  .box:not(.box-fukidashi)::before,
  .box--circle::before {
    left: 8px;
  }
}
.box:not(.box-fukidashi)::after,
.box--circle::after {
  right: 16px;
}
@media screen and (max-width: 47.9375em) {
  .box:not(.box-fukidashi)::after,
  .box--circle::after {
    right: 8px;
  }
}

.box--circle::before, .box--circle::after {
  bottom: 16px;
}
@media screen and (max-width: 47.9375em) {
  .box--circle::before, .box--circle::after {
    bottom: 8px;
  }
}

.box-wh {
  background-color: var(--bg-wht, #fff);
  background-image: none;
  border: 2px solid var(--clr-main, #1d7fb7);
}

.box-hgt {
  height: 300px;
  overflow: auto;
}

.ttl-box {
  font-size: 1.25rem;
  color: var(--clr-main, #1d7fb7);
}
@media screen and (max-width: 47.9375em) {
  .ttl-box {
    font-size: 1.2857142857rem;
  }
}
.ttl-box:not(:last-child) {
  margin-bottom: 0.5em;
}

.box-fukidashi {
  position: relative;
  width: calc(100% - 164px);
  margin-left: auto;
  background-color: #eaf2f9;
  padding: 24px 36px;
}
@media screen and (max-width: 47.9375em) {
  .box-fukidashi {
    width: calc(100% - 102px);
    padding: 20px;
  }
}
.box-fukidashi::before {
  content: "";
  position: absolute;
  top: 45px;
  left: -1.5rem;
  width: 1.5rem;
  height: 1.125rem;
  background-color: #eaf2f9;
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
}
@media screen and (max-width: 47.9375em) {
  .box-fukidashi::before {
    top: 43px;
    left: -1.2857142857rem;
    width: 1.2857142857rem;
    height: 1rem;
  }
}

.box--img {
  position: absolute;
  top: 0;
  left: -134px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 47.9375em) {
  .box--img {
    left: -86px;
  }
}
.box--img::before {
  content: "";
  display: block;
  width: 102px;
  aspect-ratio: 233/318;
  background-image: url(../../../../images/wp/new/common/fukidashi-illust.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .box--img::before {
    width: 73px;
  }
}
.box--img span {
  display: block;
  text-indent: -9px;
  margin-top: 0.79em;
  line-height: 1;
}

.box-section {
  background-color: var(--bg-wht, #fff);
  border-radius: 1.875rem;
  padding-top: 72px;
  padding-bottom: 72px;
}
@media screen and (max-width: 47.9375em) {
  .box-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
.box-section:not(:last-child) {
  margin-bottom: 48px;
}

@media print, screen and (min-width: 48em) {
  .box-section-sm {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.mce-content-body .box:not(:first-child) {
  margin-top: 2em;
}
.mce-content-body .box:not(:last-child) {
  margin-bottom: 2em;
}

.mce-content-body .alignleft {
  float: left;
  clear: left;
  margin-right: 1em;
  margin-bottom: 1em;
}

.mce-content-body .alignright {
  float: right;
  clear: right;
  margin-left: 1em;
  margin-bottom: 1em;
}

.mce-content-body .aligncenter {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.lps_parts--faq .mce-content-body .aligncenter,
.lps_parts--accordion .mce-content-body .aligncenter {
  margin-inline: auto;
}

.lps_parts--faq .mce-content-body img.aligncenter,
.lps_parts--accordion .mce-content-body img.aligncenter,
.mce-content-body img.aligncenter {
  display: block;
}

.mce-content-body .alignleft:last-child,
.mce-content-body .alignright:last-child,
.mce-content-body .aligncenter:last-child {
  margin-bottom: 0;
}

.mce-content-body p:not(:last-child) {
  margin-bottom: 1em;
}

.mce-content-body strong {
  font-weight: bold;
}

.mce-content-body blockquote {
  margin: 1em 0;
  padding: 16px 40px;
  border-radius: 0.1875rem;
  position: relative;
  display: inline-block;
  font-style: oblique;
  color: #666;
  background-color: #f8f8f8;
}
@media screen and (max-width: 47.9375em) {
  .mce-content-body blockquote {
    padding: 16px;
  }
}
.mce-content-body blockquote::before, .mce-content-body blockquote::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  opacity: 0.25;
}
.mce-content-body blockquote::before {
  background-image: url("../../../../images/wp/new/common/icon-quote_left.svg");
  top: 0.8125rem;
  left: 0.625rem;
}
@media screen and (max-width: 47.9375em) {
  .mce-content-body blockquote::before {
    top: 0;
    left: 0;
  }
}
.mce-content-body blockquote::after {
  background-image: url("../../../../images/wp/new/common/icon-quote_right.svg");
  bottom: 0.8125rem;
  right: 0.625rem;
}
@media screen and (max-width: 47.9375em) {
  .mce-content-body blockquote::after {
    bottom: 0;
    right: 0;
  }
}

.mce-content-body blockquote p {
  margin-bottom: 0;
}

.mce-content-body a {
  color: var(--clr-main, #1d7fb7);
  border-bottom: 1px dashed var(--clr-sub, #ccc);
}
.mce-content-body a:hover {
  border-color: transparent;
}

.mce-content-body table {
  border: none;
  height: auto !important;
}

.mce-content-body table.table-fixed {
  width: 100%;
  table-layout: fixed;
}

.mce-content-body thead th {
  min-width: inherit;
}
.mce-content-body thead th:not(:last-child) {
  border-right: 1px solid var(--bg-sub);
}

.mce-content-body table:not(:first-child) {
  margin-top: 1em;
}

.mce-content-body table:not(:last-child) {
  margin-bottom: 1em;
}

.mce-content-body th,
.mce-content-body td,
.mce-content-body tr {
  height: auto !important;
}

.mce-content-body th,
.mce-content-body td {
  padding: 1em;
  border: 1px solid #c9c9c9;
  vertical-align: middle;
  font-size: 1rem;
}

.mce-content-body th {
  min-width: 120px;
  text-align: left;
}

.mce-content-body sup {
  font-size: 0.75rem;
  color: #555;
}

.mce-content-body .posts:not(:first-child) {
  margin-top: 2em;
}

.mce-content-body .posts:not(:last-child) {
  margin-bottom: 2em;
}

.bold {
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  font-weight: bold;
  background-image: linear-gradient(transparent, transparent 80%, var(--btn-bg-cta, #1d7fb7) 80%, var(--btn-bg-cta, #1d7fb7));
}

b.bold {
  background-image: linear-gradient(transparent, transparent 80%, var(--bg-sub, #ccc) 80%, var(--bg-sub, #ccc));
}

/* iframe */
.mce-content-body iframe {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  vertical-align: bottom;
}

.mce-content-body iframe:not(:first-child) {
  margin-top: 2em;
}

.mce-content-body iframe:not(:last-child) {
  margin-bottom: 2em;
}

/* table scroll */
.table-sp-scroll {
  white-space: nowrap;
}

.scroll {
  overflow-x: scroll;
  margin-bottom: 1em;
  -webkit-overflow-scrolling: touch;
}

.scroll table {
  margin: 0;
}

.scroll--cap {
  text-align: right;
  margin: 1em 0 0 !important;
  opacity: 0.25;
  font-size: 0.875rem;
}

@media screen and (max-width: 47.9375em) {
  .mce-content-body {
    font-size: 1rem;
    line-height: 1.8;
  }
  .mce-content-body .alignright,
  .mce-content-body .alignleft {
    width: 100% !important;
    float: none;
    margin: 1em auto;
    display: block;
  }
  .mce-content-body table {
    max-width: none !important;
  }
  .mce-content-body th {
    font-weight: bold;
  }
  .mce-content-body th,
  .mce-content-body td {
    padding: 0.5em 1em;
  }
  .table-sp-full {
    width: 100% !important;
  }
  .table-sp-full th,
  .table-sp-full td {
    flex: 1;
  }
  .table-sp-block,
  .table-sp-block th,
  .table-sp-block td {
    width: 100% !important;
  }
  .table-sp-block th,
  .table-sp-block td {
    display: block;
  }
}
/* 管理画面エディタ用
*************************************************** */
.mce-content-body.wp-editor,
.mce-content-body.wp-editor * {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

.mce-content-body.wp-editor {
  padding: 24px !important;
}

@media screen and (max-width: 47.9375em) {
  .mce-content-body.wp-editor table tr *:first-child:nth-last-child(2),
  .mce-content-body.wp-editor table tr *:first-child:nth-last-child(2) ~ * {
    display: table-cell;
    width: auto !important;
  }
}
/* add quicktag
*************************************************** */
/* 見出し */
.editor-ttl,
.editor-ttl2,
.editor-ttl3 {
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  color: var(--clr-main, #1d7fb7);
}
.editor-ttl:not(:first-child),
.editor-ttl2:not(:first-child),
.editor-ttl3:not(:first-child) {
  margin-top: 1em;
}
.editor-ttl:not(:last-child),
.editor-ttl2:not(:last-child),
.editor-ttl3:not(:last-child) {
  margin-bottom: 0.5em;
}

.editor-ttl {
  font-size: 1.625rem;
  padding: 0.25em 0.75em;
  line-height: 1.62;
  letter-spacing: 0.05em;
  background-color: #eaf2f9;
}
@media screen and (max-width: 47.9375em) {
  .editor-ttl {
    font-size: 1.4285714286rem;
  }
}

.editor-ttl2 {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid;
}
@media screen and (max-width: 47.9375em) {
  .editor-ttl2 {
    font-size: 1.2857142857rem;
  }
}

.editor-ttl3 {
  position: relative;
  font-size: 1.25rem;
  padding-left: 1em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 47.9375em) {
  .editor-ttl3 {
    font-size: 1.1428571429rem;
  }
}
.editor-ttl3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.3em;
  height: 100%;
  background-color: var(--bg-sub, #ccc);
  border-radius: 9999px;
}

/* 注意書き */
.txt-attention {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 0.875rem;
  color: #999;
  line-height: 1.5;
}
@media screen and (max-width: 47.9375em) {
  .txt-attention {
    font-size: 0.9285714286rem;
  }
}
.txt-attention::before {
  content: "※";
}

/* テーブル */
.mce-content-body table:not(.table1) th,
.table2 th {
  background-color: var(--clr-main, #1d7fb7);
  color: var(--clr-wht, #fff);
}

.table1 th,
.table1 td {
  position: relative;
  border: 0;
  padding: 1em 1.5em;
}

.table1 th {
  color: var(--clr-main, #1d7fb7);
}

.table1 th::before,
.table1 td::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - 3px);
}

.table1 th::before {
  left: 0;
  height: 2px;
  background-color: var(--clr-main, #1d7fb7);
}

.table1 td::before {
  right: 0;
  height: 1px;
  background-color: #c9c9c9;
}

.table2 th,
.table2 td {
  padding: 1em 1.5em;
  border: 1px solid #c9c9c9;
}

.table3 th,
.table3 td {
  padding: 0.7142857143rem;
  border: 1px solid var(--clr-main, #1d7fb7);
}
.table3 th {
  color: var(--clr-wht);
  background-color: #8fa6b7;
  text-align: center;
}

.table3.table-row-1 tbody th {
  background-color: color-mix(in srgb, var(--clr-main) 50%, transparent);
}

@media screen and (max-width: 47.9375em) {
  /* テーブル */
  .table2.table-sp-block th,
  .table2.table-sp-block td {
    border-bottom: 0;
  }
  .table2.table-sp-block tr:last-child > *:last-child {
    border-bottom: 1px solid #c9c9c9;
  }
  .table1.table-sp-block td::before {
    display: none;
  }
}
/* --- font-size --- */
.fz-8 {
  font-size: 0.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp8 {
    font-size: 0.5714285714rem !important;
  }
}

.fz-9 {
  font-size: 0.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp9 {
    font-size: 0.6428571429rem !important;
  }
}

.fz-10 {
  font-size: 0.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp10 {
    font-size: 0.7142857143rem !important;
  }
}

.fz-11 {
  font-size: 0.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp11 {
    font-size: 0.7857142857rem !important;
  }
}

.fz-12 {
  font-size: 0.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp12 {
    font-size: 0.8571428571rem !important;
  }
}

.fz-13 {
  font-size: 0.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp13 {
    font-size: 0.9285714286rem !important;
  }
}

.fz-14 {
  font-size: 0.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp14 {
    font-size: 1rem !important;
  }
}

.fz-15 {
  font-size: 0.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp15 {
    font-size: 1.0714285714rem !important;
  }
}

.fz-16 {
  font-size: 1rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp16 {
    font-size: 1.1428571429rem !important;
  }
}

.fz-17 {
  font-size: 1.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp17 {
    font-size: 1.2142857143rem !important;
  }
}

.fz-18 {
  font-size: 1.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp18 {
    font-size: 1.2857142857rem !important;
  }
}

.fz-19 {
  font-size: 1.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp19 {
    font-size: 1.3571428571rem !important;
  }
}

.fz-20 {
  font-size: 1.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp20 {
    font-size: 1.4285714286rem !important;
  }
}

.fz-21 {
  font-size: 1.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp21 {
    font-size: 1.5rem !important;
  }
}

.fz-22 {
  font-size: 1.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp22 {
    font-size: 1.5714285714rem !important;
  }
}

.fz-23 {
  font-size: 1.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp23 {
    font-size: 1.6428571429rem !important;
  }
}

.fz-24 {
  font-size: 1.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp24 {
    font-size: 1.7142857143rem !important;
  }
}

.fz-25 {
  font-size: 1.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp25 {
    font-size: 1.7857142857rem !important;
  }
}

.fz-26 {
  font-size: 1.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp26 {
    font-size: 1.8571428571rem !important;
  }
}

.fz-27 {
  font-size: 1.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp27 {
    font-size: 1.9285714286rem !important;
  }
}

.fz-28 {
  font-size: 1.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp28 {
    font-size: 2rem !important;
  }
}

.fz-29 {
  font-size: 1.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp29 {
    font-size: 2.0714285714rem !important;
  }
}

.fz-30 {
  font-size: 1.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp30 {
    font-size: 2.1428571429rem !important;
  }
}

.fz-31 {
  font-size: 1.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp31 {
    font-size: 2.2142857143rem !important;
  }
}

.fz-32 {
  font-size: 2rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp32 {
    font-size: 2.2857142857rem !important;
  }
}

.fz-33 {
  font-size: 2.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp33 {
    font-size: 2.3571428571rem !important;
  }
}

.fz-34 {
  font-size: 2.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp34 {
    font-size: 2.4285714286rem !important;
  }
}

.fz-35 {
  font-size: 2.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp35 {
    font-size: 2.5rem !important;
  }
}

.fz-36 {
  font-size: 2.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp36 {
    font-size: 2.5714285714rem !important;
  }
}

.fz-37 {
  font-size: 2.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp37 {
    font-size: 2.6428571429rem !important;
  }
}

.fz-38 {
  font-size: 2.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp38 {
    font-size: 2.7142857143rem !important;
  }
}

.fz-39 {
  font-size: 2.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp39 {
    font-size: 2.7857142857rem !important;
  }
}

.fz-40 {
  font-size: 2.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp40 {
    font-size: 2.8571428571rem !important;
  }
}

.fz-41 {
  font-size: 2.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp41 {
    font-size: 2.9285714286rem !important;
  }
}

.fz-42 {
  font-size: 2.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp42 {
    font-size: 3rem !important;
  }
}

.fz-43 {
  font-size: 2.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp43 {
    font-size: 3.0714285714rem !important;
  }
}

.fz-44 {
  font-size: 2.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp44 {
    font-size: 3.1428571429rem !important;
  }
}

.fz-45 {
  font-size: 2.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp45 {
    font-size: 3.2142857143rem !important;
  }
}

.fz-46 {
  font-size: 2.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp46 {
    font-size: 3.2857142857rem !important;
  }
}

.fz-47 {
  font-size: 2.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp47 {
    font-size: 3.3571428571rem !important;
  }
}

.fz-48 {
  font-size: 3rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp48 {
    font-size: 3.4285714286rem !important;
  }
}

.fz-49 {
  font-size: 3.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp49 {
    font-size: 3.5rem !important;
  }
}

.fz-50 {
  font-size: 3.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp50 {
    font-size: 3.5714285714rem !important;
  }
}

.fz-51 {
  font-size: 3.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp51 {
    font-size: 3.6428571429rem !important;
  }
}

.fz-52 {
  font-size: 3.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp52 {
    font-size: 3.7142857143rem !important;
  }
}

.fz-53 {
  font-size: 3.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp53 {
    font-size: 3.7857142857rem !important;
  }
}

.fz-54 {
  font-size: 3.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp54 {
    font-size: 3.8571428571rem !important;
  }
}

.fz-55 {
  font-size: 3.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp55 {
    font-size: 3.9285714286rem !important;
  }
}

.fz-56 {
  font-size: 3.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp56 {
    font-size: 4rem !important;
  }
}

.fz-57 {
  font-size: 3.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp57 {
    font-size: 4.0714285714rem !important;
  }
}

.fz-58 {
  font-size: 3.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp58 {
    font-size: 4.1428571429rem !important;
  }
}

.fz-59 {
  font-size: 3.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp59 {
    font-size: 4.2142857143rem !important;
  }
}

.fz-60 {
  font-size: 3.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp60 {
    font-size: 4.2857142857rem !important;
  }
}

.fz-61 {
  font-size: 3.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp61 {
    font-size: 4.3571428571rem !important;
  }
}

.fz-62 {
  font-size: 3.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp62 {
    font-size: 4.4285714286rem !important;
  }
}

.fz-63 {
  font-size: 3.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp63 {
    font-size: 4.5rem !important;
  }
}

.fz-64 {
  font-size: 4rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp64 {
    font-size: 4.5714285714rem !important;
  }
}

.fz-65 {
  font-size: 4.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp65 {
    font-size: 4.6428571429rem !important;
  }
}

.fz-66 {
  font-size: 4.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp66 {
    font-size: 4.7142857143rem !important;
  }
}

.fz-67 {
  font-size: 4.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp67 {
    font-size: 4.7857142857rem !important;
  }
}

.fz-68 {
  font-size: 4.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp68 {
    font-size: 4.8571428571rem !important;
  }
}

.fz-69 {
  font-size: 4.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp69 {
    font-size: 4.9285714286rem !important;
  }
}

.fz-70 {
  font-size: 4.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp70 {
    font-size: 5rem !important;
  }
}

.fz-71 {
  font-size: 4.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp71 {
    font-size: 5.0714285714rem !important;
  }
}

.fz-72 {
  font-size: 4.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp72 {
    font-size: 5.1428571429rem !important;
  }
}

.fz-73 {
  font-size: 4.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp73 {
    font-size: 5.2142857143rem !important;
  }
}

.fz-74 {
  font-size: 4.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp74 {
    font-size: 5.2857142857rem !important;
  }
}

.fz-75 {
  font-size: 4.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp75 {
    font-size: 5.3571428571rem !important;
  }
}

.fz-76 {
  font-size: 4.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp76 {
    font-size: 5.4285714286rem !important;
  }
}

.fz-77 {
  font-size: 4.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp77 {
    font-size: 5.5rem !important;
  }
}

.fz-78 {
  font-size: 4.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp78 {
    font-size: 5.5714285714rem !important;
  }
}

.fz-79 {
  font-size: 4.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp79 {
    font-size: 5.6428571429rem !important;
  }
}

.fz-80 {
  font-size: 5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp80 {
    font-size: 5.7142857143rem !important;
  }
}

.fz-81 {
  font-size: 5.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp81 {
    font-size: 5.7857142857rem !important;
  }
}

.fz-82 {
  font-size: 5.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp82 {
    font-size: 5.8571428571rem !important;
  }
}

.fz-83 {
  font-size: 5.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp83 {
    font-size: 5.9285714286rem !important;
  }
}

.fz-84 {
  font-size: 5.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp84 {
    font-size: 6rem !important;
  }
}

.fz-85 {
  font-size: 5.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp85 {
    font-size: 6.0714285714rem !important;
  }
}

.fz-86 {
  font-size: 5.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp86 {
    font-size: 6.1428571429rem !important;
  }
}

.fz-87 {
  font-size: 5.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp87 {
    font-size: 6.2142857143rem !important;
  }
}

.fz-88 {
  font-size: 5.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp88 {
    font-size: 6.2857142857rem !important;
  }
}

.fz-89 {
  font-size: 5.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp89 {
    font-size: 6.3571428571rem !important;
  }
}

.fz-90 {
  font-size: 5.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp90 {
    font-size: 6.4285714286rem !important;
  }
}

.fz-91 {
  font-size: 5.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp91 {
    font-size: 6.5rem !important;
  }
}

.fz-92 {
  font-size: 5.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp92 {
    font-size: 6.5714285714rem !important;
  }
}

.fz-93 {
  font-size: 5.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp93 {
    font-size: 6.6428571429rem !important;
  }
}

.fz-94 {
  font-size: 5.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp94 {
    font-size: 6.7142857143rem !important;
  }
}

.fz-95 {
  font-size: 5.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp95 {
    font-size: 6.7857142857rem !important;
  }
}

.fz-96 {
  font-size: 6rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp96 {
    font-size: 6.8571428571rem !important;
  }
}

.fz-97 {
  font-size: 6.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp97 {
    font-size: 6.9285714286rem !important;
  }
}

.fz-98 {
  font-size: 6.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp98 {
    font-size: 7rem !important;
  }
}

.fz-99 {
  font-size: 6.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp99 {
    font-size: 7.0714285714rem !important;
  }
}

.fz-100 {
  font-size: 6.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp100 {
    font-size: 7.1428571429rem !important;
  }
}

.fz-101 {
  font-size: 6.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp101 {
    font-size: 7.2142857143rem !important;
  }
}

.fz-102 {
  font-size: 6.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp102 {
    font-size: 7.2857142857rem !important;
  }
}

.fz-103 {
  font-size: 6.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp103 {
    font-size: 7.3571428571rem !important;
  }
}

.fz-104 {
  font-size: 6.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp104 {
    font-size: 7.4285714286rem !important;
  }
}

.fz-105 {
  font-size: 6.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp105 {
    font-size: 7.5rem !important;
  }
}

.fz-106 {
  font-size: 6.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp106 {
    font-size: 7.5714285714rem !important;
  }
}

.fz-107 {
  font-size: 6.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp107 {
    font-size: 7.6428571429rem !important;
  }
}

.fz-108 {
  font-size: 6.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp108 {
    font-size: 7.7142857143rem !important;
  }
}

.fz-109 {
  font-size: 6.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp109 {
    font-size: 7.7857142857rem !important;
  }
}

.fz-110 {
  font-size: 6.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp110 {
    font-size: 7.8571428571rem !important;
  }
}

.fz-111 {
  font-size: 6.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp111 {
    font-size: 7.9285714286rem !important;
  }
}

.fz-112 {
  font-size: 7rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp112 {
    font-size: 8rem !important;
  }
}

.fz-113 {
  font-size: 7.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp113 {
    font-size: 8.0714285714rem !important;
  }
}

.fz-114 {
  font-size: 7.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp114 {
    font-size: 8.1428571429rem !important;
  }
}

.fz-115 {
  font-size: 7.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp115 {
    font-size: 8.2142857143rem !important;
  }
}

.fz-116 {
  font-size: 7.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp116 {
    font-size: 8.2857142857rem !important;
  }
}

.fz-117 {
  font-size: 7.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp117 {
    font-size: 8.3571428571rem !important;
  }
}

.fz-118 {
  font-size: 7.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp118 {
    font-size: 8.4285714286rem !important;
  }
}

.fz-119 {
  font-size: 7.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp119 {
    font-size: 8.5rem !important;
  }
}

.fz-120 {
  font-size: 7.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp120 {
    font-size: 8.5714285714rem !important;
  }
}

.fz-121 {
  font-size: 7.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp121 {
    font-size: 8.6428571429rem !important;
  }
}

.fz-122 {
  font-size: 7.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp122 {
    font-size: 8.7142857143rem !important;
  }
}

.fz-123 {
  font-size: 7.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp123 {
    font-size: 8.7857142857rem !important;
  }
}

.fz-124 {
  font-size: 7.75rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp124 {
    font-size: 8.8571428571rem !important;
  }
}

.fz-125 {
  font-size: 7.8125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp125 {
    font-size: 8.9285714286rem !important;
  }
}

.fz-126 {
  font-size: 7.875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp126 {
    font-size: 9rem !important;
  }
}

.fz-127 {
  font-size: 7.9375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp127 {
    font-size: 9.0714285714rem !important;
  }
}

.fz-128 {
  font-size: 8rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp128 {
    font-size: 9.1428571429rem !important;
  }
}

.fz-129 {
  font-size: 8.0625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp129 {
    font-size: 9.2142857143rem !important;
  }
}

.fz-130 {
  font-size: 8.125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp130 {
    font-size: 9.2857142857rem !important;
  }
}

.fz-131 {
  font-size: 8.1875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp131 {
    font-size: 9.3571428571rem !important;
  }
}

.fz-132 {
  font-size: 8.25rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp132 {
    font-size: 9.4285714286rem !important;
  }
}

.fz-133 {
  font-size: 8.3125rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp133 {
    font-size: 9.5rem !important;
  }
}

.fz-134 {
  font-size: 8.375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp134 {
    font-size: 9.5714285714rem !important;
  }
}

.fz-135 {
  font-size: 8.4375rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp135 {
    font-size: 9.6428571429rem !important;
  }
}

.fz-136 {
  font-size: 8.5rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp136 {
    font-size: 9.7142857143rem !important;
  }
}

.fz-137 {
  font-size: 8.5625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp137 {
    font-size: 9.7857142857rem !important;
  }
}

.fz-138 {
  font-size: 8.625rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp138 {
    font-size: 9.8571428571rem !important;
  }
}

.fz-139 {
  font-size: 8.6875rem;
}

@media screen and (max-width: 47.9375em) {
  .fz-sp139 {
    font-size: 9.9285714286rem !important;
  }
}

/* txt
**************************************** */
.txt-lg {
  font-size: 1.125rem;
}

.txt-xs {
  font-size: 0.75rem;
}

.txt-sm {
  font-size: 0.875rem;
  letter-spacing: 0.42px;
}

.txt-wh,
.txt-wh * {
  color: var(--clr-wht, #fff);
}

.txt-main,
.txt-main * {
  color: var(--clr-main, #1d7fb7);
}

.txt-sub,
.txt-sub * {
  color: var(--clr-sub, #eee);
}

.txt-yellow,
.txt-yellow * {
  color: var(--btn-bg-cta);
}

/* --- font --- */
.font-jp {
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
}

.font-jp2 {
  font-family: var(--font-jp2, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  letter-spacing: normal;
}

.font-en {
  font-family: var(--font-en, "Montserrat", sans-serif);
}

/* txt
**************************************** */
.txt-ctr,
.txt-ctr-pc {
  text-align: center;
}

.txt-rgt,
.txt-rgt-pc {
  text-align: right;
}

@media screen and (max-width: 47.9375em) {
  .txt-lg {
    font-size: 1.0714285714rem;
  }
  .txt-sm {
    font-size: 1rem;
  }
  .txt-ctr-sp {
    text-align: center;
  }
  .txt-ctr-pc,
  .txt-rgt-pc {
    text-align: left;
  }
}
/* bg
********************************************** */
.bg-off_wh,
.lps_sec.section_pdg:nth-child(2n) {
  background-color: var(--bg-off_wht, #f7f7f7);
}

.bg-main {
  background-color: var(--bg-main, #1d7fb7);
}

.bg-sub {
  background-color: var(--bg-sub, #ccc);
}

.bg-sub2 {
  background-color: #c7d2db;
}

.bg-sub3 {
  background-color: #f8f8f8;
}

.bg-wh {
  background-color: var(--bg-wht, #fff);
}

.ptn-box {
  background-image: url(../../../../images/wp/new/common/ptn-box.png);
}
@media screen and (max-width: 47.9375em) {
  .ptn-box {
    background-image: url(../../../../images/wp/new/common/ptn-box_sp.png);
    background-size: 7px;
  }
}

.ptn-servey {
  background-image: url(../../../../images/wp/new/common/servey-ptn.png);
}

.ptn-bluegry {
  background-image: url(../../../../images/wp/new/common/ptn-bluegry.png);
}

.ptn-bluegry-l {
  background-image: url(../../../../images/wp/new/common/ptn-bluegry-l.png);
}

.ptn-yellow {
  background-image: url(../../../../images/wp/new/common/pt_cta_slant.png);
}

.bg-yane-top {
  padding-top: 11.25rem;
}
@media screen and (max-width: 47.9375em) {
  .bg-yane-top {
    padding-top: 5.7142857143rem;
  }
}
.bg-yane-top::before {
  content: "";
  position: absolute;
  top: -1px;
  display: block;
  width: 100%;
  background-image: url(../../../../images/wp/new/common/bg-yane.svg);
  background-size: cover;
  aspect-ratio: 828/224;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}

.sp-none {
  display: block;
}

.sp-none-inline {
  display: inline;
}

.sp-none-table {
  display: table;
}

.sp-none-flex {
  display: flex;
}

@media screen and (max-width: 47.9375em) {
  /* --- pc or sp --- */
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .pc-none-inline {
    display: inline;
  }
  .pc-none-table {
    display: table;
  }
  .pc-none-flex {
    display: flex;
  }
}
/* img
********************************************** */
.img-ctr {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.img-trim {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-trim.pos_rel::before {
  content: "";
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-cover.pos_ab {
  inset: 0;
  margin: auto;
}

.img-contain {
  object-fit: contain;
}

/* --- margin 　古い・削除--- */
.mgn-btm8 {
  margin-bottom: 8px;
}

.mgn-btm16 {
  margin-bottom: 16px;
}

.mgn-btm24 {
  margin-bottom: 24px;
}

.mgn-btm32 {
  margin-bottom: 32px;
}

.mgn-btm40 {
  margin-bottom: 40px;
}

.mgn-btm48 {
  margin-bottom: 48px;
}

.mgn-btm56 {
  margin-bottom: 56px;
}

.mgn-btm64 {
  margin-bottom: 64px;
}

.mgn-btm72 {
  margin-bottom: 72px;
}

.mgn-btm80 {
  margin-bottom: 80px;
}

.mgn-btm88 {
  margin-bottom: 88px;
}

.mgn-btm96 {
  margin-bottom: 96px;
}

.mgn-0 {
  margin: 0rem;
}

.mgn-top0 {
  margin-top: 0rem;
}

.mgn-rgt0 {
  margin-right: 0rem;
}

.mgn-btm0 {
  margin-bottom: 0rem;
}

.mgn-lft0 {
  margin-left: 0rem;
}

.mgn-1 {
  margin: 0.0625rem;
}

.mgn-top1 {
  margin-top: 0.0625rem;
}

.mgn-rgt1 {
  margin-right: 0.0625rem;
}

.mgn-btm1 {
  margin-bottom: 0.0625rem;
}

.mgn-lft1 {
  margin-left: 0.0625rem;
}

.mgn-2 {
  margin: 0.125rem;
}

.mgn-top2 {
  margin-top: 0.125rem;
}

.mgn-rgt2 {
  margin-right: 0.125rem;
}

.mgn-btm2 {
  margin-bottom: 0.125rem;
}

.mgn-lft2 {
  margin-left: 0.125rem;
}

.mgn-3 {
  margin: 0.1875rem;
}

.mgn-top3 {
  margin-top: 0.1875rem;
}

.mgn-rgt3 {
  margin-right: 0.1875rem;
}

.mgn-btm3 {
  margin-bottom: 0.1875rem;
}

.mgn-lft3 {
  margin-left: 0.1875rem;
}

.mgn-4 {
  margin: 0.25rem;
}

.mgn-top4 {
  margin-top: 0.25rem;
}

.mgn-rgt4 {
  margin-right: 0.25rem;
}

.mgn-btm4 {
  margin-bottom: 0.25rem;
}

.mgn-lft4 {
  margin-left: 0.25rem;
}

.mgn-5 {
  margin: 0.3125rem;
}

.mgn-top5 {
  margin-top: 0.3125rem;
}

.mgn-rgt5 {
  margin-right: 0.3125rem;
}

.mgn-btm5 {
  margin-bottom: 0.3125rem;
}

.mgn-lft5 {
  margin-left: 0.3125rem;
}

.mgn-6 {
  margin: 0.375rem;
}

.mgn-top6 {
  margin-top: 0.375rem;
}

.mgn-rgt6 {
  margin-right: 0.375rem;
}

.mgn-btm6 {
  margin-bottom: 0.375rem;
}

.mgn-lft6 {
  margin-left: 0.375rem;
}

.mgn-7 {
  margin: 0.4375rem;
}

.mgn-top7 {
  margin-top: 0.4375rem;
}

.mgn-rgt7 {
  margin-right: 0.4375rem;
}

.mgn-btm7 {
  margin-bottom: 0.4375rem;
}

.mgn-lft7 {
  margin-left: 0.4375rem;
}

.mgn-8 {
  margin: 0.5rem;
}

.mgn-top8 {
  margin-top: 0.5rem;
}

.mgn-rgt8 {
  margin-right: 0.5rem;
}

.mgn-btm8 {
  margin-bottom: 0.5rem;
}

.mgn-lft8 {
  margin-left: 0.5rem;
}

.mgn-9 {
  margin: 0.5625rem;
}

.mgn-top9 {
  margin-top: 0.5625rem;
}

.mgn-rgt9 {
  margin-right: 0.5625rem;
}

.mgn-btm9 {
  margin-bottom: 0.5625rem;
}

.mgn-lft9 {
  margin-left: 0.5625rem;
}

.mgn-10 {
  margin: 0.625rem;
}

.mgn-top10 {
  margin-top: 0.625rem;
}

.mgn-rgt10 {
  margin-right: 0.625rem;
}

.mgn-btm10 {
  margin-bottom: 0.625rem;
}

.mgn-lft10 {
  margin-left: 0.625rem;
}

.mgn-11 {
  margin: 0.6875rem;
}

.mgn-top11 {
  margin-top: 0.6875rem;
}

.mgn-rgt11 {
  margin-right: 0.6875rem;
}

.mgn-btm11 {
  margin-bottom: 0.6875rem;
}

.mgn-lft11 {
  margin-left: 0.6875rem;
}

.mgn-12 {
  margin: 0.75rem;
}

.mgn-top12 {
  margin-top: 0.75rem;
}

.mgn-rgt12 {
  margin-right: 0.75rem;
}

.mgn-btm12 {
  margin-bottom: 0.75rem;
}

.mgn-lft12 {
  margin-left: 0.75rem;
}

.mgn-13 {
  margin: 0.8125rem;
}

.mgn-top13 {
  margin-top: 0.8125rem;
}

.mgn-rgt13 {
  margin-right: 0.8125rem;
}

.mgn-btm13 {
  margin-bottom: 0.8125rem;
}

.mgn-lft13 {
  margin-left: 0.8125rem;
}

.mgn-14 {
  margin: 0.875rem;
}

.mgn-top14 {
  margin-top: 0.875rem;
}

.mgn-rgt14 {
  margin-right: 0.875rem;
}

.mgn-btm14 {
  margin-bottom: 0.875rem;
}

.mgn-lft14 {
  margin-left: 0.875rem;
}

.mgn-15 {
  margin: 0.9375rem;
}

.mgn-top15 {
  margin-top: 0.9375rem;
}

.mgn-rgt15 {
  margin-right: 0.9375rem;
}

.mgn-btm15 {
  margin-bottom: 0.9375rem;
}

.mgn-lft15 {
  margin-left: 0.9375rem;
}

.mgn-16 {
  margin: 1rem;
}

.mgn-top16 {
  margin-top: 1rem;
}

.mgn-rgt16 {
  margin-right: 1rem;
}

.mgn-btm16 {
  margin-bottom: 1rem;
}

.mgn-lft16 {
  margin-left: 1rem;
}

.mgn-17 {
  margin: 1.0625rem;
}

.mgn-top17 {
  margin-top: 1.0625rem;
}

.mgn-rgt17 {
  margin-right: 1.0625rem;
}

.mgn-btm17 {
  margin-bottom: 1.0625rem;
}

.mgn-lft17 {
  margin-left: 1.0625rem;
}

.mgn-18 {
  margin: 1.125rem;
}

.mgn-top18 {
  margin-top: 1.125rem;
}

.mgn-rgt18 {
  margin-right: 1.125rem;
}

.mgn-btm18 {
  margin-bottom: 1.125rem;
}

.mgn-lft18 {
  margin-left: 1.125rem;
}

.mgn-19 {
  margin: 1.1875rem;
}

.mgn-top19 {
  margin-top: 1.1875rem;
}

.mgn-rgt19 {
  margin-right: 1.1875rem;
}

.mgn-btm19 {
  margin-bottom: 1.1875rem;
}

.mgn-lft19 {
  margin-left: 1.1875rem;
}

.mgn-20 {
  margin: 1.25rem;
}

.mgn-top20 {
  margin-top: 1.25rem;
}

.mgn-rgt20 {
  margin-right: 1.25rem;
}

.mgn-btm20 {
  margin-bottom: 1.25rem;
}

.mgn-lft20 {
  margin-left: 1.25rem;
}

.mgn-21 {
  margin: 1.3125rem;
}

.mgn-top21 {
  margin-top: 1.3125rem;
}

.mgn-rgt21 {
  margin-right: 1.3125rem;
}

.mgn-btm21 {
  margin-bottom: 1.3125rem;
}

.mgn-lft21 {
  margin-left: 1.3125rem;
}

.mgn-22 {
  margin: 1.375rem;
}

.mgn-top22 {
  margin-top: 1.375rem;
}

.mgn-rgt22 {
  margin-right: 1.375rem;
}

.mgn-btm22 {
  margin-bottom: 1.375rem;
}

.mgn-lft22 {
  margin-left: 1.375rem;
}

.mgn-23 {
  margin: 1.4375rem;
}

.mgn-top23 {
  margin-top: 1.4375rem;
}

.mgn-rgt23 {
  margin-right: 1.4375rem;
}

.mgn-btm23 {
  margin-bottom: 1.4375rem;
}

.mgn-lft23 {
  margin-left: 1.4375rem;
}

.mgn-24 {
  margin: 1.5rem;
}

.mgn-top24 {
  margin-top: 1.5rem;
}

.mgn-rgt24 {
  margin-right: 1.5rem;
}

.mgn-btm24 {
  margin-bottom: 1.5rem;
}

.mgn-lft24 {
  margin-left: 1.5rem;
}

.mgn-25 {
  margin: 1.5625rem;
}

.mgn-top25 {
  margin-top: 1.5625rem;
}

.mgn-rgt25 {
  margin-right: 1.5625rem;
}

.mgn-btm25 {
  margin-bottom: 1.5625rem;
}

.mgn-lft25 {
  margin-left: 1.5625rem;
}

.mgn-26 {
  margin: 1.625rem;
}

.mgn-top26 {
  margin-top: 1.625rem;
}

.mgn-rgt26 {
  margin-right: 1.625rem;
}

.mgn-btm26 {
  margin-bottom: 1.625rem;
}

.mgn-lft26 {
  margin-left: 1.625rem;
}

.mgn-27 {
  margin: 1.6875rem;
}

.mgn-top27 {
  margin-top: 1.6875rem;
}

.mgn-rgt27 {
  margin-right: 1.6875rem;
}

.mgn-btm27 {
  margin-bottom: 1.6875rem;
}

.mgn-lft27 {
  margin-left: 1.6875rem;
}

.mgn-28 {
  margin: 1.75rem;
}

.mgn-top28 {
  margin-top: 1.75rem;
}

.mgn-rgt28 {
  margin-right: 1.75rem;
}

.mgn-btm28 {
  margin-bottom: 1.75rem;
}

.mgn-lft28 {
  margin-left: 1.75rem;
}

.mgn-29 {
  margin: 1.8125rem;
}

.mgn-top29 {
  margin-top: 1.8125rem;
}

.mgn-rgt29 {
  margin-right: 1.8125rem;
}

.mgn-btm29 {
  margin-bottom: 1.8125rem;
}

.mgn-lft29 {
  margin-left: 1.8125rem;
}

.mgn-30 {
  margin: 1.875rem;
}

.mgn-top30 {
  margin-top: 1.875rem;
}

.mgn-rgt30 {
  margin-right: 1.875rem;
}

.mgn-btm30 {
  margin-bottom: 1.875rem;
}

.mgn-lft30 {
  margin-left: 1.875rem;
}

.mgn-31 {
  margin: 1.9375rem;
}

.mgn-top31 {
  margin-top: 1.9375rem;
}

.mgn-rgt31 {
  margin-right: 1.9375rem;
}

.mgn-btm31 {
  margin-bottom: 1.9375rem;
}

.mgn-lft31 {
  margin-left: 1.9375rem;
}

.mgn-32 {
  margin: 2rem;
}

.mgn-top32 {
  margin-top: 2rem;
}

.mgn-rgt32 {
  margin-right: 2rem;
}

.mgn-btm32 {
  margin-bottom: 2rem;
}

.mgn-lft32 {
  margin-left: 2rem;
}

.mgn-33 {
  margin: 2.0625rem;
}

.mgn-top33 {
  margin-top: 2.0625rem;
}

.mgn-rgt33 {
  margin-right: 2.0625rem;
}

.mgn-btm33 {
  margin-bottom: 2.0625rem;
}

.mgn-lft33 {
  margin-left: 2.0625rem;
}

.mgn-34 {
  margin: 2.125rem;
}

.mgn-top34 {
  margin-top: 2.125rem;
}

.mgn-rgt34 {
  margin-right: 2.125rem;
}

.mgn-btm34 {
  margin-bottom: 2.125rem;
}

.mgn-lft34 {
  margin-left: 2.125rem;
}

.mgn-35 {
  margin: 2.1875rem;
}

.mgn-top35 {
  margin-top: 2.1875rem;
}

.mgn-rgt35 {
  margin-right: 2.1875rem;
}

.mgn-btm35 {
  margin-bottom: 2.1875rem;
}

.mgn-lft35 {
  margin-left: 2.1875rem;
}

.mgn-36 {
  margin: 2.25rem;
}

.mgn-top36 {
  margin-top: 2.25rem;
}

.mgn-rgt36 {
  margin-right: 2.25rem;
}

.mgn-btm36 {
  margin-bottom: 2.25rem;
}

.mgn-lft36 {
  margin-left: 2.25rem;
}

.mgn-37 {
  margin: 2.3125rem;
}

.mgn-top37 {
  margin-top: 2.3125rem;
}

.mgn-rgt37 {
  margin-right: 2.3125rem;
}

.mgn-btm37 {
  margin-bottom: 2.3125rem;
}

.mgn-lft37 {
  margin-left: 2.3125rem;
}

.mgn-38 {
  margin: 2.375rem;
}

.mgn-top38 {
  margin-top: 2.375rem;
}

.mgn-rgt38 {
  margin-right: 2.375rem;
}

.mgn-btm38 {
  margin-bottom: 2.375rem;
}

.mgn-lft38 {
  margin-left: 2.375rem;
}

.mgn-39 {
  margin: 2.4375rem;
}

.mgn-top39 {
  margin-top: 2.4375rem;
}

.mgn-rgt39 {
  margin-right: 2.4375rem;
}

.mgn-btm39 {
  margin-bottom: 2.4375rem;
}

.mgn-lft39 {
  margin-left: 2.4375rem;
}

.mgn-40 {
  margin: 2.5rem;
}

.mgn-top40 {
  margin-top: 2.5rem;
}

.mgn-rgt40 {
  margin-right: 2.5rem;
}

.mgn-btm40 {
  margin-bottom: 2.5rem;
}

.mgn-lft40 {
  margin-left: 2.5rem;
}

.mgn-41 {
  margin: 2.5625rem;
}

.mgn-top41 {
  margin-top: 2.5625rem;
}

.mgn-rgt41 {
  margin-right: 2.5625rem;
}

.mgn-btm41 {
  margin-bottom: 2.5625rem;
}

.mgn-lft41 {
  margin-left: 2.5625rem;
}

.mgn-42 {
  margin: 2.625rem;
}

.mgn-top42 {
  margin-top: 2.625rem;
}

.mgn-rgt42 {
  margin-right: 2.625rem;
}

.mgn-btm42 {
  margin-bottom: 2.625rem;
}

.mgn-lft42 {
  margin-left: 2.625rem;
}

.mgn-43 {
  margin: 2.6875rem;
}

.mgn-top43 {
  margin-top: 2.6875rem;
}

.mgn-rgt43 {
  margin-right: 2.6875rem;
}

.mgn-btm43 {
  margin-bottom: 2.6875rem;
}

.mgn-lft43 {
  margin-left: 2.6875rem;
}

.mgn-44 {
  margin: 2.75rem;
}

.mgn-top44 {
  margin-top: 2.75rem;
}

.mgn-rgt44 {
  margin-right: 2.75rem;
}

.mgn-btm44 {
  margin-bottom: 2.75rem;
}

.mgn-lft44 {
  margin-left: 2.75rem;
}

.mgn-45 {
  margin: 2.8125rem;
}

.mgn-top45 {
  margin-top: 2.8125rem;
}

.mgn-rgt45 {
  margin-right: 2.8125rem;
}

.mgn-btm45 {
  margin-bottom: 2.8125rem;
}

.mgn-lft45 {
  margin-left: 2.8125rem;
}

.mgn-46 {
  margin: 2.875rem;
}

.mgn-top46 {
  margin-top: 2.875rem;
}

.mgn-rgt46 {
  margin-right: 2.875rem;
}

.mgn-btm46 {
  margin-bottom: 2.875rem;
}

.mgn-lft46 {
  margin-left: 2.875rem;
}

.mgn-47 {
  margin: 2.9375rem;
}

.mgn-top47 {
  margin-top: 2.9375rem;
}

.mgn-rgt47 {
  margin-right: 2.9375rem;
}

.mgn-btm47 {
  margin-bottom: 2.9375rem;
}

.mgn-lft47 {
  margin-left: 2.9375rem;
}

.mgn-48 {
  margin: 3rem;
}

.mgn-top48 {
  margin-top: 3rem;
}

.mgn-rgt48 {
  margin-right: 3rem;
}

.mgn-btm48 {
  margin-bottom: 3rem;
}

.mgn-lft48 {
  margin-left: 3rem;
}

.mgn-49 {
  margin: 3.0625rem;
}

.mgn-top49 {
  margin-top: 3.0625rem;
}

.mgn-rgt49 {
  margin-right: 3.0625rem;
}

.mgn-btm49 {
  margin-bottom: 3.0625rem;
}

.mgn-lft49 {
  margin-left: 3.0625rem;
}

.mgn-50 {
  margin: 3.125rem;
}

.mgn-top50 {
  margin-top: 3.125rem;
}

.mgn-rgt50 {
  margin-right: 3.125rem;
}

.mgn-btm50 {
  margin-bottom: 3.125rem;
}

.mgn-lft50 {
  margin-left: 3.125rem;
}

.mgn-51 {
  margin: 3.1875rem;
}

.mgn-top51 {
  margin-top: 3.1875rem;
}

.mgn-rgt51 {
  margin-right: 3.1875rem;
}

.mgn-btm51 {
  margin-bottom: 3.1875rem;
}

.mgn-lft51 {
  margin-left: 3.1875rem;
}

.mgn-52 {
  margin: 3.25rem;
}

.mgn-top52 {
  margin-top: 3.25rem;
}

.mgn-rgt52 {
  margin-right: 3.25rem;
}

.mgn-btm52 {
  margin-bottom: 3.25rem;
}

.mgn-lft52 {
  margin-left: 3.25rem;
}

.mgn-53 {
  margin: 3.3125rem;
}

.mgn-top53 {
  margin-top: 3.3125rem;
}

.mgn-rgt53 {
  margin-right: 3.3125rem;
}

.mgn-btm53 {
  margin-bottom: 3.3125rem;
}

.mgn-lft53 {
  margin-left: 3.3125rem;
}

.mgn-54 {
  margin: 3.375rem;
}

.mgn-top54 {
  margin-top: 3.375rem;
}

.mgn-rgt54 {
  margin-right: 3.375rem;
}

.mgn-btm54 {
  margin-bottom: 3.375rem;
}

.mgn-lft54 {
  margin-left: 3.375rem;
}

.mgn-55 {
  margin: 3.4375rem;
}

.mgn-top55 {
  margin-top: 3.4375rem;
}

.mgn-rgt55 {
  margin-right: 3.4375rem;
}

.mgn-btm55 {
  margin-bottom: 3.4375rem;
}

.mgn-lft55 {
  margin-left: 3.4375rem;
}

.mgn-56 {
  margin: 3.5rem;
}

.mgn-top56 {
  margin-top: 3.5rem;
}

.mgn-rgt56 {
  margin-right: 3.5rem;
}

.mgn-btm56 {
  margin-bottom: 3.5rem;
}

.mgn-lft56 {
  margin-left: 3.5rem;
}

.mgn-57 {
  margin: 3.5625rem;
}

.mgn-top57 {
  margin-top: 3.5625rem;
}

.mgn-rgt57 {
  margin-right: 3.5625rem;
}

.mgn-btm57 {
  margin-bottom: 3.5625rem;
}

.mgn-lft57 {
  margin-left: 3.5625rem;
}

.mgn-58 {
  margin: 3.625rem;
}

.mgn-top58 {
  margin-top: 3.625rem;
}

.mgn-rgt58 {
  margin-right: 3.625rem;
}

.mgn-btm58 {
  margin-bottom: 3.625rem;
}

.mgn-lft58 {
  margin-left: 3.625rem;
}

.mgn-59 {
  margin: 3.6875rem;
}

.mgn-top59 {
  margin-top: 3.6875rem;
}

.mgn-rgt59 {
  margin-right: 3.6875rem;
}

.mgn-btm59 {
  margin-bottom: 3.6875rem;
}

.mgn-lft59 {
  margin-left: 3.6875rem;
}

.mgn-60 {
  margin: 3.75rem;
}

.mgn-top60 {
  margin-top: 3.75rem;
}

.mgn-rgt60 {
  margin-right: 3.75rem;
}

.mgn-btm60 {
  margin-bottom: 3.75rem;
}

.mgn-lft60 {
  margin-left: 3.75rem;
}

.mgn-61 {
  margin: 3.8125rem;
}

.mgn-top61 {
  margin-top: 3.8125rem;
}

.mgn-rgt61 {
  margin-right: 3.8125rem;
}

.mgn-btm61 {
  margin-bottom: 3.8125rem;
}

.mgn-lft61 {
  margin-left: 3.8125rem;
}

.mgn-62 {
  margin: 3.875rem;
}

.mgn-top62 {
  margin-top: 3.875rem;
}

.mgn-rgt62 {
  margin-right: 3.875rem;
}

.mgn-btm62 {
  margin-bottom: 3.875rem;
}

.mgn-lft62 {
  margin-left: 3.875rem;
}

.mgn-63 {
  margin: 3.9375rem;
}

.mgn-top63 {
  margin-top: 3.9375rem;
}

.mgn-rgt63 {
  margin-right: 3.9375rem;
}

.mgn-btm63 {
  margin-bottom: 3.9375rem;
}

.mgn-lft63 {
  margin-left: 3.9375rem;
}

.mgn-64 {
  margin: 4rem;
}

.mgn-top64 {
  margin-top: 4rem;
}

.mgn-rgt64 {
  margin-right: 4rem;
}

.mgn-btm64 {
  margin-bottom: 4rem;
}

.mgn-lft64 {
  margin-left: 4rem;
}

.mgn-65 {
  margin: 4.0625rem;
}

.mgn-top65 {
  margin-top: 4.0625rem;
}

.mgn-rgt65 {
  margin-right: 4.0625rem;
}

.mgn-btm65 {
  margin-bottom: 4.0625rem;
}

.mgn-lft65 {
  margin-left: 4.0625rem;
}

.mgn-66 {
  margin: 4.125rem;
}

.mgn-top66 {
  margin-top: 4.125rem;
}

.mgn-rgt66 {
  margin-right: 4.125rem;
}

.mgn-btm66 {
  margin-bottom: 4.125rem;
}

.mgn-lft66 {
  margin-left: 4.125rem;
}

.mgn-67 {
  margin: 4.1875rem;
}

.mgn-top67 {
  margin-top: 4.1875rem;
}

.mgn-rgt67 {
  margin-right: 4.1875rem;
}

.mgn-btm67 {
  margin-bottom: 4.1875rem;
}

.mgn-lft67 {
  margin-left: 4.1875rem;
}

.mgn-68 {
  margin: 4.25rem;
}

.mgn-top68 {
  margin-top: 4.25rem;
}

.mgn-rgt68 {
  margin-right: 4.25rem;
}

.mgn-btm68 {
  margin-bottom: 4.25rem;
}

.mgn-lft68 {
  margin-left: 4.25rem;
}

.mgn-69 {
  margin: 4.3125rem;
}

.mgn-top69 {
  margin-top: 4.3125rem;
}

.mgn-rgt69 {
  margin-right: 4.3125rem;
}

.mgn-btm69 {
  margin-bottom: 4.3125rem;
}

.mgn-lft69 {
  margin-left: 4.3125rem;
}

.mgn-70 {
  margin: 4.375rem;
}

.mgn-top70 {
  margin-top: 4.375rem;
}

.mgn-rgt70 {
  margin-right: 4.375rem;
}

.mgn-btm70 {
  margin-bottom: 4.375rem;
}

.mgn-lft70 {
  margin-left: 4.375rem;
}

.mgn-71 {
  margin: 4.4375rem;
}

.mgn-top71 {
  margin-top: 4.4375rem;
}

.mgn-rgt71 {
  margin-right: 4.4375rem;
}

.mgn-btm71 {
  margin-bottom: 4.4375rem;
}

.mgn-lft71 {
  margin-left: 4.4375rem;
}

.mgn-72 {
  margin: 4.5rem;
}

.mgn-top72 {
  margin-top: 4.5rem;
}

.mgn-rgt72 {
  margin-right: 4.5rem;
}

.mgn-btm72 {
  margin-bottom: 4.5rem;
}

.mgn-lft72 {
  margin-left: 4.5rem;
}

.mgn-73 {
  margin: 4.5625rem;
}

.mgn-top73 {
  margin-top: 4.5625rem;
}

.mgn-rgt73 {
  margin-right: 4.5625rem;
}

.mgn-btm73 {
  margin-bottom: 4.5625rem;
}

.mgn-lft73 {
  margin-left: 4.5625rem;
}

.mgn-74 {
  margin: 4.625rem;
}

.mgn-top74 {
  margin-top: 4.625rem;
}

.mgn-rgt74 {
  margin-right: 4.625rem;
}

.mgn-btm74 {
  margin-bottom: 4.625rem;
}

.mgn-lft74 {
  margin-left: 4.625rem;
}

.mgn-75 {
  margin: 4.6875rem;
}

.mgn-top75 {
  margin-top: 4.6875rem;
}

.mgn-rgt75 {
  margin-right: 4.6875rem;
}

.mgn-btm75 {
  margin-bottom: 4.6875rem;
}

.mgn-lft75 {
  margin-left: 4.6875rem;
}

.mgn-76 {
  margin: 4.75rem;
}

.mgn-top76 {
  margin-top: 4.75rem;
}

.mgn-rgt76 {
  margin-right: 4.75rem;
}

.mgn-btm76 {
  margin-bottom: 4.75rem;
}

.mgn-lft76 {
  margin-left: 4.75rem;
}

.mgn-77 {
  margin: 4.8125rem;
}

.mgn-top77 {
  margin-top: 4.8125rem;
}

.mgn-rgt77 {
  margin-right: 4.8125rem;
}

.mgn-btm77 {
  margin-bottom: 4.8125rem;
}

.mgn-lft77 {
  margin-left: 4.8125rem;
}

.mgn-78 {
  margin: 4.875rem;
}

.mgn-top78 {
  margin-top: 4.875rem;
}

.mgn-rgt78 {
  margin-right: 4.875rem;
}

.mgn-btm78 {
  margin-bottom: 4.875rem;
}

.mgn-lft78 {
  margin-left: 4.875rem;
}

.mgn-79 {
  margin: 4.9375rem;
}

.mgn-top79 {
  margin-top: 4.9375rem;
}

.mgn-rgt79 {
  margin-right: 4.9375rem;
}

.mgn-btm79 {
  margin-bottom: 4.9375rem;
}

.mgn-lft79 {
  margin-left: 4.9375rem;
}

.mgn-80 {
  margin: 5rem;
}

.mgn-top80 {
  margin-top: 5rem;
}

.mgn-rgt80 {
  margin-right: 5rem;
}

.mgn-btm80 {
  margin-bottom: 5rem;
}

.mgn-lft80 {
  margin-left: 5rem;
}

.mgn-81 {
  margin: 5.0625rem;
}

.mgn-top81 {
  margin-top: 5.0625rem;
}

.mgn-rgt81 {
  margin-right: 5.0625rem;
}

.mgn-btm81 {
  margin-bottom: 5.0625rem;
}

.mgn-lft81 {
  margin-left: 5.0625rem;
}

.mgn-82 {
  margin: 5.125rem;
}

.mgn-top82 {
  margin-top: 5.125rem;
}

.mgn-rgt82 {
  margin-right: 5.125rem;
}

.mgn-btm82 {
  margin-bottom: 5.125rem;
}

.mgn-lft82 {
  margin-left: 5.125rem;
}

.mgn-83 {
  margin: 5.1875rem;
}

.mgn-top83 {
  margin-top: 5.1875rem;
}

.mgn-rgt83 {
  margin-right: 5.1875rem;
}

.mgn-btm83 {
  margin-bottom: 5.1875rem;
}

.mgn-lft83 {
  margin-left: 5.1875rem;
}

.mgn-84 {
  margin: 5.25rem;
}

.mgn-top84 {
  margin-top: 5.25rem;
}

.mgn-rgt84 {
  margin-right: 5.25rem;
}

.mgn-btm84 {
  margin-bottom: 5.25rem;
}

.mgn-lft84 {
  margin-left: 5.25rem;
}

.mgn-85 {
  margin: 5.3125rem;
}

.mgn-top85 {
  margin-top: 5.3125rem;
}

.mgn-rgt85 {
  margin-right: 5.3125rem;
}

.mgn-btm85 {
  margin-bottom: 5.3125rem;
}

.mgn-lft85 {
  margin-left: 5.3125rem;
}

.mgn-86 {
  margin: 5.375rem;
}

.mgn-top86 {
  margin-top: 5.375rem;
}

.mgn-rgt86 {
  margin-right: 5.375rem;
}

.mgn-btm86 {
  margin-bottom: 5.375rem;
}

.mgn-lft86 {
  margin-left: 5.375rem;
}

.mgn-87 {
  margin: 5.4375rem;
}

.mgn-top87 {
  margin-top: 5.4375rem;
}

.mgn-rgt87 {
  margin-right: 5.4375rem;
}

.mgn-btm87 {
  margin-bottom: 5.4375rem;
}

.mgn-lft87 {
  margin-left: 5.4375rem;
}

.mgn-88 {
  margin: 5.5rem;
}

.mgn-top88 {
  margin-top: 5.5rem;
}

.mgn-rgt88 {
  margin-right: 5.5rem;
}

.mgn-btm88 {
  margin-bottom: 5.5rem;
}

.mgn-lft88 {
  margin-left: 5.5rem;
}

.mgn-89 {
  margin: 5.5625rem;
}

.mgn-top89 {
  margin-top: 5.5625rem;
}

.mgn-rgt89 {
  margin-right: 5.5625rem;
}

.mgn-btm89 {
  margin-bottom: 5.5625rem;
}

.mgn-lft89 {
  margin-left: 5.5625rem;
}

.mgn-90 {
  margin: 5.625rem;
}

.mgn-top90 {
  margin-top: 5.625rem;
}

.mgn-rgt90 {
  margin-right: 5.625rem;
}

.mgn-btm90 {
  margin-bottom: 5.625rem;
}

.mgn-lft90 {
  margin-left: 5.625rem;
}

.mgn-91 {
  margin: 5.6875rem;
}

.mgn-top91 {
  margin-top: 5.6875rem;
}

.mgn-rgt91 {
  margin-right: 5.6875rem;
}

.mgn-btm91 {
  margin-bottom: 5.6875rem;
}

.mgn-lft91 {
  margin-left: 5.6875rem;
}

.mgn-92 {
  margin: 5.75rem;
}

.mgn-top92 {
  margin-top: 5.75rem;
}

.mgn-rgt92 {
  margin-right: 5.75rem;
}

.mgn-btm92 {
  margin-bottom: 5.75rem;
}

.mgn-lft92 {
  margin-left: 5.75rem;
}

.mgn-93 {
  margin: 5.8125rem;
}

.mgn-top93 {
  margin-top: 5.8125rem;
}

.mgn-rgt93 {
  margin-right: 5.8125rem;
}

.mgn-btm93 {
  margin-bottom: 5.8125rem;
}

.mgn-lft93 {
  margin-left: 5.8125rem;
}

.mgn-94 {
  margin: 5.875rem;
}

.mgn-top94 {
  margin-top: 5.875rem;
}

.mgn-rgt94 {
  margin-right: 5.875rem;
}

.mgn-btm94 {
  margin-bottom: 5.875rem;
}

.mgn-lft94 {
  margin-left: 5.875rem;
}

.mgn-95 {
  margin: 5.9375rem;
}

.mgn-top95 {
  margin-top: 5.9375rem;
}

.mgn-rgt95 {
  margin-right: 5.9375rem;
}

.mgn-btm95 {
  margin-bottom: 5.9375rem;
}

.mgn-lft95 {
  margin-left: 5.9375rem;
}

.mgn-96 {
  margin: 6rem;
}

.mgn-top96 {
  margin-top: 6rem;
}

.mgn-rgt96 {
  margin-right: 6rem;
}

.mgn-btm96 {
  margin-bottom: 6rem;
}

.mgn-lft96 {
  margin-left: 6rem;
}

.mgn-97 {
  margin: 6.0625rem;
}

.mgn-top97 {
  margin-top: 6.0625rem;
}

.mgn-rgt97 {
  margin-right: 6.0625rem;
}

.mgn-btm97 {
  margin-bottom: 6.0625rem;
}

.mgn-lft97 {
  margin-left: 6.0625rem;
}

.mgn-98 {
  margin: 6.125rem;
}

.mgn-top98 {
  margin-top: 6.125rem;
}

.mgn-rgt98 {
  margin-right: 6.125rem;
}

.mgn-btm98 {
  margin-bottom: 6.125rem;
}

.mgn-lft98 {
  margin-left: 6.125rem;
}

.mgn-99 {
  margin: 6.1875rem;
}

.mgn-top99 {
  margin-top: 6.1875rem;
}

.mgn-rgt99 {
  margin-right: 6.1875rem;
}

.mgn-btm99 {
  margin-bottom: 6.1875rem;
}

.mgn-lft99 {
  margin-left: 6.1875rem;
}

.mgn-100 {
  margin: 6.25rem;
}

.mgn-top100 {
  margin-top: 6.25rem;
}

.mgn-rgt100 {
  margin-right: 6.25rem;
}

.mgn-btm100 {
  margin-bottom: 6.25rem;
}

.mgn-lft100 {
  margin-left: 6.25rem;
}

.mgn-101 {
  margin: 6.3125rem;
}

.mgn-top101 {
  margin-top: 6.3125rem;
}

.mgn-rgt101 {
  margin-right: 6.3125rem;
}

.mgn-btm101 {
  margin-bottom: 6.3125rem;
}

.mgn-lft101 {
  margin-left: 6.3125rem;
}

.mgn-102 {
  margin: 6.375rem;
}

.mgn-top102 {
  margin-top: 6.375rem;
}

.mgn-rgt102 {
  margin-right: 6.375rem;
}

.mgn-btm102 {
  margin-bottom: 6.375rem;
}

.mgn-lft102 {
  margin-left: 6.375rem;
}

.mgn-103 {
  margin: 6.4375rem;
}

.mgn-top103 {
  margin-top: 6.4375rem;
}

.mgn-rgt103 {
  margin-right: 6.4375rem;
}

.mgn-btm103 {
  margin-bottom: 6.4375rem;
}

.mgn-lft103 {
  margin-left: 6.4375rem;
}

.mgn-104 {
  margin: 6.5rem;
}

.mgn-top104 {
  margin-top: 6.5rem;
}

.mgn-rgt104 {
  margin-right: 6.5rem;
}

.mgn-btm104 {
  margin-bottom: 6.5rem;
}

.mgn-lft104 {
  margin-left: 6.5rem;
}

.mgn-105 {
  margin: 6.5625rem;
}

.mgn-top105 {
  margin-top: 6.5625rem;
}

.mgn-rgt105 {
  margin-right: 6.5625rem;
}

.mgn-btm105 {
  margin-bottom: 6.5625rem;
}

.mgn-lft105 {
  margin-left: 6.5625rem;
}

.mgn-106 {
  margin: 6.625rem;
}

.mgn-top106 {
  margin-top: 6.625rem;
}

.mgn-rgt106 {
  margin-right: 6.625rem;
}

.mgn-btm106 {
  margin-bottom: 6.625rem;
}

.mgn-lft106 {
  margin-left: 6.625rem;
}

.mgn-107 {
  margin: 6.6875rem;
}

.mgn-top107 {
  margin-top: 6.6875rem;
}

.mgn-rgt107 {
  margin-right: 6.6875rem;
}

.mgn-btm107 {
  margin-bottom: 6.6875rem;
}

.mgn-lft107 {
  margin-left: 6.6875rem;
}

.mgn-108 {
  margin: 6.75rem;
}

.mgn-top108 {
  margin-top: 6.75rem;
}

.mgn-rgt108 {
  margin-right: 6.75rem;
}

.mgn-btm108 {
  margin-bottom: 6.75rem;
}

.mgn-lft108 {
  margin-left: 6.75rem;
}

.mgn-109 {
  margin: 6.8125rem;
}

.mgn-top109 {
  margin-top: 6.8125rem;
}

.mgn-rgt109 {
  margin-right: 6.8125rem;
}

.mgn-btm109 {
  margin-bottom: 6.8125rem;
}

.mgn-lft109 {
  margin-left: 6.8125rem;
}

.mgn-110 {
  margin: 6.875rem;
}

.mgn-top110 {
  margin-top: 6.875rem;
}

.mgn-rgt110 {
  margin-right: 6.875rem;
}

.mgn-btm110 {
  margin-bottom: 6.875rem;
}

.mgn-lft110 {
  margin-left: 6.875rem;
}

.mgn-111 {
  margin: 6.9375rem;
}

.mgn-top111 {
  margin-top: 6.9375rem;
}

.mgn-rgt111 {
  margin-right: 6.9375rem;
}

.mgn-btm111 {
  margin-bottom: 6.9375rem;
}

.mgn-lft111 {
  margin-left: 6.9375rem;
}

.mgn-112 {
  margin: 7rem;
}

.mgn-top112 {
  margin-top: 7rem;
}

.mgn-rgt112 {
  margin-right: 7rem;
}

.mgn-btm112 {
  margin-bottom: 7rem;
}

.mgn-lft112 {
  margin-left: 7rem;
}

.mgn-113 {
  margin: 7.0625rem;
}

.mgn-top113 {
  margin-top: 7.0625rem;
}

.mgn-rgt113 {
  margin-right: 7.0625rem;
}

.mgn-btm113 {
  margin-bottom: 7.0625rem;
}

.mgn-lft113 {
  margin-left: 7.0625rem;
}

.mgn-114 {
  margin: 7.125rem;
}

.mgn-top114 {
  margin-top: 7.125rem;
}

.mgn-rgt114 {
  margin-right: 7.125rem;
}

.mgn-btm114 {
  margin-bottom: 7.125rem;
}

.mgn-lft114 {
  margin-left: 7.125rem;
}

.mgn-115 {
  margin: 7.1875rem;
}

.mgn-top115 {
  margin-top: 7.1875rem;
}

.mgn-rgt115 {
  margin-right: 7.1875rem;
}

.mgn-btm115 {
  margin-bottom: 7.1875rem;
}

.mgn-lft115 {
  margin-left: 7.1875rem;
}

.mgn-116 {
  margin: 7.25rem;
}

.mgn-top116 {
  margin-top: 7.25rem;
}

.mgn-rgt116 {
  margin-right: 7.25rem;
}

.mgn-btm116 {
  margin-bottom: 7.25rem;
}

.mgn-lft116 {
  margin-left: 7.25rem;
}

.mgn-117 {
  margin: 7.3125rem;
}

.mgn-top117 {
  margin-top: 7.3125rem;
}

.mgn-rgt117 {
  margin-right: 7.3125rem;
}

.mgn-btm117 {
  margin-bottom: 7.3125rem;
}

.mgn-lft117 {
  margin-left: 7.3125rem;
}

.mgn-118 {
  margin: 7.375rem;
}

.mgn-top118 {
  margin-top: 7.375rem;
}

.mgn-rgt118 {
  margin-right: 7.375rem;
}

.mgn-btm118 {
  margin-bottom: 7.375rem;
}

.mgn-lft118 {
  margin-left: 7.375rem;
}

.mgn-119 {
  margin: 7.4375rem;
}

.mgn-top119 {
  margin-top: 7.4375rem;
}

.mgn-rgt119 {
  margin-right: 7.4375rem;
}

.mgn-btm119 {
  margin-bottom: 7.4375rem;
}

.mgn-lft119 {
  margin-left: 7.4375rem;
}

.mgn-120 {
  margin: 7.5rem;
}

.mgn-top120 {
  margin-top: 7.5rem;
}

.mgn-rgt120 {
  margin-right: 7.5rem;
}

.mgn-btm120 {
  margin-bottom: 7.5rem;
}

.mgn-lft120 {
  margin-left: 7.5rem;
}

.mgn-121 {
  margin: 7.5625rem;
}

.mgn-top121 {
  margin-top: 7.5625rem;
}

.mgn-rgt121 {
  margin-right: 7.5625rem;
}

.mgn-btm121 {
  margin-bottom: 7.5625rem;
}

.mgn-lft121 {
  margin-left: 7.5625rem;
}

.mgn-122 {
  margin: 7.625rem;
}

.mgn-top122 {
  margin-top: 7.625rem;
}

.mgn-rgt122 {
  margin-right: 7.625rem;
}

.mgn-btm122 {
  margin-bottom: 7.625rem;
}

.mgn-lft122 {
  margin-left: 7.625rem;
}

.mgn-123 {
  margin: 7.6875rem;
}

.mgn-top123 {
  margin-top: 7.6875rem;
}

.mgn-rgt123 {
  margin-right: 7.6875rem;
}

.mgn-btm123 {
  margin-bottom: 7.6875rem;
}

.mgn-lft123 {
  margin-left: 7.6875rem;
}

.mgn-124 {
  margin: 7.75rem;
}

.mgn-top124 {
  margin-top: 7.75rem;
}

.mgn-rgt124 {
  margin-right: 7.75rem;
}

.mgn-btm124 {
  margin-bottom: 7.75rem;
}

.mgn-lft124 {
  margin-left: 7.75rem;
}

.mgn-125 {
  margin: 7.8125rem;
}

.mgn-top125 {
  margin-top: 7.8125rem;
}

.mgn-rgt125 {
  margin-right: 7.8125rem;
}

.mgn-btm125 {
  margin-bottom: 7.8125rem;
}

.mgn-lft125 {
  margin-left: 7.8125rem;
}

.mgn-126 {
  margin: 7.875rem;
}

.mgn-top126 {
  margin-top: 7.875rem;
}

.mgn-rgt126 {
  margin-right: 7.875rem;
}

.mgn-btm126 {
  margin-bottom: 7.875rem;
}

.mgn-lft126 {
  margin-left: 7.875rem;
}

.mgn-127 {
  margin: 7.9375rem;
}

.mgn-top127 {
  margin-top: 7.9375rem;
}

.mgn-rgt127 {
  margin-right: 7.9375rem;
}

.mgn-btm127 {
  margin-bottom: 7.9375rem;
}

.mgn-lft127 {
  margin-left: 7.9375rem;
}

.mgn-128 {
  margin: 8rem;
}

.mgn-top128 {
  margin-top: 8rem;
}

.mgn-rgt128 {
  margin-right: 8rem;
}

.mgn-btm128 {
  margin-bottom: 8rem;
}

.mgn-lft128 {
  margin-left: 8rem;
}

.mgn-129 {
  margin: 8.0625rem;
}

.mgn-top129 {
  margin-top: 8.0625rem;
}

.mgn-rgt129 {
  margin-right: 8.0625rem;
}

.mgn-btm129 {
  margin-bottom: 8.0625rem;
}

.mgn-lft129 {
  margin-left: 8.0625rem;
}

.mgn-130 {
  margin: 8.125rem;
}

.mgn-top130 {
  margin-top: 8.125rem;
}

.mgn-rgt130 {
  margin-right: 8.125rem;
}

.mgn-btm130 {
  margin-bottom: 8.125rem;
}

.mgn-lft130 {
  margin-left: 8.125rem;
}

.mgn-131 {
  margin: 8.1875rem;
}

.mgn-top131 {
  margin-top: 8.1875rem;
}

.mgn-rgt131 {
  margin-right: 8.1875rem;
}

.mgn-btm131 {
  margin-bottom: 8.1875rem;
}

.mgn-lft131 {
  margin-left: 8.1875rem;
}

.mgn-132 {
  margin: 8.25rem;
}

.mgn-top132 {
  margin-top: 8.25rem;
}

.mgn-rgt132 {
  margin-right: 8.25rem;
}

.mgn-btm132 {
  margin-bottom: 8.25rem;
}

.mgn-lft132 {
  margin-left: 8.25rem;
}

.mgn-133 {
  margin: 8.3125rem;
}

.mgn-top133 {
  margin-top: 8.3125rem;
}

.mgn-rgt133 {
  margin-right: 8.3125rem;
}

.mgn-btm133 {
  margin-bottom: 8.3125rem;
}

.mgn-lft133 {
  margin-left: 8.3125rem;
}

.mgn-134 {
  margin: 8.375rem;
}

.mgn-top134 {
  margin-top: 8.375rem;
}

.mgn-rgt134 {
  margin-right: 8.375rem;
}

.mgn-btm134 {
  margin-bottom: 8.375rem;
}

.mgn-lft134 {
  margin-left: 8.375rem;
}

.mgn-135 {
  margin: 8.4375rem;
}

.mgn-top135 {
  margin-top: 8.4375rem;
}

.mgn-rgt135 {
  margin-right: 8.4375rem;
}

.mgn-btm135 {
  margin-bottom: 8.4375rem;
}

.mgn-lft135 {
  margin-left: 8.4375rem;
}

.mgn-136 {
  margin: 8.5rem;
}

.mgn-top136 {
  margin-top: 8.5rem;
}

.mgn-rgt136 {
  margin-right: 8.5rem;
}

.mgn-btm136 {
  margin-bottom: 8.5rem;
}

.mgn-lft136 {
  margin-left: 8.5rem;
}

.mgn-137 {
  margin: 8.5625rem;
}

.mgn-top137 {
  margin-top: 8.5625rem;
}

.mgn-rgt137 {
  margin-right: 8.5625rem;
}

.mgn-btm137 {
  margin-bottom: 8.5625rem;
}

.mgn-lft137 {
  margin-left: 8.5625rem;
}

.mgn-138 {
  margin: 8.625rem;
}

.mgn-top138 {
  margin-top: 8.625rem;
}

.mgn-rgt138 {
  margin-right: 8.625rem;
}

.mgn-btm138 {
  margin-bottom: 8.625rem;
}

.mgn-lft138 {
  margin-left: 8.625rem;
}

.mgn-139 {
  margin: 8.6875rem;
}

.mgn-top139 {
  margin-top: 8.6875rem;
}

.mgn-rgt139 {
  margin-right: 8.6875rem;
}

.mgn-btm139 {
  margin-bottom: 8.6875rem;
}

.mgn-lft139 {
  margin-left: 8.6875rem;
}

.mgn-140 {
  margin: 8.75rem;
}

.mgn-top140 {
  margin-top: 8.75rem;
}

.mgn-rgt140 {
  margin-right: 8.75rem;
}

.mgn-btm140 {
  margin-bottom: 8.75rem;
}

.mgn-lft140 {
  margin-left: 8.75rem;
}

.mgn-141 {
  margin: 8.8125rem;
}

.mgn-top141 {
  margin-top: 8.8125rem;
}

.mgn-rgt141 {
  margin-right: 8.8125rem;
}

.mgn-btm141 {
  margin-bottom: 8.8125rem;
}

.mgn-lft141 {
  margin-left: 8.8125rem;
}

.mgn-142 {
  margin: 8.875rem;
}

.mgn-top142 {
  margin-top: 8.875rem;
}

.mgn-rgt142 {
  margin-right: 8.875rem;
}

.mgn-btm142 {
  margin-bottom: 8.875rem;
}

.mgn-lft142 {
  margin-left: 8.875rem;
}

.mgn-143 {
  margin: 8.9375rem;
}

.mgn-top143 {
  margin-top: 8.9375rem;
}

.mgn-rgt143 {
  margin-right: 8.9375rem;
}

.mgn-btm143 {
  margin-bottom: 8.9375rem;
}

.mgn-lft143 {
  margin-left: 8.9375rem;
}

.mgn-144 {
  margin: 9rem;
}

.mgn-top144 {
  margin-top: 9rem;
}

.mgn-rgt144 {
  margin-right: 9rem;
}

.mgn-btm144 {
  margin-bottom: 9rem;
}

.mgn-lft144 {
  margin-left: 9rem;
}

.mgn-145 {
  margin: 9.0625rem;
}

.mgn-top145 {
  margin-top: 9.0625rem;
}

.mgn-rgt145 {
  margin-right: 9.0625rem;
}

.mgn-btm145 {
  margin-bottom: 9.0625rem;
}

.mgn-lft145 {
  margin-left: 9.0625rem;
}

.mgn-146 {
  margin: 9.125rem;
}

.mgn-top146 {
  margin-top: 9.125rem;
}

.mgn-rgt146 {
  margin-right: 9.125rem;
}

.mgn-btm146 {
  margin-bottom: 9.125rem;
}

.mgn-lft146 {
  margin-left: 9.125rem;
}

.mgn-147 {
  margin: 9.1875rem;
}

.mgn-top147 {
  margin-top: 9.1875rem;
}

.mgn-rgt147 {
  margin-right: 9.1875rem;
}

.mgn-btm147 {
  margin-bottom: 9.1875rem;
}

.mgn-lft147 {
  margin-left: 9.1875rem;
}

.mgn-148 {
  margin: 9.25rem;
}

.mgn-top148 {
  margin-top: 9.25rem;
}

.mgn-rgt148 {
  margin-right: 9.25rem;
}

.mgn-btm148 {
  margin-bottom: 9.25rem;
}

.mgn-lft148 {
  margin-left: 9.25rem;
}

.mgn-149 {
  margin: 9.3125rem;
}

.mgn-top149 {
  margin-top: 9.3125rem;
}

.mgn-rgt149 {
  margin-right: 9.3125rem;
}

.mgn-btm149 {
  margin-bottom: 9.3125rem;
}

.mgn-lft149 {
  margin-left: 9.3125rem;
}

.mgn-150 {
  margin: 9.375rem;
}

.mgn-top150 {
  margin-top: 9.375rem;
}

.mgn-rgt150 {
  margin-right: 9.375rem;
}

.mgn-btm150 {
  margin-bottom: 9.375rem;
}

.mgn-lft150 {
  margin-left: 9.375rem;
}

@media screen and (max-width: 47.9375em) {
  /* --- margin --- 古い・削除*/
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .mgn-btm88 {
    margin-bottom: 48px;
  }
  .mgn-btm96 {
    margin-bottom: 48px;
  }
}
.mgn-0_em {
  margin: 0em;
}

.mgn-top0_em {
  margin-top: 0em;
}

.mgn-rgt0_em {
  margin-right: 0em;
}

.mgn-btm0_em {
  margin-bottom: 0em;
}

.mgn-lft0_em {
  margin-left: 0em;
}

.mgn-1_em {
  margin: 1em;
}

.mgn-top1_em {
  margin-top: 1em;
}

.mgn-rgt1_em {
  margin-right: 1em;
}

.mgn-btm1_em {
  margin-bottom: 1em;
}

.mgn-lft1_em {
  margin-left: 1em;
}

.mgn-2_em {
  margin: 2em;
}

.mgn-top2_em {
  margin-top: 2em;
}

.mgn-rgt2_em {
  margin-right: 2em;
}

.mgn-btm2_em {
  margin-bottom: 2em;
}

.mgn-lft2_em {
  margin-left: 2em;
}

.mgn-3_em {
  margin: 3em;
}

.mgn-top3_em {
  margin-top: 3em;
}

.mgn-rgt3_em {
  margin-right: 3em;
}

.mgn-btm3_em {
  margin-bottom: 3em;
}

.mgn-lft3_em {
  margin-left: 3em;
}

.mgn-4_em {
  margin: 4em;
}

.mgn-top4_em {
  margin-top: 4em;
}

.mgn-rgt4_em {
  margin-right: 4em;
}

.mgn-btm4_em {
  margin-bottom: 4em;
}

.mgn-lft4_em {
  margin-left: 4em;
}

.mgn-5_em {
  margin: 5em;
}

.mgn-top5_em {
  margin-top: 5em;
}

.mgn-rgt5_em {
  margin-right: 5em;
}

.mgn-btm5_em {
  margin-bottom: 5em;
}

.mgn-lft5_em {
  margin-left: 5em;
}

.mgn-6_em {
  margin: 6em;
}

.mgn-top6_em {
  margin-top: 6em;
}

.mgn-rgt6_em {
  margin-right: 6em;
}

.mgn-btm6_em {
  margin-bottom: 6em;
}

.mgn-lft6_em {
  margin-left: 6em;
}

.mgn-7_em {
  margin: 7em;
}

.mgn-top7_em {
  margin-top: 7em;
}

.mgn-rgt7_em {
  margin-right: 7em;
}

.mgn-btm7_em {
  margin-bottom: 7em;
}

.mgn-lft7_em {
  margin-left: 7em;
}

.mgn-8_em {
  margin: 8em;
}

.mgn-top8_em {
  margin-top: 8em;
}

.mgn-rgt8_em {
  margin-right: 8em;
}

.mgn-btm8_em {
  margin-bottom: 8em;
}

.mgn-lft8_em {
  margin-left: 8em;
}

.mgn-9_em {
  margin: 9em;
}

.mgn-top9_em {
  margin-top: 9em;
}

.mgn-rgt9_em {
  margin-right: 9em;
}

.mgn-btm9_em {
  margin-bottom: 9em;
}

.mgn-lft9_em {
  margin-left: 9em;
}

.mgn-10_em {
  margin: 10em;
}

.mgn-top10_em {
  margin-top: 10em;
}

.mgn-rgt10_em {
  margin-right: 10em;
}

.mgn-btm10_em {
  margin-bottom: 10em;
}

.mgn-lft10_em {
  margin-left: 10em;
}

.mgn-11_em {
  margin: 11em;
}

.mgn-top11_em {
  margin-top: 11em;
}

.mgn-rgt11_em {
  margin-right: 11em;
}

.mgn-btm11_em {
  margin-bottom: 11em;
}

.mgn-lft11_em {
  margin-left: 11em;
}

.mgn-12_em {
  margin: 12em;
}

.mgn-top12_em {
  margin-top: 12em;
}

.mgn-rgt12_em {
  margin-right: 12em;
}

.mgn-btm12_em {
  margin-bottom: 12em;
}

.mgn-lft12_em {
  margin-left: 12em;
}

.mgn-13_em {
  margin: 13em;
}

.mgn-top13_em {
  margin-top: 13em;
}

.mgn-rgt13_em {
  margin-right: 13em;
}

.mgn-btm13_em {
  margin-bottom: 13em;
}

.mgn-lft13_em {
  margin-left: 13em;
}

.mgn-14_em {
  margin: 14em;
}

.mgn-top14_em {
  margin-top: 14em;
}

.mgn-rgt14_em {
  margin-right: 14em;
}

.mgn-btm14_em {
  margin-bottom: 14em;
}

.mgn-lft14_em {
  margin-left: 14em;
}

.mgn-15_em {
  margin: 15em;
}

.mgn-top15_em {
  margin-top: 15em;
}

.mgn-rgt15_em {
  margin-right: 15em;
}

.mgn-btm15_em {
  margin-bottom: 15em;
}

.mgn-lft15_em {
  margin-left: 15em;
}

.pdg-0 {
  padding: 0px;
}

.pdg-top0 {
  padding-top: 0px;
}

.pdg-rgt0 {
  padding-right: 0px;
}

.pdg-btm0 {
  padding-bottom: 0px;
}

.pdg-lft0 {
  padding-left: 0px;
}

.pdg-1 {
  padding: 1px;
}

.pdg-top1 {
  padding-top: 1px;
}

.pdg-rgt1 {
  padding-right: 1px;
}

.pdg-btm1 {
  padding-bottom: 1px;
}

.pdg-lft1 {
  padding-left: 1px;
}

.pdg-2 {
  padding: 2px;
}

.pdg-top2 {
  padding-top: 2px;
}

.pdg-rgt2 {
  padding-right: 2px;
}

.pdg-btm2 {
  padding-bottom: 2px;
}

.pdg-lft2 {
  padding-left: 2px;
}

.pdg-3 {
  padding: 3px;
}

.pdg-top3 {
  padding-top: 3px;
}

.pdg-rgt3 {
  padding-right: 3px;
}

.pdg-btm3 {
  padding-bottom: 3px;
}

.pdg-lft3 {
  padding-left: 3px;
}

.pdg-4 {
  padding: 4px;
}

.pdg-top4 {
  padding-top: 4px;
}

.pdg-rgt4 {
  padding-right: 4px;
}

.pdg-btm4 {
  padding-bottom: 4px;
}

.pdg-lft4 {
  padding-left: 4px;
}

.pdg-5 {
  padding: 5px;
}

.pdg-top5 {
  padding-top: 5px;
}

.pdg-rgt5 {
  padding-right: 5px;
}

.pdg-btm5 {
  padding-bottom: 5px;
}

.pdg-lft5 {
  padding-left: 5px;
}

.pdg-6 {
  padding: 6px;
}

.pdg-top6 {
  padding-top: 6px;
}

.pdg-rgt6 {
  padding-right: 6px;
}

.pdg-btm6 {
  padding-bottom: 6px;
}

.pdg-lft6 {
  padding-left: 6px;
}

.pdg-7 {
  padding: 7px;
}

.pdg-top7 {
  padding-top: 7px;
}

.pdg-rgt7 {
  padding-right: 7px;
}

.pdg-btm7 {
  padding-bottom: 7px;
}

.pdg-lft7 {
  padding-left: 7px;
}

.pdg-8 {
  padding: 8px;
}

.pdg-top8 {
  padding-top: 8px;
}

.pdg-rgt8 {
  padding-right: 8px;
}

.pdg-btm8 {
  padding-bottom: 8px;
}

.pdg-lft8 {
  padding-left: 8px;
}

.pdg-9 {
  padding: 9px;
}

.pdg-top9 {
  padding-top: 9px;
}

.pdg-rgt9 {
  padding-right: 9px;
}

.pdg-btm9 {
  padding-bottom: 9px;
}

.pdg-lft9 {
  padding-left: 9px;
}

.pdg-10 {
  padding: 10px;
}

.pdg-top10 {
  padding-top: 10px;
}

.pdg-rgt10 {
  padding-right: 10px;
}

.pdg-btm10 {
  padding-bottom: 10px;
}

.pdg-lft10 {
  padding-left: 10px;
}

.pdg-11 {
  padding: 11px;
}

.pdg-top11 {
  padding-top: 11px;
}

.pdg-rgt11 {
  padding-right: 11px;
}

.pdg-btm11 {
  padding-bottom: 11px;
}

.pdg-lft11 {
  padding-left: 11px;
}

.pdg-12 {
  padding: 12px;
}

.pdg-top12 {
  padding-top: 12px;
}

.pdg-rgt12 {
  padding-right: 12px;
}

.pdg-btm12 {
  padding-bottom: 12px;
}

.pdg-lft12 {
  padding-left: 12px;
}

.pdg-13 {
  padding: 13px;
}

.pdg-top13 {
  padding-top: 13px;
}

.pdg-rgt13 {
  padding-right: 13px;
}

.pdg-btm13 {
  padding-bottom: 13px;
}

.pdg-lft13 {
  padding-left: 13px;
}

.pdg-14 {
  padding: 14px;
}

.pdg-top14 {
  padding-top: 14px;
}

.pdg-rgt14 {
  padding-right: 14px;
}

.pdg-btm14 {
  padding-bottom: 14px;
}

.pdg-lft14 {
  padding-left: 14px;
}

.pdg-15 {
  padding: 15px;
}

.pdg-top15 {
  padding-top: 15px;
}

.pdg-rgt15 {
  padding-right: 15px;
}

.pdg-btm15 {
  padding-bottom: 15px;
}

.pdg-lft15 {
  padding-left: 15px;
}

.pdg-16 {
  padding: 16px;
}

.pdg-top16 {
  padding-top: 16px;
}

.pdg-rgt16 {
  padding-right: 16px;
}

.pdg-btm16 {
  padding-bottom: 16px;
}

.pdg-lft16 {
  padding-left: 16px;
}

.pdg-17 {
  padding: 17px;
}

.pdg-top17 {
  padding-top: 17px;
}

.pdg-rgt17 {
  padding-right: 17px;
}

.pdg-btm17 {
  padding-bottom: 17px;
}

.pdg-lft17 {
  padding-left: 17px;
}

.pdg-18 {
  padding: 18px;
}

.pdg-top18 {
  padding-top: 18px;
}

.pdg-rgt18 {
  padding-right: 18px;
}

.pdg-btm18 {
  padding-bottom: 18px;
}

.pdg-lft18 {
  padding-left: 18px;
}

.pdg-19 {
  padding: 19px;
}

.pdg-top19 {
  padding-top: 19px;
}

.pdg-rgt19 {
  padding-right: 19px;
}

.pdg-btm19 {
  padding-bottom: 19px;
}

.pdg-lft19 {
  padding-left: 19px;
}

.pdg-20 {
  padding: 20px;
}

.pdg-top20 {
  padding-top: 20px;
}

.pdg-rgt20 {
  padding-right: 20px;
}

.pdg-btm20 {
  padding-bottom: 20px;
}

.pdg-lft20 {
  padding-left: 20px;
}

.pdg-21 {
  padding: 21px;
}

.pdg-top21 {
  padding-top: 21px;
}

.pdg-rgt21 {
  padding-right: 21px;
}

.pdg-btm21 {
  padding-bottom: 21px;
}

.pdg-lft21 {
  padding-left: 21px;
}

.pdg-22 {
  padding: 22px;
}

.pdg-top22 {
  padding-top: 22px;
}

.pdg-rgt22 {
  padding-right: 22px;
}

.pdg-btm22 {
  padding-bottom: 22px;
}

.pdg-lft22 {
  padding-left: 22px;
}

.pdg-23 {
  padding: 23px;
}

.pdg-top23 {
  padding-top: 23px;
}

.pdg-rgt23 {
  padding-right: 23px;
}

.pdg-btm23 {
  padding-bottom: 23px;
}

.pdg-lft23 {
  padding-left: 23px;
}

.pdg-24 {
  padding: 24px;
}

.pdg-top24 {
  padding-top: 24px;
}

.pdg-rgt24 {
  padding-right: 24px;
}

.pdg-btm24 {
  padding-bottom: 24px;
}

.pdg-lft24 {
  padding-left: 24px;
}

.pdg-25 {
  padding: 25px;
}

.pdg-top25 {
  padding-top: 25px;
}

.pdg-rgt25 {
  padding-right: 25px;
}

.pdg-btm25 {
  padding-bottom: 25px;
}

.pdg-lft25 {
  padding-left: 25px;
}

.pdg-26 {
  padding: 26px;
}

.pdg-top26 {
  padding-top: 26px;
}

.pdg-rgt26 {
  padding-right: 26px;
}

.pdg-btm26 {
  padding-bottom: 26px;
}

.pdg-lft26 {
  padding-left: 26px;
}

.pdg-27 {
  padding: 27px;
}

.pdg-top27 {
  padding-top: 27px;
}

.pdg-rgt27 {
  padding-right: 27px;
}

.pdg-btm27 {
  padding-bottom: 27px;
}

.pdg-lft27 {
  padding-left: 27px;
}

.pdg-28 {
  padding: 28px;
}

.pdg-top28 {
  padding-top: 28px;
}

.pdg-rgt28 {
  padding-right: 28px;
}

.pdg-btm28 {
  padding-bottom: 28px;
}

.pdg-lft28 {
  padding-left: 28px;
}

.pdg-29 {
  padding: 29px;
}

.pdg-top29 {
  padding-top: 29px;
}

.pdg-rgt29 {
  padding-right: 29px;
}

.pdg-btm29 {
  padding-bottom: 29px;
}

.pdg-lft29 {
  padding-left: 29px;
}

.pdg-30 {
  padding: 30px;
}

.pdg-top30 {
  padding-top: 30px;
}

.pdg-rgt30 {
  padding-right: 30px;
}

.pdg-btm30 {
  padding-bottom: 30px;
}

.pdg-lft30 {
  padding-left: 30px;
}

.pdg-31 {
  padding: 31px;
}

.pdg-top31 {
  padding-top: 31px;
}

.pdg-rgt31 {
  padding-right: 31px;
}

.pdg-btm31 {
  padding-bottom: 31px;
}

.pdg-lft31 {
  padding-left: 31px;
}

.pdg-32 {
  padding: 32px;
}

.pdg-top32 {
  padding-top: 32px;
}

.pdg-rgt32 {
  padding-right: 32px;
}

.pdg-btm32 {
  padding-bottom: 32px;
}

.pdg-lft32 {
  padding-left: 32px;
}

.pdg-33 {
  padding: 33px;
}

.pdg-top33 {
  padding-top: 33px;
}

.pdg-rgt33 {
  padding-right: 33px;
}

.pdg-btm33 {
  padding-bottom: 33px;
}

.pdg-lft33 {
  padding-left: 33px;
}

.pdg-34 {
  padding: 34px;
}

.pdg-top34 {
  padding-top: 34px;
}

.pdg-rgt34 {
  padding-right: 34px;
}

.pdg-btm34 {
  padding-bottom: 34px;
}

.pdg-lft34 {
  padding-left: 34px;
}

.pdg-35 {
  padding: 35px;
}

.pdg-top35 {
  padding-top: 35px;
}

.pdg-rgt35 {
  padding-right: 35px;
}

.pdg-btm35 {
  padding-bottom: 35px;
}

.pdg-lft35 {
  padding-left: 35px;
}

.pdg-36 {
  padding: 36px;
}

.pdg-top36 {
  padding-top: 36px;
}

.pdg-rgt36 {
  padding-right: 36px;
}

.pdg-btm36 {
  padding-bottom: 36px;
}

.pdg-lft36 {
  padding-left: 36px;
}

.pdg-37 {
  padding: 37px;
}

.pdg-top37 {
  padding-top: 37px;
}

.pdg-rgt37 {
  padding-right: 37px;
}

.pdg-btm37 {
  padding-bottom: 37px;
}

.pdg-lft37 {
  padding-left: 37px;
}

.pdg-38 {
  padding: 38px;
}

.pdg-top38 {
  padding-top: 38px;
}

.pdg-rgt38 {
  padding-right: 38px;
}

.pdg-btm38 {
  padding-bottom: 38px;
}

.pdg-lft38 {
  padding-left: 38px;
}

.pdg-39 {
  padding: 39px;
}

.pdg-top39 {
  padding-top: 39px;
}

.pdg-rgt39 {
  padding-right: 39px;
}

.pdg-btm39 {
  padding-bottom: 39px;
}

.pdg-lft39 {
  padding-left: 39px;
}

.pdg-40 {
  padding: 40px;
}

.pdg-top40 {
  padding-top: 40px;
}

.pdg-rgt40 {
  padding-right: 40px;
}

.pdg-btm40 {
  padding-bottom: 40px;
}

.pdg-lft40 {
  padding-left: 40px;
}

.pdg-41 {
  padding: 41px;
}

.pdg-top41 {
  padding-top: 41px;
}

.pdg-rgt41 {
  padding-right: 41px;
}

.pdg-btm41 {
  padding-bottom: 41px;
}

.pdg-lft41 {
  padding-left: 41px;
}

.pdg-42 {
  padding: 42px;
}

.pdg-top42 {
  padding-top: 42px;
}

.pdg-rgt42 {
  padding-right: 42px;
}

.pdg-btm42 {
  padding-bottom: 42px;
}

.pdg-lft42 {
  padding-left: 42px;
}

.pdg-43 {
  padding: 43px;
}

.pdg-top43 {
  padding-top: 43px;
}

.pdg-rgt43 {
  padding-right: 43px;
}

.pdg-btm43 {
  padding-bottom: 43px;
}

.pdg-lft43 {
  padding-left: 43px;
}

.pdg-44 {
  padding: 44px;
}

.pdg-top44 {
  padding-top: 44px;
}

.pdg-rgt44 {
  padding-right: 44px;
}

.pdg-btm44 {
  padding-bottom: 44px;
}

.pdg-lft44 {
  padding-left: 44px;
}

.pdg-45 {
  padding: 45px;
}

.pdg-top45 {
  padding-top: 45px;
}

.pdg-rgt45 {
  padding-right: 45px;
}

.pdg-btm45 {
  padding-bottom: 45px;
}

.pdg-lft45 {
  padding-left: 45px;
}

.pdg-46 {
  padding: 46px;
}

.pdg-top46 {
  padding-top: 46px;
}

.pdg-rgt46 {
  padding-right: 46px;
}

.pdg-btm46 {
  padding-bottom: 46px;
}

.pdg-lft46 {
  padding-left: 46px;
}

.pdg-47 {
  padding: 47px;
}

.pdg-top47 {
  padding-top: 47px;
}

.pdg-rgt47 {
  padding-right: 47px;
}

.pdg-btm47 {
  padding-bottom: 47px;
}

.pdg-lft47 {
  padding-left: 47px;
}

.pdg-48 {
  padding: 48px;
}

.pdg-top48 {
  padding-top: 48px;
}

.pdg-rgt48 {
  padding-right: 48px;
}

.pdg-btm48 {
  padding-bottom: 48px;
}

.pdg-lft48 {
  padding-left: 48px;
}

.pdg-49 {
  padding: 49px;
}

.pdg-top49 {
  padding-top: 49px;
}

.pdg-rgt49 {
  padding-right: 49px;
}

.pdg-btm49 {
  padding-bottom: 49px;
}

.pdg-lft49 {
  padding-left: 49px;
}

.pdg-50 {
  padding: 50px;
}

.pdg-top50 {
  padding-top: 50px;
}

.pdg-rgt50 {
  padding-right: 50px;
}

.pdg-btm50 {
  padding-bottom: 50px;
}

.pdg-lft50 {
  padding-left: 50px;
}

.pdg-51 {
  padding: 51px;
}

.pdg-top51 {
  padding-top: 51px;
}

.pdg-rgt51 {
  padding-right: 51px;
}

.pdg-btm51 {
  padding-bottom: 51px;
}

.pdg-lft51 {
  padding-left: 51px;
}

.pdg-52 {
  padding: 52px;
}

.pdg-top52 {
  padding-top: 52px;
}

.pdg-rgt52 {
  padding-right: 52px;
}

.pdg-btm52 {
  padding-bottom: 52px;
}

.pdg-lft52 {
  padding-left: 52px;
}

.pdg-53 {
  padding: 53px;
}

.pdg-top53 {
  padding-top: 53px;
}

.pdg-rgt53 {
  padding-right: 53px;
}

.pdg-btm53 {
  padding-bottom: 53px;
}

.pdg-lft53 {
  padding-left: 53px;
}

.pdg-54 {
  padding: 54px;
}

.pdg-top54 {
  padding-top: 54px;
}

.pdg-rgt54 {
  padding-right: 54px;
}

.pdg-btm54 {
  padding-bottom: 54px;
}

.pdg-lft54 {
  padding-left: 54px;
}

.pdg-55 {
  padding: 55px;
}

.pdg-top55 {
  padding-top: 55px;
}

.pdg-rgt55 {
  padding-right: 55px;
}

.pdg-btm55 {
  padding-bottom: 55px;
}

.pdg-lft55 {
  padding-left: 55px;
}

.pdg-56 {
  padding: 56px;
}

.pdg-top56 {
  padding-top: 56px;
}

.pdg-rgt56 {
  padding-right: 56px;
}

.pdg-btm56 {
  padding-bottom: 56px;
}

.pdg-lft56 {
  padding-left: 56px;
}

.pdg-57 {
  padding: 57px;
}

.pdg-top57 {
  padding-top: 57px;
}

.pdg-rgt57 {
  padding-right: 57px;
}

.pdg-btm57 {
  padding-bottom: 57px;
}

.pdg-lft57 {
  padding-left: 57px;
}

.pdg-58 {
  padding: 58px;
}

.pdg-top58 {
  padding-top: 58px;
}

.pdg-rgt58 {
  padding-right: 58px;
}

.pdg-btm58 {
  padding-bottom: 58px;
}

.pdg-lft58 {
  padding-left: 58px;
}

.pdg-59 {
  padding: 59px;
}

.pdg-top59 {
  padding-top: 59px;
}

.pdg-rgt59 {
  padding-right: 59px;
}

.pdg-btm59 {
  padding-bottom: 59px;
}

.pdg-lft59 {
  padding-left: 59px;
}

.pdg-60 {
  padding: 60px;
}

.pdg-top60 {
  padding-top: 60px;
}

.pdg-rgt60 {
  padding-right: 60px;
}

.pdg-btm60 {
  padding-bottom: 60px;
}

.pdg-lft60 {
  padding-left: 60px;
}

.pdg-61 {
  padding: 61px;
}

.pdg-top61 {
  padding-top: 61px;
}

.pdg-rgt61 {
  padding-right: 61px;
}

.pdg-btm61 {
  padding-bottom: 61px;
}

.pdg-lft61 {
  padding-left: 61px;
}

.pdg-62 {
  padding: 62px;
}

.pdg-top62 {
  padding-top: 62px;
}

.pdg-rgt62 {
  padding-right: 62px;
}

.pdg-btm62 {
  padding-bottom: 62px;
}

.pdg-lft62 {
  padding-left: 62px;
}

.pdg-63 {
  padding: 63px;
}

.pdg-top63 {
  padding-top: 63px;
}

.pdg-rgt63 {
  padding-right: 63px;
}

.pdg-btm63 {
  padding-bottom: 63px;
}

.pdg-lft63 {
  padding-left: 63px;
}

.pdg-64 {
  padding: 64px;
}

.pdg-top64 {
  padding-top: 64px;
}

.pdg-rgt64 {
  padding-right: 64px;
}

.pdg-btm64 {
  padding-bottom: 64px;
}

.pdg-lft64 {
  padding-left: 64px;
}

.pdg-65 {
  padding: 65px;
}

.pdg-top65 {
  padding-top: 65px;
}

.pdg-rgt65 {
  padding-right: 65px;
}

.pdg-btm65 {
  padding-bottom: 65px;
}

.pdg-lft65 {
  padding-left: 65px;
}

.pdg-66 {
  padding: 66px;
}

.pdg-top66 {
  padding-top: 66px;
}

.pdg-rgt66 {
  padding-right: 66px;
}

.pdg-btm66 {
  padding-bottom: 66px;
}

.pdg-lft66 {
  padding-left: 66px;
}

.pdg-67 {
  padding: 67px;
}

.pdg-top67 {
  padding-top: 67px;
}

.pdg-rgt67 {
  padding-right: 67px;
}

.pdg-btm67 {
  padding-bottom: 67px;
}

.pdg-lft67 {
  padding-left: 67px;
}

.pdg-68 {
  padding: 68px;
}

.pdg-top68 {
  padding-top: 68px;
}

.pdg-rgt68 {
  padding-right: 68px;
}

.pdg-btm68 {
  padding-bottom: 68px;
}

.pdg-lft68 {
  padding-left: 68px;
}

.pdg-69 {
  padding: 69px;
}

.pdg-top69 {
  padding-top: 69px;
}

.pdg-rgt69 {
  padding-right: 69px;
}

.pdg-btm69 {
  padding-bottom: 69px;
}

.pdg-lft69 {
  padding-left: 69px;
}

.pdg-70 {
  padding: 70px;
}

.pdg-top70 {
  padding-top: 70px;
}

.pdg-rgt70 {
  padding-right: 70px;
}

.pdg-btm70 {
  padding-bottom: 70px;
}

.pdg-lft70 {
  padding-left: 70px;
}

.pdg-71 {
  padding: 71px;
}

.pdg-top71 {
  padding-top: 71px;
}

.pdg-rgt71 {
  padding-right: 71px;
}

.pdg-btm71 {
  padding-bottom: 71px;
}

.pdg-lft71 {
  padding-left: 71px;
}

.pdg-72 {
  padding: 72px;
}

.pdg-top72 {
  padding-top: 72px;
}

.pdg-rgt72 {
  padding-right: 72px;
}

.pdg-btm72 {
  padding-bottom: 72px;
}

.pdg-lft72 {
  padding-left: 72px;
}

.pdg-73 {
  padding: 73px;
}

.pdg-top73 {
  padding-top: 73px;
}

.pdg-rgt73 {
  padding-right: 73px;
}

.pdg-btm73 {
  padding-bottom: 73px;
}

.pdg-lft73 {
  padding-left: 73px;
}

.pdg-74 {
  padding: 74px;
}

.pdg-top74 {
  padding-top: 74px;
}

.pdg-rgt74 {
  padding-right: 74px;
}

.pdg-btm74 {
  padding-bottom: 74px;
}

.pdg-lft74 {
  padding-left: 74px;
}

.pdg-75 {
  padding: 75px;
}

.pdg-top75 {
  padding-top: 75px;
}

.pdg-rgt75 {
  padding-right: 75px;
}

.pdg-btm75 {
  padding-bottom: 75px;
}

.pdg-lft75 {
  padding-left: 75px;
}

.pdg-76 {
  padding: 76px;
}

.pdg-top76 {
  padding-top: 76px;
}

.pdg-rgt76 {
  padding-right: 76px;
}

.pdg-btm76 {
  padding-bottom: 76px;
}

.pdg-lft76 {
  padding-left: 76px;
}

.pdg-77 {
  padding: 77px;
}

.pdg-top77 {
  padding-top: 77px;
}

.pdg-rgt77 {
  padding-right: 77px;
}

.pdg-btm77 {
  padding-bottom: 77px;
}

.pdg-lft77 {
  padding-left: 77px;
}

.pdg-78 {
  padding: 78px;
}

.pdg-top78 {
  padding-top: 78px;
}

.pdg-rgt78 {
  padding-right: 78px;
}

.pdg-btm78 {
  padding-bottom: 78px;
}

.pdg-lft78 {
  padding-left: 78px;
}

.pdg-79 {
  padding: 79px;
}

.pdg-top79 {
  padding-top: 79px;
}

.pdg-rgt79 {
  padding-right: 79px;
}

.pdg-btm79 {
  padding-bottom: 79px;
}

.pdg-lft79 {
  padding-left: 79px;
}

.pdg-80 {
  padding: 80px;
}

.pdg-top80 {
  padding-top: 80px;
}

.pdg-rgt80 {
  padding-right: 80px;
}

.pdg-btm80 {
  padding-bottom: 80px;
}

.pdg-lft80 {
  padding-left: 80px;
}

.pdg-81 {
  padding: 81px;
}

.pdg-top81 {
  padding-top: 81px;
}

.pdg-rgt81 {
  padding-right: 81px;
}

.pdg-btm81 {
  padding-bottom: 81px;
}

.pdg-lft81 {
  padding-left: 81px;
}

.pdg-82 {
  padding: 82px;
}

.pdg-top82 {
  padding-top: 82px;
}

.pdg-rgt82 {
  padding-right: 82px;
}

.pdg-btm82 {
  padding-bottom: 82px;
}

.pdg-lft82 {
  padding-left: 82px;
}

.pdg-83 {
  padding: 83px;
}

.pdg-top83 {
  padding-top: 83px;
}

.pdg-rgt83 {
  padding-right: 83px;
}

.pdg-btm83 {
  padding-bottom: 83px;
}

.pdg-lft83 {
  padding-left: 83px;
}

.pdg-84 {
  padding: 84px;
}

.pdg-top84 {
  padding-top: 84px;
}

.pdg-rgt84 {
  padding-right: 84px;
}

.pdg-btm84 {
  padding-bottom: 84px;
}

.pdg-lft84 {
  padding-left: 84px;
}

.pdg-85 {
  padding: 85px;
}

.pdg-top85 {
  padding-top: 85px;
}

.pdg-rgt85 {
  padding-right: 85px;
}

.pdg-btm85 {
  padding-bottom: 85px;
}

.pdg-lft85 {
  padding-left: 85px;
}

.pdg-86 {
  padding: 86px;
}

.pdg-top86 {
  padding-top: 86px;
}

.pdg-rgt86 {
  padding-right: 86px;
}

.pdg-btm86 {
  padding-bottom: 86px;
}

.pdg-lft86 {
  padding-left: 86px;
}

.pdg-87 {
  padding: 87px;
}

.pdg-top87 {
  padding-top: 87px;
}

.pdg-rgt87 {
  padding-right: 87px;
}

.pdg-btm87 {
  padding-bottom: 87px;
}

.pdg-lft87 {
  padding-left: 87px;
}

.pdg-88 {
  padding: 88px;
}

.pdg-top88 {
  padding-top: 88px;
}

.pdg-rgt88 {
  padding-right: 88px;
}

.pdg-btm88 {
  padding-bottom: 88px;
}

.pdg-lft88 {
  padding-left: 88px;
}

.pdg-89 {
  padding: 89px;
}

.pdg-top89 {
  padding-top: 89px;
}

.pdg-rgt89 {
  padding-right: 89px;
}

.pdg-btm89 {
  padding-bottom: 89px;
}

.pdg-lft89 {
  padding-left: 89px;
}

.pdg-90 {
  padding: 90px;
}

.pdg-top90 {
  padding-top: 90px;
}

.pdg-rgt90 {
  padding-right: 90px;
}

.pdg-btm90 {
  padding-bottom: 90px;
}

.pdg-lft90 {
  padding-left: 90px;
}

.pdg-91 {
  padding: 91px;
}

.pdg-top91 {
  padding-top: 91px;
}

.pdg-rgt91 {
  padding-right: 91px;
}

.pdg-btm91 {
  padding-bottom: 91px;
}

.pdg-lft91 {
  padding-left: 91px;
}

.pdg-92 {
  padding: 92px;
}

.pdg-top92 {
  padding-top: 92px;
}

.pdg-rgt92 {
  padding-right: 92px;
}

.pdg-btm92 {
  padding-bottom: 92px;
}

.pdg-lft92 {
  padding-left: 92px;
}

.pdg-93 {
  padding: 93px;
}

.pdg-top93 {
  padding-top: 93px;
}

.pdg-rgt93 {
  padding-right: 93px;
}

.pdg-btm93 {
  padding-bottom: 93px;
}

.pdg-lft93 {
  padding-left: 93px;
}

.pdg-94 {
  padding: 94px;
}

.pdg-top94 {
  padding-top: 94px;
}

.pdg-rgt94 {
  padding-right: 94px;
}

.pdg-btm94 {
  padding-bottom: 94px;
}

.pdg-lft94 {
  padding-left: 94px;
}

.pdg-95 {
  padding: 95px;
}

.pdg-top95 {
  padding-top: 95px;
}

.pdg-rgt95 {
  padding-right: 95px;
}

.pdg-btm95 {
  padding-bottom: 95px;
}

.pdg-lft95 {
  padding-left: 95px;
}

.pdg-96 {
  padding: 96px;
}

.pdg-top96 {
  padding-top: 96px;
}

.pdg-rgt96 {
  padding-right: 96px;
}

.pdg-btm96 {
  padding-bottom: 96px;
}

.pdg-lft96 {
  padding-left: 96px;
}

.pdg-97 {
  padding: 97px;
}

.pdg-top97 {
  padding-top: 97px;
}

.pdg-rgt97 {
  padding-right: 97px;
}

.pdg-btm97 {
  padding-bottom: 97px;
}

.pdg-lft97 {
  padding-left: 97px;
}

.pdg-98 {
  padding: 98px;
}

.pdg-top98 {
  padding-top: 98px;
}

.pdg-rgt98 {
  padding-right: 98px;
}

.pdg-btm98 {
  padding-bottom: 98px;
}

.pdg-lft98 {
  padding-left: 98px;
}

.pdg-99 {
  padding: 99px;
}

.pdg-top99 {
  padding-top: 99px;
}

.pdg-rgt99 {
  padding-right: 99px;
}

.pdg-btm99 {
  padding-bottom: 99px;
}

.pdg-lft99 {
  padding-left: 99px;
}

.pdg-100 {
  padding: 100px;
}

.pdg-top100 {
  padding-top: 100px;
}

.pdg-rgt100 {
  padding-right: 100px;
}

.pdg-btm100 {
  padding-bottom: 100px;
}

.pdg-lft100 {
  padding-left: 100px;
}

.pdg-101 {
  padding: 101px;
}

.pdg-top101 {
  padding-top: 101px;
}

.pdg-rgt101 {
  padding-right: 101px;
}

.pdg-btm101 {
  padding-bottom: 101px;
}

.pdg-lft101 {
  padding-left: 101px;
}

.pdg-102 {
  padding: 102px;
}

.pdg-top102 {
  padding-top: 102px;
}

.pdg-rgt102 {
  padding-right: 102px;
}

.pdg-btm102 {
  padding-bottom: 102px;
}

.pdg-lft102 {
  padding-left: 102px;
}

.pdg-103 {
  padding: 103px;
}

.pdg-top103 {
  padding-top: 103px;
}

.pdg-rgt103 {
  padding-right: 103px;
}

.pdg-btm103 {
  padding-bottom: 103px;
}

.pdg-lft103 {
  padding-left: 103px;
}

.pdg-104 {
  padding: 104px;
}

.pdg-top104 {
  padding-top: 104px;
}

.pdg-rgt104 {
  padding-right: 104px;
}

.pdg-btm104 {
  padding-bottom: 104px;
}

.pdg-lft104 {
  padding-left: 104px;
}

.pdg-105 {
  padding: 105px;
}

.pdg-top105 {
  padding-top: 105px;
}

.pdg-rgt105 {
  padding-right: 105px;
}

.pdg-btm105 {
  padding-bottom: 105px;
}

.pdg-lft105 {
  padding-left: 105px;
}

.pdg-106 {
  padding: 106px;
}

.pdg-top106 {
  padding-top: 106px;
}

.pdg-rgt106 {
  padding-right: 106px;
}

.pdg-btm106 {
  padding-bottom: 106px;
}

.pdg-lft106 {
  padding-left: 106px;
}

.pdg-107 {
  padding: 107px;
}

.pdg-top107 {
  padding-top: 107px;
}

.pdg-rgt107 {
  padding-right: 107px;
}

.pdg-btm107 {
  padding-bottom: 107px;
}

.pdg-lft107 {
  padding-left: 107px;
}

.pdg-108 {
  padding: 108px;
}

.pdg-top108 {
  padding-top: 108px;
}

.pdg-rgt108 {
  padding-right: 108px;
}

.pdg-btm108 {
  padding-bottom: 108px;
}

.pdg-lft108 {
  padding-left: 108px;
}

.pdg-109 {
  padding: 109px;
}

.pdg-top109 {
  padding-top: 109px;
}

.pdg-rgt109 {
  padding-right: 109px;
}

.pdg-btm109 {
  padding-bottom: 109px;
}

.pdg-lft109 {
  padding-left: 109px;
}

.pdg-110 {
  padding: 110px;
}

.pdg-top110 {
  padding-top: 110px;
}

.pdg-rgt110 {
  padding-right: 110px;
}

.pdg-btm110 {
  padding-bottom: 110px;
}

.pdg-lft110 {
  padding-left: 110px;
}

.pdg-111 {
  padding: 111px;
}

.pdg-top111 {
  padding-top: 111px;
}

.pdg-rgt111 {
  padding-right: 111px;
}

.pdg-btm111 {
  padding-bottom: 111px;
}

.pdg-lft111 {
  padding-left: 111px;
}

.pdg-112 {
  padding: 112px;
}

.pdg-top112 {
  padding-top: 112px;
}

.pdg-rgt112 {
  padding-right: 112px;
}

.pdg-btm112 {
  padding-bottom: 112px;
}

.pdg-lft112 {
  padding-left: 112px;
}

.pdg-113 {
  padding: 113px;
}

.pdg-top113 {
  padding-top: 113px;
}

.pdg-rgt113 {
  padding-right: 113px;
}

.pdg-btm113 {
  padding-bottom: 113px;
}

.pdg-lft113 {
  padding-left: 113px;
}

.pdg-114 {
  padding: 114px;
}

.pdg-top114 {
  padding-top: 114px;
}

.pdg-rgt114 {
  padding-right: 114px;
}

.pdg-btm114 {
  padding-bottom: 114px;
}

.pdg-lft114 {
  padding-left: 114px;
}

.pdg-115 {
  padding: 115px;
}

.pdg-top115 {
  padding-top: 115px;
}

.pdg-rgt115 {
  padding-right: 115px;
}

.pdg-btm115 {
  padding-bottom: 115px;
}

.pdg-lft115 {
  padding-left: 115px;
}

.pdg-116 {
  padding: 116px;
}

.pdg-top116 {
  padding-top: 116px;
}

.pdg-rgt116 {
  padding-right: 116px;
}

.pdg-btm116 {
  padding-bottom: 116px;
}

.pdg-lft116 {
  padding-left: 116px;
}

.pdg-117 {
  padding: 117px;
}

.pdg-top117 {
  padding-top: 117px;
}

.pdg-rgt117 {
  padding-right: 117px;
}

.pdg-btm117 {
  padding-bottom: 117px;
}

.pdg-lft117 {
  padding-left: 117px;
}

.pdg-118 {
  padding: 118px;
}

.pdg-top118 {
  padding-top: 118px;
}

.pdg-rgt118 {
  padding-right: 118px;
}

.pdg-btm118 {
  padding-bottom: 118px;
}

.pdg-lft118 {
  padding-left: 118px;
}

.pdg-119 {
  padding: 119px;
}

.pdg-top119 {
  padding-top: 119px;
}

.pdg-rgt119 {
  padding-right: 119px;
}

.pdg-btm119 {
  padding-bottom: 119px;
}

.pdg-lft119 {
  padding-left: 119px;
}

.pdg-120 {
  padding: 120px;
}

.pdg-top120 {
  padding-top: 120px;
}

.pdg-rgt120 {
  padding-right: 120px;
}

.pdg-btm120 {
  padding-bottom: 120px;
}

.pdg-lft120 {
  padding-left: 120px;
}

.pdg-121 {
  padding: 121px;
}

.pdg-top121 {
  padding-top: 121px;
}

.pdg-rgt121 {
  padding-right: 121px;
}

.pdg-btm121 {
  padding-bottom: 121px;
}

.pdg-lft121 {
  padding-left: 121px;
}

.pdg-122 {
  padding: 122px;
}

.pdg-top122 {
  padding-top: 122px;
}

.pdg-rgt122 {
  padding-right: 122px;
}

.pdg-btm122 {
  padding-bottom: 122px;
}

.pdg-lft122 {
  padding-left: 122px;
}

.pdg-123 {
  padding: 123px;
}

.pdg-top123 {
  padding-top: 123px;
}

.pdg-rgt123 {
  padding-right: 123px;
}

.pdg-btm123 {
  padding-bottom: 123px;
}

.pdg-lft123 {
  padding-left: 123px;
}

.pdg-124 {
  padding: 124px;
}

.pdg-top124 {
  padding-top: 124px;
}

.pdg-rgt124 {
  padding-right: 124px;
}

.pdg-btm124 {
  padding-bottom: 124px;
}

.pdg-lft124 {
  padding-left: 124px;
}

.pdg-125 {
  padding: 125px;
}

.pdg-top125 {
  padding-top: 125px;
}

.pdg-rgt125 {
  padding-right: 125px;
}

.pdg-btm125 {
  padding-bottom: 125px;
}

.pdg-lft125 {
  padding-left: 125px;
}

.pdg-126 {
  padding: 126px;
}

.pdg-top126 {
  padding-top: 126px;
}

.pdg-rgt126 {
  padding-right: 126px;
}

.pdg-btm126 {
  padding-bottom: 126px;
}

.pdg-lft126 {
  padding-left: 126px;
}

.pdg-127 {
  padding: 127px;
}

.pdg-top127 {
  padding-top: 127px;
}

.pdg-rgt127 {
  padding-right: 127px;
}

.pdg-btm127 {
  padding-bottom: 127px;
}

.pdg-lft127 {
  padding-left: 127px;
}

.pdg-128 {
  padding: 128px;
}

.pdg-top128 {
  padding-top: 128px;
}

.pdg-rgt128 {
  padding-right: 128px;
}

.pdg-btm128 {
  padding-bottom: 128px;
}

.pdg-lft128 {
  padding-left: 128px;
}

.pdg-129 {
  padding: 129px;
}

.pdg-top129 {
  padding-top: 129px;
}

.pdg-rgt129 {
  padding-right: 129px;
}

.pdg-btm129 {
  padding-bottom: 129px;
}

.pdg-lft129 {
  padding-left: 129px;
}

.pdg-130 {
  padding: 130px;
}

.pdg-top130 {
  padding-top: 130px;
}

.pdg-rgt130 {
  padding-right: 130px;
}

.pdg-btm130 {
  padding-bottom: 130px;
}

.pdg-lft130 {
  padding-left: 130px;
}

.pdg-131 {
  padding: 131px;
}

.pdg-top131 {
  padding-top: 131px;
}

.pdg-rgt131 {
  padding-right: 131px;
}

.pdg-btm131 {
  padding-bottom: 131px;
}

.pdg-lft131 {
  padding-left: 131px;
}

.pdg-132 {
  padding: 132px;
}

.pdg-top132 {
  padding-top: 132px;
}

.pdg-rgt132 {
  padding-right: 132px;
}

.pdg-btm132 {
  padding-bottom: 132px;
}

.pdg-lft132 {
  padding-left: 132px;
}

.pdg-133 {
  padding: 133px;
}

.pdg-top133 {
  padding-top: 133px;
}

.pdg-rgt133 {
  padding-right: 133px;
}

.pdg-btm133 {
  padding-bottom: 133px;
}

.pdg-lft133 {
  padding-left: 133px;
}

.pdg-134 {
  padding: 134px;
}

.pdg-top134 {
  padding-top: 134px;
}

.pdg-rgt134 {
  padding-right: 134px;
}

.pdg-btm134 {
  padding-bottom: 134px;
}

.pdg-lft134 {
  padding-left: 134px;
}

.pdg-135 {
  padding: 135px;
}

.pdg-top135 {
  padding-top: 135px;
}

.pdg-rgt135 {
  padding-right: 135px;
}

.pdg-btm135 {
  padding-bottom: 135px;
}

.pdg-lft135 {
  padding-left: 135px;
}

.pdg-136 {
  padding: 136px;
}

.pdg-top136 {
  padding-top: 136px;
}

.pdg-rgt136 {
  padding-right: 136px;
}

.pdg-btm136 {
  padding-bottom: 136px;
}

.pdg-lft136 {
  padding-left: 136px;
}

.pdg-137 {
  padding: 137px;
}

.pdg-top137 {
  padding-top: 137px;
}

.pdg-rgt137 {
  padding-right: 137px;
}

.pdg-btm137 {
  padding-bottom: 137px;
}

.pdg-lft137 {
  padding-left: 137px;
}

.pdg-138 {
  padding: 138px;
}

.pdg-top138 {
  padding-top: 138px;
}

.pdg-rgt138 {
  padding-right: 138px;
}

.pdg-btm138 {
  padding-bottom: 138px;
}

.pdg-lft138 {
  padding-left: 138px;
}

.pdg-139 {
  padding: 139px;
}

.pdg-top139 {
  padding-top: 139px;
}

.pdg-rgt139 {
  padding-right: 139px;
}

.pdg-btm139 {
  padding-bottom: 139px;
}

.pdg-lft139 {
  padding-left: 139px;
}

.pdg-140 {
  padding: 140px;
}

.pdg-top140 {
  padding-top: 140px;
}

.pdg-rgt140 {
  padding-right: 140px;
}

.pdg-btm140 {
  padding-bottom: 140px;
}

.pdg-lft140 {
  padding-left: 140px;
}

.pdg-141 {
  padding: 141px;
}

.pdg-top141 {
  padding-top: 141px;
}

.pdg-rgt141 {
  padding-right: 141px;
}

.pdg-btm141 {
  padding-bottom: 141px;
}

.pdg-lft141 {
  padding-left: 141px;
}

.pdg-142 {
  padding: 142px;
}

.pdg-top142 {
  padding-top: 142px;
}

.pdg-rgt142 {
  padding-right: 142px;
}

.pdg-btm142 {
  padding-bottom: 142px;
}

.pdg-lft142 {
  padding-left: 142px;
}

.pdg-143 {
  padding: 143px;
}

.pdg-top143 {
  padding-top: 143px;
}

.pdg-rgt143 {
  padding-right: 143px;
}

.pdg-btm143 {
  padding-bottom: 143px;
}

.pdg-lft143 {
  padding-left: 143px;
}

.pdg-144 {
  padding: 144px;
}

.pdg-top144 {
  padding-top: 144px;
}

.pdg-rgt144 {
  padding-right: 144px;
}

.pdg-btm144 {
  padding-bottom: 144px;
}

.pdg-lft144 {
  padding-left: 144px;
}

.pdg-145 {
  padding: 145px;
}

.pdg-top145 {
  padding-top: 145px;
}

.pdg-rgt145 {
  padding-right: 145px;
}

.pdg-btm145 {
  padding-bottom: 145px;
}

.pdg-lft145 {
  padding-left: 145px;
}

.pdg-146 {
  padding: 146px;
}

.pdg-top146 {
  padding-top: 146px;
}

.pdg-rgt146 {
  padding-right: 146px;
}

.pdg-btm146 {
  padding-bottom: 146px;
}

.pdg-lft146 {
  padding-left: 146px;
}

.pdg-147 {
  padding: 147px;
}

.pdg-top147 {
  padding-top: 147px;
}

.pdg-rgt147 {
  padding-right: 147px;
}

.pdg-btm147 {
  padding-bottom: 147px;
}

.pdg-lft147 {
  padding-left: 147px;
}

.pdg-148 {
  padding: 148px;
}

.pdg-top148 {
  padding-top: 148px;
}

.pdg-rgt148 {
  padding-right: 148px;
}

.pdg-btm148 {
  padding-bottom: 148px;
}

.pdg-lft148 {
  padding-left: 148px;
}

.pdg-149 {
  padding: 149px;
}

.pdg-top149 {
  padding-top: 149px;
}

.pdg-rgt149 {
  padding-right: 149px;
}

.pdg-btm149 {
  padding-bottom: 149px;
}

.pdg-lft149 {
  padding-left: 149px;
}

.pdg-150 {
  padding: 150px;
}

.pdg-top150 {
  padding-top: 150px;
}

.pdg-rgt150 {
  padding-right: 150px;
}

.pdg-btm150 {
  padding-bottom: 150px;
}

.pdg-lft150 {
  padding-left: 150px;
}

/* --- position --- */
.pos_rel {
  position: relative;
}

.pos_ab {
  position: absolute;
}

/* --- float --- */
.flt-rgt {
  float: right;
}

.flt-lft {
  float: left;
}

.breadcrumbs_wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 47.9375em) {
  .breadcrumbs_wrap .breadcrumbs {
    order: 2;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  padding: 0.25rem 0;
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  letter-spacing: 0.1em;
  color: var(--clr-main, #1d7fb7);
  background-color: #d3dce3;
  white-space: nowrap;
}
@media screen and (max-width: 47.9375em) {
  .breadcrumbs {
    font-size: 0.9285714286rem;
  }
}
.breadcrumbs > .inner {
  overflow: auto;
}
@media print, screen and (min-width: 48em) {
  .breadcrumbs > .inner::-webkit-scrollbar {
    width: 6px;
  }
  .breadcrumbs > .inner::-webkit-scrollbar:horizontal {
    height: 6px;
  }
  .breadcrumbs > .inner::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 6px;
    border: none;
  }
  .breadcrumbs > .inner::-webkit-scrollbar-thumb {
    background-color: rgba(83, 83, 83, 0.1);
    border-radius: 6px;
    box-shadow: none;
  }
}
@media screen and (max-width: 67.5em) {
  .breadcrumbs > .inner {
    width: 92.270531401%;
  }
}

.breadcrumbs a {
  color: var(--clr-main, #1d7fb7);
  text-decoration: underline;
  display: inline-block;
}
.breadcrumbs a:hover {
  text-decoration: none;
}

/* btn
********************************************** */
*:not(.flex) > .btn:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (max-width: 47.9375em) {
  .flex > .btn:not(:last-child) {
    margin-bottom: 8px !important;
  }
}

.btn > * {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1rem;
  padding: 9.5px 30px;
  border-radius: 10px;
  width: fit-content;
  min-width: min(280px, 100%);
  color: var(--btn-clr-main, #fff);
  background-color: var(--btn-bg-main, #1D7FB7);
  font-family: var(--font-jp2, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  letter-spacing: normal;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
@media screen and (max-width: 47.9375em) {
  .btn > * {
    font-size: 1.1428571429rem;
    text-align: center;
    min-width: 100%;
  }
}
.btn > *:hover {
  background-color: var(--btn-bg-main-hvr, #015691);
}
.btn > *:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.9375rem;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  color: #a7b9c7;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .btn > *:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
    width: 0.5714285714rem;
    height: 0.5714285714rem;
    right: 1.6428571429rem;
  }
}
.btn > *[href^="#"]::before {
  top: -0.25rem !important;
  border-top: 0 !important;
  border-bottom: 2px solid;
  border-right: 2px solid;
}
.btn > *[type=submit] {
  border: 0;
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
}

.flex > .btn > * {
  min-width: 100%;
}

.btn.btn-ctr > * {
  margin-left: auto;
  margin-right: auto;
}

.btn svg {
  fill: var(--btn-clr-main, #fff);
}

.btn.btn-next_page > * {
  max-width: 100%;
}

/* --- btn-wh --- */
.btn-wh > * {
  color: var(--btn-clr-wht, #333);
  background-color: var(--btn-bg-wht, #fff);
}
.btn-wh > *:hover {
  color: var(--btn-clr-wht-hvr, #fff);
  background-color: var(--btn-bg-wht-hvr, #ccc);
}
.btn-wh > *:hover::before {
  border-color: var(--btn-clr-wht-hvr, #fff) !important;
}
.btn-wh > *:hover svg {
  fill: var(--btn-clr-wht-hvr, #fff);
}

.btn-wh.btn-bd > * {
  border-radius: 0.3125rem;
  border: 2px solid;
  box-shadow: 0 3px 0 var(--clr-sub, #ccc);
}
.btn-wh.btn-bd > *:hover {
  color: var(--btn-clr-wht, #333);
  background-color: #d5dee6;
}
.btn-wh.btn-bd > *:hover svg {
  fill: var(--btn-clr-wht, #333);
}

.btn-wh.btn-line > * {
  border: 2px solid;
}
.btn-wh.btn-line > *:hover {
  color: var(--btn-clr-wht, #333);
  background-color: #d5dee6;
}
.btn-wh.btn-line > *:hover svg {
  fill: var(--btn-clr-wht, #333);
}

.btn-wh svg {
  fill: var(--btn-clr-wht, #333);
}

.flex > .btn-wh.btn-bd > *, .flex > .btn-wh.btn-line > * {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}

/* --- btn-sub --- */
.btn-sub > * {
  background-color: var(--bg-sub, #ccc);
}
.btn-sub > *::before {
  color: var(--clr-wht, #fff) !important;
}

/* --- btn-cta --- */
.btn-cta > * {
  color: var(--btn-clr-cta, #333);
  background-color: var(--btn-bg-cta, #fff);
  text-align: center;
  border: 0 !important;
}
.btn-cta > *:hover {
  background-color: var(--btn-bg-cta-hvr, #ccc);
}
.btn-cta > *:hover svg {
  fill: var(--btn-clr-cta, #333);
}
.btn-cta > *:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
  color: var(--btn-clr-cta, #333);
}

.btn-cta svg {
  fill: var(--btn-clr-cta, #333);
}

/* --- btn-list --- */
.btn-list > * {
  position: relative;
  display: block;
  font-size: 0.9375rem;
  padding: 0.375rem 2rem 0.375rem 1rem;
  color: var(--clr-main, #1D7FB7);
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: normal;
}
.btn-list > *::before, .btn-list > *::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5625rem;
  margin: auto;
  transition: var(--transit-default, all 0.4s ease-out);
}
.btn-list > *::before {
  width: 0.875rem;
  height: 0.125rem;
  border-bottom: 2px solid;
}
.btn-list > *::after {
  width: 0.625rem;
  height: 0.625rem;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
.btn-list > *:not(span):hover::before, .btn-list > *:not(span):hover::after {
  right: 0.0625rem;
}

.btn-list.btn-bd > *, .btn-list.btn-ctr > * {
  width: fit-content;
  min-width: min(200px, 100%);
}
.btn-list.btn-bd > * {
  border-bottom: 3px solid;
  font-size: 1rem;
  padding: 0.375rem 2rem 0.375rem 0.5rem;
}
.btn-list.btn-ctr > * {
  margin-left: auto;
  margin-right: auto;
}
.btn-list.btn-more > * {
  border: 2px solid;
  border-radius: 0.1875rem;
  padding: 0.1875rem 2.5rem 0.1875rem 1.625rem;
}
.btn-list.btn-more.txt-wh > *::before, .btn-list.btn-more.txt-wh > *::after {
  right: 1.625rem;
  border-color: #a7b9c7;
}
.btn-list.btn-more.txt-wh > *:hover::before, .btn-list.btn-more.txt-wh > *:hover::after {
  right: 1.125rem;
}
.btn-list.btn-rgt > * {
  margin-left: auto;
  display: table;
}
@media screen and (max-width: 47.9375em) {
  .btn-list.btn-rgt:not(.btn-rgt-sp) > * {
    margin-right: auto;
  }
}
.btn-list.txt-wh > * {
  color: var(--clr-wht, #fff);
}
.btn-list.font-jp > * {
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  padding: 0.125rem 2.875rem 0.125rem 0.75rem;
}

.mce-content-body + .btn-list,
.posts + .btn-list {
  margin-top: 16px;
}

a.flex:hover .btn-list > *::before, a.flex:hover .btn-list > *::after {
  right: 0.0625rem;
}

/* --- btn-open --- */
.btn-open {
  display: none;
}

.btn-open > * {
  cursor: pointer;
  height: 2.9375rem;
}
.btn-open > *::before, .btn-open > *::after {
  display: none;
}
.btn-open > * * {
  transition: var(--transit-default, all 0.4s ease-out);
}
.btn-open > * .open_btn,
.btn-open > * .close_btn {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0.375rem 2rem 0.375rem 0.5rem;
}
.btn-open > * .close_btn {
  opacity: 0;
}
.btn-open > * .toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  margin: auto;
  width: 0.875rem;
  height: 0.875rem;
}
.btn-open > * .toggle::before, .btn-open > * .toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid;
  transition: var(--transit-default, all 0.4s ease-out);
}
.btn-open > * .toggle::after {
  transform: rotate(90deg);
}

.btn-open.active > * .toggle {
  transform: rotate(180deg);
}
.btn-open.active > * .toggle::after {
  opacity: 0;
}
.btn-open.active > * .open_btn {
  opacity: 0;
}
.btn-open.active > * .close_btn {
  opacity: 1;
}

/* --- btn-reset --- */
.btn-reset input {
  color: var(--clr-sub, #ccc);
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid;
  padding: 0 1.5em;
  border-radius: 0;
  min-width: fit-content;
}
.btn-reset input:hover {
  color: var(--clr-main, #1D7FB7);
  background-color: transparent;
}
.btn-reset input:focus {
  outline: none;
}

/* --- btn-search --- */
.btn-search button::before {
  display: none;
}

.btn-search img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.9375rem;
  margin: auto;
  filter: brightness(0) invert(1);
}

/* --- btn-snav --- */
.btn-snav a {
  background-repeat: no-repeat;
  padding: 12px 24px;
}
.btn-snav a::before {
  color: var(--clr-wht, #fff) !important;
}

.btn-important a {
  background-image: url(../../../../images/wp/new/common/point-btn-img.png);
  background-position: left -10px top -5px;
  background-color: var(--bg-sub, #ccc);
  background-size: 83px;
  padding-left: 75px;
  padding-right: 40px;
}

.btn-favorite a {
  background-image: url(../../../../images/wp/new/common/bkm-btn-img.png);
  background-position: left 12px bottom 11px;
  background-size: 29px;
  padding-left: 58px;
  padding-right: 40px;
}

/* --- btn-file --- */
.btn-file > * {
  font-size: 1.125rem;
  padding: 0.75rem 2.5rem;
}
@media print, screen and (min-width: 48em) {
  .btn-file > * {
    min-width: min(300px, 100%);
  }
}
.btn-file > *::before {
  display: none;
}

.btn-file .icon {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  white-space: nowrap;
  line-height: 1.4;
  filter: brightness(0) invert(1);
}
.btn-file .icon img {
  width: 1.125rem;
}
.btn-file .icon span {
  display: block;
  margin-bottom: -1em;
  font-size: 0.5rem !important;
}

.btn.btn-hgt > * {
  padding: 28px 30px;
}

.btn-dash a {
  color: var(--clr-main);
  font-family: var(--font-jp2);
  border-bottom: dashed 2px var(--clr-main);
  padding: 10px;
}
.btn-dash a:hover {
  opacity: 0.7;
}

/* --- btn-sales --- */
.btn-sales a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 5rem;
  background-color: var(--btn-bg-cta);
  color: var(--clr-main);
}
.btn-sales a:hover {
  background-color: var(--btn-bg-cta-hvr, #ccc);
}
.btn-sales a::before {
  content: "";
  position: static;
  width: 1.25rem;
  aspect-ratio: 1/1;
  background-image: url(/wp/wp-content/themes/standard_sass/images/wp/new/common/icn-cart.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 47.9375em) {
  .btn-sales-sp {
    margin-top: 1.7142857143rem;
  }
}
/* ##############################################################################

  FORMY

############################################################################## */
.bg-off_wh #formy_form,
.lps_sec.section_pdg:nth-child(2n) #formy_form {
  background-color: var(--bg-wht, #fff);
  padding: 40px;
  border-radius: 1.875rem;
}
@media screen and (max-width: 47.9375em) {
  .bg-off_wh #formy_form,
  .lps_sec.section_pdg:nth-child(2n) #formy_form {
    padding: 24px;
  }
}

#formy_form table {
  width: 100%;
}

#formy_form th,
#formy_form td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: var(--clr-body, #333);
  background-color: transparent;
}
@media screen and (max-width: 47.9375em) {
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}
@media print, screen and (min-width: 48em) {
  #formy_form th {
    width: 34%;
  }
}
@media screen and (max-width: 47.9375em) {
  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }
}

#formy_form table input[type=text],
#formy_form table input[type=email],
#formy_form table input[type=tel],
#formy_form table input[type=date],
#formy_form table input[type=password],
#formy_form table textarea {
  width: 100%;
  border-radius: 0.1875rem;
  vertical-align: bottom;
}

#formy_form table input[type=text],
#formy_form table input[type=email],
#formy_form table input[type=tel],
#formy_form table input[type=date],
#formy_form table input[type=password],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 0.3125rem 0.9375rem;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 1rem;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
}

#formy_form textarea {
  height: 6.25rem;
}

#formy_form select {
  height: 2.5rem;
}

#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#formy_form ul li {
  margin: 0;
  padding: 0;
}
#formy_form ul li::before {
  display: none;
}

#formy_form input:hover {
  opacity: 0.7;
}

#formy_form textarea:hover {
  opacity: 0.7;
}

#formy_form input:focus {
  outline: none;
}

#formy_form .parsley-validated {
  background-color: #eee;
}

#formy_form .parsley-error {
  background-color: #fee;
}

#formy_form .parsley-success {
  background-color: #fff;
}

.help_text {
  font-size: 0.875rem;
  color: #999;
}

.hidden_help {
  display: none;
}

.formy_privacy div {
  overflow-y: scroll;
  height: 8.75rem;
  border: solid 1px #ccc;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.requiredIcon {
  background-color: #f55;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 0.75rem;
  padding: 0.125rem 0.3125rem;
  border-radius: 0.1875rem;
  float: right;
}

#formy_btn {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding-top: 2rem;
  text-align: center;
}

#formy_btn input {
  font-size: inherit;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 0.1875rem;
  padding: 1rem 2rem;
  -webkit-appearance: none;
  appearance: none;
}
#formy_btn input:not(:first-child) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  #formy_btn input {
    width: 100%;
    background-size: contain;
    background-position: center;
  }
}

#formy_form ul li input[type=radio],
#formy_form ul li input[type=checkbox] {
  display: none !important;
}

#formy_form ul li label {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  line-height: 1.6;
  cursor: pointer;
}
#formy_form ul li label:hover {
  opacity: 0.7;
}
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid #788b93;
  left: 1rem;
  top: 0.75rem;
}

#formy_form ul li input[type=radio] + label::before {
  border-radius: 0.625rem;
}

#formy_form ul li input[type=radio]:checked + label,
#formy_form ul li input[type=checkbox]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}

#formy_form ul li input[type=radio]:checked + label::before,
#formy_form ul li input[type=checkbox]:checked + label::before {
  border-color: #e75f5f;
}

#formy_form ul li input[type=radio]:checked + label::after,
#formy_form ul li input[type=checkbox]:checked + label::after {
  content: "";
  width: 0.625rem;
  height: 1.125rem;
  top: 0.25rem;
  left: 1.25rem;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  transform: rotate(45deg);
}

.formy_confirm {
  background-color: #4dbaff;
}

.formy_submit_disabled {
  background-color: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

#formy_btn input.autoConfirmBack {
  position: relative;
  background-color: transparent;
  color: #555;
  padding: 0.5rem 1.6875rem;
  min-width: auto;
  font-size: 0.9375rem;
  border: 1px solid #aaa;
  border-radius: 2rem;
}

.formy_send {
  background-color: #ff6600;
}

#total_required {
  padding: 1rem;
  color: #f55555;
  text-align: center;
}

@media print, screen and (min-width: 48em) {
  #formy_form .confirm-message {
    text-align: center;
  }
}
@media screen and (max-width: 47.9375em) {
  #formy_form td {
    padding-top: 0;
  }
  .autoConfirmBack {
    margin-bottom: 0.5714285714rem;
  }
}
/* ##############################################################################

  MW WP Form

############################################################################## */
.mw_wp_form:not(:first-child) {
  margin-top: 2em;
}
.mw_wp_form:not(:last-child) {
  margin-bottom: 2em;
}
.mw_wp_form #formy_btn {
  padding-top: 0;
}
.mw_wp_form #formy_btn input {
  background-color: #ff6600;
}
.mw_wp_form #formy_btn input.formy_confirm {
  background-color: #4dbaff;
}
.mw_wp_form #formy_btn input:disabled:hover {
  opacity: 1;
}
.mw_wp_form #formy_btn input:disabled {
  cursor: default;
  background-color: #ccc;
}

.formy_confirm,
.wpcf7-confirm {
  background-color: #4dbaff;
}

.formy_submit_disabled {
  background-color: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

.autoConfirmBack,
.wpcf7-back {
  background-color: #aaa;
}

.formy_send,
.wpcf7-submit {
  background-color: #4dbaff;
}

#total_required {
  padding: 16px;
  color: #f55555;
  text-align: center;
}

span.wpcf7-not-valid-tip {
  display: inline;
}

.wpcf7c-conf {
  background-color: transparent;
  border: 0 !important;
}

.wpcf7c-conf[type=checkbox]:checked + input[type=hidden] + label,
.wpcf7c-conf[type=radio]:checked + input[type=hidden] + label {
  padding-left: 15px !important;
  color: #333 !important;
}

.wpcf7c-conf[type=checkbox]:checked + input[type=hidden] + label::before,
.wpcf7c-conf[type=checkbox]:checked + input[type=hidden] + label::after,
.wpcf7c-conf[type=checkbox] + label,
.wpcf7c-conf[type=radio]:checked + input[type=hidden] + label::before,
.wpcf7c-conf[type=radio]:checked + input[type=hidden] + label::after,
.wpcf7c-conf[type=radio] + label {
  display: none !important;
}

.wpcf7-spinner {
  display: block;
  margin: 16px auto;
}

@media print, screen and (min-width: 768px) {
  #formy_btn .wpcf7-form-control:not(:last-child) {
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .autoConfirmBack,
  #formy_btn .wpcf7-form-control:not(:last-child) {
    margin-bottom: 8px;
  }
}
.page-campaign2026 #formy_form textarea {
  height: 8.75rem;
}

/* リキャプチャ・キャプション
**************************************** */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha_policy {
  padding: 0;
  margin-top: 2rem;
  color: #333;
  font-size: 0.625rem; /* 10px */
  text-align: center;
  letter-spacing: 0;
}

.recaptcha_policy a {
  color: #69abdb;
  font-size: 0.75rem; /* 12px */
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .recaptcha_policy {
    text-align: left;
  }
}
.campaign_form {
  background-color: var(--bg-wht);
  border-radius: 1.875rem;
  padding: 40px;
}
@media screen and (max-width: 47.9375em) {
  .campaign_form {
    padding: 24px 0;
  }
}
.campaign_form tr {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 47.9375em) {
  .campaign_form tr {
    width: 90%;
    margin-inline: auto;
  }
}
.campaign_form th {
  padding-bottom: 0 !important;
  border-bottom: unset !important;
}
@media print, screen and (min-width: 48em) {
  .campaign_form th {
    width: 100% !important;
  }
}
.campaign_form td:not(:last-child) {
  border-bottom: unset !important;
}
.campaign_form .form-box {
  display: inline-block;
  width: 100%;
  padding: 24px;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* --- anchor --- */
.anchor {
  position: absolute;
  top: -80px; /* 固定ヘッダーの高さ */
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 67.5em) {
  .anchor .anchor {
    top: -64px; /* 固定ヘッダーの高さ */
  }
}

/* contact
********************************************** */
.contact .cta_tel {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact .cta_tel a {
  padding: 24px 40px;
}
@media screen and (max-width: 47.9375em) {
  .contact .cta_tel a {
    display: block;
    padding: 16px;
  }
}

/* flex
**************************************** */
/* --- ブロック要素 --- */
.flex {
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  justify-content: flex-start;
}

.flex-j-end {
  justify-content: flex-end;
}

.flex-j-ctr {
  justify-content: center;
}

.flex-j-between {
  justify-content: space-between;
}

.flex-j-around {
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  align-items: flex-start;
}

.flex-a-end {
  align-items: flex-end;
}

.flex-a-ctr {
  align-items: center;
}

.flex-a-baseline {
  align-items: baseline;
}

.flex-a-stretch {
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  flex-wrap: nowrap;
}

.flex-c-wrap {
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  flex-wrap: wrap-reverse;
}

.flex-c-start {
  align-content: flex-start;
}

.flex-c-start {
  align-content: flex-start;
}

.flex-c-end {
  align-content: flex-end;
}

.flex-c-ctr {
  align-content: center;
}

.flex-c-baseline {
  align-content: baseline;
}

.flex-c-stretch {
  align-content: stretch;
}

@media screen and (max-width: 47.9375em) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    flex-direction: column;
  }
}
.flex-col2,
.flex-col3,
.flex-col4,
.flex-col5 {
  flex-wrap: wrap;
}

.flex-col1 > * {
  width: 100%;
}

.flex-col2 > * {
  width: 50%;
}

.flex-col3 > * {
  width: 33.3333333333%;
}

.flex-col4 > * {
  width: 25%;
}

.flex-col5 > * {
  width: 20%;
}

.flex-col2.gap {
  gap: 4%;
}

.flex-col3.gap {
  gap: 3%;
}

.flex-col4.gap {
  gap: 2%;
}

.flex-col5.gap {
  gap: 1%;
}

.flex-col2.gap > * {
  width: 48%;
  margin-bottom: 4%;
}

.flex-col3.gap > * {
  width: 31.33%;
  margin-bottom: 3%;
}

.flex-col4.gap > * {
  width: 23.5%;
  margin-bottom: 2%;
}

.flex-col5.gap > * {
  width: 19.2%;
  margin-bottom: 1%;
}

@media screen and (min-width: 48em) {
  .flex-col2.gap-wide {
    gap: 6%;
  }
  .flex-col3.gap-wide {
    gap: 5%;
  }
  .flex-col4.gap-wide {
    gap: 4%;
  }
  .flex-col5.gap-wide {
    gap: 3%;
  }
  .flex-col2.gap-wide > * {
    width: 47%;
    margin-bottom: 6%;
  }
  .flex-col3.gap-wide > * {
    width: 30%;
    margin-bottom: 5%;
  }
  .flex-col4.gap-wide > * {
    width: 22%;
    margin-bottom: 4%;
  }
  .flex-col5.gap-wide > * {
    width: 17.6%;
    margin-bottom: 3%;
  }
  .flex-col2.column-gap > *,
  .flex-col3.column-gap > *,
  .flex-col4.column-gap > *,
  .flex-col5.column-gap > * {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > *,
  .flex-col5.flex-sp-block > * {
    width: 100%;
  }
  .flex-col2.gap.flex-sp-block > *,
  .flex-col3.gap.flex-sp-block > *,
  .flex-col4.gap.flex-sp-block > *,
  .flex-col5.gap.flex-sp-block > * {
    margin-bottom: 24px;
  }
  .flex-col2.gap.flex-sp-block > *:last-child,
  .flex-col3.gap.flex-sp-block > *:last-child,
  .flex-col4.gap.flex-sp-block > *:last-child,
  .flex-col5.gap.flex-sp-block > *:last-child {
    margin-bottom: 0;
  }
  .flex-sp-col3 > * {
    width: 33.3333333333%;
  }
  .flex-sp-col2 > * {
    width: 50%;
  }
  .flex-col4.gap.flex-sp-col3 > * {
    width: 32%;
  }
  .flex-col4.gap.flex-sp-col2 > * {
    width: 49%;
  }
  .flex-col5.gap.flex-sp-col3 > * {
    width: 32%;
  }
  .flex-col5.gap.flex-sp-col2 > * {
    width: 49%;
  }
  .flex-col3.gap.flex-sp-col2 > * {
    width: 48.5%;
  }
}
/* ##############################################################################

    FOOTER

############################################################################## */
/* privacy_modal
********************************************** */
.privacy_modal {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 32px 32px 24px;
  z-index: 9990;
  line-height: 1.8;
  box-shadow: 0 0 0.5rem rgba(33, 80, 116, 0.1);
  transition: var(--transit-default, all 0.4s ease-out);
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 47.9375em) {
  .privacy_modal {
    padding: 20px 24px;
    font-size: 0.7857142857rem;
  }
}
.privacy_modal.active {
  opacity: 1;
  pointer-events: auto;
}
.privacy_modal .ok,
.privacy_modal .close {
  cursor: pointer;
}
.privacy_modal .ok {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25em 1em;
  color: var(--clr-wht, #fff);
  background-color: var(--bg-sub, #ccc);
  transition: var(--transit-default, all 0.4s ease-out);
  border-radius: 0.1875rem;
}
.privacy_modal .ok:hover {
  opacity: 0.7;
}
.privacy_modal .close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 1.375rem;
  height: 1.0625rem;
  cursor: pointer;
}
.privacy_modal .close::before, .privacy_modal .close::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  border-radius: 9999px;
  background-color: var(--bg-sub, #ccc);
}
.privacy_modal .close::before {
  transform: rotate(45deg);
}
.privacy_modal .close::after {
  transform: rotate(-45deg);
}

/* footer_cta
********************************************** */
.footer_cta.section_pdg {
  padding-bottom: 0;
}
@media screen and (max-width: 47.9375em) {
  .footer_cta.section_pdg {
    padding-top: 2.8571428571rem !important;
  }
}

@media print, screen and (min-width: 48em) {
  .footer_cta .inner {
    max-width: 78.625rem;
  }
}

.footer_cta--ttl {
  line-height: 1.44;
}
@media screen and (max-width: 47.9375em) {
  .footer_cta--ttl {
    font-size: 1.5714285714rem;
  }
}

.footer_cta--txt {
  line-height: 1.88;
  letter-spacing: normal;
}

@media screen and (max-width: 47.9375em) {
  .footer_cta--txtarea {
    margin-bottom: 24px;
  }
}

.footer_cta--imgarea {
  width: 100%;
  transition: var(--transit-default);
}
@media (hover: hover) {
  .footer_cta--imgarea:hover {
    opacity: 0.7;
  }
}
.footer_cta--imgarea a,
.footer_cta--imgarea img {
  width: 100%;
}

.footer_cta--btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  width: 100%;
  border-radius: 9999px;
  padding: 1.6em 4.7em;
  text-align: center;
}
@media print, screen and (min-width: 48em) {
  .footer_cta--btn a {
    text-indent: 2em;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_cta--btn a {
    font-size: 1.2142857143rem;
    padding: 1em 2.8235294118em;
  }
}
.footer_cta--btn a:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
  right: 2.75em;
  border-width: 3px;
  width: 0.875rem;
  height: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  .footer_cta--btn a:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
    right: 0.9411764706em;
  }
}
.footer_cta--btn a:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8em;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 0.1875rem;
  border-bottom: 3px solid;
}
@media screen and (max-width: 47.9375em) {
  .footer_cta--btn a:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::after {
    right: 1em;
    width: 1.7142857143rem;
    height: 0.2142857143rem;
  }
}
.footer_cta--btn a img {
  bottom: 0;
  left: 5.1923076923%;
}

/* footer_top
********************************************** */
.page-seyama-jirushi-lp .footer_top .inner,
.page-seyama-jirushi-lp .footer_top .footer--logo a {
  display: block;
  text-align: center;
}

@media print, screen and (min-width: 48em) {
  .footer_top > .inner {
    max-width: 1366px;
    display: grid;
    grid-template-columns: 32.9428989751% 60.4685212299%;
    column-gap: 6.588579795%;
  }
}

.footer--logo:not(:last-child) {
  margin-bottom: 1.5rem;
}

.footer--logo a {
  display: inline-block;
}
@media screen and (max-width: 47.9375em) {
  .footer--logo a {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer--logo img {
  filter: brightness(0) invert(1);
  width: 284px;
}

@media screen and (max-width: 47.9375em) {
  .footer--info {
    margin-bottom: 24px;
  }
}

.footer--info p {
  line-height: 1.63;
  letter-spacing: normal;
}
.footer--info p:not(:last-child):not([class*=mgn-btm]) {
  margin-bottom: 0.5em;
}

.footer--info .btn:not(:last-child) {
  margin-top: 1.5rem;
}

.footer .snav--menu ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 92.5em) {
  .footer .snav--menu ul {
    grid-template-columns: 1fr;
  }
}
.footer .snav--ttl,
.footer .snav--menu a {
  color: var(--clr-wht, #fff);
}
.footer .snav--sub {
  display: none;
}
.footer .btn-favorite a {
  padding: calc(0.75rem - 2px) 40px calc(0.75rem - 2px) 58px;
  border: 2px solid;
}
.footer .search_cat-menu--list > li {
  background-color: #d5dee6;
}
.footer .search_cat--list {
  display: none;
}

/* ---sns_area --- */
.sns--list li:not(:last-child) {
  margin-right: 0.5rem;
}

.sns--list a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
}
.sns--list a:hover {
  opacity: 0.7;
}

.sns--list svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--clr-wht, #fff);
}

.sns--txt {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-bottom: 1px dashed var(--clr-sub, #ccc);
}

.footer .sns--txt {
  display: none;
}

/* ---fnav --- */
@media print, screen and (min-width: 48em) {
  .fnav {
    margin-left: auto;
  }
}

.fnav--menu {
  line-height: 1.88;
  letter-spacing: normal;
}
@media print, screen and (min-width: 48em) {
  .fnav--menu {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3.75%;
  }
  .fnav--menu:not(.footer_cat--list) {
    width: 640px;
    margin-bottom: -7.5%;
  }
}

@media print, screen and (min-width: 48em) {
  .fnav--menu > li {
    width: 48.125%;
    margin-bottom: 7.5%;
  }
}
@media screen and (max-width: 47.9375em) {
  .fnav--menu > li:not(:last-child) {
    margin-bottom: 16px;
  }
}
.fnav--menu > li > a {
  padding-left: 1.25rem;
}
.fnav--menu > li > a::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--bg-wht, #fff);
  border-radius: 50%;
}

.fnav--menu a {
  position: relative;
  display: block;
  padding: 0 1em;
}
.fnav--menu a:not([href="javascript:void(0);"]):hover {
  opacity: 0.7;
}

.fnav--menu .sub-menu {
  padding-left: 2em;
  margin-top: 0.75em;
}

.fnav--menu .sub-menu a {
  position: relative;
  padding-left: 1.375rem;
}
.fnav--menu .sub-menu a::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0.625rem;
  width: 0.3125rem;
  height: 2px;
  border-bottom: 2px solid;
}

@media screen and (max-width: 47.9375em) {
  .footer_top--ttl {
    font-size: 1.4285714286rem;
  }
  .footer_top--ttl .fz-20 {
    font-size: 1rem;
  }
}

.footer--btn:not(:last-child) {
  margin-bottom: 1.875rem;
}

.footer--btn a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--bg-wht, #fff);
  border-radius: 0.1875rem;
  max-width: 416px;
  font-size: 0.875rem;
  overflow: hidden;
  line-height: 1.71;
}
.footer--btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.4375rem;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  color: #a7b9c7;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  transition: var(--transit-default, all 0.4s ease-out);
}
.footer--btn a:hover::before {
  right: 0.9375rem;
}
.footer--btn a img {
  aspect-ratio: 136/78;
}

.footer--btn_txtarea {
  padding: 1rem 3rem 1rem 1.25rem;
}
.footer--btn_txtarea p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media print, screen and (min-width: 48em) {
  .footer_cat--list {
    column-gap: 1.2658227848%;
  }
}

.footer_cat--list > li {
  background-color: #d5dee6;
  border-radius: 0.3125rem;
  padding: 2rem 2.5316455696%;
}
@media print, screen and (min-width: 48em) {
  .footer_cat--list > li {
    width: 24.0506329114%;
    margin-bottom: 1.2658227848%;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_cat--list > li {
    padding: 24px;
  }
}
.footer_cat--list > li > a::before {
  background-color: var(--bg-main, #1d7fb7);
}

.footer_cat--list a {
  padding: 0;
}

.footer_cat--list .sub-menu {
  padding-left: 1em;
}

/* footer_lft
********************************************** */
@media screen and (max-width: 47.9375em) {
  .footer_lft {
    margin-bottom: 24px;
  }
}

/* footer_btm
*************************************************** */
.footer_btm {
  padding-top: 24px;
  padding-bottom: 24px;
}

.fnav2--menu {
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 48em) {
  .fnav2--menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

.fnav2--menu li {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .fnav2--menu li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    border-right: 1px solid;
  }
}

.fnav2--menu a {
  display: block;
  padding: 0 1em;
}
.fnav2--menu a:hover {
  opacity: 0.7;
}

.copyright {
  letter-spacing: 0.05em;
}

.line_banner {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 99999;
  width: fit-content;
  transition: var(--transit-default);
  opacity: 1;
}
.line_banner > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 47.9375em) {
  .line_banner {
    width: 100%;
    bottom: 0;
    right: 0;
  }
}
.line_banner.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.line_banner img {
  display: block;
  width: 100%;
  margin-inline: auto;
}
.line_banner .close {
  position: absolute;
  top: 0;
  right: 0;
  border: 2px solid var(--bg-sub, #ccc);
  border-radius: 999px;
  background-color: #fff;
  z-index: 2;
  width: 1.625rem;
  height: 1.625rem;
  cursor: pointer;
}
@media screen and (max-width: 47.9375em) {
  .line_banner .close {
    right: 0.5714285714rem;
    top: 3.4285714286rem;
  }
}
.line_banner .close::before, .line_banner .close::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--bg-sub, #ccc);
}
.line_banner .close::before {
  transform: rotate(45deg);
}
.line_banner .close::after {
  transform: rotate(-45deg);
}

/* ##############################################################################

    HEADER

############################################################################## */
/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 9999;
  background-color: var(--bg-wht, #fff);
  transition: var(--transit-default, all 0.4s ease-out);
}
.header > .inner {
  width: calc(100% - 2.5vw);
  max-width: calc(100% - 2.5vw);
  height: 100%;
}
@media screen and (max-width: 67.5em) {
  .header {
    height: 64px;
  }
  .header > .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 3.3816425121%;
  }
}

.page-contact:not(.page-thanks) .header,
.page-contact-us:not(.page-thanks) .header,
.page-regist:not(.page-thanks) .header {
  position: absolute;
}

.header--logo a {
  display: block;
}

.page-seyamadori_limited_sharing:not(.page-no-login) .header--logo a {
  pointer-events: none;
}

.header--logo a:hover,
.footer--logo a:hover {
  opacity: 0.7;
}

.header--logo img {
  width: auto;
  max-height: 51px;
}
@media screen and (max-width: 67.5em) {
  .header--logo img {
    max-height: 42px;
  }
}

/* gnav
********************************************** */
.gnav a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gnav--menu li {
  position: relative;
}

.gnav--link {
  padding: 0 1.25em;
  font-size: min(1.1vw, 16px);
  color: var(--clr-main, #1d7fb7) !important;
}
.gnav--link:not([href="javascript:void(0);"]):hover {
  opacity: 0.7;
}
@media screen and (max-width: 70em) {
  .gnav--link {
    padding: 0 0.75em;
  }
}

.head_sub_nav li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.head_sub_nav .gnav--link {
  display: block;
  padding: 0.5em 1em;
}

.head_sub_nav--wrap .search_cat--list a {
  position: relative;
  font-size: 1.0625rem;
  border-radius: 0.3125rem;
  border: 2px solid;
  background-color: var(--bg-wht, #fff);
  box-shadow: 0 3px 0 var(--clr-sub, #ccc);
  justify-content: flex-start;
  padding: 1em 1em 1em calc(56px + 0.5em);
  color: var(--clr-main, #1d7fb7);
}
@media screen and (max-width: 47.9375em) {
  .head_sub_nav--wrap .search_cat--list a {
    padding-left: calc(32px + 0.5em);
  }
}
.head_sub_nav--wrap .search_cat--list a:hover {
  background-color: #d5dee6;
}

.head_sub_nav--wrap .search_cat--list img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
  width: 48px;
}
@media screen and (max-width: 47.9375em) {
  .head_sub_nav--wrap .search_cat--list img {
    width: 32px;
  }
}

.head_sub_nav--wrap .search_cat--list ul {
  padding-left: 14px;
}
.head_sub_nav--wrap .search_cat--list ul a {
  font-size: 0.9375rem;
  padding: 0.5em 1em 0.5em 1.375rem;
}
.head_sub_nav--wrap .search_cat--list ul a::before {
  content: "";
  position: absolute;
  top: 1.25em;
  left: 0.625rem;
  width: 0.3125rem;
  height: 2px;
  border-bottom: 2px solid;
}

.gnav_sub_toggle {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 0.8125rem;
  height: 0.375rem;
}

.gnav_search fieldset {
  position: relative;
  width: 220px;
  height: 2.5rem;
}

.gnav_search input {
  font-size: 0.84375rem;
  padding: 0.5rem 2.1875rem 0.5rem 1rem;
}

.gnav_search button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  width: 2.25rem;
  height: 2.5rem;
}
.gnav_search button:hover {
  opacity: 0.7;
}

.gnav_bkm:hover {
  opacity: 0.7;
}
.gnav_bkm svg {
  fill: var(--clr-main, #1d7fb7);
}

.gnav_btn {
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}

.gnav_btn--lines {
  position: relative;
  width: 24px;
  height: 19px;
}

.gnav_btn--lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--clr-main, #1d7fb7);
  border-radius: 9999px;
  transition: var(--transit-default, all 0.4s ease-out);
}
.gnav_btn--lines span:nth-of-type(1) {
  top: 0;
}
.gnav_btn--lines span:nth-of-type(2) {
  top: 8px;
}
.gnav_btn--lines span:nth-of-type(3) {
  bottom: 0;
}

.active .gnav_btn--lines span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}

.active .gnav_btn--lines span:nth-of-type(2) {
  opacity: 0;
}

.active .gnav_btn--lines span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

.snav,
.snav-search {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 80px);
  padding: 40px 0;
  background-image: url(../../../../images/wp/new/common/ptn-menu.png);
  overflow: auto;
  transition: var(--transit-default, all 0.4s ease-out);
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 67.5em) {
  .snav,
  .snav-search {
    top: 64px;
    max-height: calc(100% - 64px);
  }
}
.snav.active,
.snav-search.active {
  opacity: 1;
  pointer-events: auto;
}
.snav .inner,
.snav-search .inner {
  max-width: 1366px;
}
@media print, screen and (min-width: 67.5625em) {
  .snav .inner,
  .snav-search .inner {
    display: grid;
    grid-template-columns: 60.4685212299% 33.5285505124%;
    column-gap: 6.0029282577%;
  }
}
@media screen and (min-width: 67.5625em) and (max-width: 93.75em) {
  .snav .inner,
  .snav-search .inner {
    grid-template-columns: 67.7891654466% 29.2825768668%;
    column-gap: 2.9282576867%;
  }
}

.snav--bnr {
  display: inline-block;
  transition: var(--transit-default);
}
.snav--bnr:hover {
  opacity: 0.7;
}
.snav--bnr:not(:last-child):not([class*=mgn-btm]) {
  margin-bottom: 16px;
}

@media print, screen and (min-width: 67.5625em) {
  .snav--ttl_btn .snav--ttl {
    margin-right: 24px;
  }
}
@media screen and (min-width: 67.5625em) and (max-width: 80.5em) {
  .snav--ttl_btn .snav--ttl {
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 48em) {
  .snav--ttl_btn .btn:not(:last-child) {
    margin-right: 8px;
  }
}
@media screen and (max-width: 47.9375em) {
  .snav--ttl_btn .btn {
    width: 100%;
  }
}

.snav--ttl {
  display: block;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.1;
  color: var(--clr-main, #1d7fb7);
}
@media screen and (max-width: 47.9375em) {
  .snav--ttl {
    font-size: 2.2857142857rem;
  }
}
.snav--ttl .font-jp2 {
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .snav--ttl .font-jp2 {
    font-size: 1.1428571429rem;
  }
}

.snav--sub {
  position: relative;
  padding-left: 24px;
}
@media screen and (max-width: 47.9375em) {
  .snav--sub {
    padding-left: 12px;
  }
}
.snav--sub::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 14px;
  width: 4px;
  height: 1px;
  border-bottom: 1px solid var(--clr-main);
}
@media screen and (max-width: 47.9375em) {
  .snav--sub::before {
    left: 4px;
  }
}

@media screen and (max-width: 47.9375em) {
  .snav--btns {
    width: 100%;
  }
}

.search_cat-menu--list {
  font-size: 0.9375rem;
  letter-spacing: normal;
}
@media print, screen and (min-width: 48em) {
  .search_cat-menu--list {
    display: grid;
    grid-template-columns: 47.9418886199% 50.8474576271%;
    gap: 10px;
  }
}

.search_cat-menu--list > li {
  padding: 12px 16px;
  background-color: var(--bg-wht, #fff);
  border-radius: 0.625rem;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-menu--list > li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.search_cat-menu--list > li > a {
  display: flex;
  align-items: center;
  padding-left: 51px;
  min-height: 42px;
}

.search_cat-menu--list a {
  display: block;
  position: relative;
}
.search_cat-menu--list a:hover {
  opacity: 0.7;
}

.search_cat-menu--list img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 42px;
}

.search_cat-menu--list ul {
  margin-left: 51px;
}
.search_cat-menu--list ul a {
  padding-left: 24px;
}
.search_cat-menu--list ul a::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 14px;
  width: 4px;
  height: 1px;
  border-bottom: 1px solid;
}

.snav--menu > li:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 47.9375em) {
  .snav--menu > li:not(:last-child) {
    margin-bottom: 24px;
  }
}

.snav--menu a {
  display: block;
  color: var(--clr-main, #1d7fb7);
}
.snav--menu a:not([href="javascript:void(0);"]):hover {
  opacity: 0.7;
}
.snav--menu a[href="javascript:void(0);"]:hover {
  color: inherit;
}

.snav--menu ul {
  font-size: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .snav--menu ul {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 47.9375em) {
  .snav--menu ul ul:has(.snav--sub) {
    grid-template-columns: 1fr;
    max-width: unset;
  }
}

/* ---CTA --- */
.cta_tel a {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}

.cta_tel a > span {
  display: block;
}

.cta_tel .tel {
  font-size: 1.5rem;
}

.cta_tel .num {
  font-size: 1.875rem;
}

@media print, screen and (min-width: 67.5625em) {
  .gnav,
  .gnav ul,
  .gnav li,
  .gnav a {
    height: 100%;
  }
  .gnav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .gnav--link {
    text-align: center;
  }
  /* .gnav--menu > li > .gnav--link:not([href="javascript:void(0);"]):hover,
  .gnav--menu > li.current-menu-item > .gnav--link {
    color: #fff;
    background-color: #333;
  } */
  .head_sub_nav--wrap {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: calc(100% - 80px);
    background-color: var(--bg-off_wh, #f7f7f7);
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: auto;
    transition: var(--transit-default, all 0.4s ease-out);
    opacity: 0;
    pointer-events: none;
  }
  .gnav--menu li:hover .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }
  .head_sub_nav {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    margin-bottom: -8px;
  }
  .head_sub_nav li {
    margin-bottom: 8px;
    width: calc(33.3333333333% - 6px);
  }
  .head_sub_nav li:only-child {
    flex: 1;
  }
  .head_sub_nav li:first-child:nth-last-child(2), .head_sub_nav li:first-child:nth-last-child(2) ~ li {
    width: calc(50% - 4px);
  }
  .head_sub_nav .gnav--link {
    background-color: #fff;
    border-radius: 0.3125rem;
  }
  .head_sub_nav .gnav--link:hover {
    background-color: #d5dee6;
    opacity: 1;
  }
  .gnav_sub_toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0.5rem;
    height: 0.5rem;
    color: #a7b9c7;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(40deg) skew(-10deg);
  }
  .gnav--contact a {
    border-radius: 0;
  }
  .gnav_bkm {
    margin-left: 18px;
  }
  .gnav_btn {
    margin-left: 22px;
  }
  .gnav_btn-search,
  .snav_lft .blc,
  .snav .search_cat--list,
  .snav-search {
    display: none;
  }
  .gnav-seyama {
    gap: 0.25rem;
  }
  .gnav-seyama--main {
    line-height: 1;
  }
  .gnav-seyama--sub {
    position: relative;
    padding-inline: 1rem;
    font-size: 0.875rem;
    line-height: 1;
  }
  .gnav-seyama--sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../../../images/layout-example/madori_txt_dec_01_sp.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .subpage .header .gnav-seyama--sub::before {
    filter: invert(0.3);
  }
}
@media screen and (max-width: 67.5em) {
  .gnav {
    display: none;
  }
  .gnav_bkm,
  .gnav_btn,
  .gnav_btn-search {
    position: fixed;
    top: 0;
    width: 54px;
    height: 64px;
  }
  .gnav_bkm {
    right: 108px;
  }
  .gnav_bkm svg {
    width: 24px;
  }
  .gnav_btn {
    right: 0;
  }
  .gnav_btn-search {
    right: 54px;
  }
  .subpage .gnav_btn-search img {
    filter: brightness(0) invert(1);
  }
  .snav_lft {
    margin-bottom: 28px;
  }
  .snav_rgt .blc-xs,
  .snav--btns,
  .snav .search_cat-menu--list,
  .snav_lft .blc-search {
    display: none;
  }
}
/* subpage
**************************************** */
.subpage .header {
  background-color: var(--bg-main, #1d7fb7);
}
.subpage .header--logo img {
  filter: brightness(0) invert(1);
}
.subpage .gnav--menu > li > .gnav--link {
  color: var(--clr-wht, #fff) !important;
}
.subpage .gnav_bkm svg {
  fill: var(--clr-wht, #fff);
}
.subpage .gnav_btn--lines span {
  background-color: var(--clr-wht, #fff);
}

/* 下部固定バナー
**************************************** */
.fixed-seyama_bnr {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 90%;
  z-index: 5000;
}
@media screen and (max-width: 47.9375em) {
  .fixed-seyama_bnr.active {
    display: block;
  }
}
.fixed-seyama_bnr .close {
  position: absolute;
  top: 0;
  right: -2.5%;
  z-index: 99;
  border: 2px solid var(--bg-sub, #ccc);
  border-radius: 999px;
  background-color: #fff;
  width: 1.625rem;
  height: 1.625rem;
  cursor: pointer;
}
.fixed-seyama_bnr .close::before, .fixed-seyama_bnr .close::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--bg-sub, #ccc);
}
.fixed-seyama_bnr .close::before {
  transform: rotate(45deg);
}
.fixed-seyama_bnr .close::after {
  transform: rotate(-45deg);
}

.fixed-ec_bnr {
  padding-top: 0.5714285714rem;
}

/* hero
********************************************** */
.hero {
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 48em) {
  .hero {
    height: 588px;
  }
}
@media screen and (max-width: 47.9375em) {
  .hero {
    padding: 40px 0 16px;
  }
}
.hero > .inner {
  max-width: 1424px;
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .hero > .inner {
    display: grid;
    grid-template-columns: 46.4887640449% 45.5758426966%;
    column-gap: 6.7415730337%;
    align-items: center;
  }
}
@media screen and (max-width: 47.9375em) {
  .hero > .inner {
    width: 87.922705314%;
  }
}
.hero .btn a {
  background-color: var(--btn-bg-cta);
  color: var(--clr-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5714285714rem;
}
.hero .btn a::before {
  color: var(--bg-dark-blue) !important;
}

@media print, screen and (min-width: 48em) {
  .hero--ttl img,
  .hero--ttl-sm img {
    margin-left: -1.0574018127%;
    max-width: inherit;
  }
}

.hero--ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 47.9375em) {
  .hero--ttl {
    margin-bottom: 22px;
  }
}

.hero--ttl-sm {
  margin-bottom: 36px;
}
@media screen and (max-width: 47.9375em) {
  .hero--ttl-sm {
    margin-bottom: 30px;
  }
}
.hero--ttl-sm::after {
  content: "";
  display: block;
  background-image: url(../../../../images/hero-line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 130px;
  aspect-ratio: 130/10;
  margin-top: 40px;
}
@media screen and (max-width: 47.9375em) {
  .hero--ttl-sm::after {
    width: 87px;
    margin-top: 30px;
  }
}

.hero--txt {
  line-height: 1.89;
}
@media screen and (max-width: 47.9375em) {
  .hero--txt {
    font-size: 1.0714285714rem;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
  }
}
.hero--txt p:not(:last-child) {
  margin-bottom: 0.75em;
}

.hero_slide {
  width: 711px;
}
@media screen and (max-width: 47.9375em) {
  .hero_slide {
    width: 115.3846153846%;
    margin-top: 9.6618357488vw;
    margin-left: -6.5934065934%;
  }
}
.hero_slide::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 91.1392405063%;
  aspect-ratio: 1/1;
  background-image: url(../../../../images/wp/new/common/ptn-hero-bg.png);
  border-radius: 50%;
}
@media print, screen and (min-width: 48em) {
  .hero_slide::before {
    right: -6.7510548523%;
  }
}
@media screen and (max-width: 47.9375em) {
  .hero_slide::before {
    top: -3%;
    width: 109.8901098901%;
    left: 49%;
    transform: translateX(-50%);
  }
}

/* home_news
********************************************** */
.home_news {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .home_news {
    display: grid;
    grid-template-columns: 110px auto;
    width: calc(100% - 80px);
    max-width: 800px;
    height: 88px;
    margin-top: -44px;
    margin-bottom: -44px;
    margin-right: 40px;
    margin-left: auto;
    box-shadow: 0 3px 0 var(--clr-sub, #ccc);
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--bg-wht, #fff);
  }
}
@media screen and (max-width: 47.9375em) {
  .home_news {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 24px;
    padding-bottom: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "ttl posts" "btn posts";
    column-gap: 20px;
    row-gap: 10px;
    place-items: normal normal;
  }
}
.home_news .posts-news {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 47.9375em) {
  .home_news .posts-news {
    margin-bottom: 0;
    overflow: hidden;
    grid-area: posts;
  }
}
.home_news .posts-news .post {
  flex: 1;
  padding: 8px 22px;
}
@media screen and (max-width: 47.9375em) {
  .home_news .posts-news .post {
    padding: 8px 0;
  }
}
.home_news .posts-news .post:not(:last-child) {
  border: 0;
}
.home_news .posts-news .post:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-image: linear-gradient(to right, #aaa, #aaa 20%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
  background-size: 3px 3px;
}
@media screen and (max-width: 47.9375em) {
  .home_news .posts-news .post:not(:last-child)::before {
    left: 0;
    right: 0;
  }
}
.home_news .posts-news .post--txtarea {
  height: 100%;
}
@media print, screen and (min-width: 48em) {
  .home_news .posts-news .post--txtarea {
    display: grid;
    grid-template-columns: 89px auto;
    align-items: center;
  }
}
.home_news .posts-news .post--date {
  color: var(--clr-sub, #ccc);
}
.home_news .posts-news .post--ttl {
  font-weight: 500;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media print, screen and (min-width: 48em) {
  .home_news .posts-news .post--ttl {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .home_news .posts-news .post--ttl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .home_news .btn {
    width: fit-content;
    display: block;
    margin-left: auto;
    grid-area: btn;
    font-size: 14px;
  }
}
@media screen and (max-width: 47.9375em) {
  .home_news .btn a {
    padding: 5px 10px;
    line-height: 1.2;
    border-radius: 5px;
    color: var(--btn-bg-main, #1D7FB7);
    padding-right: 30px;
    background: none;
    font-size: 0.8571428571rem;
  }
  .home_news .btn a:not([target=_blank]):not([href$=".pdf"]):not([href$=".jpg"]):not([href$=".png"])::before {
    right: 10px;
    border-color: var(--btn-bg-main, #1D7FB7);
    top: 1px;
  }
}

.home_news--ttl {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .home_news--ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #eaeff3;
    padding-left: 24px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 47.9375em) {
  .home_news--ttl {
    margin-bottom: 0;
    font-size: 1.8571428571rem;
    text-align: center;
    margin-top: auto;
    margin-inline: auto;
    margin-bottom: 0;
    white-space: nowrap;
    width: fit-content;
    grid-area: ttl;
  }
}
.home_news--ttl span {
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .home_news--ttl span {
    font-size: 0.8571428571rem;
  }
}
.home_news--ttl .post--link::before {
  transition: var(--transit-default, all 0.4s ease-out);
}
.home_news--ttl .post--link:hover::before {
  background-color: rgba(33, 80, 116, 0.1);
}

@media screen and (max-width: 47.9375em) {
  .sp_widebanner {
    display: flex;
    flex-direction: column;
    gap: 1.1428571429rem;
    width: 86%;
    margin-inline: auto;
    margin-block-end: 20px;
  }
}

/* home_important
********************************************** */
.home_important *,
.home_important .mce-content-body * {
  color: #f55 !important;
}
.home_important *::before,
.home_important .mce-content-body *::before {
  background-color: #f55;
  border-color: #f55;
}

.home_important .inner {
  border: 2px solid;
  padding: 36px 80px 40px;
  border-radius: 0.625rem;
}
@media screen and (max-width: 47.9375em) {
  .home_important .inner {
    padding: 16px 24px 20px;
  }
}

/* home_movie
********************************************** */
.home_movie {
  background-color: #d3dce3;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (max-width: 47.9375em) {
  .home_movie {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.home_movie--ttl {
  margin-bottom: 1.1538461538em;
}
@media print, screen and (min-width: 48em) {
  .home_movie--ttl {
    max-width: 320px;
  }
}

.movie_slide {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .movie_slide::before, .movie_slide::after {
    content: "";
    position: absolute;
    top: 0;
    width: calc((100% - 1600px) / 2);
    height: 100%;
    z-index: 1;
  }
}
@media screen and (min-width: 48em) and (max-width: 111em) {
  .movie_slide::before, .movie_slide::after {
    width: 4.4%;
  }
}
@media print, screen and (min-width: 48em) {
  .movie_slide::before {
    left: 0;
    background-color: #d3dce3;
  }
  .movie_slide::after {
    right: 0;
    background-color: rgba(211, 220, 227, 0.7);
  }
}
@media screen and (max-width: 47.9375em) {
  .movie_slide {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
}

.movie_slide .slick-list {
  padding-top: 0.5rem !important;
  margin-top: -0.5rem;
}

.movie_slide .post {
  margin: 0 0.4166666667vw;
}

.movie_slide .slick-next {
  z-index: 2;
}
@media print, screen and (min-width: 48em) {
  .movie_slide .slick-next {
    right: 5%;
  }
}
@media screen and (min-width: 48em) and (max-width: 107em) {
  .movie_slide .slick-next {
    right: 2.5520833333%;
  }
}

/* home_concept
********************************************** */
.home_concept .box-section {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (max-width: 47.9375em) {
  .home_concept .box-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.home_concept--ttl {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.4444444444em;
  border-bottom: 3px solid;
  margin-bottom: 0.6666666667em;
}
@media screen and (max-width: 47.9375em) {
  .home_concept--ttl {
    font-size: 1.2142857143rem;
  }
}

.home_concept--txt {
  width: min(100%, 737px);
  margin-left: auto;
  margin-right: auto;
}

.home_concept--illust {
  top: -28px;
  right: -260px;
}
@media screen and (max-width: 47.9375em) {
  .home_concept--illust {
    top: -120px;
    right: -69px;
    width: 101px;
  }
}

/* home_bnr
********************************************** */
.home_bnr a {
  display: block;
}
.home_bnr a:hover {
  opacity: 0.7;
}

/* home_contents
********************************************** */
.home_contents {
  display: none;
}

.home_contents--list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4814814815%;
}
@media screen and (max-width: 47.9375em) {
  .home_contents--list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2471910112%;
    font-size: 1.1428571429rem;
  }
}

.home_contents--list li:nth-child(1) a {
  background-image: url(../../../../images/contents-icn01.svg);
}
@media screen and (max-width: 47.9375em) {
  .home_contents--list li:nth-child(1) a {
    background-size: 56px;
  }
}
.home_contents--list li:nth-child(2) a {
  background-image: url(../../../../images/contents-icn02.svg);
}
@media screen and (max-width: 47.9375em) {
  .home_contents--list li:nth-child(2) a {
    background-size: 64px;
  }
}
.home_contents--list li:nth-child(3) a {
  background-image: url(../../../../images/contents-icn03.svg);
}
@media screen and (max-width: 47.9375em) {
  .home_contents--list li:nth-child(3) a {
    background-size: 59px;
  }
}
.home_contents--list li:nth-child(4) a {
  background-image: url(../../../../images/contents-icn04.svg);
}
@media screen and (max-width: 47.9375em) {
  .home_contents--list li:nth-child(4) a {
    background-size: 70px;
  }
}

.home_contents--list a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.1875rem;
  color: var(--clr-wht, #fff);
  background-color: var(--bg-main, #1d7fb7);
  height: 140px;
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media screen and (max-width: 47.9375em) {
  .home_contents--list a {
    height: 104px;
  }
}
.home_contents--list a::before, .home_contents--list a::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.home_contents--list a::before {
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
  border-radius: 0.1875rem;
  border: 1px solid;
}
@media screen and (max-width: 47.9375em) {
  .home_contents--list a::before {
    top: 4px;
    bottom: 4px;
    left: 4px;
    right: 4px;
  }
}
.home_contents--list a::after {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transit-default, all 0.4s ease-out);
}
.home_contents--list a:hover::after {
  width: 100%;
}

/* home_tools
********************************************** */
.home_tools--ttl {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 47.9375em) {
  .home_tools--ttl {
    font-size: 1.5714285714rem;
  }
}

.home_tools--illust {
  top: -62px;
  left: -146px;
}
@media screen and (max-width: 47.9375em) {
  .home_tools--illust {
    top: -12px;
    left: -60px;
    width: 60px;
  }
}

.tools_slide {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .tools_slide::before, .tools_slide::after {
    content: "";
    position: absolute;
    top: 0;
    width: calc((100% - 1456px) / 2);
    height: 100%;
    z-index: 1;
  }
}
@media screen and (min-width: 48em) and (max-width: 107em) {
  .tools_slide::before, .tools_slide::after {
    width: 4.4%;
  }
}
@media print, screen and (min-width: 48em) {
  .tools_slide::before {
    left: 0;
    background-color: var(--bg-wht, #fff);
  }
  .tools_slide::after {
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
@media screen and (max-width: 47.9375em) {
  .tools_slide {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }
}

.tools_slide .post {
  margin: 0 0.4166666667vw;
}

.tools_slide .slick-next {
  z-index: 2;
}
@media print, screen and (min-width: 48em) {
  .tools_slide .slick-next {
    right: 7.5%;
  }
}
@media screen and (min-width: 48em) and (max-width: 107em) {
  .tools_slide .slick-next {
    right: 3.8541666667%;
  }
}

/* home_support
********************************************** */
.home_support--illust {
  top: -48px;
  left: -128px;
}
@media screen and (max-width: 47.9375em) {
  .home_support--illust {
    top: -60px;
    left: -38px;
    width: 55.5px;
  }
}

.home_support--wrap {
  position: relative;
  max-width: 1272px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .home_support--wrap {
    display: grid;
    grid-template-columns: 49.6855345912% auto;
    gap: 1.8867924528%;
  }
}

.home_support--blc:only-child {
  grid-column: 1/3;
}

.home_support--blc-yell {
  border: 2px solid var(--clr-main, #1d7fb7);
  border-radius: 5px;
  padding: 28px 32px;
  background-color: var(--bg-wht, #fff);
  height: 480px;
}
@media screen and (max-width: 47.9375em) {
  .home_support--blc-yell {
    padding: 16px;
    height: auto;
  }
}
.home_support--blc-yell .scrollbar {
  height: calc(100% - 70px);
  margin-bottom: 10px;
}
@media screen and (max-width: 47.9375em) {
  .home_support--blc-yell .scrollbar {
    height: 320px;
  }
}
.home_support--blc-yell .txt-attention {
  width: fit-content;
  margin-left: auto;
}

.home_support--list {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 48em) {
  .home_support--list {
    justify-content: center;
    gap: 2.5316455696%;
    margin-bottom: -2.5316455696%;
  }
}
@media screen and (max-width: 47.9375em) {
  .home_support--list {
    justify-content: space-between;
    font-size: 0.9285714286rem;
  }
}

@media print, screen and (min-width: 48em) {
  .home_support--list li {
    width: 48.7341772152%;
    margin-bottom: 2.5316455696%;
  }
}
@media screen and (max-width: 47.9375em) {
  .home_support--list li {
    width: 49%;
  }
  .home_support--list li:not(:last-child) {
    margin-bottom: 8px;
  }
}
.home_support--list li.seyama-jirushi {
  width: 100%;
}
.home_support--list li.seyama-jirushi a {
  background-image: url(../../../../images/support-img03.jpg);
}
.home_support--list li.tools a {
  background-image: url(../../../../images/support-img02.jpg);
}
.home_support--list li.youtube a {
  background-image: url(../../../../images/support-img01.jpg);
}
.home_support--list li.seyamadori a {
  background-image: url(../../../../images/support-img04.jpg);
}

.home_support--list a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.33;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0.3125rem;
  height: 232px;
}
@media screen and (max-width: 47.9375em) {
  .home_support--list a {
    padding: 10px;
    height: 140px;
  }
}
.home_support--list a::before, .home_support--list a::after {
  content: "";
  position: absolute;
}
.home_support--list a::before {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transit-default, all 0.4s ease-out);
}
.home_support--list a::after {
  bottom: 1.25rem;
  right: 1.25rem;
  width: 0.875rem;
  height: 0.875rem;
  background-color: var(--bg-wht, #fff);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 47.9375em) {
  .home_support--list a::after {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}
.home_support--list a:hover::before {
  width: 100%;
}

.home_support--list img {
  margin-bottom: 0.5em;
}

.home_support--txt {
  display: flex;
  align-items: center;
  height: 3em;
  line-height: 1.5;
}

.section-frame-sm .home_support--list {
  gap: 2.4427480916%;
}
@media print, screen and (min-width: 48em) {
  .section-frame-sm .home_support--list li {
    width: 53.3572519084%;
  }
}

.home_support .yell--current {
  position: absolute;
  top: -28px;
  right: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../../../../images/wp/new/common/survey2-bubble-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 105px;
  aspect-ratio: 105/71;
  padding-bottom: 0.5%;
  line-height: 1.2;
  letter-spacing: 0.0909090909em;
}
.home_support .yell--current .font-en {
  font-weight: 700;
}
.home_support .yell--current .hidden {
  display: none;
}
@media screen and (max-width: 47.9375em) {
  .home_support .yell--current {
    top: -18px;
    right: 8px;
  }
}

.yell--ttl {
  padding-left: 1.09375em;
  background-image: url(../../../../images/wp/new/common/yell-icn.svg);
  background-repeat: no-repeat;
  background-position: left top 0.3125em;
  background-size: 0.9375em;
  letter-spacing: normal;
}
@media print, screen and (min-width: 48em) {
  .yell--ttl span {
    padding-left: 0.5em;
  }
}
@media screen and (max-width: 47.9375em) {
  .yell--ttl span {
    display: block;
    font-size: 1.1428571429rem;
    margin-left: 0;
    margin-bottom: 8px;
  }
}

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 47.9375em) {
  .inner {
    width: 86%;
  }
}

.inner-sm {
  max-width: 1080px;
}

.inner-xs {
  max-width: 880px;
}

.inner-md {
  max-width: 1264px;
}

.inner-md2 {
  max-width: 1280px;
}

.inner-lg {
  max-width: 1440px;
}

.inner-xl {
  max-width: 1584px;
}

.inner-xll {
  max-width: 1780px;
}

/* --- section_pdg --- */
.section_pdg {
  padding-block: 80px;
}
@media screen and (max-width: 47.9375em) {
  .section_pdg {
    padding-block: 40px;
  }
}

.section_pdg-top {
  padding-top: 80px;
}
@media screen and (max-width: 47.9375em) {
  .section_pdg-top {
    padding-top: 40px;
  }
}

.section_pdg-btm {
  padding-bottom: 80px;
}
@media screen and (max-width: 47.9375em) {
  .section_pdg-btm {
    padding-bottom: 40px;
  }
}

:where(.page-temporary-registration, .page-registration) .section_pdg {
  padding-block: 5rem;
}
@media screen and (max-width: 47.9375em) {
  :where(.page-temporary-registration, .page-registration) .section_pdg {
    padding-block: 2.5rem;
  }
}
:where(.page-temporary-registration, .page-registration) .section_pdg-top {
  padding-top: 5rem;
}
@media screen and (max-width: 47.9375em) {
  :where(.page-temporary-registration, .page-registration) .section_pdg-top {
    padding-top: 2.5rem;
  }
}
:where(.page-temporary-registration, .page-registration) .section_pdg-btm {
  padding-bottom: 5rem;
}
@media screen and (max-width: 47.9375em) {
  :where(.page-temporary-registration, .page-registration) .section_pdg-btm {
    padding-bottom: 2.5rem;
  }
}

.section_pdg-sm {
  padding-block: 40px;
}
@media screen and (max-width: 47.9375em) {
  .section_pdg-sm {
    padding-block: 24px;
  }
}

.section-frame {
  padding: 48px;
}
@media screen and (max-width: 47.9375em) {
  .section-frame {
    padding: 24px;
  }
}

@media print, screen and (min-width: 48em) {
  .section-frame-sm {
    padding: 32px;
  }
}

/* ttl
********************************************** */
/* --- page_ttl --- */
.page_ttl {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background-color: var(--bg-sub, #ccc);
}

.page_ttl--bg-wrap {
  height: 300px;
}
@media screen and (max-width: 47.9375em) {
  .page_ttl--bg-wrap {
    height: 188px;
  }
}

.page_ttl--bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.page_ttl-jp,
.page_ttl-en {
  text-shadow: 0 0 0.5rem rgba(33, 80, 116, 0.5);
}

.page_ttl-jp {
  font-size: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .page_ttl-jp {
    font-size: 2rem;
  }
}

.page_ttl-sm {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .page_ttl-sm {
    font-size: 1.2857142857rem;
  }
}
.page_ttl-sm.page_ttl-en {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .page_ttl-sm.page_ttl-en {
    font-size: 1.1428571429rem;
  }
}

.page_ttl--list_wrap {
  background-color: var(--bg-off_wht, #f7f7f7);
}

@media print, screen and (min-width: 48em) {
  .page_ttl--list li {
    min-height: 96px;
  }
}

.page_ttl--list a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.5em 2.5em;
  line-height: var(--line-height-hdr, 1.4);
}
@media screen and (max-width: 47.9375em) {
  .page_ttl--list a {
    font-size: 0.9285714286rem;
    padding: 1em 1.5em;
  }
}
.page_ttl--list a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.875rem;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  color: #a7b9c7;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(40deg) skew(-10deg);
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .page_ttl--list a::before {
    right: 0.7142857143rem;
  }
}
.page_ttl--list a:hover {
  color: var(--clr-main, #1d7fb7);
}
.page_ttl--list a:hover::before {
  color: var(--clr-main, #1d7fb7);
}

/* --- ttl --- */
.ttl-01,
.ttl-02,
.ttl-03,
.ttl-04 {
  position: relative;
  z-index: 1;
  color: var(--clr-main, #1d7fb7);
}

.ttl-01:not([class*=mgn-btm]),
.ttl-02:not([class*=mgn-btm]),
.ttl-03:not([class*=mgn-btm]):not(:last-child) {
  margin-bottom: 0.5em;
}

.ttl-01 {
  font-size: 2.75rem;
}
@media screen and (max-width: 47.9375em) {
  .ttl-01 {
    font-size: 2.1428571429rem;
  }
}
.ttl-01.font-en {
  letter-spacing: normal;
}
@media screen and (max-width: 47.9375em) {
  .ttl-01.flex {
    font-size: 1.7142857143rem;
  }
}
.ttl-01.flex img {
  margin-right: 0.3958333333em;
}
@media screen and (max-width: 47.9375em) {
  .ttl-01.flex img[width="81"] {
    width: 40px;
  }
  .ttl-01.flex img[width="64"] {
    width: 32px;
  }
}
.ttl-01.flex .font-jp2 {
  margin-left: 1em;
}
@media screen and (max-width: 47.9375em) {
  .ttl-01.flex .font-jp2 {
    font-size: 0.9285714286rem;
  }
}

.ttl-02 {
  font-size: 2.25rem;
  color: var(--clr-sub, #ccc);
}
@media screen and (max-width: 47.9375em) {
  .ttl-02 {
    font-size: 1.4285714286rem;
  }
}

.lps_parts--img_text .inner-lg .ttl-03 {
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--img_text .inner-lg .ttl-03 {
    font-size: 1.7142857143rem;
  }
}

.ttl-03 {
  font-size: 1.75rem;
}
@media screen and (max-width: 47.9375em) {
  .ttl-03 {
    font-size: 1.7142857143rem;
  }
}
.ttl-03.ttl-bd {
  border-width: 2px;
  padding-left: 0.2857142857em;
}
.ttl-03 .font-en {
  margin-left: 1.3333333333em;
}

.lps_sec .column-3 .ttl-03,
.lps_sec .column-4 .ttl-03 {
  font-size: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .lps_sec .column-3 .ttl-03,
  .lps_sec .column-4 .ttl-03 {
    font-size: 1.7142857143rem;
  }
}

.ttl-04 {
  font-size: 1.5rem;
  padding-left: 1em;
}
@media screen and (max-width: 47.9375em) {
  .ttl-04 {
    font-size: 1.4285714286rem;
  }
}
.ttl-04::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.5em;
  height: 2px;
  border-bottom: 2px solid;
}

.ttl-dot {
  width: fit-content;
  font-size: 1.875rem;
  padding: 0 1.6em;
  color: var(--clr-wht, #fff);
  text-shadow: 2px 2px 0 var(--clr-main, #1d7fb7);
  -webkit-text-stroke: 1px var(--clr-main, #1d7fb7);
  font-weight: 900;
  background-image: url(../../../../images/wp/new/common/ttl-deco.png), url(../../../../images/wp/new/common/ttl-deco.png);
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 14px, 14px;
}
@media screen and (max-width: 47.9375em) {
  .ttl-dot {
    font-size: 1.5714285714rem;
    padding: 0 1.2em;
    background-image: url(../../../../images/wp/new/common/ttl-deco_sp.png), url(../../../../images/wp/new/common/ttl-deco_sp.png);
    background-size: 10px, 10px;
  }
}
.ttl-dot.txt-ctr {
  margin-left: auto;
  margin-right: auto;
}
.ttl-dot:not([class*=mgn-btm]):not(:last-child) {
  margin-bottom: 0.5em;
}

@media print, screen and (min-width: 48em) {
  .ttl-dot-sm {
    font-size: 1.5rem;
    background-size: 11px, 11px;
  }
}

.ttl-call {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 48em) {
  .ttl-call {
    padding: 0 56px;
    background-image: url(../../../../images/point-line-l.png), url(../../../../images/point-line-r.png);
    background-repeat: no-repeat;
    background-position: left, right;
    background-size: 39px, 39px;
  }
}

.ttl-call-sm {
  width: fit-content;
  padding: 0 2.875rem;
  background-image: url(../../../../images/tool-line-l.png), url(../../../../images/tool-line-r.png);
  background-repeat: no-repeat;
  background-position: left, right;
  background-size: 1.0625rem, 1.0625rem;
}
@media screen and (max-width: 47.9375em) {
  .ttl-call-sm {
    font-size: 1.1428571429rem;
    background-image: url(../../../../images/tool-line-l_sp.png), url(../../../../images/tool-line-r_sp.png);
  }
}
.ttl-call-sm.txt-ctr {
  margin-left: auto;
  margin-right: auto;
}

.ttl-bd {
  font-size: 1.625rem;
  padding: 0 0.5625rem 0.375rem 1rem;
  border-bottom: 3px solid;
}
.ttl-bd:not([class*=mgn-btm]):not(:last-child) {
  margin-bottom: 1.1538461538em;
}

.ttl-bd-sm {
  font-size: 1.25rem;
}

/* search
********************************************** */
.search_keyword {
  padding: 36px 9.2592592593%;
  background-image: url(../../../../images/wp/new/common/ptn-stripe.png) !important;
}
@media screen and (max-width: 47.9375em) {
  .search_keyword {
    padding: 24px;
  }
  .search_keyword .main_search input {
    padding: 0.5714285714rem 6.8571428571rem 0.5714285714rem 1.1428571429rem;
    font-size: 0.9285714286rem;
  }
  .search_keyword .main_search input + button {
    width: 6.8571428571rem;
    height: 3.4285714286rem;
  }
}

.search_keyword::before, .search_keyword::after,
.search_keyword .box--circle::before,
.search_keyword .box--circle::after {
  border: 1px solid #48657b;
}

.search_tag {
  background-image: none !important;
  background-color: var(--bg-wht, #fff);
}
@media print, screen and (min-width: 48em) {
  .search_tag {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

.main_search {
  margin-bottom: 16px;
}

.main_search fieldset {
  position: relative;
  width: 100%;
  height: 48px;
}

.main_search input {
  font-size: 1rem;
  padding: 0.5rem 12.75rem 0.5rem 1.875rem;
}
@media screen and (max-width: 47.9375em) {
  .main_search input {
    font-size: 1.0714285714rem;
    padding: 0.5714285714rem 7.9285714286rem 0.5714285714rem 1.5714285714rem;
  }
}
.main_search input + button {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--clr-wht, #fff);
  background-color: var(--btn-bg-main, #1d7fb7);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  padding-left: 1.875rem;
  padding-right: 1.625rem;
  width: 12.75rem;
  height: 3rem;
  border-radius: 0 9999px 9999px 0;
  overflow: hidden;
}
@media screen and (max-width: 47.9375em) {
  .main_search input + button {
    width: 7.9285714286rem;
    height: 3.4285714286rem;
    font-size: 1.0714285714rem;
    padding-left: 0.8571428571rem;
    padding-right: 0.5714285714rem;
  }
}
.main_search input + button:hover {
  background-color: var(--btn-bg-main-hvr, #015691);
}
.main_search input + button img {
  filter: brightness(0) invert(1);
  margin-left: 2.375rem;
  width: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .main_search input + button img {
    width: 1.1428571429rem;
    margin-left: 0.7142857143rem;
  }
}

.snav .main_search input {
  padding-right: 9.4375rem;
}
@media screen and (max-width: 47.9375em) {
  .snav .main_search input {
    padding-right: 7.9285714286rem;
  }
}
.snav .main_search input + button {
  padding-left: 1.0625rem;
  padding-right: 1.25rem;
  width: 9.4375rem;
  height: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .snav .main_search input + button {
    width: 7.9285714286rem;
    height: 3.4285714286rem;
  }
}
.snav .main_search input + button img {
  margin-left: 0.375rem;
}
.snav .search_cat--ttl {
  box-shadow: none;
  border: 0;
}

.search_common-box {
  border-radius: 0.3125rem;
  background-color: var(--bg-wht, #fff);
  padding: 22px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .search_common-box {
    padding: 16px;
  }
}

.search_common--ttl {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 47.9375em) {
  .search_common--ttl {
    font-size: 1.0714285714rem;
  }
}

.keyword--list li {
  margin: 4px;
}
@media screen and (max-width: 47.9375em) {
  .keyword--list li {
    margin: 2px;
  }
}

.keyword--list a {
  display: block;
  font-size: 0.9375rem;
  color: #434343;
  background-color: #e5e5e5;
  border-radius: 9999px;
  padding: 0.23em 0.75em;
  line-height: var(--line-height-hdr, 1.4);
}
.keyword--list a:hover {
  color: var(--clr-wht, #fff);
  background-color: var(--bg-main, #1d7fb7);
}

.search_cat--list {
  display: flex;
  flex-wrap: wrap;
}
.search_cat--list:not(.hierarchy) .search_cat--ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.search_cat--list > li.active .search_cat--ttl::before {
  opacity: 1;
}
.search_cat--list > li.active .open {
  transform: rotate(90deg);
}
.search_cat--list > li.active .open::before {
  opacity: 0;
}

.search_cat--ttl {
  position: relative;
  border-radius: 0.3125rem;
  border: 2px solid;
  background-color: var(--bg-wht, #fff);
  box-shadow: 0 3px 0 var(--clr-sub, #ccc);
  padding: 0.82em 1em;
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .search_cat--ttl {
    font-size: 1.0714285714rem;
    text-align: left;
    padding: 1em 42px;
  }
  .search_cat--ttl.has_img {
    padding-left: 72px;
  }
}
.search_cat--ttl:hover {
  background-color: #d5dee6;
}
.search_cat--ttl:hover .open {
  transform: rotate(-90deg);
}
.search_cat--ttl.has_children::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  background-color: var(--bg-sub, #ccc);
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0 0 0 0.1875rem;
  transform: rotate(135deg);
  transition: var(--transit-default, all 0.4s ease-out);
  opacity: 0;
}
.search_cat--ttl .post--link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.9375rem;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  color: #a7b9c7;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
@media screen and (max-width: 47.9375em) {
  .search_cat--ttl .post--link::after {
    right: 2.2857142857rem;
    width: 0.5714285714rem;
    height: 0.5714285714rem;
  }
}
.search_cat--ttl .post--link[href^="#"]::after {
  border-top: 0;
  border-bottom: 2px solid;
}
.search_cat--ttl img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.search_cat--ttl .open {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  width: 0.875rem;
  height: 0.875rem;
  color: #a7b9c7;
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .search_cat--ttl .open {
    right: 2rem;
    width: 1rem;
    height: 1rem;
  }
}
.search_cat--ttl .open::before, .search_cat--ttl .open::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid;
  transition: var(--transit-default, all 0.4s ease-out);
}
.search_cat--ttl .open::after {
  transform: rotate(90deg);
}

.search_cat--list_child {
  position: relative;
  background-color: var(--bg-sub, #ccc);
  border-radius: 0.3125rem;
  font-size: 1.125rem;
  padding: 1.5rem 1.5rem 1rem;
  margin-top: 0.75rem;
  display: none;
}
@media screen and (max-width: 47.9375em) {
  .search_cat--list_child {
    width: 100%;
    font-size: 1rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .search_cat--list_child li {
    margin-bottom: 4px;
  }
}
.search_cat--list_child li a {
  position: relative;
  display: block;
  background-color: #d5dee6;
  border-radius: 0.1875rem;
  padding: 0.41em 1em;
}
@media screen and (max-width: 47.9375em) {
  .search_cat--list_child li a {
    line-height: var(--line-height-hdr, 1.4);
    padding: 0.41em 2em 0.41em 1em;
  }
}
.search_cat--list_child li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.4375rem;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  color: #a7b9c7;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
.search_cat--list_child li a:hover {
  background-color: var(--bg-wht, #fff);
}
.search_cat--list_child .bnr {
  width: 100%;
}

/* --- col1 --- */
.search_cat--list.col1 {
  margin-bottom: -8px;
}
.search_cat--list.col1 > li {
  width: 100%;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 48em) {
  .search_cat--list.col1 .search_cat--ttl {
    font-size: 0.9375rem;
  }
}
.search_cat--list.col1 .search_cat--ttl img {
  left: 6px;
  width: 32px;
}
@media print, screen and (min-width: 48em) {
  .search_cat--list.col1 .search_cat--list_child {
    font-size: 0.875rem;
  }
}
.search_cat--list.col1 .search_cat--list_child li {
  margin-bottom: 4px;
}

/* --- col3 --- */
.search_cat--list.col3 {
  column-gap: 1.1111111111%;
  margin-bottom: -1.1111111111%;
}
@media screen and (max-width: 47.9375em) {
  .search_cat--list.col3 {
    margin-bottom: -8px;
  }
}
.search_cat--list.col3 > li {
  width: 32.5925925926%;
  margin-bottom: 1.1111111111%;
}
@media print, screen and (min-width: 48em) {
  .search_cat--list.col3 > li[class^=item] .search_cat--list_child {
    width: 306.8181818182%;
  }
  .search_cat--list.col3 > li.item02 .search_cat--list_child {
    margin-left: -103.4090909091%;
  }
  .search_cat--list.col3 > li.item03 .search_cat--list_child {
    margin-left: -206.8181818182%;
  }
  .search_cat--list.col3 > li.full {
    width: 100%;
  }
  .search_cat--list.col3 > li.full .search_cat--list_child {
    width: 100%;
  }
  .search_cat--list.col3 > li ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5503875969%;
  }
  .search_cat--list.col3 > li li {
    width: 49.2248062016%;
    margin-bottom: 1.5503875969%;
  }
}
@media screen and (max-width: 47.9375em) {
  .search_cat--list.col3 > li {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media print, screen and (min-width: 48em) {
  .search_cat--list.col3 .search_cat--ttl {
    font-size: 1.375rem;
  }
}
.search_cat--list.col3 .search_cat--ttl img {
  left: 10px;
  width: 52px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat--list.col3 .search_cat--ttl img {
    left: 14px;
    width: 42px;
  }
}

@media print, screen and (min-width: 48em) {
  .search_cat--list.col3-sm .search_cat--ttl {
    font-size: 1rem;
  }
}

/* --- col4 --- */
.search_cat--list.col4 {
  column-gap: 1%;
  margin-bottom: -1%;
}
.search_cat--list.col4 > li {
  width: 24.25%;
  margin-bottom: 1%;
}
@media screen and (max-width: 47.9375em) {
  .search_cat--list.col4 > li {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media print, screen and (min-width: 48em) {
  .search_cat--list.col4 .search_cat--ttl {
    font-size: 0.9375rem;
  }
}
.search_cat--list.col4 .search_cat--ttl img {
  left: 8px;
  width: 36px;
}
@media print, screen and (min-width: 48em) {
  .search_cat--list.col4 .search_cat--list_child {
    font-size: 0.875rem;
  }
}
.search_cat--list.col4 .search_cat--list_child li {
  margin-bottom: 4px;
}

/* --- spcol --- */
@media screen and (max-width: 47.9375em) {
  .search_cat--list.spcol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2px;
    gap: 2px;
    grid-auto-rows: 1fr;
    letter-spacing: normal;
  }
  .search_cat--list.spcol > li {
    margin-bottom: 0;
  }
  .search_cat--list.spcol .search_cat--ttl {
    font-size: 0.9285714286rem;
    padding: 0.5em;
    height: 100%;
    border-radius: 0.1875rem;
    line-height: var(--line-height-hdr, 1.4);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  .search_cat--list.spcol .search_cat--ttl .post--link::after {
    display: none;
  }
  .search_cat--list.spcol img {
    display: none;
  }
}
@media print, screen and (min-width: 48em) {
  .select_blc {
    display: grid;
    grid-template-columns: 17em auto;
    gap: 5%;
    justify-content: center;
  }
  .select_blc .ttl-dot {
    position: relative;
    display: block;
    margin: 0 !important;
    padding-left: 0;
    background-image: none;
    text-align: left;
  }
  .select_blc .ttl-dot::before, .select_blc .ttl-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1rem;
    clip-path: polygon(0 100%, 0 0, 100% 50%);
  }
  .select_blc .ttl-dot::before {
    right: 1rem;
    background-color: var(--bg-sub, #ccc);
  }
  .select_blc .ttl-dot::after {
    right: 0;
    background-color: var(--bg-main, #1d7fb7);
  }
}

.select_wrap {
  position: relative;
  color: var(--clr-main, #1d7fb7);
}
@media print, screen and (min-width: 48em) {
  .select_wrap {
    width: 320px;
    z-index: 10;
  }
  .select_wrap .modal {
    transition: var(--transit-default, all 0.4s ease-out);
    opacity: 0;
    pointer-events: none;
  }
  .select_wrap.active .modal {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 47.9375em) {
  .select_wrap + .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: var(--transit-default, all 0.4s ease-out);
    cursor: pointer;
  }
  .select_wrap .modal {
    position: fixed;
    top: calc(50% + 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: calc(100% - 230px);
    z-index: 9990;
    border-radius: 0.3125rem;
    transition: var(--transit-default, all 0.4s ease-out);
    opacity: 0;
    pointer-events: none;
  }
  .select_wrap .close {
    position: absolute;
    top: -2.1875rem;
    right: 0;
    width: 1.5rem;
    height: 1.1875rem;
    cursor: pointer;
  }
  .select_wrap .close::before, .select_wrap .close::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 3px;
    border-radius: 9999px;
    background-color: var(--clr-main, #1d7fb7);
  }
  .select_wrap .close::before {
    transform: rotate(45deg);
  }
  .select_wrap .close::after {
    transform: rotate(-45deg);
  }
  .select_wrap.active + .overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .select_wrap.active .modal {
    opacity: 1;
    pointer-events: auto;
  }
}
.select_wrap.active .select_btn {
  border-radius: 0.3125rem 0.3125rem 0 0;
}

.select_btn,
.select label {
  background-color: var(--bg-wht, #fff);
  padding: 0.5em 1em;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
.select_btn:hover,
.select label:hover {
  background-color: #d5dee6;
}

.select_btn,
.select {
  border: 2px solid;
}

.select_btn {
  position: relative;
  border-radius: 0.3125rem;
}
.select_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  color: #a7b9c7;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(40deg) skew(-10deg);
}

.select {
  overflow: hidden;
  max-height: 320px;
  overflow: auto;
}
@media print, screen and (min-width: 48em) {
  .select {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
    border-radius: 0 0 0.3125rem 0.3125rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .select {
    border-radius: 0.3125rem;
    max-height: calc(100vh - 230px);
  }
}
.select label {
  display: block;
}
.select label:not(:last-child) {
  border-bottom: 2px solid var(--clr-sub, #ccc);
}
.select input {
  display: none;
}

.layout_link {
  line-height: 1.2;
  border-bottom: 1px dashed var(--clr-sub);
  color: var(--clr-main);
  transition: var(--transit-default);
}
@media (hover: hover) {
  .layout_link:hover {
    border-color: transparent;
  }
}

/* layout_promotion
********************************************** */
.inner-promotion {
  max-width: 60rem;
  margin-inline: auto;
}

.layout_promotion {
  padding-top: 4.0625rem;
  width: 100%;
  aspect-ratio: 960/680;
  background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_bg_house.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-family: var(--font-jp3);
  color: var(--clr-main);
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion {
    padding-bottom: 2.8571428571rem;
    width: 100%;
    aspect-ratio: unset;
    background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_bg_house_sp.png);
    background-position: top;
    background-size: cover;
    border-radius: 0.5714285714rem;
  }
}
.layout_promotion .strong {
  line-height: 1;
}
.layout_promotion .count {
  font-weight: 700;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion .kana-sp {
    font-size: 85%;
  }
}

.archive-layout-example .layout_promotion,
.single-layout-example .layout_promotion {
  margin-block: 5%;
}
@media screen and (max-width: 47.9375em) {
  .archive-layout-example .layout_promotion,
  .single-layout-example .layout_promotion {
    display: none;
  }
}

.layout_promotion--explanation {
  position: relative;
  margin-inline: auto;
  width: 35rem;
  aspect-ratio: 560/230;
  background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_bg_bomb.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media print, screen and (min-width: 48em) {
  .layout_promotion--explanation {
    transform: translateY(1.25rem);
  }
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--explanation {
    margin-top: 4.5714285714rem;
    aspect-ratio: 583/432;
    width: 80%;
    max-width: 440px;
    background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_bg_bomb_sp.svg);
  }
}
.layout_promotion--explanation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 31.5rem;
  aspect-ratio: 504/79;
  transform: translateX(-50%);
  background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_ttl_arch.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--explanation::before {
    top: -4rem;
    aspect-ratio: 455/166;
    width: 17.1428571429rem;
    background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_ttl_arch_sp.png);
  }
}
.layout_promotion--explanation .text {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--explanation .text {
    font-size: 2.1428571429rem;
  }
}
.layout_promotion--explanation .count {
  padding-inline: 0.75rem;
}

.layout_promotion--info {
  padding: 1rem 3.3125rem;
  font-size: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  line-height: 1.83;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--info {
    padding-inline: 0.5714285714rem;
    margin-bottom: 1.1428571429rem;
    width: 90%;
    font-size: 1.4285714286rem;
    line-height: 1.6;
  }
}
.layout_promotion--info .notice {
  display: inline-block;
  transform: translateY(-0.5rem);
}

.layout_promotion--txt {
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--txt {
    width: 95%;
    margin-bottom: 1.1428571429rem;
    background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_txt_dec_02_sp.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
.layout_promotion--txt span:not(.underline) {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--txt span:not(.underline) {
    font-size: 1.8571428571rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--txt span:not(.underline) .kana-sp {
    font-size: 1.5714285714rem;
  }
}
.layout_promotion--txt .underline {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--txt .underline {
    font-size: 2.1428571429rem;
  }
}
.layout_promotion--txt .underline::before {
  content: "";
  position: absolute;
  right: 2px;
  z-index: -1;
  bottom: -8px;
  width: calc(100% + 4px);
  height: 16px;
  background-color: #e5f463;
}
.layout_promotion--txt .underline .kana-sp {
  font-size: 70%;
}

.layout_promotion--caution {
  font-size: 0.875rem;
  font-family: var(--font-primary);
  line-height: 2;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--caution {
    width: 90%;
    font-size: 1.1428571429rem;
    line-height: 1.6;
  }
}

.layout_promotion--btns {
  margin-top: 1.6875rem;
}
@media print, screen and (min-width: 48em) {
  .layout_promotion--btns {
    gap: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--btns {
    margin-top: 2.8571428571rem;
    width: 100%;
  }
}
.layout_promotion--btns .btn {
  width: 20.125rem;
}
@media screen and (max-width: 47.9375em) {
  .layout_promotion--btns .btn {
    width: 86%;
    margin-inline: auto;
  }
}
.layout_promotion--btns .btn a {
  padding-block: 1.5rem;
}

.btn-seyama {
  position: relative;
}
.btn-seyama::before {
  content: "";
  position: absolute;
  top: -1.6875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 13.9375rem;
  aspect-ratio: 454/46;
  background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_txt_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .btn-seyama::before {
    top: -2.5714285714rem;
    width: 80%;
    max-width: 300px;
    background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/madori_txt_01_sp.png);
  }
}

.btn-seyama a {
  color: var(--clr-main);
  background-color: var(--btn-bg-cta);
}
.btn-seyama a:hover {
  background-color: var(--btn-bg-cta-hvr);
}
.btn-seyama a::before {
  right: 1rem !important;
  color: var(--bg-dark-blue) !important;
}
@media screen and (max-width: 47.9375em) {
  .btn-seyama a::before {
    right: 1.4285714286rem !important;
  }
}

.btn-sale a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(/wp/wp-content/themes/standard_sass/images/wp/new/common/icn_window.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .btn-sale a::before {
    right: 1.4285714286rem;
  }
}

@media print, screen and (min-width: 48em) {
  .home .layout_promotion {
    container-type: size;
    width: min(100%, 60rem);
    padding-top: 3.3854166667vw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--explanation {
    width: 58.3cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--explanation::before {
    width: 52.5cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--explanation .text {
    font-size: 3.75cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--explanation .count {
    padding-inline: 1.25cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--info {
    padding: 1.67cqw 5.53cqw;
    font-size: 2.5cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--info .notice {
    transform: translateY(-0.83cqw);
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--txt {
    font-size: 2.08cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--txt .underline {
    font-size: 2.5cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--caution {
    margin-bottom: 2.91cqw;
    font-size: 1.46cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--btns {
    margin-top: 2.81cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--btns .btn {
    width: 33.54cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .layout_promotion--btns .btn a {
    padding-block: 2.5cqw;
  }
}
@media print, screen and (min-width: 48em) {
  .home .btn-seyama::before {
    top: -2.81cqw;
    width: 23.4cqw;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */
/* main_column
**************************************** */
@media print, screen and (min-width: 68.8125em) {
  .main_column {
    width: calc(100% - 360px);
    margin-right: 40px;
  }
}
@media screen and (max-width: 68.75em) {
  .main_column {
    width: 100%;
    margin-bottom: 40px;
  }
}
.main_column .lps_sec .inner {
  width: 100%;
  max-width: 100%;
}

@media print, screen and (min-width: 48em) {
  .inner:not(.inner-lg) .main_column {
    width: calc(100% - 408px);
    margin-right: 88px;
  }
}

/* --- post --- */
.post {
  position: relative;
}

.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.post--img {
  overflow: hidden;
  background-color: var(--bg-off_wht, #f7f7f7);
}
.post--img .img-contain {
  max-width: 80%;
}

.hover-lg .post--img > * {
  transition: all 0.8s ease-out;
}

.hover-lg:hover .post--img > *:not(.post--info) {
  transform: scale(1.05);
}

.hover-cl .post--link:hover {
  color: var(--clr-main, #1d7fb7);
}

.post--info.flex .post--date + .cat_list {
  margin-left: auto;
}
.post--info .simplefavorite-button {
  justify-content: flex-end;
}

.post--date {
  color: #a0a0a0;
}

.post--date {
  letter-spacing: 0.025em;
}

.post--date img {
  margin-top: -0.2em;
  margin-right: 0.2666666667em;
}

.post--read {
  display: inline-block;
  color: var(--clr-wht, #fff);
  background-color: var(--bg-sub, #ccc);
  border-radius: 0.1875rem;
  text-align: center;
  padding: 0 0.75em;
  margin-left: 0.5rem;
}

@media screen and (max-width: 47.9375em) {
  .post--info .post--read {
    display: table;
    margin-left: auto;
  }
}

.post--info-lft {
  flex: 1;
  row-gap: 0.625rem;
}
@media print, screen and (min-width: 48em) {
  .post--info-lft {
    margin-right: auto;
  }
}

.cat_list {
  overflow: hidden;
}

.cat_list a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  float: left;
  margin: 2px 4px;
  letter-spacing: 0.05em;
  z-index: 1;
  line-height: var(--line-height-hdr, 1.4);
  color: var(--clr-sub, #ccc);
}
.cat_list a:hover {
  opacity: 0.7;
}
.cat_list a::before {
  content: "";
}

.float-rgt .cat_list a {
  float: right;
}

.cat_list:not(.tag_list) a::before {
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../../../../images/wp/new/common/tag-icn.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: -0.1333333333em;
  margin-right: 0.3333333333em;
}

.tag_list {
  position: relative;
  overflow: hidden;
}
.tag_list.active .tag_filter {
  opacity: 0;
}

.tag_list a {
  color: #aaa;
  border: 1px solid;
  padding: 0.08em 1em;
  border-radius: 3px;
  margin: 4px;
}
.tag_list a::before {
  content: "#";
}
.tag_list a:hover {
  opacity: 1;
  color: var(--clr-wht, #fff);
  border-color: #aaa;
  background-color: #aaa;
}

.tag_filter {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, transparent 70%, var(--bg-wht, #fff));
  pointer-events: none;
  z-index: 1;
  transition: var(--transit-default, all 0.4s ease-out);
}

.simplefavorite-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}

.post--bkm {
  width: 23px;
}
.post--bkm svg {
  stroke: var(--clr-main, #1d7fb7);
  stroke-width: 2px;
  fill: transparent;
}
.post--bkm.active svg {
  fill: var(--clr-main, #1d7fb7);
}
.post--bkm:hover svg {
  fill: var(--btn-bg-cta, #1d7fb7);
  stroke: var(--btn-bg-cta, #1d7fb7);
}

.post--img .simplefavorite-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  background-color: var(--bg-wht, #fff);
}

@media screen and (max-width: 68.75em) {
  .container > .inner.flex {
    display: block;
  }
}
/* side_column
**************************************** */
.side_column {
  width: 320px;
}
@media screen and (max-width: 68.75em) {
  .side_column {
    width: 100%;
  }
}

@media print, screen and (min-width: 68.8125em) {
  .side_section.sticky {
    top: 104px;
    position: sticky;
  }
}
.side_section:not(:last-child) {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 47.9375em) {
  .side_bnr img {
    width: 100%;
  }
}

.side_bkm {
  background-color: var(--bg-main, #1d7fb7);
  border-radius: 0.625rem;
  padding: 1.25rem;
}

.side_bkm--ttl img {
  margin-right: 1.25rem;
  width: 4.09375rem;
  height: auto;
  transform: translateY(-0.375rem);
}

.side_bnr a:hover,
.side_btn--list a:hover {
  opacity: 0.7;
}

.side_btn--list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.side_contents .home_contents--list {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.side_contents .home_contents--list li:nth-child(1) a {
  background-size: 56px;
}
.side_contents .home_contents--list li:nth-child(2) a {
  background-size: 64px;
}
.side_contents .home_contents--list li:nth-child(3) a {
  background-size: 59px;
}
.side_contents .home_contents--list li:nth-child(4) a {
  background-size: 70px;
}

.side_contents .home_contents--list a {
  height: 104px;
}
.side_contents .home_contents--list a::before {
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
}

.side_posts:not(:first-child) {
  margin-top: 2rem;
}

.side--ttl {
  line-height: 1.94;
  letter-spacing: 0.1em;
  border-bottom: 3px solid var(--clr-main, #1d7fb7);
  margin-bottom: 1.5rem;
}

.side--ttl span {
  position: relative;
  display: table;
  padding: 0 1.6666666667em;
  background-color: var(--bg-main, #1d7fb7);
}
.side--ttl span::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1.8888888889em;
  height: calc(100% + 1px);
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: var(--bg-main, #1d7fb7);
}

.side_anchor--lists {
  margin-bottom: 1.5rem;
}
.side_anchor--lists .ttl,
.side_anchor--lists .num,
.side_anchor--lists .txt {
  color: #215074;
}
.side_anchor--lists .ttl,
.side_anchor--lists .txt {
  z-index: 9;
  padding-left: 2.5rem;
}
.side_anchor--lists .ttl {
  padding-bottom: 0.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .side_anchor--lists .ttl {
    font-size: 1.1428571429rem;
  }
}
.side_anchor--lists .num {
  font-size: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .side_anchor--lists .num {
    font-size: 1.7142857143rem;
  }
}
.side_anchor--lists .txt {
  font-size: 1.25rem;
  font-family: var(--font-jp);
  letter-spacing: 0.05em;
  line-height: 1.67;
}
@media screen and (max-width: 47.9375em) {
  .side_anchor--lists .txt {
    font-size: 1.1428571429rem;
  }
}

.side_anchor--item {
  position: relative;
  padding-block: 1.5rem;
  transition: var(--transit-default);
}
.side_anchor--item:has(.current)::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0.5rem;
  z-index: -1;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  background-color: #fff;
  opacity: 0.6;
  border-radius: 8px;
}
.side_anchor--item:hover {
  opacity: 0.7;
}
.side_anchor--item::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  aspect-ratio: 308/4;
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/line_dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.side_anchor--item > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.side_anchor--item .current {
  display: flex;
}
.side_anchor--item .current::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: 6px;
  height: 12px;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #215074;
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/side_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* --- list --- */
.side--list a {
  display: block;
}

.side--list .children {
  margin-top: 0 !important;
}

.side--list .children li::before {
  width: 0.5rem;
  height: 0.5rem;
  color: var(--clr-main, #1d7fb7);
  border: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
  background-color: transparent;
  border-radius: 0 !important;
}

/* --- post --- */
.side--ttl + .posts {
  margin-top: -1.5rem;
}

.posts-side .post {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #d2d2d2;
}

.posts-side .post--rank {
  top: 0.5rem;
  left: -0.5rem;
  transform: scale(0.8);
  transform-origin: left top;
}

.posts-side .post--img {
  width: 40%;
  margin-right: 5%;
}
.posts-side .post--img::before {
  padding-top: 56.25%;
}

.posts-side .post--txtarea {
  flex: 1;
}

.posts-side .post--read,
.posts-side .post--info-btm,
.posts-side .post--catch,
.posts-side .post--txt {
  display: none;
}

.posts-side .post--date {
  font-size: 0.75rem;
}

.posts-side .post--ttl {
  font-size: 0.875rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 1.86;
  letter-spacing: 0.025em;
}

/* all
**************************************** */
@media print, screen and (min-width: 48em) {
  .all--list {
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 47.9375em) {
  .all--list {
    column-gap: 2.2471910112%;
    font-size: 1rem;
  }
}

.all--list li {
  position: relative;
  display: block;
  padding: 0 1em;
  cursor: pointer;
}
@media print, screen and (min-width: 48em) {
  .all--list li::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--bg-sub, #ccc);
    opacity: 0;
    transform: translateY(0.5rem);
    transition: var(--transit-default, all 0.4s ease-out);
  }
  .all--list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 6.4px;
    height: 50%;
    background-image: radial-gradient(var(--clr-sub, #ccc) 40%, transparent 40%);
    background-size: 6.4px 6.4px;
  }
  .all--list li:hover, .all--list li.current {
    color: var(--clr-main, #1d7fb7);
  }
  .all--list li:hover::before, .all--list li.current::before {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 47.9375em) {
  .all--list li {
    width: 48.8764044944%;
    margin-bottom: 2.2471910112%;
    border-radius: 0.3125rem;
    background-color: var(--bg-wht, #fff);
    box-shadow: 0 3px 0 var(--clr-sub, #ccc);
    padding: 0.5em 1em;
    text-align: center;
  }
  .all--list li:hover, .all--list li.current {
    background-color: #d5dee6;
  }
}

.all--content:not(:first-child) {
  display: none;
}

/* blog
**************************************** */
.tab--list {
  background-color: #d3dce3;
  border-radius: 0.625rem 0.625rem 0 0;
}

.tab--list li {
  flex: 1;
}

.tab--list a {
  position: relative;
  display: block;
  padding: 0.69em 1em;
  text-align: center;
  border-radius: 0.625rem 0.625rem 0 0;
}
.tab--list a::before, .tab--list a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
}
.tab--list a::before {
  border-top: 4px solid;
  border-left: 4px solid;
  border-right: 4px solid;
  border-radius: 0.625rem 0.625rem 0 0;
  opacity: 0;
}
@media screen and (max-width: 47.9375em) {
  .tab--list a::before {
    border-top: 3px solid;
    border-left: 3px solid;
    border-right: 3px solid;
  }
}
.tab--list a::after {
  border-bottom: 4px solid;
}
@media screen and (max-width: 47.9375em) {
  .tab--list a::after {
    border-bottom: 3px solid;
  }
}

.tab--list .current a {
  background-color: var(--bg-wht, #fff);
}
.tab--list .current a::before {
  opacity: 1;
}
.tab--list .current a::after {
  opacity: 0;
}

.bnr-layout:hover {
  opacity: 0.7;
}

.search_cat-checkbox--scroll {
  width: 100%;
}

.search_cat-checkbox--ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-main, #1d7fb7);
  background-color: var(--bg-wht, #fff);
  padding: 0.65em 1em;
  border-radius: 0.3125rem;
  border: 2px solid;
  box-shadow: 0 3px 0 var(--clr-sub, #ccc);
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
}
.search_cat-checkbox--ttl::before {
  content: "";
  display: block;
  width: 1.3125rem;
  height: 1.3125rem;
  background-image: url(../../../../images/wp/new/common/icn-sort.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.75rem;
}
.search_cat-checkbox--ttl:hover {
  background-color: #d5dee6;
}

.search_cat-checkbox--content {
  padding: 32px 40px;
  border: 2px solid var(--clr-sub, #ccc);
  background-color: var(--bg-wht, #fff);
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content {
    padding: 16px;
  }
}
.search_cat-checkbox--content:not(.modal) {
  position: relative;
  margin-top: 1.125rem;
  border-radius: 0.3125rem;
  display: none;
  background-color: var(--bg-off_wht, #f7f7f7);
  border: 0;
}
.search_cat-checkbox--content:not(.modal)::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.625rem;
  height: 1.375rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: var(--bg-off_wht, #f7f7f7);
}
.search_cat-checkbox--content:not(.modal).active {
  display: block;
}
.search_cat-checkbox--content:not(.modal) .checked--list {
  pointer-events: none;
}
.search_cat-checkbox--content:not(.modal) .checked--list:not(:last-child) {
  margin-bottom: 1rem;
}
.search_cat-checkbox--content.modal {
  position: fixed;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1080px;
  height: calc(100% - 188px);
  z-index: 9990;
  border-radius: 0.3125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal {
    flex-direction: column;
    justify-content: space-between;
    width: 94.2028985507%;
    height: calc(100% - 230px);
  }
}
.search_cat-checkbox--content.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.search_cat-checkbox--content.modal .close {
  position: absolute;
  top: -2.1875rem;
  right: 0;
  width: 1.5rem;
  height: 1.1875rem;
  cursor: pointer;
}
.search_cat-checkbox--content.modal .close::before, .search_cat-checkbox--content.modal .close::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--bg-wht, #fff);
}
.search_cat-checkbox--content.modal .close::before {
  transform: rotate(45deg);
}
.search_cat-checkbox--content.modal .close::after {
  transform: rotate(-45deg);
}
.search_cat-checkbox--content.modal .search_cat-checkbox--list {
  overflow: auto;
  overflow-x: hidden;
}
@media print, screen and (min-width: 48em) {
  .search_cat-checkbox--content.modal .search_cat-checkbox--list {
    height: calc(100% - 160px);
    flex: 1;
    padding-left: 5%;
  }
  .search_cat-checkbox--content.modal .search_cat-checkbox--list::-webkit-scrollbar {
    width: 6px;
  }
  .search_cat-checkbox--content.modal .search_cat-checkbox--list::-webkit-scrollbar:horizontal {
    height: 6px;
  }
  .search_cat-checkbox--content.modal .search_cat-checkbox--list::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 6px;
    border: none;
  }
  .search_cat-checkbox--content.modal .search_cat-checkbox--list::-webkit-scrollbar-thumb {
    background-color: rgba(83, 83, 83, 0.1);
    border-radius: 6px;
    box-shadow: none;
  }
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal .search_cat-checkbox--list {
    width: 100%;
    flex: 1;
    font-size: 1rem;
  }
}
.search_cat-checkbox--content.modal .search_cat-checkbox--list > li:not(:first-child) {
  display: none;
}
.search_cat-checkbox--content.modal .btn_wrap {
  width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal .btn_wrap {
    margin-top: 16px;
  }
}
.search_cat-checkbox--content.modal + .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
.search_cat-checkbox--content.modal.active + .overlay {
  opacity: 1;
  pointer-events: auto;
}
.search_cat-checkbox--content.modal2 {
  flex-direction: column;
  padding: 40px 48px 250px;
  max-width: 1160px;
  /* .close {
    top: 14px;
    right: 23px;
    width: rem(18);
    @include mq(sp) {
      right: 16px;
    }
  } */
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 {
    padding: 16px 12px 200px;
    height: calc(100% - 200px);
  }
}
.search_cat-checkbox--content.modal2.has_scroll {
  padding-right: 32px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2.has_scroll {
    padding-right: 6px;
  }
}
.search_cat-checkbox--content.modal2 .modal--ttl {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr-wht, #fff);
  background-color: var(--bg-sub, #ccc);
  text-align: center;
  padding: 0.4em 1em;
  letter-spacing: normal;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .modal--ttl {
    padding: 0.575em 1em;
    justify-content: flex-start;
    font-size: 1.1428571429rem;
  }
}
@media screen and (max-width: 25.875em) {
  .search_cat-checkbox--content.modal2 .modal--ttl {
    font-size: 3.8647342995vw;
  }
}
.search_cat-checkbox--content.modal2 .modal--ttl::before {
  content: "";
  display: block;
  width: 1.3125rem;
  height: 1.3125rem;
  background-image: url(../../../../images/wp/new/common/icn-sort.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.75rem;
  filter: brightness(0) invert(1);
}
.search_cat-checkbox--content.modal2 .modal--ttl .search_cat-checkbox--count {
  color: var(--clr-main, #1d7fb7);
  background-color: var(--btn-bg-cta, #1d7fb7);
  letter-spacing: 0.09em;
  border-radius: 0.1875rem;
  padding: 0.08em 1em;
  margin-left: 16px;
  height: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .modal--ttl .search_cat-checkbox--count {
    font-size: 0.9285714286rem;
    letter-spacing: 0.09em;
    padding: 0.08em 0.7692307692em;
    margin-left: 12px;
  }
}
@media screen and (max-width: 25.875em) {
  .search_cat-checkbox--content.modal2 .modal--ttl .search_cat-checkbox--count {
    font-size: 3.1400966184vw;
  }
}
.search_cat-checkbox--content.modal2 .modal--ttl .search_cat-checkbox--count .num {
  letter-spacing: 0.09em;
  line-height: 1.2;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .modal--ttl .search_cat-checkbox--count .num {
    font-size: 1.4285714286rem;
    letter-spacing: 0.09em;
  }
}
@media screen and (max-width: 25.875em) {
  .search_cat-checkbox--content.modal2 .modal--ttl .search_cat-checkbox--count .num {
    font-size: 4.8309178744vw;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--tab_wrap {
  width: 100%;
  background-color: transparent;
  padding: 0 8px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab_wrap {
    padding: 0;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--tab {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab {
    gap: 5px;
    margin-bottom: 0;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li {
  flex: 1;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li:not(.current) > *, .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li:not(:hover) > * {
    color: var(--clr-main, #1d7fb7);
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li:not(:last-child) {
  margin-bottom: 0 !important;
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li > * {
  background-color: #d5dee6;
  border-radius: 0.3125rem 0.3125rem 0 0;
  text-align: center;
  padding: 12px 24px;
  transform: translateY(6px);
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li > * {
    padding: 12px 10px;
    font-size: 1.0714285714rem;
  }
}
@media screen and (max-width: 25.875em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li > * {
    font-size: 3.6231884058vw;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li > *::before {
  display: none;
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li.current > *, .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li:hover > * {
  background-color: var(--bg-main, #1d7fb7);
  transform: translateY(2px);
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li.current > *, .search_cat-checkbox--content.modal2 .search_cat-checkbox--tab li:hover > * {
    color: var(--clr-wht, #fff);
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--blc {
  position: relative;
  padding: 24px 32px;
  border-radius: 0.3125rem;
  border: 2px solid var(--clr-main, #1d7fb7);
  background-color: var(--bg-wht, #fff);
  flex: inherit;
  z-index: 1;
  overflow: visible;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--blc {
    padding: 20px 28px;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--blc:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--blc:not(:last-child) {
    margin-bottom: 52px;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--blc:not(:last-child)::before, .search_cat-checkbox--content.modal2 .search_cat-checkbox--blc:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 6px;
  background-color: #9ac4d7;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--blc:not(:last-child)::before, .search_cat-checkbox--content.modal2 .search_cat-checkbox--blc:not(:last-child)::after {
    bottom: -31px;
    width: 28px;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--blc:not(:last-child)::after {
  transform: translateX(-50%) rotate(90deg);
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--blc.add {
  padding-top: 88px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--blc.add {
    padding-top: 58px;
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--list {
  padding-left: 0;
  height: auto;
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--list > li > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--list > li > ul:has(ul) {
  gap: 0.5em;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .search_cat-checkbox--list > li > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--list-ttlize_parents .depth-0 > li > .search_cat-checkbox--label {
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  padding: 0;
  pointer-events: none;
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--list-ttlize_parents .depth-0 > li > .search_cat-checkbox--label::before {
  display: none;
}
.search_cat-checkbox--content.modal2 .search_cat-checkbox--list-ttlize_parents ul:not(.depth-0) {
  margin-left: 0;
}
.search_cat-checkbox--content.modal2 .add--ttl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #d5dee6;
  padding: 0.9em 1em;
  border-radius: 0.3125rem 0.3125rem 0 0;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .add--ttl {
    padding: 0.675em 1em;
  }
}
.search_cat-checkbox--content.modal2 .add--ttl::before, .search_cat-checkbox--content.modal2 .add--ttl::after {
  content: "";
  position: absolute;
}
.search_cat-checkbox--content.modal2 .add--ttl::before {
  top: -24px;
  left: calc(50% - 210px);
  width: 5.5rem;
  height: 5.5rem;
  background-image: url(../../../../images/wp/new/common/kodawari-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .add--ttl::before {
    top: -18px;
    left: calc(50% - 166px);
    background-image: url(../../../../images/wp/new/common/kodawari-img_sp.png);
    width: 4.7142857143rem;
    height: 4.7142857143rem;
  }
}
.search_cat-checkbox--content.modal2 .add--content > *:not(.switch--tab) {
  color: #8fa6b7;
}
.search_cat-checkbox--content.modal2 .add--content > *:not(:last-child) {
  margin-bottom: 0.25rem;
}
.search_cat-checkbox--content.modal2 .switch--tab_wrap {
  width: fit-content;
  min-width: min(407px, 100%);
  margin-left: auto;
  margin-right: auto;
  background-color: #eee;
  border-radius: 9999px;
  padding: 4px;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .switch--tab_wrap {
    margin-left: -6px;
    margin-right: -6px;
  }
}
.search_cat-checkbox--content.modal2 .switch--tab {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 1;
}
.search_cat-checkbox--content.modal2 .switch--tab .toggle {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background-color: var(--bg-main, #1d7fb7);
  border-radius: 9999px;
  z-index: -1;
  transition: var(--transit-default, all 0.4s ease-out);
}
.search_cat-checkbox--content.modal2 .switch--tab input {
  display: none;
}
.search_cat-checkbox--content.modal2 .switch--tab input:checked + label {
  color: var(--clr-wht, #fff);
}
.search_cat-checkbox--content.modal2 .switch--tab label {
  display: block;
  color: var(--clr-main, #1d7fb7);
  padding: 0.125em 1em;
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .switch--tab label {
    letter-spacing: 0.05em;
    padding: 0.125em 0.5714285714em;
    line-height: 1.9;
  }
  .search_cat-checkbox--content.modal2 .switch--tab label .fz-14 {
    font-size: 0.8571428571rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 25.875em) {
  .search_cat-checkbox--content.modal2 .switch--tab label {
    font-size: 3.3816425121vw;
  }
  .search_cat-checkbox--content.modal2 .switch--tab label .fz-14 {
    font-size: 2.8985507246vw;
  }
}
.search_cat-checkbox--content.modal2 .checked--list {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
  max-width: 100%;
  overflow-x: auto;
}
.search_cat-checkbox--content.modal2 .checked--list li {
  font-size: 0.875rem;
  white-space: nowrap;
  background-color: var(--bg-off_wht);
  cursor: pointer;
}
.search_cat-checkbox--content.modal2 .btn_wrap {
  position: absolute;
  bottom: 40px;
  left: 80px;
  right: 80px;
  width: auto;
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--content.modal2 .btn_wrap {
    bottom: 16px;
    left: 40px;
    right: 40px;
  }
}

.search_cat-checkbox--tab_wrap {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .search_cat-checkbox--tab_wrap {
    width: 328px;
    padding: 16px 24px;
    background-color: var(--bg-off_wht, #f7f7f7);
  }
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--tab_wrap {
    width: 100%;
  }
}

@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    grid-auto-rows: 1fr;
    margin-bottom: 16px;
  }
}

.search_cat-checkbox--tab li {
  position: relative;
  cursor: pointer;
}
@media print, screen and (min-width: 48em) {
  .search_cat-checkbox--tab li:not(:last-child) {
    margin-bottom: 4px !important;
  }
  .search_cat-checkbox--tab li > * {
    padding: 6px 24px;
  }
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--tab li:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .search_cat-checkbox--tab li > * {
    color: var(--btn-clr-wht-hvr, #fff);
    background-color: var(--bg-sub, #ccc);
    font-size: 0.9285714286rem;
    padding: 0.5em;
    height: 100%;
    border-radius: 0.1875rem;
    line-height: var(--line-height-hdr, 1.4);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  .search_cat-checkbox--tab li > *::before {
    display: none;
  }
}
.search_cat-checkbox--tab li.current > * {
  background-color: var(--btn-bg-wht-hvr, #ccc);
}
.search_cat-checkbox--tab li.current > *::before {
  border-color: var(--btn-clr-wht-hvr, #fff) !important;
}
.search_cat-checkbox--tab li.current > * svg {
  fill: var(--btn-clr-wht-hvr, #fff);
}
@media screen and (max-width: 47.9375em) {
  .search_cat-checkbox--tab li.current > * {
    background-color: var(--btn-bg-main-hvr, #015691);
  }
}
.search_cat-checkbox--tab li.current * {
  color: var(--btn-clr-wht-hvr, #fff);
}

.search_cat-checkbox--list input[type=checkbox] {
  display: none;
}

.search_cat-checkbox--list label {
  position: relative;
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 2rem;
  cursor: pointer;
}
.search_cat-checkbox--list label:hover {
  opacity: 0.7;
}
.search_cat-checkbox--list label::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #d5dee6;
  left: 0;
  top: 0.375rem;
}

.search_cat-checkbox--list input[type=checkbox]:checked + label::after {
  content: "";
  width: 0.625rem;
  height: 1.125rem;
  top: 0.375rem;
  left: 0.5rem;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  transform: rotate(45deg);
}

.search_cat-checkbox--list ul:not(.depth-0) {
  margin-left: 1.625rem;
}

.checked--list li {
  display: inline-block;
  float: left;
  color: var(--clr-main, #1d7fb7);
  background-color: var(--bg-wht, #fff);
  border-radius: 0.1875rem;
  padding: 0 1em;
  margin: 2px;
}
@media screen and (max-width: 47.9375em) {
  .checked--list li {
    font-size: 1rem;
  }
}

.bnr-layout {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.posts-blog .post {
  border-radius: 0.3125rem;
  border: 3px solid var(--clr-main, #1d7fb7);
  background-color: var(--bg-wht, #fff);
}

.post--rank {
  position: absolute;
  top: -0.5rem;
  left: 4.5977011494%;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 2px solid var(--clr-wht, #fff);
  font-weight: 700;
  background-color: var(--btn-bg-cta, #1d7fb7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  letter-spacing: normal;
}
.post--rank.rank-2 {
  background-color: #bcccda;
}
.post--rank.rank-3 {
  background-color: #eabd88;
}
.post--rank.rank-4 {
  background-color: #d2d2d2;
}
.post--rank span {
  display: block;
  text-indent: 0.25em;
}

.posts-blog .post--img::before {
  padding-top: 57.6923076923%;
}

.posts-blog .post--txtarea {
  padding: 0.625rem 1rem 1rem;
}

.posts-blog .cat_list {
  margin-bottom: 0.5rem;
}

.posts-blog .cat_list a {
  float: right;
}

.posts-blog .post--ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  letter-spacing: 0.0025em;
}

.posts-blog .post--info {
  margin-top: auto;
}

/* important
**************************************** */
.page_outlook {
  padding: 2.5rem 2.5rem 3rem;
  border: 3px solid var(--clr-main);
  border-radius: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook {
    padding: 1.4285714286rem 1.1428571429rem 1.1428571429rem;
    border-radius: 0.5714285714rem;
  }
}

@media screen and (max-width: 47.9375em) {
  .page_outlook--txtarea {
    margin-bottom: 2.2857142857rem;
  }
}

.page_outlook--illust {
  top: 0;
  right: 0;
  width: 160px;
}

.page_outlook--ttl {
  font-size: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--ttl {
    margin-bottom: 1.7142857143rem;
    font-size: min(4.8309178744vw, 1.4285714286rem);
  }
}

.page_outlook--txt {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--txt {
    margin-left: inherit;
    margin-right: inherit;
    line-height: var(--line-height-hdr);
    font-size: 1rem;
    text-align: left;
  }
}
.page_outlook--txt .txt-attention {
  display: block;
  margin-top: 1rem;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--txt .txt-attention {
    white-space: inherit;
  }
}

.page_outlook--list {
  gap: 1.5rem 13.3333333333%;
  width: 80%;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--list {
    row-gap: 0.5714285714rem;
    width: 100%;
  }
}
.page_outlook--list > * {
  width: 15%;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--list > * {
    width: 100%;
  }
}

.page_outlook--item {
  aspect-ratio: 1/1;
  transition: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--item {
    aspect-ratio: inherit;
    padding: 0.5714285714rem 0.8571428571rem;
    background-color: #d3dce3;
    border-radius: 0.2857142857rem;
  }
}
.page_outlook--item:hover {
  opacity: 0.7;
}
.page_outlook--item a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--item a {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
}

.page_outlook--item .img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--item .img {
    width: 3rem;
    height: auto;
  }
}

.page_outlook--item .ttl {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
@media screen and (max-width: 84.375em) {
  .page_outlook--item .ttl {
    font-size: max(1.4814814815vw, 16px);
  }
}
@media screen and (max-width: 47.9375em) {
  .page_outlook--item .ttl {
    position: inherit;
    left: initial;
    bottom: initial;
    transform: inherit;
    flex: 1;
    font-size: min(3.3816425121vw, 1rem);
    text-shadow: inherit;
    white-space: inherit;
  }
}
.page_outlook--item .ttl .step {
  display: block;
}

.step_blc {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 47.9375em) {
  .step_blc {
    padding-top: 2.8571428571rem;
    padding-bottom: 2.8571428571rem;
  }
}
.step_blc:nth-child(2n) {
  background-color: #d3dce3;
}

.step-ttl {
  column-gap: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .step-ttl {
    column-gap: 0.7142857143rem;
  }
}

.step-ttl .img {
  width: 4rem;
}
@media screen and (max-width: 47.9375em) {
  .step-ttl .img {
    width: 3.4285714286rem;
  }
}
.step-ttl .img img {
  width: 100%;
}

@media screen and (max-width: 47.9375em) {
  .step-ttl .txt {
    flex: 1;
    font-size: min(4.8309178744vw, 1.4285714286rem);
  }
}
.step-ttl .txt .step {
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .step-ttl .txt .step {
    font-size: min(3.3816425121vw, 1rem);
  }
}

.step_content:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .step_content:not(:last-child) {
    margin-bottom: 2.2857142857rem;
  }
}

.step-ttl02 {
  padding-left: 1em;
  font-size: 1.75rem;
}
@media screen and (max-width: 47.9375em) {
  .step-ttl02 {
    font-size: min(3.8647342995vw, 1.1428571429rem);
  }
}
.step-ttl02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--clr-main);
  border-radius: 3px;
}

@media screen and (max-width: 47.9375em) {
  .step-txt {
    font-size: 0.9285714286rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 47.9375em) {
  .step-ttl02 + .step-txt {
    margin-bottom: 0.8571428571rem;
  }
}

.post-important {
  padding: 2.25rem 2rem;
  background-color: #fff;
  border: 0.1875rem solid var(--clr-main);
  border-radius: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .post-important {
    padding: 0.5714285714rem 0.8571428571rem;
    border: 1px solid var(--clr-main);
    border-radius: 0.2857142857rem;
  }
}
.post-important:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .post-important:not(:last-child) {
    margin-bottom: 0.5714285714rem;
  }
}
.post-important .simplefavorite-button {
  justify-content: flex-end;
}

.post-important .post--wrap {
  column-gap: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .post-important .post--wrap {
    align-items: center;
    column-gap: 0.8571428571rem;
  }
}

.post-important .post--img {
  aspect-ratio: 16/9;
  width: 300px;
  background-color: #eee;
  border: 3px solid var(--clr-main);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (max-width: 47.9375em) {
  .post-important .post--img {
    width: 34.2995169082vw;
    border: 1px solid var(--clr-main);
    border-radius: 0.2857142857rem;
  }
}
.post-important .post--img img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 47.9375em) {
  .post-important .post--date {
    font-size: min(2.4154589372vw, 0.7142857143rem);
  }
}

@media screen and (max-width: 47.9375em) {
  .post-important .post--ttl {
    margin-bottom: 0.2857142857rem;
    font-size: min(3.1400966184vw, 0.9285714286rem);
  }
}

.post-important .post--txt {
  flex: 1;
}

@media screen and (max-width: 47.9375em) {
  .pickup_post .post-important .post--txt {
    padding-inline: 0.5714285714rem;
  }
}

.post-important .btn-list {
  display: block;
  width: fit-content;
  margin-left: auto;
}

@media screen and (max-width: 47.9375em) {
  .post-important .btn-list span {
    width: 1.4285714286rem;
    height: 1.4285714286rem;
    padding: inherit;
    background-color: var(--clr-main);
    border-radius: 50%;
  }
  .post-important .btn-list span::before, .post-important .btn-list span::after {
    right: 0.4285714286rem;
    border-color: #fff;
  }
  .post-important .btn-list span::before {
    width: 0.7142857143rem;
  }
  .post-important .btn-list span::after {
    width: 0.5714285714rem;
    height: 0.5714285714rem;
  }
  .post-important .btn-list span b {
    display: none;
  }
}

@media screen and (max-width: 47.9375em) {
  .pickup_post:not(:last-child) {
    margin-bottom: 1.1428571429rem;
  }
}
.pickup_post .posts {
  position: relative;
  padding-top: calc(6.25rem - 1.5rem);
  z-index: 1;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .posts {
    padding-top: calc(5.6428571429rem - 0.5714285714rem);
  }
}
.pickup_post .posts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 16.25rem;
  aspect-ratio: 412/158;
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/step_recommend_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .posts::before {
    width: 14.7142857143rem;
  }
}
.pickup_post .post {
  border-radius: 16px;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .post {
    padding: 1.7142857143rem;
  }
}
.pickup_post .post--text {
  padding-top: 0.5rem;
}
.pickup_post .post--read {
  position: relative;
  display: inline-block;
  height: fit-content;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background-color: unset;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .post--read {
    font-size: 1rem;
  }
}
.pickup_post .post--read img {
  margin: 0 !important;
}
.pickup_post .post--read .txt {
  display: none;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .post--wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .post--img {
    width: 100%;
    border-radius: 8px;
  }
}
.pickup_post .post--ttl {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .post--ttl {
    font-size: 1.4285714286rem;
  }
}
.pickup_post .post--date {
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .post--date {
    font-size: 1rem;
  }
}
.pickup_post .post--info {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 47.9375em) {
  .pickup_post .post--info {
    margin-bottom: 0;
    padding-block: 0.5714285714rem 0.1428571429rem;
    font-size: 1rem;
  }
}

.important--anchor {
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .important--anchor {
    top: 2rem;
  }
}

.important--anchor .anchor--lists {
  position: relative;
  display: flex;
}
@media print, screen and (min-width: 48em) {
  .important--anchor .anchor--lists {
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    max-width: 70rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 47.9375em) {
  .important--anchor .anchor--lists {
    flex-direction: column;
    gap: 1.7142857143rem;
    margin-bottom: 1.7142857143rem;
    padding-inline: 1.1428571429rem;
  }
}

.anchor--explanation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
  color: var(--clr-main);
  letter-spacing: 0.03em;
  line-height: 1;
}
@media print, screen and (min-width: 48em) {
  .anchor--explanation {
    font-size: 1.25rem;
  }
  .anchor--explanation.pc-none {
    display: none;
  }
}
@media screen and (max-width: 47.9375em) {
  .anchor--explanation {
    gap: 0.7142857143rem;
    margin-bottom: 1.7142857143rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  .anchor--explanation.sp-none {
    display: none;
  }
}
.anchor--explanation::before, .anchor--explanation::after {
  content: "";
  width: 40px;
  height: calc(50% - 0.5px);
  border-bottom: 1px solid var(--brd-main);
}

.anchor--item {
  z-index: 999;
  position: relative;
  width: 21.5%;
  min-width: 15rem;
  color: var(--clr-main);
  border: 3px solid var(--brd-main);
  border-radius: 8px;
  text-align: center;
  transition: var(--transit-default);
}
.anchor--item:hover {
  opacity: 0.7;
}
@media screen and (max-width: 47.9375em) {
  .anchor--item {
    width: fit-content;
    min-width: 16rem;
    border-width: 2px;
  }
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:nth-child(even) {
    margin-left: auto;
  }
}
.anchor--item:not(:last-child)::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.625rem;
}
@media print, screen and (min-width: 48em) {
  .anchor--item:not(:last-child)::after {
    top: 50%;
    right: -3.125rem;
    aspect-ratio: 79/16;
  }
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:not(:last-child)::after {
    width: 3rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:first-child {
    left: 0;
  }
}
.anchor--item:first-child:not(:last-child)::after {
  aspect-ratio: 79/16;
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/anker_line1-2_pc.svg);
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:first-child:not(:last-child)::after {
    top: 50%;
    right: -3.8571428571rem;
    aspect-ratio: 81/108;
    background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/anker_line1-2.svg);
  }
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:nth-child(2) {
    right: 0;
  }
}
.anchor--item:nth-child(2):not(:last-child)::after {
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/anker_line2-3_pc.svg);
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:nth-child(2):not(:last-child)::after {
    top: 70%;
    left: -3.4285714286rem;
    aspect-ratio: 80/68;
    background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/anker_line2-3.svg);
  }
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:nth-child(3) {
    left: 2.2857142857rem;
  }
}
.anchor--item:nth-child(3):not(:last-child)::after {
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/anker_line3-4_pc.svg);
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:nth-child(3):not(:last-child)::after {
    bottom: -3.8571428571rem;
    left: 0.5714285714rem;
    aspect-ratio: 1/1;
    background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/anker_line3-4.svg);
  }
}
@media screen and (max-width: 47.9375em) {
  .anchor--item:nth-child(4) {
    right: 1.1428571429rem;
  }
}
.anchor--item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.anchor--item .ttl {
  padding-block: 1rem;
  line-height: 1;
  background-color: #e3e8ed;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .anchor--item .ttl {
    padding-block: 0.5rem;
    font-size: 1.1428571429rem;
  }
}
.anchor--item .num {
  font-size: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .anchor--item .num {
    font-size: 1.7142857143rem;
  }
}
.anchor--item .txt {
  padding: 1.125rem 0.5rem;
  font-size: 1.125rem;
  font-family: var(--font-jp);
  letter-spacing: 0.05em;
  line-height: 1.67;
  background-color: var(--bg-wht);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 47.9375em) {
  .anchor--item .txt {
    padding: 0.4285714286rem 1.1428571429rem;
    font-size: 1.1428571429rem;
  }
}
.anchor--item .icon {
  position: absolute;
  top: -10px;
  left: -16px;
  width: 4.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 47.9375em) {
  .anchor--item .icon {
    width: 3.7142857143rem;
  }
}

.important--txtarea {
  margin-inline: auto;
}
@media screen and (max-width: 47.9375em) {
  .important--txtarea .ttl {
    margin-bottom: 1.5714285714rem;
  }
}
@media print, screen and (min-width: 48em) {
  .important--txtarea .ttl img {
    width: 42.625rem;
  }
}
.important--txtarea .text {
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media print, screen and (min-width: 48em) {
  .important--txtarea .text {
    width: 60%;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .important--txtarea .text {
    margin-bottom: 1.7142857143rem;
    padding-inline: 1.1428571429rem;
  }
}

.important--check {
  padding-block: 5rem 6rem;
}
@media print, screen and (min-width: 48em) {
  .important--check {
    background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/bg_pt_greystripe.png);
    background-repeat: repeat;
  }
}
@media screen and (max-width: 47.9375em) {
  .important--check {
    width: 88%;
    margin-inline: auto;
    padding-block: 0 5.1428571429rem;
  }
}

.check--content {
  position: relative;
  padding: 3.75rem 3rem;
  margin-inline: auto;
  max-width: 50.75rem;
  border: 3px solid var(--clr-sub);
  border-radius: 16px;
  background-color: var(--bg-wht);
}
@media screen and (max-width: 47.9375em) {
  .check--content {
    padding: 2.2857142857rem 1.4285714286rem;
  }
}
@media print, screen and (min-width: 48em) {
  .check--content .ttl img {
    width: 30.5rem;
  }
}
@media print, screen and (min-width: 48em) {
  .check--content .text {
    line-height: 1.67;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .check--content .text {
    padding-inline: 0.5714285714rem;
  }
}
.check--content .posts-tools .post--img {
  border-radius: 0;
}
@media print, screen and (min-width: 48em) {
  .check--content .posts-tools .post--img {
    margin-bottom: 2rem;
  }
}

.important .posts-tools:not(.tools_slide) .post {
  width: 100%;
  margin-bottom: 0;
}
.important .posts-tools:not(.tools_slide) .post .btn a {
  padding: 2.375rem 5.5rem;
  font-size: 1.125rem;
  line-height: 1;
  border-radius: 16px;
}
@media screen and (max-width: 47.9375em) {
  .important .posts-tools:not(.tools_slide) .post .btn a {
    padding: 1.7142857143rem 1.1428571429rem;
    font-size: 1.1428571429rem;
    font-family: var(--font-jp);
    letter-spacing: 0.05em;
  }
}
.important .posts-tools:not(.tools_slide) .post .btn a::before {
  display: none;
}

.important--step {
  position: relative;
}
.important--step .bg {
  background-color: #e3e8ed;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.important--step:not(:last-child) .bg {
  padding-bottom: 16.875rem;
}
@media screen and (max-width: 47.9375em) {
  .important--step:not(:last-child) .bg {
    padding-bottom: clac(10.2857142857rem5.1428571429rem);
  }
}
.important--step:last-child .bg {
  padding-bottom: 8.4375rem;
}
@media screen and (max-width: 47.9375em) {
  .important--step:last-child .bg {
    padding-bottom: 5.1428571429rem;
  }
}
.important--step:nth-child(even) .bg {
  background-color: #f8f8f8;
}
.important--step .bg-yama {
  position: relative;
  width: 100%;
  aspect-ratio: 792/240;
  transform: translateY(1px);
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/step_bg_yane-g01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 47.9375em) {
  .important--step .bg-yama {
    aspect-ratio: 414/112;
    background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/step_bg_yane-g01_sp.svg);
  }
}
.important--step:nth-child(even) .bg-yama {
  background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/step_bg_yane-g02.svg);
}
@media screen and (max-width: 47.9375em) {
  .important--step:nth-child(even) .bg-yama {
    background-image: url(/wp/wp-content/themes/standard_sass/images/blog-important/step_bg_yane-g02_sp.svg);
  }
}
.important--step .important--icon {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  width: 8rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 47.9375em) {
  .important--step .important--icon {
    top: -2.2857142857rem;
    width: 25.1207729469vw;
  }
}
.important--step .important--icon img {
  width: 100%;
}

.important--step:nth-of-type(2) {
  top: calc(-16.875rem * (2 - 1));
}
@media screen and (max-width: 47.9375em) {
  .important--step:nth-of-type(2) {
    top: calc(-10.2857142857rem * (2 - 1));
  }
}

.important--step:nth-of-type(3) {
  top: calc(-16.875rem * (3 - 1));
}
@media screen and (max-width: 47.9375em) {
  .important--step:nth-of-type(3) {
    top: calc(-10.2857142857rem * (3 - 1));
  }
}

.important--step:nth-of-type(4) {
  top: calc(-16.875rem * (4 - 1));
}
@media screen and (max-width: 47.9375em) {
  .important--step:nth-of-type(4) {
    top: calc(-10.2857142857rem * (4 - 1));
  }
}

.important .main_column {
  margin-bottom: calc(-16.875rem * 3);
}
@media screen and (max-width: 47.9375em) {
  .important .main_column {
    margin-bottom: calc(-10.2857142857rem * 3);
  }
}

.step--ttl {
  position: relative;
  top: -6.5rem;
}
@media screen and (max-width: 47.9375em) {
  .step--ttl {
    top: -2.1428571429rem;
  }
}
.step--ttl img {
  width: 30.5rem;
}
@media screen and (max-width: 47.9375em) {
  .step--ttl img {
    width: 90%;
  }
}

.step--contents {
  position: relative;
}
.step--contents:first-of-type {
  padding-top: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .step--contents:first-of-type {
    padding-top: 0;
  }
}
.step--contents:not(:last-child) {
  padding-bottom: 5rem;
}
@media screen and (max-width: 47.9375em) {
  .step--contents:not(:last-child) {
    padding-bottom: 5.1428571429rem;
  }
}
@media print, screen and (min-width: 48em) {
  .step--contents {
    top: -6.5rem;
  }
}

.contents--ttl {
  position: relative;
  margin-inline: auto;
  min-width: 400px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-size: 2rem;
}
@media print, screen and (min-width: 48em) {
  .contents--ttl {
    width: fit-content;
  }
}
@media screen and (max-width: 47.9375em) {
  .contents--ttl {
    min-width: 250px;
    margin-bottom: 2rem;
    font-size: 1.7142857143rem;
  }
}

.step--contents-sub:not(:last-child) {
  padding-bottom: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .step--contents-sub:not(:last-child) {
    padding-bottom: 2.2857142857rem;
  }
}
.step--contents-sub p {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 47.9375em) {
  .step--contents-sub p {
    font-size: 1.1428571429rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .step--contents-sub .textarea {
    padding-inline: 1.1428571429rem;
  }
}
.step--contents-sub .textarea:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .step--contents-sub .textarea:not(:last-child) {
    margin-bottom: 0.7142857143rem;
  }
}
@media print, screen and (min-width: 48em) {
  .step--contents-sub .pickup_post:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.step--other-posts {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.step--other-posts .post--wrap {
  flex-direction: column;
}
.step--other-posts .post-important {
  border: unset;
  padding: 0;
}
.step--other-posts .text {
  width: 100%;
}
.step--other-posts .text img {
  max-width: unset !important;
  object-fit: cover;
}
.step--other-posts .post--img {
  aspect-ratio: 3/2;
  border: unset;
}

.important .step--other-posts .ttl-03 {
  font-size: 1.1428571429rem;
  letter-spacing: 0.03em;
}

.important .step--other-posts .mce-content-body {
  border: unset;
}
@media screen and (max-width: 47.9375em) {
  .important .step--other-posts .mce-content-body {
    padding: 1.1428571429rem 1.7142857143rem;
  }
}

/* movie
**************************************** */
@media print, screen and (min-width: 48em) {
  .posts-movie:not(.movie_slide) {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.0101010101%;
  }
}

@media print, screen and (min-width: 48em) {
  .posts-movie:not(.movie_slide) .post {
    width: 19.1919191919%;
    margin-bottom: 1.0101010101%;
  }
}

.posts-movie .post--new {
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.1875rem;
  height: 2.1875rem;
  color: var(--clr-wht, #fff);
  border: 2px solid;
  border-radius: 50%;
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  line-height: 0.8181818182em;
  z-index: 1;
  pointer-events: none;
  background-color: #ec550e;
}

.posts-movie .post--img {
  margin-bottom: 0.25rem;
  border-radius: 0.625rem;
}
.posts-movie .post--img::before {
  padding-top: 56.25%;
}

.posts-movie .post--ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  letter-spacing: 0.0025em;
  margin-bottom: 0.5em;
}

.posts-movie .post--date {
  padding-top: 0.125rem;
  color: var(--clr-sub, #ccc);
}

.posts-blog .post--read,
.posts-movie .post--read {
  line-height: var(--line-height-hdr, 1.4);
}

.posts-movie .cat_list:not(:last-child) {
  margin-bottom: 0.5rem;
}

/* words
**************************************** */
@media screen and (max-width: 47.9375em) {
  .kana--list {
    font-size: 1.2857142857rem;
  }
  .kana--list:not(.floor--list):has(> :nth-child(5)), .kana--list.floor--list:has(> :nth-child(4)) {
    margin-right: -6.4px;
  }
  .kana--list:not(.floor--list):has(> :nth-child(5)) li, .kana--list.floor--list:has(> :nth-child(4)) li {
    justify-content: space-evenly;
  }
  .kana--list:not(.floor--list):has(> :nth-child(5)) li {
    width: 20%;
  }
  .kana--list:not(.floor--list):has(> :nth-child(5)) li:first-child::before, .kana--list:not(.floor--list):has(> :nth-child(5)) li:nth-child(6)::before, .kana--list:not(.floor--list):has(> :nth-child(5)) li:last-child::after {
    content: "";
    display: block;
    width: 6.4px;
    height: 50%;
    min-height: 18px;
    background-image: radial-gradient(var(--clr-sub, #ccc) 40%, transparent 40%);
    background-size: 6.4px 6.4px;
  }
  .kana--list:not(.floor--list):has(> :nth-child(5)) li:first-child::before, .kana--list:not(.floor--list):has(> :nth-child(5)) li:nth-child(6)::before {
    margin-left: -6.4px;
  }
  .kana--list.floor--list:has(> :nth-child(4)) li {
    width: 25%;
  }
  .kana--list.floor--list:has(> :nth-child(4)) li:first-child::before, .kana--list.floor--list:has(> :nth-child(4)) li:nth-child(5)::before, .kana--list.floor--list:has(> :nth-child(4)) li:last-child::after {
    content: "";
    display: block;
    width: 6.4px;
    height: 50%;
    min-height: 18px;
    background-image: radial-gradient(var(--clr-sub, #ccc) 40%, transparent 40%);
    background-size: 6.4px 6.4px;
  }
  .kana--list.floor--list:has(> :nth-child(4)) li:first-child::before, .kana--list.floor--list:has(> :nth-child(4)) li:nth-child(5)::before {
    margin-left: -6.4px;
  }
}
@media screen and (max-width: 25.6875em) {
  .kana--list {
    font-size: 4.1062801932vw;
  }
}

.kana--list li {
  position: relative;
  display: flex;
  align-items: center;
}
.kana--list li:first-child {
  margin-left: auto;
}
.kana--list li:last-child {
  margin-right: auto;
}
.kana--list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 6.4px;
  height: 50%;
  background-image: radial-gradient(var(--clr-sub, #ccc) 40%, transparent 40%);
  background-size: 6.4px 6.4px;
}
@media screen and (max-width: 47.9375em) {
  .kana--list li:not(:last-child)::after {
    min-height: 18px;
  }
}

.kana--list a {
  position: relative;
  display: block;
  padding: 0 1em;
}
@media print, screen and (min-width: 48em) {
  .kana--list a::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--bg-sub, #ccc);
    opacity: 0;
    transform: translateY(0.5rem);
    transition: var(--transit-default, all 0.4s ease-out);
  }
  .kana--list a:hover::before {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 47.9375em) {
  .kana--list a {
    padding: 0 0.5em;
  }
}
.kana--list a:hover {
  color: var(--clr-main, #1d7fb7);
}

@media print, screen and (min-width: 48em) {
  .words_cat--list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.4814814815%;
    margin-bottom: -1.4814814815%;
  }
}

@media print, screen and (min-width: 48em) {
  .words_cat--list > li {
    padding: 40px 48px;
    width: 49.2592592593%;
    margin-bottom: 1.4814814815%;
  }
}
@media screen and (max-width: 47.9375em) {
  .words_cat--list > li:not(:last-child) {
    margin-bottom: 16px;
  }
}

.words--kana_ttl {
  color: var(--clr-main, #1d7fb7);
}
@media print, screen and (min-width: 48em) {
  .words--kana_ttl {
    position: relative;
    width: 6em;
  }
  .words--kana_ttl::after {
    content: "";
    position: absolute;
    top: 0.65em;
    right: 1em;
    width: 3.25em;
    height: 9px;
    background-image: radial-gradient(#204e70 40%, transparent 40%);
    background-repeat: round;
    background-size: 9px 9px;
  }
}
.words--kana_ttl + .posts-words {
  flex: 1;
}

/* ttl
**************************************** */
.posts-ttl .post:not(:last-child) {
  margin-bottom: 1rem;
}

.posts-ttl .post--ttl {
  position: relative;
  padding: 0.75rem 2rem;
  border-radius: 0.1875rem 0.1875rem 0 0.1875rem;
  background-color: #d5dee6;
  line-height: 1.53;
  letter-spacing: normal;
  min-height: 3.5rem;
  transition: var(--transit-default, all 0.4s ease-out);
}
.posts-ttl .post--ttl::before, .posts-ttl .post--ttl::after {
  position: absolute;
}
.posts-ttl .post--ttl::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  width: 0.875rem;
  height: 0.875rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: var(--bg-main, #1d7fb7);
}
.posts-ttl .post--ttl:hover {
  background-color: var(--bg-sub, #ccc);
}

/* faq
**************************************** */
.posts-faq .post--ttl {
  position: relative;
  padding: 0.75rem 2rem 0.75rem 3.5rem;
  border-radius: 0.1875rem 0.1875rem 0 0.1875rem;
  color: var(--clr-wht, #fff);
  background-color: var(--bg-main, #1d7fb7);
  line-height: 1.53;
  letter-spacing: normal;
  min-height: 3.5rem;
  transition: var(--transit-default, all 0.4s ease-out);
}
.posts-faq .post--ttl::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0.75rem;
  left: 0.75rem;
  width: 2rem;
  height: 2rem;
  font-size: 1.375rem;
  color: var(--clr-main, #1d7fb7);
  background-color: var(--btn-bg-cta, #fff);
  border-radius: 50%;
  font-family: var(--font-en, "Montserrat", sans-serif);
}
.posts-faq .post--ttl::after {
  background-color: var(--bg-wht, #fff);
}
.posts-faq .post--ttl:hover {
  background-color: var(--bg-sub, #ccc);
}

/* tools
**************************************** */
@media print, screen and (min-width: 48em) {
  .posts-tools:not(.tools_slide) {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.1111111111%;
  }
}

@media print, screen and (min-width: 48em) {
  .posts-tools:not(.tools_slide) .post {
    width: 24.1666666667%;
    margin-bottom: 2.2222222222%;
  }
}
@media screen and (max-width: 47.9375em) {
  .posts-tools:not(.tools_slide) .post:not(:last-child) {
    margin-bottom: 24px;
  }
}

.posts-tools .post--catch {
  position: relative;
  background-color: #d5e6f3;
  border-radius: 9999px;
  padding: 0.1em 1em;
  margin-bottom: 1.3125rem;
  letter-spacing: normal;
}
@media screen and (max-width: 47.9375em) {
  .posts-tools .post--catch {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.1em 1.5em;
  }
}
.posts-tools .post--catch::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  background-color: #d5e6f3;
  width: 1rem;
  height: 1rem;
  border-radius: 0 0 0 0.1875rem;
  transform: rotate(-45deg);
}

.posts-tools .post--img {
  border-radius: 0.3125rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .posts-tools .post--img {
    margin-bottom: 1.1428571429rem;
  }
}
.posts-tools .post--img::before {
  padding-top: 66.6666666667%;
}

.posts-tools .post--ttl {
  letter-spacing: 0.025em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.posts-tools .post--ttl:not(:last-child) {
  margin-bottom: 0.5em;
}

.posts-tools .post--txt {
  letter-spacing: 0.0253333333em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* layout-example
**************************************** */
.layout-example--ttl {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-top: 4.75rem;
  text-align: center;
}
@media print, screen and (min-width: 48em) {
  .layout-example--ttl {
    transform: translateX(-0.625rem);
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .layout-example--ttl {
    width: 75%;
    padding-top: 3.4285714286rem;
  }
}
@media print, screen and (min-width: 48em) {
  .layout-example--ttl::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: -5.3125rem;
    display: block;
    width: 10rem;
    height: 6.25rem;
    background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/ttl_dec_01.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
@media print, screen and (min-width: 48em) {
  .layout-example--ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -18.9375rem;
    display: block;
    width: 17.375rem;
    height: 13.875rem;
    background-image: url(/wp/wp-content/themes/standard_sass/images/layout-example/layout_ttl_illust01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@media print, screen and (min-width: 48em) {
  .posts-layout-example.posts-col4:not(.col4_slide) .post {
    margin-bottom: 2.2222222222%;
  }
}

.posts-layout-example .post--img {
  border-radius: 0.3125rem;
  border: 3px solid var(--clr-main, #1d7fb7);
  margin-bottom: 1rem;
}
.posts-layout-example .post--img::before {
  padding-top: 66.6666666667%;
}

.posts-layout-example .post--ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  letter-spacing: 0.0025em;
}
.posts-layout-example .post--ttl:not(:last-child) {
  margin-bottom: 0.5em;
}

.posts-layout-example .post--txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.layout-example_bnr a {
  display: block;
  margin-inline: auto;
  width: fit-content;
}
.layout-example_bnr a:hover {
  opacity: 0.7;
}

.wp-pagenavi + .layout-example_bnr {
  padding-top: 3.5rem;
}
@media screen and (max-width: 47.9375em) {
  .wp-pagenavi + .layout-example_bnr {
    padding-top: 2rem;
  }
}

.layout-example--article .layout-example_bnr:not(.blc-xs) {
  padding-block: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .layout-example--article .layout-example_bnr:not(.blc-xs) {
    padding-block: 1.1428571429rem;
  }
}

/* media
**************************************** */
.posts-media .post--img {
  border-radius: 0.3125rem;
  border: 3px solid var(--clr-main, #1d7fb7);
  margin-bottom: 1rem;
}
.posts-media .post--img::before {
  padding-top: 66.6666666667%;
}

/* seyamadori_limited_sharing
**************************************** */
.posts-seyamadori_limited_sharing .post--img {
  margin-bottom: 0.5rem;
}
.posts-seyamadori_limited_sharing .post--img::before {
  padding-top: 56.25%;
}
.posts-seyamadori_limited_sharing .post--img iframe {
  aspect-ratio: 3/2;
  height: auto;
}

/* news
**************************************** */
.post-type-news .main_column {
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.5rem rgba(33, 80, 116, 0.1);
  background-color: var(--bg-wht, #fff);
  overflow: hidden;
}

.posts-news .post {
  padding: 48px 32px 40px;
}
@media screen and (max-width: 47.9375em) {
  .posts-news .post {
    padding: 24px;
  }
}
.posts-news .post:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}

.posts-news .post--link::before {
  transition: var(--transit-default, all 0.4s ease-out);
}
.posts-news .post--link:hover::before {
  background-color: rgba(33, 80, 116, 0.05);
}

.posts-news .post--ttl:not(:last-child) {
  margin-bottom: 1em;
}

.posts-news:not(.posts-request-answer) .post--txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* voice
**************************************** */
.openable_wrap:not(:last-child) {
  margin-bottom: 1em;
}

.post--reply {
  background-color: #eaf2f9;
  border-radius: 0.625rem;
  padding: 24px 30px;
}
@media screen and (max-width: 47.9375em) {
  .post--reply {
    padding: 16px 20px;
  }
}

.posts-request-answer .post--ttl {
  padding-left: 4rem;
  background-image: url(../../../../images/wp/new/common/survey01-icn.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 2.5625rem;
  min-height: 3.625rem;
}

.posts-request-answer .anchor_link {
  display: block;
  padding-top: 140px;
  margin-top: -140px;
  pointer-events: none;
}

.posts-request-answer .post--ttl-sm,
.post--reply .post--ttl-sm {
  display: flex;
  align-items: center;
  color: #215074;
}
@media screen and (max-width: 47.9375em) {
  .posts-request-answer .post--ttl-sm,
  .post--reply .post--ttl-sm {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.posts-request-answer .post--ttl-sm:not(:last-child),
.post--reply .post--ttl-sm:not(:last-child) {
  margin-bottom: 0.5em;
}

.posts-request-answer .post--txt {
  line-height: 1.87;
}

.request_answer_info {
  position: relative;
  padding: 28px 32px 32px;
  background-image: url(../../../../images/wp/new/common/improve-illust.png);
  background-repeat: no-repeat;
  background-size: 4.5rem 5.25rem;
  background-position: right 1.25rem bottom 1.25rem;
}
.request_answer_info::before, .request_answer_info::after {
  position: absolute;
  content: "";
  border: 20px solid transparent;
}
.request_answer_info::before {
  top: 0;
  right: 0;
  border-top: 20px solid #d3dce3;
  border-right: 20px solid #d3dce3;
}
.request_answer_info::after {
  bottom: 0;
  left: 0;
  border-left: 20px solid #d3dce3;
  border-bottom: 20px solid #d3dce3;
}
.request_answer_info a {
  text-decoration: underline;
}
@media screen and (max-width: 47.9375em) {
  .request_answer_info {
    padding: 24px;
    background-image: none;
  }
}

.request_answer_info--ttl {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #215074;
}

.request_answer_arc {
  padding-bottom: 3rem;
}

.request_answer_arc .ttl-03 {
  padding: 22px 32px 22px 4.5rem;
  font-size: 1.5rem;
  background-image: url(../../../../images/wp/new/common/survey01-ttl-icn.svg);
  background-repeat: no-repeat;
  background-position: left 2rem top 1.4375rem;
  background-size: 1.8125rem;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 47.9375em) {
  .request_answer_arc .ttl-03 {
    padding: 16px 24px 16px 4rem;
    background-position: left 1.5rem top 1rem;
  }
}

/* col4
**************************************** */
@media print, screen and (min-width: 48em) {
  .posts-col4:not(.col4_slide) {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.1111111111%;
  }
}

@media print, screen and (min-width: 48em) {
  .posts-col4:not(.col4_slide) .post {
    width: 24.1666666667%;
    margin-bottom: 1.1111111111%;
  }
}
@media screen and (max-width: 47.9375em) {
  .posts-col4:not(.col4_slide) .post:not(:last-child) {
    margin-bottom: 32px;
  }
}

.col4_slide {
  width: calc(100% + 12px);
  margin-left: -6px;
}

.col4_slide .slick-track {
  display: flex;
}

.col4_slide .slick-list {
  padding-top: 0.5rem;
  margin-top: -0.5rem;
}

.col4_slide .slick-slide {
  height: auto !important;
}

.col4_slide .slick-dots li:last-child {
  margin-right: 6px;
}

.col4_slide .post {
  margin: 0 6px;
}

@media screen and (max-width: 47.9375em) {
  .posts-col4:not(.col4_slide).posts-blog {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3.3707865169%;
  }
  .posts-col4:not(.col4_slide).posts-blog .post {
    width: 48.3146067416%;
    margin-bottom: 3.3707865169% !important;
  }
  .posts-col4:not(.col4_slide).posts-blog .cat_list {
    margin-top: 8px;
    margin-bottom: 0;
  }
  .posts-col4:not(.col4_slide).posts-blog .cat_list a {
    margin: 0;
  }
  .posts-col4:not(.col4_slide).posts-blog .simplefavorite-button {
    display: none;
  }
}
/* col3
**************************************** */
@media print, screen and (min-width: 48em) {
  .posts-col3:not(.col3_slide) {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5151515152%;
  }
}

@media print, screen and (min-width: 48em) {
  .posts-col3:not(.col3_slide) .post {
    width: 32.3232323232%;
    margin-bottom: 1.5151515152%;
  }
}

.col3_slide {
  width: calc(100% + 12px);
  margin-left: -6px;
}

.col3_slide .slick-track {
  display: flex;
}

.col3_slide .slick-list {
  padding-top: 0.5rem;
  margin-top: -0.5rem;
}

.col3_slide .slick-slide {
  height: auto !important;
}

.col3_slide .slick-dots li:last-child {
  margin-right: 6px;
}

.col3_slide .post {
  margin: 0 6px;
}

/* col2
**************************************** */
@media print, screen and (min-width: 48em) {
  .posts-col2 {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3.3333333333%;
  }
}

@media print, screen and (min-width: 48em) {
  .posts-col2 .post {
    width: 48.3333333333%;
  }
  .posts-col2 .post:only-child {
    width: 100%;
  }
}

/* news
**************************************** */
/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}

.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}

.news--archive a {
  color: #fff;
}

/* --- news_list --- */
.news_list .post {
  padding-bottom: 16px;
  padding-top: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 47.9375em) {
  .news_list .post {
    display: block;
  }
}

.news_list .post--info {
  margin-right: 32px;
}
@media screen and (max-width: 47.9375em) {
  .news_list .post--info {
    margin-bottom: 8px;
    margin-right: 0;
  }
}

.news_list .post--link:not([href="javascript:void(0);"]):hover {
  color: var(--clr-main, #1d7fb7);
}

.news_list .post--link:hover svg {
  fill: var(--clr-main, #1d7fb7);
}

.news_list .post--info.flex .post--date + .cat_list {
  margin-left: 16px;
}

/* real-voice
**************************************** */
.real-voice--blc {
  border: 3px solid var(--clr-main, #1d7fb7);
  padding: 48px 40px 32px;
  border-radius: 0.625rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 47.9375em) {
  .real-voice--blc {
    padding: 20px;
  }
}
.real-voice--blc::before {
  left: -3px;
  right: calc(50% + 163.5px);
}
.real-voice--blc::after {
  left: calc(50% + 163.5px);
  right: -3px;
}
.real-voice--blc:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 47.9375em) {
  .real-voice--blc:not(:first-child) {
    margin-top: 40px;
  }
}
.real-voice--blc:not(:last-child) {
  margin-bottom: 56px;
}
@media screen and (max-width: 47.9375em) {
  .real-voice--blc:not(:last-child) {
    margin-bottom: 28px;
  }
}
.real-voice--blc .ttl-03 {
  margin-top: calc(-48px - 0.75em);
  padding-left: 2.7142857143em;
  padding-right: 0.9642857143em;
  background-color: var(--bg-wht, #fff);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../../../../images/wp/new/common/survey01-ttl-icn.svg);
  background-repeat: no-repeat;
  background-position: left 0.8928571429em top 0.1785714286em;
  background-size: 0.9285714286em;
}
@media screen and (max-width: 47.9375em) {
  .real-voice--blc .ttl-03 {
    margin-top: calc(-28px - 0.75em);
    font-size: 1.2857142857rem;
  }
}
.real-voice--blc .scrollbar {
  height: 208px;
  margin-bottom: 16px;
  overflow-y: scroll;
}
@media screen and (max-width: 47.9375em) {
  .real-voice--blc .scrollbar {
    height: 350px;
  }
}
.real-voice--blc .posts:not(:first-child) {
  margin-top: 0 !important;
}
.real-voice--blc .flex p {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 47.9375em) {
  .real-voice--blc .flex .arc_link {
    margin-top: 16px;
    text-align: center;
  }
}
.real-voice--blc .flex .arc_link a {
  position: relative;
  padding: 0 24px 4px 4px;
  border-bottom: 3px solid;
}
.real-voice--blc .flex .arc_link a:hover {
  opacity: 0.5;
}
.real-voice--blc .flex .arc_link a::before,
.real-voice--blc .flex .arc_link a::after {
  content: "";
  position: absolute;
}
.real-voice--blc .flex .arc_link a::before {
  top: 38%;
  right: 4px;
  border-width: 3px;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
.real-voice--blc .flex .arc_link a::after {
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  border-bottom: 2px solid;
}
.real-voice--blc .btn a {
  color: #fff !important;
  border-bottom: none;
}

.posts-real-voice .post {
  display: grid;
  grid-template-columns: 2.25rem auto;
  gap: 1.6875rem;
}
.posts-real-voice .post:not(:last-child) {
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  .posts-real-voice .post {
    grid-template-columns: 1.5rem auto;
    gap: 1rem;
  }
}
.posts-real-voice:has(.openable_area) .post--icon img {
  border-radius: 50%;
  border: 2px solid var(--brd-main);
  margin: 0;
}
.posts-real-voice:not(:has(.openable_area)) .post--txtarea {
  position: relative;
  border-radius: 0.1875rem;
  background-color: #f2f2f2;
  padding: 0.5rem 2rem 0.5rem 0.9375rem;
  text-align: justify;
}
.posts-real-voice:not(:has(.openable_area)) .post--txtarea::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: -0.6875rem;
  width: 0.75rem;
  height: 0.875rem;
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
  background-color: #e3e8ed;
}
@media screen and (max-width: 47.9375em) {
  .posts-real-voice:not(:has(.openable_area)) .post--txtarea {
    text-align: left;
    padding: 0.75rem;
  }
}
.posts-real-voice .openable_wrap {
  position: relative;
  border-radius: 8px;
  background-color: #e3e8ed;
  padding: 1.5rem 2rem;
  text-align: justify;
}
.posts-real-voice .openable_wrap::before {
  content: "";
  position: absolute;
  top: calc(2rem - 0.3125rem);
  left: -0.6875rem;
  width: 0.875rem;
  height: 0.625rem;
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
  background-color: #e3e8ed;
}
@media screen and (max-width: 47.9375em) {
  .posts-real-voice .openable_wrap {
    padding: 1.7142857143rem 2.2857142857rem;
    text-align: left;
  }
}
.posts-real-voice .post--txt {
  line-height: var(--line-height-hdr, 1.4);
  margin-bottom: 0 !important;
}
.posts-real-voice .post--date {
  color: var(--clr-main, #1d7fb7);
}
.posts-real-voice .answer_link a {
  text-decoration: underline;
  color: #215074;
}

.lps_sec.section_pdg:nth-child(2n) .posts-real-voice .ttl-03 {
  background-color: var(--bg-off_wht, #f7f7f7);
}

.arc_voice_info {
  padding: 32px 40px;
  background-color: #eaf2f9;
  border-radius: 10px;
  margin-bottom: 28px;
}

.arc_voice_info--ttl {
  margin-bottom: 16px;
  color: #215074;
  font-size: 1.5rem;
  text-align: center;
}

.arc_voice_info a {
  text-decoration: underline;
}

.real_voice_posts_wrap,
.crew_voice_posts_wrap {
  border: 3px solid #215174;
  padding: 32px 40px;
  border-radius: 10px;
  background-color: #fff;
}

.enquete_attention {
  margin-top: 32px;
  padding: 29px 52px 50px;
  background-color: #eee;
}

.page-request-answer .enquete_attention {
  background-color: #d3dce3;
}

#anchor-enquete_attention {
  display: block;
  padding-top: 120px;
  margin-top: -120px;
  pointer-events: none;
}

.enquete_attention--ttl {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.25rem;
  color: #215074;
}

.enquete_attention--ttl span {
  display: block;
  margin-top: 8px;
}

.enquete_attention--list li {
  position: relative;
  width: 48%;
  padding-left: 1.25rem;
}

.enquete_attention--list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #215074;
}

.voice_more {
  margin-top: 24px;
  padding: 6px 4px;
  background-color: #215174;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease-out;
}

.voice_more:hover {
  opacity: 0.5;
}

.voice_more span {
  position: relative;
  display: inline-block;
  padding-right: 1.25rem;
}

.voice_more span::before,
.voice_more span::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 0.735rem;
  height: 2px;
  background-color: #fff;
}

.voice_more span::after {
  transform: rotate(90deg);
}

@media screen and (max-width: 47.9375em) {
  .arc_voice_info,
  .real_voice_posts_wrap,
  .crew_voice_posts_wrap,
  .enquete_attention {
    padding: 16px;
  }
  .enquete_attention--list li {
    width: 100%;
    line-height: 1.25;
  }
  .enquete_attention--list li:not(:last-child) {
    margin-bottom: 8px;
  }
  .enquete_attention--list li::before {
    top: 3px;
  }
}
/* crew_voice
**************************************** */
.crew_voice {
  padding-top: 64px;
  padding-bottom: 50px;
}
@media screen and (max-width: 47.9375em) {
  .crew_voice {
    padding-top: 32px;
    padding-bottom: 28px;
  }
}
.crew_voice .scrollbar {
  height: 258px;
  mask-image: linear-gradient(to bottom, #000 calc(100% - 2rem), transparent);
}
.crew_voice .btn:not(:last-child) {
  margin-bottom: 12px !important;
}
.crew_voice .btn-list a {
  font-size: 0.875rem;
  padding: 0.25rem 2rem 0.25rem 0.75rem;
  border-width: 1px;
}
.crew_voice .btn-list a::before {
  display: none;
}
.crew_voice .btn-list a::after {
  width: 0.5rem;
  height: 0.5rem;
  border-width: 1px;
}

.crew_voice--ttl {
  position: relative;
  padding-left: 3rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 47.9375em) {
  .crew_voice--ttl {
    width: 90%;
    font-size: 1.5714285714rem;
  }
}
.crew_voice--ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2.0625rem;
  height: 2.25rem;
  background-image: url(../../../../images/wp/new/common/survey01-ttl-icn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.crew_voice--ttl img {
  position: absolute;
  top: -76px;
  right: -103px;
}
@media screen and (max-width: 47.9375em) {
  .crew_voice--ttl img {
    top: -38px;
    right: -19px;
    width: 88px;
  }
}

/* crewvoice
**************************************** */
.posts-crew-voice .post {
  display: grid;
  grid-template-columns: 2.25rem auto;
  gap: 1.6875rem;
}
.posts-crew-voice .post:not(:last-child) {
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  .posts-crew-voice .post {
    grid-template-columns: 1.5rem auto;
    gap: 1rem;
  }
}
.posts-crew-voice:has(.openable_area) .post--icon img {
  border-radius: 50%;
  border: 2px solid var(--brd-main);
  margin: 0.75rem 0 0 0;
}
@media screen and (max-width: 47.9375em) {
  .posts-crew-voice:has(.openable_area) .post--icon img {
    margin: 0;
  }
}
.posts-crew-voice:not(:has(.openable_area)) .post--txtarea {
  position: relative;
  border-radius: 0.1875rem;
  background-color: #f2f2f2;
  padding: 0.5rem 2rem 0.5rem 0.9375rem;
  text-align: justify;
}
.posts-crew-voice:not(:has(.openable_area)) .post--txtarea::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: -0.6875rem;
  width: 0.75rem;
  height: 0.875rem;
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
  background-color: #e3e8ed;
}
@media screen and (max-width: 47.9375em) {
  .posts-crew-voice:not(:has(.openable_area)) .post--txtarea {
    text-align: left;
    padding: 0.75rem;
  }
}
.posts-crew-voice .openable_wrap {
  position: relative;
  border-radius: 8px;
  background-color: #e3e8ed;
  padding: 1.5rem 2rem;
  text-align: justify;
}
.posts-crew-voice .openable_wrap::before {
  content: "";
  position: absolute;
  left: -0.6875rem;
  width: 0.75rem;
  height: 0.875rem;
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
  background-color: #e3e8ed;
}
@media print, screen and (min-width: 48em) {
  .posts-crew-voice .openable_wrap::before {
    top: calc(2rem - 0.3125rem);
  }
}
@media screen and (max-width: 47.9375em) {
  .posts-crew-voice .openable_wrap {
    text-align: left;
    padding: 1rem;
  }
}

/* openable_area
**************************************** */
.posts-real-voice:has(.openable_area) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .posts-real-voice:has(.openable_area) {
    margin-bottom: 3.4285714286rem;
  }
}

.posts-real-voice .post:has(.openable_area) {
  grid-template-columns: 4rem auto;
}

.posts-real-voice .post:has(.openable_area):not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .posts-real-voice .post:has(.openable_area):not(:last-child) {
    margin-bottom: 1.7142857143rem;
  }
}

.posts-crew-voice .post .openable_area,
.posts-real-voice .post .openable_area {
  max-height: 7.3lh;
  overflow: hidden;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 47.9375em) {
  .posts-crew-voice .post .openable_area,
  .posts-real-voice .post .openable_area {
    height: 128px;
  }
}

.posts-real-voice .post .openable_area {
  max-height: unset;
  height: auto;
}

.posts-real-voice .post .openable_area .post--txt {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 47.9375em) {
  .posts-real-voice .post .openable_area .post--txt {
    font-size: 1.1428571429rem;
  }
}
.posts-real-voice .post .openable_area .post--txt.change-clamp {
  -webkit-line-clamp: 5;
}
@media screen and (max-width: 47.9375em) {
  .posts-real-voice .post .openable_area .post--txt.change-clamp {
    -webkit-line-clamp: 10;
  }
}

.posts-real-voice .post .openable_area .post--date {
  display: inline-flex;
  align-items: center;
  color: var(--clr-body);
}
.posts-real-voice .post .openable_area .post--date::after {
  content: "";
  width: 10px;
  height: 2px;
  margin-inline: 0.5rem;
  background-color: var(--clr-body);
}

.posts-real-voice .post:has(.openable_area) .post--icon img {
  width: 4rem;
}

.posts-crew-voice .post--reply {
  margin-top: 1rem;
  background-color: #fff;
}

.posts-crew-voice .post--reply .openable_area {
  max-height: 120px;
}
@media screen and (max-width: 47.9375em) {
  .posts-crew-voice .post--reply .openable_area {
    height: auto;
    max-height: 105px;
  }
}

.posts-crew-voice .post .openable_area.show,
.posts-crew-voice .post--reply .openable_area.show,
.posts-real-voice .post .openable_area.show {
  height: auto;
  max-height: inherit;
  transition: all 0.4s ease-out;
}

.posts-crew-voice .post .openable_btn {
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
.posts-crew-voice .post .openable_btn .font-en {
  display: inline-block;
  font-weight: 600;
  color: #1da2e7;
}
.posts-crew-voice .post .openable_btn .font-en::before {
  content: "";
}
.posts-crew-voice .post .openable_btn:not(.active)::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 0;
  width: 100%;
  height: 38px;
  pointer-events: none;
  background: -moz-linear-gradient(0deg, rgb(227, 232, 237) 0, rgba(227, 232, 237, 0) 100%);
  background: -webkit-linear-gradient(0deg, rgb(227, 232, 237) 0, rgba(227, 232, 237, 0) 100%);
  background: linear-gradient(0deg, rgb(227, 232, 237) 0, rgba(227, 232, 237, 0) 100%);
  transition: all 0.4s ease-out;
}
.posts-crew-voice .post .openable_btn:not(.active) .font-en {
  padding-left: 0.5em;
}
.posts-crew-voice .post .openable_btn:not(.active) .font-en::before {
  content: "...";
}
.posts-crew-voice .post .openable_btn:not(.active):hover {
  opacity: 0.7;
}

.posts-crew-voice .post .post--reply .openable_btn:not(.active)::before {
  background: -moz-linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #fff 0, rgba(255, 255, 255, 0) 100%);
}

.posts-real-voice .post .openable_btn {
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
.posts-real-voice .post .openable_btn .font-en {
  display: inline-block;
  font-size: 1.1428571429rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--clr-main);
}
.posts-real-voice .post .openable_btn:not(.active):hover {
  opacity: 0.7;
}

/* yell
**************************************** */
.posts-yell .post {
  display: grid;
  grid-template-columns: 1.75rem auto;
  gap: 1rem;
  padding: 1rem 0.3125rem;
}
.posts-yell .post::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradi- ---ent(to right, #aaa, #aaa 20%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
  background-size: 3px 3px;
}
.posts-yell .post--icon {
  display: flex;
  align-items: flex-start;
}
.posts-yell .post--txt {
  letter-spacing: normal;
  line-height: 1.8;
}
.posts-yell .post--date {
  margin-right: 0.5rem;
}

/* housemaker
**************************************** */
.posts-housemaker .post {
  padding: 36px 0 40px;
}
@media screen and (max-width: 47.9375em) {
  .posts-housemaker .post {
    padding: 18px 0 20px;
  }
}
.posts-housemaker .post:not(:last-child) {
  border-bottom: 1px dotted #aaaaaa;
}
.posts-housemaker .post--date {
  display: flex;
  align-items: center;
}
.posts-housemaker .post--new {
  display: inline-block;
  color: var(--bg-wht);
  font-size: 0.75rem;
  background-color: #ec550e;
  border-radius: 999px;
  line-height: 1;
  padding: 4px 20px;
  margin-left: 8px;
}
@media screen and (max-width: 47.9375em) {
  .posts-housemaker .post--new {
    padding: 4px 14px;
    margin-left: 6px;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */
/* temporary-registration
/* registration
**************************************** */
.page-temporary-registration,
.page-registration {
  font-size: 1.125rem;
  line-height: 1.75;
}
@media screen and (max-width: 47.9375em) {
  .page-temporary-registration,
  .page-registration {
    font-size: 1.1428571429rem;
  }
}
@media print, screen and (min-width: 48em) {
  .page-temporary-registration .ttl-img,
  .page-registration .ttl-img {
    display: block;
    width: 28.75rem;
    margin-inline: auto;
  }
}

.crew_form {
  margin-inline: calc(50% - 50vw);
}
@media screen and (max-width: 47.9375em) {
  .crew_form {
    margin-bottom: 6.25rem;
  }
}

.crew_form--box {
  width: 92%;
  max-width: 640px;
  margin-inline: auto;
  padding: 1.7142857143rem;
  border-radius: 1.1428571429rem;
}
.crew_form--box .txt-attention {
  color: var(--clr-body);
  line-height: 1.5;
}
.crew_form--box > ul > li:not(:last-child) {
  border-bottom: 1px dotted #aaa;
  padding-bottom: 1.1428571429rem;
}
.crew_form--box li:not(:first-child) {
  padding-top: 1.1428571429rem;
}
.crew_form--box .datafield.flex {
  gap: 0.2857142857rem;
}

.crew_form--box-child {
  padding-left: 1em;
}

.crew_form input[type=text],
.crew_form input[type=email],
.crew_form input[type=tel],
.crew_form input[type=date],
.crew_form input[type=password],
.crew_form select,
.crew_form textarea {
  width: 100%;
  padding: 0.7857142857rem 1.2857142857rem;
  font-size: 16px;
  line-height: 1.75;
  border: 1px solid #aaa;
  border-radius: 0.2857142857rem;
  background-color: var(--bg-wht);
}
.crew_form input[type=text],
.crew_form input[type=email],
.crew_form input[type=tel],
.crew_form input[type=date],
.crew_form input[type=password],
.crew_form select {
  height: 56px;
}
.crew_form input[type=checkbox] {
  width: 1.1428571429rem;
  margin-top: 0.4285714286rem;
  border-radius: 0.125rem;
  border: solid 1px #aaa;
  background-color: var(--bg-wht);
  accent-color: var(--bg-main);
  aspect-ratio: 1;
}
.crew_form input[type=checkbox].lg {
  width: 1.7142857143rem;
  margin-top: 0;
}
.crew_form input[type=radio] {
  position: absolute;
  margin: 0;
  margin-left: -22px;
  margin-top: 0.7em;
}
.crew_form textarea {
  resize: vertical;
  min-height: 6.25rem;
  max-height: 25rem;
  transition: none;
}

.crew_form--radiolist {
  padding-left: 0.5em;
}

.crew_form--radiolist li {
  position: relative;
  padding-left: 22px;
  padding-top: 0.5714285714rem !important;
}
@media print, screen and (min-width: 48em) {
  .crew_form--radiolist li {
    font-size: 1.0625rem;
  }
}

.crew_form--checklist li {
  position: relative;
}

.crew_form--label {
  display: flex;
  align-items: flex-start;
  line-height: 1.75;
}
.crew_form--label span {
  line-height: inherit;
  letter-spacing: inherit;
}
.crew_form--label:not(:last-child) {
  margin-bottom: 0.4285714286rem;
}
.crew_form--label .label_icon {
  flex-shrink: 0;
  margin-left: auto;
  padding: 0.4285714286rem 0.7142857143rem;
  color: var(--clr-wht);
  font-size: 0.8571428571rem;
  line-height: 1;
  border-radius: 0.2857142857rem;
}
.crew_form--label .required {
  background-color: #ec550e;
}
.crew_form--label .any {
  background-color: #aaa;
}

.crewok_register_ttl {
  position: relative;
  z-index: 0;
  height: 1em;
  margin-bottom: 1.2857142857rem;
}
@media print, screen and (min-width: 48em) {
  .crewok_register_ttl {
    padding-block: 2.5rem;
  }
}
.crewok_register_ttl img {
  max-width: fit-content;
  flex-grow: 1;
}
@media screen and (max-width: 47.9375em) {
  .crewok_register_ttl img {
    width: 50%;
  }
}
.crewok_register_ttl span {
  flex-shrink: 0;
}

@media print, screen and (min-width: 48em) {
  .crewok_register--list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
}
@media print, screen and (min-width: 48em) {
  .crewok_register--cont {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .crewok_register--cont:not(:last-child) {
    margin-bottom: 1.1428571429rem;
  }
}
.crewok_register--cont .editor-ttl {
  margin-bottom: 0 !important;
  color: var(--clr-wht);
  font-size: 1.2857142857rem;
  text-align: center;
  background-color: var(--bg-sub);
  border-radius: 0.2857142857rem;
}

.crewok_register--columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  height: 100%;
  padding-top: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .crewok_register--columns {
    grid-template-columns: 9.6428571429rem 1fr;
    gap: 0.5714285714rem;
    padding-top: 2.2857142857rem;
  }
}
.crewok_register--columns li {
  position: relative;
  display: grid;
  place-items: center;
  padding: 4rem 0.5rem 1.75rem;
  line-height: 1.428;
  text-align: center;
  border-radius: 0.2857142857rem;
  background-color: #e3e8ed;
}
@media screen and (max-width: 47.9375em) {
  .crewok_register--columns li {
    padding: 2.8571428571rem 0.5714285714rem 2rem;
  }
}
.crewok_register--columns li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -0.7142857143rem;
  display: block;
  width: 5.1428571429rem;
  height: 5.2857142857rem;
  background-image: var(--img);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 72/37;
}
.crewok_register--columns .ttl {
  inset-inline: 0;
  top: -2.2857142857rem;
  height: 5.2857142857rem;
  margin-inline: auto;
}
@media screen and (max-width: 47.9375em) {
  .crewok_register--columns .ttl {
    padding-inline: 0.7142857143rem;
  }
}
@media print, screen and (min-width: 48em) {
  .crewok_register--columns .crewng_no {
    width: 6.875rem;
  }
}
.crewok_register--columns .or-icon {
  display: inline-grid;
  place-items: center;
  width: 1rem;
  margin-block: 0.4285714286rem;
  color: var(--clr-wht);
  font-size: 0.5714285714rem;
  letter-spacing: 0;
  line-height: 1;
  background-color: var(--bg-main);
  aspect-ratio: 1;
  border-radius: 50%;
}

.count_lists {
  counter-reset: number;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .count_lists {
    padding: 1.1428571429rem;
  }
}
.count_lists li {
  position: relative;
  margin-top: 0 !important;
  letter-spacing: 0.48px;
}
@media print, screen and (min-width: 48em) {
  .count_lists li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.count_lists li:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .count_lists li:not(:last-child) {
    margin-bottom: 1.7142857143rem;
  }
}
.count_lists li::before {
  counter-increment: number;
  content: counter(number);
  display: grid;
  place-content: center;
  width: 2.2857142857rem;
  color: var(--clr-wht);
  font-size: 1.4285714286rem;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  background-color: var(--bg-main);
  border-radius: 50%;
  aspect-ratio: 1;
}
@media print, screen and (min-width: 48em) {
  .count_lists li::before {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .count_lists li::before {
    position: absolute;
    width: 1.7142857143rem;
    font-size: 0.9285714286rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .count_lists li .txt-main {
    padding-left: 2.5714285714rem;
  }
}
.count_lists .txtarea {
  padding-left: 0 !important;
}

.temporary_form {
  padding-top: 0;
}
.temporary_form::before {
  content: "";
  width: 100%;
  position: absolute;
  top: -2rem;
  height: 2rem;
  scale: -1 1;
  background: url(../../../../images/wp/new/temporary-registration/sec_bg_jgzg01_sp.svg) top repeat-x;
  background-size: auto 100%;
}

.temporary_form--lists {
  margin-bottom: 1.1428571429rem;
  padding-block: 1.1428571429rem;
  line-height: 1.714;
  border-bottom: 1px dotted #aaa;
}
@media print, screen and (min-width: 48em) {
  .temporary_form--lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .temporary_form--lists {
    column-count: 2;
    break-inside: avoid;
  }
}
.temporary_form--lists li {
  border: none !important;
  padding: 0 !important;
}

.registration_btn {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: fit-content;
  min-width: min(25rem, 100%);
  margin-inline: auto;
  padding: 1.7142857143rem;
  color: var(--clr-main);
  font-family: var(--font-jp);
  font-size: 1.1428571429rem;
  text-align: center;
  line-height: 1.625;
  border-radius: 1.1428571429rem;
  background-color: #ffe678;
}
@media screen and (max-width: 47.9375em) {
  .registration_btn {
    width: 100%;
    min-width: min(17.5rem, 100%);
  }
}
.registration_btn::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.6428571429rem / 2);
  width: 0.6428571429rem;
  aspect-ratio: 1;
  border-right: 1px solid;
  border-top: 1px solid;
  rotate: 45deg;
}

.registration_form {
  position: relative;
}
.registration_form::before {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  z-index: 1;
  display: block;
  width: 100%;
  background: url(../../../../images/wp/new/temporary-registration/sec_bg_yane_02_sp.svg);
  background-size: cover;
  aspect-ratio: 828/192;
}

.registration_form--cont {
  padding-top: 6.25rem;
  padding-bottom: calc(2.5rem + 23.1884057971vw);
}
@media screen and (max-width: 47.9375em) {
  .registration_form--cont {
    padding-top: 8.5714285714rem;
    padding-bottom: 8.5714285714rem;
    padding-bottom: calc(2.8571428571rem + 23.1884057971vw);
  }
}
.registration_form--cont::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -0.7857142857rem;
  inset-inline: 0;
  display: block;
  width: 8.0714285714rem;
  margin-inline: auto;
  opacity: 0.2;
  aspect-ratio: 113/109;
  background: url(../../../../images/wp/new/temporary-registration/logomark_01_sp.svg);
  background-size: cover;
}

.registration_attention {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}
@media screen and (max-width: 47.9375em) {
  .registration_attention {
    padding-bottom: 2.8571428571rem;
  }
}
.registration_attention::before {
  content: "";
  position: absolute;
  top: 15.1041666667vw;
  bottom: 0;
  inset-inline: 0;
  z-index: 1;
  background-color: #c7d2db;
}
@media screen and (max-width: 47.9375em) {
  .registration_attention::before {
    top: 0;
  }
}
.registration_attention .inner {
  margin-top: -16.6666666667vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 47.9375em) {
  .registration_attention .inner {
    margin-top: 0;
  }
}

.registration_attention--lists .txtarea {
  position: relative;
  padding: 2.2857142857rem;
  border-radius: 1.1428571429rem;
  background-color: var(--bg-wht);
}
.registration_attention--lists:has(.ttl) .txtarea {
  margin-top: 2.2857142857rem;
}
.registration_attention--lists .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 20.625rem;
  margin-top: calc(-2.2857142857rem + -2.2857142857rem);
  margin-inline: auto;
  padding-top: 2.2857142857rem;
  color: var(--clr-wht);
  background-image: url(../../../../images/wp/new/temporary-registration/rules_ttl_bg_sankaku_sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 528/180;
}
.registration_attention--lists iframe {
  display: block;
  width: 100%;
  max-width: 40rem;
  height: auto;
  margin-inline: auto;
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
}

.registration_terms--scroll {
  height: 26rem;
  padding: 1.75rem;
  overflow: auto;
  line-height: 1.875;
  border-radius: 0.5rem;
  background-color: var(--bg-wht);
}

/* crew-rule
**************************************** */
.page-crew-rule:not(.page-no-login) {
  padding-top: 92px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--clr-text-primary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) {
    padding-top: 80px;
    font-size: 0.8571428571rem;
  }
}
.page-crew-rule:not(.page-no-login) a {
  text-decoration: underline;
}
.page-crew-rule:not(.page-no-login) a:hover {
  text-decoration: none;
}
.page-crew-rule:not(.page-no-login) .inner {
  max-width: 62.5rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .inner {
    width: 92%;
  }
}
.page-crew-rule:not(.page-no-login) .section_pdg {
  padding-block: 3.5rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .section_pdg {
    padding-block: 2.8571428571rem;
  }
}
.page-crew-rule:not(.page-no-login) .ttl-01,
.page-crew-rule:not(.page-no-login) .ttl-02,
.page-crew-rule:not(.page-no-login) .ttl-03 {
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: var(--clr-text-secondary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .ttl-01,
  .page-crew-rule:not(.page-no-login) .ttl-02,
  .page-crew-rule:not(.page-no-login) .ttl-03 {
    margin-bottom: 1.7142857143rem;
  }
}
.page-crew-rule:not(.page-no-login) .ttl-01 {
  font-size: 1.75rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .ttl-01 {
    font-size: 1.2857142857rem;
  }
}
.page-crew-rule:not(.page-no-login) .ttl-01.ttl-bg {
  padding: 1rem 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .ttl-01.ttl-bg {
    padding: 0.8571428571rem 1.4285714286rem;
  }
}
.page-crew-rule:not(.page-no-login) .ttl-02 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .ttl-02 {
    font-size: 1.1428571429rem;
  }
}
.page-crew-rule:not(.page-no-login) .ttl-03 {
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .ttl-03 {
    font-size: 1rem;
  }
}
.page-crew-rule:not(.page-no-login) .ttl-bg {
  text-align: center;
  border-radius: 8px;
  background-color: var(--clr-bg-01-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .ttl-bg {
    margin-bottom: 1.1428571429rem;
  }
}
.page-crew-rule:not(.page-no-login) .text {
  font-size: 1.125rem !important;
  line-height: 1.8;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .text {
    text-align: left;
    font-size: 1rem !important;
  }
}
.page-crew-rule:not(.page-no-login) .txt-thin {
  color: var(--clr-text-placeholder-crew);
}
.page-crew-rule:not(.page-no-login) .txt-bold {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--clr-text-secondary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .txt-bold {
    font-size: 1rem;
  }
}
.page-crew-rule:not(.page-no-login) .header {
  height: 92px;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .header {
    height: 80px;
  }
}
.page-crew-rule:not(.page-no-login) .breadcrumbs {
  padding-block: 1.5rem 3rem;
  background-color: var(--bg-wht);
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-text-primary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .breadcrumbs {
    padding-block: 1.1428571429rem;
    font-size: 1rem;
  }
}
.page-crew-rule:not(.page-no-login) .breadcrumbs a {
  text-decoration: none;
  transition: var(--transit-default);
  color: var(--clr-text-primary-crew);
}
.page-crew-rule:not(.page-no-login) .breadcrumbs a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .breadcrumbs > .inner {
    height: fit-content;
    overflow: visible;
  }
}
.page-crew-rule:not(.page-no-login) .breadcrumb--list {
  white-space: pre-wrap;
}
.page-crew-rule:not(.page-no-login) .page_ttl {
  padding-block: 2rem;
  background-color: var(--clr-bg-02-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .page_ttl {
    padding-block: 2.5rem;
  }
}
.page-crew-rule:not(.page-no-login) .page_ttl-jp {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: none;
  color: var(--clr-text-secondary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .page_ttl-jp {
    font-size: 1.7142857143rem;
  }
}
.page-crew-rule:not(.page-no-login) .page_ttl-en {
  display: none;
}
.page-crew-rule:not(.page-no-login) .num-list li,
.page-crew-rule:not(.page-no-login) .ttl-list li {
  margin-bottom: 1rem;
}
.page-crew-rule:not(.page-no-login) .num-list .ttl,
.page-crew-rule:not(.page-no-login) .ttl-list .ttl {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--clr-text-secondary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .num-list .ttl,
  .page-crew-rule:not(.page-no-login) .ttl-list .ttl {
    font-size: 1rem;
  }
}
.page-crew-rule:not(.page-no-login) .num-list li {
  position: relative;
  padding-left: 3rem;
  counter-increment: num-list;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .num-list li {
    padding-left: 2.5714285714rem;
  }
}
.page-crew-rule:not(.page-no-login) .num-list li::before {
  content: counter(num-list);
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: var(--clr-wht);
  background-color: var(--clr-primary-default-crew);
  border-radius: 999px;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .num-list li::before {
    width: 1.7142857143rem;
    height: 1.7142857143rem;
    font-size: 0.8571428571rem;
  }
}
.page-crew-rule:not(.page-no-login) .num-list .ttl {
  display: inline-block;
  padding-bottom: 0.25rem;
  line-height: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .num-list .ttl {
    line-height: 1.7142857143rem;
  }
}
.page-crew-rule:not(.page-no-login) .ttl-list {
  list-style: none;
  margin-left: 0;
}
.page-crew-rule:not(.page-no-login) .item--btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  margin-inline: auto;
  border: 1px solid var(--clr-text-placeholder-crew);
  cursor: pointer;
  transition: var(--transit-default);
}
.page-crew-rule:not(.page-no-login) .item--btn:has(.open.active) {
  color: var(--clr-text-placeholder-crew);
}
.page-crew-rule:not(.page-no-login) .item--btn:hover {
  color: var(--clr-text-placeholder-crew);
}
.page-crew-rule:not(.page-no-login) .item--btn:hover .open::before,
.page-crew-rule:not(.page-no-login) .item--btn:hover .open::after {
  background-color: var(--clr-text-placeholder-crew);
}
.page-crew-rule:not(.page-no-login) .item--btn .open {
  position: relative;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  transition: var(--transit-default);
}
.page-crew-rule:not(.page-no-login) .item--btn .open::before, .page-crew-rule:not(.page-no-login) .item--btn .open::after {
  content: "";
  position: absolute;
  background-color: var(--clr-text-primary-crew);
  transition: var(--transit-default);
}
.page-crew-rule:not(.page-no-login) .item--btn .open::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.page-crew-rule:not(.page-no-login) .item--btn .open::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.page-crew-rule:not(.page-no-login) .item--btn .open.active {
  transform: rotate(180deg);
}
.page-crew-rule:not(.page-no-login) .item--btn .open.active::before {
  background-color: var(--clr-text-placeholder-crew);
}
.page-crew-rule:not(.page-no-login) .item--btn .open.active::after {
  opacity: 0;
}
.page-crew-rule:not(.page-no-login) .item--content {
  display: none;
  transform: translateY(-1px);
  padding: 2rem 2.5rem 2.5rem 2.5rem;
  border: 1px solid var(--clr-text-placeholder-crew);
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .anchor_link--wrap ul {
    flex-direction: column;
  }
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap li {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .anchor_link--wrap li {
    width: 100%;
    text-align: center;
  }
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap li:last-child {
  margin-bottom: 0;
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--clr-primary-default-crew);
  transition: 0.2s linear;
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap li:hover::before {
  height: 5px;
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap li a {
  position: relative;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  color: var(--clr-text-primary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .anchor_link--wrap li a {
    padding: 0.5714285714rem 1.1428571429rem 0.5714285714rem 0.5714285714rem;
    text-align: center;
    font-size: 1rem;
  }
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap li .deco {
  position: relative;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background-color: var(--clr-primary-default-crew);
}
.page-crew-rule:not(.page-no-login) .anchor_link--wrap li .deco::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateY(-1px) rotate(45deg);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .page_rule--anchor .item--btn {
    font-size: 1rem;
  }
}
.page-crew-rule:not(.page-no-login) .page_rule--anchor .item--content {
  display: block;
  padding: 1.4285714286rem 1.4285714286rem 2.2857142857rem 1.4285714286rem;
}
.page-crew-rule:not(.page-no-login) .parts--faq .ttl-02 {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .parts--faq .ttl-02 {
    padding-top: 0.5714285714rem;
  }
}
.page-crew-rule:not(.page-no-login) .parts--faq .ttl-02::before, .page-crew-rule:not(.page-no-login) .parts--faq .ttl-02::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  width: 2px;
  height: 1.75rem;
  background-color: var(--clr-primary-default-crew);
}
.page-crew-rule:not(.page-no-login) .parts--faq .ttl-02::before {
  left: -1.5rem;
  transform: rotate(-30deg);
}
.page-crew-rule:not(.page-no-login) .parts--faq .ttl-02::after {
  right: -1.5rem;
  transform: rotate(30deg);
}
.page-crew-rule:not(.page-no-login) .parts--faq .btnarea-more--item:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .parts--faq .btnarea-more--item:not(:last-child) {
    margin-bottom: 1.7142857143rem;
  }
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--btn {
  justify-content: space-between;
  padding-inline: 2.5rem;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7;
  border: 0;
  color: var(--clr-text-secondary-crew);
  background-color: var(--clr-bg-02-crew);
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .parts--faq .item--btn {
    font-size: 1.1428571429rem;
    gap: 0.5714285714rem;
    padding: 1.1428571429rem 1.4285714286rem;
  }
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--btn:has(.open.active) {
  color: var(--clr-text-secondary-crew);
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--btn:hover {
  color: var(--clr-text-secondary-crew);
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--btn:hover .open::before,
.page-crew-rule:not(.page-no-login) .parts--faq .item--btn:hover .open::after {
  background-color: var(--clr-text-secondary-crew);
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--content {
  transform: none;
  padding-block: 2rem;
  border-top: 0;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .parts--faq .item--content {
    padding: 1.7142857143rem 1.4285714286rem;
    font-size: 1rem;
  }
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--content p:not(:last-child),
.page-crew-rule:not(.page-no-login) .parts--faq .item--content ul:not(:last-child),
.page-crew-rule:not(.page-no-login) .parts--faq .item--content ol:not(:last-child) {
  margin-bottom: 1rem;
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--content a {
  text-decoration: underline;
  color: var(--clr-text-secondary-crew);
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--content a:hover {
  text-decoration: none;
}
.page-crew-rule:not(.page-no-login) .parts--faq .item--content ul {
  margin-left: 1.5em;
  list-style: disc;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .parts--faq .item--content p,
  .page-crew-rule:not(.page-no-login) .parts--faq .item--content li,
  .page-crew-rule:not(.page-no-login) .parts--faq .item--content span {
    font-size: 0.8571428571rem;
  }
}
.page-crew-rule:not(.page-no-login) .parts--faq .open::before,
.page-crew-rule:not(.page-no-login) .parts--faq .open::after {
  background-color: var(--clr-primary-default-crew);
}
.page-crew-rule:not(.page-no-login) .parts--faq .open::before {
  height: 3px;
}
.page-crew-rule:not(.page-no-login) .parts--faq .open::after {
  width: 3px;
}
.page-crew-rule:not(.page-no-login) .parts--box {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--clr-bg-01-crew);
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .parts--box {
    padding: 1.7142857143rem;
  }
}
.page-crew-rule:not(.page-no-login) .parts--box .ttl-02 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .parts--box .ttl-02 {
    margin-bottom: 0.5714285714rem;
  }
}
.page-crew-rule:not(.page-no-login) footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) footer {
    padding: 2.8571428571rem;
  }
}
.page-crew-rule:not(.page-no-login) .footer--link {
  display: flex;
}
.page-crew-rule:not(.page-no-login) .footer--link li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
  text-decoration: underline;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .footer--link li a {
    font-size: 0.8571428571rem;
  }
}
.page-crew-rule:not(.page-no-login) .footer--link li a:hover {
  text-decoration: none;
}
.page-crew-rule:not(.page-no-login) .footer--link li:last-child a {
  padding-inline: 1rem;
}
.page-crew-rule:not(.page-no-login) .footer--link li:not(:last-child) a::after {
  content: "";
  width: 1px;
  height: 1.3em;
  background-color: #1e1e1e;
}
.page-crew-rule:not(.page-no-login) .copyright {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .page-crew-rule:not(.page-no-login) .copyright {
    font-size: 0.8571428571rem;
  }
}

.page_rule--explanation > .ttl-01 {
  transform: translateY(50%);
  width: fit-content;
  margin-bottom: 0;
  margin-inline: auto;
  padding-inline: 1.5rem;
  line-height: 1;
  background-color: var(--clr-wht);
}

.explanation--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem;
  margin-bottom: 3.5rem;
  border: 2px solid var(--clr-primary-default-crew);
  border-radius: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .explanation--content {
    grid-template-columns: 1fr;
    gap: 1.4285714286rem;
    padding: 2.2857142857rem 1.7142857143rem;
    margin-bottom: 2.2857142857rem;
  }
}
.explanation--content .parts--box .ttl-02 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .explanation--content .parts--box .ttl-02 {
    gap: 0.5714285714rem;
  }
}
.explanation--content .parts--box .ttl-02::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(/wp/wp-content/themes/standard_sass/images/crew-rule/icn-pen.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .explanation--content .parts--box .textarea {
    font-size: 0.8571428571rem;
  }
}

.page_rule--flow .ttl-01:not(.ttl-bg) {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .page_rule--flow .ttl-01:not(.ttl-bg) {
    gap: 1.1428571429rem;
    text-align: center;
  }
}
.page_rule--flow .ttl-01:not(.ttl-bg)::before, .page_rule--flow .ttl-01:not(.ttl-bg)::after {
  content: "";
  transform: translateY(-50%);
  width: 100%;
  min-width: 3rem;
  height: 1px;
  background-color: var(--clr-text-secondary-crew);
}
@media screen and (max-width: 47.9375em) {
  .page_rule--flow .ttl-01:not(.ttl-bg)::before, .page_rule--flow .ttl-01:not(.ttl-bg)::after {
    min-width: 2.5714285714rem;
  }
}
.page_rule--flow .moviearea {
  position: relative;
  width: 50rem;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 47.9375em) {
  .page_rule--flow .moviearea {
    width: 100%;
  }
}
.page_rule--flow .moviearea video {
  max-width: 100%;
}
.page_rule--flow .moviearea--btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: var(--transit-default);
  cursor: pointer;
}
.page_rule--flow .moviearea--btn::before {
  content: "";
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.25rem;
  aspect-ratio: 132/108;
  background-image: url(/wp/wp-content/themes/standard_sass/images/crew-rule/icn-play.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .page_rule--flow .moviearea--btn::before {
    width: 4.5714285714rem;
  }
}
.page_rule--flow .moviearea--btn:hover {
  opacity: 0.7;
}
.page_rule--flow .rule--item:not(:last-child),
.page_rule--flow .text:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .page_rule--flow .rule--item:not(:last-child) {
    margin-bottom: 1.1428571429rem;
  }
  .page_rule--flow .text:not(:last-child) {
    margin-bottom: 1.7142857143rem;
  }
}

.rule--item p,
.rule--item td,
.rule--item li {
  font-size: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .rule--item p,
  .rule--item td,
  .rule--item li {
    font-size: 0.8571428571rem;
  }
}
.rule--item p:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .rule--item p:not(:last-child) {
    margin-bottom: 1.1428571429rem;
  }
}
.rule--item ul {
  list-style: disc;
  margin-left: 1.5em;
}
.rule--item .img {
  width: fit-content;
  margin-inline: auto;
}
@media print, screen and (min-width: 48em) {
  .rule--item .table-01 tr:not(:last-child) th,
  .rule--item .table-01 tr:not(:last-child) td {
    padding-bottom: 1rem;
  }
}
.rule--item .table-01 th {
  width: 24%;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.7;
  text-align: left;
  color: var(--clr-text-secondary-crew);
}
@media print, screen and (min-width: 48em) {
  .rule--item .table-01 th {
    padding-right: 4%;
  }
}
@media screen and (max-width: 47.9375em) {
  .rule--item .table-01,
  .rule--item .table-01 th,
  .rule--item .table-01 td {
    width: 100%;
  }
  .rule--item .table-01 th,
  .rule--item .table-01 td {
    display: block;
  }
  .rule--item .table-01 th {
    padding-bottom: 0.2857142857rem;
  }
  .rule--item .table-01 tr:not(:last-child) td {
    padding-bottom: 0.5714285714rem;
  }
}

@media print, screen and (min-width: 48em) {
  .rule-02 .img {
    padding-block: 1rem;
  }
}

.rule-05 .parts--box {
  padding: 3.5rem;
  border-radius: 0;
}
@media screen and (max-width: 47.9375em) {
  .rule-05 .parts--box {
    padding: 2.2857142857rem 1.4285714286rem;
  }
}
.rule-05 .parts--box .ttl-02 {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .rule-05 .parts--box .ttl-02 {
    gap: 1.1428571429rem;
    margin-bottom: 1.1428571429rem;
  }
}
.rule-05 .parts--box .ttl-02::before {
  content: "";
  width: 2.875rem;
  height: 2.875rem;
  background-image: url(/wp/wp-content/themes/standard_sass/images/crew-rule/icn-notice.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .rule-05 .parts--box .ttl-02::before {
    width: 2.8571428571rem;
    height: 2.8571428571rem;
  }
}

.rule-08 .parts--faq:not(:last-child) {
  margin-bottom: 5rem;
}

.crew-rule--thanks {
  position: relative;
  display: none;
  width: 100%;
  padding: 4rem;
  border-radius: 2rem;
  color: var(--clr-wht);
  background-color: var(--clr-primary-default-crew);
}
.crew-rule--thanks .ttl {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.5;
}
.crew-rule--thanks .deco--content {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 12.5rem;
  height: 12.5rem;
  overflow: hidden;
}
.crew-rule--thanks .deco {
  display: inline-block;
  position: absolute;
  left: -4.1875rem;
  top: 3.75rem;
  width: 18.75rem;
  text-align: center;
  font-size: 1.75rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  background: #c96855;
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.crew-rule--thanks .deco::before, .crew-rule--thanks .deco::after {
  position: absolute;
  content: "";
  border-top: 0.75rem solid #914839;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  bottom: -0.75rem;
  z-index: -1;
}
.crew-rule--thanks .deco::before {
  left: 0.125rem;
}
.crew-rule--thanks .deco::after {
  right: 0.0625rem;
}
.crew-rule--thanks .btn a {
  padding-block: 2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1;
  color: var(--clr-text-secondary-crew);
  background-color: var(--clr-wht);
  border-radius: 999px;
}
@media print, screen and (min-width: 48em) {
  .crew-rule--thanks .btn a {
    width: 25rem;
  }
}
.crew-rule--thanks .btn a:hover {
  opacity: 0.7;
}
.crew-rule--thanks .btn a::before {
  right: 2.5rem !important;
  color: var(--clr-text-secondary-crew) !important;
}

.rule--external_link {
  display: flex;
  line-height: 1.6;
}
@media print, screen and (min-width: 48em) {
  .rule--external_link {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .rule--external_link {
    flex-direction: column;
    align-items: center;
  }
}

/* ##############################################################################

    seyama_jirushi

############################################################################## */
.page-seyama-jirushi {
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 47.9375em) {
  .page-seyama-jirushi {
    font-size: 1rem;
  }
}
.page-seyama-jirushi .txt-link {
  text-decoration: underline;
  color: var(--clr-primary-default);
}

.seyama_jirushi {
  --bg-01: #f7f7f4;
  --bg-02: #d3dce3;
  --bg-03: #e3e8ed;
  --bg-04: #c7d2db;
  --border: #a7b9c7;
  --clr-primary-default: #215074;
  --clr-primary-dark: #36536b;
  --clr-primary-light: #2e9ad4;
  --clr-secondary-default: #ec550e;
  --clr-secondary-dark: #d03030;
  --clr-secondary-light: #f25353;
  --clr-text-primary: #535353;
  --clr-text-secondary: #7a7a81;
  --clr-text-placeholder: #cccccc;
  --clr-text-light: #f7f7f7;
  --clr-sub-01: #fff7d6;
  --clr-mono-01: #eee;
  --clr-mono-02: #cccccc;
  --clr-mono-03: #aaaaaa;
  --clr-mono-04: #888888;
  --clr-mono-05: #666666;
  --clr-mono-06: #444444;
  --clr-mono-07: #999999;
  overflow: clip;
  font-family: var(--font-jp);
  font-weight: 600;
  /* inner
  **************************************** */
  /* color
  **************************************** */
  /* btn
  **************************************** */
  /* heading
  **************************************** */
  /* balloon_ttl
  **************************************** */
  /* ttl
  **************************************** */
  /* typography
  **************************************** */
  /* accordion
  **************************************** */
  /* slide-review
  **************************************** */
  /* seyama_jirushi--btn
  **************************************** */
  /* seyama_jirushi--hero
  **************************************** */
  /* seyama_jirushi--list
  **************************************** */
  /* seyama_jirushi--service
  **************************************** */
  /* seyama_jirushi--reason
  **************************************** */
  /* seyama_jirushi--cta
  **************************************** */
  /* seyama_jirushi--flow
  **************************************** */
  /* seyama_jirushi--area
  **************************************** */
  /* seyama_jirushi--crew-voice
  **************************************** */
  /* seyama_jirushi--faq
  **************************************** */
  /* cta_bnr
  **************************************** */
  /* seyama_jirushi--about
  **************************************** */
  /* seyama_jirushi--yell
  **************************************** */
  /* seyama_video
  **************************************** */
  /* modal
  **************************************** */
  /* modal
  **************************************** */
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi .inner-xxl {
    width: 100%;
    max-width: initial;
  }
}
.seyama_jirushi .font-primary {
  font-family: var(--font-primary);
}
@media print, screen and (min-width: 120.0625em) {
  .seyama_jirushi .inner {
    max-width: 62.5vw;
  }
  .seyama_jirushi .inner-sm {
    max-width: 56.25vw;
  }
  .seyama_jirushi .inner-xs {
    max-width: 45.8333333333vw;
  }
  .seyama_jirushi .inner-md {
    max-width: 65.8333333333vw;
  }
  .seyama_jirushi .inner-md2 {
    max-width: 66.6666666667vw;
  }
  .seyama_jirushi .inner-lg {
    max-width: 75vw;
  }
  .seyama_jirushi .inner-xl {
    max-width: 82.5vw;
  }
  .seyama_jirushi .inner-xll {
    max-width: 92.7083333333vw;
  }
}
.seyama_jirushi .clr-primary-default {
  color: var(--clr-primary-default);
}
.seyama_jirushi .clr-primary-dark {
  color: var(--clr-primary-dark);
}
.seyama_jirushi .clr-primary-light {
  color: var(--clr-primary-light);
}
.seyama_jirushi .clr-secondary-default {
  color: var(--clr-secondary-default);
}
.seyama_jirushi .clr-secondary-dark {
  color: var(--clr-secondary-dark);
}
.seyama_jirushi .clr-secondary-light {
  color: var(--clr-secondary-light);
}
.seyama_jirushi .clr-text-secondary {
  color: var(--clr-text-secondary);
}
.seyama_jirushi .clr-wht {
  color: var(--clr-wht);
}
.seyama_jirushi .clr-mono-07 {
  color: var(--clr-mono-07);
}
.seyama_jirushi .bg-pattern {
  background-color: var(--clr-primary-default);
  background-image: url(../../../../images/seyama-jirushi/bg-pattern.png);
  background-size: 2.1428571429rem;
}
.seyama_jirushi .bg-primary-default {
  background-color: var(--clr-primary-default);
}
.seyama_jirushi .bg-01 {
  background-color: var(--bg-01);
}
.seyama_jirushi .bg-02 {
  background-color: var(--bg-02);
}
.seyama_jirushi .bg-03 {
  background-color: var(--bg-03);
}
.seyama_jirushi .bg-04 {
  background-color: var(--bg-04);
}
.seyama_jirushi .box-bg {
  --bg-color: var(--bg-wht);
  padding: 3rem;
  background-color: var(--bg-color);
  border-radius: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .box-bg {
    padding: 1.7142857143rem;
  }
}
.seyama_jirushi .box-line {
  padding: 3rem;
  background-color: var(--bg-wht);
  border-radius: 1.5rem;
  border: 1px solid var(--clr-primary-default);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .box-line {
    padding: 1.7142857143rem;
  }
}
.seyama_jirushi .btn-slash a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  padding: 0.5em 3em;
  color: var(--clr-wht);
  font-size: 1.25rem;
  font-family: var18(--font-jp);
  background-image: url(../../../../images/seyama-jirushi/bg-pattern.png);
  background-size: 2.1428571429rem;
  border-radius: 9999px;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .btn-slash a {
    padding: 0.7em 2em;
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi .btn-slash a::after {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  aspect-ratio: 1;
  background-image: url(../../../../images/seyama-jirushi/icon-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.seyama_jirushi .btn-zoom a {
  width: 16.0625rem;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-inline: -0.5em;
  padding: 0.5em;
  font-size: 1.125rem;
  font-family: var(--font-jp);
  text-decoration: underline;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .btn-zoom a {
    gap: 0.5714285714rem;
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi .btn-zoom a::before {
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  aspect-ratio: 1;
  background-image: url(../../../../images/seyama-jirushi/icon-zoom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.seyama_jirushi :is(.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6):not([class*=font-]) {
  font-family: var(--font-jp);
}
.seyama_jirushi .heading-1 {
  font-size: 4rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .heading-1 {
    font-size: 2.2857142857rem;
  }
}
.seyama_jirushi .heading-2 {
  font-size: 3.375rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .heading-2 {
    font-size: 2rem;
  }
}
.seyama_jirushi .heading-3 {
  font-size: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .heading-3 {
    font-size: 1.7142857143rem;
  }
}
.seyama_jirushi .heading-4 {
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .heading-4 {
    font-size: 1.4285714286rem;
  }
}
.seyama_jirushi .heading-5 {
  font-size: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .heading-5 {
    font-size: 1.2857142857rem;
  }
}
.seyama_jirushi .heading-6 {
  font-size: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .heading-6 {
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi .subtitle-lg {
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .subtitle-lg {
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi .subtitle-md {
  font-size: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .subtitle-md {
    font-size: 1rem;
  }
}
.seyama_jirushi .subtitle-sm {
  font-size: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .subtitle-sm {
    font-size: 0.8571428571rem;
  }
}
.seyama_jirushi .balloon_ttl {
  width: fit-content;
  margin-bottom: 0.5em;
  padding: 0 0.5em 2em;
  background-image: url(../../../../images/seyama-jirushi/balloon_ttl_03.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.seyama_jirushi .balloon_ttl:not([class*=fz-]) {
  font-size: 1.375rem;
}
.seyama_jirushi .balloon_ttl.txt-ctr {
  margin-inline: auto;
}
.seyama_jirushi .balloon_ttl02 {
  padding-bottom: 1.5em;
  background-image: url(../../../../images/seyama-jirushi/balloon_ttl_02.svg);
}
.seyama_jirushi .balloon_ttl02-lg {
  padding-bottom: 1.5em;
  background-image: url(../../../../images/seyama-jirushi/balloon_ttl_02-lg.svg);
}
.seyama_jirushi .balloon_ttl02-01 {
  padding-bottom: 1.5em;
  background-image: url(../../../../images/seyama-jirushi/balloon_ttl_02-01.svg);
}
.seyama_jirushi .ttl-bg {
  padding: 0.5em 1em;
  background-color: var(--clr-mono-01);
}
.seyama_jirushi .ttl-line {
  border-left: 4px solid var(--clr-primary-default);
  padding-left: 0.75rem;
}
.seyama_jirushi .ttl-underline {
  --border-color: var(--clr-primary-default);
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--border-color);
}
.seyama_jirushi .ttl-dashline-middle {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.seyama_jirushi .ttl-dashline-middle::before, .seyama_jirushi .ttl-dashline-middle::after {
  content: "";
  flex-grow: 1;
  border-bottom: 2px dashed rgba(33, 80, 116, 0.3);
}
.seyama_jirushi .txt-marker {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(229, 244, 99, 0.4); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.seyama_jirushi .txtarea {
  line-height: 1.7;
}
.seyama_jirushi .txtarea p:not(:last-child) {
  margin-bottom: 1em;
}
.seyama_jirushi .fz18 {
  font-size: 1.125rem;
}
.seyama_jirushi .fz16 {
  font-size: 1.125rem;
}
.seyama_jirushi .txt-sm {
  font-size: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .txt-sm {
    font-size: 0.8571428571rem;
  }
}
.seyama_jirushi .txt-lg {
  font-size: 1.375rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .txt-lg {
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi .txt-xl {
  font-size: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .txt-xl {
    font-size: 1.2857142857rem;
  }
}
.seyama_jirushi .accordion--contents {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transit-default);
}
.seyama_jirushi .accordion--contents > * {
  overflow: hidden;
}
.seyama_jirushi .accordion.is-open .accordion--contents {
  grid-template-rows: 1fr;
  padding-top: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .sp-accordion--contents {
    display: grid;
    grid-template-rows: 0fr;
    transition: var(--transit-default);
  }
  .seyama_jirushi .sp-accordion--contents > * {
    overflow: hidden;
  }
  .seyama_jirushi .sp-accordion.is-open .sp-accordion--contents {
    grid-template-rows: 1fr;
  }
}
.seyama_jirushi .accordion--toggle {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1rem;
  gap: 0.5rem;
}
.seyama_jirushi .accordion--toggle:not(:has(.toggle))::before, .seyama_jirushi .accordion--toggle:not(:has(.toggle))::after,
.seyama_jirushi .accordion--toggle .toggle::before,
.seyama_jirushi .accordion--toggle .toggle::after {
  content: "";
  grid-area: 1/2;
  width: 1rem;
  color: var(--clr-primary-default);
  border-bottom: 2px solid;
}
.seyama_jirushi .accordion--toggle:not(:has(.toggle))::after,
.seyama_jirushi .accordion--toggle .toggle::after {
  rotate: 90deg;
}
.seyama_jirushi .accordion--toggle:has(.toggle) {
  display: flex;
  gap: 1rem;
}
.seyama_jirushi .accordion--toggle .toggle {
  display: grid;
  place-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  margin-left: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--clr-primary-default);
}
.seyama_jirushi .accordion--toggle .toggle::before, .seyama_jirushi .accordion--toggle .toggle::after {
  color: var(--clr-wht);
}
.seyama_jirushi .slide-review,
.seyama_jirushi .slide-review {
  margin-inline: calc(50% - 50vw);
}
.seyama_jirushi .splide__arrow,
.seyama_jirushi .splide__pagination {
  position: relative;
  inset: auto;
}
.seyama_jirushi .splide__arrow {
  display: grid;
  place-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  margin: auto;
  width: 3.125rem;
  aspect-ratio: 1;
}
.seyama_jirushi .splide__arrow::after {
  content: "";
  display: block;
  width: 1rem;
  color: var(--clr-primary-default);
  font-family: initial;
  aspect-ratio: 1;
  rotate: 45deg;
}
.seyama_jirushi .splide__arrow svg {
  display: none;
}
.seyama_jirushi .splide__arrow--prev::after {
  border-bottom: 4px solid;
  border-left: 4px solid;
}
.seyama_jirushi .splide__arrow--next::after {
  border-top: 4px solid;
  border-right: 4px solid;
}
.seyama_jirushi .splide__pagination {
  flex-grow: 1;
  height: 0.4375rem;
  border-radius: 9999px;
  overflow: clip;
  background-color: var(--clr-wht);
  max-width: 31.25rem;
  margin-inline: auto;
}
.seyama_jirushi .splide__pagination li {
  display: block;
  height: 100%;
  flex-grow: 1;
}
.seyama_jirushi .splide__pagination button {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
}
.seyama_jirushi .splide__pagination button.is-active {
  background-color: var(--clr-primary-default);
}
.seyama_jirushi .slide-review .splide__pagination {
  background-color: var(--bg-02);
}
.seyama_jirushi .seyama_jirushi--btn {
  margin-bottom: 1.5rem;
}
.seyama_jirushi .seyama_jirushi--btn .balloon {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--btn .balloon {
    gap: 0.5714285714rem;
    margin-bottom: 0.5714285714rem;
  }
}
.seyama_jirushi .seyama_jirushi--btn .balloon::before, .seyama_jirushi .seyama_jirushi--btn .balloon::after {
  content: "";
  width: 1.5rem;
  aspect-ratio: 24/30;
  background-image: url(../../../../images/seyama-jirushi/balloon-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--btn .balloon::before, .seyama_jirushi .seyama_jirushi--btn .balloon::after {
    width: 0.8571428571rem;
  }
}
.seyama_jirushi .seyama_jirushi--btn .balloon::after {
  scale: -1 1;
}
.seyama_jirushi .seyama_jirushi--btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 45rem;
  padding: 1rem 1.5rem;
  color: var(--clr-primary-default);
  font-size: 1.75rem;
  font-family: var(--font-jp);
  text-align: center;
  line-height: 2.667;
  text-shadow: 0 2px 4px rgb(255, 255, 255);
  background-image: linear-gradient(45deg, rgb(255, 230, 120) 30%, rgb(243, 204, 33) 100%);
  border-radius: 9999px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--btn a {
    width: 100%;
    padding: 0.4285714286rem;
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi .seyama_jirushi--btn a::before {
  content: "";
  width: 3.125rem;
  aspect-ratio: 1;
  background-image: url(../../../../images/seyama-jirushi/btn-arrow.svg);
  background-size: cover;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--btn a::before {
    width: 2rem;
  }
}
.seyama_jirushi .seyama_jirushi--btn a:hover {
  box-shadow: 0 0 0;
  translate: 0 4px;
}
.seyama_jirushi .accordion .toggle::after,
.seyama_jirushi .accordion .accordion--toggle::after {
  transition: var(--transit-default);
}
.seyama_jirushi .accordion.is-open .toggle::after,
.seyama_jirushi .accordion.is-open .accordion--toggle::after {
  rotate: 0deg !important;
}
.seyama_jirushi .accordion .seyama_jirushi--btn a {
  margin-bottom: 12px;
  margin-left: 12px;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .accordion .seyama_jirushi--btn a {
    width: calc(100% - 24px);
  }
}
.seyama_jirushi .seyama_jirushi--hero {
  position: relative;
  min-height: 82vh;
  padding-bottom: 2.5rem;
  color: var(--clr-primary-default);
  background-color: #eef8ff;
  background-repeat: no-repeat;
  background-image: url(../../../../images/seyama-jirushi/hero-bg.png);
  background-position: right top;
  background-size: auto 88%;
}
@media screen and (max-width: 100em) {
  .seyama_jirushi .seyama_jirushi--hero {
    background-position: right -10vw top;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--hero {
    background-image: url(../../../../images/seyama-jirushi/hero-bg-sp.png);
    background-position: center bottom 19.2857142857rem;
    background-size: 100%;
  }
}
.seyama_jirushi .seyama_jirushi--hero .hero_txt .num,
.seyama_jirushi .seyama_jirushi--hero .hero_txt .num_aft {
  position: absolute;
  left: 50%;
  color: var(--btn-bg-cta);
  font-weight: 600;
  translate: -50% 0;
  letter-spacing: 0;
}
.seyama_jirushi .seyama_jirushi--hero .hero_txt .num {
  top: 36.3636363636%;
  font-size: 2.875rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--hero .hero_txt .num {
    top: 14.4927536232vw;
    font-size: 6.5217391304vw;
  }
}
.seyama_jirushi .seyama_jirushi--hero .hero_txt .num_aft {
  top: 61.3636363636%;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--hero .hero_txt .num_aft {
    top: 22.9468599034vw;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--hero .inner {
    display: grid;
    width: 90%;
  }
  .seyama_jirushi .seyama_jirushi--hero .hero_ttl {
    padding-bottom: 10.7142857143rem;
  }
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi .seyama_jirushi--hero {
    position: relative;
  }
  .seyama_jirushi .seyama_jirushi--hero .hero--cont {
    width: 38.2291666667vw;
    max-width: 45.875rem;
    min-width: 31.25rem;
  }
  .seyama_jirushi .seyama_jirushi--hero .hero_txt {
    max-width: 34.25rem;
    min-width: 31.25rem;
    margin-inline: auto;
  }
  .seyama_jirushi .seyama_jirushi--hero .hero_bnr {
    position: absolute;
    bottom: 4.5rem;
    right: 12.9166666667vw;
    width: 13.8541666667vw;
    min-width: 12.5rem;
  }
}
@media screen and (min-width: 48em) and (max-width: 100em) {
  .seyama_jirushi .seyama_jirushi--hero .hero_bnr {
    right: 5vw;
  }
}
@media print, screen and (min-width: 120.0625em) {
  .seyama_jirushi .seyama_jirushi--hero .hero--cont {
    margin-left: calc(50% - 50rem);
  }
}
.seyama_jirushi .seyama_jirushi--list {
  background-color: var(--bg-02);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--list {
    position: sticky;
    top: 64px;
    z-index: 9990;
  }
}
.seyama_jirushi .seyama_jirushi--list .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--list .inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
  }
  .seyama_jirushi .seyama_jirushi--list .inner li:nth-child(1) a,
  .seyama_jirushi .seyama_jirushi--list .inner li:nth-child(2) a {
    border-bottom: none;
  }
  .seyama_jirushi .seyama_jirushi--list .inner li:nth-child(1) a,
  .seyama_jirushi .seyama_jirushi--list .inner li:nth-child(3) a {
    border-right: none;
  }
}
.seyama_jirushi .seyama_jirushi--list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--list a {
    border: 1px solid var(--border);
    padding: 0.5714285714rem 1.1428571429rem;
  }
}
.seyama_jirushi .seyama_jirushi--list a::after {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1;
  border-bottom: 2px solid var(--border);
  border-right: 2px solid var(--border);
  rotate: 45deg;
}
.seyama_jirushi .seyama_jirushi--service {
  position: relative;
}
.seyama_jirushi .seyama_jirushi--service::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 120rem;
  aspect-ratio: 1920/867;
  translate: -50% 0;
  background-image: url(../../../../images/seyama-jirushi/bg_light.svg);
  background-size: contain;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--service::before {
    top: 13.5714285714rem;
    width: 200%;
  }
}
.seyama_jirushi .seyama_jirushi--service .movie_area {
  position: relative;
  width: 90%;
  max-width: 40rem;
  margin-inline: auto;
}
.seyama_jirushi .seyama_jirushi--service .service_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--service .service_list {
    flex-wrap: wrap;
  }
  .seyama_jirushi .seyama_jirushi--service .service_list li {
    width: calc(33.33% - 1rem / 3 * 2);
  }
}
.seyama_jirushi .seyama_jirushi--person {
  display: grid;
  color: var(--text-body);
  border-radius: 1rem;
}
.seyama_jirushi .seyama_jirushi--person .person_name {
  grid-area: name;
}
.seyama_jirushi .seyama_jirushi--person .person_txt {
  grid-area: txt;
  line-height: 1.75;
}
.seyama_jirushi .seyama_jirushi--person .person_img {
  grid-area: img;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi .seyama_jirushi--person {
    grid-template-columns: 20rem 1fr;
    gap: 1rem 2rem;
    grid-template-areas: "img name" "img txt";
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--person {
    padding: 2.8571428571rem 1.7142857143rem;
    border-radius: 1.7142857143rem;
    grid-template-columns: 7rem 1fr;
    gap: 1.1428571429rem 0.7142857143rem;
    grid-template-areas: "img name" "txt txt";
  }
}
.seyama_jirushi .seyama_jirushi--reason .reason_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 100em) {
  .seyama_jirushi .seyama_jirushi--reason .reason_list {
    gap: 1rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--reason .reason_list {
    grid-template-columns: 1fr;
  }
}
.seyama_jirushi .seyama_jirushi--reason .reason_card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 9999px 9999px 0 0;
  padding: 2.5rem 2.25rem;
  background: var(--clr-wht);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--reason .reason_card {
    padding: 1.7142857143rem 1.4285714286rem;
  }
}
.seyama_jirushi .seyama_jirushi--reason .reason_card .btn-zoom {
  margin-top: auto;
}
.seyama_jirushi .seyama_jirushi--reason .reason_card .btn-zoom a {
  width: 100%;
  margin: 0;
  background-color: var(--clr-sub-01);
}
.seyama_jirushi .seyama_jirushi--reason .reason_card--ttl {
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.seyama_jirushi .seyama_jirushi--reason .reason--txtarea {
  z-index: 0;
}
.seyama_jirushi .seyama_jirushi--reason .reason--txtarea::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 27vw;
  background-image: url(../../../../images/seyama-jirushi/reason-btm-illust.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 439/292;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--reason .reason--txtarea::after {
    display: none;
  }
}
.seyama_jirushi .seyama_jirushi--reason .reason_card:nth-child(1) .reason_card--img {
  margin-top: -1.3125rem;
}
.seyama_jirushi .seyama_jirushi--reason .reason_card:nth-child(3) .reason_card--img {
  margin-top: -0.8125rem;
  margin-right: -0.5625rem;
}
.seyama_jirushi .seyama_jirushi--cta .inner {
  position: relative;
  border-radius: 2.5rem;
  background-color: var(--bg-03);
  background-repeat: no-repeat;
  background-image: url(../../../../images/seyama-jirushi/cta-left.svg), url(../../../../images/seyama-jirushi/cta-right.svg);
  background-position: left top, right top;
  background-size: auto 100%;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--cta .inner {
    padding: 4.2857142857rem 1.1428571429rem 0.5714285714rem;
    background-image: url(../../../../images/seyama-jirushi/cta-top.svg);
    background-position: center top -80px;
    background-size: 100%;
  }
}
.seyama_jirushi .seyama_jirushi--flow {
  position: relative;
  margin-top: 20rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--flow {
    margin-top: 10rem;
    padding-top: 1.7142857143rem;
  }
}
.seyama_jirushi .seyama_jirushi--flow::before {
  content: "";
  position: absolute;
  top: -11.1875rem;
  z-index: 0;
  width: 100%;
  height: 11.25rem;
  background-color: var(--bg-03);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--flow::before {
    top: -4.4285714286rem;
    height: 4.4285714286rem;
  }
}
.seyama_jirushi .seyama_jirushi--flow::after {
  content: "";
  position: absolute;
  top: -17.1428571429rem;
  inset-inline: 0;
  z-index: 0;
  width: 20rem;
  margin-inline: auto;
  aspect-ratio: 312/209;
  background-image: url(../../../../images/seyama-jirushi/flow_img.svg);
  background-size: cover;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--flow::after {
    width: 11.1428571429rem;
    top: -7.1428571429rem;
  }
}
.seyama_jirushi .flow_list {
  counter-reset: number;
}
.seyama_jirushi .flow_card {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .flow_card {
    padding: 1.4285714286rem 1.7142857143rem;
  }
}
.seyama_jirushi .flow_card:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .flow_card:not(:last-child) {
    margin-bottom: 0.8571428571rem;
  }
}
.seyama_jirushi .flow_card .ttl {
  position: relative;
  padding-left: 5.5rem;
}
.seyama_jirushi .flow_card .ttl-img {
  position: absolute;
  left: 0;
  top: calc(50% - 4.5rem / 2);
  display: grid;
  place-content: center;
  width: 4.5rem;
  margin-inline: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: var(--clr-primary-default);
}
.seyama_jirushi .flow_card .ttl-num {
  display: block;
}
.seyama_jirushi .flow_card .ttl-num::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 2rem;
  font-family: var(--font-en);
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .flow_card .ttl-num::after {
    font-size: 1.4285714286rem;
  }
}
.seyama_jirushi .flow_movie .img {
  position: relative;
  z-index: 0;
  margin-top: 0.625rem;
  margin-left: -1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .flow_movie .img {
    margin-top: 0.7142857143rem;
  }
}
.seyama_jirushi .area_contents {
  display: grid;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi .area_contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .seyama_jirushi .area_contents .box-bg {
    padding: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .area_contents {
    gap: 2rem;
  }
}
.seyama_jirushi .area_list li {
  line-height: 1.5;
}
.seyama_jirushi .area_list li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.seyama_jirushi .area_posts .post--info {
  margin-bottom: 0;
}
.seyama_jirushi .area_posts .post--new {
  margin-left: 0.75rem;
  padding: 0.25rem;
  color: var(--bg-wht);
  background-color: var(--clr-secondary-default);
  line-height: 1;
  border-radius: 2px;
}
.seyama_jirushi .area_posts .post--ttl {
  color: var(--clr-text-primary);
  font-family: var(--font-primary);
}
.seyama_jirushi .area_posts .post--date {
  color: var(--clr-text-secondary);
  font-size: 1rem;
  font-weight: 600;
}
.seyama_jirushi .area_posts .post:not(:first-child) {
  padding-top: 0.5rem;
}
.seyama_jirushi .area_posts .post:not(:last-child) {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-mono-02);
}
.seyama_jirushi .seyama_jirushi--crew-voice .ttl img {
  margin-left: -5.875rem;
  margin-top: -3rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--crew-voice .ttl img {
    margin-left: -4.2857142857rem;
    margin-top: -2.1428571429rem;
  }
}
.seyama_jirushi .seyama_jirushi--crew-voice > .inner {
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--crew-voice > .inner {
    padding-bottom: 2.8571428571rem;
  }
}
.seyama_jirushi .seyama_jirushi--crew-voice > .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--clr-text-light);
  border-radius: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--crew-voice > .inner::before {
    inset: 0 -4vw;
  }
}
.seyama_jirushi .review_card {
  padding: 0 2.2857142857rem 2.2857142857rem;
  height: auto;
  width: 100%;
  max-width: 29rem;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi .review_card {
    display: flex;
    flex-direction: column;
  }
  .seyama_jirushi .review_card .btn-zoom {
    margin-top: auto;
  }
}
.seyama_jirushi .slide-review .review_card {
  padding: 0 2.2857142857rem 1rem;
}
@media print, screen and (min-width: 93.8125em) {
  .seyama_jirushi .slide_wrap::before {
    content: "";
    position: absolute;
    top: -23rem;
    right: calc(50% - 50.3125rem);
    z-index: 1;
    width: 21.0625rem;
    aspect-ratio: 337/415;
    background-image: url(../../../../images/seyama-jirushi/crew-voice-img.png);
    background-size: cover;
  }
}
.seyama_jirushi .review_card--time {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 1rem;
}
.seyama_jirushi .review_card--time::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  aspect-ratio: 32/31;
  background-image: url(../../../../images/seyama-jirushi/icon-time.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.seyama_jirushi .review_card--comment {
  line-height: 1.8;
  font-size: 1rem;
}
.seyama_jirushi .review_card .review_card--comment {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.seyama_jirushi .review_card--info {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2.5rem;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--clr-mono-03);
}
.seyama_jirushi .review_card--list li:not(:last-child)::after {
  content: "/";
  margin-inline: 0.5rem;
}
.seyama_jirushi .faq_card {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--clr-mono-02);
  line-height: 1.5;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .faq_card {
    padding-block: 1.4285714286rem;
  }
}
.seyama_jirushi .faq_card:first-child {
  border-top: 1px solid var(--clr-mono-02);
}
.seyama_jirushi .faq_card dt::before {
  content: "Q.";
  flex-shrink: 0;
  color: var(--clr-primary-default);
  font-size: 2.5rem;
  font-family: var(--font-en);
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .faq_card dt::before {
    font-size: 1.7142857143rem;
  }
}
.seyama_jirushi .cta_bnr {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .cta_bnr {
    padding-bottom: 4.2857142857rem;
  }
}
.seyama_jirushi .seyama_jirushi--about {
  padding-block: 3rem;
  background-image: url(../../../../images/seyama-jirushi/line-left.svg), url(../../../../images/seyama-jirushi/line-right.svg);
  background-position: left top, right top;
  background-repeat: no-repeat;
  background-size: 26.3541666667vw;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--about {
    background-image: url(../../../../images/seyama-jirushi/line-left-sp.svg), url(../../../../images/seyama-jirushi/line-right-sp.svg);
    background-size: 6.4285714286rem;
  }
}
.seyama_jirushi .seyama_jirushi--person {
  display: grid;
  color: var(--text-body);
  border-radius: 1rem;
}
.seyama_jirushi .seyama_jirushi--person .person_name {
  grid-area: name;
}
.seyama_jirushi .seyama_jirushi--person .person_txt {
  grid-area: txt;
  line-height: 1.75;
}
.seyama_jirushi .seyama_jirushi--person .person_img {
  grid-area: img;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi .seyama_jirushi--person {
    grid-template-columns: 20rem 1fr;
    gap: 1rem 2rem;
    grid-template-areas: "img name" "img txt";
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .seyama_jirushi--person {
    padding: 2.8571428571rem 1.7142857143rem;
    border-radius: 1.7142857143rem;
    grid-template-columns: 7rem 1fr;
    gap: 1.1428571429rem 0.7142857143rem;
    grid-template-areas: "img name" "txt txt";
  }
}
.seyama_jirushi .yell_cta {
  position: relative;
  padding-top: 12.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .yell_cta {
    padding-top: 7.1428571429rem;
  }
}
.seyama_jirushi .yell_cta::before {
  content: "";
  position: absolute;
  top: -1px;
  inset-inline: 0;
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 600/50;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--clr-primary-default);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .yell_cta::before {
    aspect-ratio: 452/83;
  }
}
.seyama_jirushi .yell_cta .seyama_jirushi--btn {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .yell_cta .seyama_jirushi--btn a {
    padding: 0.7em;
  }
}
.seyama_jirushi .yell_cta .seyama_jirushi--btn::before {
  content: "";
  position: absolute;
  top: -15.625rem;
  inset-inline: 0;
  z-index: -1;
  margin-inline: auto;
  max-width: 40.875rem;
  aspect-ratio: 654/308;
  background-image: url(../../../../images/seyama-jirushi/cta03_img-sp.png);
  background-size: cover;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .yell_cta .seyama_jirushi--btn::before {
    top: -8.8571428571rem;
    width: 23.3571428571rem;
  }
}
.seyama_jirushi .movie_box {
  position: relative;
  z-index: 0;
  overflow: clip;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--bg-01);
  border-radius: 1.5rem;
  border: 2px solid var(--clr-primary-default);
  cursor: pointer;
}
.seyama_jirushi .movie_box iframe,
.seyama_jirushi .movie_box video {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  vertical-align: middle;
}
.seyama_jirushi .modal-common {
  position: fixed;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1080px;
  z-index: 99999;
  border-radius: 0.3125rem;
  border: 2px solid var(--clr-sub, #ccc);
  background-color: var(--bg-wht, #fff);
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  overflow: unset !important;
  display: block;
  width: 90%;
  max-width: 800px;
  background-color: var(--bg-wht);
  border-radius: 0.75rem;
  padding: 0;
  visibility: hidden;
}
.seyama_jirushi .modal-common:not(:has(iframe)) {
  height: 90vh;
  max-height: 85vh;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .modal-common:not(:has(iframe)) {
    max-height: 90svh;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .modal-common {
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    background-color: unset;
  }
}
.seyama_jirushi .modal-common .inner {
  padding-block: 2.5rem;
}
.seyama_jirushi .modal-common + .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
.seyama_jirushi .modal-common.active, .seyama_jirushi .modal-common.active + .overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.seyama_jirushi .modal-common.active {
  overflow: scroll;
}
.seyama_jirushi .modal-common .overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.seyama_jirushi .modal-scroll {
  overflow: auto;
  height: 100%;
  padding: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .modal-scroll {
    padding: 1rem;
  }
}
.seyama_jirushi .modal-content:not(:has(iframe)) {
  height: 100%;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .modal-content:not(:has(iframe)) {
    padding-block: 1.7142857143rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .modal-content:not(:has(iframe)) {
    border-radius: 0.5rem;
    box-shadow: none;
    width: 90%;
    margin-inline: auto;
    background-color: #fff;
    max-height: 90svh;
  }
}
.seyama_jirushi .modal-content a:not(.slick-arrow) {
  color: var(--clr-primary-default);
  text-decoration: underline;
}
.seyama_jirushi .modal-content table {
  width: 100%;
}
.seyama_jirushi .modal-content table th,
.seyama_jirushi .modal-content table td {
  padding: 0.5em 1em;
  line-height: 1.5;
}
.seyama_jirushi .modal-content table th {
  text-align: left;
}
.seyama_jirushi .modal-content table th:first-child {
  width: 16.25rem;
}
.seyama_jirushi .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--clr-mono-01);
  background-color: var(--bg-wht);
}
.seyama_jirushi .modal-close {
  position: absolute;
  top: -5rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  margin-top: 2rem;
  border: none;
  color: var(--clr-mono-03);
  font-size: 2.125rem;
  background-color: var(--clr-mono-01);
  border-radius: 50%;
  transition: var(--transit-default);
  cursor: pointer;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi .modal-close {
    right: 5%;
  }
}
.seyama_jirushi .modal-close:hover {
  background-color: var(--clr-mono-01);
  color: var(--clr-primary-default);
}
.seyama_jirushi .modal-body {
  padding-bottom: 2rem;
}
.seyama_jirushi .modal-body .blc-sm:not(:last-child) {
  margin-bottom: 0.5rem;
}
.seyama_jirushi .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
.seyama_jirushi .overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.seyama_jirushi .reason01_list > li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.seyama_jirushi #modal-reason03 .slide {
  height: 75vh;
}
.seyama_jirushi #modal-reason03 .slick-list,
.seyama_jirushi #modal-reason03 .slick-track,
.seyama_jirushi #modal-reason03 .slick-slide {
  height: 100%;
}
.seyama_jirushi #modal-reason03 .slick-slide img {
  width: 100% !important;
  height: 100% !important;
}
/* ##############################################################################

    seyama_jirushi-lp

############################################################################## */
.page-seyama-jirushi-lp {
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 47.9375em) {
  .page-seyama-jirushi-lp {
    font-size: 1rem;
  }
}

.seyama_jirushi-lp {
  --bg02: #d5e5f0;
  --bg-01: #f7f7f4;
  --bg-02: #d3dce3;
  --bg-03: #e3e8ed;
  --border: #a7b9c7;
  --clr-primary-default: #215074;
  --clr-primary-dark: #36536b;
  --clr-primary-light: #2e9ad4;
  --clr-secondary-default: #ec550e;
  --clr-secondary-dark: #d03030;
  --clr-secondary-light: #f25353;
  --clr-text-primary: #535353;
  --clr-text-secondary: #7a7a81;
  --clr-text-placeholder: #cccccc;
  --clr-text-light: #f7f7f7;
  --clr-mono-01: #eee;
  --clr-mono-02: #cccccc;
  --clr-mono-03: #aaaaaa;
  --clr-mono-04: #888888;
  --clr-mono-05: #666666;
  --clr-mono-06: #444444;
  --clr-mono-07: #999999;
  overflow: clip;
  /* color
  **************************************** */
  /* btn
  **************************************** */
  /* heading
  **************************************** */
  /* typography
  **************************************** */
  /* accordion
  **************************************** */
  /* seyama_jirushi--btn
  **************************************** */
  /* seyama_jirushi--fixed_btn
  **************************************** */
  /* seyama_jirushi--hero
  **************************************** */
  /* seyama_jirushi--list
  **************************************** */
  /* seyama_jirushi--intro
  **************************************** */
  /* seyama_jirushi--duty
  **************************************** */
  /* seyama_jirushi--trap
  **************************************** */
  /* seyama_jirushi--structure
  **************************************** */
  /* seyama_jirushi--review
  **************************************** */
  /* seyama_jirushi--cta
  **************************************** */
  /* seyama_jirushi--flow
  **************************************** */
  /* seyama_jirushi--area
  **************************************** */
  /* seyama_jirushi--crew-voice
  **************************************** */
  /* seyama_jirushi--faq
  **************************************** */
  /* cta_bnr
  **************************************** */
  /* seyama_jirushi--yell
  **************************************** */
  /* seyama_video
  **************************************** */
  /* modal
  **************************************** */
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .inner-xxl {
    width: 100%;
    max-width: initial;
  }
}
.seyama_jirushi-lp .clr-primary-default {
  color: var(--clr-primary-default);
}
.seyama_jirushi-lp .clr-primary-dark {
  color: var(--clr-primary-dark);
}
.seyama_jirushi-lp .clr-primary-light {
  color: var(--clr-primary-light);
}
.seyama_jirushi-lp .clr-secondary-default {
  color: var(--clr-secondary-default);
}
.seyama_jirushi-lp .clr-secondary-dark {
  color: var(--clr-secondary-dark);
}
.seyama_jirushi-lp .clr-secondary-light {
  color: var(--clr-secondary-light);
}
.seyama_jirushi-lp .clr-wht {
  color: var(--clr-wht);
}
.seyama_jirushi-lp .clr-mono-07 {
  color: var(--clr-mono-07);
}
.seyama_jirushi-lp .bg-pattern {
  background-color: var(--clr-primary-default);
  background-image: url(../../../../images/seyama-jirushi-lp/bg-pattern.png);
  background-size: 2.1428571429rem;
}
.seyama_jirushi-lp .bg-primary-default {
  background-color: var(--clr-primary-default);
}
.seyama_jirushi-lp .bg-01 {
  background-color: var(--bg-01);
}
.seyama_jirushi-lp .bg-02 {
  background-color: var(--bg-02);
}
.seyama_jirushi-lp .bg-03 {
  background-color: var(--bg-03);
}
.seyama_jirushi-lp .box-bg {
  --bg-color: var(--bg-wht);
  padding: 3rem;
  background-color: var(--bg-color);
  border-radius: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .box-bg {
    padding: 1.7142857143rem;
  }
}
.seyama_jirushi-lp .box-line {
  padding: 3rem;
  background-color: var(--bg-wht);
  border-radius: 1.5rem;
  border: 1px solid var(--clr-primary-default);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .box-line {
    padding: 1.7142857143rem;
  }
}
.seyama_jirushi-lp .btn-slash a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  padding: 1.5em 3em;
  color: var(--clr-wht);
  font-size: 1.25rem;
  font-family: var(--font-jp);
  background-image: url(../../../../images/seyama-jirushi-lp/bg-pattern.png);
  background-size: 2.1428571429rem;
  border-radius: 9999px;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .btn-slash a {
    padding: 0.7em 2em;
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi-lp .btn-slash a::after {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  aspect-ratio: 1;
  background-image: url(../../../../images/seyama-jirushi-lp/icon-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.seyama_jirushi-lp .btn-zoom a {
  width: 16.0625rem;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-inline: -0.5em;
  padding: 0.5em;
  font-size: 1.125rem;
  font-family: var(--font-jp);
  text-decoration: underline;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .btn-zoom a {
    gap: 0.5714285714rem;
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi-lp .btn-zoom a::before {
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  aspect-ratio: 1;
  background-image: url(../../../../images/seyama-jirushi-lp/icon-zoom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.seyama_jirushi-lp :is(.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6):not([class*=font-]) {
  font-family: var(--font-jp);
}
.seyama_jirushi-lp .heading-1 {
  font-size: 4rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .heading-1 {
    font-size: 2.2857142857rem;
  }
}
.seyama_jirushi-lp .heading-2 {
  font-size: 3.375rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .heading-2 {
    font-size: 2rem;
  }
}
.seyama_jirushi-lp .heading-3 {
  font-size: 3rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .heading-3 {
    font-size: 1.7142857143rem;
  }
}
.seyama_jirushi-lp .heading-4 {
  font-size: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .heading-4 {
    font-size: 1.4285714286rem;
  }
}
.seyama_jirushi-lp .heading-5 {
  font-size: 2rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .heading-5 {
    font-size: 1.2857142857rem;
  }
}
.seyama_jirushi-lp .heading-6 {
  font-size: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .heading-6 {
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi-lp .subtitle-lg {
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .subtitle-lg {
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi-lp .subtitle-md {
  font-size: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .subtitle-md {
    font-size: 1rem;
  }
}
.seyama_jirushi-lp .subtitle-sm {
  font-size: 0.875rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .subtitle-sm {
    font-size: 0.8571428571rem;
  }
}
.seyama_jirushi-lp .ttl-line {
  --border-color: var(--clr-primary-default);
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--border-color);
}
.seyama_jirushi-lp .ttl-dashline {
  width: fit-content;
  border-bottom: 1px dashed var(--clr-primary-default);
}
.seyama_jirushi-lp .ttl-dashline-middle {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.seyama_jirushi-lp .ttl-dashline-middle::before, .seyama_jirushi-lp .ttl-dashline-middle::after {
  content: "";
  flex-grow: 1;
  border-bottom: 2px dashed rgba(33, 80, 116, 0.3);
}
.seyama_jirushi-lp .txt-marker {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(229, 244, 99, 0.4); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.seyama_jirushi-lp .txtarea {
  line-height: 1.7;
}
.seyama_jirushi-lp .txtarea p:not(:last-child) {
  margin-bottom: 1em;
}
.seyama_jirushi-lp .fz18 {
  font-size: 1.125rem;
}
.seyama_jirushi-lp .fz16 {
  font-size: 1.125rem;
}
.seyama_jirushi-lp .txt-sm {
  font-size: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .txt-sm {
    font-size: 0.8571428571rem;
  }
}
.seyama_jirushi-lp .txt-lg {
  font-size: 1.375rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .txt-lg {
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi-lp .txt-xl {
  font-size: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .txt-xl {
    font-size: 1.2857142857rem;
  }
}
.seyama_jirushi-lp .accordion--contents {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transit-default);
}
.seyama_jirushi-lp .accordion--contents > * {
  overflow: hidden;
}
.seyama_jirushi-lp .accordion.is-open .accordion--contents {
  grid-template-rows: 1fr;
  padding-top: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .sp-accordion--contents {
    display: grid;
    grid-template-rows: 0fr;
    transition: var(--transit-default);
  }
  .seyama_jirushi-lp .sp-accordion--contents > * {
    overflow: hidden;
  }
  .seyama_jirushi-lp .sp-accordion.is-open .sp-accordion--contents {
    grid-template-rows: 1fr;
  }
}
.seyama_jirushi-lp .accordion--toggle {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1rem;
  gap: 0.5rem;
}
.seyama_jirushi-lp .accordion--toggle:not(:has(.toggle))::before, .seyama_jirushi-lp .accordion--toggle:not(:has(.toggle))::after,
.seyama_jirushi-lp .accordion--toggle .toggle::before,
.seyama_jirushi-lp .accordion--toggle .toggle::after {
  content: "";
  grid-area: 1/2;
  width: 1rem;
  color: var(--clr-primary-default);
  border-bottom: 2px solid;
}
.seyama_jirushi-lp .accordion--toggle:not(:has(.toggle))::after,
.seyama_jirushi-lp .accordion--toggle .toggle::after {
  rotate: 90deg;
}
.seyama_jirushi-lp .accordion--toggle:has(.toggle) {
  display: flex;
  gap: 1rem;
}
.seyama_jirushi-lp .accordion--toggle .toggle {
  display: grid;
  place-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  margin-left: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--clr-primary-default);
}
.seyama_jirushi-lp .accordion--toggle .toggle::before, .seyama_jirushi-lp .accordion--toggle .toggle::after {
  color: var(--clr-wht);
}
.seyama_jirushi-lp .seyama_jirushi--btn {
  margin-bottom: 1.5rem;
}
.seyama_jirushi-lp .seyama_jirushi--btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 36rem;
  padding: 1rem 1.5rem;
  color: var(--clr-primary-default);
  font-size: 1.75rem;
  font-family: var(--font-jp);
  text-align: center;
  line-height: 2.667;
  text-shadow: 0 2px 4px rgb(255, 255, 255);
  background-image: linear-gradient(45deg, rgb(255, 230, 120) 30%, rgb(243, 204, 33) 100%);
  border-radius: 9999px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--btn a {
    width: 100%;
    padding: 0.4285714286rem;
    font-size: 1.1428571429rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--btn a::before {
  content: "";
  width: 3.125rem;
  aspect-ratio: 1;
  background-image: url(../../../../images/seyama-jirushi-lp/btn-arrow.svg);
  background-size: cover;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--btn a::before {
    width: 2rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--btn a:hover {
  box-shadow: 0 0 0;
  translate: 0 4px;
}
.seyama_jirushi-lp .accordion .toggle::after,
.seyama_jirushi-lp .accordion .accordion--toggle::after {
  transition: var(--transit-default);
}
.seyama_jirushi-lp .accordion.is-open .toggle::after,
.seyama_jirushi-lp .accordion.is-open .accordion--toggle::after {
  rotate: 0deg !important;
}
.seyama_jirushi-lp .accordion .seyama_jirushi--btn a {
  margin-bottom: 12px;
  margin-left: 12px;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .accordion .seyama_jirushi--btn a {
    width: calc(100% - 24px);
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--fixed_btn {
    position: fixed;
    top: 5rem;
    width: 100%;
    z-index: 100;
    inset-inline: 0;
    margin-inline: auto;
    translate: 0 -100%;
    transition: var(--transit-default);
  }
  .seyama_jirushi-lp .seyama_jirushi--fixed_btn.is-show {
    translate: 0 0;
  }
  .seyama_jirushi-lp .seyama_jirushi--fixed_btn a {
    padding: 0;
    line-height: 2.3;
  }
}
.seyama_jirushi-lp .seyama_jirushi--hero {
  position: relative;
  padding-bottom: 2.5rem;
  color: var(--clr-primary-default);
  background-color: #eef8ff;
  background-repeat: no-repeat;
  background-image: url(../../../../images/seyama-jirushi-lp/hero-bg.png);
  background-position: right center;
  background-size: auto 100%;
}
@media screen and (max-width: 100em) {
  .seyama_jirushi-lp .seyama_jirushi--hero {
    background-position: right -4.375rem center;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--hero {
    background-image: url(../../../../images/seyama-jirushi-lp/hero-bg-sp.png);
    background-position: center bottom 13.8571428571rem;
    background-size: 100%;
  }
}
.seyama_jirushi-lp .seyama_jirushi--hero .hero_txt .num {
  position: absolute;
  left: 50%;
  top: 49.0909090909%;
  color: var(--btn-bg-cta);
  font-size: 2.0625rem;
  font-weight: 600;
  translate: -50% 0;
  letter-spacing: 0;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--hero .hero_txt .num {
    top: 18.115942029vw;
    font-size: 6.5217391304vw;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--hero .inner {
    display: grid;
    width: 90%;
  }
  .seyama_jirushi-lp .seyama_jirushi--hero .hero_bnr {
    padding-bottom: 12.8571428571rem;
  }
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .seyama_jirushi--hero {
    position: relative;
  }
  .seyama_jirushi-lp .seyama_jirushi--hero .hero_ttl {
    width: 36.9791666667vw;
    max-width: 44.4375rem;
    min-width: 31.25rem;
  }
  .seyama_jirushi-lp .seyama_jirushi--hero .hero_txt {
    width: 29.1666666667vw;
    max-width: 35.0625rem;
    min-width: 31.25rem;
  }
  .seyama_jirushi-lp .seyama_jirushi--hero .seyama_jirushi--btn a {
    max-width: 35.625rem;
    width: 25vw;
    min-width: 31.25rem;
  }
  .seyama_jirushi-lp .seyama_jirushi--hero .hero_bnr {
    position: absolute;
    top: 1rem;
    right: 9.2708333333vw;
    width: 25.2604166667vw;
    min-width: 25rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--list {
  background-color: var(--bg-02);
}
.seyama_jirushi-lp .seyama_jirushi--list .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--list .inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
  }
  .seyama_jirushi-lp .seyama_jirushi--list .inner li:nth-child(1) a,
  .seyama_jirushi-lp .seyama_jirushi--list .inner li:nth-child(2) a {
    border-bottom: none;
  }
  .seyama_jirushi-lp .seyama_jirushi--list .inner li:nth-child(1) a,
  .seyama_jirushi-lp .seyama_jirushi--list .inner li:nth-child(3) a {
    border-right: none;
  }
}
.seyama_jirushi-lp .seyama_jirushi--list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--list a {
    border: 1px solid var(--border);
    padding: 1.1428571429rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--list a::after {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1;
  border-bottom: 2px solid var(--border);
  border-right: 2px solid var(--border);
  rotate: 45deg;
}
.seyama_jirushi-lp .seyama_jirushi--intro {
  padding-block: 3rem;
  background-image: url(../../../../images/seyama-jirushi-lp/line-left.svg), url(../../../../images/seyama-jirushi-lp/line-right.svg);
  background-position: left top, right top;
  background-repeat: no-repeat;
  background-size: 26.3541666667vw;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--intro {
    background-image: url(../../../../images/seyama-jirushi-lp/line-left-sp.svg), url(../../../../images/seyama-jirushi-lp/line-right-sp.svg);
    background-size: 6.4285714286rem;
  }
}
.seyama_jirushi-lp .balloon_ttl {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-bottom: 0.5em;
  padding: 0 0.5em 2em;
  color: var(--clr-primary-default);
  background-image: url(../../../../images/seyama-jirushi-lp/balloon_ttl_03.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.seyama_jirushi-lp .balloon_ttl:not([class*=fz-]) {
  font-size: 1.375rem;
}
.seyama_jirushi-lp .balloon_ttl02 {
  padding-bottom: 1.5em;
  background-image: url(../../../../images/seyama-jirushi-lp/balloon_ttl_02.svg);
}
.seyama_jirushi-lp .seyama_jirushi--person {
  display: grid;
  color: var(--text-body);
  border-radius: 1rem;
}
.seyama_jirushi-lp .seyama_jirushi--person .person_name {
  grid-area: name;
}
.seyama_jirushi-lp .seyama_jirushi--person .person_txt {
  grid-area: txt;
  line-height: 1.75;
}
.seyama_jirushi-lp .seyama_jirushi--person .person_img {
  grid-area: img;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .seyama_jirushi--person {
    grid-template-columns: 20rem 1fr;
    gap: 1rem 2rem;
    grid-template-areas: "img name" "img txt";
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--person {
    padding: 2.8571428571rem 1.7142857143rem;
    border-radius: 1.7142857143rem;
    grid-template-columns: 7rem 1fr;
    gap: 1.1428571429rem 0.7142857143rem;
    grid-template-areas: "img name" "txt txt";
  }
}
.seyama_jirushi-lp .seyama_jirushi--duty {
  margin: 2rem 4rem;
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  background-color: var(--bg-03);
  background-image: url(../../../../images/seyama-jirushi-lp/duty-bg.png);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--duty {
    margin: 2.8571428571rem 1.7142857143rem;
    padding: 2.2857142857rem 0;
    background-image: url(../../../../images/seyama-jirushi-lp/duty-bg-top-sp.png), url(../../../../images/seyama-jirushi-lp/duty-bg-btm-sp.png);
    background-position: center top, center bottom 12%;
    background-size: 100%;
  }
  .seyama_jirushi-lp .seyama_jirushi--duty .txtarea {
    padding-inline: 1.7142857143rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap {
  position: relative;
  margin-top: 17.5rem;
  padding-bottom: 3rem;
  padding-inline: 1.5rem;
  background-image: url(../../../../images/seyama-jirushi-lp/trap-bg.png);
  background-position: top -1px left;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--trap {
    margin-top: 8.5714285714rem;
    background-image: url(../../../../images/seyama-jirushi-lp/trap-bg-sp.png);
    background-size: 27.8571428571rem;
  }
}
@media screen and (max-width: 100em) {
  .seyama_jirushi-lp .seyama_jirushi--trap > .inner {
    width: 100%;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .inner {
    width: 100%;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap::before {
  content: "";
  position: absolute;
  top: -11.1875rem;
  inset-inline: 0;
  z-index: -1;
  width: 100%;
  height: 11.25rem;
  background-color: var(--bg-03);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--trap::before {
    top: -4.4285714286rem;
    height: 4.4285714286rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 100em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_list {
    gap: 1rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_list {
    grid-template-columns: 1fr;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 9999px 9999px 1rem 1rem;
  background-color: var(--bg-wht);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card {
    padding: 1.4285714286rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card .num_img {
  position: absolute;
  inset-inline: 0;
  top: -2.25rem;
  margin-inline: auto;
  aspect-ratio: 330/87;
  background-image: var(--num-img);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card .num_img {
    top: -1.4285714286rem;
    background-image: var(--num-img-sp);
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card .txtarea {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  background-color: #fff9de;
}
@media screen and (max-width: 100em) and (min-width: 48em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card .txtarea br {
    display: none;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card .txtarea::before {
  content: "せやま印工務店なら...";
  position: absolute;
  left: 0;
  top: -1em;
  padding: 0.5em;
  font-size: 0.8571428571rem;
  font-family: var(--font-jp);
  line-height: 1;
  background-color: #ecdb8f;
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card .bfr::after {
  content: "";
  display: block;
  width: 0.8125rem;
  margin-inline: auto;
  margin-block: 0.5em -0.5em;
  aspect-ratio: 13/19;
  background-image: url(../../../../images/seyama-jirushi-lp/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card .btn-zoom {
  margin-top: auto;
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl {
  display: grid;
  grid-template-columns: 1fr 7.2916666667vw;
  padding-left: 1.0416666667vw;
  padding-top: 3.75rem;
}
@media screen and (max-width: 100em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-top: 1.875rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl {
    display: grid;
    grid-template-columns: 1fr 7.1428571429rem;
    padding-top: 2.8571428571rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl .balloon_ttl {
  margin-inline: auto;
  white-space: nowrap;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl .balloon_ttl {
    min-width: 13.0208333333vw;
  }
}
@media screen and (min-width: 48em) and (max-width: 100em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl .balloon_ttl {
    min-width: 10.4166666667vw;
  }
}
.seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl img {
  height: 7.5rem;
  margin-right: -1.25rem;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 100em) and (min-width: 48em) {
  .seyama_jirushi-lp .seyama_jirushi--trap .trap_card--ttl img {
    width: 8.75rem !important;
    margin-top: -1.25rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--structure {
  background-image: url(../../../../images/seyama-jirushi-lp/structure_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--structure {
    background-size: 14.4285714286rem;
  }
}
.seyama_jirushi-lp .structure_list {
  counter-reset: number;
}
.seyama_jirushi-lp .structure_card {
  position: relative;
  padding: 4.5rem 6.75rem;
  background-color: var(--bg-03);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card {
    padding: 2rem 2.2857142857rem;
  }
}
.seyama_jirushi-lp .structure_card:not(:last-child) {
  margin-bottom: 3.5rem;
}
.seyama_jirushi-lp .structure_card .numbering {
  position: absolute;
  left: -2.5rem;
  top: -2.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8.75rem;
  padding-bottom: 1.5625rem;
  aspect-ratio: 79/91;
  color: var(--clr-primary-default);
  line-height: 1;
  font-size: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card .numbering {
    left: -2.8571428571rem;
    top: -2.8571428571rem;
    width: 5.5rem;
    padding-bottom: 0.7142857143rem;
    font-size: 1rem;
  }
}
.seyama_jirushi-lp .structure_card .numbering::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(../../../../images/seyama-jirushi-lp/balloon_num.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
.seyama_jirushi-lp .structure_card .numbering::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 3rem;
  font-family: var(--font-en);
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card .numbering::after {
    font-size: 2rem;
  }
}
.seyama_jirushi-lp .structure_card--img {
  position: absolute;
  top: -5.625rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card--img {
    top: -5rem;
  }
}
.seyama_jirushi-lp .structure_card:nth-child(odd) {
  margin-left: 6.25rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card:nth-child(odd) {
    margin-left: 2.8571428571rem;
  }
}
.seyama_jirushi-lp .structure_card:nth-child(odd) .structure_card--img {
  right: -5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card:nth-child(odd) .structure_card--img {
    right: -2.1428571429rem;
  }
}
.seyama_jirushi-lp .structure_card:nth-child(even) {
  margin-right: 6.25rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card:nth-child(even) {
    margin-right: 2.8571428571rem;
  }
}
.seyama_jirushi-lp .structure_card:nth-child(even) .numbering {
  left: auto;
  right: -2.5rem;
}
.seyama_jirushi-lp .structure_card:nth-child(even) .numbering::before {
  scale: -1 1;
}
.seyama_jirushi-lp .structure_card:nth-child(even) .structure_card--img {
  left: -4.375rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .structure_card:nth-child(even) .structure_card--img {
    left: -1.4285714286rem;
  }
}
.seyama_jirushi-lp .ttl-line-dashed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .ttl-line-dashed {
    gap: 1.4285714286rem;
  }
}
.seyama_jirushi-lp .ttl-line-dashed::before, .seyama_jirushi-lp .ttl-line-dashed::after {
  content: "";
  border-bottom: 1px dashed var(--clr-primary-default);
  flex-grow: 1;
  opacity: 0.3;
}
.seyama_jirushi-lp .review_intro {
  padding-block: 3.125rem 0;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .review_intro {
    padding-block: 4.5714285714rem 0;
  }
}
.seyama_jirushi-lp .review_intro--ttl {
  position: absolute;
  top: -1.375rem;
  left: -0.0625rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: var(--clr-primary-default);
}
.seyama_jirushi-lp .review_intro--ttl::after {
  content: "";
  position: absolute;
  inset-block: 0;
  right: -0.9375rem;
  width: 1rem;
  clip-path: polygon(100% 0%, 0 50%, 100% 100%, 0 100%, 0 0);
  background-color: var(--clr-primary-default);
}
.seyama_jirushi-lp .review_card {
  padding: 0 2.2857142857rem 2.2857142857rem;
  height: auto;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .review_card {
    display: flex;
    flex-direction: column;
    width: 35rem;
  }
  .seyama_jirushi-lp .review_card .btn-zoom {
    margin-top: auto;
  }
}
.seyama_jirushi-lp .slide-review02 .review_card {
  padding: 0 2.2857142857rem 1rem;
}
.seyama_jirushi-lp .review_card--time {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.seyama_jirushi-lp .review_card--time::before {
  content: "";
  display: inline-block;
  width: 1.875rem;
  aspect-ratio: 32/31;
  background-image: url(../../../../images/seyama-jirushi-lp/icon-time.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.seyama_jirushi-lp .review_card--comment {
  line-height: 1.8;
}
.seyama_jirushi-lp .review_card .review_card--comment {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.seyama_jirushi-lp .review_card--info {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.4285714286rem;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--clr-mono-03);
}
.seyama_jirushi-lp .review_card--list li:not(:last-child)::after {
  content: "/";
  margin-inline: 0.5rem;
}
.seyama_jirushi-lp .slide-review,
.seyama_jirushi-lp .slide-review02 {
  margin-inline: calc(50% - 50vw);
}
.seyama_jirushi-lp .splide__arrow,
.seyama_jirushi-lp .splide__pagination {
  position: relative;
  inset: auto;
}
.seyama_jirushi-lp .splide__arrow {
  display: grid;
  place-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  margin: auto;
  width: 3.125rem;
  aspect-ratio: 1;
}
.seyama_jirushi-lp .splide__arrow::after {
  content: "";
  display: block;
  width: 1rem;
  color: var(--clr-primary-default);
  font-family: initial;
  aspect-ratio: 1;
  rotate: 45deg;
}
.seyama_jirushi-lp .splide__arrow svg {
  display: none;
}
.seyama_jirushi-lp .splide__arrow--prev::after {
  border-bottom: 4px solid;
  border-left: 4px solid;
}
.seyama_jirushi-lp .splide__arrow--next::after {
  border-top: 4px solid;
  border-right: 4px solid;
}
.seyama_jirushi-lp .splide__pagination {
  flex-grow: 1;
  height: 0.4375rem;
  border-radius: 9999px;
  overflow: clip;
  background-color: var(--bg-01);
}
.seyama_jirushi-lp .splide__pagination li {
  display: block;
  height: 100%;
  flex-grow: 1;
}
.seyama_jirushi-lp .splide__pagination button {
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
}
.seyama_jirushi-lp .splide__pagination button.is-active {
  background-color: var(--clr-primary-default);
}
.seyama_jirushi-lp .slide-review .splide__pagination {
  background-color: var(--bg-02);
}
.seyama_jirushi-lp .seyama_jirushi--cta {
  margin-block: 5.5rem;
  z-index: 0;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--cta {
    margin-block: 1.7142857143rem;
    padding-right: 1rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--cta > .bg-pattern {
  position: absolute;
  inset-block: 0;
  left: 0;
  right: 18.75vw;
  z-index: -1;
  border-radius: 0 7.5rem 7.5rem 0;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--cta > .bg-pattern {
    right: 1rem;
    border-radius: 0 1.7142857143rem 1.7142857143rem 0;
  }
}
.seyama_jirushi-lp .seyama_jirushi--cta .inner {
  padding-block: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--cta .inner {
    padding-block: 1.7142857143rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--cta .cta_img {
  position: absolute;
  right: -9.375rem;
  z-index: 0;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .seyama_jirushi--cta .cta_img {
    bottom: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--cta .cta_img {
    right: 0;
    top: -3.5714285714rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--cta .txt-attention {
  opacity: 0.6;
}
.seyama_jirushi-lp .seyama_jirushi--flow {
  position: relative;
  margin-top: 20rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--flow {
    margin-top: 10rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--flow::before {
  content: "";
  position: absolute;
  top: -11.1875rem;
  z-index: 0;
  width: 100%;
  height: 11.25rem;
  background-color: var(--bg-03);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--flow::before {
    top: -4.4285714286rem;
    height: 4.4285714286rem;
  }
}
.seyama_jirushi-lp .seyama_jirushi--flow::after {
  content: "";
  position: absolute;
  top: -17.1428571429rem;
  inset-inline: 0;
  z-index: 0;
  width: 20rem;
  margin-inline: auto;
  aspect-ratio: 312/209;
  background-image: url(../../../../images/seyama-jirushi-lp/flow_img-sp.png);
  background-size: cover;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .seyama_jirushi--flow::after {
    width: 11.1428571429rem;
    top: -7.1428571429rem;
  }
}
.seyama_jirushi-lp .flow_list {
  counter-reset: number;
}
.seyama_jirushi-lp .flow_card {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .flow_card {
    padding: 1.4285714286rem 1.7142857143rem;
  }
}
.seyama_jirushi-lp .flow_card:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .flow_card:not(:last-child) {
    margin-bottom: 0.8571428571rem;
  }
}
.seyama_jirushi-lp .flow_card .ttl {
  position: relative;
  padding-left: 5.5rem;
}
.seyama_jirushi-lp .flow_card .ttl-img {
  position: absolute;
  left: 0;
  top: calc(50% - 4.5rem / 2);
  display: grid;
  place-content: center;
  width: 4.5rem;
  margin-inline: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: var(--clr-primary-default);
}
.seyama_jirushi-lp .flow_card .ttl-num {
  display: block;
}
.seyama_jirushi-lp .flow_card .ttl-num::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 2rem;
  font-family: var(--font-en);
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .flow_card .ttl-num::after {
    font-size: 1.4285714286rem;
  }
}
.seyama_jirushi-lp .flow_movie .img {
  position: relative;
  z-index: 0;
  margin-top: -2.1428571429rem;
  margin-left: -1.4285714286rem;
}
.seyama_jirushi-lp .area_contents {
  display: grid;
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .area_contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .seyama_jirushi-lp .area_contents .box-bg {
    padding: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .area_contents {
    gap: 2rem;
  }
}
.seyama_jirushi-lp .area_list li:not(:last-child) {
  margin-bottom: 1rem;
}
.seyama_jirushi-lp .area_posts .post--info {
  margin-bottom: 0;
}
.seyama_jirushi-lp .area_posts .post--new {
  margin-left: 0.75rem;
  padding: 0.25rem;
  color: var(--bg-wht);
  background-color: var(--clr-secondary-default);
  line-height: 1;
  border-radius: 2px;
}
.seyama_jirushi-lp .area_posts .post--ttl {
  color: var(--clr-text-primary);
  font-family: var(--font-primary);
}
.seyama_jirushi-lp .area_posts .post--date {
  color: var(--clr-text-secondary);
  font-size: 1rem;
  font-weight: 600;
}
.seyama_jirushi-lp .area_posts .post:not(:first-child) {
  padding-top: 0.5rem;
}
.seyama_jirushi-lp .area_posts .post:not(:last-child) {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--clr-mono-02);
}
@media print, screen and (min-width: 48em) {
  .seyama_jirushi-lp .crew-voice_contents {
    display: grid;
    grid-template-columns: 500px 1fr;
    align-items: center;
    gap: 1.5rem;
  }
}
.seyama_jirushi-lp .ranking_list li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 5.8125rem;
  min-height: 2.84375rem;
  line-height: 1.5;
}
.seyama_jirushi-lp .ranking_list li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.seyama_jirushi-lp .ranking_list .rank {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.seyama_jirushi-lp .faq_card {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--clr-mono-02);
  line-height: 1.5;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .faq_card {
    padding-block: 1.4285714286rem;
  }
}
.seyama_jirushi-lp .faq_card:first-child {
  border-top: 1px solid var(--clr-mono-02);
}
.seyama_jirushi-lp .faq_card dt::before {
  content: "Q.";
  flex-shrink: 0;
  color: var(--clr-primary-default);
  font-size: 2.5rem;
  font-family: var(--font-en);
  font-weight: 600;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .faq_card dt::before {
    font-size: 1.7142857143rem;
  }
}
.seyama_jirushi-lp .cta_bnr {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .cta_bnr {
    padding-bottom: 4.2857142857rem;
  }
}
.seyama_jirushi-lp .yell_cta {
  position: relative;
  padding-top: 12.5rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .yell_cta {
    padding-top: 7.1428571429rem;
  }
}
.seyama_jirushi-lp .yell_cta::before {
  content: "";
  position: absolute;
  top: -1px;
  inset-inline: 0;
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 600/50;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--clr-primary-default);
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .yell_cta::before {
    aspect-ratio: 452/83;
  }
}
.seyama_jirushi-lp .yell_cta .seyama_jirushi--btn {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .yell_cta .seyama_jirushi--btn a {
    padding: 0.7em;
  }
}
.seyama_jirushi-lp .yell_cta .seyama_jirushi--btn::before {
  content: "";
  position: absolute;
  top: -15.625rem;
  inset-inline: 0;
  z-index: -1;
  margin-inline: auto;
  width: 40.875rem;
  aspect-ratio: 654/308;
  background-image: url(../../../../images/seyama-jirushi-lp/cta03_img-sp.png);
  background-size: cover;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .yell_cta .seyama_jirushi--btn::before {
    top: -8.8571428571rem;
    width: 23.3571428571rem;
  }
}
.seyama_jirushi-lp .movie_box {
  position: relative;
  z-index: 0;
  overflow: clip;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--bg-01);
  border-radius: 1.5rem;
  border: 2px solid var(--clr-primary-default);
  cursor: pointer;
}
.seyama_jirushi-lp .movie_box .moviearea--btn {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.seyama_jirushi-lp .movie_box .moviearea--btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 7.5rem;
  margin: auto;
  background: url(../../../../images/seyama-jirushi-lp/moviestart.svg) center no-repeat;
  aspect-ratio: 1;
  pointer-events: none;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .movie_box .moviearea--btn::before {
    width: 5.7142857143rem;
  }
}
.seyama_jirushi-lp .movie_box video {
  width: 100% !important;
  aspect-ratio: 16/9;
  vertical-align: middle;
}
.seyama_jirushi-lp .modal-common {
  position: fixed;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1080px;
  z-index: 99999;
  border-radius: 0.3125rem;
  border: 2px solid var(--clr-sub, #ccc);
  background-color: var(--bg-wht, #fff);
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  overflow: unset !important;
  display: block;
  width: 90%;
  max-width: 800px;
  background-color: var(--bg-wht);
  border-radius: 0.75rem;
  padding: 0;
  height: 90vh;
  max-height: 85vh;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .modal-common {
    max-height: 90svh;
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    background-color: unset;
  }
}
.seyama_jirushi-lp .modal-common .inner {
  padding-block: 2.5rem;
}
.seyama_jirushi-lp .modal-common + .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
.seyama_jirushi-lp .modal-common.active, .seyama_jirushi-lp .modal-common.active + .overlay {
  opacity: 1;
  pointer-events: auto;
}
.seyama_jirushi-lp .modal-common.active {
  overflow: scroll;
}
.seyama_jirushi-lp .modal-common .overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.seyama_jirushi-lp .modal-scroll {
  overflow: auto;
  height: 100%;
  padding: 0 2rem 2rem;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .modal-scroll {
    padding: 1rem;
  }
}
.seyama_jirushi-lp .modal-content {
  height: 100%;
}
@media screen and (max-width: 47.9375em) {
  .seyama_jirushi-lp .modal-content {
    border-radius: 0.5rem;
    box-shadow: none;
    width: 90%;
    margin-inline: auto;
    background-color: #fff;
    padding-block: 1.7142857143rem;
  }
}
.seyama_jirushi-lp .modal-content a {
  color: var(--clr-primary-default);
  text-decoration: underline;
}
.seyama_jirushi-lp .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--clr-mono-01);
  background-color: var(--bg-wht);
}
.seyama_jirushi-lp .modal-close {
  position: absolute;
  top: -5rem;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  margin-top: 2rem;
  border: none;
  color: var(--clr-mono-03);
  font-size: 2.125rem;
  background-color: var(--clr-mono-01);
  border-radius: 50%;
  transition: var(--transit-default);
  cursor: pointer;
}
.seyama_jirushi-lp .modal-close:hover {
  background-color: var(--clr-mono-01);
  color: var(--clr-primary-default);
}
.seyama_jirushi-lp .modal-body {
  padding-bottom: 2rem;
}
.seyama_jirushi-lp .modal-body .blc-sm:not(:last-child) {
  margin-bottom: 0.5rem;
}
.seyama_jirushi-lp .modal-body table {
  width: 100%;
}
.seyama_jirushi-lp .modal-body table th,
.seyama_jirushi-lp .modal-body table td {
  padding: 0.5em 1em;
  line-height: 1.5;
}
.seyama_jirushi-lp .modal-body table th {
  text-align: left;
}
.seyama_jirushi-lp .modal-body table th:first-child {
  width: 16.25rem;
}
.seyama_jirushi-lp .modal-body thead th {
  background-color: var(--clr-mono-06);
}
.seyama_jirushi-lp .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transit-default, all 0.4s ease-out);
  cursor: pointer;
}
.seyama_jirushi-lp .overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.seyama_jirushi-lp .safari .seyama_jirushi-lp .modal-content {
  min-height: 90svh;
}

/* ##############################################################################

    SEARCH

############################################################################## */
/* ##############################################################################

    SINGLE

############################################################################## */
.article--ttl {
  line-height: 1.44;
  margin-bottom: 0.6666666667em;
}
@media screen and (max-width: 47.9375em) {
  .article--ttl {
    font-size: 1.7142857143rem;
    line-height: 1.42;
  }
}

@media screen and (max-width: 47.9375em) {
  .article .post--info {
    margin-bottom: 16px;
  }
}

.post--info-btm {
  padding: 1rem 0;
}

.article .simplefavorite-button {
  width: 48px;
  aspect-ratio: 1/1;
  margin-left: auto;
  border-radius: 50%;
  background-color: var(--bg-wht, #fff);
}
@media screen and (max-width: 47.9375em) {
  .article .simplefavorite-button {
    width: 40px;
  }
}
.article .post--bkm {
  width: 30px;
}
@media screen and (max-width: 47.9375em) {
  .article .post--bkm {
    width: 24px;
  }
}
.article .post--bkm svg {
  width: 100%;
  stroke-width: 1.5px;
}
.article .eyecatch_wrap .simplefavorite-button,
.article .eyecatch .simplefavorite-button {
  position: absolute;
  top: 17px;
  right: 20px;
}
@media screen and (max-width: 47.9375em) {
  .article .eyecatch_wrap .simplefavorite-button,
  .article .eyecatch .simplefavorite-button {
    top: 12px;
    right: 16px;
  }
}
@media screen and (max-width: 47.9375em) {
  .article .eyecatch_wrap {
    margin-bottom: 16px;
  }
}

/* --- アイキャッチ --- */
.eyecatch {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 0.625rem;
  border: 3px solid var(--clr-main, #1d7fb7);
}
.eyecatch::before {
  padding-top: 57.3400250941%;
}
@media screen and (max-width: 47.9375em) {
  .eyecatch::before {
    padding-top: 65.2173913043%;
  }
}
@media screen and (max-width: 47.9375em) {
  .eyecatch {
    margin-bottom: 16px;
  }
}

/* --- アイキャッチ（拡大表示有り） --- */
.eyecatch:has(.modal-trigger),
.eyecatch:has(.modal-trigger) + .txt-attention {
  margin-bottom: 0.5rem;
}

/* --- アイキャッチ（スライド） --- */
.eyecatch_wrap .eyecatch {
  overflow: visible;
}
.eyecatch_wrap .slick-list {
  border-radius: 0.5625rem;
}

.dots-img .slick-dots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.dots-img .slick-dots li {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  border-radius: 0;
  margin: 0;
  background-color: var(--bg-main, #1d7fb7);
}
.dots-img .slick-dots li::before {
  display: none;
}
.dots-img .slick-dots li:hover .pager-img {
  opacity: 1;
}
.dots-img .pager-img {
  display: block;
  width: 100%;
  height: 100%;
  transition: var(--transit-default, all 0.4s ease-out);
}
.dots-img .slick-active .pager-img {
  opacity: 0.3;
}

/* --- 目次 --- */
.ez-toc-debug-messages {
  display: none;
}

div#ez-toc-container {
  border-radius: 0.1875rem;
  border: 1px solid var(--clr-sub, #ccc);
  background-color: #eee;
  padding: 0 !important;
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
}
div#ez-toc-container > nav {
  flex: 1;
  padding: 14px 30px;
}
@media screen and (max-width: 47.9375em) {
  div#ez-toc-container > nav {
    padding: 14px;
  }
}
@media print, screen and (min-width: 48em) {
  div#ez-toc-container {
    display: flex;
  }
}

.ez-toc-title-container {
  display: flex;
  align-items: center;
  padding: 1em;
  text-align: center;
  background-color: var(--bg-sub, #ccc);
}
@media print, screen and (min-width: 48em) {
  .ez-toc-title-container {
    justify-content: center;
    width: 4rem !important;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
  }
}
@media screen and (max-width: 47.9375em) {
  .ez-toc-title-container {
    position: relative;
    padding: 0.55em 0.75em;
    border-radius: 0.1875rem;
    transition: var(--transit-default, all 0.4s ease-out);
  }
  .ez-toc-title-container.active {
    border-radius: 0.1875rem 0.1875rem 0 0;
  }
  .ez-toc-title-container + nav {
    display: none;
  }
  .ez-toc-title-container .ez-toc-title-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.75rem;
    margin: auto;
    width: 1.1875rem;
    height: 1.1875rem;
    transition: var(--transit-default, all 0.4s ease-out);
  }
}
@media screen and (max-width: 47.9375em) and (max-width: 47.9375em) {
  .ez-toc-title-container .ez-toc-title-toggle {
    right: 1.1428571429rem;
    width: 0.8571428571rem;
    height: 0.8571428571rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .ez-toc-title-container .ez-toc-title-toggle::before, .ez-toc-title-container .ez-toc-title-toggle::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 3px;
    border-bottom: 3px solid var(--clr-wht, #fff);
    transition: var(--transit-default, all 0.4s ease-out);
  }
  .ez-toc-title-container .ez-toc-title-toggle::after {
    transform: rotate(90deg);
  }
  .ez-toc-title-container.active .ez-toc-title-toggle {
    transform: rotate(90deg);
  }
  .ez-toc-title-container.active .ez-toc-title-toggle::before {
    opacity: 0;
  }
}

div#ez-toc-container p.ez-toc-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-feature-settings: normal;
  color: var(--clr-wft, #fff);
  letter-spacing: 0.1em;
}
div#ez-toc-container p.ez-toc-title::before {
  content: "";
  display: block;
  width: 0.8823529412em;
  aspect-ratio: 1/1;
  background-image: url(../../../../images/wp/new/common/icn-list.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media print, screen and (min-width: 48em) {
  div#ez-toc-container p.ez-toc-title::before {
    margin-bottom: 0.6470588235em;
  }
}
@media screen and (max-width: 47.9375em) {
  div#ez-toc-container p.ez-toc-title::before {
    font-size: 1.2142857143rem;
    margin-right: 0.6470588235em;
  }
}

#ez-toc-container.counter-hierarchy .ez-toc-list > li > a {
  padding: 0.5em 0;
}

#ez-toc-container.counter-hierarchy .ez-toc-list li::before {
  display: none;
}

#ez-toc-container.counter-hierarchy .ez-toc-link {
  display: block;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  border-bottom: 0;
}
#ez-toc-container.counter-hierarchy .ez-toc-link:hover {
  text-decoration: none;
  opacity: 0.7;
  color: var(--clr-main, #1d7fb7) !important;
}
#ez-toc-container.counter-hierarchy .ez-toc-link[title="&nbsp;"][title=" "] {
  display: none;
}

#ez-toc-container.counter-hierarchy .ez-toc-list > li > .ez-toc-link {
  font-size: 1.125rem;
}
#ez-toc-container.counter-hierarchy .ez-toc-list > li > .ez-toc-link:not(:last-child) {
  border-bottom: 1px solid rgba(191, 191, 191, 0.5);
}

#ez-toc-container.counter-hierarchy .ez-toc-list > li:not(:last-child) > .ez-toc-link:only-child {
  border-bottom: 1px solid rgba(191, 191, 191, 0.5);
}

#ez-toc-container.counter-hierarchy .ez-toc-list ul {
  margin-top: 0.5em;
  margin-left: 1em;
}
#ez-toc-container.counter-hierarchy .ez-toc-list ul .ez-toc-link {
  position: relative;
  padding-left: 1.25em;
}
#ez-toc-container.counter-hierarchy .ez-toc-list ul .ez-toc-link::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 0.5em;
  height: 2px;
  border-bottom: 2px solid;
  border-radius: 0;
}
@media screen and (max-width: 67.5em) {
  #ez-toc-container.counter-hierarchy .ez-toc-list ul .ez-toc-link::before {
    top: 0.9em;
  }
}

/* tools
**************************************** */
.article--tools .post--catch {
  position: relative;
  display: table;
}

.single-tools .modal-trigger {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bg-wht);
  opacity: 0;
}
.single-tools .modal-trigger:hover {
  opacity: 0.3;
}

.single-tools .modal-common img {
  max-height: 100%;
}

/* layout-example
**************************************** */
@media screen and (max-width: 47.9375em) {
  .single-layout-example .section_pdg:first-of-type {
    padding-top: 1.25rem;
  }
}

@media print, screen and (min-width: 48em) {
  .eyecatch_info {
    display: grid;
    grid-template-columns: 57.5% 37.5%;
    column-gap: 5%;
    align-items: flex-start;
  }
}
.eyecatch_info > .eyecatch {
  margin-bottom: 0;
}

.layout-example--article .eyecatch .img-trim::before {
  padding-top: 100%;
}
.layout-example--article .post--dl {
  display: flex;
  flex-wrap: wrap;
}
.layout-example--article .side--ttl + .post--dl {
  margin-top: -0.5rem;
}
.layout-example--article .post--dl dt {
  position: relative;
  width: 14rem;
  padding-left: 1.625em;
}
.layout-example--article .post--dl dt::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.625em;
  aspect-ratio: 1/1;
  background-color: var(--bg-sub, #ccc);
  border-radius: 50%;
}
.layout-example--article .post--dl dd {
  width: calc(100% - 14rem);
}
.layout-example--article .ttl_info .btn-sales {
  margin-bottom: 2rem;
}

.single-layout-example .catlist_toggle {
  position: relative;
}
.single-layout-example .catlist_toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--clr-main);
  border-width: 0 2px 2px 0;
  position: absolute;
  rotate: 45deg;
  right: 5px;
  top: 0.5em;
  display: block;
}
.single-layout-example .catlist_toggle.active::after {
  rotate: -135deg;
}

.layout_catlist {
  margin-bottom: 0.5714285714rem;
}
.layout_catlist.catlist_toggle {
  height: 1.5em;
  overflow: hidden;
  padding-right: 24px;
}
.layout_catlist.catlist_toggle.active {
  height: auto;
}

/* news
**************************************** */
.single-news .main_column {
  padding: 32px 40px;
}
@media screen and (max-width: 47.9375em) {
  .single-news .main_column {
    padding: 24px;
  }
}

/* pass
**************************************** */
#pass p {
  margin-bottom: 1em;
}

#pass input[name=post_password] {
  padding: 0.3125rem;
  border: solid 1px #aaa;
  outline: none;
}

#pass input[type=submit] {
  padding: 0.25rem 0.375rem;
  letter-spacing: 0.15em;
  background-color: #ddd;
  border-radius: 0.25rem;
  outline: none;
  border: none;
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
}

#pass input[type=submit]:hover {
  opacity: 0.7;
}

/* profile
**************************************** */
.profile {
  margin-top: 5rem;
  padding: 32px 36px 36px 32px;
  border-radius: 0.625rem;
  border: 3px solid #215074;
}
@media print, screen and (min-width: 48em) {
  .profile {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 47.9375em) {
  .profile {
    margin-top: 2.8571428571rem;
    padding: 24px;
    margin-top: 32px;
  }
}
.profile .sns--list li:not(:last-child) {
  margin-right: 0.8125rem;
}
.profile .sns--list a {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  line-height: 1;
}
.profile .sns--list svg {
  fill: var(--clr-main, #1d7fb7);
  margin-right: 0.4375rem;
}
.profile .sns--txt {
  color: var(--clr-main, #1d7fb7);
}

.profile--ttl {
  top: -30px;
  left: 14px;
  letter-spacing: normal;
  line-height: 1;
}
@media screen and (max-width: 47.9375em) {
  .profile--ttl {
    top: -20px;
    left: 8px;
    font-size: 1.5714285714rem;
  }
}

.profile--img {
  display: block;
  width: 16.5%;
  aspect-ratio: 1/1;
  margin-right: 3.125%;
  border-radius: 50%;
}
@media screen and (max-width: 47.9375em) {
  .profile--img {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
  }
}

@media print, screen and (min-width: 48em) {
  .profile--txtarea {
    flex: 1;
  }
}

.profile--info .sns_area {
  white-space: nowrap;
}
@media screen and (max-width: 47.9375em) {
  .profile--info .sns_area {
    margin-top: 0.5em;
  }
}

.profile--position {
  line-height: 1.71;
  letter-spacing: 0.05em;
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .profile--position {
    width: auto;
  }
}

.profile--name {
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 48em) {
  .profile--name:not(:last-child) {
    margin-right: 34px;
  }
}

.profile--des {
  line-height: 2.13;
  letter-spacing: 0.05em;
}
.profile--des:not(:last-child) {
  margin-bottom: 0.5em;
}

/* share
**************************************** */
.share {
  padding: 2.5rem 0 1.875rem;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.share:not(:last-child) {
  margin-bottom: 4rem;
}

.share--ttl {
  margin-bottom: 0.5em;
}

.share--list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.125rem;
  height: 4.125rem;
}

.share--list img {
  width: 2.25rem;
}

.share--list .x img {
  width: 2rem;
}

/* blc-related
**************************************** */
.blc-related {
  position: relative;
  padding: 20px 48px 36px;
  border-radius: 0.625rem;
}
@media screen and (max-width: 47.9375em) {
  .blc-related {
    padding: 20px 24px 24px;
  }
}
.blc-related::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 6px;
}
.blc-related.bg-main::before {
  background-color: var(--btn-bg-cta, #fff);
}
.blc-related.bg-off_wh::before {
  background-color: var(--bg-main, #1d7fb7);
}
.blc-related .posts-ttl .post--ttl {
  color: var(--clr-main, #1d7fb7);
  background-color: var(--bg-wht, #fff);
}
.blc-related .posts-ttl .post--ttl::before {
  color: var(--clr-main, #1d7fb7);
  background-color: var(--btn-bg-cta, #fff);
}
.blc-related .posts-ttl .post--ttl:hover {
  background-color: #d5dee6;
}

.blc-related--ttl {
  line-height: 0.92;
  letter-spacing: 0.05em;
  margin-bottom: 1em;
}

.bg-main .blc-related--ttl {
  color: var(--btn-bg-cta, #fff);
}

.bg-off_wh .blc-related--ttl {
  color: var(--clr-main, #1d7fb7);
}

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 47.9375em) {
  .wp-pagenavi {
    margin-top: 24px;
  }
}

.single-layout-example .layout-example--pagenavi {
  margin-block: 2.5rem !important;
}

.wp-pagenavi .pages {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 1em;
}

.wp-pagenavi a {
  position: relative;
  padding: 0.18em 1em;
  background-color: var(--bg-main, #1d7fb7);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wp-pagenavi a:hover {
  opacity: 0.7;
}

.wp-pagenavi a {
  color: #fff;
}

body:not(.single-layout-example) .wp-pagenavi > *:not(.pages) {
  max-width: 38.4615384615%;
}

.page-request-answer .wp-pagenavi > *:not(.pages),
.archive .wp-pagenavi > *:not(.pages) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .page-request-answer .wp-pagenavi > *:not(.pages),
  .archive .wp-pagenavi > *:not(.pages) {
    width: 2rem;
    height: 2rem;
  }
}

.wp-pagenavi-single a[rel=prev],
.wp-pagenavi-single a[rel=next] {
  width: 40px;
}

.wp-pagenavi > *:not(.pages) {
  margin-bottom: 4px;
}

.wp-pagenavi > *:not(.pages):not(:last-child) {
  margin-right: 4px;
}

.wp-pagenavi .extend {
  width: 24px !important;
}

.wp-pagenavi a[rel=prev]::before,
.wp-pagenavi a[rel=next]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
}

.wp-pagenavi a[rel=prev]::before,
.wp-pagenavi a[rel=next]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  width: 8px;
  height: 8px;
}

.wp-pagenavi a[rel=prev]::before,
.wp-pagenavi .first::before,
.wp-pagenavi .first::after {
  transform: rotate(-135deg);
}

.wp-pagenavi a[rel=next]::before,
.wp-pagenavi .last::before,
.wp-pagenavi .last::after {
  transform: rotate(45deg);
}

.wp-pagenavi-single a[rel=prev]::before {
  transform: rotate(45deg);
}

.wp-pagenavi-single a[rel=next]::before {
  transform: rotate(-135deg);
}

.wp-pagenavi .first::before,
.wp-pagenavi .last::before {
  left: -6px;
}
@media screen and (max-width: 47.9375em) {
  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -5px;
  }
}

.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  right: -6px;
}
@media screen and (max-width: 47.9375em) {
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -5px;
  }
}

@media screen and (max-width: 47.9375em) {
  .wp-pagenavi-single a[rel=prev],
  .wp-pagenavi-single a[rel=next] {
    width: 32px;
  }
}
/* Pz-LinkCard
**************************************** */
.lkc-link {
  position: relative;
  display: block;
  padding: 1.5rem 2rem;
  margin: 3rem 0 2rem;
  border-radius: 0.1875rem;
  border: 1px solid var(--clr-sub, #ccc) !important;
  background-color: #eee;
}
@media screen and (max-width: 47.9375em) {
  .lkc-link {
    padding: 0.75rem;
  }
}
.lkc-link:hover {
  opacity: 0.7;
}
.lkc-link::before {
  content: "あわせて読みたい";
  position: absolute;
  top: 1px;
  left: -1px;
  display: inline-block;
  background-color: var(--bg-main, #1d7fb7);
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  line-height: 1;
  transform: translateY(-100%);
  border-radius: 0.1875rem 0.1875rem 0 0;
  padding: 0.5rem 1.5rem;
}
.lkc-content {
  overflow: hidden;
}

.lkc-thumbnail {
  float: left;
  width: 34%;
  aspect-ratio: 260/150;
  margin-right: 3%;
}
@media screen and (max-width: 47.9375em) {
  .lkc-thumbnail {
    margin-right: 4%;
  }
}

.lkc-thumbnail img {
  margin: 0;
}

.lkc-favicon,
.lkc-domain {
  display: none !important;
}

.lkc-sns-po {
  display: none;
}

.lkc-date {
  margin-bottom: 0.75em;
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (max-width: 47.9375em) {
  .lkc-date {
    margin-top: 0.25em;
    margin-bottom: 1em;
    font-size: 0.5714285714rem;
  }
}

.lkc-title-text {
  line-height: 1.5;
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
}
@media screen and (max-width: 47.9375em) {
  .lkc-title-text {
    font-size: 0.7857142857rem;
  }
}

.lkc-url {
  margin-bottom: 0.5em;
  font-size: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
@media screen and (max-width: 47.9375em) {
  .lkc-url {
    margin-bottom: 0;
  }
}

.lkc-excerpt {
  font-size: 0.75rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--clr-body, #333);
}
@media screen and (max-width: 47.9375em) {
  .lkc-excerpt {
    display: none;
  }
}

.single_bnr a:hover {
  opacity: 0.5;
}

.singe_cta {
  transition: var(--transit-default);
}
@media (hover: hover) {
  .singe_cta:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 47.9375em) {
  .blog-ttlwrap {
    display: flex;
    flex-direction: column;
  }
}

.blog-ttlwrap .post--info {
  order: 1;
}

.single_blog-news {
  transition: var(--transit-default);
}
.single_blog-news:hover {
  opacity: 0.8;
}

.single_blog-news .post--txtarea {
  display: flex;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: #ffe678;
  column-gap: 0.625rem;
  align-items: center;
}

.single_blog-news .post--txtarea .post--ttl {
  position: relative;
  font-family: var(--font-jp, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
  font-weight: bold;
  padding-right: 20px;
}
.single_blog-news .post--txtarea .post--ttl::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--clr-main);
  border-width: 2px 2px 0 0;
  position: absolute;
  rotate: 45deg;
  right: 5px;
  top: 50%;
  translate: 0 -50%;
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .single_blog-news .post--txtarea .post--ttl {
    font-size: 0.9285714286rem;
  }
}

@media screen and (max-width: 47.9375em) {
  .single-blog .post--info {
    align-items: flex-start;
  }
}

@media screen and (max-width: 47.9375em) {
  .single-blog .post--info .post--date {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-right: auto;
  }
}

.single_blog-news .post--txtarea a {
  color: var(--clr-main);
}

.single_blog-news .post--txtarea .post--date {
  color: var(--clr-main);
}
@media screen and (max-width: 47.9375em) {
  .single_blog-news .post--txtarea .post--date {
    white-space: nowrap;
    display: flex;
    align-items: center;
    column-gap: 10px;
  }
}

.catlist_toggle {
  position: relative;
}
@media screen and (max-width: 47.9375em) {
  .catlist_toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid var(--clr-main);
    border-width: 0 2px 2px 0;
    position: absolute;
    rotate: 45deg;
    right: 5px;
    top: 0.5em;
    display: block;
  }
  .catlist_toggle.active::after {
    rotate: -135deg;
  }
}

@media screen and (max-width: 47.9375em) {
  .blog_catlist {
    margin-bottom: 0.5714285714rem;
  }
  .blog_catlist.catlist_toggle {
    height: 1.5em;
    overflow: hidden;
    padding-right: 24px;
  }
  .blog_catlist.catlist_toggle.active {
    height: auto;
  }
}

@media screen and (max-width: 47.9375em) {
  .blog_taglist.catlist_toggle {
    height: 2.5em;
    overflow: hidden;
    padding-right: 24px;
  }
  .blog_taglist.catlist_toggle.active {
    height: auto;
  }
}

@media screen and (max-width: 47.9375em) {
  .single-blog .post--info-lft {
    order: 2;
  }
  .single-blog .post--info-rgt {
    order: 1;
  }
}

@media screen and (max-width: 47.9375em) {
  .single-blog .section_pdg:first-of-type {
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 47.9375em) {
  .show_sec {
    position: fixed;
    top: 72px;
    z-index: -999;
    display: flex;
    opacity: 0;
    width: 100%;
    background-color: #eaf2f7;
    transition: var(--transit-default);
  }
  .show_sec.scroll-in {
    z-index: 999;
    opacity: 1;
  }
  .show_sec--btn {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
  }
  .show_sec--btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    display: block;
    width: 8px;
    height: 8px;
    border: 2px solid var(--clr-main);
    border-width: 0 2px 2px 0;
    transition: transform 0.2s linear;
  }
  .show_sec--btn.active::before {
    transform: translate(-50%, -50%) rotate(225deg);
  }
  .show_sec--list {
    overflow: hidden;
    flex: 1;
  }
  .show_sec--list li {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    max-width: calc(100vw - 4rem);
    height: 0;
    min-height: 0;
    padding-right: 1.1428571429rem;
    opacity: 0;
    transition: var(--transit-default);
  }
  .show_sec--list li.current {
    z-index: 9;
    display: -webkit-box;
    height: 40px;
    min-height: 40px;
    line-height: 40px;
    font-family: var(--font-jp);
    opacity: 1;
    color: var(--clr-main);
  }
  .show_sec.active .show_sec--list li {
    display: -webkit-box;
    height: 40px;
    min-height: 40px;
    line-height: 40px;
    opacity: 1;
    transition: var(--transit-default);
  }
}
/* sitemap
*************************************************** */
@media print, screen and (min-width: 48em) {
  .sitemap--blc {
    display: flex;
    gap: 5%;
  }
}

@media print, screen and (min-width: 48em) {
  .sitemap--menu {
    flex: 1;
  }
}

.sitemap--menu a,
.sitemap--menu span {
  display: block;
}

.sitemap--menu a {
  position: relative;
  padding: 0 1.25em;
  color: var(--clr-main, #1d7fb7);
}
.sitemap--menu a:hover {
  opacity: 0.7;
}

.sitemap--menu > li > a {
  font-size: 1.125rem;
}
.sitemap--menu > li > a::before {
  content: "";
  position: absolute;
  top: 0.5555555556em;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: var(--bg-main, #1d7fb7);
  border-radius: 50%;
}

.sitemap--tax {
  position: relative;
  padding-right: 1.25em;
  color: var(--clr-main);
  cursor: pointer;
  line-height: var(--line-height-default);
  transition: var(--transit-default);
}
.sitemap--tax::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5em;
  margin: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(40deg) skew(-10deg);
  transition: var(--transit-default);
}
.sitemap--tax.active::before {
  transform: rotate(220deg) skew(-10deg);
}
.sitemap--tax:hover {
  opacity: 0.7;
}
.sitemap--tax + .sitemap_sub_nav {
  display: none;
}

.sitemap_sub_nav--blc {
  padding-left: 2em;
}

.sitemap_sub_nav a::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0.625rem;
  width: 0.3125rem;
  height: 2px;
  border-bottom: 2px solid;
}

.temporary_hero .list {
  display: block;
  position: relative;
  text-align: left;
  padding-left: 1.5rem;
}
.temporary_hero .list::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--clr-main);
}
.temporary_hero .list-box {
  width: fit-content;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .temporary_hero .list-box {
    margin-left: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .temporary_hero {
    margin-bottom: 1.2857142857rem;
  }
}

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

.temporary_promise--deco01 {
  position: absolute;
  top: 0rem;
  left: 30%;
  width: 10.5%;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise--deco01 {
    top: -0.5%;
    left: 2%;
    width: 24%;
  }
}

.temporary_promise .inner {
  margin-top: -5rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise .inner {
    margin-top: -3.125rem;
  }
}
.temporary_promise .inner .ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise .inner .ttl {
    margin-bottom: 0;
  }
}

.temporary_promise--lists {
  counter-reset: number;
}
@media print, screen and (min-width: 48em) {
  .temporary_promise--lists {
    margin-top: -2rem;
  }
}

.temporary_promise--lists-txt {
  display: grid;
  grid-template-columns: 1fr 30%;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise--lists-txt {
    display: block;
  }
}
.temporary_promise--lists-txt p {
  width: 100%;
}
.temporary_promise--lists-txt .txt-sm {
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise--lists-txt .txt-sm {
    font-size: 1rem;
  }
}

.temporary_promise--lists li {
  position: relative;
  padding: 2.5rem 2.5rem 0 2.5rem;
  border: 2px solid var(--clr-main);
  border-radius: 1.1428571429rem;
  background-color: var(--bg-wht);
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise--lists li {
    padding: 1.1428571429rem 1.1428571429rem 0 1.1428571429rem;
  }
}
.temporary_promise--lists li .toggle_btn {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise--lists li .toggle_btn {
    padding-bottom: 1.7142857143rem;
  }
}
.temporary_promise--lists li:nth-child(3) .imgarea {
  width: 11.875rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.temporary_promise--lists li:nth-child(4) .imgarea {
  width: 16.5625rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.temporary_promise--lists li:nth-child(5) .imgarea {
  width: 17.125rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.temporary_promise--lists li:not(:last-child) {
  margin-bottom: 2.8571428571rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise--lists li:not(:last-child) {
    margin-bottom: 0.5714285714rem;
  }
}
.temporary_promise--lists li .font-en {
  color: rgba(46, 154, 212, 0.4);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 47.9375em) {
  .temporary_promise--lists li .imgarea {
    margin-top: 0.5714285714rem;
  }
}

.temporary_hero .ttl {
  margin-inline: calc(50% - 50vw);
}

@media print, screen and (min-width: 48em) {
  .temporary_hero .ttl-img {
    width: 37.5rem;
  }
}
.toggle_btn {
  gap: 1.5rem;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 47.9375em) {
  .toggle_btn {
    gap: 0.5714285714rem;
  }
}

.toggle_btn-icon {
  flex-shrink: 0;
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  background-color: var(--clr-main);
  position: relative;
  border-radius: 9999px;
}
@media screen and (max-width: 47.9375em) {
  .toggle_btn-icon {
    width: 1.7142857143rem;
    height: 1.7142857143rem;
  }
}
.toggle_btn-icon::before, .toggle_btn-icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.125rem;
  border-bottom: 3px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 47.9375em) {
  .toggle_btn-icon::before, .toggle_btn-icon::after {
    width: 0.7142857143rem;
  }
}
.toggle_btn-icon::after {
  transform: translate(-50%, -50%);
}
.toggle_btn-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}
.toggle_btn-icon.open::before {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.temporary_attention7 {
  z-index: 0;
}
.temporary_attention7 .ttl-img {
  width: 33.75rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7 .ttl-img {
    width: auto;
  }
}

.temporary_attention7--lists {
  counter-reset: number;
  padding-top: 2.8571428571rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7--lists {
    padding-top: 1.1428571429rem;
  }
}
.temporary_attention7--lists .dot-list {
  padding: 1.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7--lists .dot-list {
    padding: 1.1428571429rem;
  }
}
.temporary_attention7--lists .dot-list .bold {
  background-image: none;
}
.temporary_attention7--lists .dot-list li {
  position: relative;
  padding-left: 1.5rem;
  letter-spacing: 0.42px;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7--lists .dot-list li {
    padding-left: 1.4285714286rem;
  }
}
.temporary_attention7--lists .dot-list li::before {
  position: absolute;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  left: 0;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
  background-color: var(--clr-main);
  border-radius: 50%;
}
.temporary_attention7--lists .dot-list .ttl {
  text-align: center;
  border-radius: 0.5rem;
  background: #8fa6b7;
  color: var(--clr-wht);
  padding: 0.25rem 1rem;
}

.temporary_attention7--lists > li {
  position: relative;
  padding: 1.5rem;
  border: 2px solid #215074;
  border-radius: 1.1428571429rem;
  background-color: #f7f7f4;
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7--lists > li {
    padding: 1.1428571429rem;
  }
  .temporary_attention7--lists > li:nth-child(3) .imgarea img {
    width: 12.9375rem;
  }
  .temporary_attention7--lists > li:nth-child(6) .imgarea img {
    width: 14.3125rem;
  }
}
.temporary_attention7--lists > li:not(:last-child) {
  margin-bottom: 2.8571428571rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7--lists > li:not(:last-child) {
    margin-bottom: 1.1428571429rem;
  }
}
.temporary_attention7--lists > li .ttl.toggle_btn {
  position: relative;
  width: 100%;
  letter-spacing: 0.08em;
}
.temporary_attention7--lists > li .ttl.toggle_btn::before {
  content: "";
  position: absolute;
  inset: -2rem -3rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7--lists > li .ttl.toggle_btn::before {
    inset: -1.5714285714rem;
  }
}
.temporary_attention7--lists > li .ttl.toggle_btn .txt-s {
  letter-spacing: 0.48px;
}
.temporary_attention7--lists > li .font-en {
  color: rgba(46, 154, 212, 0.4);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.temporary_attention7--lists .txtarea {
  position: relative;
  margin-top: 1.5714285714rem;
  padding-right: 0.7142857143rem;
  padding-left: 0.7142857143rem;
}
@media print, screen and (min-width: 48em) {
  .temporary_attention7--lists .txtarea:has(.imgarea) {
    display: grid;
    grid-template-columns: 1fr 30%;
    align-items: center;
    gap: 2.5rem;
  }
}
.temporary_attention7--lists .txtarea .txt-sm {
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary_attention7--lists .txtarea .txt-sm {
    font-size: 1rem;
  }
}

@media screen and (max-width: 47.9375em) {
  .pc_show {
    display: none;
  }
  .mobile_show {
    display: table-cell !important;
  }
}
.mobile_show {
  display: none;
}

.accordion_box {
  margin-inline: -0.5714285714rem;
  /* 上 */
  /* 左 */
  /* 右 */
  /* 下 */
}
.accordion_box .table-sm {
  width: 25%;
}
@media screen and (max-width: 47.9375em) {
  .accordion_box .table-sm {
    width: 45%;
  }
}
.accordion_box:not(:last-child) {
  margin-bottom: 1rem;
}
.accordion_box .table2 th {
  padding: 0.25rem;
}
.accordion_box .table2 td {
  padding: 0.5rem 0.25rem;
}
.accordion_box .table-border {
  border-bottom-color: var(--clr-main) !important;
  text-align: center !important;
}
.accordion_box .table3 thead tr:first-child th {
  border-top-color: var(--clr-main);
}
.accordion_box .table3 tr td:first-child,
.accordion_box .table3 tr th:first-child {
  border-left-color: var(--clr-main);
}
.accordion_box .table3 tr td:last-child,
.accordion_box .table3 tr th:last-child {
  border-right-color: var(--clr-main);
}
.accordion_box .table3 tbody tr:last-child td {
  border-bottom-color: var(--clr-main);
}
.accordion_box .table3 th,
.accordion_box .table3 td {
  padding: 0.5rem;
  vertical-align: middle;
  border: 1px solid #d3dce3;
}
@media screen and (max-width: 47.9375em) {
  .accordion_box .table3 th,
  .accordion_box .table3 td {
    padding: 0.3571428571rem;
  }
}
.accordion_box .table3 td {
  color: var(--clr-main);
  text-align: left;
}
.accordion_box .attention {
  letter-spacing: 0.36px;
}

.accordion--ttl {
  position: relative;
  padding: 1.1428571429rem 2rem;
  color: var(--clr-wht);
  font-size: 1.1428571429rem;
  background-color: var(--bg-main);
  border-radius: 0.5714285714rem;
}
.accordion--ttl .toggle_btn-icon {
  position: absolute;
  right: 1.1428571429rem;
  top: 50%;
  translate: 0 -50%;
}
.accordion--ttl .toggle_btn-icon::before, .accordion--ttl .toggle_btn-icon::after {
  width: 1.0714285714rem;
  border-bottom: 1px solid #a7b9c7;
}

.accordion--cont {
  padding: 0.8571428571rem;
}
.accordion--cont table {
  width: 100%;
}

.old_background {
  background-color: #e6e6e6;
}

.player_div {
  width: 800px;
  height: 100%;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 47.9375em) {
  .player_div {
    width: 100%;
  }
}

.plyr__poster {
  background-color: transparent !important;
}

.temporary-movie {
  padding: 1rem;
  border-radius: 16px;
  background: var(--color-bg-03, #e3e8ed);
  margin-bottom: 5rem;
}
@media screen and (max-width: 47.9375em) {
  .temporary-movie {
    margin-bottom: 4rem;
  }
}

.movie-baloon {
  position: relative;
  font-size: 0.875rem;
  display: block;
  width: 3rem;
  height: 3rem;
  z-index: 1;
  margin-right: 0.375rem;
  line-height: 1.1;
  padding-top: 0.5rem;
}
.movie-baloon::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../../../../images/wp/new/temporary-registration/balloon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  z-index: -1;
}

/* lps_parts--button
********************************************** */
.lps_parts--button .btn:first-child {
  margin-left: auto;
}

.lps_parts--button .btn:last-child {
  margin-right: auto;
}

@media print, screen and (min-width: 48em) {
  .lps_parts--button.flex,
  .lps_parts--button .inner {
    width: fit-content;
    min-width: min(920px, 90%);
  }
  .main_column .lps_parts--button.flex,
  .main_column .lps_parts--button .inner {
    width: 100%;
  }
  .lps_parts--button.flex {
    margin-left: auto;
    margin-right: auto;
  }
  .lps_parts--button .btn:only-child {
    width: fit-content;
    min-width: min(280px, 100%);
  }
  .lps_parts--column.column-2 + .lps_parts--button,
  .lps_parts--column.column-3 + .lps_parts--button,
  .lps_parts--column.column-4 + .lps_parts--button {
    margin-top: 0;
  }
}
/* lps_parts--column
********************************************** */
.lps_parts--column:not(.column-1) + .lps_parts--column {
  margin-top: 0;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--column:not(.column-1) + .lps_parts--column {
    margin-top: 24px;
  }
}

.lps_parts--column .column_item,
.lps_parts--column .text {
  display: flex;
  flex-direction: column;
}

.lps_parts--column:not(.column-1) .text {
  height: 100%;
}

.lps_parts--column .img {
  flex-shrink: 0;
}

.lps_parts--column .img + .text {
  padding-top: 24px;
}

.lps_parts--column .bg-wh .text {
  padding: 6%;
}

.lps_parts--column:not(.column-1) table {
  width: 100%;
}

.lps_parts--column.column-1 .box {
  padding: 40px;
}

@media screen and (max-width: 47.9375em) {
  .lps_parts--column + .lps_parts--column,
  .lps_parts--column:not(.column-1) + .lps_parts--column {
    margin-top: 24px;
  }
  .lps_parts--column .lps_parts--child {
    display: block;
  }
  .lps_parts--column {
    width: 100%;
    max-width: 100%;
  }
  .lps_parts--column .column_item {
    width: 100%;
  }
  .lps_parts--column .column_item:not(:last-child) {
    margin-bottom: 24px;
  }
  .lps_parts--column.column-2 .lps_parts--child.flex-sp-block .column_item,
  .lps_parts--column.column-3 .lps_parts--child.flex-sp-block .column_item,
  .lps_parts--column.column-4 .lps_parts--child.flex-sp-block .column_item {
    width: 100%;
    margin-right: 0;
  }
  .lps_parts--column .column_item:not(:last-child) {
    margin-right: 0;
  }
  .lps_parts--column .text.bg-wh,
  .lps_parts--column.column-1 .box {
    padding: 20px;
  }
}
/* post-edit-link
********************************************** */
.post-edit-link {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  padding: 16px;
  border-radius: 50%;
  border: 1px solid #999;
}
@media screen and (max-width: 47.9375em) {
  .post-edit-link {
    display: none;
  }
}
.post-edit-link:hover {
  background-color: #ddd;
}
.post-edit-link::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjAuMywgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IuODrOOCpOODpOODvF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiCgkgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNDAxIDQwMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDAxIDQwMTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiM5OTk5OTk7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzcwLjEsMjUxLjljLTUuNSwwLTEwLDQuNS0xMCwxMHY4OC43YzAsMTYuNS0xMy40LDI5LjktMzAsMzBINDkuOWMtMTYuNSwwLTI5LjktMTMuNC0zMC0zMFY5MC4zCgljMC0xNi41LDEzLjQtMjkuOSwzMC0zMGg4OC43YzUuNSwwLDEwLTQuNSwxMC0xMGMwLTUuNS00LjUtMTAtMTAtMTBINDkuOUMyMi40LDQwLjQsMCw2Mi43LDAsOTAuM3YyNjAuMwoJYzAsMjcuNiwyMi40LDQ5LjksNDkuOSw0OS45aDI4MC4yYzI3LjYsMCw0OS45LTIyLjQsNDkuOS00OS45di04OC43QzM4MC4xLDI1Ni40LDM3NS42LDI1MS45LDM3MC4xLDI1MS45eiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzc2LjEsMTQuN2MtMTcuNi0xNy42LTQ2LTE3LjYtNjMuNiwwTDEzNC40LDE5Mi45Yy0xLjIsMS4yLTIuMSwyLjctMi42LDQuNGwtMjMuNCw4NC42Yy0xLDMuNSwwLDcuMiwyLjYsOS43CgljMi41LDIuNSw2LjMsMy41LDkuNywyLjZsODQuNi0yMy40YzEuNy0wLjUsMy4yLTEuMyw0LjQtMi42TDM4Ny45LDkwYzE3LjUtMTcuNiwxNy41LTQ2LDAtNjMuNkwzNzYuMSwxNC43eiBNMTU2LjIsMTk5LjNMMzAyLDUzLjUKCWw0Nyw0N0wyMDMuMiwyNDYuNEwxNTYuMiwxOTkuM3ogTTE0Ni44LDIxOC4ybDM3LjYsMzcuNmwtNTIsMTQuNEwxNDYuOCwyMTguMnogTTM3My43LDc1LjhsLTEwLjYsMTAuNmwtNDctNDdsMTAuNi0xMC42CgljOS43LTkuNywyNS42LTkuNywzNS4zLDBsMTEuNywxMS43QzM4My41LDUwLjMsMzgzLjUsNjYuMSwzNzMuNyw3NS44eiIvPgo8L3N2Zz4K");
}

/* lps_parts--faq
********************************************** */
.lps_parts--faq .faq_item {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.625rem;
  overflow: hidden;
}
.lps_parts--faq .faq_item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--faq .faq_item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.lps_parts--faq .ttl-03,
.lps_parts--faq .mce-content-body {
  padding: 1.5rem 3.75rem;
}

.lps_parts--faq .ttl-03 {
  background-color: var(--clr-main, #1d7fb7);
  margin-bottom: 0 !important;
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 1.25rem;
  letter-spacing: normal;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--faq .ttl-03 {
    padding: 24px 40px 24px 48px;
  }
}
.lps_parts--faq .ttl-03:not(:only-child) {
  cursor: pointer;
}
.lps_parts--faq .ttl-03:not(:only-child) .open {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.75rem;
  margin: auto;
  width: 1.1875rem;
  height: 1.1875rem;
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--faq .ttl-03:not(:only-child) .open {
    right: 1.1428571429rem;
    width: 0.8571428571rem;
    height: 0.8571428571rem;
  }
}
.lps_parts--faq .ttl-03:not(:only-child) .open::before, .lps_parts--faq .ttl-03:not(:only-child) .open::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  border-bottom: 3px solid #a7b9c7;
  transition: var(--transit-default, all 0.4s ease-out);
}
.lps_parts--faq .ttl-03:not(:only-child) .open::after {
  transform: rotate(90deg);
}
.lps_parts--faq .ttl-03:not(:only-child).active .open {
  transform: rotate(90deg);
}
.lps_parts--faq .ttl-03:not(:only-child).active .open::before {
  opacity: 0;
}
.lps_parts--faq .ttl-03::after {
  content: "Q";
  position: absolute;
  top: 1.5rem;
  left: 1.875rem;
  display: block;
  font-family: var(--font-en, "Montserrat", sans-serif);
  color: #fff;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--faq .ttl-03::after {
    left: 24px;
  }
}

.lps_parts--faq .mce-content-body {
  position: relative;
  background-color: #fff;
  border: 2px solid var(--clr-main, #1d7fb7);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--faq .mce-content-body {
    padding: 24px;
  }
}

.lps_parts--faq .text img {
  max-width: 248px;
  margin-top: 0;
  margin-right: 40px;
  overflow: hidden;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--faq .text img {
    float: none !important;
    margin-top: 2px;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 8px !important;
    border-radius: 8px;
  }
}

/* lps_parts--flow
********************************************** */
.lps_parts--flow .flow_item {
  position: relative;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 86px;
  counter-increment: number;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .flow_item {
    padding-left: 48px;
  }
}

.lps_parts--flow .flow_item:not(:last-child) {
  padding-bottom: 40px;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .flow_item:not(:last-child) {
    padding-bottom: 20px;
  }
}

.lps_parts--flow .ttl-03 {
  font-size: 2rem;
  color: var(--clr-main, #1d7fb7);
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .ttl-03 {
    font-size: 1.4285714286rem;
  }
}
.lps_parts--flow .ttl-03::after {
  content: counter(number);
  position: absolute;
  top: -8px;
  left: -80px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background-color: var(--clr-main, #1D7FB7);
  font-family: var(--font-en, "Montserrat", sans-serif);
  font-weight: 600;
  font-size: 1.625rem;
  letter-spacing: 0;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .ttl-03::after {
    top: -3px;
    left: -48px;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2857142857rem;
  }
}

.lps_parts--flow .flow_item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 36px;
  display: block;
  width: 0;
  height: calc(100% - 80px);
  border-right: 1px solid var(--clr-main, #1d7fb7);
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--flow .flow_item:not(:last-child)::before {
    top: 38px;
    left: 17px;
    height: calc(100% - 48px);
  }
}

.lps_parts--flow .txt-wh .ttl-03 {
  color: #fff;
}

.lps_parts--flow .flow_item.txt-wh:not(:last-child)::before {
  border-color: #fff;
}

.lps_parts--flow .txt-wh .ttl-03::after {
  color: var(--clr-main, #1D7FB7);
  background-color: #fff;
}

/* ##############################################################################

    Loops モジュール

############################################################################## */
.btn .icon-svg {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: var(--transit-default, all 0.4s ease-out);
}

.icon-new_tab {
  width: 0.875rem;
  height: 0.875rem;
}

.icon-pdf {
  width: 1.6875rem;
  height: 0.75rem;
}

.lps_sec {
  position: relative;
}
.lps_sec:nth-child(odd) .bg-wh {
  background-color: var(--bg-off_wht);
}

.lps_sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: center;
}

.page_related {
  background-image: url(../../../../images/wp/new/common/ptn-stripe.png);
}

/* lps_parts
********************************************** */
.lps_parts {
  position: relative;
  z-index: 1;
}

.lps_parts .img-detail::before {
  padding-top: 66.666%;
}

.lps_parts + .ttl-02,
.lps_parts--button + .ttl-02,
.lps_parts--button + .lps_parts,
.lps_parts + .lps_parts {
  margin-top: 80px;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts + .ttl-02,
  .lps_parts--button + .ttl-02,
  .lps_parts--button + .lps_parts,
  .lps_parts + .lps_parts {
    margin-top: 40px;
  }
}

.lps_parts--column + .lps_parts--column,
.lps_parts + .lps_parts--button {
  margin-top: 40px;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--column + .lps_parts--column,
  .lps_parts + .lps_parts--button {
    margin-top: 16px;
  }
}

.lps_parts--button + .lps_parts--button {
  margin-top: 0;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--button + .lps_parts--button {
    margin-top: 8px;
  }
}

.lps_parts iframe {
  width: 100%;
}

.lps_parts .text:not(:last-child) {
  margin-bottom: 24px;
}

.lps_parts--column .btn,
.lps_parts--slide .btn {
  text-align: center;
}

.lps_parts--column *:not(.btn) + .btn {
  margin-top: auto;
}

.lps_parts--column .btn a {
  margin-left: auto;
  margin-right: auto;
}

.lps_parts .mce-content-body:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts .mce-content-body:not(:last-child) {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 47.9375em) {
  .lps_parts .btn {
    text-align: center;
  }
  .lps_parts--column.column-2 .lps_parts--child.flex-sp-block .column_item,
  .lps_parts--column.column-3 .lps_parts--child.flex-sp-block .column_item,
  .lps_parts--column.column-4 .lps_parts--child.flex-sp-block .column_item {
    width: 100%;
    margin-right: 0;
  }
}
/* lps_parts--img_text
********************************************** */
.lps_parts--img_text .img_text--child:only-child,
.lps_parts--img_text .lps_parts--child.bg-wh .img_text--child:only-child {
  width: 100%;
}

.lps_parts--img_text .lps_parts--child .img_text--img:only-child .img {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.lps_parts--img_text .img_text--child .img-detail {
  height: 100%;
}

.lps_parts--img_text .bg-wh .img_text--txt {
  padding: 5%;
}

.lps_parts--img_text .img_text--txt--inner {
  width: 100%;
}

.lps_parts--img_text .text {
  justify-content: flex-start;
}

.lps_parts--img_text .img_text--txt table {
  width: 100%;
}

.lps_parts--img_text .inner-lg .img_text--img {
  position: absolute;
  top: 0;
}

.lps_parts--img_text .inner-lg:not(.flex-reverse) .img_text--img {
  left: 0;
}

.lps_parts--img_text .inner-lg.flex-reverse .img_text--img {
  right: 0;
}

.lps_parts--img_text .inner-lg:not(.flex-reverse) .img_text--txt {
  margin-left: auto;
}

.lps_parts--img_text .inner-lg.flex-reverse .img_text--txt {
  margin-right: auto;
}

@media print, screen and (min-width: 48em) {
  .lps_parts--img_text .inner-lg .img_text--img {
    height: 100%;
  }
  .lps_parts--img_text .inner-lg .img_text--txt {
    display: flex;
    align-items: center;
    min-height: 607.64px;
  }
  .lps_parts--img_text .inner-lg.bg-wh .img_text--txt {
    padding: 6%;
  }
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--img_text .bg-wh .img_text--txt {
    padding: 24px;
  }
  .lps_parts--img_text .btn {
    text-align: center;
  }
  .lps_parts--img_text .inner-lg .img_text--txt {
    margin-right: auto;
  }
  .lps_parts--img_text .inner-lg.bg-wh .img_text--txt {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 40px;
  }
  .lps_parts--img_text.bg-wh + .bg-wh {
    margin-top: 0;
  }
  .lps_parts--img_text .inner-lg .img_text--img {
    position: relative;
  }
  .lps_parts--img_text .inner-lg .img_text--child .img-detail {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
/* lps_parts--slide
********************************************** */
.lps_parts--slide .slick-list {
  padding-top: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--slide .slide {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .lps_parts--slide .slick-prev {
    left: calc(-1.4285714286rem + 30px);
  }
  .lps_parts--slide .slick-next {
    right: calc(-1.4285714286rem + 30px);
  }
}

.slide_item {
  background-color: var(--bg-wht, #fff);
  box-shadow: 0 0 0.5rem rgba(33, 80, 116, 0.3);
  max-width: 960px;
  margin-left: 60px;
  margin-right: 60px;
}
@media screen and (max-width: 47.9375em) {
  .slide_item {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.slide_item:only-child {
  float: none;
}

.slide_item .text {
  padding: 40px 60px;
}
@media screen and (max-width: 47.9375em) {
  .slide_item .text {
    padding: 24px;
  }
}

.slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50%;
  background-color: var(--bg-main, #1d7fb7);
  width: 3rem;
  height: 3rem;
  color: var(--clr-wht, #fff);
  border: 2px solid;
  text-decoration: none;
}
@media screen and (max-width: 47.9375em) {
  .slick-arrow {
    top: calc(50% - 17.5px);
    width: 2.8571428571rem;
    height: 2.8571428571rem;
  }
}
.slick-arrow:hover {
  opacity: 0.7;
}
.slick-arrow::before, .slick-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.slick-arrow::before {
  left: 0;
  right: 0;
  width: 1.125rem;
  height: 0.1875rem;
  border-bottom: 3px solid;
}
@media screen and (max-width: 47.9375em) {
  .slick-arrow::before {
    border-bottom: 2px solid;
  }
}
.slick-arrow::after {
  width: 0.75rem;
  height: 0.75rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 47.9375em) {
  .slick-arrow::after {
    width: 0.5714285714rem;
    height: 0.5714285714rem;
  }
}

.arrow-adjust .slick-arrow {
  top: 50%;
}

.slick-prev {
  left: -1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .slick-prev {
    left: -1.4285714286rem;
  }
}
.slick-prev::after {
  left: 0.875rem;
  border-bottom: 3px solid;
  border-left: 3px solid;
}
@media screen and (max-width: 47.9375em) {
  .slick-prev::after {
    left: 0.7142857143rem;
    border-bottom: 2px solid;
    border-left: 2px solid;
  }
}

.slick-next {
  right: -1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .slick-next {
    right: -1.4285714286rem;
  }
}
.slick-next::after {
  right: 0.875rem;
  border-top: 3px solid;
  border-right: 3px solid;
}
@media screen and (max-width: 47.9375em) {
  .slick-next::after {
    right: 0.7142857143rem;
    border-top: 2px solid;
    border-right: 2px solid;
  }
}

.slick-dots {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

.slick-dots li {
  position: relative;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #c9c9c9;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transit-default, all 0.4s ease-out);
  margin: 0.4375rem;
}
.slick-dots li:first-child {
  margin-left: auto;
}
.slick-dots li:last-child {
  margin-right: auto;
}
.slick-dots li::before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  border-radius: 50%;
  border: 1px solid var(--clr-main, #1d7fb7);
  transition: var(--transit-default, all 0.4s ease-out);
  opacity: 0;
}
.slick-dots li:hover {
  background-color: var(--bg-main, #1d7fb7);
}
.slick-dots li.slick-active {
  background-color: var(--bg-main, #1d7fb7);
}
.slick-dots li.slick-active::before {
  opacity: 1;
}

/* lps_parts--voice
********************************************** */
.lps_parts--voice {
  padding: 54px 40px 46px 36px;
}
.lps_parts--voice .ttl-03 {
  margin-top: calc(-54px - 0.5em);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--bg-wht, #fff);
  padding-right: 0.9642857143em;
  padding-left: 2.7142857143em;
}
.lps_parts--voice .ttl-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.8928571429em;
  width: 0.9285714286em;
  aspect-ratio: 26/30;
  background-image: url();
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #ccc;
}

.lps_sec.section_pdg:nth-child(2n) .lps_parts--voice .ttl-03 {
  background-color: var(--bg-off_wht, #f7f7f7);
}

.voice_item {
  display: grid;
  grid-template-columns: 63px auto;
  align-items: center;
}
.voice_item:not(:last-child) {
  margin-bottom: 0.875rem;
}

.voice_item--img {
  background-image: url();
  background-repeat: no-repeat;
  background-position: left;
  background-size: 36px;
}

.voice_item--txt {
  position: relative;
  border-radius: 0.1875rem;
  background-color: #f2f2f2;
  padding: 0.25em 70px 0.25em 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.voice_item--txt::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
  background-color: #f2f2f2;
}
.voice_item--txt .date {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

/* lps_parts--num_parts
********************************************** */
.lps_parts--num_parts + .lps_parts--num_parts {
  margin-top: 0;
}
.lps_parts--num_parts .lps_parts--child {
  display: flex;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--num_parts .lps_parts--child {
    flex-wrap: wrap;
  }
}
.lps_parts--num_parts .lps_parts--child .num--wrapper {
  width: 100%;
  margin-bottom: -1px;
  margin-right: -1px;
  padding: 2.5rem;
  border: 1px solid var(--color-mono-02, #BDBEC1);
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--num_parts .lps_parts--child .num--wrapper {
    padding: 1.1428571429rem;
  }
}
.lps_parts--num_parts .lps_parts--child .num--img {
  transition: var(--transit-default);
}
.lps_parts--num_parts .lps_parts--child .num--img .img-contain {
  max-width: 50%;
}
.lps_parts--num_parts .lps_parts--child .num--txtarea {
  padding-top: 1.5rem;
}
.lps_parts--num_parts .lps_parts--child .num--ttl {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--num_parts .lps_parts--child .num--ttl {
    font-size: 1.4285714286rem;
  }
}
.lps_parts--num_parts .lps_parts--child .num--content {
  color: var(--bg-main);
}
.lps_parts--num_parts .lps_parts--child .num--content .num {
  padding-inline: 0.05em;
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--num_parts .lps_parts--child .num--content .num {
    font-size: 2.2857142857rem;
  }
}
.lps_parts--num_parts .lps_parts--child .num--content:not(.num) {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--num_parts .lps_parts--child .num--content:not(.num) {
    font-size: 1.4285714286rem;
  }
}
.lps_parts--num_parts .lps_parts--child .num--supplement {
  font-size: max(10px, 0.875rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.lps_parts--num_parts .lps_parts--child .yell--current .hidden {
  display: none;
}

/* lps_parts--accordion
********************************************** */
.lps_parts--accordion .accordion_item {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.625rem;
  overflow: hidden;
}
.lps_parts--accordion .accordion_item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--accordion .accordion_item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.lps_parts--accordion .ttl-03,
.lps_parts--accordion .mce-content-body {
  padding: 1.5rem 3.75rem;
}

.lps_parts--accordion .ttl-03 {
  background-color: var(--clr-main, #1d7fb7);
  margin-bottom: 0 !important;
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 1.25rem;
  letter-spacing: normal;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--accordion .ttl-03 {
    padding: 24px 40px 24px 24px;
  }
}
.lps_parts--accordion .ttl-03:not(:only-child) {
  cursor: pointer;
}
.lps_parts--accordion .ttl-03:not(:only-child) .open {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.75rem;
  margin: auto;
  width: 1.1875rem;
  height: 1.1875rem;
  transition: var(--transit-default, all 0.4s ease-out);
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--accordion .ttl-03:not(:only-child) .open {
    right: 1.7142857143rem;
    width: 1.7142857143rem;
    height: 1.7142857143rem;
  }
}
.lps_parts--accordion .ttl-03:not(:only-child) .open::before, .lps_parts--accordion .ttl-03:not(:only-child) .open::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  border-bottom: 3px solid #a7b9c7;
  transition: var(--transit-default, all 0.4s ease-out);
}
.lps_parts--accordion .ttl-03:not(:only-child) .open::after {
  transform: rotate(90deg);
}
.lps_parts--accordion .ttl-03:not(:only-child).active .open {
  transform: rotate(90deg);
}
.lps_parts--accordion .ttl-03:not(:only-child).active .open::before {
  opacity: 0;
}

.lps_parts--accordion .mce-content-body {
  position: relative;
  background-color: #fff;
  border: 2px solid var(--clr-main, #1d7fb7);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--accordion .mce-content-body {
    padding: 24px;
  }
}

.lps_parts--accordion .text img {
  max-width: 248px;
  margin-top: 0;
  margin-right: 40px;
  overflow: hidden;
}
@media screen and (max-width: 47.9375em) {
  .lps_parts--accordion .text img {
    float: none !important;
    margin-top: 2px;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 8px !important;
    border-radius: 8px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
/*# sourceMappingURL=style.css.map */
