@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: #231815;
  font-family: 'Noto Sans JP', 'Noto Sans CJK JP', '游ゴシック体', '游ゴシック', 'Yu Gothic', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', 'Meiryo', 'MS Pゴシック', 'MS PGothic', 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: #F7F8F8;
  padding: .25em .5em;
}

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

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

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

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

var {
  background-color: #F7F8F8;
  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;
}

html {
  font-size: 16px;
}

button {
  color: #231815;
}

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

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

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

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

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

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

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: #231815;
  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]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

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

label {
  cursor: pointer;
}

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

textarea {
  resize: vertical;
}

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

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

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

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

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

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

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

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

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

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

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

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

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 16px;
  height: 16px;
  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: .2em solid #005DAD;
  border-bottom: .2em solid #005DAD;
  width: 8px;
  height: 16px;
  content: '';
}

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

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

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

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

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

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

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

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

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

:root {

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

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

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

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

.wpcf7-spinner {
  display: none;
}

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

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

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .2);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .2);
  width: 100%;
}

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

.l-main {
  position: relative;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.c-benefit-card {
  aspect-ratio: 1/1;
  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: 1px solid #e5e5e6;
  background-color: #fff;
  max-width: 220px;
  max-width: 13.75rem;
  text-align: center;
}

.c-benefit-card__inner {
  gap: 16px;
  gap: 1rem;
  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;
}

.c-benefit-card__icon {
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
}

.c-benefit-card__icon-pt10 {
  padding-top: 15px;
  padding-top: .9375rem;
}

.c-benefit-card__icon-pt15 {
  padding-top: 15px;
  padding-top: .9375rem;
}

.c-benefit-card__icon-sauna {
  width: 33%;
}

.c-benefit-card__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.c-benefit-card__text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.5;
}

/* ============================================= */

/* 青背景タイトル */

/* ============================================= */
.c-blue-head {
  position: relative;
  z-index: 0;
}

.c-blue-head::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  background-color: #d4efff;
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
  content: '';
}

.c-blue-head__title {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.c-btn-entry {
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  cursor: pointer;
  border: none;
  background-color: #005DAD;
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  width: 100%;
  max-width: 350px;
  max-width: 21.875rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}

.c-btn-more {
  display: inline-block;
  -webkit-transition: border-color .2s ease, background-color .2s ease;
  transition: border-color .2s ease, background-color .2s ease;
  cursor: pointer;
  border: 1px solid #A1A1A1;
  border-radius: .75rem;
  background-color: #fff;
  padding: 6px 15px 8px 15px;
  padding: .375rem .9375rem .5rem .9375rem;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-btn-more:hover {
  border-color: #888;
  background-color: #F0F0F0;
}

.c-copyright {
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  text-align: center;
}

.c-copyright small {
  font-size: inherit; /* ブラウザのデフォルト小サイズを抑える */
}

/* ============================================= */

/* CTAボタン */

/* ============================================= */
.c-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 0;
  width: 100%;
}

.c-cta.is-absolute {
  position: absolute;
}

.c-cta__btn {
  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-transition: all .3s ease;
  transition: all .3s ease;
  padding: 12px;
  padding: .75rem;
  width: 50%;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.c-cta__icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: 3px;
  margin-top: .1875rem;
  margin-right: 8px;
  margin-right: .5rem;
  width: 20px;
  width: 1.25rem;
  height: auto;
}

.c-cta__text {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.c-cta__btn.is-blue {
  background: #005DAD;
  color: #fff;
}

.c-cta__btn.is-yellow {
  background: #FFF100;
  color: #005DAD;
}

.c-gallery-grid {
  gap: 8px;
  gap: .5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
  margin-top: 1rem;
}

.c-gallery-grid__item {
  cursor: pointer;
}

.c-gallery-grid__item img {
  aspect-ratio: 106/89;
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-mp4-modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  -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;
  z-index: 9999;
  background: rgba(0, 0, 0, .7);
  padding: 32px;
  padding: 2rem;
  width: 100vw;
  height: 100vh;
}

.c-mp4-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  background: transparent;
  width: 100%;
  height: 100%;
}

.c-mp4-modal__content {
  aspect-ratio: 9/16;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  background: #000;
  width: 100%;
  max-width: 90%;
  max-height: 90%;
}

.c-mp4-modal__video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-mp4-modal__close {
  position: absolute;
  top: -24px;
  top: -1.5rem;
  right: -24px;
  right: -1.5rem;
  z-index: 2;
  cursor: pointer;
  border: none;
  background: none;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
}

.c-nav-link {
  aspect-ratio: 1/1;
  display: block;
  z-index: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 4px 8px rgba(0, 44, 91, .32);
  box-shadow: 0 4px 8px rgba(0, 44, 91, .32);
  border-radius: .75rem;
  background: #005DAD;
  width: 100%;
  max-width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.c-nav-link__inner {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
  width: 100%;
  height: 100%;
}

.c-nav-link__link {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-nav-link__text {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

.c-nav-link__img {
  margin-inline: auto;
  aspect-ratio: 1/1;
  width: 50%;
  max-width: 96px;
  max-width: 6rem;
}

.c-nav-link__img-small {
  width: 100%;
  max-width: 52px;
  max-width: 3.25rem;
}

.c-nav-link__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-page-head {
  text-align: center;
}

.c-page-head__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
}

.c-section-head {
  display: block;
  background-color: #005DAD;
  padding: 2px 32px;
  padding: .125rem 2rem;
  text-align: center;
}

.c-section-head__text {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

.c-section-title {
  text-align: center;
}

.c-section-title h2 {
  display: inline-block;
  background-color: #005DAD;
  padding: 1px 12px;
  padding: .0625rem .75rem;
  width: 100%;
  color: #FFF100;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.p-gallery-block .c-section-title:not(:first-of-type) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-staffhousing-block .c-section-title:not(:first-of-type) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.c-topmessage-title {
  text-align: center;
}

.c-topmessage-title h1 {
  background-color: #005DAD;
  padding: 5px 16px;
  padding: .3125rem 1rem;
  color: #FFF100;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  text-align: center;
}

.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
}

.modal__layer {
  cursor: pointer;
  background: rgba(50, 50, 50, .85);
  height: 100%;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal__content .modal__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.modal__content img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
}

.modal__content .about-gallery__item--large img {
  display: block;
  width: auto;
  max-height: 100%;
}

.c-modal-video {
  display: block;
  position: relative;
}

.c-modal-video__thumb {
  aspect-ratio: 16/9;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.c-modal-video__thumb button {
  display: block;
  border: none;
  background: none;
  padding: 0;
  width: 100%;
  height: 100%;
}

.c-modal-video__thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

.c-modal-video__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.c-modal-video__play-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -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-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .7);
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
}

.c-modal-video__play-icon::before {
  display: block;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #005DAD;
  width: 0;
  height: 0;
  content: '';
}

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

.p-company-info__items {
  gap: 16px;
  gap: 1rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 2;
  margin-top: 35px;
  margin-top: 2.1875rem;
  max-width: 455px;
  max-width: 28.4375rem;
}

.p-drawer {
  z-index: 40;
}

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

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

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

.p-header__drawer .p-drawer__icon-sp {
  display: block;
}

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

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

.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(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) 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: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
  margin-top: var(--header-height, 80px);
  margin-top: var(--header-height, 5rem);
  background: #fff;
  background-color: #005DAD;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  width: 100%;
  height: calc(100vh - var(--header-height, 5rem));
  max-height: 100dvh;
  overflow: auto;
  overflow-y: auto;
  color: #231815;
  text-align: center;
}

.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__navList {
  gap: 16px;
  gap: 1rem;
  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-drawer__navColumn {
  width: 48%;
}

.p-drawer__nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.p-drawer__navLink {
  display: block;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding-top: 8px;
  padding-top: .5rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

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

.p-form-buttons__wrapper {
  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;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.p-form-buttons button {
  -webkit-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
  border: 1px solid #005DAD;
  border: .0625rem solid #005DAD;
  padding: 16px;
  padding: 1rem;
  width: 50%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.p-form-buttons__submit {
  border: 1px solid #005DAD;
  border: .0625rem solid #005DAD;
  background-color: #005DAD;
  padding: 15px;
  padding: .9375rem;
  color: #fff;
  font-weight: bold;
}

.p-form-buttons__submit:hover {
  background-color: #5da6e6;
}

.p-form-buttons__back {
  border: 1px solid #005DAD;
  border: .0625rem solid #005DAD;
  background-color: #fff;
  padding: 15px;
  padding: .9375rem;
  color: #005DAD;
  font-weight: bold;
}

.p-form-buttons__back:hover {
  background-color: #f7f7f7;
}

.p-footer {
  background-color: #595757;
  padding-top: 8px;
  padding-top: .5rem;
  padding-bottom: 8px;
  padding-bottom: .5rem;
  text-align: center;
}

.p-footer__logo {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-footer__logo img,
.p-footer__logo svg {
  width: 200px;
  width: 12.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__copy {
  padding: 10px 0;
  padding: .625rem 0;
  color: #231815;
}

.p-form-field {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

/* 1. `contact-fields__field` の最後の `.form-field` だけ適用 */
.contact-fields__field:last-child .form-field {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

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

.p-form-field__label {
  color: #005DAD;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-form-field__tag {
  position: relative;
  top: 8px;
  top: .5rem;
  vertical-align: middle;
  color: red;
  font-family: 小塚ゴシック;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}

.p-form-field__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-form-field__item.p-form-field__item--textarea {
  margin-top: 14px;
  margin-top: .875rem;
}

.p-form-field__item.p-form-field__item--select {
  margin-top: 14px;
  margin-top: .875rem;
}

.form-text {
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  border: 1px solid #005DAD;
  border-radius: .5rem;
  background: #fff;
  padding: 10px 16px;
  padding: .625rem 1rem;
  width: 100%;
}

.form-text::-webkit-input-placeholder {
  opacity: 1;
  color: #727171;
}

.form-text::-moz-placeholder {
  opacity: 1;
  color: #727171;
}

.form-text::-ms-input-placeholder {
  opacity: 1;
  color: #727171;
}

.form-text::placeholder {
  opacity: 1;
  color: #727171;
}

.form-textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #727171;
}

.form-textarea::-moz-placeholder {
  opacity: 1;
  color: #727171;
}

.form-textarea::-ms-input-placeholder {
  opacity: 1;
  color: #727171;
}

.form-textarea::placeholder {
  opacity: 1;
  color: #727171;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid pink;
  border: .0625rem solid pink;
  background: #fff;
  padding: 10px 19px 11px 7px;
  padding: .625rem 1.1875rem .6875rem .4375rem;
  width: 100%;
  font-size: 12px;
  font-size: .75rem;
}

.form-textarea {
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  border: 1px solid #005DAD;
  border-radius: .5rem;
  background: #fff;
  padding: 10px 16px;
  padding: .625rem 1rem;
  width: 100%;
  height: 198px;
  height: 12.375rem;
}

.p-form-checkbox__link {
  color: #2EA7E0;
  text-decoration: none;
}

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

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

.p-form-field__item--confirm {
  margin-top: 8px;
  margin-top: .5rem;
  padding-left: 16px;
  padding-left: 1rem;
}

.p-fv__image {
  position: relative;
  width: 100%;
  height: calc(100vh - 180px);
  overflow: hidden;
}

.p-fv__image picture,
.p-fv__image picture img {
  display: block;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__image .p-fv__title {
  aspect-ratio: 15/8;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-47%);
  transform: translateX(-47%);
  z-index: 2;
  min-width: 350px;
  min-width: 21.875rem;
  max-width: 600px;
  max-width: 37.5rem;
  height: auto;
}

.p-fv__image .p-fv__subtitle {
  position: absolute;
  bottom: 8%;
  left: 8%;
  z-index: 2;
  width: clamp(120px, 30vw, 400px);
  height: auto;
}

.p-gallery-block {
  padding-top: 21px;
  padding-top: 1.3125rem;
}

.p-gallery-block__more {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

.p-header {
  background-color: #005DAD;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

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

.p-header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 41;
  width: 110px;
  width: 6.875rem;
}

.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-header__drawer {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-header__drawer .p-drawer__icon {
  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;
  padding: 0;
  width: 100%;
  height: 100%;
}

.p-header__tel {
  z-index: 41;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
}

.p-header__tel 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.p-header__tel a img {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__tel-sp {
  display: block;
}

.p-header__right {
  display: none;
}

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

.p-message__main-title {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  background-color: #005DAD;
  padding: 1px 16px;
  padding: .0625rem 1rem;
  color: #FFF100;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

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

.p-message__sub-title {
  display: block;
  background-color: #005DAD;
  padding: 1px 16px;
  padding: .0625rem 1rem;
  color: #FFF100;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.p-message__section--bg {
  margin-top: 16px;
  margin-top: 1rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  width: 100vw;
}

.p-message__catch {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.p-message__list {
  margin-top: 8px;
  margin-top: .5rem;
  padding-left: 0;
  list-style: none;
}

.p-message__list li {
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
  line-height: 1.8;
}

.p-message__list li + li {
  margin-top: 2px;
  margin-top: .125rem;
}

.p-message__list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #231815;
  content: '◯';
}

.p-message__text {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

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

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

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

.p-message__section h2 {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  background-color: #005DAD;
  padding: 5px 16px;
  padding: .3125rem 1rem;
  color: #FFF100;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  text-align: center;
}

.p-message__section h3 {
  display: block;
  background-color: #005DAD;
  padding: 4px 16px;
  padding: .25rem 1rem;
  color: #FFF100;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.p-message__section h4 {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.p-message__section ul {
  margin-top: 8px;
  margin-top: .5rem;
  padding-left: 0;
  list-style: none;
}

.p-message__section ul li {
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
  line-height: 1.8;
}

.p-message__section ul li + li {
  margin-top: 2px;
  margin-top: .125rem;
}

.p-message__section ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #231815;
  content: '◯';
}

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

.p-page-challenge__head {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  width: 100vw;
}

.p-page-changingjob__head {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  width: 100vw;
}

.p-page-entry {
  background-color: #F7F8F8;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-page-entry__form--bg {
  margin-top: 32px;
  margin-top: 2rem;
  border: 1px solid #F7F8F8;
  border: 1px solid #F7F8F8;
  border-radius: 16px;
  border-radius: 16px;
  background-color: #fff;
  padding: 32px 16px;
  padding: 2rem 1rem;
}

.p-form-field:last-of-type {
  padding-bottom: 0;
}

.p-page-entry__privacy {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}

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

.p-page-freelancer__head {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  width: 100vw;
}

.p-page-gallery {
  background-color: #F7F8F8;
  padding-top: 21px;
  padding-top: 1.3125rem;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
}

.p-page-newgraduate__head {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  width: 100vw;
}

.p-page-partner__head {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  width: 100vw;
}

.p-page-recreation {
  margin-top: 32px;
  margin-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-page-recruitment__head {
  padding-top: 32px;
  padding-top: 2rem;
}

.p-page-recreation__items {
  gap: 16px;
  gap: 1rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
  margin-top: 2rem;
  max-width: 455px;
  max-width: 28.4375rem;
}

.p-page-recruitment {
  background-color: #F7F8F8;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-page-recruitment__head {
  padding-top: 32px;
  padding-top: 2rem;
}

.p-page-recruitment__wrapper {
  margin-top: 32px;
  margin-top: 2rem;
  border-radius: 1rem;
  background-color: #fff;
  padding: 32px 16px;
  padding: 2rem 1rem;
}

.p-recruitment-block__title {
  color: #005DAD;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.p-recruitment-block__text ul {
  margin-top: 10px;
  margin-top: .625rem;
  padding-left: 0;
  list-style: none;
}

.p-recruitment-block__text ul li {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  line-height: 1.7;
  text-indent: -.1em;
}

.p-recruitment-block__text li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '◯';
}

.p-recruitment-block__text ul li + li {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-recruitment-block__text p {
  margin-top: 8px;
  margin-top: .5rem;
  line-height: 1.7;
}

.p-recruitment-block + .p-recruitment-block {
  margin-top: 32px;
  margin-top: 2rem;
  border-top: 1px dashed #b2b2b2;
  padding-top: 32px;
  padding-top: 2rem;
}

.p-page-rookies__head {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  width: 100vw;
}

.p-page-staffhousing {
  background-color: #F7F8F8;
  padding-top: 21px;
  padding-top: 1.3125rem;
  padding-bottom: 21px;
  padding-bottom: 1.3125rem;
}

.p-page-thanks {
  background-color: #F7F8F8;
  padding: 60px 0;
  padding: 3.75rem 0;
}

.p-page-thanks__card {
  border-radius: 1rem;
  background-color: #fff;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.p-page-thanks__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}

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

.p-page-thanks__text {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.p-page-topmessage {
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-page-topmessage__text {
  margin-top: 32px;
  margin-top: 2rem;
  line-height: 1.8;
}

.p-page-topmessage__text--right {
  text-align: right;
}

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

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

.page-numbers {
  display: inline-block;
  border: 1px solid #005DAD;
  width: 2em;
  height: 2em;
  color: #005DAD;
  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: #005DAD;
  color: #fff;
}

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

.p-privacy-policy {
  background-color: #F7F8F8;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-privacy-policy__wrapper {
  border-radius: 1rem;
  background-color: #fff;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
}

.p-privacy-policy__content h1 {
  border-bottom: 1px solid #005DAD;
  padding-bottom: 4px;
  padding-bottom: .25rem;
  color: #005DAD;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

.p-privacy-policy__content h2 {
  position: relative;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-left: 16px;
  padding-left: 1rem;
  color: #005DAD;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-privacy-policy__content h2::before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #005DAD;
  width: 4px;
  width: .25rem;
  height: 26px;
  height: 1.625rem;
  content: '';
}

.p-privacy-policy__content p {
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.7;
}

.p-privacy-policy__content p + p {
  margin-top: 3px;
  margin-top: .1875rem;
}

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

.p-privacy-policy__content p.p-privacy-policy__contact-right {
  margin-top: 12px;
  margin-top: .75rem;
  text-align: right;
}

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

.p-section-fv__inner {
  position: relative;
  width: 100%;
}

.p-section-fv__bg {
  aspect-ratio: 322/214;
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-section-fv__bg img,
.p-section-fv__title img {
  display: block;
  width: 100%;
  height: auto;
}

.p-section-fv__title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

.p-staffhousing-block {
  padding-top: 21px;
  padding-top: 1.3125rem;
}

.p-staffhousing-block__more {
  margin-top: 24px;
  margin-top: 1.5rem;
  text-align: center;
}

.p-target-nav {
  background-color: #F7F8F8;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-target-nav__items {
  gap: 16px;
  gap: 1rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 2;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-target-nav__item {
  display: block;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.p-top-message {
  position: relative;
  margin-top: 58px;
  margin-top: 3.625rem;
}

.p-top-message__headWrap {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-top-message__head {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

.p-top-message__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 50%;
  background-color: #d4efff;
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
}

.p-top-message__image {
  aspect-ratio: 233/71;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

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

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

.wp-block-heading:nth-child(n+2) {
  margin-top: 16px;
  margin-top: 1rem;
}

h2.wp-block-heading {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  background-color: #005DAD;
  padding: 5px 16px;
  padding: .3125rem 1rem;
  color: #FFF100;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.1;
  text-align: center;
}

h3.wp-block-heading {
  display: block;
  background-color: #005DAD;
  padding: 1px 16px;
  padding: .0625rem 1rem;
  color: #FFF100;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

h4.wp-block-heading {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

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

.p-message__section--bg {
  margin-top: 16px;
  margin-top: 1rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: #F7F8F8;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  width: 100vw;
}

.wp-block-list {
  margin-top: 8px;
  margin-top: .5rem;
  padding-left: 0;
  list-style: none;
}

.wp-block-list li {
  position: relative;
  padding-left: 24px;
  padding-left: 1.5rem;
  line-height: 1.8;
}

.wp-block-list li + li {
  margin-top: 2px;
  margin-top: .125rem;
}

.wp-block-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #231815;
  content: '◯';
}

.u-mt30 {
  margin-top: 30px;
  margin-top: 1.875rem;
}

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

.is-hidden {
  display: none;
}

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

  .c-nav-link__text {
    font-size: 26px;
    font-size: 1.625rem;
  }

  .c-nav-link__img-large {
    width: 60%;
  }
}

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

  html {
    font-size: 1.5094339623vw;
  }

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

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

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

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

  .l-main {
    padding-bottom: 172px;
    padding-bottom: 10.75rem;
  }

  .c-blue-head::before {
    width: 240px;
    width: 15rem;
    height: 240px;
    height: 15rem;
  }

  .c-blue-head__title {
    font-size: 48px;
    font-size: 3rem;
  }

  .c-btn-entry {
    padding: 24px 20px;
    padding: 1.5rem 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-btn-more {
    padding: 6px 15px 8px 15px;
    padding: .375rem .9375rem .5rem .9375rem;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .c-copyright {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-cta__btn {
    gap: 12px;
    gap: .75rem;
  }

  .c-cta__icon {
    width: 38px;
    width: 2.375rem;
  }

  .c-cta__text {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .c-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .c-nav-link {
    border-radius: 1.25rem;
  }

  .c-nav-link__text {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: bold;
  }

  .c-nav-link__img-small {
    max-width: 72px;
    max-width: 4.5rem;
  }

  .c-page-head__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-section-title h2 {
    padding: 8px 20px;
    padding: .5rem 1.25rem;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .p-gallery-block .c-section-title:not(:first-of-type) {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-staffhousing-block .c-section-title:not(:first-of-type) {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .c-topmessage-title h1 {
    font-size: 38px;
    font-size: 2.375rem;
  }

  .c-modal-video__play-icon {
    width: 80px;
    width: 5rem;
    height: 80px;
    height: 5rem;
  }

  .p-company-info {
    margin-top: 150px;
    margin-top: 9.375rem;
  }

  .p-company-info__items {
    margin-top: 38px;
    margin-top: 2.375rem;
    max-width: clamp(350px, 44vw, 560px);
    max-width: clamp(21.875rem, 44vw, 35rem);
  }

  .p-header__drawer .p-drawer__icon-sp {
    display: none;
  }

  .p-drawer__bars {
    width: 45px;
    width: 2.8125rem;
  }

  .p-drawer__content {
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    padding-top: 120px;
    padding-top: 7.5rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }

  .p-drawer__navLink {
    padding-top: 16px;
    padding-top: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-form-buttons__wrapper {
    margin-inline: auto;
    width: 100%;
    max-width: 600px;
    max-width: 37.5rem;
  }

  .p-form-buttons button {
    font-size: 18px;
    font-size: 1.125rem;
  }

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

  .p-form-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 39px;
    padding-bottom: 2.4375rem;
  }

  .contact-fields__field:last-child .form-field {
    padding-bottom: 34px;
    padding-bottom: 2.125rem;
  }

  .p-form-field__head {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 220px;
    width: 13.75rem;
  }

  .p-form-field__tag {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0;
  }

  .p-form-field__item.p-form-field__item--textarea {
    margin-top: 0;
  }

  .p-form-field__item.p-form-field__item--select {
    margin-top: -2px;
    margin-top: -.125rem;
  }

  .form-select {
    padding: 6px 19px 5px 7px;
    padding: .375rem 1.1875rem .3125rem .4375rem;
  }

  .p-fv__image {
    height: calc(100vh - 166px);
  }

  .p-fv__image .p-fv__title {
    top: 8%;
    left: 9%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 550px;
    width: 34.375rem;
  }

  .p-fv__image .p-fv__subtitle {
    bottom: 6%;
    left: 11%;
    width: clamp(150px, 13vw, 400px);
  }

  .p-gallery-block {
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .p-header__logo {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 280px;
    width: 17.5rem;
  }

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

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

  .p-header__nav li > a {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
  }

  .p-header__tel {
    width: 55px;
    width: 3.4375rem;
    height: 55px;
    height: 3.4375rem;
  }

  .p-header__tel-sp {
    display: none;
  }

  .p-header__right {
    gap: 28px;
    gap: 1.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-message__main-title {
    font-size: 34px;
    font-size: 2.125rem;
  }

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

  .p-message__section--bg {
    margin-top: 32px;
    margin-top: 2rem;
    padding-top: 48px;
    padding-top: 3rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }

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

  .p-message__list li {
    font-size: 20px;
    font-size: 1.25rem;
  }

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

  .p-message__section h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }

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

  .p-message__section h4 {
    margin-top: 28px;
    margin-top: 1.75rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-message__section ul li {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-page-challenge__head {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-page-changingjob__head {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-page-entry {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-page-entry__form--bg {
    padding: 48px 32px;
    padding: 3rem 2rem;
  }

  .p-page-entry__privacy {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-left: 0;
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
  }

  .p-page-freelancer__head {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-page-gallery {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-page-newgraduate__head {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-page-partner__head {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-page-recreation {
    margin-top: 72px;
    margin-top: 4.5rem;
    padding-bottom: 72px;
    padding-bottom: 4.5rem;
  }

  .p-page-recruitment__head {
    padding-top: 64px;
    padding-top: 4rem;
  }

  .p-page-recreation__items {
    gap: 24px;
    gap: 1.5rem;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 72px;
    margin-top: 4.5rem;
  }

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

  .p-page-recruitment__head {
    padding-top: 64px;
    padding-top: 4rem;
  }

  .p-page-recruitment__wrapper {
    margin-top: 64px;
    margin-top: 4rem;
    border-radius: 1.5rem;
    padding: 52px 40px;
    padding: 3.25rem 2.5rem;
  }

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

  .p-recruitment-block__text ul {
    margin-top: 14px;
    margin-top: .875rem;
  }

  .p-recruitment-block__text ul li {
    padding-left: 24px;
    padding-left: 1.5rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-recruitment-block__text p {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-recruitment-block + .p-recruitment-block {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .p-page-rookies__head {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .p-page-staffhousing {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-page-thanks__card {
    margin-inline: auto;
    max-width: 800px;
    max-width: 50rem;
  }

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

  .p-page-topmessage {
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-page-topmessage__text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-page__video {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

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

  .p-privacy-policy__content h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-privacy-policy__content h2::before {
    height: 38px;
    height: 2.375rem;
  }

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

  .p-staffhousing-block {
    padding-top: 40px;
    padding-top: 2.5rem;
  }

  .p-target-nav {
    padding-top: 35px;
    padding-top: 2.1875rem;
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
  }

  .p-target-nav__items {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1130px;
    max-width: 70.625rem;
  }

  .p-top-message {
    margin-top: 108px;
    margin-top: 6.75rem;
  }

  .p-top-message__headWrap {
    margin-bottom: 38px;
    margin-bottom: 2.375rem;
  }

  .p-top-message__head {
    font-size: 46px;
    font-size: 2.875rem;
  }

  .p-top-message__circle {
    width: 240px;
    width: 15rem;
    height: 240px;
    height: 15rem;
  }

  .p-top-message__image {
    aspect-ratio: 663/204;
    max-width: 660px;
    max-width: 41.25rem;
  }

  .p-video {
    margin-top: 21px;
    margin-top: 1.3125rem;
  }

  h2.wp-block-heading {
    font-size: 34px;
    font-size: 2.125rem;
  }

  h3.wp-block-heading {
    font-size: 28px;
    font-size: 1.75rem;
  }

  h4.wp-block-heading {
    font-size: 24px;
    font-size: 1.5rem;
  }

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

  .p-message__section--bg {
    margin-top: 32px;
    margin-top: 2rem;
    padding-top: 48px;
    padding-top: 3rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }

  .wp-block-list li {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .u-mt30 {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

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

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

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

@media (min-width: 1060px) {

  html {
    font-size: 16px;
  }
}

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

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {

  .c-btn-entry:hover {
    background: #2A76DC;
  }

  .c-cta__btn:hover {
    -webkit-box-shadow: 0 6px 12px rgba(0, 44, 91, .4);
    box-shadow: 0 6px 12px rgba(0, 44, 91, .4);
  }

  .c-cta__btn.is-blue:hover {
    background: #2A76DC;
  }

  .c-cta__btn.is-yellow:hover {
    background: #fff759;
  }

  .c-nav-link:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 6px 12px rgba(0, 44, 91, .4);
    box-shadow: 0 6px 12px rgba(0, 44, 91, .4);
    background: #2A76DC;
  }

  .p-drawer__navLink:hover {
    text-decoration: underline;
  }
}
/*# sourceMappingURL=map/style.css.map */