@charset "UTF-8";



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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #1E1E1E;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

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

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #1E1E1E;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a:not([class]) {
  color: #03c;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #1E1E1E;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #DDEAF1;
  border-bottom: .25em solid #DDEAF1;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.swiper-button-wrapper {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 br:empty,
.wpcf7 p:empty {
  display: none;
}

.wpcf7 p:empty {
  display: none;
}

.l-about {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.l-concept {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-container.l-container--header {
  padding-right: 12px;
  padding-right: .75rem;
  padding-left: 12px;
  padding-left: .75rem;
  max-width: 100%;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  background-color: #fff;
}

.l-news {
  padding-top: 68px;
  padding-top: 4.25rem;
}

.l-page-archive {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.l-page-character {
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.l-page-contact-footer {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-page-contact {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.l-page-department {
  margin-top: 92px;
  margin-top: 5.75rem;
}

.l-page-footer {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-page-interview {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.l-page-privacy {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-page-requirement {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.l-page-tags {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-recruit {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.l-service {
  margin-top: 75px;
  margin-top: 4.6875rem;
}

.l-top-footer {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.l-works {
  margin-top: 90px;
  margin-top: 5.625rem;
}

.c-article-heading {
  position: relative;
  padding-bottom: 13px;
  padding-bottom: .8125rem;
  color: #172C51;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 157%;
}

.c-article-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  width: 80px;
  width: 5rem;
  height: 2px;
  height: .125rem;
  content: '';
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  border-radius: 70px;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, color-stop(19.23%, #3A8E96), to(#172C51));
  background: linear-gradient(90deg, #3A8E96 19.23%, #172C51 100%);
  padding: 14px 32px;
  padding: .875rem 2rem;
  padding-right: 36px;
  padding-right: 2.25rem;
  min-width: 240px;
  min-width: 15rem;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .48px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn > span {
  position: relative;
  z-index: 2;
}

.c-btn::after {
  position: absolute;
  top: 50%;
  right: 1.2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background-image: url('../img/btn-arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  width: .5rem;
  height: 14px;
  height: .875rem;
  content: '';
}

.c-btn::before {
  inset: 0;
  position: absolute;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: 100vh;
  background-color: #172C51;
  content: '';
}

.c-btn:focus-visible::after {
  -webkit-transform: translateY(-50%) translateX(.125rem);
  transform: translateY(-50%) translateX(.125rem);
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--header {
  padding: 10px 36px 10px 32px;
  padding: .625rem 2.25rem .625rem 2rem;
  min-width: auto;
  font-size: 16px;
  font-size: 1rem;
}

.c-btn--header::after {
  right: .83em;
}

.c-btn--recruit {
  border: 1px solid #fff;
  background-color: transparent;
  background-image: none;
}

.c-heading {
  text-align: left;
}

.c-heading__en {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background: linear-gradient(90deg, #3da2ac 50%, #274a86 100%);
  background-clip: text;
  font-family: 'Roboto', sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: .9px;
  line-height: 1.05;
  text-transform: uppercase;
}

.c-heading__ja {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .48px;
}

/************************************************************************
* 横並び
************************************************************************/
.c-heading--row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-heading--row .c-heading__en {
  line-height: 1.2;
}

/************************************************************************
* 縦並び
************************************************************************/
.c-heading--column {
  text-align: center;
}

.c-heading--column .c-heading__ja {
  display: block;
}

/************************************************************************
* 白文字
************************************************************************/
.c-heading--white {
  text-align: left;
}

.c-heading--white .c-heading__en {
  -webkit-text-fill-color: initial;
  background: none;
  color: #fff;
  line-height: 1.3;
}

.c-heading--white .c-heading__ja {
  margin-top: -5px;
  margin-top: -.3125rem;
  color: #fff;
}

.c-lowerFv-title__en {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, color-stop(19.23%, #3A8E96), to(#172C51));
  background: linear-gradient(90deg, #3A8E96 19.23%, #172C51 100%);
  background-clip: text;
  font-family: 'Roboto', sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: .9px;
  line-height: 101%;
  text-transform: uppercase;
}

.c-lowerFv-title__ja {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .42px;
  line-height: 150%;
}

/**
 * block-head-01
 */
.p-article.is-page .block-head-01 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-article.is-page .block-head-01 h2 {
  margin-top: 0;
  border: none;
  padding: 0;
  color: #1E1E1E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .48px;
  line-height: 150%;
}

.p-article.is-page .block-head-01 p {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  /* background: linear-gradient(90deg, #3A8E96 19.23%, #172C51 100%); */
  background: linear-gradient(90deg, #3da2ac 50%, #274a86 100%);
  background-clip: text;
  font-family: 'Roboto', sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: .9px;
  line-height: 105%;
  text-transform: uppercase;
}

/**
 * block-lead
 */
.p-article.is-page .block-lead {
  text-align: center;
}

.p-article.is-page .block-lead p {
  margin-top: 0;
  color: #172C51;
  font-weight: 700;
}

.p-article.is-page .block-lead p:first-child {
  font-size: 45px;
  font-size: 2.8125rem;
  line-height: 150%;
}

.p-article.is-page .block-lead p:not(:first-child) {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 170%;
}

/**
 * block-head-02
 */
.p-article.is-page .block-head-02 p {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  border: none;
  background: -webkit-gradient(linear, left top, right top, color-stop(19.23%, #3A8E96), to(#172C51));
  background: linear-gradient(90deg, #3A8E96 19.23%, #172C51 100%);
  background-clip: text;
  padding-left: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: .9px;
  line-height: 115%;
  text-transform: uppercase;
}

.p-article.is-page .block-head-02 h2 {
  margin-top: -6px;
  margin-top: -.375rem;
  border: none;
  padding: 0;
  color: #1E1E1E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .48px;
  line-height: 150%;
}

/**
 * block-head-03
 */
.p-article.is-page .block-head-03 p {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: .125rem;
  background: #4097A0;
  padding: 2px 7px 3px 7px;
  padding: .125rem .4375rem .1875rem .4375rem;
  color: #fff;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .39px;
  line-height: 120%;
  text-transform: uppercase;
}

.p-article.is-page .block-head-03 h2 {
  margin-top: 5px;
  margin-top: .3125rem;
  border: none;
  padding-left: 0;
  color: #1E1E1E;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 150%;
}

/**
 * block-maintenance-head-01
 */
.p-article.is-page .block-maintenance-head-01 {
  position: relative;
  border: none;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  padding-left: 0;
  color: #172C51;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

.p-article.is-page .block-maintenance-head-01::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #172C51;
  width: 41px;
  width: 2.5625rem;
  height: 2px;
  height: .125rem;
  content: '';
}

/**
* block-maintenance-head-02
*/
.p-article.is-page .block-maintenance-head-02 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  background: #DDEAF1;
  padding: 3px 12px 3px 12px;
  padding: .1875rem .75rem .1875rem .75rem;
  color: #1E1E1E;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 150%;
}

/**
 * block-maintenance-head-03
 */
.p-article.is-page .block-maintenance-head-03 {
  border-left: 3px solid #4097A0;
  border-left: .1875rem solid #4097A0;
  padding-left: 10px;
  padding-left: .625rem;
  color: #1E1E1E;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .36px;
  line-height: 150%;
}

/**
 * block-maintenance-head-04
 */
.p-article.is-page .block-maintenance-head-04 {
  position: relative;
  border: none;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  padding-left: 0;
  color: #172C51;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

/**
 * block-lead
 */
.block-lead {
  text-align: center;
}

.block-lead .wp-block-group__inner-container p {
  margin-top: 0;
  color: #172C51;
  font-weight: 700;
}

.block-lead .wp-block-group__inner-container p:first-child {
  font-size: 45px;
  font-size: 2.8125rem;
  line-height: 150%;
}

.block-lead .wp-block-group__inner-container p:not(:first-child) {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 170%;
}

/**
 * block-table
 */
.block-table {
  margin-inline: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.block-table table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.block-table table td {
  padding: 18px 10px 12px 10px;
  padding: 1.125rem .625rem .75rem .625rem;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .42px;
}

.block-table table td:first-child {
  border-bottom: 1px solid #172C51;
  width: 30.5%;
  color: #172C51;
  font-weight: 700;
  font-weight: 700;
  line-height: 180%;
  white-space: nowrap;
}

.block-table table td:not(:first-child) {
  border-bottom: 1px solid #B3B3B3;
  width: 69.5%;
  color: #1E1E1E;
  font-weight: 500;
  line-height: 160%;
}

.block-table table td,
.block-table table th {
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}

/**
 * block-2col-card
 */
.wp-block-columns {
  margin-inline: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.wp-block-column {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wp-block-group.block-2col-card {
  margin-top: 0 !important;
}

.p-article.is-page .block-2col-card {
  background-color: #DDEAF1;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
  color: #1E1E1E;
}

.p-article.is-page .block-2col-card .wp-block-heading {
  position: relative;
  padding-left: 25px;
  padding-left: 1.5625rem;
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-article.is-page .block-2col-card .wp-block-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #1E1E1E;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
  content: '';
}

.p-article.is-page .block-2col-card p {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 170%;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 8px;
  gap: .5rem;
}

/**
 * よくある質問
 */

.p-article.is-page .accordion__item + .accordion__item {
  margin-top: 12px;
  margin-top: .75rem;
}

.accordion__btn {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  border-radius: .3125rem;
  background-color: #DDEAF1;
  padding: 14px 42px 14px 14px;
  padding: .875rem 2.625rem .875rem .875rem;
}

.accordion__btn::before {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -4px;
  margin-top: -.25rem;
  border-radius: 50%;
  background-color: #348C9E;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  content: 'Q';
}

.accordion__btn::after {
  display: inline-block;
  position: absolute;
  top: 46%;
  right: 18px;
  right: 1.125rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: .3s;
  transition: .3s;
  border-top: 2px solid #1E1E1E;
  border-top: .125rem solid #1E1E1E;
  border-right: 2px solid #1E1E1E;
  border-right: .125rem solid #1E1E1E;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.accordion__btn.open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion__content {
  gap: 12px;
  gap: .75rem;
  display: none;
  margin-top: 0;
  padding: 13px 20px;
  padding: .8125rem 1.25rem;
  padding-left: 14px;
  padding-left: .875rem;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
}

.p-article__body .accordion__content {
  margin-top: 0;
}

.accordion__content::before {
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -4px;
  margin-top: -.25rem;
  border-radius: 50%;
  background-color: #172C51;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  content: 'A';
}

.p-about-card {
  aspect-ratio: 540/359;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  background-color: #f8f8f8;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.p-about__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-about__img img {
  display: block;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.p-about__img--faq::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(8, 57, 77, .5);
  width: 100%;
  height: 100%;
  content: '';
}

.p-about__img--faq img {
  height: 110%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 26% -1.5rem;
  object-position: 26% -1.5rem;
}

.p-about-card__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2;
  padding: 0 17px 25px 12px;
  padding: 0 1.0625rem 1.5625rem .75rem;
  width: 100%;
  color: #fff;
}

.p-about-card__content::after {
  position: absolute;
  right: 17px;
  right: 1.0625rem;
  bottom: 18px;
  bottom: 1.125rem;
  left: 0;
  background-color: #fff;
  height: 1px;
  content: '';
}

.p-about-card__title {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-about-card__titleEn {
  font-family: 'Roboto', sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: .68px;
  line-height: 1;
}

.p-about-card__titleJa {
  margin-bottom: 6px;
  margin-bottom: .375rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .36px;
  line-height: 1.5;
}

.p-about-card__icon {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 34px;
  width: 2.125rem;
  height: 34px;
  height: 2.125rem;
}

.p-about-card__icon::before {
  translate: -50% -50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 47%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-about {
  padding-block: 70px;
  padding-block: 4.375rem;
  position: relative;
  z-index: 1;
  background-color: #DDEAF1;
  overflow: hidden;
}

.p-about::before {
  display: inline-block;
  position: absolute;
  top: 33px;
  top: 2.0625rem;
  right: calc(50% - 13.75rem);
  z-index: -1;
  mix-blend-mode: overlay;
  background-image: url('../img/logo_bg.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1178px;
  width: 73.625rem;
  height: 562px;
  height: 35.125rem;
  content: '';
}

.p-about__cards {
  gap: 13px;
  gap: .8125rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 26px;
  margin-top: 1.625rem;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-page-archive__content {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 32px;
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-article-card {
  width: 100%;
  overflow: hidden;
}

.p-article-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-article-card__img {
  overflow: hidden;
}

.p-article-card__img img {
  aspect-ratio: 320/205;
  display: block;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-article-card__content {
  padding: 18px 0;
  padding: 1.125rem 0;
}

.p-article-card__meta {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-article-card__category {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: .125rem;
  background-color: #172C51;
  padding: 2px 10px;
  padding: .125rem .625rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
}

.p-article-card__meta-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-article-card__title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-top: 8px;
  margin-top: .5rem;
  overflow: hidden;
  color: #1E1E1E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
}

.p-article-card__empty {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100px;
  min-height: 6.25rem;
}

.p-article-card__empty-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.p-article-related {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-article-related__cards {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-article-related__cards .p-article-card__img img {
  aspect-ratio: 335/215;
}

.p-article-related__empty {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 80px;
  min-height: 5rem;
}

.p-article-related__empty-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.p-article__section {
  background: #DDEAF1;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-article__content {
  margin-inline: auto;
  padding-inline: 20px;
  background: #fff;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.p-article__content-inner {
  margin-inline: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-article__meta {
  gap: 19px;
  gap: 1.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-works-article__cat.p-article-card__category {
  font-size: 14px;
  font-size: .875rem;
}

.p-article__name {
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 150%;
}

.p-article__title {
  margin-top: 10px;
  margin-top: .625rem;
  color: #172C51;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 150%;
}

.p-article__eyecatch {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-article__eyecatch img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-article__body {
  padding-top: 30px;
  padding-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
}

.p-article__body * + * {
  margin-top: 25px;
}

.p-article__body *:first-child {
  margin-top: 0;
}

.p-article__body .wp-block-spacer,
.p-article__body .wp-block-spacer + * {
  margin-top: 0;
}

.p-article__body h2 {
  border-bottom: 1px solid #000;
  border-bottom: .0625rem solid #000;
  border-left: 4px solid #1c397c;
  border-left: .25rem solid #1c397c;
  padding-left: 10px;
  padding-left: .625rem;
  color: #172C51;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 185%;
}

.p-article__body h3:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-article__body p {
  margin-top: 16px;
  margin-top: 1rem;
  color: #1E1E1E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 157%;
}

.p-article__body ul,
.p-article__body ol {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-article__body ul ul,
.p-article__body ul ol,
.p-article__body ol ul,
.p-article__body ol ol {
  margin-top: 15px;
  margin-top: .9375rem;
  margin-left: 0;
}

.p-article__body ul li,
.p-article__body ol li {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
}

.p-article__body ol {
  padding-left: 1.25em;
}

.p-article__body ol > li:not([class]) {
  list-style: decimal;
}

.p-article__body ol > li:not([class])::marker {
  color: #DDEAF1;
  font-weight: 700;
}

.p-article__body li:not([class]) + li {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-article__body a:not([class]) {
  color: #DDEAF1;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #000;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F8;
  padding: 1em 4em;
}

.p-article__body blockquote::before,
.p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #b2b2b2;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #DDEAF1;
  width: 2em;
  height: 2em;
  color: #DDEAF1;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #DDEAF1;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

.p-article__footerBtn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

/************************************************************************
* p-breadcrumb
************************************************************************/
.p-breadcrumb {
  margin: 0;
  padding: 0;
}

.p-breadcrumb__inner {
  gap: 3px;
  gap: .1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.4;
  list-style: none;
}

.breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  margin: 0 8px;
  margin: 0 .5rem;
  color: #999;
  font-weight: normal;
  content: '>';
}

.p-breadcrumb__inner {
  font-family: 'Noto Sans JP';
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .36px;
  line-height: 100%;
}

.p-breadcrumb__inner a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.breadcrumb-arrow {
  display: inline-block;
  position: relative;
  top: 1px;
  top: .0625rem;
  width: 10px;
  width: .625rem;
  height: 9px;
  height: .5625rem;
}

.breadcrumb-arrow::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: 1.5px solid #999;
  border-top: .09375rem solid #999;
  border-right: 1.5px solid #999;
  border-right: .09375rem solid #999;
  width: 6px;
  width: .375rem;
  height: 6px;
  height: .375rem;
  content: '';
}

.p-breadcrumb__inner span {
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100vw - 50px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-concept__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-concept__image {
  position: relative;
  margin-top: 48px;
  margin-top: 3rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  height: 240px;
  height: 15rem;
}

.p-concept__image::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(55, 130, 162, .08);
  pointer-events: none;
  content: '';
}

.p-concept__image img {
  aspect-ratio: auto;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-concept__image::before {
  display: block;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  bottom: -50px;
  bottom: -3.125rem;
  background-image: url('../img/concept_deco.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 137px;
  width: 8.5625rem;
  height: 94px;
  height: 5.875rem;
  content: '';
}

.p-concept__text {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-concept__lead {
  margin-top: 21px;
  margin-top: 1.3125rem;
  margin-top: 21px;
  margin-top: 1.3125rem;
  color: #1E1E1E;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 157%;
}

.p-concept__text {
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 180%;
}

.p-concept__button {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: 1px 4px;
  padding: .0625rem .25rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: none;
  margin-top: 4px;
  min-width: 5em;
  color: #1E1E1E;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 34px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-top: 9px;
  background: #1E1E1E;
  width: 100%;
  height: 2px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child,
.is-opened .p-drawer__bar:last-child {
  -webkit-transform-origin: center;
  transform-origin: center;
  margin-left: -15%;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(11px) rotate(30deg);
  transform: translateY(11px) rotate(30deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-11px) rotate(-30deg);
  transform: translateY(-11px) rotate(-30deg);
}

.p-drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s, visibility .3s ease 0s;
  transition: opacity .3s ease 0s, visibility .3s ease 0s;
  background: rgba(23, 44, 81, .53);
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.p-drawer__bg.is-opened {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: 46px;
  padding-top: 2.875rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  width: 85%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: auto;
  color: #1E1E1E;
  text-align: left;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  margin-inline: auto;
  padding-right: 28px;
  padding-right: 1.75rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-drawer__navItem.menu-item-has-children {
  position: relative;
}

.p-drawer__navItem.menu-item-has-children > a,
.p-drawer__navItem.menu-item-has-children > div {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #172C51;
  padding-top: 4px;
  padding-top: .25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 6px;
  padding-bottom: .375rem;
  width: 100%;
  color: #172C51;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.p-drawer__navList .menu-item-has-children:nth-of-type(3) {
  margin-top: 6px;
  margin-top: .375rem;
}

.p-drawer__navItem.menu-item-has-children > div:not(:first-child) {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-drawer__navList .menu-item-has-children:nth-of-type(3) > .p-drawer__navLink span {
  display: inline-block;
  position: relative;
}

.p-drawer__navList .menu-item-has-children:nth-of-type(3) > .p-drawer__navLink span::after {
  position: absolute;
  top: 50%;
  right: -20px;
  right: -1.25rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #172C51;
  border-right: .125rem solid #172C51;
  border-bottom: 2px solid #172C51;
  border-bottom: .125rem solid #172C51;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-drawer__navItem:not(.menu-item-has-children) > a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 6px;
  padding-top: .375rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 6px;
  padding-bottom: .375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #172C51;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  text-decoration: none;
}

.p-drawer__navItem:not(.menu-item-has-children) > a:not(:first-child) {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-drawer__navItem:not(.menu-item-has-children) > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #172C51;
  border-right: .125rem solid #172C51;
  border-bottom: 2px solid #172C51;
  border-bottom: .125rem solid #172C51;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-drawer__navItem a {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.p-drawer__subMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 7px;
  margin-top: .4375rem;
}

.p-drawer__subMenu .p-drawer__navItem--sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-drawer__navItem--sub a {
  position: relative;
  padding-left: 16px;
  padding-left: 1rem;
  color: #1E1E1E;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.8;
  text-decoration: none;
}

.p-drawer__navItem--sub a::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: .0625rem;
  background-color: #172C51;
  width: 8px;
  width: .5rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-drawer__navItem--mt {
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-drawer__navItem--mt ~ .p-drawer__navItem--mt {
  margin-top: 0;
}

.p-drawer__contact {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-footer {
  background-color: #DDEAF1;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
  color: #172C51;
}

.p-footer__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

.p-footer__infoLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.p-footer__logo {
  width: 180px;
  width: 11.25rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__company {
  margin-top: 13px;
  margin-top: .8125rem;
  width: 180px;
  width: 11.25rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__address {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.p-footer__nav {
  gap: clamp(20px, 5.4vw, 40px);
  gap: clamp(1.25rem, 5.4vw, 2.5rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 400px;
  max-width: 25rem;
}

.p-footer__navBlock {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 25px;
  margin-left: 1.5625rem;
}

.p-footer__navBlock--second,
.p-footer__navBlock--last {
  gap: 5px;
  gap: .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__navBlock--last {
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-footer__navGroup {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: -12px;
  margin-left: -.75rem;
}

.p-footer__navTitle {
  display: block;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-footer__navTitle--block {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-footer__navLists {
  gap: 2px;
  gap: .125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 3px;
  margin-top: .1875rem;
}

.p-footer__navListItem {
  display: block;
  position: relative;
  padding-left: 19px;
  padding-left: 1.1875rem;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.7;
  text-decoration: none;
  white-space: nowrap;
}

.p-footer__navListItem::after {
  position: absolute;
  top: 51%;
  left: 2px;
  left: .125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #172C51;
  width: 8px;
  width: .5rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

.p-footer__button {
  margin-top: 28px;
  margin-top: 1.75rem;
  text-align: center;
}

.p-footer__copyright {
  margin-top: 56px;
  margin-top: 3.5rem;
  border-top: 1px solid #e5e5e5;
  color: #000;
  font-family: 'Noto Sans JP';
  font-size: 12px;
  font-size: .75rem;
  text-align: center;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  overflow: hidden;
}

.p-fv::before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 15rem);
  z-index: -1;
  background-image: url('../img/logo_bg.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  width: 896px;
  width: 56rem;
  height: 434.283px;
  height: 27.1426875rem;
  content: '';
}

.p-fv__labels {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-fv__label {
  border-radius: .125rem;
  background-color: #172C51;
  padding: 2px 8px;
  padding: .125rem .5rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
}

.p-fv__lead {
  margin-top: 6px;
  margin-top: .375rem;
  color: #000;
  font-family: 'Noto Sans JP';
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .45px;
  line-height: 150%;
}

.p-fv__catch {
  display: inline-block;
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-left: -5px;
  margin-left: -.3125rem;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -.4px;
  line-height: 130%;
  position: relative;
}

.p-fv__catch--small {
  display: inline-block;
  -webkit-transform-origin: center;
  transform-origin: center;
  margin-left: -8px;
  margin-left: -.5rem;
  letter-spacing: -5.8px;
}

.p-fv__catch--ri {
  display: inline-block;
  -webkit-transform-origin: center;
  transform-origin: center;
  margin-left: -8px;
  margin-left: -.5rem;
  letter-spacing: 1.4px;
}

.p-fv__catch--i,
.p-fv__catch--tsu,
.p-fv__catch--ka {
  display: inline-block;
  -webkit-transform-origin: center;
  transform-origin: center;
  margin-left: 4px;
  margin-left: .25rem;
  letter-spacing: 1.4px;
}

.p-fv__catch--ga {
  font-size: 36px;
  font-size: 2.25rem;
}

.p-fv__catch--start {
  display: inline-block;
  -webkit-transform: scaleX(.8);
  transform: scaleX(.8);
  -webkit-transform-origin: center;
  transform-origin: center;
  margin-left: -18px;
  margin-left: -1.125rem;
  letter-spacing: -5.8px;
}

.p-fv__catch--end {
  display: inline-block;
  -webkit-transform: scaleX(.8);
  transform: scaleX(.8);
  -webkit-transform-origin: center;
  transform-origin: center;
  margin-left: -3px;
  margin-left: -.1875rem;
  letter-spacing: -12px;
}

.p-fv__slider-wrapper {
  position: relative;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  margin-top: 23px;
  margin-top: 1.4375rem;
  margin-right: calc(50% - 50vw);
  width: calc(100% + 50vw - 50%);
}

.p-fv__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-fv__slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.p-fv__slide-link {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.p-fv__slide-link::before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background: rgba(8, 57, 77, .5);
  width: 100%;
  height: 100%;
  content: '';
}

.p-fv__slide-link::after {
  position: absolute;
  right: 16px;
  right: 1rem;
  bottom: 16px;
  bottom: 1rem;
  -webkit-transform: translateY(.625rem) scale(.8);
  transform: translateY(.625rem) scale(.8);
  opacity: 0;
  z-index: 2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 2px solid #fff;
  border: .125rem solid #fff;
  border-radius: 50%;
  background-image: url('../img/pict-arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  width: 55px;
  width: 3.4375rem;
  height: 55px;
  height: 3.4375rem;
  content: '';
}

.p-fv__slide-link img {
  aspect-ratio: 1/1;
  display: block;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-header {
  background-color: transparent;
  padding-top: 14px;
  padding-top: .875rem;
  padding-bottom: 14px;
  padding-bottom: .875rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-header__logo {
  z-index: 39;
  height: 90%;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: 100px;
  width: 6.25rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__nav {
  display: none;
}

.p-header__nav {
  position: relative;
}

.p-header__nav .menu-item-has-children {
  position: relative;
}

.p-header__nav .menu-item-has-children > a,
.p-header__nav .menu-item-has-children > div {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.p-header__nav .menu-item-has-children > a::after,
.p-header__nav .menu-item-has-children > div::after {
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-right: 2px solid rgb(23, 44, 81);
  border-right: .125rem solid rgb(23, 44, 81);
  border-bottom: 2px solid rgb(23, 44, 81);
  border-bottom: .125rem solid rgb(23, 44, 81);
  width: 9px;
  width: .5625rem;
  height: 9px;
  height: .5625rem;
  content: '';
}

.p-header__nav .menu-item-has-children .p-header__subMenu {
  gap: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transform: translateY(-.625rem);
  transform: translateY(-.625rem);
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, -webkit-transform .3s ease;
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
  border-radius: .5rem;
  background-color: #eaf6fb;
  padding: 20px 18px;
  padding: 1.25rem 1.125rem;
  width: 200px;
  width: 13rem;
}

.p-header__navItem--sub a {
  font-size: 5px;
  font-size: .3125rem;
}

.p-header__nav .menu-item-has-children .p-header__subMenu li a {
  padding-block: 9px;
  padding-block: .5625rem;
  display: block;
  position: relative;
  padding-left: 16px;
  padding-left: 1rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1;
  text-decoration: none;
}

.p-header__nav .menu-item-has-children .p-header__subMenu li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #172C51;
  width: 8px;
  width: .5rem;
  height: 1px;
  height: .0625rem;
  content: '';
}

/************************************************************************
* p-lowerFv
************************************************************************/
.p-lowerFv {
  padding-block: 25px;
  padding-block: 1.5625rem;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #FFF), to(#F6F9FB));
  background: linear-gradient(to bottom, #FFF 30%, #F6F9FB 100%);
  height: 160px;
  height: 10rem;
  overflow: hidden;
}

.p-lowerFv::before {
  display: inline-block;
  position: absolute;
  bottom: -18px;
  bottom: -1.125rem;
  left: calc(50% - 3.75rem);
  z-index: 0;
  background-image: url('../img/logo_bg.png');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  width: 440px;
  width: 27.5rem;
  height: 213px;
  height: 13.3125rem;
  content: '';
}

.p-lowerFv__content {
  position: relative;
  z-index: 1;
}

.p-lowerFv__breadcrumb {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-news {
  position: relative;
  overflow: hidden;
}

.p-news__cards {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 100vw;
}

.p-news__button {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.p-page-call {
  margin-top: 60px;
  margin-top: 3.75rem;
  background-color: #fff;
  text-align: center;
}

.p-page-call__content {
  margin-inline: auto;
  background-color: #F4F4F4;
  padding: 25px 15px;
  padding: 1.5625rem .9375rem;
  max-width: 400px;
  max-width: 25rem;
  text-align: center;
}

.p-page-call__title {
  position: relative;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  color: #172C51;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
}

.p-page-call__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #172C51;
  width: 80px;
  width: 5rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-page-call__telBox {
  gap: 7px;
  gap: .4375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-call__telIcon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  overflow: hidden;
}

.p-page-call__telIcon img {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-page-call__telText {
  display: block;
  color: #1E1E1E;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: .76px;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
}

.p-page-call__telTime {
  color: #1E1E1E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 150%;
}

.p-page-call__telTime-num {
  font-family: 'Roboto', sans-serif;
}

.p-page-character__title {
  color: #1E1E1E;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 157%;
  text-align: center;
}

.p-page-character__cards {
  gap: 19px;
  gap: 1.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-page-character__card {
  aspect-ratio: 1/1;
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: .782px solid rgba(58, 142, 150, .2);
  border-radius: 50%;
  background: linear-gradient(137deg, rgba(206, 235, 249, .6) 7.94%, rgba(165, 207, 218, .6) 92.16%);
  padding-top: 75px;
  padding-top: 4.6875rem;
  width: 100%;
  max-width: 312px;
  max-width: 19.5rem;
  height: auto;
  text-align: center;
}

.p-page-character__card.p-page-character__card--communication {
  padding-top: 88px;
  padding-top: 5.5rem;
}

.p-page-character__card-title {
  position: relative;
  color: #172C51;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 157%;
}

.p-page-character__card-title.p-page-character__card-title--communication {
  letter-spacing: normal;
}

.p-page-character__card-title::after {
  position: absolute;
  bottom: -13px;
  bottom: -.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #172C51;
  width: 43px;
  width: 2.6875rem;
  height: 1.7px;
  height: .10625rem;
  content: '';
}

.p-page-character__card-text {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #1E1E1E;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 175%;
  text-align: center;
}

.p-page-contact {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: #DDEAF1;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-page-contact__content {
  margin-inline: auto;
  background-color: #fff;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-page-contact__inner.l-container {
  margin-inline: auto;
  padding-right: 21px;
  padding-right: 1.3125rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-page-contact__heading {
  position: relative;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  color: #172C51;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  white-space: nowrap;
}

.p-page-contact__heading::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #172C51;
  width: 41px;
  width: 2.5625rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-page-contact__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 172%;
  text-align: left;
}

.p-page-contact__link {
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  color: #E83F3F;
  font-weight: 700;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-position: from-font;
}

.p-page-contact__fields {
  margin-top: 52px;
  margin-top: 3.25rem;
}

.p-page-contact__form {
  gap: 21px;
  gap: 1.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-contact__field {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-contact__label {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 150%;
}

.p-page-contact__required {
  display: inline-block;
  border-radius: .1875rem;
  background-color: #172C51;
  padding: 4px 8px;
  padding: .25rem .5rem;
  color: #fff;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 700;
  line-height: 1;
}

.p-page-contact__input,
.p-page-contact__select,
.p-page-contact__textarea {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-top: 4px;
  margin-top: .25rem;
  border: 1px solid #A8A8A8;
  border-radius: .1875rem;
  background-color: #fff;
  padding: 10px 16px;
  padding: .625rem 1rem;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  font-size: .875rem;
}

.p-page-contact__input:focus,
.p-page-contact__select:focus,
.p-page-contact__textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(23, 44, 81, .1);
  box-shadow: 0 0 0 3px rgba(23, 44, 81, .1);
  border-color: #172C51;
}

.p-page-contact__input::-webkit-input-placeholder,
.p-page-contact__select::-webkit-input-placeholder,
.p-page-contact__textarea::-webkit-input-placeholder {
  color: #999;
}

.p-page-contact__input::-moz-placeholder,
.p-page-contact__select::-moz-placeholder,
.p-page-contact__textarea::-moz-placeholder {
  color: #999;
}

.p-page-contact__input::-ms-input-placeholder,
.p-page-contact__select::-ms-input-placeholder,
.p-page-contact__textarea::-ms-input-placeholder {
  color: #999;
}

.p-page-contact__input::placeholder,
.p-page-contact__select::placeholder,
.p-page-contact__textarea::placeholder {
  color: #999;
}

.p-page-contact__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url('../img/form-arrow.svg');
  background-position: right 20px center;
  background-position: right 1.25rem center;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}

.p-page-contact__textarea,
.p-page-contact textarea,
.wpcf7 textarea {
  width: 100%;
  height: 180px;
  height: 11.25rem;
  resize: vertical;
}

.p-page-contact__privacy {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #1E1E1E;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 150%;
  text-align: center;
}

.p-page-contact__submit {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-page-contact__submit .c-btn {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-page-contact__privacy-note {
  margin-top: 14px;
  margin-top: .875rem;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 400;
  line-height: 175%;
  text-align: center;
}

.p-page-contact__privacy-link {
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-position: from-font;
}

.p-page-department__inner {
  margin-inline: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-page-department__items {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-page-department__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-department__content {
  display: contents;
  color: #1E1E1E;
}

.p-page-department__content--design {
  margin-top: 47px;
  margin-top: 2.9375rem;
}

.p-page-department__content--seisaku {
  margin-top: 32px;
  margin-top: 2rem;
  padding-left: 8px;
  padding-left: .5rem;
}

.p-page-department__content--koumu {
  margin-top: 58px;
  margin-top: 3.625rem;
}

.p-page-department__content--soumu {
  margin-top: 58px;
  margin-top: 3.625rem;
  padding-left: 8px;
  padding-left: .5rem;
}

.p-page-department__title {
  position: relative;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  padding-left: 17px;
  padding-left: 1.0625rem;
  color: #1E1E1E;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: .78px;
  line-height: 145%;
}

.p-page-department__title::before {
  position: absolute;
  top: 4px;
  top: .25rem;
  left: 0;
  background-color: #4DA4AD;
  width: 3px;
  width: .1875rem;
  height: 33px;
  height: 2.0625rem;
  content: '';
}

.p-page-department__title.p-page-department__title--design {
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: .75px;
}

.p-page-department__title--design::before {
  height: 68px;
  height: 4.25rem;
}

.p-page-department__list {
  gap: 3px;
  gap: .1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-page-department__list-item {
  position: relative;
  padding-left: 15px;
  padding-left: .9375rem;
  color: #1E1E1E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 160%;
}

.p-page-department__list-item::before {
  position: absolute;
  top: 10px;
  top: .625rem;
  left: 0;
  border-radius: 50%;
  background-color: #4DA4AD;
  width: 6px;
  width: .375rem;
  height: 6px;
  height: .375rem;
  content: '';
}

.p-page-department__image {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-page-department__image img {
  aspect-ratio: 335/220;
}

.p-page-department__image::before {
  position: absolute;
  z-index: 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
}

.p-page-department__item:nth-child(1) .p-page-department__image::before {
  aspect-ratio: 68/200;
  right: 18px;
  right: 1.125rem;
  bottom: -13px;
  bottom: -.8125rem;
  background-image: url('../img/department_design-illust.png');
  width: 68px;
  width: 4.25rem;
  height: 200px;
  height: 12.5rem;
}

.p-page-department__item:nth-child(2) .p-page-department__image::before {
  aspect-ratio: 47/100;
  bottom: -10px;
  bottom: -.625rem;
  left: 18px;
  left: 1.125rem;
  background-image: url('../img/department_seisaku-illust.png');
  width: 94px;
  width: 5.875rem;
  height: 200px;
  height: 12.5rem;
}

.p-page-department__item:nth-child(3) .p-page-department__image::before {
  aspect-ratio: 117/200;
  right: -7.5px;
  right: -.46875rem;
  bottom: -13px;
  bottom: -.8125rem;
  background-image: url('../img/department_koumu-illust.png');
  width: 117px;
  width: 7.3125rem;
  height: 200px;
  height: 12.5rem;
}

.p-page-department__item:nth-child(4) .p-page-department__image::before {
  aspect-ratio: 29/100;
  bottom: -11px;
  bottom: -.6875rem;
  left: 26px;
  left: 1.625rem;
  background-image: url('../img/department_soumu-illust.png');
  width: 58px;
  width: 3.625rem;
  height: 200px;
  height: 12.5rem;
}

.p-page-interview__inner {
  margin-inline: auto;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-page-interview__inner.l-container {
  padding-inline: 19.5px;
  padding-inline: 1.21875rem;
}

.p-page-interview__items {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.p-page-interview__item {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-page-interview__image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 290px;
  max-width: 18.125rem;
}

.p-page-interview__image img {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: auto;
}

.p-page-interview__content {
  color: #1E1E1E;
}

.p-page-interview__tag {
  display: inline-block;
  border-radius: .125rem;
  background: #4097A0;
  padding: 2px 6px;
  padding: .125rem .375rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .42px;
  line-height: 120%;
}

.p-page-interview__title {
  margin-top: 6px;
  margin-top: .375rem;
  color: #1E1E1E;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 157%;
}

.p-page-interview__text {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-page-interview__text p {
  color: #1E1E1E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 175%;
}

.p-page-interview__text p + p {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-page-privacy__content {
  margin-inline: auto;
  background-color: #f5f5f5;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  max-width: 1100px;
  max-width: 68.75rem;
}

.p-page-privacy__wrap {
  margin-inline: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-page-privacy__title {
  position: relative;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  color: #172C51;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

.p-page-privacy__title::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #172C51;
  width: 41px;
  width: 2.5625rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-page-privacy__lead,
.p-page-privacy__list {
  color: #1E1E1E;
  font-weight: 500;
  line-height: 162%;
}

.p-page-privacy__lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 13px;
  font-size: .8125rem;
}

.p-page-privacy__list.p-page-privacy__list--number {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 19px;
  margin-top: 1.1875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  list-style: decimal;
}

.p-page-privacy__list.p-page-privacy__list--dot li {
  position: relative;
}

.p-page-privacy__list.p-page-privacy__list--dot li::before {
  position: absolute;
  left: -16px;
  left: -1rem;
  content: '・';
}

.p-page-privacy__listItem {
  font-size: 13px;
  font-size: .8125rem;
  line-height: 160%;
}

.p-page-recruit-fv {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-page-recruit-fv__image {
  position: relative;
}

.p-page-recruit-fv__image::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(8, 57, 77, .11);
  width: 100%;
  height: 100%;
  content: '';
}

.p-page-recruit-fv__image img {
  aspect-ratio: 375/220;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-page-requirement {
  background: #F4F4F4;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-page-requirement__title {
  position: relative;
  color: #172C51;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

.p-page-requirement__title::before {
  position: absolute;
  bottom: -11px;
  bottom: -.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #172C51;
  width: 41px;
  width: 2.5625rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-page-requirement__wrapper {
  margin-inline: auto;
  margin-top: 51px;
  margin-top: 3.1875rem;
  background: #fff;
  padding: 45px 17.5px;
  padding: 2.8125rem 1.09375rem;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-page-requirement__empty {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100px;
  min-height: 6.25rem;
}

.p-page-requirement__empty-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.p-page-requirement .p-article__body {
  padding-top: 0 !important;
}

.p-page-tag {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #172C51;
  border-radius: .125rem;
  background-color: #fff;
  padding: 2px 10px;
  padding: .125rem .625rem;
  color: #172C51;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 170%;
}

.p-page-tag.is-active {
  background-color: #172C51;
  color: #fff;
}

.p-page-tags__items {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 50%;
  background-color: #DDEAF1;
  width: 42px;
  width: 2.625rem;
  height: 42px;
  height: 2.625rem;
  color: #172C51;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: .8px;
  line-height: 100%;
  text-decoration: none;
}

.page-numbers + .page-numbers {
  margin-left: 7px;
  margin-left: .4375rem;
}

.page-numbers.current {
  background-color: #172C51;
  color: #fff;
}

.page-numbers.dots {
  border: none;
  background: none;
}

.page-numbers.prev, .page-numbers.next {
  position: relative;
  border: none;
  background: none;
  width: 18px;
  width: 1.125rem;
  color: #172C51;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.page-numbers.prev:hover, .page-numbers.next:hover {
  opacity: .7;
  color: #172C51;
}

.page-numbers.prev::before, .page-numbers.next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border-top: 2px solid #172C51;
  border-right: 2px solid #172C51;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.page-numbers.prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.page-numbers.next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.page-numbers:hover:not(.current):not(.dots):not(.prev):not(.next) {
  background-color: #172C51;
  color: #fff;
}

.page-numbers.next,
.page-numbers.prev {
  top: 15px;
  top: .9375rem;
}

.p-recruit__wrap {
  margin-inline: auto;
  position: relative;
  border-radius: 1.5625rem;
  padding: 60px 24px;
  padding: 3.75rem 1.5rem;
  width: 100%;
  min-height: 620px;
  min-height: 38.75rem;
  overflow: hidden;
  color: #fff;
}

.p-recruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 1.5625rem;
  width: 100%;
  height: 120%;
  overflow: hidden;
}

.p-recruit__bg img {
  border-radius: 1.5625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-recruit__content {
  position: relative;
  z-index: 2;
}

.p-recruit__inner.l-container {
  padding: 0 12px;
  padding: 0 .75rem;
}

.p-recruit__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-recruit__lead {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 157%;
  white-space: nowrap;
}

.p-recruit__text {
  position: relative;
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 175%;
}

.p-recruit__button {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-service-card {
  aspect-ratio: 335/250;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background: #fff;
  max-width: 100%;
  overflow: hidden;
  text-decoration: none;
}

.p-service-card__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.p-service-card__image img {
  display: block;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service-card__image::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
  background: rgba(8, 57, 77, .5);
  pointer-events: none;
  content: '';
}

.p-service-card__label {
  position: absolute;
  top: 116px;
  top: 7.25rem;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: 10;
  color: #C4C4C4;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25px;
  line-height: 140%;
  white-space: nowrap;
}

.p-service-card__label.p-service-card__label--design {
  top: 50px;
  top: 3.125rem;
}

.p-service-card__label.p-service-card__label--maintenance {
  top: 89px;
  top: 5.5625rem;
}

.p-service-card__label.p-service-card__label--pictogram {
  top: 72px;
  top: 4.5rem;
}

.p-service-card__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  z-index: 3;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
  margin-top: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .7)));
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.p-service-card__title {
  margin-left: -20px;
  margin-left: -1.25rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
  padding-bottom: .4375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 23px;
  font-size: 1.4375rem;
  letter-spacing: .69px;
  line-height: 140%;
}

.p-service-card__text {
  margin-top: 10px;
  margin-top: .625rem;
  min-height: 33.6px;
  min-height: 2.1rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .36px;
  line-height: 1.4;
}

.p-service-card__link {
  gap: 11px;
  gap: .6875rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  margin-top: 10px;
  margin-top: .625rem;
  margin-left: auto;
  color: #fff;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .42px;
  line-height: 170%;
}

.p-service-card__link-icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color .3s ease, border-color .3s ease;
  transition: background-color .3s ease, border-color .3s ease;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.p-service-card__link-icon.p-service-card__link-icon--arrow {
  position: absolute;
  right: 19px;
  right: 1.1875rem;
  bottom: 20px;
  bottom: 1.25rem;
}

.p-service-card__link-icon.p-service-card__link-icon--arrow::before {
  translate: -50% -50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 47%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 6px;
  width: .375rem;
  height: 6px;
  height: .375rem;
  content: '';
}

.p-service-card__link-icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: -webkit-filter .3s ease;
  transition: -webkit-filter .3s ease;
  transition: filter .3s ease;
  transition: filter .3s ease, -webkit-filter .3s ease;
  width: 11px;
  width: .6875rem;
  height: 11px;
  height: .6875rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-service-card--pictogram .p-service-card__body {
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
}

.p-service-card--pictogram .p-service-card__link {
  margin-left: auto;
  color: #fff;
}

.p-service__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-service__heading {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-service__body {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.p-service__body-lead {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 157%;
  white-space: nowrap;
}

.p-service__body-text {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 175%;
}

.p-service__cards {
  gap: 8px;
  gap: .5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 48px;
  margin-top: 3rem;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-works-article {
  background: #DDEAF1;
  padding: 60px 100px;
  padding: 3.75rem 6.25rem;
}

.p-works-article__content {
  margin-inline: 20px;
  margin-inline: 1.25rem;
  background: #fff;
}

.p-works-article__inner.l-container {
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  max-width: 1100px;
  max-width: 68.75rem;
}

.p-works-article__voice {
  -webkit-box-shadow: 0 0 .625rem rgba(0, 0, 0, .05);
  box-shadow: 0 0 .625rem rgba(0, 0, 0, .05);
  background: #F4F4F4;
  padding: 32px;
  padding: 2rem;
}

.p-works-article__voice-title {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  color: #1c397c;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.p-works-article__voice-text {
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.8;
}

.p-works-voice {
  margin-top: 26px;
  margin-top: 1.625rem;
  background: #F4F4F4;
  padding: 22px 16px;
  padding: 1.375rem 1rem;
}

.p-works-voice__title {
  position: relative;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  color: #172C51;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

.p-works-voice__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #172C51;
  width: 41px;
  width: 2.5625rem;
  height: 2px;
  height: .125rem;
  content: '';
}

.p-works-voice__text {
  margin-top: 18px;
  margin-top: 1.125rem;
  color: #1E1E1E;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 157%;
}

.p-works {
  position: relative;
  overflow: hidden;
}

.p-works__cards {
  margin-top: 28px;
  margin-top: 1.75rem;
  width: 100vw;
}

.p-works__button {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

.u-br--sp {
  display: block;
}

.u-hidden {
  display: none !important;
}

@media screen and (min-width: 600px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (any-hover: hover) and (min-width: 768px) {

  .p-header__nav li > a:hover {
    color: #172C51;
  }

  .p-header__nav .p-header__navItem:not(.menu-item-has-children) > a:hover::after {
    width: 100%;
  }
}

@media screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    border: 1px solid #172C51;
    background-color: #fff;
  }

  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    border-color: #172C51;
  }
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.3333333333vw;
  }

  :root {
    --header-height: 80px;
  }

  .swiper-button-wrapper.swiper-button-wrapper--works {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 16px;
    top: 1rem;
    right: 250px;
    right: 15.625rem;
  }

  .swiper-button-wrapper.swiper-button-wrapper--news {
    gap: 20px;
    gap: 1.25rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 138px;
    top: 8.625rem;
    right: 250px;
    right: 15.625rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    aspect-ratio: 1;
    position: relative;
    z-index: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50%;
    background-color: #172C51;
    width: 56px;
    width: 3.5rem;
  }

  .swiper-button-prev::before,
  .swiper-button-next::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: border-color .3s ease;
    transition: border-color .3s ease;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    width: 10px;
    width: .625rem;
    height: 10px;
    height: .625rem;
    content: '';
  }

  .swiper-button-prev::before {
    left: 53%;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  .swiper-button-next::before {
    left: 47%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .l-about {
    margin-top: 118px;
    margin-top: 7.375rem;
  }

  .l-concept {
    margin-top: 125px;
    margin-top: 7.8125rem;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1260px;
  }

  .l-container.l-container--narrow {
    max-width: 1160px;
  }

  .l-container.l-container--wide {
    max-width: 1500px;
  }

  .l-container.l-container--header {
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }

  .l-news {
    padding-top: 125px;
    padding-top: 7.8125rem;
  }

  .l-page-archive {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .l-page-character {
    margin-top: 122px;
    margin-top: 7.625rem;
  }

  .l-page-contact-footer {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .l-page-contact {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .l-page-department {
    margin-top: 112px;
    margin-top: 7rem;
  }

  .l-page-footer {
    margin-top: 130px;
    margin-top: 8.125rem;
  }

  .l-page-interview {
    margin-top: 116px;
    margin-top: 7.25rem;
  }

  .l-page-privacy {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .l-page-requirement {
    margin-top: 110px;
    margin-top: 6.875rem;
  }

  .l-page-tags {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .l-recruit {
    margin-top: 122px;
    margin-top: 7.625rem;
  }

  .l-service {
    margin-top: 115px;
    margin-top: 7.1875rem;
  }

  .l-top-footer {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .l-works {
    margin-top: 124px;
    margin-top: 7.75rem;
  }

  .c-article-heading {
    padding-bottom: 17px;
    padding-bottom: 1.0625rem;
    font-size: 35px;
    font-size: 2.1875rem;
  }

  .c-article-heading::after {
    width: 100px;
    width: 6.25rem;
  }

  .c-btn {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .c-heading__en {
    font-size: 67px;
    font-size: 4.1875rem;
    letter-spacing: 1.36px;
    line-height: 1;
  }

  .c-heading__ja {
    margin-top: 4px;
    margin-top: .25rem;
    font-size: 18px;
    font-size: 1.4rem;
    letter-spacing: .54px;
  }

  .c-heading--row {
    gap: 25px;
    gap: 1.5625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .c-heading--row .c-heading__en {
    line-height: 1;
  }

  .c-heading--row .c-heading__ja {
    margin-bottom: 10px;
    margin-bottom: .625rem;
  }

  .c-heading--white .c-heading__en {
    line-height: 1.2;
  }

  .c-lowerFv-title__en {
    font-size: 88px;
    font-size: 5.5rem;
    letter-spacing: 1.76px;
    line-height: 100%;
  }

  .c-lowerFv-title__ja {
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: .66px;
  }

  .p-article.is-page .block-head-01 h2 {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .54px;
  }

  .p-article.is-page .block-head-01 p {
    font-size: 68px;
    font-size: 4.25rem;
    letter-spacing: 1.36px;
  }

  .p-article.is-page .block-lead p:first-child {
    font-size: 65px;
    font-size: 4.0625rem;
  }

  .p-article.is-page .block-lead p:not(:first-child) {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-article.is-page .block-head-02 p {
    font-size: 68px;
    font-size: 4.25rem;
    letter-spacing: 1.36px;
  }

  .p-article.is-page .block-head-02 h2 {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .54px;
  }

  .p-article.is-page .block-head-03 p {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-article.is-page .block-head-03 h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-article.is-page .block-maintenance-head-01 {
    padding-bottom: 19px;
    padding-bottom: 1.1875rem;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-article.is-page .block-maintenance-head-01::before {
    width: 110px;
    width: 6.875rem;
  }

  .p-article.is-page .block-maintenance-head-02 {
    padding-inline: 20px;
    padding-inline: 1.25rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-article.is-page .block-maintenance-head-03 {
    border-width: 4px;
    border-width: .25rem;
    padding-left: 16px;
    padding-left: 1rem;
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .6px;
  }

  .p-article.is-page .block-maintenance-head-04 {
    padding-bottom: 19px;
    padding-bottom: 1.1875rem;
    font-size: 36px;
    font-size: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
	padding-left: 9.6rem;
  }

  .p-article.is-page .block-maintenance-head-04::after {
    content: "";
    display: inline-block;
    width: 110px;
    width: 8.5rem;
    height: 1px;
    background-color: #172C51;
    margin-top: 0.5rem;
  }

  .block-lead .wp-block-group__inner-container p:first-child {
    font-size: 65px;
    font-size: 4.0625rem;
  }

  .block-lead .wp-block-group__inner-container p:not(:first-child) {
    font-size: 32px;
    font-size: 2rem;
  }

  .block-table {
    max-width: 900px;
    max-width: 56.25rem;
  }

  .block-table table td {
    padding: 20px 12px 17px 10px;
    padding: 1.25rem .75rem 1.0625rem .625rem;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: .48px;
  }

  .block-table table td:first-child {
    width: 21%;
  }

  .block-table table td:not(:first-child) {
    padding-left: 21px;
    padding-left: 1.3125rem;
    width: 79%;
  }

  .wp-block-columns {
    max-width: 780px;
    max-width: 48.75rem;
  }

  .wp-block-column {
    gap: 14px;
    gap: .875rem;
  }

  .p-article.is-page .block-2col-card {
    gap: 11px;
    gap: .6875rem;
    padding: 25px 40px;
    padding: 1.5625rem 2.5rem;
  }

  .p-article.is-page .block-2col-card .wp-block-heading {
    padding-left: 30px;
    padding-left: 1.875rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-article.is-page .block-2col-card .wp-block-heading::before {
    width: 13px;
    width: .8125rem;
    height: 13px;
    height: .8125rem;
  }

  .p-article.is-page .block-2col-card p {
    margin-top: 6px;
    margin-top: .375rem;
  }

  :where(.wp-block-columns.is-layout-flex) {
    gap: 18px;
    gap: 1.125rem;
  }

  .wp-block-columns {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; /* デフォルトを上書き */
  }

  .p-article.is-page .accordion__item {
    margin-inline: auto;
    max-width: 900px;
    max-width: 56.25rem;
  }

  .p-article.is-page .accordion__item + .accordion__item {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .accordion__btn {
    gap: 24px;
    gap: 1.5rem;
    border-radius: .5rem;
    padding: 17px 50px 17px 24px;
    padding: 1.0625rem 3.125rem 1.0625rem 1.5rem;
  }

  .accordion__btn::before {
    width: 36px;
    width: 2.25rem;
    height: 36px;
    height: 2.25rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .accordion__btn::after {
    right: 24px;
    right: 1.5rem;
    width: 13px;
    width: .8125rem;
    height: 13px;
    height: .8125rem;
  }

  .accordion__content {
    gap: 25px;
    gap: 1.5625rem;
    padding: 16px 40px;
    padding: 1rem 2.5rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
  }

  .accordion__content::before {
    width: 36px;
    width: 2.25rem;
    height: 36px;
    height: 2.25rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-about-card {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 540px;
    max-width: 33.75rem;
  }

  .p-about__img--faq img {
    height: 100%;
    -o-object-position: center center;
    object-position: center center;
  }

  .p-about-card__content {
    padding: 0 34px 60px 24px;
    padding: 0 2.125rem 3.75rem 1.5rem;
  }

  .p-about-card__content::after {
    right: 30px;
    right: 1.875rem;
    bottom: 45px;
    bottom: 2.8125rem;
  }

  .p-about-card__title {
    gap: 11px;
    gap: .6875rem;
  }

  .p-about-card__titleEn {
    font-size: 52px;
    font-size: 3.25rem;
    letter-spacing: 1.04px;
  }

  .p-about-card__titleJa {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: .48px;
  }

  .p-about-card__icon {
    width: 52px;
    width: 3.25rem;
    height: 52px;
    height: 3.25rem;
  }

  .p-about {
    padding-block: 118px;
    padding-block: 7.375rem;
  }

  .p-about::before {
    top: 48px;
    top: 3rem;
    right: calc(50% - 21.25rem);
    width: 2016px;
    width: 126rem;
    height: 961px;
    height: 60.0625rem;
  }

  .p-about__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: 100%;
  }

  .p-page-archive__inner.l-container {
    max-width: 1160px;
    max-width: 72.5rem;
  }

  .p-page-archive__content {
    gap: 35px 40px;
    gap: 2.1875rem 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 45px;
    margin-top: 2.8125rem;
    max-width: none;
  }

  .p-article-card__img img {
    aspect-ratio: 340/240;
  }

  .p-article-card__content {
    padding: 20px 0;
    padding: 1.25rem 0;
  }

  .p-article-card__category {
    padding: 2px 12px;
    padding: .125rem .75rem;
    font-size: 13px;
    font-size: .8125rem;
  }

  .p-article-card__title {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-article-card__empty {
    min-height: 150px;
    min-height: 9.375rem;
  }

  .p-article-card__empty-text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-article-related {
    margin-top: 104px;
    margin-top: 6.5rem;
  }

  .p-article-related__cards {
    gap: 40px;
    gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: none;
  }

  .p-article-related__cards .p-article-card__img img {
    aspect-ratio: 340/240;
  }

  .p-article-related__empty {
    min-height: 120px;
    min-height: 7.5rem;
  }

  .p-article-related__empty-text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-article__section {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-article__content {
    padding-top: 85px;
    padding-top: 5.3125rem;
    padding-bottom: 92px;
    padding-bottom: 5.75rem;
    max-width: 1100px;
    max-width: 68.75rem;
  }

  .p-article__content-inner {
    max-width: 880px;
    max-width: 55rem;
  }

  .p-works-article__cat.p-article-card__category {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-article__name {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-article__title {
    margin-top: 13px;
    margin-top: .8125rem;
    font-size: 26px;
    font-size: 1.625rem;
    letter-spacing: .08em;
    line-height: 160%;
  }

  .p-article__title {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-article__eyecatch {
    margin-top: 32px;
    margin-top: 2rem;
  }

  .p-article__body {
    padding-top: 50px;
    padding-top: 3.125rem;
  }

  .p-article__body h2 {
    padding-left: 12px;
    padding-left: .75rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-article__body h3:not(:first-child) {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-article__body p {
    margin-top: 18px;
    margin-top: 1.125rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 180%;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-article__footerBtn {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-breadcrumb__inner {
    gap: 8px;
    gap: .5rem;
  }

  .breadcrumb {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-breadcrumb__inner {
    font-size: 14px;
    font-size: .875rem;
    letter-spacing: .42px;
  }

  .breadcrumb-arrow {
    width: 10px;
    width: .625rem;
  }

  .breadcrumb-arrow::before {
    width: 8px;
    width: .5rem;
    height: 8px;
    height: .5rem;
  }

  .p-breadcrumb__inner span {
    display: inline;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .p-concept__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .p-concept__image {
    z-index: -1;
    margin-top: 0;
    width: calc(50% + 17.875rem);
    height: auto;
    min-height: 520px;
    min-height: 32.5rem;
  }

  .p-concept__image::before {
    display: none;
  }

  .p-concept__body {
    margin-left: -305px;
    margin-left: -19.0625rem;
    padding: 70px 20px 40px 18px;
    padding: 4.375rem 1.25rem 2.5rem 1.125rem;
    width: calc(50% + 9.6875rem);
  }

  .p-concept__text {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-concept__lead {
    margin-top: 28px;
    margin-top: 1.75rem;
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 170%;
  }

  .p-concept__text {
    position: relative;
    margin-top: 16px;
    margin-top: 1rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-concept__text::before {
    display: block;
    position: absolute;
    right: 120px;
    right: 7.5rem;
    bottom: -145px;
    bottom: -9.0625rem;
    background-image: url('../img/concept_deco.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 165px;
    width: 10.3125rem;
    height: 113px;
    height: 7.0625rem;
    content: '';
  }

  .p-concept__button {
    margin-top: 35px;
    margin-top: 2.1875rem;
    text-align: left;
  }

  .p-drawer__bars {
    width: 46px;
    width: 2.875rem;
  }

  .p-drawer__bar {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .is-opened .p-drawer__bar:first-child,
  .is-opened .p-drawer__bar:last-child {
    width: 54px;
    width: 3.375rem;
  }

  .is-opened .p-drawer__bar:first-child {
    -webkit-transform: translateY(.875rem) rotate(30deg);
    transform: translateY(.875rem) rotate(30deg);
  }

  .is-opened .p-drawer__bar:last-child {
    -webkit-transform: translateY(-.875rem) rotate(-30deg);
    transform: translateY(-.875rem) rotate(-30deg);
  }

  .p-drawer__content {
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    width: 46%;
  }

  .p-drawer__inner {
    padding-right: 92px;
    padding-right: 5.75rem;
    padding-left: 92px;
    padding-left: 5.75rem;
    max-width: 100%;
  }

  .p-drawer__navItem.menu-item-has-children {
    padding-top: 21px;
    padding-top: 1.3125rem;
  }

  .p-drawer__navItem.menu-item-has-children > a,
  .p-drawer__navItem.menu-item-has-children > div {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-drawer__navList .menu-item-has-children:nth-of-type(3) {
    margin-top: 4px;
    margin-top: .25rem;
  }

  .p-drawer__navItem:not(.menu-item-has-children) > a {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-drawer__subMenu {
    gap: 3px;
    gap: .1875rem;
    margin-top: 17px;
    margin-top: 1.0625rem;
  }

  .p-drawer__navItem--sub a {
    padding-left: 20px;
    padding-left: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 175%;
  }

  .p-drawer__navItem--sub a::before {
    width: 11px;
    width: .6875rem;
  }

  .p-drawer__navItem--mt {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-drawer__navItem--mt ~ .p-drawer__navItem--mt {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-drawer__contact {
    margin-top: 56px;
    margin-top: 3.5rem;
  }

  .p-footer {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
  }

  .p-footer__inner {
    gap: 40px;
    gap: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .p-footer__infoLink {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-footer__logo {
    width: 230px;
    width: 14.375rem;
  }

  .p-footer__company {
    margin-top: 18px;
    margin-top: 1.125rem;
    width: 221px;
    width: 13.8125rem;
  }

  .p-footer__address {
    margin-top: 36px;
    margin-top: 2.25rem;
    font-size: 15px;
    font-size: .9375rem;
    text-align: left;
  }

  .p-footer__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-footer__nav {
    margin-inline: 0;
    gap: 30px;
    gap: 1.875rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: none;
  }

  .p-footer__navBlock {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }

  .p-footer__navBlock--second,
  .p-footer__navBlock--last {
    gap: 10px;
    gap: .625rem;
  }

  .p-footer__navBlock--last {
    margin-top: 0;
  }

  .p-footer__navGroup {
    gap: 55px;
    gap: 3.4375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }

  .p-footer__navTitle {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
  }

  .p-footer__navTitle--block {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
  }

  .p-footer__navLists {
    gap: 3px;
    gap: .1875rem;
    margin-top: 5px;
    margin-top: .3125rem;
  }

  .p-footer__navListItem {
    padding-right: 20px;
    padding-right: 1.25rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.8;
  }

  .p-footer__button {
    margin-top: 36px;
    margin-top: 2.25rem;
    margin-left: auto;
  }

  .p-footer__copyright {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-fv {
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 126px;
    padding-bottom: 7.875rem;
  }

  .p-fv::before {
    left: calc(50% - 22.5rem);
    width: 1587px;
    width: 99.1875rem;
    height: 769.205px;
    height: 48.0753125rem;
  }

  .p-fv__labels {
    gap: 5px;
    gap: .3125rem;
  }

  .p-fv__label {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .54px;
    line-height: 120%;
  }

  .p-fv__lead {
    margin-top: 12px;
    margin-top: .75rem;
    font-size: 21px;
    font-size: 1.3125rem;
    letter-spacing: .63px;
  }

  .p-fv__catch {
    font-size: 66px;
    font-size: 4.125rem;
    letter-spacing: 1.32px;
    line-height: 128%;
  }

  .p-fv__catch::after {
    content: "";
    display: inline-block;
    width: 8.5rem;
    height: 1px;
    background-color: #172C51;
    position: absolute;
    top: 56%;
    left: calc(100% + 0.5rem);
  }

  .p-fv__catch--ri {
    margin-left: -12px;
    margin-left: -.75rem;
  }

  .p-fv__catch--tsu {
    margin-left: 0;
  }

  .p-fv__catch--ga {
    margin-left: -6px;
    margin-left: -.375rem;
    font-size: 58px;
    font-size: 3.625rem;
  }

  .p-fv__catch--start {
    -webkit-transform: scaleX(.8);
    transform: scaleX(.8);
    margin-left: -34px;
    margin-left: -2.125rem;
    letter-spacing: -5px;
  }

  .p-fv__catch--end {
    margin-left: -9px;
    margin-left: -.5625rem;
  }

  .p-fv__slider-wrapper {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-header {
    padding-top: 22px;
    padding-top: 1.375rem;
    padding-bottom: 22px;
    padding-bottom: 1.375rem;
  }

  .p-header__logo {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-header__logo img,
  .p-header__logo svg {
    width: 150px;
    width: 9.375rem;
  }

  .p-header__nav {
    display: block;
  }

  .p-header__cta {
    margin-left: 32px;
    margin-left: 2rem;
  }

  .p-header__nav ul {
    gap: 7px;
    gap: .4375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__navItem > a,
  .p-header__navItem > div,
  .p-header__navItem--sub a {
    display: block;
    position: relative;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    padding: 10px;
    padding: .625rem;
    color: #1E1E1E;
    font-size: 15px;
    font-size: .9375rem;
    font-weight: 700;
  }

  .p-header__nav .p-header__navItem:not(.menu-item-has-children) > a::after {
    position: absolute;
    bottom: 3px;
    bottom: .1875rem;
    left: 0;
    -webkit-transition: width .3s ease;
    transition: width .3s ease;
    background-color: #172C51;
    width: 0;
    height: 2px;
    height: .125rem;
    content: '';
  }

  .p-header__drawer {
    margin-left: 24px;
    margin-left: 1.5rem;
  }

  .p-lowerFv {
    margin-top: -100px;
    margin-top: -6.25rem;
    padding-top: 158px;
    padding-top: 9.875rem;
    height: 415px;
    height: 25.9375rem;
  }

  .p-lowerFv::before {
    bottom: -78px;
    bottom: -4.875rem;
    left: calc(50% - 10.1875rem);
    width: 1176px;
    width: 73.5rem;
    height: 570px;
    height: 35.625rem;
  }

  .p-lowerFv__breadcrumb {
    margin-top: 86px;
    margin-top: 5.375rem;
  }

  .p-news__cards {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-news__button {
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-page-call {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-page-call__content {
    padding: 42px 20px;
    padding: 2.625rem 1.25rem;
    max-width: 810px;
    max-width: 50.625rem;
  }

  .p-page-call__title {
    padding-bottom: 14px;
    padding-bottom: .875rem;
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-page-call__title::after {
    width: 110px;
    width: 6.875rem;
  }

  .p-page-call__telBox {
    margin-top: 26px;
    margin-top: 1.625rem;
    margin-left: -13px;
    margin-left: -.8125rem;
  }

  .p-page-call__telIcon {
    width: 28px;
    width: 1.75rem;
    height: 28px;
    height: 1.75rem;
  }

  .p-page-call__telText {
    cursor: default;
    pointer-events: none;
    font-size: 38px;
    font-size: 2.375rem;
  }

  .p-page-call__telTime {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-character__title {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-page-character__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 49px;
    margin-top: 3.0625rem;
  }

  .p-page-character__card {
    border: .903px solid rgba(58, 142, 150, .2);
    border-radius: 180px;
    background: linear-gradient(132deg, rgba(206, 235, 249, .6) 4.46%, rgba(165, 207, 218, .6) 95.39%);
    padding-top: 90px;
    padding-top: 5.625rem;
    max-width: 360px;
    max-width: 22.5rem;
  }

  .p-page-character__card-title {
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 1.6px;
  }

  .p-page-character__card-title::after {
    bottom: -15px;
    bottom: -.9375rem;
    width: 50px;
    width: 3.125rem;
  }

  .p-page-character__card-text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-contact {
    padding: 90px 170px;
    padding: 5.625rem 10.625rem;
  }

  .p-page-contact__content {
    padding-block: 80px;
    padding-block: 5rem;
    max-width: 1100px;
    max-width: 68.75rem;
  }

  .p-page-contact__inner.l-container {
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-left: 30px;
    padding-left: 1.875rem;
    max-width: 940px;
    max-width: 58.75rem;
  }

  .p-page-contact__heading {
    padding-bottom: 14px;
    padding-bottom: .875rem;
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-page-contact__heading::after {
    width: 110px;
    width: 6.875rem;
  }

  .p-page-contact__text {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 180%;
  }

  .p-page-contact__fields {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-page-contact__form {
    gap: 34px;
    gap: 2.125rem;
    margin-inline: auto;
    max-width: 860px;
    max-width: 53.75rem;
  }

  .p-page-contact__label {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-contact__required {
    margin-top: 3px;
    margin-top: .1875rem;
    font-size: 10px;
    font-size: .625rem;
  }

  .p-page-contact__input,
  .p-page-contact__select,
  .p-page-contact__textarea {
    margin-top: 9px;
    margin-top: .5625rem;
    padding: 10px 20px;
    padding: .625rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-contact__select {
    background-position: right 20px center;
    background-position: right 1.25rem center;
    background-size: 1.375rem;
  }

  .p-page-contact__textarea,
  .p-page-contact textarea,
  .wpcf7 textarea {
    height: 240px;
    height: 15rem;
  }

  .p-page-contact__privacy {
    margin-top: 52px;
    margin-top: 3.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-contact__submit {
    margin-top: 49px;
    margin-top: 3.0625rem;
  }

  .p-page-department__inner {
    max-width: 1160px;
    max-width: 72.5rem;
  }

  .p-page-department__items {
    gap: 50px;
    gap: 3.125rem;
    margin-top: 57px;
    margin-top: 3.5625rem;
  }

  .p-page-department__item {
    gap: 46px;
    gap: 2.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-page-department__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-page-department__content {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .p-page-department__title {
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    padding-left: 20px;
    padding-left: 1.25rem;
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .9px;
    line-height: 150%;
  }

  .p-page-department__title::before {
    width: 4px;
    width: .25rem;
    height: 41px;
    height: 2.5625rem;
  }

  .p-page-department__title.p-page-department__title--design {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: .9px;
  }

  .p-page-department__title--design::before {
    height: 41px;
    height: 2.5625rem;
  }

  .p-page-department__list {
    gap: 4px;
    gap: .25rem;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .p-page-department__list-item {
    padding-left: 18px;
    padding-left: 1.125rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 175%;
  }

  .p-page-department__list-item::before {
    width: 7px;
    width: .4375rem;
    height: 7px;
    height: .4375rem;
  }

  .p-page-department__image {
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -ms-flex-order: unset;
    order: unset;
    margin-top: 0;
    max-width: 520px;
    max-width: 32.5rem;
  }

  .p-page-department__image img {
    aspect-ratio: 520/340;
  }

  .p-page-department__item:nth-child(1) .p-page-department__image::before {
    aspect-ratio: 19/56;
    right: 28px;
    right: 1.75rem;
    bottom: -22px;
    bottom: -1.375rem;
    width: 95px;
    width: 5.9375rem;
    height: 280px;
    height: 17.5rem;
  }

  .p-page-department__item:nth-child(2) .p-page-department__image::before {
    aspect-ratio: 22/47;
    bottom: -12px;
    bottom: -.75rem;
    left: -80px;
    left: -5rem;
    width: 132px;
    width: 8.25rem;
    height: 282px;
    height: 17.625rem;
  }

  .p-page-department__item:nth-child(3) .p-page-department__image::before {
    aspect-ratio: 41/70;
    right: -18px;
    right: -1.125rem;
    bottom: -21px;
    bottom: -1.3125rem;
    width: 164px;
    width: 10.25rem;
    height: 280px;
    height: 17.5rem;
  }

  .p-page-department__item:nth-child(4) .p-page-department__image::before {
    aspect-ratio: 82/283;
    bottom: -17px;
    bottom: -1.0625rem;
    left: -75px;
    left: -4.6875rem;
    width: 82px;
    width: 5.125rem;
    height: 283px;
    height: 17.6875rem;
  }

  .p-page-interview__inner {
    max-width: 1140px;
    max-width: 71.25rem;
  }

  .p-page-interview__items {
    gap: 90px;
    gap: 5.625rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-page-interview__item {
    gap: 50px;
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-page-interview__image.p-page-interview__image--second {
    margin-top: -80px;
    margin-top: -5rem;
  }

  .p-page-interview__image {
    margin-top: -8px;
    margin-top: -.5rem;
    margin-left: 71px;
    margin-left: 4.4375rem;
    max-width: 370px;
    max-width: 23.125rem;
  }

  .p-page-interview__tag {
    padding: 3px 8px;
    padding: .1875rem .5rem;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: .54px;
  }

  .p-page-interview__title {
    margin-top: 7px;
    margin-top: .4375rem;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-page-interview__text {
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-page-interview__text p {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-privacy__content {
    padding-top: 67px;
    padding-top: 4.1875rem;
    padding-bottom: 64px;
    padding-bottom: 4rem;
  }

  .p-page-privacy__wrap {
    max-width: 860px;
    max-width: 53.75rem;
  }

  .p-page-privacy__title {
    padding-bottom: 14px;
    padding-bottom: .875rem;
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-page-privacy__title::after {
    width: 110px;
    width: 6.875rem;
  }

  .p-page-privacy__lead,
  .p-page-privacy__list {
    line-height: 168%;
  }

  .p-page-privacy__lead {
    margin-top: 38px;
    margin-top: 2.375rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-page-privacy__list.p-page-privacy__list--number {
    margin-top: 23px;
    margin-top: 1.4375rem;
  }

  .p-page-privacy__list.p-page-privacy__list--dot {
    gap: 3px;
    gap: .1875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 4px;
    margin-top: .25rem;
  }

  .p-page-privacy__listItem {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-page-recruit-fv {
    margin-top: 110px;
    margin-top: 6.875rem;
  }

  .p-page-recruit-fv__image img {
    aspect-ratio: 1440/444;
  }

  .p-page-requirement {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-page-requirement__title {
    font-size: 34px;
    font-size: 2.125rem;
  }

  .p-page-requirement__title::before {
    width: 110px;
    width: 6.875rem;
  }

  .p-page-requirement__wrapper {
    padding: 60px 48px;
    padding: 3.75rem 3rem;
    max-width: 1100px;
    max-width: 68.75rem;
  }

  .p-page-requirement__empty {
    min-height: 150px;
    min-height: 9.375rem;
  }

  .p-page-requirement__empty-text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-page-tag {
    padding: 2px 12px;
    padding: .125rem .75rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-page-tags__inner.l-container {
    max-width: 1160px;
    max-width: 72.5rem;
  }

  .p-recruit__wrap {
    padding-block: 103px;
    padding-block: 6.4375rem;
    padding-inline: clamp(24px, 6vw, 163px);
    max-width: 1380px;
    max-width: 86.25rem;
  }

  .p-recruit__content {
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1050px;
    max-width: 65.625rem;
  }

  .p-recruit__inner.l-container {
    margin-inline: auto;
    padding: 0 20px;
    padding: 0 1.25rem;
    width: 100%;
    max-width: 1480px;
    max-width: 92.5rem;
  }

  .p-recruit__head {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 48.3%;
  }

  .p-recruit__body {
    margin-top: -3px;
    margin-top: -.1875rem;
    width: 51.7%;
  }

  .p-recruit__lead {
    font-size: 36px;
    font-size: 2.25rem;
    letter-spacing: 1.08px;
    line-height: 150%;
  }

  .p-recruit__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .p-recruit__text::after {
    position: absolute;
    right: -70px;
    right: -4.375rem;
    bottom: -112px;
    bottom: -7rem;
    background-image: url(../img/recruit_deco.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 187px;
    width: 11.6875rem;
    height: 125px;
    height: 7.8125rem;
    content: '';
  }

  .p-recruit__button {
    margin-top: 55px;
    margin-top: 3.4375rem;
    text-align: left;
  }

  .p-service-card {
    aspect-ratio: 1/1;
    max-width: 295px;
    max-width: 18.4375rem;
  }

  .p-service-card__label {
    top: 115px;
    top: 7.1875rem;
    letter-spacing: 1.28px;
  }

  .p-service-card__body {
    min-height: 148px;
    min-height: 9.25rem;
  }

  .p-service-card__link {
    margin-top: auto;
  }

  .p-service__head {
    gap: 98px;
    gap: 6.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-service__body {
    margin-top: 0;
  }

  .p-service__body-lead {
    font-size: 25px;
    font-size: 1.5625rem;
  }

  .p-service__body-text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-service__cards {
    gap: 8px;
    gap: .5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: 100%;
  }

  .p-works-voice {
    margin-top: 65px;
    margin-top: 4.0625rem;
    padding: 32px 55px 40px 55px;
    padding: 2rem 3.4375rem 2.5rem 3.4375rem;
  }

  .p-works-voice__title {
    padding-bottom: 13px;
    padding-bottom: .8125rem;
    font-size: 26px;
    font-size: 1.625rem;
  }

  .p-works-voice__title::after {
    width: 47px;
    width: 2.9375rem;
  }

  .p-works-voice__text {
    margin-top: 22px;
    margin-top: 1.375rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 180%;
  }

  .p-works__cards {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-works__button {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .u-br--sp {
    display: none;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }
}

@media (min-width: 1200px) {

  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {

  .c-btn:hover::after {
    -webkit-transform: translateY(-50%) translateX(.125rem);
    transform: translateY(-50%) translateX(.125rem);
  }

  .c-btn:hover::before {
    opacity: 1;
  }

  .c-btn.c-btn--recruit:hover {
    background-color: #fff;
    color: #172C51;
  }

  .c-btn.c-btn--recruit:hover::before {
    opacity: 0;
  }

  .c-btn.c-btn--recruit:hover::after {
    -webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(47%) saturate(1091%) hue-rotate(203deg) brightness(96%) contrast(95%);
    filter: brightness(0) saturate(100%) invert(11%) sepia(47%) saturate(1091%) hue-rotate(203deg) brightness(96%) contrast(95%);
  }

  .p-about-card:hover .p-about__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .p-about-card:hover .p-about-card__icon {
    border-color: #fff;
    background-color: #fff;
  }

  .p-about-card:hover .p-about-card__icon::before {
    border-top-color: #000;
    border-right-color: #000;
  }

  .p-article-card__link:hover .p-article-card__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .p-breadcrumb__inner a:hover {
    opacity: .7;
  }

  .p-drawer__navItem a:hover {
    color: #007cba;
  }

  .p-footer__infoLink:hover {
    opacity: .7;
  }

  .p-footer__navTitle {
    -webkit-transition: color .4s ease;
    transition: color .4s ease;
  }

  .p-footer__navTitle:hover {
    color: #007cba;
  }

  .p-footer__navListItem {
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
  }

  .p-footer__navListItem:hover {
    color: #007cba;
  }

  .p-fv__slide-link--has-link:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .p-fv__slide-link--has-link:hover::before {
    opacity: 1;
  }

  .p-fv__slide-link--has-link:hover::after {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .p-header__logo a:hover {
    opacity: .7;
  }

  .p-header__nav .menu-item-has-children:hover .p-header__subMenu {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .p-header__nav .menu-item-has-children:hover > a::after,
  .p-header__nav .menu-item-has-children:hover > div::after {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .p-header__nav .menu-item-has-children .p-header__subMenu li a:hover {
    color: #007cba;
  }

  .p-header__nav .menu-item-has-children .p-header__subMenu li a:hover::before {
    background-color: #007cba;
  }

  .p-page-contact__link:hover {
    opacity: .8;
  }

  .p-page-tag:hover {
    background-color: #172C51;
    color: #fff;
  }

  .p-service-card:hover .p-service-card__image::after {
    background: rgba(8, 57, 77, .7);
  }

  .p-service-card:hover .p-service-card__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .p-service-card:hover .p-service-card__body {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .5)));
    background: linear-gradient(transparent, rgba(0, 0, 0, .5));
  }

  .p-service-card:hover .p-service-card__link-icon::before {
    border-top-color: #000;
    border-right-color: #000;
  }

  .p-service-card:hover .p-service-card__link-icon {
    background-color: #fff;
  }

  .p-service-card:hover .p-service-card__link-icon img {
    -webkit-filter: brightness(0) saturate(100%) invert(20%) sepia(50%) saturate(500%) hue-rotate(160deg) brightness(95%);
    filter: brightness(0) saturate(100%) invert(20%) sepia(50%) saturate(500%) hue-rotate(160deg) brightness(95%);
  }
}


/*==================================
# ページ内リンク
===================================*/
.black_page_link .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
}
.p-article__body .black_page_link p {
  margin-top: 0;
  display: inline-block;
  width: calc(50% - 0.5rem);
}
.p-article__body .black_page_link a {
  display: inline-block;
  color: #1E1E1E;
  font-size: 0.87rem;
  text-decoration: none;
  margin-top: 0;
  padding: 0.5rem 2rem 0.5rem 0.2rem;
  width: 100%;
  border-bottom: 1px solid #4097A0;
  position: relative;
  transition: .3s;
}

.p-article__body .black_page_link a::after {
  translate: -50% -50%;
  display: block;
  position: absolute;
  top: 48%;
  right: 0.39rem;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border-top: 1px solid #172C51;
  border-right: 1px solid #172C51;
  width: .3rem;
  height: .3rem;
  content: '';
}

.p-article__body .black_page_link a::before {
  transform: translateY(-50%);
  display: block;
  position: absolute;
  border: 1px solid #172C51;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  transition: .3s;
  content: '';
}

@media screen and (min-width: 768px) {
  .black_page_link .wp-block-group__inner-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 1rem;
  }
  .p-article__body .black_page_link p {
    width: 13rem;
  }
  .p-article__body .black_page_link a {
    font-size: 1rem;
    margin-top: 0;
    padding:  0.9rem 0.5rem ;
    width: 100%;
    border-bottom: 1px solid #4097A0;
    position: relative;
  }

  .p-article__body .black_page_link a::after {
    translate: -50% -50%;
    display: block;
    position: absolute;
    top: 48%;
    right: 0.53rem;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-top: 1px solid #172C51;
    border-right: 1px solid #172C51;
    width: .4rem;
    height: .4rem;
    content: '';
  }

  .p-article__body .black_page_link a::before {
    transform: translateY(-50%);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    border: 1px solid #172C51;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    content: '';
  }
}

@media (any-hover: hover) {
  .p-article__body .black_page_link a:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .p-article__body .black_page_link a:hover::before {
    background-color: #4097A0;
    border: 1px solid #4097A0;

  }
}

/*==================================
# SNSアイコン
===================================*/
.p-header__sns {
  display: none;
}

.p-drawer__sns {
  margin-top: 0.8rem;
}

.p-drawer__sns a {
  display: inline-block;
  width: 1.3rem;
}

.p-drawer__sns img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-header__sns {
    display: block;
    margin-left: 1.5rem;
  }

  .p-header__sns a {
    display: inline-block;
    width: 1.3rem;
  }

  .p-header__sns img {
    width: 100%;
    height: auto;
  }

  .p-drawer__sns {
    margin-top: 1.5rem;
  }
}

[id]:before {
  content: "";
  display: block;
  height: 100px; /* ← ヘッダーの高さに合わせて */
  margin-top: -100px;
}

/*# sourceMappingURL=map/style.css.map */