@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: #000;
  font-family: 'Noto Sans JP', 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;
}

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: #000;
}

/************************************************************************
* 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.--sub {
  background: #FCFCFC;
}

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

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

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

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

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #fff;
  width: 16px;
  width: 1rem;
  height: 2px;
  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 #979797;
  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: #979797;
}

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

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

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 25px;
  padding: 0 0 0 1.5625rem;
  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 #979797;
  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: 25px;
  padding-left: 1.5625rem;
  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 #979797;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.4em) rotate(45deg);
  transform: translateY(-70%) translateX(.4em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: 2px solid #053581;
  border-bottom: 2px solid #053581;
  width: 8px;
  width: .5rem;
  height: 13.333px;
  height: .8333333333rem;
  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 #979797;
  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: #979797;
}

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: 63px;
}

.wpcf7-spinner {
  display: none;
}

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

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

.l-header {
  position: fixed;
  top: 20px;
  top: 1.25rem;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
}

.l-header.is-fixed .l-container {
  padding: 0;
}

.l-main {
  padding-bottom: 160px;
  padding-bottom: 10rem;
}

.l-main.--single {
  background: #FCFCFC;
}

.l-main.--2col {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

a.c-button01 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  gap: 10px;
  gap: .625rem;
  display: inline-grid;
  grid-template-columns: 1.25rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin: 0;
  border-radius: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#053581), to(#0D8AD8));
  background: linear-gradient(to right, #053581 0%, #0D8AD8 100%);
  background-position: 0% 50%;
  background-size: 200% auto;
  padding: 15px 25px;
  padding: .9375rem 1.5625rem;
  max-width: 100%;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

a.c-button01::before {
  display: block;
  background: url(../img/common/icon_mail.svg) no-repeat center/contain;
  width: 20px;
  width: 1.25rem;
  height: 15px;
  height: .9375rem;
  content: '';
}

a.c-button02 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-grid;
  position: relative;
  grid-template-columns: 1fr 2.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin: 0;
  border: solid 1px #053581;
  border-radius: 50vmax;
  padding: 15px 20px;
  padding: .9375rem 1.25rem;
  min-width: 255px;
  min-width: 15.9375rem;
  max-width: 100%;
  overflow: hidden;
  color: #053581;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
}

a.c-button02::before {
  inset: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  border-radius: 50vmax;
  background: -webkit-gradient(linear, left top, right top, from(#053581), to(#094CB5));
  background: linear-gradient(to right, #053581, #094CB5);
  content: '';
}

a.c-button02::after {
  -webkit-mask: url(../img/common/icon_button_arrow.svg) no-repeat center/contain;
  aspect-ratio: 1/1;
  display: block;
  mask: url(../img/common/icon_button_arrow.svg) no-repeat center/contain;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: #053581;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  content: '';
}

a.c-button02:hover, a.c-button02:focus-visible {
  color: #fff;
}

a.c-button02:hover::before, a.c-button02:focus-visible::before {
  opacity: 1;
}

a.c-button02:hover::after, a.c-button02:focus-visible::after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  background: #fff;
}

.c-card {
  border-bottom: solid 1px #ECECEC;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.c-card__image {
  aspect-ratio: 335/175;
}

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

.c-card__meta {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.c-card__meta .c-meta__date {
  color: #777;
}

.c-card__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  margin-right: 13px;
  margin-right: .8125rem;
  overflow: hidden;
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.c-card__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  margin-right: 13px;
  margin-right: .8125rem;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.c-cards__item + .c-cards__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.c-category-list {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-category-list__link {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  background: -webkit-gradient(linear, left top, right top, from(#355B98), to(#396DC0));
  background: linear-gradient(to right, #355B98, #396DC0);
  padding: 1px;
}

.c-category-list__link span {
  display: inline-block;
  background: #fff;
  padding: 11px 19px;
  padding: .6875rem 1.1875rem;
  color: #053581;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 500;
  line-height: 1.5;
}

.c-category-list__link.current {
  cursor: default;
  pointer-events: none;
}

.c-category-list__link.current span {
  background: none;
  color: #fff;
}

.c-meta {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .9375rem;
  -moz-column-gap: .9375rem;
  column-gap: .9375rem;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 500;
  line-height: 1.5;
}

.c-meta__date {
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 500;
  line-height: 1.5;
}

.c-meta__category {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#355B98), to(#396DC0));
  background: linear-gradient(to right, #355B98, #396DC0);
  padding: 5px 15px;
  padding: .3125rem .9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.5;
}

.c-section-title {
  position: relative;
  color: #053581;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.c-section-title::before {
  margin-inline: -11px;
  margin-inline: -.6875rem;
  display: block;
  margin-bottom: -33px;
  margin-bottom: -2.0625rem;
  color: #E7F3FB;
  font-family: 'Sora', sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  content: attr(data-en);
}

.c-section-title::after {
  -webkit-mask: url(../img/common/icon_title_deco.svg) no-repeat center/contain;
  aspect-ratio: 14/22;
  display: block;
  position: absolute;
  top: 30px;
  top: 1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  mask: url(../img/common/icon_title_deco.svg) no-repeat center/contain;
  background: -webkit-gradient(linear, left top, left bottom, from(#355B98), to(#396DC0));
  background: linear-gradient(to bottom, #355B98 0%, #396DC0 100%);
  width: 15px;
  width: .9375rem;
  content: '';
}

.c-section-title.--sp::before {
  content: attr(data-en-sp);
}

.c-section-title span {
  display: inline-block;
}

.c-section-title.--white {
  color: #fff;
}

.c-section-title.--white::before {
  color: #446CAE;
}

.c-section-title.--white::after {
  background: #fff;
}

.c-tag {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#355B98), to(#396DC0));
  background: linear-gradient(to right, #355B98, #396DC0);
  padding: 8px 20px;
  padding: .5rem 1.25rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.p-about-message {
  padding-top: 80px;
  padding-top: 5rem;
}

.p-about-message__box {
  margin-top: 40px;
  margin-top: 2.5rem;
  background: #FCFCFC;
  padding: 40px 15px;
  padding: 2.5rem .9375rem;
}

.p-about-message__top {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.8;
}

.p-about-message__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.p-about-message__text + .p-about-message__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-about-message__bottom {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about-message__bottom-head {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.8;
}

.p-about-message__name {
  margin-top: 5px;
  margin-top: .3125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.p-about-message__name span {
  display: block;
}

.p-about-mvv {
  position: relative;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  color: #fff;
}

.p-about-mvv::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../img/about/about_mvv_deco01_pc.png) no-repeat top right -573px/320% auto, url(../img/about/about_mvv_deco02_pc.png) no-repeat bottom right -533px/320% auto;
  background: url(../img/about/about_mvv_deco01_pc.png) no-repeat top right -35.8125rem/320% auto, url(../img/about/about_mvv_deco02_pc.png) no-repeat bottom right -33.3125rem/320% auto;
  width: 100%;
  height: 100%;
  content: '';
}

.p-about-mvv::after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .92;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(#355B98), to(#396DC0));
  background: linear-gradient(to bottom, #355B98, #396DC0);
  width: 100%;
  height: 100%;
  content: '';
}

.p-about-mvv .l-container {
  position: relative;
  z-index: 3;
}

.p-about-mvv__item {
  border-bottom: solid 1px #C3CFE2;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.p-about-mvv__item.--vision {
  position: relative;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-about-mvv__item.--vision::before {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: calc(100% + .9375rem);
  height: 1px;
  content: '';
}

.p-about-mvv__item + .p-about-mvv__item {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-about-mvv__item:last-child {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-about-mvv__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-about-mvv__title::before {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  content: attr(data-en);
}

.p-about-mvv__item-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-about-mvv__values {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-about-mvv__value {
  padding-block: 20px;
  padding-block: 1.25rem;
  counter-increment: value-counter;
  border-bottom: dashed 1px #C3CFE2;
}

.p-about-mvv__value:first-child {
  padding-top: 0;
}

.p-about-mvv__top {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  font-family: 'Sora', sans-serif;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 600;
  line-height: 1.5;
}

.p-about-mvv__top::before {
  background: #fff;
  width: 40px;
  width: 2.5rem;
  height: 1px;
  content: '';
}

.p-about-mvv__wrapper {
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-about-mvv__wrapper::before {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  content: counter(value-counter, decimal-leading-zero);
}

.p-about-mvv__catch {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-about-mvv__text {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-about {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

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

.p-about__item {
  -webkit-box-shadow: 0 -1px 0 0 #ECECEC;
  box-shadow: 0 -1px 0 0 #ECECEC;
  padding: 15px;
  padding: .9375rem;
}

.p-about__item:last-child {
  -webkit-box-shadow: 0 -1px 0 0 #ECECEC, 0 1px 0 0 #ECECEC;
  box-shadow: 0 -1px 0 0 #ECECEC, 0 1px 0 0 #ECECEC;
}

.p-about__info dt, .p-about__info dd {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-about__info dt {
  color: #053581;
  font-weight: bold;
}

.p-about__info dd {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 500;
}

.p-about__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-about__text + .p-about__text {
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-article {
  padding-top: 62px;
  padding-top: 3.875rem;
}

.p-article__inner {
  border-radius: .625rem;
  background: #fff;
  padding: 40px 15px;
  padding: 2.5rem .9375rem;
}

.p-article__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

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

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  font-weight: 700;
  line-height: 1.8;
}

.p-article__body h1 {
  font-size: 28px;
  font-size: 1.75rem;
}

.p-article__body h2 {
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-box-shadow: 0 2px 0 0 #053581;
  box-shadow: 0 2px 0 0 #053581;
  background: #F6F9FF;
  padding: 10px;
  padding: .625rem;
  font-size: 22px;
  font-size: 1.375rem;
}

.p-article__body h3 {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-left: 4px solid #053581;
  padding-left: 12px;
  padding-left: .75rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body h4 {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .wp-block-list {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 1.8;
  list-style: none;
}

.p-article__body ul.wp-block-list li {
  position: relative;
  margin-top: 10px;
  margin-top: .625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.p-article__body ul.wp-block-list li::before {
  -webkit-mask: url(../img/common/icon_triangle.svg) no-repeat center/contain;
  aspect-ratio: 20/27;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  mask: url(../img/common/icon_triangle.svg) no-repeat center/contain;
  background: #053581;
  width: 20px;
  width: 1.25rem;
  content: '';
}

.p-article__body ol.wp-block-list li {
  position: relative;
  counter-increment: list-item;
  margin-top: 10px;
  margin-top: .625rem;
  padding-left: 22px;
  padding-left: 1.375rem;
}

.p-article__body ol.wp-block-list li::before {
  -webkit-mask: none;
  position: absolute;
  top: 0;
  left: 0;
  mask: none;
  background: none;
  width: auto;
  color: #053581;
  font-family: 'Red Hat Display', sans-serif;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  font-weight: bold;
  content: counter(list-item, decimal-leading-zero);
}

.p-article__body .wp-block-list li .wp-block-list {
  margin-top: 5px !important;
  margin-top: .3125rem !important;
}

.p-article__body .wp-block-list li ul li {
  position: relative;
  margin-top: 6px;
  margin-top: .375rem;
  padding-left: 22px;
  padding-left: 1.375rem;
}

.p-article__body .wp-block-list li ul li::before {
  aspect-ratio: 1/1;
  -webkit-mask: none;
  display: inline-block;
  position: absolute;
  top: 11px;
  top: .6875rem;
  left: 8px;
  left: .5rem;
  mask: none;
  border-radius: 50%;
  background: #000;
  width: 6px;
  width: .375rem;
  content: '';
}

.p-article__body .wp-block-list li ol li {
  position: relative;
  counter-increment: list-item;
  margin-top: 6px;
  margin-top: .375rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}

.p-article__body .wp-block-list li ol li::before {
  -webkit-mask: none;
  position: absolute;
  top: 0;
  left: 0;
  mask: none;
  background: none;
  width: auto;
  color: #000;
  font-family: 'Red Hat Display', sans-serif;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  font-weight: bold;
  content: counter(list-item, decimal-leading-zero) '.';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #000;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.p-article__body * + * {
  margin-top: 16px;
  margin-top: 1rem;
}

.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 p {
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  font-weight: 400;
  line-height: 1.8;
}

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

.p-article__body a:not([class]) {
  -webkit-transition: -webkit-text-decoration .2s;
  transition: -webkit-text-decoration .2s;
  transition: text-decoration .2s;
  transition: text-decoration .2s, -webkit-text-decoration .2s;
  color: #053581;
  text-decoration: underline;
}

.p-article__body a:not([class]):hover {
  text-decoration: none;
}

.p-article__body .wp-block-image {
  margin-bottom: 0;
}

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

.p-article__body blockquote,
.p-article__body q {
  margin-block: 30px;
  margin-block: 1.875rem;
  position: relative;
  border-left: none;
  background-color: #F6F9FF;
  padding: 20px 15px;
  padding: 1.25rem .9375rem;
}

.p-article__body blockquote p,
.p-article__body q p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.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__body #rtoc-mokuji-title span {
  display: inline-block;
  background: #F3F6FB;
  padding: 5px 15px;
  padding: .3125rem .9375rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}

.p-article__body .rtoc-mokuji-content {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding: 10px;
  padding: .625rem;
}

.p-article__body .rtoc-mokuji-content + * {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-article__body .rtoc-item a {
  display: grid;
  grid-template-columns: 1.6875rem 1fr;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.7;
  text-decoration: none;
}

.p-article__body .rtoc-item a::before {
  aspect-ratio: 1/1;
  display: inline-block;
  position: relative;
  top: .66em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  background: #053581;
  width: 7px;
  width: .4375rem;
  content: '';
}

.p-article__body .rtoc-item .rtoc-mokuji {
  margin-left: 1em;
}

.p-article__body .rtoc-item + .rtoc-item {
  margin-top: 10px;
  margin-top: .625rem;
}

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

.p-article__meta .c-meta__category {
  margin-bottom: .5em;
}

.p-article__meta .c-meta__date {
  line-height: 30px;
  line-height: 1.875rem;
}

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

.p-article__back {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-blog__top {
  border-bottom: solid 2px #ECECEC;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

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

.p-blog__item {
  border-bottom: solid 1px #ECECEC;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}

.p-blog__link {
  display: block;
}

.p-blog__image {
  aspect-ratio: 335/175;
}

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

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

.p-blog__meta .c-meta__date {
  color: #777;
  font-size: 16px;
  font-size: 1rem;
}

.p-blog__itemTitle {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-blog__excerpt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

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

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

.p-breadcrumb {
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-breadcrumb__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .3125rem;
  -moz-column-gap: .3125rem;
  column-gap: .3125rem;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 500;
  line-height: 1.5;
}

.p-breadcrumb__inner span:has(> a) {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-breadcrumb__inner span a {
  color: #053581;
}

.p-breadcrumb__inner span span.current-item {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}

.p-contact__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-contact__form {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: 1.25rem;
  background: #FCFCFC;
  padding: 40px 15px;
  padding: 2.5rem .9375rem;
}

.p-contact__top {
  margin-top: 120px;
  margin-top: 7.5rem;
  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: 15px;
  padding: .9375rem;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

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

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 7px;
  border-radius: 50vmax;
  background: #053581;
  width: 100%;
  height: 1px;
}

.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 {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
  width: 100%;
  height: 2px;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
  width: 100%;
  height: 2px;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.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: rgba(255, 255, 255, .92);
  padding-top: calc(var(--header-height, 63px) + 2.8125rem);
  padding-bottom: var(--header-height, 63px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #053581;
}

.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 {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__nav {
  margin-inline: auto;
  width: 88.0597014925%;
}

.p-drawer__navItem:not(:last-child) {
  border-bottom: solid 1px #A9BAD4;
}

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

.p-drawer__navLink {
  padding-block: 15px;
  padding-block: .9375rem;
  display: block;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: bold;
  letter-spacing: .12em;
  line-height: 1.5;
}

.p-drawer__navLink.c-button01 {
  padding-inline: 45px;
  padding-inline: 2.8125rem;
  letter-spacing: 0;
}

.p-footer {
  background-color: #053581;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.p-footer__sub {
  font-size: 14px;
  font-size: .875rem;
  font-weight: bold;
  line-height: 1;
}

.p-footer__company {
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.p-footer__address {
  margin-inline: -5px;
  margin-inline: -.3125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-footer__address dt, .p-footer__address dd {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.p-footer__nav-item a {
  padding: 10px;
  padding: .625rem;
  color: #fff;
}

.p-footer__nav-item a span {
  font-weight: 500;
}

.p-footer__copy {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: .875rem;
}

.p-form__item + .p-form__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-form__label {
  display: grid;
  grid-template-columns: -webkit-max-content 3.625rem;
  grid-template-columns: max-content 3.625rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-form__label.is-required::after {
  border-radius: 2px;
  background: #E23435;
  color: #fff;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: bold;
  line-height: 24px;
  line-height: 1.5rem;
  text-align: center;
  content: '必須';
}

.p-form__itemBody {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-form__input {
  border: none;
  border-radius: .25rem;
  background: #F8F8F8;
  padding: 10px 25px;
  padding: .625rem 1.5625rem;
}

.p-form__input::-webkit-input-placeholder {
  color: #C8C8C8;
  font-weight: 500;
}

.p-form__input::-moz-placeholder {
  color: #C8C8C8;
  font-weight: 500;
}

.p-form__input::-ms-input-placeholder {
  color: #C8C8C8;
  font-weight: 500;
}

.p-form__input::placeholder {
  color: #C8C8C8;
  font-weight: 500;
}

.p-form__textarea {
  height: 200px;
  height: 12.5rem;
}

.p-form__privacy {
  margin-inline: -15px;
  margin-inline: -.9375rem;
  margin-top: 44px;
  margin-top: 2.75rem;
  text-align: center;
}

.p-form__accept {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.5;
}

.p-form__accept a {
  margin-right: 3px;
  margin-right: .1875rem;
  color: #053581;
  text-decoration: underline;
}

.p-form__accept .wpcf7-list-item {
  margin-left: 0;
}

.p-form__accept::after {
  color: #E23435;
  content: '*';
}

.p-form__submit {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-form__button {
  margin-inline: auto;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  border: none;
  border-radius: 50vmax;
  background: url(../img/common/icon_submit_arrow.svg) no-repeat center right 2.5rem/.9375rem, -webkit-gradient(linear, left top, right top, from(#053581), to(#0D8AD8)) top left/200% auto;
  background: url(../img/common/icon_submit_arrow.svg) no-repeat center right 2.5rem/.9375rem, linear-gradient(to right, #053581, #0D8AD8) top left/200% auto;
  padding: 20px;
  padding: 1.25rem;
  min-width: 295px;
  min-width: 18.4375rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-fv {
  padding-top: 248px;
  padding-top: 15.5rem;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}

.p-fv.--service {
  background: url(../img/service/service_fv_sp.jpg) no-repeat center/cover;
}

.p-fv.--blog {
  background: url(../img/blog/blog_fv_sp.jpg) no-repeat center/cover;
}

.p-fv.--news {
  background: url(../img/news/news_fv_sp.jpg) no-repeat center/cover;
}

.p-fv.--works {
  background: url(../img/works/works_fv_sp.jpg) no-repeat center/cover;
}

.p-fv.--reason {
  background: url(../img/reason/reason_fv_sp.jpg) no-repeat center/cover;
}

.p-fv.--contact {
  background: url(../img/contact/contact_fv_sp.jpg) no-repeat center/cover;
}

.p-fv.--about {
  background: url(../img/about/about_fv_sp.jpg) no-repeat center/cover;
}

.l-container.p-fv__inner {
  min-height: 186px;
  min-height: 11.625rem;
  color: #fff;
}

.p-fv__en {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.p-fv__en.--lg {
  margin-right: -16px;
  margin-right: -1rem;
  font-size: 50px;
  font-size: 3.125rem;
}

.p-fv__en span {
  display: none;
}

.p-fv__title {
  margin-top: 4px;
  margin-top: .25rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-fv__title::before {
  display: inline-block;
  -webkit-transform: rotate(22deg) translateX(5px);
  transform: rotate(22deg) translateX(5px);
  margin-right: 18px;
  margin-right: 1.125rem;
  background: #fff;
  width: 3px;
  width: .1875rem;
  height: 22px;
  height: 1.375rem;
  content: '';
}

.p-header {
  height: 63px;
}

.p-header .l-container {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  padding-right: 20px;
  padding-left: 20px;
  max-width: none;
}

.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;
  background: rgba(255, 255, 255, .9);
  padding: 8px 0 8px 15px;
  padding: .5rem 0 .5rem .9375rem;
}

.p-header__logo {
  aspect-ratio: 130/33;
  z-index: 41;
  width: 130px;
  width: 8.125rem;
}

.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: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-news__wrap {
  margin: 0 auto;
  max-width: 1140px;
}

.p-news__top {
  border-bottom: solid 2px #ECECEC;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

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

.p-news__list, .p-news__none {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-news__item {
  border-bottom: solid 1px #ECECEC;
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.p-news__link {
  display: block;
}

.p-news__meta .c-meta__date {
  color: #777;
  font-size: 16px;
  font-size: 1rem;
}

.p-news__meta .c-meta__category {
  padding-inline: 25px;
  padding-inline: 1.5625rem;
}

.p-news__itemTitle {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-top: 12px;
  margin-top: .75rem;
  overflow: hidden;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

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

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

.page-numbers {
  display: inline-block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  padding: 10px;
  padding: .625rem;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers.current {
  aspect-ratio: 1/1;
  display: inline-grid;
  place-items: center;
  cursor: default;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#355B98), to(#396DC0));
  background: linear-gradient(to right, #355B98, #396DC0);
  padding: 0;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  pointer-events: none;
  color: #fff;
}

.page-numbers:hover {
  opacity: .7;
}

.page-numbers.dots {
  padding: 0;
}

.page-numbers.prev, .page-numbers.next {
  color: #053581;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
}

.page-numbers.prev {
  padding-left: 0;
}

.page-numbers.next {
  padding-right: 0;
}

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

.p-pravacy__item + .p-pravacy__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-pravacy__label {
  border-bottom: 2px solid #053581;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  color: #053581;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-pravacy__text {
  margin-top: 1em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-reason-list__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;
  -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-box-shadow: 0 0 2.1875rem rgba(50, 58, 71, .13);
  box-shadow: 0 0 2.1875rem rgba(50, 58, 71, .13);
  background: #fff;
  padding: 30px 3px;
  padding: 1.875rem .1875rem;
}

.p-reason-list__item + .p-reason-list__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-reason-list__label {
  display: inline-block;
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#355B98), to(#396DC0));
  background: linear-gradient(to right, #355B98 0%, #396DC0 100%);
  padding: 8px 30px;
  padding: .5rem 1.875rem;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
}

.p-reason-list__label em {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-reason-list__image {
  aspect-ratio: 1/1;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 47.619047619%;
}

.p-reason-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-reason-list__title {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-reason-list__text {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.p-reason__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-relation {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 160px;
  padding-bottom: 10rem;
}

.p-relation.--works {
  display: none;
}

.p-relation__title {
  color: #053581;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.p-relation__title::before {
  -webkit-mask: url(../img/common/icon_title_deco.svg) no-repeat center/contain;
  aspect-ratio: 14/22;
  margin-inline: auto;
  display: inline-block;
  display: block;
  mask: url(../img/common/icon_title_deco.svg) no-repeat center/contain;
  margin-bottom: 3px;
  margin-bottom: .1875rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#355B98), to(#396DC0));
  background: linear-gradient(to bottom, #355B98 0%, #396DC0 100%);
  width: 14px;
  width: .875rem;
  content: '';
}

.p-relation__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service-list__item a {
  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;
  -webkit-box-shadow: 0 0 2.1875rem rgba(50, 58, 71, .05);
  box-shadow: 0 0 2.1875rem rgba(50, 58, 71, .05);
  background: #fff;
  padding: 25px;
  padding: 1.5625rem;
}

.p-service-list__item + .p-service-list__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-service-list__image {
  aspect-ratio: 1/1;
  width: 43.8596491228%;
}

.p-service-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-service-list__text {
  margin-top: 15px;
  margin-top: .9375rem;
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

.p-service__top {
  background: #FCFCFC;
  padding-top: 100px;
  padding-top: 6.25rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-service__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service__conts {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-service__catch {
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.p-service__blocks {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-service__block {
  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;
  -webkit-box-shadow: 0 0 2.1875rem rgba(50, 58, 71, .05);
  box-shadow: 0 0 2.1875rem rgba(50, 58, 71, .05);
  background: #fff;
  padding: 25px 15px;
  padding: 1.5625rem .9375rem;
}

.p-service__block + .p-service__block {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-service__block-text {
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

.p-service__block-tags {
  gap: 10px 15px;
  gap: .625rem .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-service__block-tag {
  display: block;
}

.p-side__title {
  border-bottom: 1px solid #053581;
  padding-bottom: 12px;
  padding-bottom: .75rem;
  color: #053581;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}

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

.p-side__list li + li {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-side__image {
  aspect-ratio: 305/185;
}

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

.p-side__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-top: .9375rem;
  color: #777;
}

.p-side__meta .c-meta__category {
  padding-inline: 15px;
  padding-inline: .9375rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
}

.p-side__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: 1.5;
}

.p-top-development {
  background: url(../img/top/development_bg_sp.jpg) no-repeat center/cover;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-top-development__box {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: .625rem;
  background: #fff;
  padding: 36px 15px 40px;
  padding: 2.25rem .9375rem 2.5rem;
}

.p-top-development__table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.p-top-development__table tr {
  border: 5px solid #fff;
}

.p-top-development__table tr:first-child th {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-top-development__table th, .p-top-development__table td {
  vertical-align: middle;
  border-left: 5px solid #fff;
  padding: 10px 8px;
  padding: .625rem .5rem;
  text-align: center;
}

.p-top-development__table th {
  background-color: #FBFBFB;
  color: #053581;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-top-development__table th.p-top-development__entrustment, .p-top-development__table th.p-top-development__labo {
  color: #fff;
}

.p-top-development__table th.p-top-development__entrustment {
  background-color: #094CB5;
}

.p-top-development__table th.p-top-development__labo {
  background-color: #0D8AD8;
}

.p-top-development__table td {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.p-top-development__table td:nth-of-type(1) {
  background: #F3F6FB;
}

.p-top-development__table td:nth-of-type(2) {
  background: #F6FBFF;
}

.p-top-development__top {
  width: 893px;
  width: 55.8125rem;
}

.p-top-development__top th:first-child {
  width: 120px;
  width: 7.5rem;
}

.p-top-development__top td:nth-child(3), .p-top-development__top th:nth-child(3) {
  width: 324px;
  width: 20.25rem;
}

.p-top-development__bottom {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 971px;
  width: 60.6875rem;
}

.p-top-development__bottom th:first-child {
  padding-inline: 5px;
  padding-inline: .3125rem;
  width: 164px;
  width: 10.25rem;
}

.p-top-development__bottom td:nth-child(3), .p-top-development__bottom th:nth-child(3) {
  width: 44%;
}

.p-top-faq {
  background: url(../img/top/faq_bg_sp.jpg) no-repeat top center/cover;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-top-faq__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-faq__item {
  border-bottom: solid 1px #5280CA;
  color: #fff;
}

.p-top-faq__question, .p-top-faq__answer {
  padding-block: 20px;
  padding-block: 1.25rem;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .9375rem;
  -moz-column-gap: .9375rem;
  column-gap: .9375rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-top-faq__question::before, .p-top-faq__answer::before {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  width: 36px;
  width: 2.25rem;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  content: attr(data-en);
}

.p-top-faq__question {
  grid-template-columns: 2.25rem 1fr 1rem;
}

.p-top-faq__question::before {
  color: #094CB5;
}

.p-top-faq__answer {
  grid-template-columns: 2.25rem 1fr;
}

.p-top-faq__answer::before {
  color: #0D8AD8;
}

.p-top-flow {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-top-flow__image {
  margin-inline: auto;
  aspect-ratio: 335/1125;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-flow__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-fv {
  background: url(../img/top/fv_image_sp.jpg) no-repeat center/cover;
  padding-top: 245px;
  padding-top: 15.3125rem;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}

.p-top-fv__title {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}

.p-top-fv__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-top-media {
  padding-top: 80px;
  padding-top: 5rem;
}

.p-top-media__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-media__item + .p-top-media__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-top-media__link {
  display: block;
}

.p-top-media__thumb {
  aspect-ratio: 335/220;
}

.p-top-media__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.p-top-media__meta .c-meta__date {
  color: #777;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
}

.p-top-media__catch {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-top-media__excerpt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

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

.p-top-news {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-top-news__inner {
  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-top-news__side {
  display: contents;
}

.p-top-news__more {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

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

.p-top-news__item {
  padding-block: 20px;
  padding-block: 1.25rem;
  border-bottom: solid 1px #ECECEC;
}

.p-top-news__link {
  display: block;
}

.p-top-news__meta {
  color: #777;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
}

.p-top-news__meta .c-meta__date {
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
}

.p-top-news__catch {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin-top: 12px;
  margin-top: .75rem;
  overflow: hidden;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 1.8;
}

.p-top-team {
  padding-top: 85px;
  padding-top: 5.3125rem;
  padding-bottom: 103px;
  padding-bottom: 6.4375rem;
}

.p-top-team__list {
  counter-reset: team-counter;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-top-team__label {
  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;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  border-radius: 3px;
  background: #094CB5;
  padding: 5px 8px;
  padding: .3125rem .5rem;
  color: #fff;
}

.p-top-team__label::before {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  counter-increment: team-counter;
  border-radius: 50%;
  background: #fff;
  width: 35px;
  width: 2.1875rem;
  color: #094CB5;
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  content: counter(team-counter);
}

.p-top-team__label.--labo {
  background: #0D8AD8;
}

.p-top-team__label.--labo::before {
  color: #0D8AD8;
}

.p-top-team__label span {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.8;
}

.p-top-team__image {
  aspect-ratio: 335/246;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-top-team__image.--labo {
  aspect-ratio: 335/381;
}

.p-top-team__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-works__top {
  border-bottom: solid 2px #ECECEC;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

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

.p-works__item {
  border-bottom: solid 1px #ECECEC;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}

.p-works__link {
  display: block;
}

.p-works__image {
  aspect-ratio: 335/175;
}

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

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

.p-works__meta .c-meta__date {
  color: #777;
  font-size: 16px;
  font-size: 1rem;
}

.p-works__meta .c-meta__category {
  padding-inline: 15px;
  padding-inline: .9375rem;
}

.p-works__itemTitle {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  color: #053581;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-works__excerpt {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin-top: 10px;
  margin-top: .625rem;
  overflow: hidden;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

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

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

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

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

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

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

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

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

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

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

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

  html {
    font-size: 1.1111111111vw;
  }

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

  .l-container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1480px;
  }

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

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

  .l-header.is-fixed .l-container {
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-left: 50px;
    padding-left: 3.125rem;
  }

  .l-main.--2col {
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
  }

  .l-main {
    padding-bottom: 260px;
    padding-bottom: 16.25rem;
  }

  a.c-button01 {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  a.c-button01:hover, a.c-button01:focus-visible {
    outline: none;
    background-position: 51% 100%;
  }

  a.c-button02 {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .c-card {
    border-bottom: none;
    padding-bottom: 0;
  }

  .c-card__image {
    aspect-ratio: 455/300;
  }

  .c-card__meta {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .c-card__meta .c-meta__category {
    padding-inline: 15px;
    padding-inline: .9375rem;
  }

  .c-card__meta .c-meta__date {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .c-card__title {
    margin-top: 15px;
    margin-top: .9375rem;
    margin-right: 0;
    font-size: 32px;
    font-size: 2rem;
  }

  .c-card__text {
    -webkit-line-clamp: 2;
    margin-top: 15px;
    margin-top: .9375rem;
    margin-right: 0;
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .c-cards {
    gap: 80px 37px;
    gap: 5rem 2.3125rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .c-cards__item + .c-cards__item {
    margin-top: 0;
  }

  .c-category-list__link:hover {
    opacity: .7;
  }

  .c-category-list__link span {
    padding-inline: 24px;
    padding-inline: 1.5rem;
  }

  .c-image-hover figure {
    overflow: hidden;
  }

  .c-image-hover figure img {
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }

  .c-image-hover:hover figure img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .c-meta__category {
    padding: 5px 25px;
    padding: .3125rem 1.5625rem;
  }

  .c-section-title {
    font-size: 42px;
    font-size: 2.625rem;
  }

  .c-section-title::before {
    margin-bottom: -53px;
    margin-bottom: -3.3125rem;
    font-size: 110px;
    font-size: 6.875rem;
  }

  .c-section-title::after {
    top: 86px;
    top: 5.375rem;
    width: 14px;
    width: .875rem;
  }

  .c-section-title.--sp::before {
    content: attr(data-en);
  }

  .c-tag {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-about-message {
    padding-top: 130px;
    padding-top: 8.125rem;
  }

  .p-about-message__box {
    margin-inline: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    padding: 80px 70px;
    padding: 5rem 4.375rem;
    max-width: 1140px;
  }

  .p-about-message__top {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-about-message__text {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-about-message__text + .p-about-message__text {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-about-message__bottom {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-about-message__bottom-head {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-about-message__name {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-about-message__name span {
    display: inline-block;
  }

  .p-about-mvv {
    padding-top: 130px;
    padding-top: 8.125rem;
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
  }

  .p-about-mvv::before {
    background: url(../img/about/about_mvv_deco01_pc.png) no-repeat top center/100% auto, url(../img/about/about_mvv_deco02_pc.png) no-repeat bottom center/100% auto;
  }

  .p-about-mvv::after {
    background: #355B98;
  }

  .p-about-mvv__item {
    display: grid;
    grid-template-columns: 23.5rem 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    padding-left: 80px;
    padding-left: 5rem;
  }

  .p-about-mvv__item.--vision {
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .p-about-mvv__item.--vision::before {
    display: none;
  }

  .p-about-mvv__item + .p-about-mvv__item {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-about-mvv__item:last-child {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }

  .p-about-mvv__title::before {
    font-size: 52px;
    font-size: 3.25rem;
  }

  .p-about-mvv__item-text {
    margin-top: 0;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-about-mvv__values {
    margin-top: 0;
  }

  .p-about-mvv__value + .p-about-mvv__value {
    margin-top: 28px;
    margin-top: 1.75rem;
  }

  .p-about-mvv__top {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-about-mvv__wrapper {
    grid-template-columns: 2.5rem 1fr;
  }

  .p-about-mvv__wrapper::before {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-about-mvv__catch {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-about-mvv__text {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-about {
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
  }

  .p-about__list {
    margin-inline: auto;
    width: 1080px;
    width: 67.5rem;
  }

  .p-about__item {
    padding: 0;
  }

  .p-about__info {
    display: grid;
    grid-template-columns: 15rem 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-about__info dt, .p-about__info dd {
    padding: 25px;
    padding: 1.5625rem;
  }

  .p-about__info dt {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-about__info dd {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-about__info dd {
    margin-top: 0;
  }

  .p-about__info a {
    position: relative;
    -webkit-transition: color .3s;
    transition: color .3s;
  }

  .p-about__info a:hover {
    color: #094CB5;
  }

  .p-about__info a::after {
    position: absolute;
    bottom: -2px;
    bottom: -.125rem;
    left: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    background: #094CB5;
    width: 100%;
    height: 1px;
    content: '';
  }

  .p-about__info a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .p-about__text {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-about__text + .p-about__text {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-article {
    padding-top: 114px;
    padding-top: 7.125rem;
  }

  .p-article__inner {
    margin-inline: auto;
    padding: 80px 120px;
    padding: 5rem 7.5rem;
    max-width: 1140px;
  }

  .p-article__inner.--2col {
    display: grid;
    grid-template-columns: 1fr 14rem;
    -webkit-column-gap: 2.875rem;
    -moz-column-gap: 2.875rem;
    column-gap: 2.875rem;
    padding: 80px;
    padding: 5rem;
    max-width: 1280px;
  }

  .p-article__title {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-article__body h2 {
    -webkit-box-shadow: 0 4px 0 0 #053581;
    box-shadow: 0 4px 0 0 #053581;
    padding: 12px 24px;
    padding: .75rem 1.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-article__body h3 {
    margin-top: 48px;
    margin-top: 3rem;
    border-left: 4px solid #053581;
    padding-left: 16px;
    padding-left: 1rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
  }

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

  .p-article__body ol.wp-block-list li {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-article__body .wp-block-list li ul li {
    margin-top: 12px;
    margin-top: .75rem;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body blockquote,
  .p-article__body q {
    margin-block: 32px;
    margin-block: 2rem;
    margin-left: auto;
    padding: 40px 80px;
    padding: 2.5rem 5rem;
    width: 94.1176470588%;
  }

  .p-article__body blockquote p, .p-article__body blockquote a,
  .p-article__body q p,
  .p-article__body q a {
    font-size: max(10px, 15px);
    font-size: max(10px, .9375rem);
  }

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

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

  .p-article__body .rtoc-mokuji-content {
    padding: 30px 40px;
    padding: 1.875rem 2.5rem;
  }

  .p-article__body .rtoc-item a {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-article__body .rtoc-item + .rtoc-item {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-article__meta .c-meta__date {
    display: inline-block;
  }

  .p-article__back {
    margin-top: 80px;
    margin-top: 5rem;
  }

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

  .p-blog__list {
    gap: 80px 37px;
    gap: 5rem 2.3125rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-blog__item {
    padding-block: 0;
    border-bottom: none;
  }

  .p-blog__image {
    aspect-ratio: 455/300;
  }

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

  .p-blog__meta .c-meta__category {
    padding-inline: 15px;
    padding-inline: .9375rem;
  }

  .p-blog__itemTitle {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-blog__excerpt {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

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

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

  .p-breadcrumb {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }

  .p-breadcrumb.--single .p-breadcrumb__inner {
    max-width: 1180px;
  }

  .p-breadcrumb.--about {
    padding-top: 173px;
    padding-top: 10.8125rem;
  }

  .p-breadcrumb.--thanks {
    padding-top: 150px;
    padding-top: 9.375rem;
  }

  .p-breadcrumb__inner {
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
  }

  .p-contact__text {
    margin-top: 60px;
    margin-top: 3.75rem;
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
    text-align: center;
  }

  .p-contact__form {
    margin-inline: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    padding: 80px 100px 71px;
    padding: 5rem 6.25rem 4.4375rem;
    max-width: 850px;
  }

  .p-contact__top {
    margin-top: 160px;
    margin-top: 10rem;
  }

  .p-footer {
    text-align: left;
  }

  .p-footer__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }

  .p-footer__sub {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

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

  .p-footer__address {
    max-inline: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-footer__address dt, .p-footer__address dd {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-footer__address dt::after {
    content: '：';
  }

  .p-footer__nav {
    margin-top: 0;
  }

  .p-footer__nav-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .p-footer__nav-item a {
    padding: 15px;
    padding: .9375rem;
  }

  .p-footer__nav-item a span {
    position: relative;
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-footer__nav-item a span::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    background: #fff;
    width: 100%;
    height: 2px;
    content: '';
  }

  .p-footer__nav-item a:hover span::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .p-footer__nav-item:last-child a {
    padding-right: 0;
  }

  .p-footer__copy {
    display: block;
    margin-top: 50px;
    margin-top: 3.125rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    text-align: center;
  }

  .p-form__textarea {
    height: 130px;
    height: 8.125rem;
  }

  .p-form__privacy {
    margin-inline: 0;
  }

  .p-form__button:hover, .p-form__button:focus-visible {
    outline: none;
    background: url(../img/common/icon_submit_arrow.svg) no-repeat center right 1.875rem/.9375rem, -webkit-gradient(linear, left top, right top, from(#053581), to(#0D8AD8)) top left 51%/200% auto;
    background: url(../img/common/icon_submit_arrow.svg) no-repeat center right 1.875rem/.9375rem, linear-gradient(to right, #053581, #0D8AD8) top left 51%/200% auto;
  }

  .p-fv {
    padding-top: 328px;
    padding-top: 20.5rem;
    padding-bottom: 234px;
    padding-bottom: 14.625rem;
  }

  .p-fv.--service {
    background: url(../img/service/service_fv_pc.jpg) no-repeat center/cover;
  }

  .p-fv.--blog {
    background: url(../img/blog/blog_fv_pc.jpg) no-repeat center/cover;
  }

  .p-fv.--news {
    background: url(../img/news/news_fv_pc.jpg) no-repeat center/cover;
  }

  .p-fv.--works {
    background: url(../img/works/works_fv_pc.jpg) no-repeat center/cover;
  }

  .p-fv.--reason {
    background: url(../img/reason/reason_fv_pc.jpg) no-repeat center/cover;
  }

  .p-fv.--contact {
    background: url(../img/contact/contact_fv_pc.jpg) no-repeat center/cover;
  }

  .p-fv.--about {
    background: url(../img/about/about_fv_pc.jpg) no-repeat center/cover;
  }

  .l-container.p-fv__inner {
    width: 89.5833333333%;
    max-width: 1620px;
    min-height: auto;
  }

  .p-fv__en {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 1.5;
  }

  .p-fv__en.--lg {
    font-size: 100px;
    font-size: 6.25rem;
  }

  .p-fv__en span {
    display: inline-block;
  }

  .p-fv__title {
    font-size: 42px;
    font-size: 2.625rem;
  }

  .p-fv__title::before {
    margin-right: 30px;
    margin-right: 1.875rem;
    width: 5px;
    width: .3125rem;
    height: 36px;
    height: 2.25rem;
  }

  .p-header-nav__list {
    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-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }

  .p-header-nav__link {
    display: block;
    position: relative;
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
    font-weight: 700;
  }

  .p-header-nav__link::after {
    position: absolute;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0, 1);
    transform: translateX(-50%) scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    background: #000;
    width: 100%;
    height: 2px;
    content: '';
  }

  .p-header-nav__link:hover::after {
    -webkit-transform: translateX(-50%) scale(1, 1);
    transform: translateX(-50%) scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  .p-header-nav__link.c-button01::after {
    display: none;
  }

  .p-header {
    height: 87px;
  }

  .p-header .l-container {
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-left: 50px;
    padding-left: 3.125rem;
  }

  .p-header__inner {
    -webkit-box-shadow: 0 4px 2.1875rem rgba(6, 30, 69, .06);
    box-shadow: 0 4px 2.1875rem rgba(6, 30, 69, .06);
    padding: 15px 50px;
    padding: .9375rem 3.125rem;
  }

  .p-header__logo {
    aspect-ratio: 182/58;
    width: 182px;
    width: 11.375rem;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-header__logo a:hover {
    opacity: .7;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-header__drawer {
    display: none;
  }

  .p-news__categories {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-news__list, .p-news__none {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-news__item {
    padding-block: 27px;
    padding-block: 1.6875rem;
  }

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

  .p-news__link:hover {
    opacity: .7;
  }

  .p-news__meta .c-meta__date {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-news__itemTitle {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-news__footer {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .page-numbers.prev, .page-numbers.next {
    font-size: max(10px, 16px);
    font-size: max(10px, 1rem);
  }

  .p-pravacy {
    padding-top: 114px;
    padding-top: 7.125rem;
  }

  .p-pravacy__inner {
    margin: 0 auto;
    max-width: 1180px;
  }

  .p-pravacy__list {
    margin-top: 110px;
    margin-top: 6.875rem;
  }

  .p-pravacy__item + .p-pravacy__item {
    margin-top: 80px;
    margin-top: 5rem;
  }

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

  .p-pravacy__text {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-reason-list {
    gap: 100px 35px;
    gap: 6.25rem 2.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-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-reason-list__item {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 40px 38px;
    padding: 2.5rem 2.375rem;
    width: calc(33.3333333333% - 1.4583333333rem);
  }

  .p-reason-list__item + .p-reason-list__item {
    margin-top: 0;
  }

  .p-reason-list__label {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-reason-list__label em {
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-reason-list__image {
    margin-top: 35px;
    margin-top: 2.1875rem;
    width: 60.1092896175%;
  }

  .p-reason-list__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-reason-list__text {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-reason__list {
    margin-top: 110px;
    margin-top: 6.875rem;
  }

  .p-relation {
    padding-top: 130px;
    padding-top: 8.125rem;
    padding-bottom: 260px;
    padding-bottom: 16.25rem;
  }

  .p-relation.--works {
    display: block;
  }

  .p-relation__title {
    font-size: 42px;
    font-size: 2.625rem;
  }

  .p-relation__list {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-service-list {
    gap: 100px 30px;
    gap: 6.25rem 1.875rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1280px;
  }

  .p-service-list__item a {
    padding: 30px;
    padding: 1.875rem;
  }

  .p-service-list__item + .p-service-list__item {
    margin-top: 0;
  }

  .p-service-list__image {
    width: 49.1329479769%;
  }

  .p-service-list__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-service__top {
    padding-top: 160px;
    padding-top: 10rem;
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
  }

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

  .p-service__conts {
    margin-top: 130px;
    margin-top: 8.125rem;
  }

  .p-service__catch {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-service__blocks {
    gap: 30px;
    gap: 1.875rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 1280px;
  }

  .p-service__block {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 30px 22px;
    padding: 1.875rem 1.375rem;
  }

  .p-service__block + .p-service__block {
    margin-top: 0;
  }

  .p-service__block-text {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-service__block-tags {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-top: 20px;
    margin-top: 1.25rem;
    min-height: 149px;
    min-height: 9.3125rem;
  }

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

  .p-side__text {
    -webkit-line-clamp: 3;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-top-development {
    background: url(../img/top/development_bg_pc.jpg) no-repeat center/cover;
    padding-top: 130px;
    padding-top: 8.125rem;
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
  }

  .p-top-development__box {
    margin-inline: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    border-radius: 1.875rem;
    padding: 75px 55px;
    padding: 4.6875rem 3.4375rem;
    max-width: 1280px;
  }

  .p-top-development__table tr:first-child th {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-top-development__table th, .p-top-development__table td {
    padding: 15px 20px;
    padding: .9375rem 1.25rem;
  }

  .p-top-development__table th {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-top-development__table tr:first-child th {
    padding-block: 10px;
    padding-block: .625rem;
  }

  .p-top-development__top th, .p-top-development__top td {
    padding: 10px 17px;
    padding: .625rem 1.0625rem;
  }

  .p-top-development__top th:first-child {
    width: 150px;
    width: 9.375rem;
  }

  .p-top-development__top td, .p-top-development__top th {
    width: 385px;
    width: 24.0625rem;
  }

  .p-top-development__top {
    margin-inline: auto;
    width: 87.4137931034%;
  }

  .p-top-development__bottom th:first-child {
    padding-inline: 8px;
    padding-inline: .5rem;
    width: 225px;
    width: 14.0625rem;
  }

  .p-top-development__bottom {
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 100%;
  }

  .p-top-development__bottom td:nth-child(3), .p-top-development__bottom th:nth-child(3) {
    width: 42.4%;
  }

  .p-top-faq {
    background: url(../img/top/faq_bg_pc.jpg) no-repeat top center/cover;
    padding-top: 130px;
    padding-top: 8.125rem;
    padding-bottom: 180px;
    padding-bottom: 11.25rem;
  }

  .p-top-faq__list {
    margin-inline: auto;
    margin-top: 110px;
    margin-top: 6.875rem;
    max-width: 850px;
  }

  .p-top-faq__question, .p-top-faq__answer {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    padding: 25px;
    padding: 1.5625rem;
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
    line-height: 1.8;
  }

  .p-top-flow {
    padding-top: 130px;
    padding-top: 8.125rem;
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
  }

  .p-top-flow__image {
    aspect-ratio: 1140/1659;
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 1140px;
  }

  .p-top-fv {
    background: url(../img/top/fv_image_pc.jpg) no-repeat center/cover;
    padding-top: 350px;
    padding-top: 21.875rem;
    padding-bottom: 236px;
    padding-bottom: 14.75rem;
  }

  .p-top-fv__inner {
    width: 89.5833333333%;
    max-width: 1620px;
  }

  .p-top-fv__title {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .p-top-fv__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-top-media {
    padding-top: 130px;
    padding-top: 8.125rem;
  }

  .p-top-media__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.3125rem;
    -moz-column-gap: 2.3125rem;
    column-gap: 2.3125rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-top-media__item + .p-top-media__item {
    margin-top: 0;
  }

  .p-top-media__thumb {
    aspect-ratio: 455/300;
  }

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

  .p-top-media__meta .c-meta__category {
    padding-inline: 15px;
    padding-inline: .9375rem;
  }

  .p-top-media__catch {
    -webkit-line-clamp: 2;
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-top-media__excerpt {
    -webkit-line-clamp: 2;
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

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

  .p-top-news {
    padding-top: 160px;
    padding-top: 10rem;
    padding-bottom: 160px;
    padding-bottom: 10rem;
  }

  .p-top-news__inner {
    margin-inline: auto;
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 10.3125rem;
    -moz-column-gap: 10.3125rem;
    column-gap: 10.3125rem;
    width: 90%;
  }

  .p-top-news__side {
    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-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }

  .p-top-news__title {
    text-align: left;
  }

  .p-top-news__more {
    text-align: left;
  }

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

  .p-top-news__item {
    padding-block: 30px;
    padding-block: 1.875rem;
  }

  .p-top-news__link:hover {
    opacity: .7;
  }

  .p-top-news__catch {
    -webkit-line-clamp: 1;
  }

  .p-top-team {
    padding-top: 130px;
    padding-top: 8.125rem;
    padding-bottom: 130px;
    padding-bottom: 8.125rem;
  }

  .p-top-team__list {
    margin-inline: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 1140px;
  }

  .p-top-team__item + .p-top-team__item {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-top-team__label {
    border-radius: 5px;
    padding: 15px;
    padding: .9375rem;
  }

  .p-top-team__label span {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-top-team__label::before {
    aspect-ratio: 1/1;
    width: 50px;
    width: 3.125rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-top-team__image {
    aspect-ratio: 983/544;
    margin-inline: auto;
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 86.2280701754%;
  }

  .p-top-team__image.--labo {
    aspect-ratio: 1009/594;
    width: 88.5087719298%;
  }

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

  .p-works__list, .p-works__none {
    margin-inline: auto;
    margin-top: 30px;
    margin-top: 1.875rem;
    width: 88.8888888889%;
  }

  .p-works__item {
    padding-top: 70px;
    padding-top: 4.375rem;
    padding-bottom: 70px;
    padding-bottom: 4.375rem;
  }

  .p-works__link {
    display: grid;
    grid-template-columns: 37.5% 1fr;
    -webkit-column-gap: 4.6875rem;
    -moz-column-gap: 4.6875rem;
    column-gap: 4.6875rem;
  }

  .p-works__image {
    aspect-ratio: 480/250;
  }

  .p-works__content {
    margin-top: 0;
  }

  .p-works__itemTitle {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 32px;
    font-size: 2rem;
  }

  .p-works__excerpt {
    font-size: max(10px, 18px);
    font-size: max(10px, 1.125rem);
  }

  .p-works__footer {
    margin-top: 80px;
    margin-top: 5rem;
  }

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

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

  .u-onlyTab {
    display: block;
  }
}

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

  .p-service-list__item a:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

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

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

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1440px) {

  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */