@charset "UTF-8";
/* sanitize */
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%; /* 6 */
}

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

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

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

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

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

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

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* my-reset */
:where(html) {
  block-size: 100%;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-variant-east-asian: proportional-width;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  word-break: break-all;
  overflow-wrap: break-word;
}

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
}

:where(p) {
  margin-block: 0;
}

:where(ul, ol) {
  margin: 0;
  padding: 0;
}

:where(nav li)::before {
  content: unset;
  float: none;
}

:where(dl) {
  margin-block: 0;
}

:where(dd) {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

:where(summary) {
  padding: 0;
}

:where(legend) {
  display: block;
  padding-inline: 0;
}

:where(fieldset) {
  margin-inline: 0;
  padding: 0;
}

:where(figure) {
  margin: 0;
}

:where(img) {
  max-width: 100%;
}
.phone :where(img) {
  -webkit-touch-callout: none;
}

:where(select) {
  word-wrap: normal;
}

::target-text {
  color: MarkText;
  background: Mark;
}

html.scroll-behavior:focus-within {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html.scroll-behavior:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:where(input, button, textarea, select) {
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
}

:where(input, button, textarea, select, optgroup),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  color: inherit;
  font: inherit;
}

:where(label),
:where(input, button, textarea, select, [role=button]):not([disabled]) {
  cursor: pointer;
}
.phone :where(input[type=file])::-webkit-file-upload-button {
  -webkit-touch-callout: none;
}
.phone :where(button, input[type=button], input[type=submit], input[type=reset]),
.phone :where(input[type=file])::-webkit-file-upload-button,
.phone :where(input[type=file])::file-selector-button {
  -webkit-touch-callout: none;
}

select::-moz-focus-inner,
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* components.scss */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
/* 冪乗計算(乗数は整数のみ)
 *
 * $base: 冪乗される数
 * $exp : 冪乗する回数
 *
 * @return: $baseの$exp乗
 *
 * 例: $base=2, $exp=3 => @return=8
 */
/* 階乗計算
 *
 * $val: 階数
 *
 * @return: $valの階乗
 *
 * 例: $val=5 => @return=120
 */
/* 正弦(sin)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: sin($angle)
 *
 * 例: $angle=30, $degrees=true => @return=0.5
 */
/* 余弦(cos)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: cos($angle)
 *
 * 例: $angle=60, $degrees=true => @return=0.5
 */
/* 正接(tan)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: tan($angle)
 *
 * 例: $angle=45, $degrees=true => @return=1
 */
.box_breadcrumb, .footer_inner, .box_page_header_inner {
  margin-inline: auto;
}
@media screen and (min-width: 64.0625em) {
  .box_breadcrumb, .footer_inner, .box_page_header_inner {
    max-width: calc(1280 / 18 * 1em);
    width: 90%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .box_breadcrumb, .footer_inner, .box_page_header_inner {
    width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .box_breadcrumb, .footer_inner, .box_page_header_inner {
    width: 90%;
  }
}

.box_contents_inner {
  margin-inline: auto;
  max-width: 60rem;
}
@media screen and (min-width: 48em) {
  .box_contents_inner {
    width: 74.4186046512%;
  }
}

.box_upload label input[type=file], input[type=color], input[type=range], .box_radio input[type=radio], .box_check input[type=checkbox], :where(input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=file]):not([type=color]):not([type=submit])),
:where(textarea),
:where(select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.box_breadcrumb {
  scrollbar-width: none; /* Firefox 対応 */
  -ms-overflow-style: none; /* IE, Edge 対応 */
}
.box_breadcrumb::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}

.box_breadcrumb dt, .pagination .prev a.link-prev .en,
.pagination .prev a.link-next .en,
.pagination .next a.link-prev .en,
.pagination .next a.link-next .en, .pagination .prev a.link-prev .ja,
.pagination .prev a.link-next .ja,
.pagination .next a.link-prev .ja,
.pagination .next a.link-next .ja {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.pagination .prev a.link-prev .ico,
.pagination .next a.link-prev .ico,
.pagination .prev a.link-next .ico,
.pagination .next a.link-next .ico {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  width: 10px;
  height: 5px;
}
.pagination .prev a.link-prev .ico::before,
.pagination .next a.link-prev .ico::before, .pagination .prev a.link-prev .ico::after,
.pagination .next a.link-prev .ico::after,
.pagination .prev a.link-next .ico::before,
.pagination .next a.link-next .ico::before,
.pagination .prev a.link-next .ico::after,
.pagination .next a.link-next .ico::after {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.pagination .prev a.link-prev .ico::before,
.pagination .next a.link-prev .ico::before,
.pagination .prev a.link-next .ico::before,
.pagination .next a.link-next .ico::before {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.pagination .prev a.link-prev .ico::after,
.pagination .next a.link-prev .ico::after,
.pagination .prev a.link-next .ico::after,
.pagination .next a.link-next .ico::after {
  width: 0;
  height: 0;
  border-top: 2.5px solid transparent;
  border-bottom: 2.5px solid transparent;
}

.pagination .prev a.link-next .ico::after,
.pagination .next a.link-next .ico::after {
  right: 0;
  border-left: 4px solid currentColor;
  border-right: 0 solid transparent;
}

.pagination .prev a.link-prev .ico::after,
.pagination .next a.link-prev .ico::after {
  left: 0;
  border-left: 0 solid transparent;
  border-right: 4px solid currentColor;
}

.btn_jump a[href="#menu"] .ico, .ico-arrow-right {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.btn_jump a[href="#menu"] .ico::before, .ico-arrow-right::before, .btn_jump a[href="#menu"] .ico::after, .ico-arrow-right::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.btn_jump a[href="#menu"] .ico, .ico-arrow-right {
  width: calc(6 / var(--base) * 1em);
  height: calc(9 / var(--base) * 1em);
}
.btn_jump a[href="#menu"] .ico::before, .ico-arrow-right::before, .btn_jump a[href="#menu"] .ico::after, .ico-arrow-right::after {
  top: 50%;
  left: 50%;
}
.btn_jump a[href="#menu"] .ico::before, .ico-arrow-right::before {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
          transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
}
.btn_jump a[href="#menu"] .ico::after, .ico-arrow-right::after {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
          transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
}

.ico-arrow-left {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.ico-arrow-left::before, .ico-arrow-left::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.ico-arrow-left {
  width: calc(6 / var(--base) * 1em);
  height: calc(9 / var(--base) * 1em);
}
.ico-arrow-left::before, .ico-arrow-left::after {
  top: 50%;
  left: 50%;
}
.ico-arrow-left::before {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
          transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
}
.ico-arrow-left::after {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
          transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
}

.ico-arrow-top {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.ico-arrow-top::before, .ico-arrow-top::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.ico-arrow-top {
  width: calc(9 / var(--base) * 1em);
  height: calc(6 / var(--base) * 1em);
}
.ico-arrow-top::before {
  left: 50%;
}
.ico-arrow-top::after {
  right: 50%;
}
.ico-arrow-top::before, .ico-arrow-top::after {
  bottom: 50%;
}
.ico-arrow-top::before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(-45deg);
          transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(-45deg);
}
.ico-arrow-top::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(45deg);
          transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(45deg);
}

.btn_jump a[href="#contents"] .ico, .ico-arrow-bottom {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.btn_jump a[href="#contents"] .ico::before, .ico-arrow-bottom::before, .btn_jump a[href="#contents"] .ico::after, .ico-arrow-bottom::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.btn_jump a[href="#contents"] .ico, .ico-arrow-bottom {
  width: calc(9 / var(--base) * 1em);
  height: calc(6 / var(--base) * 1em);
}
.btn_jump a[href="#contents"] .ico::before, .ico-arrow-bottom::before {
  left: 50%;
}
.btn_jump a[href="#contents"] .ico::after, .ico-arrow-bottom::after {
  right: 50%;
}
.btn_jump a[href="#contents"] .ico::before, .ico-arrow-bottom::before, .btn_jump a[href="#contents"] .ico::after, .ico-arrow-bottom::after {
  top: 50%;
}
.btn_jump a[href="#contents"] .ico::before, .ico-arrow-bottom::before {
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(45deg);
          transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(45deg);
}
.btn_jump a[href="#contents"] .ico::after, .ico-arrow-bottom::after {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(-45deg);
          transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(-45deg);
}

.ico_twitter::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_twitter.svg") center/contain no-repeat;
}

.ico_twitter_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_twitter_gray.svg") center/contain no-repeat;
}

.ico_hatena::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_hatena.svg") center/contain no-repeat;
}

.ico_hatena_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_hatena_gray.svg") center/contain no-repeat;
}

.ico_line::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_line.svg") center/contain no-repeat;
}

.ico_line_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_line_gray.svg") center/contain no-repeat;
}

.ico_youtube::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_youtube.svg") center/contain no-repeat;
}

.ico_youtube_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_youtube_gray.svg") center/contain no-repeat;
}

.ico_facebook::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook.svg") center/contain no-repeat;
}

.ico_facebook_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook_gray.svg") center/contain no-repeat;
}

.ico_facebook::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook.svg") center/contain no-repeat;
}

.ico_facebook_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook_gray.svg") center/contain no-repeat;
}

.ico_instagram::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_instagram.svg") center/contain no-repeat;
}

.ico_instagram_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_instagram_gray.svg") center/contain no-repeat;
}

a:focus-visible,
button:focus-visible,
input:not([type=range]):focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 4px solid var(--a11y-focuscolor, rgba(0, 125, 250, 0.6));
  outline-offset: 1px;
}

[id]:not(input):not(textarea):not(select):focus-visible {
  outline: 4px solid var(--a11y-focuscolor, rgba(0, 125, 250, 0.6));
  outline-offset: -4px;
}

.title_large .en {
  color: #29c9c3;
}
@media screen and (min-width: 120.0625em) {
  .title_large .en {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .title_large .en {
    font-size: calc(1.5rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .title_large .en {
    font-size: calc(1.5rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .title_large .en {
    font-size: calc(1.5rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .title_large .en {
    font-size: calc(1rem + (1vw - 0.234375rem) * (2.0408163265));
  }
}
@media screen and (max-width: 23.375em) {
  .title_large .en {
    font-size: calc(0.8533333333rem + (1vw - 0.2rem) * (4.3456790123));
  }
}
.title_large .en {
  font-family: "sofia-pro", sans-serif;
  font-weight: 300;
  letter-spacing: 0.06em;
  display: block;
  padding-left: 1em;
  position: relative;
}
.title_large .en:before {
  position: absolute;
  background: url(../images/common/ic_hbh.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.75em;
  height: 0.75em;
  left: 0;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.title_large .jp {
  color: #fff;
}
@media screen and (min-width: 120.0625em) {
  .title_large .jp {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .title_large .jp {
    font-size: calc(3.75rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .title_large .jp {
    font-size: calc(3.125rem + (1vw - 0.640625rem) * (2.4096385542));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .title_large .jp {
    font-size: calc(2.5rem + (1vw - 0.48rem) * (3.90625));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .title_large .jp {
    font-size: calc(1.75rem + (1vw - 0.234375rem) * (3.0612244898));
  }
}
@media screen and (max-width: 23.375em) {
  .title_large .jp {
    font-size: calc(1.4933333333rem + (1vw - 0.2rem) * (7.6049382716));
  }
}
.title_large .jp {
  display: block;
}

.title_medium .en {
  color: #292e49;
}
@media screen and (min-width: 120.0625em) {
  .title_medium .en {
    font-size: 1rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .title_medium .en {
    font-size: calc(1rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .title_medium .en {
    font-size: calc(1rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .title_medium .en {
    font-size: calc(1rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .title_medium .en {
    font-size: calc(0.875rem + (1vw - 0.234375rem) * (0.5102040816));
  }
}
@media screen and (max-width: 23.375em) {
  .title_medium .en {
    font-size: calc(0.7466666667rem + (1vw - 0.2rem) * (3.8024691358));
  }
}
.title_medium .en {
  font-family: "sofia-pro", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: block;
  padding-left: 1em;
  position: relative;
}
.title_medium .en:before {
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  left: 0.3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background: #29c9c3;
  border-radius: 100%;
}
.title_medium .jp {
  color: #292e49;
}
@media screen and (min-width: 120.0625em) {
  .title_medium .jp {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .title_medium .jp {
    font-size: calc(2.5rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .title_medium .jp {
    font-size: calc(1.875rem + (1vw - 0.640625rem) * (2.4096385542));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .title_medium .jp {
    font-size: calc(1.875rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .title_medium .jp {
    font-size: calc(1.25rem + (1vw - 0.234375rem) * (2.5510204082));
  }
}
@media screen and (max-width: 23.375em) {
  .title_medium .jp {
    font-size: calc(1.0666666667rem + (1vw - 0.2rem) * (5.4320987654));
  }
}
.title_medium .jp {
  display: block;
  letter-spacing: 0;
  font-weight: bold;
}

@media screen and (min-width: 120.0625em) {
  .txt_large {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .txt_large {
    font-size: calc(1.625rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .txt_large {
    font-size: calc(1.625rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .txt_large {
    font-size: calc(1.25rem + (1vw - 0.48rem) * (2.34375));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .txt_large {
    font-size: calc(1.0625rem + (1vw - 0.234375rem) * (0.7653061224));
  }
}
@media screen and (max-width: 23.375em) {
  .txt_large {
    font-size: calc(0.9066666667rem + (1vw - 0.2rem) * (4.6172839506));
  }
}
.txt_large {
  color: #1c1c1c;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 120.0625em) {
  .txt_basic {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .txt_basic {
    font-size: calc(1.125rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .txt_basic {
    font-size: calc(1.125rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .txt_basic {
    font-size: calc(1rem + (1vw - 0.48rem) * (0.78125));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .txt_basic {
    font-size: calc(0.9375rem + (1vw - 0.234375rem) * (0.2551020408));
  }
}
@media screen and (max-width: 23.375em) {
  .txt_basic {
    font-size: calc(0.8rem + (1vw - 0.2rem) * (4.0740740741));
  }
}
.txt_basic {
  color: #1c1c1c;
  letter-spacing: 0.14em;
  font-weight: 500;
  line-height: 1.77;
}

@media screen and (min-width: 120.0625em) {
  .txt_small {
    font-size: 1rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .txt_small {
    font-size: calc(1rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .txt_small {
    font-size: calc(1rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .txt_small {
    font-size: calc(0.9375rem + (1vw - 0.48rem) * (0.390625));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .txt_small {
    font-size: calc(0.875rem + (1vw - 0.234375rem) * (0.2551020408));
  }
}
@media screen and (max-width: 23.375em) {
  .txt_small {
    font-size: calc(0.7466666667rem + (1vw - 0.2rem) * (3.8024691358));
  }
}
.txt_small {
  color: #1c1c1c;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (min-width: 48em) {
  .btn_basic,
  .btn_border {
    width: calc(240 / var(--base) * 1em);
  }
}
@media screen and (max-width: 47.9375em) {
  .btn_basic,
  .btn_border {
    width: 100%;
  }
}
.btn_basic a,
.btn_basic button,
.btn_basic [type=submit],
.btn_border a,
.btn_border button,
.btn_border [type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 48em) {
  .btn_basic a,
  .btn_basic button,
  .btn_basic [type=submit],
  .btn_border a,
  .btn_border button,
  .btn_border [type=submit] {
    padding: calc(23 / 18 * 1em);
  }
}
@media screen and (max-width: 47.9375em) {
  .btn_basic a,
  .btn_basic button,
  .btn_basic [type=submit],
  .btn_border a,
  .btn_border button,
  .btn_border [type=submit] {
    padding: 1.2em 1em;
  }
}
.btn_basic a,
.btn_basic button,
.btn_basic [type=submit],
.btn_border a,
.btn_border button,
.btn_border [type=submit] {
  line-height: 1.6666666667;
}
.btn_basic a::before, .btn_basic a::after,
.btn_basic button::before,
.btn_basic button::after,
.btn_basic [type=submit]::before,
.btn_basic [type=submit]::after,
.btn_border a::before,
.btn_border a::after,
.btn_border button::before,
.btn_border button::after,
.btn_border [type=submit]::before,
.btn_border [type=submit]::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.btn_basic a::before,
.btn_basic button::before,
.btn_basic [type=submit]::before,
.btn_border a::before,
.btn_border button::before,
.btn_border [type=submit]::before {
  margin-bottom: calc(-0.4233333333em + 0px);
}
.btn_basic a::after,
.btn_basic button::after,
.btn_basic [type=submit]::after,
.btn_border a::after,
.btn_border button::after,
.btn_border [type=submit]::after {
  margin-top: calc(-0.3433333333em + 0px);
}
.btn_basic a,
.btn_basic button,
.btn_basic [type=submit],
.btn_border a,
.btn_border button,
.btn_border [type=submit] {
  font-size: calc(15 / 18 * 1em);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: calc(2 / 18 * 1em) solid #a3b432;
}
.btn_basic.btn_border a,
.btn_basic.btn_border button,
.btn_basic.btn_border [type=submit],
.btn_border.btn_border a,
.btn_border.btn_border button,
.btn_border.btn_border [type=submit] {
  color: #333;
}
.btn_basic.btn_border a:hover,
.btn_basic.btn_border button:hover,
.btn_basic.btn_border [type=submit]:hover,
.btn_border.btn_border a:hover,
.btn_border.btn_border button:hover,
.btn_border.btn_border [type=submit]:hover {
  color: #fff;
  background: #d93625;
  border-color: #d93625;
}
.btn_basic.btn_basic a,
.btn_basic.btn_basic button,
.btn_basic.btn_basic [type=submit],
.btn_border.btn_basic a,
.btn_border.btn_basic button,
.btn_border.btn_basic [type=submit] {
  color: #fff;
  background: #a3b432;
}
.btn_basic.btn_basic a:hover,
.btn_basic.btn_basic button:hover,
.btn_basic.btn_basic [type=submit]:hover,
.btn_border.btn_basic a:hover,
.btn_border.btn_basic button:hover,
.btn_border.btn_basic [type=submit]:hover {
  color: #fff;
  background: #d93625;
  border-color: #d93625;
}

.btn_basic {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #141934;
  border: 1px solid #141934;
  border-radius: 2em;
  padding: 1em 2em;
  color: #fff;
}
.btn_basic span {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 120.0625em) {
  .btn_basic span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .btn_basic span {
    font-size: calc(1rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .btn_basic span {
    font-size: calc(1rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .btn_basic span {
    font-size: calc(1rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .btn_basic span {
    font-size: calc(0.875rem + (1vw - 0.234375rem) * (0.5102040816));
  }
}
@media screen and (max-width: 23.375em) {
  .btn_basic span {
    font-size: calc(0.7466666667rem + (1vw - 0.2rem) * (3.8024691358));
  }
}
.btn_basic span {
  padding-right: 2em;
  position: relative;
}
.btn_basic span:before {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 100%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_basic:hover span:before {
  width: 0.75em;
  height: 0.75em;
  right: -0.1em;
}
.btn_basic.white {
  background: #fff;
  color: #141934;
}
.btn_basic.white span:before {
  background: #141934;
}

.btn_square {
  display: inline-block;
  color: #fff;
  text-align: center;
  min-width: 294px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 64.0625em) {
  .btn_square {
    padding: 30px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .btn_square {
    padding: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .btn_square {
    padding: 20px;
  }
}
@media screen and (min-width: 120.0625em) {
  .btn_square {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .btn_square {
    font-size: calc(1.125rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .btn_square {
    font-size: calc(1.125rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .btn_square {
    font-size: calc(1.125rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .btn_square {
    font-size: calc(1rem + (1vw - 0.234375rem) * (0.5102040816));
  }
}
@media screen and (max-width: 23.375em) {
  .btn_square {
    font-size: calc(0.8533333333rem + (1vw - 0.2rem) * (4.3456790123));
  }
}
.btn_square {
  border-radius: 5px;
}
.btn_square.recruit {
  background: #141934;
  border: 1px solid #141934;
}
.btn_square.recruit:hover {
  color: #141934;
  background: #fff;
}
.btn_square.contact {
  background: #b29059;
  border: 1px solid #b29059;
}
.btn_square.contact:hover {
  color: #b29059;
  background: #fff;
}

.btn_ellipse {
  display: inline-block;
  color: #fff;
  text-align: center;
  min-width: 220px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 1em 2em;
  border-radius: 2em;
}
.btn_ellipse.contact {
  background: #b29059;
  border: 1px solid #b29059;
}
.btn_ellipse.contact:hover {
  color: #b29059;
  background: #fff;
}

.ico_facebook::before,
.ico_facebook_gray::before,
.ico_twitter::before,
.ico_twitter_gray::before,
.ico_line::before,
.ico_line_gray::before,
.ico_hatena::before,
.ico_hatena_gray::before,
.ico_instagram::before,
.ico_instagram_gray::before,
.ico_youtube::before,
.ico_youtube_gray::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.ico_arrow {
  display: block;
  position: relative;
  min-width: 13px;
  min-height: 5px;
}
.ico_arrow::before, .ico_arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
}
.ico_arrow::before {
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 1px;
  background: currentColor;
}
.ico_arrow::after {
  left: 50%;
  margin-left: 5px;
  margin-block: auto;
  width: 0;
  height: 0;
  border-left: 3px solid currentColor;
  border-top: 2.5px solid transparent;
  border-bottom: 2.5px solid transparent;
}

.ico_plus {
  display: block;
  position: relative;
  width: 9px;
  height: 9px;
}
.ico_plus::before, .ico_plus::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
  content: "";
}
.ico_plus::before {
  left: 0;
  right: 0;
  width: 9px;
  height: 1px;
}
.ico_plus::after {
  left: 50%;
  width: 1px;
  height: 9px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4em;
  margin-bottom: 16.6666666667%;
}
.pagination .txt_current-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  letter-spacing: 0.08em;
}
.pagination ol {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.3333333333em;
}
.pagination ol li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.4666666667em;
  height: 2.4666666667em;
  border-radius: 50%;
  text-decoration: none;
}
.pagination ol li a[aria-current=page] {
  color: #fff;
  background: #000;
}
.pagination ol li a:not([aria-current=page]):hover {
  background: #eee;
}
.pagination .prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.pagination .next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.pagination .prev a.link-prev,
.pagination .prev a.link-next,
.pagination .next a.link-prev,
.pagination .next a.link-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.4666666667em;
  height: 2.4666666667em;
  background: #eee;
  border-radius: 50%;
}
.pagination .prev a.link-prev .ico,
.pagination .prev a.link-next .ico,
.pagination .next a.link-prev .ico,
.pagination .next a.link-next .ico {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .prev a.link-prev,
.pagination .next a.link-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.pagination .prev a.link-prev:hover .ico,
.pagination .next a.link-prev:hover .ico {
  -webkit-transform: translateX(-0.5em);
          transform: translateX(-0.5em);
}
.pagination .prev a.link-next,
.pagination .next a.link-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.pagination .prev a.link-next:hover .ico,
.pagination .next a.link-next:hover .ico {
  -webkit-transform: translateX(0.5em);
          transform: translateX(0.5em);
}

.btn_jump {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 0;
}
.btn_jump a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  padding: 1em;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 3em;
  color: #000 !important;
  text-decoration: none;
  border-radius: 1.5em;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0s;
  transition: 0s;
}
@media screen and (max-width: 47.9375em) {
  .btn_jump a {
    font-size: 0.75em;
  }
}
.btn_jump a .ico {
  font-size: calc(30 / var(--base) * 1em);
  --line-weight: calc(1 / var(--base) * 1em) !important;
  --line-width: calc(7 / var(--base) * 1em) !important;
}
.btn_jump a:not(:focus) {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.btn_jump a:focus-visible {
  color: var(--a11y-basecolor, #313233);
  background: var(--a11y-bgcolor, #fff);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

details {
  position: relative;
}
details summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
details .box_details_content {
  overflow: hidden;
}
details[data-details-outside-click=yes] .box_details_content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}

.tbl {
  width: 100%;
}
.tbl caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75em;
  margin-bottom: 1em;
  font-weight: bold;
}
.tbl caption::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin-left: 0.5em;
  width: 0.75em;
  aspect-ratio: 1/1;
  background: #b5bbbc;
  content: "";
}
.tbl tr {
  border-bottom: 1px solid #b5bbbc;
}
.tbl tr th,
.tbl tr td {
  padding: 1em 1.5em;
}
.tbl tr th {
  color: var(--a11y-basecolor-reverse, inherit);
  background: var(--a11y-bgcolor-reverse, #eee);
}
@media screen and (max-width: 47.9375em) {
  .tbl.responsive tr {
    border-bottom: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .tbl.responsive tr th,
  .tbl.responsive tr td {
    display: block;
    width: 100%;
  }
}
.tbl_basic tr {
  border-bottom: none;
}
.tbl_basic tr:first-child th {
  border-top: 2px solid #b5bbbc;
}
@media screen and (max-width: 47.9375em) {
  .tbl_basic tr:first-child th {
    border-top: 1px solid #d7dde0;
  }
}
.tbl_basic tr:first-child td {
  border-top: 1px solid #d7dde0;
}
@media screen and (max-width: 47.9375em) {
  .tbl_basic tr:first-child td {
    border-top: none;
  }
}
.tbl_basic tr th {
  background: none;
  border-bottom: 2px solid #b5bbbc;
  font-weight: normal;
  padding: 2em 0;
}
@media screen and (min-width: 120.0625em) {
  .tbl_basic tr th {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .tbl_basic tr th {
    font-size: calc(1.25rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .tbl_basic tr th {
    font-size: calc(1.25rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .tbl_basic tr th {
    font-size: calc(1.125rem + (1vw - 0.48rem) * (0.78125));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .tbl_basic tr th {
    font-size: calc(1rem + (1vw - 0.234375rem) * (0.5102040816));
  }
}
@media screen and (max-width: 23.375em) {
  .tbl_basic tr th {
    font-size: calc(0.8533333333rem + (1vw - 0.2rem) * (4.3456790123));
  }
}
.tbl_basic tr th {
  font-weight: 400;
  line-height: 1.9;
  vertical-align: top;
}
@media screen and (min-width: 64.0625em) {
  .tbl_basic tr th {
    text-align: left;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .tbl_basic tr th {
    text-align: left;
  }
}
@media screen and (max-width: 47.9375em) {
  .tbl_basic tr th {
    text-align: center;
  }
}
@media screen and (min-width: 48em) {
  .tbl_basic tr th {
    white-space: nowrap;
  }
}
@media screen and (max-width: 47.9375em) {
  .tbl_basic tr th {
    padding: 1em 0;
  }
}
.tbl_basic tr td {
  border-bottom: 1px solid #d7dde0;
  padding: 2em 0;
}
@media screen and (min-width: 120.0625em) {
  .tbl_basic tr td {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .tbl_basic tr td {
    font-size: calc(1.25rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .tbl_basic tr td {
    font-size: calc(1.25rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .tbl_basic tr td {
    font-size: calc(1.125rem + (1vw - 0.48rem) * (0.78125));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .tbl_basic tr td {
    font-size: calc(1rem + (1vw - 0.234375rem) * (0.5102040816));
  }
}
@media screen and (max-width: 23.375em) {
  .tbl_basic tr td {
    font-size: calc(0.8533333333rem + (1vw - 0.2rem) * (4.3456790123));
  }
}
.tbl_basic tr td {
  font-weight: 400;
  line-height: 1.9;
}
@media screen and (max-width: 47.9375em) {
  .tbl_basic tr td {
    padding: 1em 0;
  }
}
.tbl_basic tr td.no_border {
  border: none;
}
@media screen and (min-width: 64.0625em) {
  .tbl_basic tr td.no_border {
    width: 70px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .tbl_basic tr td.no_border {
    width: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .tbl_basic tr td.no_border {
    width: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .tbl_basic tr td.no_border {
    display: none;
  }
}

.txt_required {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: 0.5em;
  padding: 0.1em 0.4em;
  font-size: 0.75em;
  color: var(--a11y-basecolor-reverse, #fff);
  background: var(--a11y-basecolor, red);
  border-radius: 0.3em;
}

label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
label .txt_required {
  position: relative;
  top: -0.1em;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #1c1c1c;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #1c1c1c;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #1c1c1c;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #1c1c1c;
}

input::placeholder,
textarea::placeholder {
  color: #1c1c1c;
}

:where(input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=file]):not([type=color]):not([type=submit])),
:where(textarea),
:where(select) {
  display: inline-block;
  padding: calc(3.75 / var(--base) * 1em) 0;
}

:where(input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=file]):not([type=color]):not([type=submit])),
:where(textarea) {
  background-color: #fff;
  border-bottom: 1px solid #b5bbbc;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media screen and (max-width: 47.9375em) {
  :where(input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=file]):not([type=color]):not([type=submit])),
  :where(textarea) {
    width: 100%;
  }
}

:where(textarea) {
  display: block;
  padding: 0.5em 0.75em;
  max-width: 100%;
  width: 100%;
  min-height: 6em;
  resize: vertical;
}

.box_select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #f5f2eb;
}
.box_select select {
  position: relative;
  z-index: 1;
  padding-right: calc(0.875em + 1.875em + 0.5em);
  max-width: 100%;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  line-height: inherit;
}
.box_select .ico_select {
  position: relative;
  z-index: 0;
  margin-left: calc(-0.875em - 1.875em);
}
.box_select .ico_select::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 0.75em solid #000;
  border-left: calc(0.875em / 2) solid transparent;
  border-right: calc(0.875em / 2) solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
}
.box_select:hover .ico_select::before, .box_select:focus-within .ico_select::before {
  -webkit-transform: translateY(0.25em);
          transform: translateY(0.25em);
}

.box_check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.box_check input[type=checkbox] {
  position: absolute;
  left: 0;
  z-index: 1;
  margin: 0;
  width: 1em;
  aspect-ratio: 1;
  opacity: 0;
}
.box_check input[type=checkbox]:checked + .ico_check {
  border-color: #53aeff;
  background: #53aeff;
}
.box_check input[type=checkbox]:checked + .ico_check::before {
  border-left: 0.2em solid #fff;
  border-bottom: 0.2em solid #fff;
}
.box_check input[type=checkbox]:disabled {
  cursor: not-allowed;
}
.box_check input[type=checkbox]:disabled + .ico_check {
  border-color: #ddd;
  background: #ddd;
}
.box_check input[type=checkbox]:disabled + .ico_check::before {
  border-left: 0.2em solid transparent;
  border-bottom: 0.2em solid transparent;
}
.box_check input[type=checkbox]:disabled + .ico_check + label {
  color: #1c1c1c;
  cursor: default;
}
.box_check input[type=checkbox]:focus {
  opacity: 1;
}
.box_check input[type=checkbox] + .ico_check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 0;
  margin-right: 0.25em;
  width: 1em;
  aspect-ratio: 1;
  background: #fff;
  border: 0.1em solid #53aeff;
  border-radius: 0.125em;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.box_check input[type=checkbox] + .ico_check::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8em;
  height: 0.45em;
  border-left: 0.2em solid transparent;
  border-bottom: 0.2em solid transparent;
  -webkit-transform: translate(-50%, -60%) rotate(-50deg);
          transform: translate(-50%, -60%) rotate(-50deg);
  -webkit-transition: inherit;
  transition: inherit;
  content: "";
}

.box_radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.box_radio input[type=radio] {
  position: absolute;
  left: 0;
  z-index: 1;
  margin: 0;
  width: 1em;
  aspect-ratio: 1;
  opacity: 0;
}
.box_radio input[type=radio]:checked + .ico_radio {
  border: 0.1em solid #53aeff;
}
.box_radio input[type=radio]:checked + .ico_radio::after {
  background: #53aeff;
}
.box_radio input[type=radio]:disabled {
  cursor: not-allowed;
}
.box_radio input[type=radio]:disabled + .ico_radio {
  border-color: #ddd;
  background: #ddd;
}
.box_radio input[type=radio]:disabled + .ico_radio::after {
  background: #ddd;
}
.box_radio input[type=radio]:disabled + .ico_radio + label {
  color: #1c1c1c;
  cursor: default;
}
.box_radio input[type=radio]:focus {
  opacity: 1;
}
.box_radio input[type=radio] + .ico_radio {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 0;
  margin-right: 0.25em;
  width: 1em;
  aspect-ratio: 1;
  background: #fff;
  border: 0.1em solid #53aeff;
  border-radius: 50%;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.box_radio input[type=radio] + .ico_radio::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1;
  background: transparent;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: inherit;
  transition: inherit;
  content: "";
}

input[type=range] {
  position: relative;
  margin-block: calc((1.25em - 0.75em) / 2);
  width: 100%;
  height: 0.75em;
  background: var(--a11y-basecolor-reverse, #8acdff);
  border: solid 0.2em var(--a11y-basecolor, #dff1ff);
  border-radius: calc(0.75em / 2);
  outline: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
  width: 1.25em;
  height: 1.25em;
  aspect-ratio: 1/1;
  background: var(--a11y-basecolor, #53aeff);
  border-radius: 50%;
  -webkit-box-shadow: 0 0.2em 0.4em 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.2em 0.4em 0 rgba(0, 0, 0, 0.15);
}
input[type=range]::-moz-range-thumb {
  -moz-appearance: none;
       appearance: none;
  position: relative;
  z-index: 1;
  width: 1.25em;
  height: 1.25em;
  aspect-ratio: 1/1;
  background: var(--a11y-basecolor, #53aeff);
  border: none;
  border-radius: 50%;
  box-shadow: 0 0.2em 0.4em 0 rgba(0, 0, 0, 0.15);
}
input[type=range]::-moz-focus-outer {
  border: 0;
  outline: 0;
}
input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
}
input[type=range]:focus-visible::-webkit-slider-thumb {
  outline: 4px solid var(--a11y-focuscolor, rgba(0, 125, 250, 0.6));
  outline-offset: 1px;
}
input[type=range]:focus-visible::-moz-range-thumb {
  outline: 4px solid var(--a11y-focuscolor, rgba(0, 125, 250, 0.6));
  outline-offset: 1px;
}

input[type=color] {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  vertical-align: bottom;
  background: transparent;
  border: 0.1em solid currentColor;
  border-radius: 50%;
}
input[type=color]::-webkit-color-swatch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 0.1em solid #fff;
}
input[type=color]::-moz-color-swatch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 0.1em solid #fff;
}

.box_upload label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.box_upload label input[type=file] {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  text-indent: 20em;
  border: 0.1em solid red;
  overflow: hidden;
}
.box_upload label input[type=file]:where(input[type=file])::-webkit-file-upload-button {
  display: none;
}
.box_upload label input[type=file]:where(input[type=file])::-webkit-file-upload-button, .box_upload label input[type=file]:where(input[type=file])::file-selector-button {
  display: none;
}
.box_upload label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  padding: 1em;
  background: rgba(0, 0, 255, 0.5);
}
.box_upload .txt_status {
  display: block;
}

dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  border: 0;
  background: rgba(255, 0, 0, 0.5);
}
dialog:not([open]) {
  display: none;
}
dialog::-ms-backdrop {
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.5);
}
dialog::backdrop {
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.5);
}
dialog:not([data-dialog-outside-click=no])::-ms-backdrop {
  cursor: pointer;
}
dialog:not([data-dialog-outside-click=no])::backdrop {
  cursor: pointer;
}
dialog[data-dialog-outside-click=no] {
  -webkit-transition: 0.05s;
  transition: 0.05s;
}
.clickstart dialog[data-dialog-outside-click=no] {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.clickend dialog[data-dialog-outside-click=no] {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.box_step > dd ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.5em;
}
.box_step > dd ol li {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.box_step > dd ol li .box_progress::before,
.box_step > dd ol li .box_progress::after {
  display: block;
  position: absolute;
  top: 50%;
  height: 2px;
  background: #1c1c1c;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.box_step > dd ol li .box_progress::before {
  left: 0;
  width: 100%;
}
.box_step > dd ol li .box_progress::after {
  right: 0;
  width: 100%;
}
.box_step > dd ol li:first-child .box_progress::before {
  left: 50%;
  width: 100%;
}
.box_step > dd ol li:last-child .box_progress::after {
  right: 50%;
  width: 100%;
}
.box_step > dd ol li:first-child .box_progress::after, .box_step > dd ol li:last-child .box_progress::before {
  display: none;
  width: 0;
}
.box_step > dd ol li[aria-current=step] .box_progress::before, .box_step > dd ol li[aria-current=step]:not(:first-child) .box_progress::after {
  width: 50%;
}
.box_step > dd ol li[aria-current=step] ~ li .box_progress::before,
.box_step > dd ol li[aria-current=step] ~ li .box_progress::after {
  z-index: 0;
  width: 50%;
  background: linear-gradient(to right, #555, #555 3px, transparent 3px, transparent 6px) center/6px 1px repeat-x;
}
.box_step > dd ol li[aria-current=step] ~ li .box_progress span {
  color: #1c1c1c;
  background: #fff;
}
.box_step > dd ol li[aria-current=step]:first-child .box_progress::before,
.box_step > dd ol li[aria-current=step]:first-child ~ li .box_progress::before {
  z-index: 0;
  background: linear-gradient(to right, #555, #555 3px, transparent 3px, transparent 6px) center/6px 1px repeat-x;
}
.box_step > dd ol li[aria-current=step]:last-child .box_progress::after {
  z-index: 0;
  background: #1c1c1c;
}
.box_step > dd ol li + li[aria-current=step] .box_progress::after {
  z-index: 0;
  background: linear-gradient(to right, #555, #555 3px, transparent 3px, transparent 6px) center/6px 1px repeat-x;
}
.box_step > dd ol li .box_progress {
  display: block;
  position: relative;
  margin-bottom: 0.5em;
  width: 100%;
}
.box_step > dd ol li .box_progress span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  margin-inline: auto;
  width: 3.5em;
  aspect-ratio: 1;
  text-align: center;
  color: #fff;
  background: #1c1c1c;
  border: 1px solid #1c1c1c;
  border-radius: 50%;
}
.box_step > dd ol li .txt_label {
  display: block;
  width: 100%;
  text-align: center;
}
.box_step > dd ol li[aria-current=step] {
  font-weight: 600;
}
.box_step > dd ol li[aria-current=step] .box_progress span {
  color: #fff;
  background: #1c1c1c;
}
.visually-hidden,
.is-style-visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

[data-text]::before {
  content: attr(data-text) "";
}

.br::before {
  content: "\a";
  white-space: pre;
}

/* common.scss */
/* ===================================================================
CSS information

file name	: common.css
author		: Abilive
style info	: 基本・共通設定
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
/* 冪乗計算(乗数は整数のみ)
 *
 * $base: 冪乗される数
 * $exp : 冪乗する回数
 *
 * @return: $baseの$exp乗
 *
 * 例: $base=2, $exp=3 => @return=8
 */
/* 階乗計算
 *
 * $val: 階数
 *
 * @return: $valの階乗
 *
 * 例: $val=5 => @return=120
 */
/* 正弦(sin)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: sin($angle)
 *
 * 例: $angle=30, $degrees=true => @return=0.5
 */
/* 余弦(cos)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: cos($angle)
 *
 * 例: $angle=60, $degrees=true => @return=0.5
 */
/* 正接(tan)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: tan($angle)
 *
 * 例: $angle=45, $degrees=true => @return=1
 */
.box_breadcrumb, .footer_inner, .box_page_header_inner {
  margin-inline: auto;
}
@media screen and (min-width: 64.0625em) {
  .box_breadcrumb, .footer_inner, .box_page_header_inner {
    max-width: calc(1280 / 18 * 1em);
    width: 90%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .box_breadcrumb, .footer_inner, .box_page_header_inner {
    width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .box_breadcrumb, .footer_inner, .box_page_header_inner {
    width: 90%;
  }
}

.box_contents_inner {
  margin-inline: auto;
  max-width: 60rem;
}
@media screen and (min-width: 48em) {
  .box_contents_inner {
    width: 74.4186046512%;
  }
}

:where(input:not([type=radio]):not([type=checkbox]):not([type=range]):not([type=file]):not([type=color]):not([type=submit])),
:where(textarea),
:where(select), .box_check input[type=checkbox], .box_radio input[type=radio], input[type=range], input[type=color], .box_upload label input[type=file] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.box_breadcrumb {
  scrollbar-width: none; /* Firefox 対応 */
  -ms-overflow-style: none; /* IE, Edge 対応 */
}
.box_breadcrumb::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}

.box_breadcrumb dt, .pagination .prev a.link-prev .ja,
.pagination .prev a.link-next .ja,
.pagination .next a.link-prev .ja,
.pagination .next a.link-next .ja, .pagination .prev a.link-prev .en,
.pagination .prev a.link-next .en,
.pagination .next a.link-prev .en,
.pagination .next a.link-next .en {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.pagination .prev a.link-prev .ico,
.pagination .next a.link-prev .ico,
.pagination .prev a.link-next .ico,
.pagination .next a.link-next .ico {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  width: 10px;
  height: 5px;
}
.pagination .prev a.link-prev .ico::before,
.pagination .next a.link-prev .ico::before, .pagination .prev a.link-prev .ico::after,
.pagination .next a.link-prev .ico::after,
.pagination .prev a.link-next .ico::before,
.pagination .next a.link-next .ico::before,
.pagination .prev a.link-next .ico::after,
.pagination .next a.link-next .ico::after {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.pagination .prev a.link-prev .ico::before,
.pagination .next a.link-prev .ico::before,
.pagination .prev a.link-next .ico::before,
.pagination .next a.link-next .ico::before {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.pagination .prev a.link-prev .ico::after,
.pagination .next a.link-prev .ico::after,
.pagination .prev a.link-next .ico::after,
.pagination .next a.link-next .ico::after {
  width: 0;
  height: 0;
  border-top: 2.5px solid transparent;
  border-bottom: 2.5px solid transparent;
}

.pagination .prev a.link-next .ico::after,
.pagination .next a.link-next .ico::after {
  right: 0;
  border-left: 4px solid currentColor;
  border-right: 0 solid transparent;
}

.pagination .prev a.link-prev .ico::after,
.pagination .next a.link-prev .ico::after {
  left: 0;
  border-left: 0 solid transparent;
  border-right: 4px solid currentColor;
}

.ico-arrow-right, .btn_jump a[href="#menu"] .ico {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.ico-arrow-right::before, .btn_jump a[href="#menu"] .ico::before, .ico-arrow-right::after, .btn_jump a[href="#menu"] .ico::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.ico-arrow-right, .btn_jump a[href="#menu"] .ico {
  width: calc(6 / var(--base) * 1em);
  height: calc(9 / var(--base) * 1em);
}
.ico-arrow-right::before, .btn_jump a[href="#menu"] .ico::before, .ico-arrow-right::after, .btn_jump a[href="#menu"] .ico::after {
  top: 50%;
  left: 50%;
}
.ico-arrow-right::before, .btn_jump a[href="#menu"] .ico::before {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
          transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
}
.ico-arrow-right::after, .btn_jump a[href="#menu"] .ico::after {
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
          transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
}

.ico-arrow-left {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.ico-arrow-left::before, .ico-arrow-left::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.ico-arrow-left {
  width: calc(6 / var(--base) * 1em);
  height: calc(9 / var(--base) * 1em);
}
.ico-arrow-left::before, .ico-arrow-left::after {
  top: 50%;
  left: 50%;
}
.ico-arrow-left::before {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
          transform: translateY(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(-45deg);
}
.ico-arrow-left::after {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
          transform: translateY(calc(-50% - var(--line-weight) / 2 * 0.6783401829)) translateX(calc(-50% + var(--line-weight) / 2 * 0.6783401829)) rotate(45deg);
}

.ico-arrow-top {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.ico-arrow-top::before, .ico-arrow-top::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.ico-arrow-top {
  width: calc(9 / var(--base) * 1em);
  height: calc(6 / var(--base) * 1em);
}
.ico-arrow-top::before {
  left: 50%;
}
.ico-arrow-top::after {
  right: 50%;
}
.ico-arrow-top::before, .ico-arrow-top::after {
  bottom: 50%;
}
.ico-arrow-top::before {
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(-45deg);
          transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(-45deg);
}
.ico-arrow-top::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(45deg);
          transform: translateY(calc(50% - var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(45deg);
}

.ico-arrow-bottom, .btn_jump a[href="#contents"] .ico {
  --line-weight: calc(1.5 / 18 * 1em);
  --line-width: calc(5.5 / 18 * 1em);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
}
.ico-arrow-bottom::before, .btn_jump a[href="#contents"] .ico::before, .ico-arrow-bottom::after, .btn_jump a[href="#contents"] .ico::after {
  position: absolute;
  width: var(--line-width);
  height: var(--line-weight);
  background: currentColor;
  content: "";
}
.ico-arrow-bottom, .btn_jump a[href="#contents"] .ico {
  width: calc(9 / var(--base) * 1em);
  height: calc(6 / var(--base) * 1em);
}
.ico-arrow-bottom::before, .btn_jump a[href="#contents"] .ico::before {
  left: 50%;
}
.ico-arrow-bottom::after, .btn_jump a[href="#contents"] .ico::after {
  right: 50%;
}
.ico-arrow-bottom::before, .btn_jump a[href="#contents"] .ico::before, .ico-arrow-bottom::after, .btn_jump a[href="#contents"] .ico::after {
  top: 50%;
}
.ico-arrow-bottom::before, .btn_jump a[href="#contents"] .ico::before {
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(45deg);
          transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(-100%) rotate(45deg);
}
.ico-arrow-bottom::after, .btn_jump a[href="#contents"] .ico::after {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(-45deg);
          transform: translateY(calc(-50% + var(--line-width) / 2 * 0.6783401829)) translateX(100%) rotate(-45deg);
}

.ico_twitter::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_twitter.svg") center/contain no-repeat;
}

.ico_twitter_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_twitter_gray.svg") center/contain no-repeat;
}

.ico_hatena::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_hatena.svg") center/contain no-repeat;
}

.ico_hatena_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_hatena_gray.svg") center/contain no-repeat;
}

.ico_line::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_line.svg") center/contain no-repeat;
}

.ico_line_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_line_gray.svg") center/contain no-repeat;
}

.ico_youtube::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_youtube.svg") center/contain no-repeat;
}

.ico_youtube_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_youtube_gray.svg") center/contain no-repeat;
}

.ico_facebook::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook.svg") center/contain no-repeat;
}

.ico_facebook_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook_gray.svg") center/contain no-repeat;
}

.ico_facebook::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook.svg") center/contain no-repeat;
}

.ico_facebook_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_facebook_gray.svg") center/contain no-repeat;
}

.ico_instagram::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_instagram.svg") center/contain no-repeat;
}

.ico_instagram_gray::before {
  background: url("/wp/wp-content/themes/pbd/files/images/common/ico_instagram_gray.svg") center/contain no-repeat;
}

a:focus-visible,
button:focus-visible,
input:not([type=range]):focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 4px solid var(--a11y-focuscolor, rgba(0, 125, 250, 0.6));
  outline-offset: 1px;
}

[id]:not(input):not(textarea):not(select):focus-visible {
  outline: 4px solid var(--a11y-focuscolor, rgba(0, 125, 250, 0.6));
  outline-offset: -4px;
}

:root {
  --scrollbar-width: unset;
  --base: 18;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1em;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  color: #313233;
  background: #f5f2eb;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
body a {
  text-decoration: none !important;
}
body a:hover {
  cursor: pointer;
}

pre, code, kbd, samp {
  font-family: "Noto Sans Mono", "Noto Sans JP", "Courier New", monospace;
}

@media screen and (max-width: 47.9375em) {
  select {
    font-size: 16px;
  }
}

:where(a) {
  color: #313233;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

:where(a:not([class*=link]):not([class*=hoge])) {
  -webkit-text-decoration: underline 1px currentColor;
          text-decoration: underline 1px currentColor;
  text-underline-offset: 0.5333333333em;
}

:where(ul, ol) {
  list-style: none;
}

:where(img[width][height]) {
  height: auto;
}

@media screen and (min-width: 64.0625em) {
  body .view_tab-sp,
  body .view_tab {
    display: none !important;
  }
}
@media screen and (min-width: 48em) {
  body .view_sp {
    display: none !important;
  }
}
@media screen and (max-width: 64em) {
  body .view_pc {
    display: none !important;
  }
}
@media screen and (max-width: 47.9375em) {
  body .view_pc-tab,
  body .view_tab {
    display: none !important;
  }
}

.mouse .over {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.mouse .over:hover, .touch .over.touchstart {
  opacity: 0.7;
}
.touch .over {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.touch .over.touchend {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

html.noscroll {
  overflow: hidden;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-size: 100%;
}

@media screen and (min-width: 64.0625em) {
  .box_contents {
    margin-top: -100px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .box_contents {
    margin-top: -100px;
  }
}
@media screen and (max-width: 47.9375em) {
  .box_contents {
    margin-top: -3em;
  }
}
.box_contents {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 64em) {
  .box_contents_inner {
    width: 90%;
    margin: auto;
  }
}
@media screen and (min-width: 64.0625em) {
  .box_contents_inner {
    padding: 100px 0;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .box_contents_inner {
    padding: 100px 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .box_contents_inner {
    padding: 3em 0;
  }
}
@media screen and (min-width: 64.0625em) {
  .box_contents_inner {
    margin-bottom: 160px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .box_contents_inner {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 47.9375em) {
  .box_contents_inner {
    margin-bottom: 3em;
  }
}

.box_page_header {
  background: #292e49;
}
@media screen and (min-width: 64.0625em) {
  .box_page_header_inner {
    padding: 290px 0 200px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .box_page_header_inner {
    padding: 180px 0 130px;
  }
}
@media screen and (max-width: 47.9375em) {
  .box_page_header_inner {
    padding: 5em 0 4em;
  }
}

.header {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  width: 100%;
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_inner_left {
  padding-left: 20px;
}
@media screen and (min-width: 64.0625em) {
  .header_inner_left .logo img {
    max-height: 120px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .header_inner_left .logo img {
    max-height: 100px;
  }
}
@media screen and (max-width: 47.9375em) {
  .header_inner_left .logo img {
    max-height: 60px;
  }
}
.header_inner_right {
  padding-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_inner_right ul {
  background: #fff;
  border-radius: 2em;
  padding: 1em 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_inner_right ul li {
  margin-right: 2em;
}
@media screen and (min-width: 120.0625em) {
  .header_inner_right ul li {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .header_inner_right ul li {
    font-size: calc(1.125rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .header_inner_right ul li {
    font-size: calc(1.125rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .header_inner_right ul li {
    font-size: calc(1.125rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .header_inner_right ul li {
    font-size: calc(1rem + (1vw - 0.234375rem) * (0.5102040816));
  }
}
@media screen and (max-width: 23.375em) {
  .header_inner_right ul li {
    font-size: calc(0.8533333333rem + (1vw - 0.2rem) * (4.3456790123));
  }
}
.header_inner_right ul li a {
  color: #292e49;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.header_inner_right .btn {
  margin-left: 30px;
}

.sp_fix_menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.sp_fix_menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sp_fix_menu > ul .btn_basic {
  border-radius: 0;
  min-width: none;
}
.sp_fix_menu > ul > li.btn_menu {
  width: 76px;
  background: #292e49;
  position: relative;
}
.sp_fix_menu > ul > li.btn_con {
  width: calc(100% - 76px);
}
.sp_fix_menu > ul > li.btn_con .btn_square.contact {
  width: 100%;
  border-radius: 0;
  padding: 20px;
}
.sp_fix_menu > ul > li.btn_rsv {
  width: 40%;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  right: 16px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 32px;
}
.hamburger.active span:nth-child(1) {
  top: 22px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 22px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  display: none;
  z-index: -1;
  top: 0;
  left: 0;
  color: #292e49;
  background: #fff;
  text-align: center;
  width: 100%;
  height: calc(100vh - 60px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
nav.globalMenuSp.active {
  z-index: 2;
  display: block;
}
nav.globalMenuSp > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
}
nav.globalMenuSp .logo {
  margin-bottom: 1.5em;
}
nav.globalMenuSp .ul_parent {
  text-align: left;
}
nav.globalMenuSp .ul_parent > li {
  padding: 0.5em 0;
}
nav.globalMenuSp .ul_parent > li a {
  color: #292e49;
}
nav.globalMenuSp .ul_parent > li a.recruit {
  color: #fff;
  margin-top: 2em;
}
@media screen and (min-width: 120.0625em) {
  nav.globalMenuSp .ul_parent > li .ul_child > li {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  nav.globalMenuSp .ul_parent > li .ul_child > li {
    font-size: calc(0.8125rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  nav.globalMenuSp .ul_parent > li .ul_child > li {
    font-size: calc(0.8125rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  nav.globalMenuSp .ul_parent > li .ul_child > li {
    font-size: calc(0.8125rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  nav.globalMenuSp .ul_parent > li .ul_child > li {
    font-size: calc(0.75rem + (1vw - 0.234375rem) * (0.2551020408));
  }
}
@media screen and (max-width: 23.375em) {
  nav.globalMenuSp .ul_parent > li .ul_child > li {
    font-size: calc(0.64rem + (1vw - 0.2rem) * (3.2592592593));
  }
}
nav.globalMenuSp .ul_parent > li .ul_child > li {
  margin-top: 1em;
  text-align: left;
  padding-left: 1.5em;
  position: relative;
}
nav.globalMenuSp .ul_parent > li .ul_child > li a {
  color: #292e49;
}
nav.globalMenuSp .ul_parent > li .ul_child > li:before {
  content: "ー";
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: 1em;
}
nav.globalMenuSp.active {
  opacity: 100;
}

.footer {
  background: #1c1c1c;
  color: #fff;
  letter-spacing: 0.06em;
}
.footer a {
  color: #fff;
}
.footer_inner {
  max-width: 1170px;
  margin: auto;
}
@media screen and (min-width: 64.0625em) {
  .footer_inner {
    padding: 100px 0 50px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .footer_inner {
    padding: 80px 0 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner {
    padding: 3em 0;
  }
}
@media screen and (min-width: 48em) {
  .footer_inner_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner_flex {
    display: block;
  }
}
.footer_inner_flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 48em) {
  .footer_inner_flex_left {
    width: 53%;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner_flex_left {
    width: 100%;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner_flex_left {
    margin-bottom: 4em;
  }
}
.footer_inner_flex_left_top {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 47.9375em) {
  .footer_inner_flex_left_top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 48em) {
  .footer_inner_flex_left_top a {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner_flex_left_top a {
    margin-bottom: 1em;
  }
}
.footer_inner_flex_left_bottom .ul_parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_inner_flex_left_bottom .ul_parent > li {
  width: 49%;
}
.footer_inner_flex_left_bottom .ul_parent > li.first {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 120.0625em) {
  .footer_inner_flex_left_bottom .ul_parent > li .ul_child > li {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .footer_inner_flex_left_bottom .ul_parent > li .ul_child > li {
    font-size: calc(0.8125rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .footer_inner_flex_left_bottom .ul_parent > li .ul_child > li {
    font-size: calc(0.8125rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .footer_inner_flex_left_bottom .ul_parent > li .ul_child > li {
    font-size: calc(0.8125rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .footer_inner_flex_left_bottom .ul_parent > li .ul_child > li {
    font-size: calc(0.75rem + (1vw - 0.234375rem) * (0.2551020408));
  }
}
@media screen and (max-width: 23.375em) {
  .footer_inner_flex_left_bottom .ul_parent > li .ul_child > li {
    font-size: calc(0.64rem + (1vw - 0.2rem) * (3.2592592593));
  }
}
.footer_inner_flex_left_bottom .ul_parent > li .ul_child > li {
  margin-top: 15px;
}
@media screen and (min-width: 48em) {
  .footer_inner_flex_right {
    width: 38%;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner_flex_right {
    width: 100%;
  }
}
.footer_inner_flex_right {
  border-left: 1px solid #343537;
  padding-left: 70px;
}
@media screen and (max-width: 47.9375em) {
  .footer_inner_flex_right {
    padding-left: 0;
    border-left: none;
    text-align: center;
  }
}
.footer_inner_flex_right_company .logo {
  margin-bottom: 30px;
}
.footer_inner_flex_right_company .company {
  margin-bottom: 15px;
}
@media screen and (min-width: 120.0625em) {
  .footer_inner_flex_right_company .add {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .footer_inner_flex_right_company .add {
    font-size: calc(0.875rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .footer_inner_flex_right_company .add {
    font-size: calc(0.875rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .footer_inner_flex_right_company .add {
    font-size: calc(0.875rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .footer_inner_flex_right_company .add {
    font-size: calc(0.875rem + (1vw - 0.234375rem) * (0));
  }
}
@media screen and (max-width: 23.375em) {
  .footer_inner_flex_right_company .add {
    font-size: calc(0.7466666667rem + (1vw - 0.2rem) * (3.8024691358));
  }
}
.footer_inner_flex_right_company .add {
  margin-bottom: 20px;
}
.footer_inner_flex_right_company .tel {
  color: #999999;
}
@media screen and (min-width: 120.0625em) {
  .footer_inner_flex_right_company .tel {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .footer_inner_flex_right_company .tel {
    font-size: calc(0.75rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .footer_inner_flex_right_company .tel {
    font-size: calc(0.75rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .footer_inner_flex_right_company .tel {
    font-size: calc(0.75rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .footer_inner_flex_right_company .tel {
    font-size: calc(0.75rem + (1vw - 0.234375rem) * (0));
  }
}
@media screen and (max-width: 23.375em) {
  .footer_inner_flex_right_company .tel {
    font-size: calc(0.64rem + (1vw - 0.2rem) * (3.2592592593));
  }
}
.footer_inner_flex_right_sister {
  margin-top: 70px;
}
.footer_inner_flex_right_sister ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_inner_flex_right_sister ul li {
  width: 49%;
  text-align: center;
}
.footer_inner_flex_right_sister ul li > span {
  display: inline-block;
  margin-bottom: 0.5em;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.footer_inner_flex_right_sister a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 20px;
  border: 1px solid #343537;
  border-radius: 4px;
  background-color: #fff;
}
.footer_inner_flex_right_sister a img {
  max-height: 50px;
}
.footer_inner .copyright {
  color: #6f6f6f;
}
@media screen and (min-width: 120.0625em) {
  .footer_inner .copyright {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .footer_inner .copyright {
    font-size: calc(0.75rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .footer_inner .copyright {
    font-size: calc(0.75rem + (1vw - 0.640625rem) * (0));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .footer_inner .copyright {
    font-size: calc(0.75rem + (1vw - 0.48rem) * (0));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .footer_inner .copyright {
    font-size: calc(0.75rem + (1vw - 0.234375rem) * (0));
  }
}
@media screen and (max-width: 23.375em) {
  .footer_inner .copyright {
    font-size: calc(0.64rem + (1vw - 0.2rem) * (3.2592592593));
  }
}
.footer_inner .copyright {
  font-family: "sofia-pro", sans-serif;
}
@media screen and (min-width: 48em) {
  .footer_inner .copyright {
    margin-top: 120px;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner .copyright {
    margin-top: 60px;
  }
}
@media screen and (max-width: 47.9375em) {
  .footer_inner .copyright {
    margin-bottom: 3em;
  }
}

.box_breadcrumb {
  padding-block: 0.9333333333em;
  overflow: scroll;
}
@media screen and (min-width: 64.0625em) {
  .box_breadcrumb {
    margin-inline: auto;
    max-width: calc(1280 / 15 * 1em);
    width: 90%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .box_breadcrumb {
    margin-left: 2.5%;
    width: 97.5%;
  }
}
@media screen and (max-width: 47.9375em) {
  .box_breadcrumb {
    margin-left: 5.8666666667%;
    width: 94.1333333333%;
  }
}
.box_breadcrumb dd {
  line-height: 1.5;
}
.box_breadcrumb dd::before, .box_breadcrumb dd::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.box_breadcrumb dd::before {
  margin-bottom: calc(-0.34em + 0px);
}
.box_breadcrumb dd::after {
  margin-top: calc(-0.26em + 0px);
}
.box_breadcrumb dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.box_breadcrumb dd .label {
  display: none;
}
.box_breadcrumb dd ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.box_breadcrumb dd ol li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5833333333em;
  font-size: 0.8em;
}
.box_breadcrumb dd ol li a {
  text-decoration: none;
}
.box_breadcrumb dd ol li a:not([aria-current=page]) {
  color: #1c1c1c;
}
.box_breadcrumb dd ol li a[aria-current=page] {
  pointer-events: none;
}
.box_breadcrumb dd ol li .ico_home {
  display: none;
  width: 1.1666666667em;
  height: 1.1666666667em;
}
.box_breadcrumb dd ol li .ico_home::before {
  display: block;
  width: 1em;
  height: 1em;
  background: url("../images/common/ico_home.svg") center/contain no-repeat;
  content: "＞";
}
.box_breadcrumb dd ol li .ico_arrow_r {
  display: block;
  width: 1em;
  height: 1em;
}
.box_breadcrumb dd ol li .ico_arrow_r::before {
  display: block;
  width: 1em;
  height: 1em;
  background: url("../images/common/ico_arrow_r.svg") center/contain no-repeat;
  content: "";
}

/* contactform7.scss */
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #ff5050; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #ff5050; /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #ff5050;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d; /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc; /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
          transform-origin: 8px 8px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 2000ms;
            animation-duration: 2000ms;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}