@charset "UTF-8";


@font-face {
  src: url('../fonts/HelveticaNeueBold.otf') format('opentype');
  font-family: 'HelveticaNeueBold';
}
@font-face {
  src: url('../fonts/HelveticaNeueRoman.otf') format('opentype');
  font-family: 'HelveticaNeueRoman';
}
@font-face {
  src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
  font-family: 'HelveticaNeueMedium';
}

/************************************************************************
* 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: #3B4552;
  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 {
  cursor: pointer;
}

a:hover, a: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: #3B4552;
}

/************************************************************************
* 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;
  background: #F9F9F9;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
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: 24px;
  width: 1.5rem;
}

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

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

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

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

summary {

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

summary::-webkit-details-marker {

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

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

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

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

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] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background: #F1F0F0;
  padding: 10px 16px;
  padding: .625rem 1rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .02em;
  line-height: 1.5;
}

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

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

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

input::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 32px;
  padding-left: 2rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.5;
  line-height: 2.1428571429;
}

input[type=checkbox] + span a {
  text-decoration: underline;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: .25rem;
  background: #E0E0E0;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: 2px solid #3B4552;
  border-bottom: 2px solid #3B4552;
  width: 6.666px;
  width: .4166666667rem;
  height: 10px;
  height: .625rem;
  content: '';
}

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

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

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

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

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

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

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

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

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

:root {

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

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

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

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

.wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  margin-top: .375rem;
  color: #E17272;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.wpcf7-not-valid {
  background: #F0C6C6;
}

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

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

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

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

.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  border-radius: 50vmax;
  background: #0886D9;
  padding: 11px 63px 11px 24px;
  padding: .6875rem 3.9375rem .6875rem 1.5rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.c-btn span {
  padding-top: 2px;
  padding-top: .125rem;
  color: #fff;
  letter-spacing: .05em;
  line-height: 20px;
  line-height: 1.25rem;
}

.c-btn::after {
  -webkit-mask: url('../img/common/icon_btn_arrow.svg') no-repeat center/contain;
  aspect-ratio: 5/8;
  position: absolute;
  top: 50%;
  right: 21px;
  right: 1.3125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  mask: url('../img/common/icon_btn_arrow.svg') no-repeat center/contain;
  background: #0886D9;
  width: 5px;
  width: .3125rem;
  content: '';
}

.c-btn::before {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 8px;
  right: .5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  width: 31px;
  width: 1.9375rem;
  content: '';
}

.c-btn:hover, .c-btn:focus-visible {
  opacity: 1;
  outline: none;
  background: #3B4552;
}

.c-btn:hover::after, .c-btn:focus-visible::after {
  background: #0886D9;
}

.c-btn.--header {
  background: linear-gradient(76deg, #0B83D3, #354E63) no-repeat center/200%;
  padding: 12px 49px 12px 16px;
  padding: .75rem 3.0625rem .75rem 1rem;
}

.c-btn.--header::after {
  background: #305673;
}

.c-btn.--header span {
  font-family: 'HelveticaNeueMedium', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.c-btn.--header:hover, .c-btn.--header:focus-visible {
  background: linear-gradient(76deg, #3B4552, #3B4552) no-repeat center/200%;
}

.c-btn.--header:hover::after, .c-btn.--header:focus-visible::after {
  background: #0886D9;
}

.c-btn2 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0;
  border: solid 1px #3B4552;
  border-radius: 50vmax;
  padding: 15px 60px;
  padding: .9375rem 3.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .05em;
  line-height: 2;
  text-align: center;
  text-decoration: none;
}

.c-btn2.--black {
  background: #3B4552;
  color: #fff;
}

.c-section-title {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 2;
}

.c-section-title::before {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 4px;
  margin-bottom: .25rem;
  background: -webkit-gradient(linear, left top, right top, from(#0A90D8), to(#39495A));
  background: linear-gradient(to right, #0A90D8, #39495A);
  background-clip: text;
  color: transparent;
  font-family: 'HelveticaNeueRoman', sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  content: attr(data-en);
}

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

.c-section-title.--white::before {
  -webkit-text-fill-color: #fff;
  background: none;
  background-clip: unset;
  color: #fff;
}

.c-section-title.--black {
  color: #3B4552;
}

.c-section-title.--black::before {
  -webkit-text-fill-color: #3B4552;
  background: none;
  background-clip: unset;
  color: #3B4552;
}

.p-404 {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  text-align: center;
}

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

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

.p-achievement {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(192, 229, 250, .2)), color-stop(50%, #fff));
  background: linear-gradient(to bottom, rgba(192, 229, 250, .2) 0%, #fff 50%);
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.p-achievement__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-achievement__list {
  gap: 6px;
  gap: .375rem;
  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: 40px;
  margin-top: 2.5rem;
}

.p-achievement__item {
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .3125rem;
  -moz-column-gap: .3125rem;
  column-gap: .3125rem;
  -webkit-box-shadow: 0 2px 1.5rem rgba(0, 0, 0, .12);
  box-shadow: 0 2px 1.5rem rgba(0, 0, 0, .12);
  border-radius: .25rem;
  background: #fff;
  padding: 5px;
  padding: .3125rem;
  width: 48.9296636086%;
}

.p-achievement__icon {
  aspect-ratio: 1/1;
}

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

.p-achievement__catch {
  color: #384C5F;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 19px;
  line-height: 1.1875rem;
  text-align: center;
}

.p-achievement__note {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 15px;
  font-size: .9375rem;
  letter-spacing: .05em;
  line-height: 2;
}

.p-achievement__note::before {
  content: '※';
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.5;
}

.p-article__eyecatch {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-article__body {
  margin-top: 16px;
  border-top: 1px solid #e7e0db;
  border-bottom: 1px solid #e7e0db;
  padding-top: 30px;
  padding-bottom: 50px;
  font-size: 15px;
  line-height: 2;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
}

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

.p-article__body h2 {
  background-color: #3B4552;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #3B4552;
  padding-left: .5em;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #3B4552;
  content: 'ー';
}

.p-article__body ul {
  list-style: none;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1em;
}

.p-article__body ul li::before {
  position: absolute;
  left: 0;
  content: '・';
}

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

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

.p-article__body table th {
  border-right: 1px solid #3B4552;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

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

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

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

.p-article__body p {
  font-weight: 400;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-company {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  overflow: clip;
}

.p-company::before {
  aspect-ratio: 371/251;
  display: inline-block;
  position: absolute;
  top: -50px;
  top: -3.125rem;
  right: -142px;
  right: -8.875rem;
  z-index: -1;
  background: url(../img/common/section_deco.svg) no-repeat center/contain;
  width: 371px;
  width: 23.1875rem;
  content: '';
}

.p-company__box {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: 1.5rem;
  background: #fff;
  padding: 20px;
  padding: 1.25rem;
}

.p-company__item {
  border-bottom: solid 1px #F4F4F4;
}

.p-company__item:last-child {
  border-bottom: none;
}

.p-company__info {
  padding: 16px 0;
  padding: 1rem 0;
}

.p-company__info dt, .p-company__info dd {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .05em;
  line-height: 2;
}

.p-company__info dt {
  font-weight: bold;
}

.p-contact-sub {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
}

.p-contact-sub::before {
  aspect-ratio: 204/215;
  display: inline-block;
  position: absolute;
  top: -40px;
  top: -2.5rem;
  right: 0;
  background: url(../img/top/fv_deco_sp.png) no-repeat center/contain;
  width: 204px;
  width: 12.75rem;
  content: '';
}

.p-contact-sub__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  letter-spacing: .05em;
  line-height: 2;
}

.p-contact-sub__button.--thanks {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-contact {
  background: url(../img/common/section_bg.png) repeat center/1200px 500px, #3B4552;
  background: url(../img/common/section_bg.png) repeat center/75rem 31.25rem, #3B4552;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  color: #fff;
}

.p-contact__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  letter-spacing: .05em;
  line-height: 2;
}

.p-contact__label {
  display: inline-block;
  margin-right: 3px;
  border-radius: 50vmax;
  background: -webkit-gradient(linear, left top, right top, from(#0B8CD5), to(#32A2A7));
  background: linear-gradient(to right, #0B8CD5, #32A2A7);
  width: 56px;
  width: 3.5rem;
  color: #fff;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: 500;
  line-height: 24px;
  line-height: 1.5rem;
  text-align: center;
}

.p-contact__form {
  margin-top: 43px;
  margin-top: 2.6875rem;
}

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

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

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 8px;
  background: #3B4552;
  width: 100%;
  height: 2px;
}

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

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

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

.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;
  background: #3B4552;
  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: #fff;
  padding-top: var(--header-height, 75px);
  width: 100%;
  max-height: 100dvh;
  color: #fff;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-drawer__inner {
  background: #3B4552;
  padding-top: 46px;
  padding-top: 2.875rem;
  padding-right: 24px;
  padding-bottom: var(--header-height, 75px);
  padding-left: 24px;
  width: 100%;
  max-height: calc(100dvh - var(--header-height, 75px));
  overflow-y: auto;
}

.p-drawer__item a {
  padding-block: 20px;
  padding-block: 1.25rem;
  display: block;
  font-family: 'HelveticaNeueMedium', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 18px;
  line-height: 1.125rem;
  text-transform: uppercase;
}

a.p-drawer__button {
  padding-block: 10px;
  padding-block: .625rem;
  padding-inline: 10px;
  padding-inline: .625rem;
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  border: solid 1px #fff;
  text-align: center;
}

.p-footer {
  background-color: #fff;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  text-align: center;
}

.p-footer__logo {
  text-align: center;
}

.p-footer__logo a {
  margin-inline: auto;
  aspect-ratio: 70/49;
  display: block;
  width: 70px;
  width: 4.375rem;
}

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

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

.p-footer__item a {
  display: block;
  font-size: max(10px, 15px);
  font-size: max(10px, .9375rem);
  letter-spacing: .05em;
  line-height: 2;
}

.p-footer__item + .p-footer__item {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-footer__copy {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  letter-spacing: .05em;
  line-height: 2;
}

.p-contact-confirmPage .p-footer, .p-contact-thanksPage .p-footer {
  background: none;
}

.p-form__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-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  font-size: 15px;
  font-size: .9375rem;
  letter-spacing: .05em;
  line-height: 2;
}

.p-form__label.is-required::after {
  display: inline-block;
  margin-right: 3px;
  border-radius: 50vmax;
  background: -webkit-gradient(linear, left top, right top, from(#0B8CD5), to(#32A2A7));
  background: linear-gradient(to right, #0B8CD5, #32A2A7);
  width: 56px;
  width: 3.5rem;
  color: #fff;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: 500;
  line-height: 24px;
  line-height: 1.5rem;
  text-align: center;
  content: '必須';
}

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

.p-form__item + .p-form__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-form__textarea {
  height: 180px;
  height: 11.25rem;
}

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

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

.p-form__submit {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: solid 1px #fff;
  border-radius: 50vmax;
  background: none;
  padding: 8px 60px;
  padding: .5rem 3.75rem;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: .05em;
  line-height: 2;
  text-align: center;
}

.p-contact-confirmPage .p-contact__form {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-contact-confirmPage .p-form__label {
  color: #7D7D7D;
  font-weight: bold;
}

.p-contact-confirmPage .p-form__label.is-required::after {
  content: none;
}

.p-contact-confirmPage .p-form__itemBody {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-contact-confirmPage .p-form__item + .p-form__item {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-contact-confirmPage .p-form__footer {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-form__btns {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-form__btn input {
  background: none;
  width: 100%;
  color: initial;
}

.p-fv {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
}

.p-fv::before {
  aspect-ratio: 204/215;
  display: inline-block;
  position: absolute;
  top: -40px;
  top: -2.5rem;
  right: 0;
  background: url(../img/top/fv_deco_sp.png) no-repeat center/contain;
  width: 204px;
  width: 12.75rem;
  content: '';
}

.p-fv__title span {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background: linear-gradient(65deg, #0886D9, #3B4552);
  background-clip: text;
  color: transparent;
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-fv__text {
  margin-top: 10px;
  margin-top: .625rem;
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.8;
}

.p-header {
  -webkit-box-shadow: 0 1px 0 0 #E3E3E3;
  box-shadow: 0 1px 0 0 #E3E3E3;
  background-color: #fff;
}

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

.p-header__logo {
  aspect-ratio: 144/27;
  z-index: 41;
  width: 192px;
  width: 12rem;
}

.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;
  padding: 24px;
  padding: 1.5rem;
}

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

.p-header__nav {
  display: none;
}

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

.p-header__link {
  display: block;
  padding: 20px;
  padding: 1.25rem;
  font-family: 'HelveticaNeueMedium', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 18px;
  line-height: 1.125rem;
  text-transform: uppercase;
}

.p-message {
  background: #fff;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.p-message__wrapper {
  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-message__conts {
  display: contents;
}

.p-message__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  letter-spacing: .03em;
  line-height: 2;
}

.p-message__text + .p-message__text {
  margin-top: 2em;
}

.p-message__bottom {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.p-message__image {
  aspect-ratio: 240/320;
  margin-inline: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  border-radius: .25rem;
  width: 73.3944954128%;
  overflow: clip;
}

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

.p-mission-card__title {
  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;
  border-radius: 50vmax;
  background: #fff;
  padding: 3px 12px;
  padding: .1875rem .75rem;
}

.p-mission-card__title span:first-child {
  margin-bottom: -6px;
  margin-bottom: -.375rem;
  font-family: 'HelveticaNeueMedium', sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
  text-transform: uppercase;
}

.p-mission-card__title span:last-child {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
}

.p-mission-card__title span:last-child::before {
  margin-inline: 8px;
  margin-inline: .5rem;
  width: 24px;
  width: 1.5rem;
  height: 1px;
  content: '';
}

.p-mission-card__title.--why {
  color: #3B4552;
}

.p-mission-card__title.--why span:last-child::before {
  background: #3B4552;
}

.p-mission-card__title.--how {
  color: #548DAE;
}

.p-mission-card__title.--how span:last-child::before {
  background: #548DAE;
}

.p-mission-card__title.--what {
  color: #67BAE9;
}

.p-mission-card__title.--what span:last-child::before {
  background: #67BAE9;
}

.p-mission-card__catch {
  text-underline-offset: .2em;
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.8;
  text-decoration: underline;
}

.p-mission-card__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .05em;
  line-height: 1.8;
}

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

.p-mission__inner {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  overflow: hidden;
  color: #fff;
}

.p-mission__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #0368C9;
  width: 100%;
  height: 100%;
}

.p-mission__bg video {
  opacity: .2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-mission__title {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 2;
}

.p-mission__title::before {
  display: block;
  margin-bottom: 4px;
  margin-bottom: .25rem;
  font-family: 'HelveticaNeueRoman', sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.1944444444;
  text-transform: uppercase;
  content: attr(data-en);
}

.p-mission__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-mission__image {
  margin-inline: auto;
  aspect-ratio: 1/1;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 73.3944954128%;
}

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

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

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

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

.page-numbers {
  display: inline-block;
  border: 1px solid #3B4552;
  width: 2em;
  height: 2em;
  color: #3B4552;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

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

.page-numbers.current {
  background-color: #3B4552;
  color: #fff;
}

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

.p-recruit {
  position: relative;
  z-index: 1;
  border-radius: 1.5rem 1.5rem 0 0;
  background: url(../img/common/section_bg.png) repeat center/75rem 31.25rem, -webkit-gradient(linear, left top, left bottom, color-stop(-14%, #0C8ED6), color-stop(170%, #46B39D));
  background: url(../img/common/section_bg.png) repeat center/75rem 31.25rem, linear-gradient(to bottom, #0C8ED6 -14%, #46B39D 170%);
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  overflow: clip;
  color: #fff;
}

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

.p-recruit__conts {
  padding-top: 18px;
  padding-top: 1.125rem;
}

.p-recruit__subtitle {
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-recruit__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 15px;
  font-size: .9375rem;
  letter-spacing: .05em;
  line-height: 2;
}

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

.p-recruit__item {
  padding-block: 8px;
  padding-block: .5rem;
  border-bottom: solid 1px #fff;
}

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

.p-recruit__info dt {
  padding-right: 16px;
  padding-right: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 2;
  text-align: right;
}

.p-recruit__info dd {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: solid 1px #fff;
  padding-left: 15px;
  padding-left: .9375rem;
  height: 100%;
  letter-spacing: .05em;
  line-height: 2;
}

.p-recruit__image {
  aspect-ratio: 327/375;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-service-card__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-service-card__subtitle {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-service-card__box {
  margin-top: 16px;
  margin-top: 1rem;
  -webkit-box-shadow: 0 .375rem 3.375rem rgba(28, 43, 46, .08);
  box-shadow: 0 .375rem 3.375rem rgba(28, 43, 46, .08);
  border-radius: 1.5rem;
  background: #fff;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

.p-service-card__image {
  aspect-ratio: 287/215;
}

.p-service-card__image img {
  border-radius: .25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.p-service-card__top {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.2;
}

.p-service-card__top span {
  display: block;
  margin-bottom: 4px;
  margin-bottom: .25rem;
  color: #8B8B8B;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}

.p-service-card__top small {
  display: block;
  margin-top: 4px;
  margin-top: .25rem;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: 500;
  line-height: 2;
}

.p-service-card__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 1.6;
}

.p-service-card__text em {
  font-weight: bold;
}

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

.p-service {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.p-service::before {
  aspect-ratio: 371/251;
  display: inline-block;
  position: absolute;
  top: -50px;
  top: -3.125rem;
  right: -142px;
  right: -8.875rem;
  z-index: -1;
  background: url(../img/common/section_deco.svg) no-repeat center/contain;
  width: 371px;
  width: 23.1875rem;
  content: '';
}

.p-service__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-family: 'IBM Plex Sans JP', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
}

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

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

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

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

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

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

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

  .l-container.--lg {
    max-width: 1320px;
  }

  .c-btn2:hover, .c-btn2:focus-visible {
    opacity: 1;
    outline: none;
    border: #2A5075 solid 1px;
    background: #2A5075;
    color: #fff;
  }

  .c-section-title::before {
    font-size: 72px;
    font-size: 4.5rem;
  }

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

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

  .p-404__foot {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .p-achievement {
    padding-top: 96px;
    padding-top: 6rem;
    padding-bottom: 96px;
    padding-bottom: 6rem;
  }

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

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

  .p-achievement__item {
    grid-template-columns: 2.9375rem 1fr;
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
    padding: 12px 10px;
    padding: .75rem .625rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

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

  .p-achievement__note {
    text-align: right;
  }

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

  .p-article__body {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 16px;
  }

  .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 .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-company {
    padding-top: 96px;
    padding-top: 6rem;
    padding-bottom: 144px;
    padding-bottom: 9rem;
  }

  .p-company::before {
    aspect-ratio: 871/593;
    top: -155px;
    top: -9.6875rem;
    right: auto;
    left: calc(50% + 7.1875rem);
    width: 871px;
    width: 54.4375rem;
  }

  .p-company__box {
    padding: 60px 140px;
    padding: 3.75rem 8.75rem;
  }

  .p-company__info {
    display: grid;
    grid-template-columns: 10rem 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 3.75rem;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
    padding: 12px;
    padding: .75rem;
  }

  .p-company__info dt {
    text-align: right;
  }

  .p-contact-sub {
    padding-top: 100px;
    padding-top: 6.25rem;
    overflow: hidden;
  }

  .p-contact-sub::before {
    aspect-ratio: 872/608;
    top: -214px;
    top: -13.375rem;
    left: calc(50% + 5.375rem);
    background: url(../img/top/fv_deco_pc.png) no-repeat center/contain;
    width: 872px;
    width: 54.5rem;
  }

  .p-contact-sub__button.--thanks {
    margin-inline: auto;
    margin-top: 120px;
    margin-top: 7.5rem;
    width: 448px;
    width: 28rem;
  }

  .p-contact {
    padding-top: 96px;
    padding-top: 6rem;
    padding-bottom: 96px;
    padding-bottom: 6rem;
  }

  .p-contact__form {
    margin-inline: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    width: 640px;
    width: 40rem;
  }

  .p-footer__list {
    gap: 24px;
    gap: 1.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

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

  .p-form__submit {
    margin-inline: auto;
    padding-block: 15px;
    padding-block: .9375rem;
    width: 448px;
    width: 28rem;
  }

  .p-form__submit:hover, .p-form__submit:focus-visible {
    opacity: 1;
    outline: none;
    border: #2A5075 solid 1px;
    background: #2A5075;
    color: #fff;
  }

  .p-contact-confirmPage .p-contact__form {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-contact-confirmPage .p-form__footer {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-form__btns {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-form__btn input {
    width: 195px;
    width: 12.1875rem;
  }

  .p-fv {
    padding-top: 203px;
    padding-top: 12.6875rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    overflow: hidden;
  }

  .p-fv::before {
    aspect-ratio: 872/608;
    top: -194px;
    top: -12.125rem;
    left: calc(50% + 5.375rem);
    background: url(../img/top/fv_deco_pc.png) no-repeat center/contain;
    width: 872px;
    width: 54.5rem;
  }

  .p-fv__title span {
    font-size: 80px;
    font-size: 5rem;
    letter-spacing: .04em;
    line-height: 1.25;
  }

  .p-fv__text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .p-header__inner {
    padding-right: 24px;
    padding-right: 1.5rem;
    height: 80px;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
  }

  .p-header__button {
    margin-left: 20px;
    margin-left: 1.25rem;
  }

  .p-header__drawer {
    display: none;
  }

  .p-message {
    padding-top: 96px;
    padding-top: 6rem;
    padding-bottom: 96px;
    padding-bottom: 6rem;
  }

  .p-message__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
  }

  .p-message__conts {
    display: block;
  }

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

  .p-message__bottom {
    margin-top: 40px;
    margin-top: 2.5rem;
    text-align: right;
  }

  .p-message__image {
    aspect-ratio: 355/473;
  }

  .p-mission-card__title {
    padding: 11px 16px;
    padding: .6875rem 1rem;
  }

  .p-mission__inner {
    padding-inline: 4.5138888889%;
    border-radius: 1.5rem;
    padding-top: 96px;
    padding-top: 6rem;
    padding-bottom: 96px;
    padding-bottom: 6rem;
  }

  .p-mission__top {
    display: grid;
    grid-template-columns: 1fr 29.4642857143%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-mission__title::before {
    font-size: 72px;
    font-size: 4.5rem;
    line-height: 1;
  }

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

  .p-mission__image {
    margin-inline: 0;
    margin-top: 0;
    width: 100%;
  }

  .p-mission__list {
    gap: 30px;
    gap: 1.875rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    margin-top: 3.75rem;
  }

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

  .p-recruit {
    padding-top: 96px;
    padding-top: 6rem;
    padding-bottom: 96px;
    padding-bottom: 6rem;
  }

  .p-recruit__wrapper {
    display: grid;
    grid-template-columns: 1fr 30rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 6.125rem;
    -moz-column-gap: 6.125rem;
    column-gap: 6.125rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

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

  .p-recruit__text {
    margin-top: 48px;
    margin-top: 3rem;
    width: 448px;
    width: 28rem;
  }

  .p-recruit__list {
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-recruit__item {
    padding-block: 16px;
    padding-block: 1rem;
  }

  .p-recruit__info {
    grid-template-columns: 10rem 1fr;
  }

  .p-recruit__image {
    aspect-ratio: 480/1024;
    margin-top: 0;
  }

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

  .p-service-card__box {
    padding-inline: 40px;
    padding-inline: 2.5rem;
    display: grid;
    grid-template-columns: 18.75rem 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }

  .p-service-card__conts {
    margin-top: 0;
  }

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

  .p-service {
    padding-top: 96px;
    padding-top: 6rem;
    padding-bottom: 128px;
    padding-bottom: 8rem;
  }

  .p-service::before {
    aspect-ratio: 871/593;
    top: -120px;
    top: -7.5rem;
    right: auto;
    left: calc(50% + 7.1875rem);
    width: 871px;
    width: 54.4375rem;
  }

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

  .p-service__list {
    margin-top: 72px;
    margin-top: 4.5rem;
  }

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

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

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

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

  .u-onlyTab {
    display: block;
  }
}

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

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

  .u-onlyPc {
    display: block;
  }
}

@media (min-width: 1120px) {

  html {
    font-size: 16px;
  }
}

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

  .u-onlySp {
    display: block;
  }
}

@media (max-width: 375px) {

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