@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: #112736;
  font-family: 'Noto Sans 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: #F8F8F8;
  padding: .25em .5em;
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInLeft {

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

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

@keyframes fadeInLeft {

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

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

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

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

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

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

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

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

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

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 0;
  }

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

  from {
    opacity: 1;
  }

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

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-height);
  font-size: 100%;
}

button {
  color: #112736;
}

/************************************************************************
* 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: #112736;
  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;
  display: inline-block;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  cursor: pointer;
  margin: 0;
  border: none;
  border-radius: 9999px;
  background-color: #EE8084;
  background-image: none;
  padding: 1em 2em;
  width: auto;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

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 {
  opacity: .7;
  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 #DDE2E5;
  border-radius: .5rem;
  background-image: none;
  padding: 10px;
  padding: .625rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  height: 240px;
  height: 15rem;
  resize: vertical;
}

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

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

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

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

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 2.1875em;
  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 #DDE2E5;
  border-radius: 50%;
  background: #fff;
  width: 1.4375em;
  height: 1.4375em;
  content: '';
}

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

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

input[type=radio]:checked + span::before {
  background-color: #999;
}

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: 2.2em;
  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 #DDE2E5;
  border-radius: .125rem;
  background-color: #fff;
  width: 1.08em;
  height: 1.08em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-60%) translateX(.4em) rotate(45deg);
  transform: translateY(-60%) translateX(.4em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: 2px solid #01B0CB;
  border-bottom: 2px solid #01B0CB;
  width: .36em;
  height: .72em;
  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;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 1px solid #DDE2E5;
  border-radius: .3125rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#dcdcdc));
  background-image: linear-gradient(to bottom, #f9f9f9, #dcdcdc);
  padding: .4em 2.4em .4em .8em;
  width: 100%;
  color: #112736;
  font-family: inherit;
  font-size: 15px;
  font-size: .9375rem;
}

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

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

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #112736;
}

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

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin: 0 0 0 2.5em;
}

.wpcf7-list-item.first {
  margin: 0;
}

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

.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: 30;
  -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);
}

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

.l-section--company {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 93px;
  padding-bottom: 5.8125rem;
}

.l-section--efforts {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.l-section--area {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.l-section--store {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.l-section--homecare-case {
  margin-top: 70px;
  margin-top: 4.375rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
}

.l-section--homecare-flow {
  margin-top: 70px;
  margin-top: 4.375rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.l-section--recruitment {
  margin-top: 50px;
  margin-top: 3.125rem;
}

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

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

.l-section--description {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-section--interview {
  margin-top: 0;
}

.l-section--interview-content {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.l-section--staff-interview {
  margin-top: 70px;
  margin-top: 4.375rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.l-section--entry-form {
  margin-top: 50px;
  margin-top: 3.125rem;
}

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

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

.l-section--privacy {
  margin-top: 50px;
  margin-top: 3.125rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

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

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

.l-top-recruit {
  margin-top: 68px;
  margin-top: 4.25rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

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

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  -webkit-box-shadow: 0 8px 20px rgba(0, 180, 208, .3);
  box-shadow: 0 8px 20px rgba(0, 180, 208, .3);
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: #01B0CB;
  background-image: none;
  padding: 1em .5em;
  width: 246px;
  width: 15.375rem;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #01B0CB;
}

.c-btn--pink {
  -webkit-box-shadow: 0 8px 20px rgba(242, 73, 79, .2);
  box-shadow: 0 8px 20px rgba(242, 73, 79, .2);
  background-color: #EE8084;
  color: #fff;
}

.c-btn--pink:hover, .c-btn--pink:focus {
  border-color: #EE8084;
  color: #EE8084;
}

.c-btn--form {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 9999px;
  background-color: #EE8084;
  padding: 1em 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-btn--form:hover, .c-btn--form:focus-visible {
  opacity: .7;
  border-color: #EE8084;
  background-color: #EE8084;
  color: #fff;
}

.c-btn--form:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

.c-btn--entry-form {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 9999px;
  background-color: #01B0CB;
  padding: 1em 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-btn--entry-form:hover, .c-btn--entry-form:focus-visible {
  opacity: .7;
  border-color: #01B0CB;
  background-color: #01B0CB;
  color: #fff;
}

.c-btn--entry-form:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 40;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #fff;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

.p-404__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

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

.p-404__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
}

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

.p-about-company {
  position: relative;
  text-align: center;
}

.p-about-company::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.875rem 1.875rem 0 0;
  background-image: url('../img/lower/company-bg_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: '';
}

.p-about-company__content {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: 1rem;
  background: #fff;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  text-align: left;
}

.p-about-company__content::before {
  aspect-ratio: 58/43;
  position: absolute;
  right: 0;
  bottom: -85px;
  bottom: -5.3125rem;
  -webkit-transform: rotate(var(--about-company-icon-rotation, 0deg));
  transform: rotate(var(--about-company-icon-rotation, 0deg));
  z-index: 1;
  background-image: url('../img/lower/about-company-icon_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 116px;
  width: 7.25rem;
  content: '';
}

.p-about-message {
  position: relative;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-about-message__inner {
  padding-inline: 0;
  max-width: none;
}

.p-about-message__bg {
  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;
  border-radius: 1.875rem;
  background-image: url('../img/lower/about-message-bg_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-about-message__content {
  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;
  padding: 50px 20px 77px;
  padding: 3.125rem 1.25rem 4.8125rem;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-about-message__text-block {
  display: contents;
}

.p-about-message__title {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-about-message__text {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.p-about-message__image-wrap {
  display: contents;
}

.p-about-message__image {
  aspect-ratio: 335/320;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: .625rem;
  overflow: hidden;
}

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

.p-about-message__information {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  margin-top: 22px;
  margin-top: 1.375rem;
  margin-left: auto;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.p-about-message__information-text {
  display: block;
}

.p-about-mission {
  text-align: center;
}

.p-about-mission__text {
  margin-inline: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.p-about-staff {
  text-align: center;
}

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

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

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

.p-archive__no-posts {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 60px 20px;
  padding: 3.75rem 1.25rem;
  text-align: center;
}

.p-archive__no-posts-text {
  color: #cacaca;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.6;
}

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

.p-area__dropdown {
  position: relative;
}

.p-area__dropdown-toggle {
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
  border: 2px solid #EE8084;
  border-radius: .3125rem;
  background-color: #fff;
  padding: 16px;
  padding: 1rem;
  width: 100%;
  color: #EE8084;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.p-area__dropdown-toggle:focus {
  -webkit-filter: drop-shadow(0 0 5px rgba(242, 73, 79, .2));
  filter: drop-shadow(0 0 5px rgba(242, 73, 79, .2));
  outline: none;
  border-color: #EE8084;
}

.p-area__dropdown-toggle::after {
  aspect-ratio: 17/15;
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-image: url(../img/common/arrow-down.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  width: .5rem;
  content: '';
}

.p-area__dropdown.is-opened .p-area__dropdown-toggle::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.p-area__dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  -webkit-transform: translateY(-.625rem);
  transform: translateY(-.625rem);
  opacity: 0;
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .1));
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .1));
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease;
  border: 2px solid #EE8084;
  border-radius: .3125rem;
  background-color: #fff;
  width: 100%;
  max-height: 350px;
  max-height: 21.875rem;
  overflow-y: auto;
  pointer-events: none;
}

.p-area__dropdown.is-opened .p-area__dropdown-menu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.p-area__dropdown-item {
  margin-top: 0;
}

.p-area__dropdown-item + .p-area__dropdown-item {
  border-top: 1px solid rgba(242, 73, 79, .2);
}

.p-area__dropdown-link {
  display: block;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  padding: 16px;
  padding: 1rem;
  color: #EE8084;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

.p-area__items {
  display: none;
}

.p-area__link {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 2px solid #EE8084;
  border-radius: .3125rem;
  padding: 8px 18px;
  padding: .5rem 1.125rem;
  color: #112736;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.p-area__link:hover {
  background-color: #EE8084;
  color: #fff;
}

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

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

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

.p-article__backBtn {
  padding: 20px;
  padding: 1.25rem;
}

.p-article__paginateLink {
  position: relative;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__paginateLink::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 2px solid #112736;
  border-top: .125rem solid #112736;
  border-right: 2px solid #112736;
  border-right: .125rem solid #112736;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.p-article__paginateLink--prev::before {
  left: -10px;
  left: -.625rem;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.p-article__paginateLink--next::before {
  right: -10px;
  right: -.625rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.p-article__title {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.p-article__body {
  margin-top: 30px;
  margin-top: 1.875rem;
  border-top: 1px solid #e7e0db;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  font-size: 15px;
  font-size: .9375rem;
  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: #112736;
  padding: .3em .4em;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  border-left: 5px solid #112736;
  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: #112736;
  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 #112736;
  border-bottom: 1px solid #112736;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #112736;
  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;
  margin-top: 1.5625rem;
}

.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: #112736;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #112736;
  width: 2em;
  height: 2em;
  color: #112736;
  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: #112736;
  color: #fff;
}

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

.p-contact__inner {
  padding-inline: 0;
  max-width: none;
}

.p-contact__content {
  border-radius: 1.875rem;
  background: #FEFBF4;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}

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

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

.p-contact__sidebar {
  display: none;
}

.p-contact__step {
  gap: 16px;
  gap: 1rem;
  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-contact__step + .p-contact__step {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-contact__step-number {
  aspect-ratio: 1/1;
  display: grid;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  place-items: center;
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
  border: 2px solid #EE8084;
  border-radius: 50%;
  background-color: #fff;
  width: 45px;
  width: 2.8125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-contact__step-number.is-active {
  background-color: #EE8084;
  color: #fff;
}

.p-contact__step-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-contact__form {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 700px;
  max-width: 43.75rem;
}

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

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

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 51;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: block;
  margin-top: 6px;
  min-width: 5em;
  color: #01B0CB;
  font-size: 10px;
  font-size: .625rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: 'MENU';
}

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

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

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 8px;
  border-radius: calc(infinity * 1px);
  background: #01B0CB;
  width: 100%;
  height: 2px;
}

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

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

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-4px) rotate(-20deg);
  transform: translateY(-4px) rotate(-20deg);
  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;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 50;
  -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, 52px);
  padding-bottom: var(--header-height, 52px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #112736;
  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__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

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

.p-drawer__nav-link {
  display: block;
  padding-top: 10px;
  padding-top: .625rem;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  color: #112736;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
}

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

.p-efforts {
  position: relative;
}

.p-efforts::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.875rem 1.875rem 0 0;
  background-image: url('../img/lower/efforts-bg_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: '';
}

.p-efforts__content {
  border-radius: 1.125rem;
  background: #fff;
  padding: 20px 15px;
  padding: 1.25rem .9375rem;
  text-align: left;
}

.p-efforts__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.p-efforts__items {
  gap: 50px;
  gap: 3.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-entry-form__inner {
  padding-inline: 0;
  max-width: none;
}

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

.p-entry-form__content {
  margin-top: 40px;
  margin-top: 2.5rem;
  border-radius: 1.875rem;
  background: #FEFBF4;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}

.p-entry {
  position: relative;
  padding: 50px 0;
  padding: 3.125rem 0;
}

.p-entry::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.875rem 1.875rem 0 0;
  background-image: url('../img/common/entry-bg_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: '';
}

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

.p-entry__content {
  margin-inline: auto;
  display: contents;
  text-align: center;
}

.p-entry__title {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-entry__text {
  margin-inline: auto;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 400px;
  max-width: 25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.p-entry__image {
  aspect-ratio: 289/190;
  margin-inline: auto;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: .625rem;
  width: 289px;
  width: 18.0625rem;
  overflow: hidden;
}

.p-entry__btn-wrap {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-footer__inner {
  max-width: 375px;
  max-width: 23.4375rem;
}

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

.p-footer__logo-link {
  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;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.p-footer__logo-icon {
  width: 24px;
  width: 1.5rem;
  height: 25px;
  height: 1.5625rem;
}

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

.p-footer__logo-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-footer__company-info {
  margin-top: 10px;
  margin-top: .625rem;
  padding-left: 32px;
  padding-left: 2rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-footer__privacy-link {
  display: block;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
}

.p-footer__privacy-link a {
  color: #112736;
}

.p-footer__nav {
  display: none;
}

.p-footer__nav-link {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.p-footer__copy {
  margin-top: 6px;
  margin-top: .375rem;
  padding-left: 32px;
  padding-left: 2rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
}

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

.p-form--entry input,
.p-form--entry textarea {
  border-radius: 0;
}

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

.p-form__list--entry {
  gap: 24px;
  gap: 1.5rem;
}

.p-form__list--entry textarea {
  height: 144px;
  height: 9rem;
}

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

.p-form__label {
  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__required {
  border-radius: .1875rem;
  background-color: #EE8084;
  padding: 5px 8px;
  padding: .3125rem .5rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-form__required--entry {
  border-radius: .3125rem;
  background-color: #01B0CB;
}

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

.p-form__entry-ItemBody {
  margin-top: 8px;
  margin-top: .5rem;
  text-align: left;
}

.p-form__entry-itemBody--age {
  position: relative;
  width: 92px;
  width: 5.75rem;
}

.p-form__entry-itemBody--age .wpcf7-not-valid-tip {
  white-space: nowrap;
}

.p-form__itemBody--age {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  right: -24px;
  right: -1.5rem;
}

.p-form__entry-itemBody--postal-code {
  width: 192px;
  width: 12rem;
}

.p-form__select-wrapper {
  position: relative;
}

.p-form__select-wrapper::before {
  position: absolute;
  position: absolute;
  top: 0;
  top: 0;
  right: 0;
  right: 0;
  z-index: 1;
  border-radius: 0 .3125rem .3125rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#706f6f), to(#333));
  background-image: linear-gradient(to bottom, #706f6f, #333);
  width: 43px;
  width: 2.6875rem;
  height: 100%;
  pointer-events: none;
  content: '';
}

.p-form__select-wrapper::after {
  aspect-ratio: 11/8;
  position: absolute;
  top: 0;
  top: 50%;
  right: 0;
  right: 16px;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: #fff;
  width: 11px;
  width: .6875rem;
  pointer-events: none;
  content: '';
}

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

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

.p-form__privacy--entry {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-form__privacyLabel {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-form__privacyLink {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  color: #01B0CB;
  text-decoration: underline;
}

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

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

.p-form__submit--entry button[type=submit],
.p-form__submit--entry input[type=submit],
.p-form__submit--entry input[type=button] {
  background-color: #01B0CB;
}

.p-form__radio {
  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__radioLabel {
  gap: 40px;
  gap: 2.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__button-wrap {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-form__button-wrap--entry button[type=submit],
.p-form__button-wrap--entry input[type=submit],
.p-form__button-wrap--entry input[type=button] {
  background-color: #01B0CB;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  position: relative;
  overflow-x: clip;
}

.p-fv::before {
  aspect-ratio: 67/141;
  position: absolute;
  bottom: -12px;
  bottom: -.75rem;
  left: 0;
  -webkit-transform: rotate(var(--icon-left-rotation, 0deg));
  transform: rotate(var(--icon-left-rotation, 0deg));
  opacity: var(--icon-left-opacity, 0);
  z-index: 20;
  background-image: url('../img/common/top-mv-icon1_sp.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.8666666667%;
  content: '';
}

.p-fv::after {
  aspect-ratio: 57/149;
  position: absolute;
  right: 0;
  bottom: -12px;
  bottom: -.75rem;
  -webkit-transform: rotate(var(--icon-right-rotation, 0deg));
  transform: rotate(var(--icon-right-rotation, 0deg));
  opacity: var(--icon-right-opacity, 0);
  z-index: 20;
  background-image: url('../img/common/top-mv-icon2_sp.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15.2%;
  content: '';
}

.p-fv__inner {
  padding-inline: 20px;
  padding-inline: 1.25rem;
}

.p-fv__image {
  position: relative;
  opacity: 0;
}

.p-fv__title {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-fv__title-span {
  display: block;
  border-radius: .625rem;
  background: #fff;
  padding: 5px 14px;
  padding: .3125rem .875rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-fv__title-span--bottom {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
  padding: 5px 14px 5px 4px;
  padding: .3125rem .875rem .3125rem .25rem;
}

@keyframes fadeInUp {

  0% {
    -webkit-transform: translate(-50%, calc(-50% - 30px));
    transform: translate(-50%, calc(-50% - 30px));
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInBounce {

  0% {
    -webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .8;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInBounce {

  0% {
    -webkit-transform: scale(.8);
    transform: scale(.8);
    opacity: 0;
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .8;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes bounce {

  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes bounce {

  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes wiggle {

  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  75% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
}
@keyframes wiggle {

  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  75% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
}
@-webkit-keyframes fadeInImage {

  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInImage {

  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.p-header {
  background-color: #fff;
  padding-top: 15px;
  padding-top: .9375rem;
  padding-bottom: 19px;
  padding-bottom: 1.1875rem;
  height: 52px;
}

.p-header__inner {
  gap: 40px;
  gap: 2.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;
  padding: 0 2px 0 12px;
  padding: 0 .125rem 0 .75rem;
  height: 100%;
}

.p-header__logo {
  z-index: 51;
  height: 90%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.p-header__logo-link {
  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;
  height: 100%;
}

.p-header__logo-icon {
  width: 19px;
  width: 1.1875rem;
  height: 18px;
  height: 1.125rem;
}

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

.p-header__nav {
  display: none;
}

.p-header__nav-list {
  gap: 40px;
  gap: 2.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;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item > 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-transition: color .3s ease;
  transition: color .3s ease;
  height: inherit;
  color: #112736;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.p-header__nav-link {
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
}

.p-homecare-card {
  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;
  border-radius: 1.25rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  height: 100%;
}

.p-homecare-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-homecare-card__image {
  aspect-ratio: 1/1;
  margin-top: 13px;
  margin-top: .8125rem;
  width: 154px;
  width: 9.625rem;
}

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

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

.p-homecare-card__head {
  position: relative;
  padding-left: 61px;
  padding-left: 3.8125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.p-homecare-card__head::before {
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url('../img/lower/homecare-icon.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 55px;
  width: 3.4375rem;
  height: 46px;
  height: 2.875rem;
  content: '';
}

.p-homecare-card__text {
  margin-top: 18px;
  margin-top: 1.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-homecare-case {
  position: relative;
}

.p-homecare-case::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.875rem;
  background-image: url('../img/lower/homecare-bg_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: '';
}

.p-homecare-case__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

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

.p-homecare-flow__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-homecare-flow__items {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-homecare-head__content {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-homecare-head__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.p-homecare-head__image {
  aspect-ratio: 335/221;
  border-radius: .625rem;
  overflow: hidden;
}

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

.p-homecare-lists {
  gap: 25px;
  gap: 1.5625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-information-list {
  gap: 23px;
  gap: 1.4375rem;
  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;
  text-align: left;
}

.p-information-list__item {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid #01B0CB;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.p-information-list__item--gray {
  border-bottom: 1px solid #ddd;
}

.p-information-list__item--last {
  border-bottom: none;
  padding-bottom: 0;
}

.p-information-list__label {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-information-list__label--small {
  font-size: 16px;
  font-size: 1rem;
}

.p-information-list__value {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-information-list__value-text + .p-information-list__value-text {
  margin-top: 1lh;
}

.p-information-list__image-wrap {
  gap: 14px;
  gap: .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;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.p-information-list__image {
  aspect-ratio: 160/105;
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  margin-top: 24px;
  margin-top: 1.5rem;
  border-radius: .625rem;
  overflow: hidden;
}

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

.p-interview-card__image {
  aspect-ratio: 268/177;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  border-radius: .625rem;
  overflow: hidden;
}

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

.p-interview-card__content {
  gap: 1em;
  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;
  margin-top: 6px;
  margin-top: .375rem;
}

.p-interview-card__position {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-interview-card__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-interview-content__items {
  gap: 48px;
  gap: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-interview-content__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: left;
}

.p-interview-content__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-interview-content__flex {
  gap: 28px;
  gap: 1.75rem;
  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-interview-content__image {
  aspect-ratio: 375/203;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}

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

.p-interview-fv__content {
  gap: 27px;
  gap: 1.6875rem;
  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;
}

.p-interview-fv__image {
  aspect-ratio: 375/247;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}

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

.p-interview-fv__title-en {
  color: #01B0CB;
  font-family: 'Caveat', cursive;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: capitalize;
}

.p-interview-fv__information {
  gap: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-interview-fv__job {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-interview-fv__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-interview-list-items {
  gap: 30px 15px;
  gap: 1.875rem .9375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-interview-list {
  text-align: center;
}

.p-interview-list__inner {
  padding-inline: 0;
  max-width: none;
}

.p-interview-list__content {
  border-radius: 1.875rem;
  background: #FEFBF4;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}

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

.p-interview-message__content {
  gap: 28px;
  gap: 1.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-interview-message__title {
  color: #01B0CB;
  font-family: 'Caveat', cursive;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: capitalize;
}

.p-interview-message__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-interview-message__image {
  aspect-ratio: 375/203;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}

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

.p-job-description {
  text-align: center;
}

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

.p-job-opening-type {
  text-align: center;
}

.p-job-opening-type__items {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: left;
}

.p-job-opening-type__link {
  display: block;
  -webkit-filter: drop-shadow(1px 1px 4px #a5bcc9);
  filter: drop-shadow(1px 1px 4px #a5bcc9);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: .625rem;
  background: #E9F0F4;
  padding: 20px;
  padding: 1.25rem;
}

.p-job-opening-type__job {
  color: #112736;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-job-opening-type__link-text {
  margin-top: 12px;
  margin-top: .75rem;
  color: #112736;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/************************************************************************
* p-lowerFv
************************************************************************/
.p-lowerFv {
  position: relative;
}

.p-lowerFv__title {
  position: absolute;
  top: 50%;
  left: 30px;
  left: 1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-lowerFv__image-wrap {
  padding-inline: 20px;
  padding-inline: 1.25rem;
}

.p-lowerFv__image {
  aspect-ratio: 335/324;
  width: 100%;
}

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

.p-lowerFv__image {
  opacity: 1;
}

.p-news-list {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-news-list__item {
  border-bottom: 1px solid #e7e7e7;
}

.p-news-list__link {
  display: block;
  position: relative;
  padding-right: 28px;
  padding-right: 1.75rem;
  padding-bottom: 14px;
  padding-bottom: .875rem;
}

.p-news-list__link::after {
  aspect-ratio: 6/10;
  position: absolute;
  top: 45%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-image: url('../img/common/arrow-right.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  width: .375rem;
  content: '';
}

.p-news-list__date {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
}

.p-news-list__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  position: relative;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  margin-top: 6px;
  margin-top: .375rem;
  overflow: hidden;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-number-card__number {
  color: #EE8084;
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: capitalize;
}

.p-number-card__number--flow {
  font-size: 23px;
  font-size: 1.4375rem;
}

.p-number-card__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
}

.p-number-card__title--flow {
  font-size: 18px;
  font-size: 1.125rem;
}

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

.p-number-card__text--flow {
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 1.5;
}

.p-number-card__image {
  aspect-ratio: 455/300;
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  margin-top: 20px;
  margin-top: 1.25rem;
  border-radius: .625rem;
  width: 100%;
  overflow: hidden;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0;
}

.page-numbers {
  display: inline-block;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  color: #112736;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.8;
}

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

.page-numbers.current {
  color: #01B0CB;
}

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

.page-numbers.prev, .page-numbers.next {
  position: relative;
  font-size: 0;
}

.page-numbers.prev::before, .page-numbers.next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-top: 2px solid #112736;
  border-top: .125rem solid #112736;
  border-right: 2px solid #112736;
  border-right: .125rem solid #112736;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

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

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

.p-privacy__items {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-privacy__section-title {
  position: relative;
  padding-left: 16px;
  padding-left: 1rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-privacy__section-title::before {
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #01B0CB;
  width: 4px;
  width: .25rem;
  height: 24px;
  height: 1.5rem;
  content: '';
}

.p-privacy__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-privacy__list {
  counter-reset: list-counter;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-privacy__list-item {
  position: relative;
  counter-increment: list-counter;
  padding-left: 1.2em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-privacy__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(list-counter) '.';
}

.p-privacy__footer {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: right;
}

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

/************************************************************************
* p-recruitmentFv
************************************************************************/
.p-recruitmentFv {
  position: relative;
}

.p-recruitmentFv__title {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-recruitmentFv__image-wrap {
  padding-inline: 0;
}

.p-recruitmentFv__image {
  aspect-ratio: 375/324;
  width: 100%;
}

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

.p-recruitmentFv__image {
  opacity: 1;
}

.p-recruitment-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.p-section-title {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}

.p-section-title__en {
  position: relative;
  padding-left: 14px;
  padding-left: .875rem;
  color: #01B0CB;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.p-section-title__en::before {
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url('../img/common/title-blue-icon.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  width: .4375rem;
  height: 16px;
  height: 1rem;
  content: '';
}

.p-section-title__ja {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.p-section-title--pink .p-section-title__en {
  color: #EE8084;
}

.p-section-title--pink .p-section-title__en::before {
  background-image: url('../img/common/title-pink-icon.webp');
}

.p-section-title--single .p-section-title__en {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-staff-card__image {
  aspect-ratio: 350/350;
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  border-radius: .625rem;
  overflow: hidden;
}

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

.p-staff-card__content {
  margin-top: 14px;
  margin-top: .875rem;
  text-align: left;
}

.p-staff-card__position {
  border-radius: 9999px;
  background-color: #01B0CB;
  padding: 1px 12px;
  padding: .0625rem .75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-staff-card__name {
  margin-top: 6px;
  margin-top: .375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-staff-interview {
  text-align: center;
}

.p-staff-interview__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

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

.p-store-card {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-store-card__image {
  aspect-ratio: 364/240;
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  border-radius: .625rem;
  overflow: hidden;
}

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

.p-store-card__body {
  text-align: left;
}

.p-store-card__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-store-card__info {
  margin-top: 8px;
  margin-top: .5rem;
}

.p-store-card__postcode,
.p-store-card__tel {
  font-size: 15px;
  font-size: .9375rem;
}

.p-store-card__address {
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: .06em;
}

.p-store-cards {
  gap: 32px;
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.p-store-details__table {
  border: 1px solid #e5e5e5;
  border-collapse: collapse;
  background-color: #fff;
  width: 100%;
}

.p-store-details__row {
  display: table-row;
  border-bottom: 1px solid #e5e5e5;
}

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

.p-store-details__label {
  display: table-cell;
  vertical-align: top;
  border-right: 1px solid #e5e5e5;
  background-color: #f8f9fa;
  padding: 16px 20px;
  width: 160px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-store-details__content {
  display: table-cell;
  vertical-align: top;
  padding: 16px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.7;
}

.p-store-details__time {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.7;
}

.p-store-details__holiday {
  margin-top: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.7;
}

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

.p-store-details__note {
  margin-top: 8px;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.6;
}

.p-store-details__description {
  margin-top: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.7;
}

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

.p-store-group__inner {
  padding-inline: 0;
  max-width: none;
}

.p-store-group__content {
  border-radius: 2.5rem;
  background: #FFE9E5;
  padding: 30px 10px;
  padding: 1.875rem .625rem;
}

.p-store-group__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

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

.p-store-groups {
  gap: 50px;
  gap: 3.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-store-list {
  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;
  border-radius: 1.5625rem;
  background-color: #fff;
  padding: 20px;
  padding: 1.25rem;
  overflow: hidden;
}

.p-store-list__image-wrap {
  display: contents;
  width: 100%;
}

.p-store-list__image {
  aspect-ratio: 340/255;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  border-radius: .625rem;
  overflow: hidden;
}

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

.p-store-list__tags {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-store-list__line {
  border-radius: .3125rem;
  background: #EE8084;
  padding: 10px;
  padding: .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: 0;
}

.p-store-list__parking {
  border-radius: .3125rem;
  background: #01B0CB;
  padding: 10px;
  padding: .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.p-store-list__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 500;
}

.p-store-list__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-store-list__info {
  margin-top: 12px;
  margin-top: .75rem;
  font-size: 14px;
  font-size: .875rem;
}

.p-store-list__address-text {
  margin-right: .5em;
}

.p-store-list__map-badge {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: underline;
}

.p-store-list__info-list {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 8px;
  margin-top: .5rem;
}

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

.p-store-list__label {
  font-weight: 700;
}

.p-store-lists {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-store-lists__item {
  max-width: 600px;
  max-width: 37.5rem;
}

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

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

.p-top-news__more-link {
  position: relative;
  margin-top: 14px;
  margin-top: .875rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-top-news__more-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  background-color: currentColor;
  width: 100%;
  height: 1px;
  content: '';
}

.p-top-news__no-posts {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.p-top-news__no-posts-text {
  color: #cacaca;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-top-promise {
  position: relative;
  text-align: center;
}

.p-top-promise::before {
  aspect-ratio: 97/118;
  position: absolute;
  bottom: -40px;
  bottom: -2.5rem;
  left: 0;
  -webkit-transform: rotate(var(--promise-icon1-rotation, 0deg));
  transform: rotate(var(--promise-icon1-rotation, 0deg));
  opacity: 1;
  z-index: 1;
  background-image: url('../img/common/promise-icon1_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25.8666666667%;
  content: '';
}

.p-top-promise__inner {
  padding-inline: 0;
  max-width: none;
}

.p-top-promise__bg {
  position: relative;
  border-radius: 1.875rem;
  background-image: url('../img/common/promise-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-top-promise__content {
  display: grid;
  place-items: center;
  padding: 50px 20px 77px;
  padding: 3.125rem 1.25rem 4.8125rem;
}

.p-top-promise__list {
  position: relative;
  counter-reset: number-item;
  margin-top: 30px;
  margin-top: 1.875rem;
  list-style: none;
  text-align: initial;
}

.p-top-promise__item {
  position: relative;
  padding-left: 1.5em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-top-promise__item::before {
  position: absolute;
  top: 0;
  left: 5px;
  left: .3125rem;
  counter-increment: number-item;
  content: counter(number-item) '.';
}

.p-top-promise__btn-wrap {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-recruit {
  position: relative;
}

.p-top-recruit::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 1.875rem 1.875rem 0 0;
  background-image: url('../img/common/entry-bg_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  content: '';
}

.p-top-recruit::after {
  aspect-ratio: 66/106;
  position: absolute;
  top: -90px;
  top: -5.625rem;
  left: 0;
  -webkit-transform: rotate(var(--recruit-icon-rotation, 0deg));
  transform: rotate(var(--recruit-icon-rotation, 0deg));
  opacity: 1;
  z-index: -1;
  background-image: url('../img/common/recruit-icon_sp.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  width: 4.125rem;
  content: '';
}

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

.p-top-recruit__content {
  margin-inline: auto;
  display: contents;
  text-align: center;
}

.p-top-recruit__title {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-top-recruit__text {
  margin-inline: auto;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 400px;
  max-width: 25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.p-top-recruit__image {
  aspect-ratio: 269/178;
  margin-inline: auto;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  margin-top: 30px;
  margin-top: 1.875rem;
  border-radius: .625rem;
  width: 269px;
  width: 16.8125rem;
  overflow: hidden;
}

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

.p-top-recruit__btn-wrap {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-top-store {
  text-align: center;
}

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

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

.p-working-environment {
  text-align: center;
}

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

.p-work-schedule {
  text-align: center;
}

.p-work-schedule__items {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: left;
}

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

.p-work-schedule__time-wrap {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.p-work-schedule__time {
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-work-schedule__flex {
  display: contents;
}

.p-work-schedule__image {
  aspect-ratio: 335/220;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  -webkit-filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .15));
  margin-bottom: 10px;
  margin-bottom: .625rem;
  width: 100%;
  overflow: hidden;
}

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

.p-work-schedule__body {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.p-work-schedule__time-item + .p-work-schedule__time-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-work-schedule__time-title {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-work-schedule__text {
  margin-top: 8px;
  margin-top: .5rem;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@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.3333333333vw;
    font-size: calc(var(--vw) / 1200px * 100%);
  }

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

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

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

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

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

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

  .l-section--about-staff {
    margin-top: 168px;
    margin-top: 10.5rem;
  }

  .l-section--company {
    margin-top: 120px;
    margin-top: 7.5rem;
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }

  .l-section--efforts {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .l-section--area {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .l-section--store {
    margin-top: 70px;
    margin-top: 4.375rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }

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

  .l-section--homecare-case {
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
  }

  .l-section--homecare-flow {
    margin-bottom: 90px;
    margin-bottom: 5.625rem;
  }

  .l-section--recruitment {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

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

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

  .l-section--description {
    margin-top: 140px;
    margin-top: 8.75rem;
  }

  .l-section--interview {
    margin-top: 73px;
    margin-top: 4.5625rem;
  }

  .l-section--interview-content {
    margin-top: 76px;
    margin-top: 4.75rem;
  }

  .l-section--staff-interview {
    margin-top: 150px;
    margin-top: 9.375rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }

  .l-section--entry-form {
    margin-top: 80px;
    margin-top: 5rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }

  .l-section--contact {
    margin-top: 110px;
    margin-top: 6.875rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }

  .l-section--archive {
    margin-top: 100px;
    margin-top: 6.25rem;
    margin-bottom: 100px;
    margin-bottom: 6.25rem;
  }

  .l-section--privacy {
    margin-top: 100px;
    margin-top: 6.25rem;
    margin-bottom: 100px;
    margin-bottom: 6.25rem;
  }

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

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

  .l-top-recruit {
    margin-top: 120px;
    margin-top: 7.5rem;
    padding-top: 110px;
    padding-top: 6.875rem;
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
  }

  .l-top-store {
    margin-top: 160px;
    margin-top: 10rem;
  }

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

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

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

  .p-404__text {
    font-size: 18px;
    font-size: 1.125rem;
  }

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

  .p-about-company::before {
    background-image: url('../img/lower/company-bg.webp');
  }

  .p-about-company__inner {
    max-width: calc(60.5rem + 60px);
  }

  .p-about-company__content {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 80px;
    padding: 5rem;
  }

  .p-about-company__content::before {
    aspect-ratio: 365/272;
    bottom: -120px;
    bottom: -7.5rem;
    left: -82px;
    left: -5.125rem;
    background-image: url('../img/lower/about-company-icon.webp');
    width: 182px;
    width: 11.375rem;
  }

  .p-about-message__inner {
    padding-inline: 30px;
    max-width: 1260px;
  }

  .p-about-message__bg {
    background-image: url('../img/lower/about-message-bg.webp');
  }

  .p-about-message__content {
    gap: 83px;
    gap: 5.1875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 110px 70px 110px 110px;
    padding: 6.875rem 4.375rem 6.875rem 6.875rem;
    max-width: none;
  }

  .p-about-message__text-block {
    display: block;
    width: 65.3921568627%;
  }

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

  .p-about-message__image-wrap {
    display: block;
    width: 26.4705882353%;
  }

  .p-about-message__image {
    aspect-ratio: 270/356;
    margin-top: 0;
  }

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

  .p-about-mission__text {
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
  }

  .p-about-staff__items {
    gap: 75px;
    gap: 4.6875rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-archive__inner {
    max-width: calc(62.5rem + 60px);
  }

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

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

  .p-archive__no-posts {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding: 80px 20px;
    padding: 5rem 1.25rem;
  }

  .p-archive__no-posts-text {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-area__inner {
    max-width: calc(54.5625rem + 60px);
  }

  .p-area__dropdown {
    display: none;
  }

  .p-area__items {
    gap: 30px;
    gap: 1.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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-article__footer {
    gap: 30px;
    gap: 1.875rem;
  }

  .p-article__paginateLink {
    padding: 20px;
    padding: 1.25rem;
  }

  .p-article__paginateLink--prev::before {
    left: -20px;
    left: -1.25rem;
  }

  .p-article__paginateLink--next::before {
    right: -20px;
    right: -1.25rem;
  }

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

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

  .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-contact__inner {
    padding-inline: 30px;
    max-width: 1260px;
  }

  .p-contact__content {
    padding: 80px 60px;
    padding: 5rem 3.75rem;
  }

  .p-contact__body {
    gap: 112px;
    gap: 7rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-top: 56px;
    margin-top: 3.5rem;
  }

  .p-contact__sidebar {
    display: block;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
    width: 12.5rem;
  }

  .p-contact__form {
    max-width: none;
  }

  .p-contact__form::before {
    position: absolute;
    top: 0;
    left: -62px;
    left: -3.875rem;
    background: #A5B7C1;
    width: 1px;
    height: 100%;
    content: '';
  }

  .p-efforts::before {
    background-image: url('../img/lower/efforts-bg.webp');
  }

  .p-efforts__content {
    margin-top: 40px;
    margin-top: 2.5rem;
    border-radius: 1.875rem;
    padding: 80px 98px;
    padding: 5rem 6.125rem;
  }

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

  .p-entry-form__inner {
    padding-inline: 30px;
    max-width: calc(57.5rem + 60px);
  }

  .p-entry-form__head {
    text-align: center;
  }

  .p-entry-form__content {
    margin-top: 80px;
    margin-top: 5rem;
    padding: 80px 140px;
    padding: 5rem 8.75rem;
  }

  .p-entry {
    padding: 110px 0;
    padding: 6.875rem 0;
  }

  .p-entry::before {
    background-image: url('../img/common/entry-bg.webp');
  }

  .p-entry__inner {
    gap: clamp(20px, var(--vw) / 1440 * 102, 102px);
    gap: clamp(1.25rem, var(--vw) / 1440 * 102, 6.375rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -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;
    max-width: calc(60rem + 60px);
  }

  .p-entry__content {
    display: block;
    width: 48.2291666667%;
    text-align: left;
  }

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

  .p-entry__text {
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: none;
  }

  .p-entry__image {
    aspect-ratio: 395/260.44;
    margin-top: 0;
    width: 41.1458333333%;
  }

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

  .p-footer {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }

  .p-footer__inner {
    gap: 60px;
    gap: 3.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;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-footer__company-info {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-footer__privacy-link {
    display: none;
  }

  .p-footer__nav {
    display: block;
    max-width: 495px;
    max-width: 30.9375rem;
  }

  .p-footer__nav-list {
    gap: 20px 40px;
    gap: 1.25rem 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-footer__nav-item {
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
  }

  .p-footer__copy {
    margin-top: 52px;
    margin-top: 3.25rem;
    padding-left: 0;
    width: 100%;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.5714285714;
    text-align: center;
  }

  .p-form__list--entry {
    gap: 30px;
    gap: 1.875rem;
  }

  .p-form__item {
    gap: 16px;
    gap: 1rem;
    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__entryItem {
    display: block;
  }

  .p-form__itemHead {
    width: 200px;
    width: 12.5rem;
  }

  .p-form__itemBody {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
  }

  .p-form__select-wrapper {
    width: 584px;
    width: 36.5rem;
  }

  .p-form__privacy {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-form__privacy--entry {
    margin-top: 20px;
    margin-top: 1.25rem;
    text-align: left;
  }

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

  .p-form__button-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-fv::before {
    aspect-ratio: 102/246;
    bottom: 20px;
    bottom: 1.25rem;
    left: 28px;
    left: 1.75rem;
    background-image: url('../img/common/top-mv-icon1.png');
    width: 7.0833333333%;
  }

  .p-fv::after {
    aspect-ratio: 129/269;
    right: 60px;
    right: 3.75rem;
    bottom: 27px;
    bottom: 1.6875rem;
    background-image: url('../img/common/top-mv-icon2.png');
    width: 8.9583333333%;
  }

  .p-fv__inner {
    padding-inline: 50px;
    padding-inline: 3.125rem;
  }

  .p-fv__title {
    gap: 20px;
    gap: 1.25rem;
    bottom: 0;
    left: 30%;
    font-size: 35px;
    font-size: 2.1875rem;
  }

  .p-fv__title-span {
    padding: 3px 30px 4px;
    padding: .1875rem 1.875rem .25rem;
  }

  .p-fv__title-span--bottom {
    padding: 3px 30px 4px 15px;
    padding: .1875rem 1.875rem .25rem .9375rem;
  }

  .p-header {
    height: 78px;
  }

  .p-header__inner {
    padding: 0 50px;
    padding: 0 3.125rem;
  }

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

  .p-header__logo-icon {
    width: 24px;
    width: 1.5rem;
    height: 25px;
    height: 1.5625rem;
  }

  .p-header__nav {
    gap: 40px;
    gap: 2.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;
    margin-left: auto;
    height: inherit;
  }

  .p-header__nav-contact > a {
    width: 150px;
    width: 9.375rem;
    font-size: 13px;
    font-size: .8125rem;
    line-height: 1;
  }

  .p-header__drawer {
    display: none;
  }

  .p-homecare-card {
    padding: 35px 30px;
    padding: 2.1875rem 1.875rem;
  }

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

  .p-homecare-case::after {
    background-image: url('../img/lower/homecare-bg.webp');
  }

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

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

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

  .p-homecare-head__content {
    gap: 92px;
    gap: 5.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -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;
  }

  .p-homecare-head__text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-homecare-head__image {
    aspect-ratio: 376/247;
    width: 31.3333333333%;
  }

  .p-homecare-lists {
    gap: 45px;
    gap: 2.8125rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-information-list {
    gap: 38px;
    gap: 2.375rem;
  }

  .p-information-list--job {
    gap: 32px;
    gap: 2rem;
  }

  .p-information-list__item {
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: none;
    background-image: -webkit-gradient(linear, left top, right top, from(#01B0CB), color-stop(12.25rem, #01B0CB), color-stop(12.25rem, #ddd), to(#ddd));
    background-image: linear-gradient(to right, #01B0CB 0%, #01B0CB 12.25rem, #ddd 12.25rem, #ddd 100%);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-information-list__item--center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }

  .p-information-list__item--gray {
    border-bottom: none;
  }

  .p-information-list__label {
    padding-right: 16px;
    padding-right: 1rem;
    width: 196px;
    width: 12.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-information-list__label--last {
    border-bottom: none;
    padding-bottom: 0;
  }

  .p-information-list__value {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-information-list__value--last {
    border-bottom: none;
    padding-bottom: 0;
  }

  .p-information-list__image-wrap {
    gap: 54px;
    gap: 3.375rem;
  }

  .p-information-list__image {
    aspect-ratio: 535/352;
    max-width: 267px;
    max-width: 16.6875rem;
  }

  .p-interview-card__content {
    gap: 6px;
    gap: .375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-interview-content__inner {
    max-width: calc(59.625rem + 60px);
  }

  .p-interview-content__flex {
    gap: 90px;
    gap: 5.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-interview-content__image {
    aspect-ratio: 614/332;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: initial;
    border-radius: .625rem;
    width: 64.3605870021%;
  }

  .p-interview-content__text-block {
    width: 51.677148847%;
  }

  .p-interview-fv__content {
    gap: 90px;
    gap: 5.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
  }

  .p-interview-fv__image {
    margin-right: initial;
    margin-left: initial;
    border-radius: .625rem;
    width: 49%;
  }

  .p-interview-fv__title {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-interview-fv__information {
    gap: 2px;
    gap: .125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 48px;
    margin-top: 3rem;
  }

  .p-interview-fv__name {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-interview-list-items {
    gap: 44px 30px;
    gap: 2.75rem 1.875rem;
    grid-template-columns: repeat(auto-fit, 16.75rem);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-interview-list__inner {
    padding-inline: 30px;
    max-width: calc(81.25rem + 60px);
  }

  .p-interview-list__inner--narrow {
    max-width: calc(68.75rem + 60px);
  }

  .p-interview-list__content {
    padding: 90px 40px;
    padding: 5.625rem 2.5rem;
  }

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

  .p-interview-message__inner {
    max-width: calc(59.625rem + 60px);
  }

  .p-interview-message__content {
    gap: 90px;
    gap: 5.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -ms-flex-pack: right;
    justify-content: right;
    margin-top: 74px;
    margin-top: 4.625rem;
  }

  .p-interview-message__text-block {
    width: 51.677148847%;
  }

  .p-interview-message__text-block--noimage {
    width: 100%;
  }

  .p-interview-message__image {
    aspect-ratio: 614/332;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: initial;
    border-radius: .625rem;
    width: 64.3605870021%;
  }

  .p-job-description__inner {
    max-width: calc(50.5rem + 60px);
  }

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

  .p-job-opening-type__inner {
    max-width: calc(68.75rem + 60px);
  }

  .p-job-opening-type__items {
    gap: 30px;
    gap: 1.875rem;
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-job-opening-type__link {
    padding: 40px;
    padding: 2.5rem;
  }

  .p-lowerFv__title {
    left: initial;
    opacity: 0;
    font-size: 34px;
    font-size: 2.125rem;
    font-weight: 500;
  }

  .p-lowerFv__image-wrap {
    padding-inline: 0;
  }

  .p-lowerFv__image {
    aspect-ratio: 852/373;
    margin-left: auto;
    width: 59.1666666667%;
  }

  .p-lowerFv__image {
    opacity: 0;
  }

  .p-news-list__link {
    gap: 32px;
    gap: 2rem;
    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-bottom: 23px;
    padding-bottom: 1.4375rem;
  }

  .p-news-list__link::after {
    top: 28%;
  }

  .p-news-list__date {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 90px;
    width: 5.625rem;
  }

  .p-news-list__text {
    -webkit-line-clamp: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
  }

  .p-number-card {
    gap: 48px;
    gap: 3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -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;
  }

  .p-number-card--flow {
    gap: 70px;
    gap: 4.375rem;
  }

  .p-number-card--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-number-card__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-number-card__number {
    font-size: 23px;
    font-size: 1.4375rem;
  }

  .p-number-card__number--flow {
    font-size: 23px;
    font-size: 1.4375rem;
  }

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

  .p-number-card__title--flow {
    font-size: 18px;
    font-size: 1.125rem;
  }

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

  .p-number-card__text--flow {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-number-card__image {
    margin-top: 0;
    width: 45.3187250996%;
  }

  .p-number-card__image--flow {
    width: 31.3333333333%;
  }

  .p-privacy__inner {
    max-width: calc(62.5rem + 60px);
  }

  .p-privacy__items {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-recruitmentFv__title {
    top: 60%;
    left: 12%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: 500;
  }

  .p-recruitmentFv__image {
    aspect-ratio: 1000/349;
    margin-left: auto;
    width: 69.4444444444%;
  }

  .p-recruitmentFv__image {
    opacity: 0;
  }

  .p-recruitment-head__inner {
    max-width: calc(48.375rem + 60px);
  }

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

  .p-section-title--left {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

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

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

  .p-section-title--single .p-section-title__en {
    font-size: 20px;
    font-size: 1.25rem;
  }

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

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

  .p-store-card {
    gap: 24px;
    gap: 1.5rem;
  }

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

  .p-store-cards {
    gap: 52px 54px;
    gap: 3.25rem 3.375rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-store-group__inner {
    padding-inline: 30px;
    max-width: calc(72.9375rem + 60px);
  }

  .p-store-group__content {
    padding: 80px;
    padding: 5rem;
  }

  .p-store-groups {
    gap: 80px;
    gap: 5rem;
  }

  .p-store-list {
    gap: 50px;
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 40px 55px;
    padding: 2.5rem 3.4375rem;
  }

  .p-store-list__image-wrap {
    display: block;
    width: 37.9041248606%;
  }

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

  .p-store-list__line {
    background-color: #00B900;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-store-list__parking {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-store-list__content {
    margin-top: 0;
  }

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

  .p-store-list__info {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-store-list__map-badge {
    -webkit-transition: color .3s, background .3s, border .3s;
    transition: color .3s, background .3s, border .3s;
    border: 1px solid transparent;
    border-radius: .125rem;
    background: #EE8084;
    padding: 0 5px;
    padding: 0 .3125rem;
    color: #fff;
    text-decoration: none;
  }

  .p-store-list__info-list {
    gap: 6px;
    gap: .375rem;
  }

  .p-store-list__info-item {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-store-list__label {
    width: 105px;
    width: 6.5625rem;
    font-weight: 500;
  }

  .p-store-list__value {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-store-lists__item {
    max-width: none;
  }

  .p-top-news__inner {
    max-width: calc(62.5rem + 60px);
  }

  .p-top-promise::before {
    aspect-ratio: 160/207;
    bottom: 23%;
    left: calc(50% - min(50vw, 33.75rem));
    background-image: url('../img/common/promise-icon1.webp');
    width: 160px;
    width: 10rem;
  }

  .p-top-promise::after {
    aspect-ratio: 403/461;
    position: absolute;
    right: calc(50% - min(50vw, 34.1875rem));
    bottom: 4%;
    -webkit-transform: rotate(var(--promise-icon2-rotation, 0deg));
    transform: rotate(var(--promise-icon2-rotation, 0deg));
    opacity: 1;
    background-image: url('../img/common/promise-icon2.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    width: 12.5rem;
    content: '';
  }

  .p-top-promise__inner {
    padding-inline: 30px;
    max-width: 1260px;
  }

  .p-top-promise__bg {
    margin: 0 auto;
    background-image: url('../img/common/promise-bg.webp');
    max-width: 1200px;
  }

  .p-top-promise__content {
    padding: 110px 50px;
    padding: 6.875rem 3.125rem;
  }

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

  .p-top-promise__btn-wrap {
    gap: 40px;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-top-recruit::before {
    background-image: url('../img/common/entry-bg.webp');
  }

  .p-top-recruit::after {
    aspect-ratio: 111/178;
    top: -175px;
    top: -10.9375rem;
    left: calc(50% - min(50vw, 40.9375rem));
    background-image: url('../img/common/recruit-icon.webp');
    width: 111px;
    width: 6.9375rem;
  }

  .p-top-recruit__inner {
    gap: clamp(20px, var(--vw) / 1440 * 98, 98px);
    gap: clamp(1.25rem, var(--vw) / 1440 * 98, 6.125rem);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    max-width: calc(60.625rem + 60px);
  }

  .p-top-recruit__content {
    display: block;
    width: 53.8144329897%;
    text-align: left;
  }

  .p-top-recruit__text {
    margin-top: 50px;
    margin-top: 3.125rem;
    max-width: none;
  }

  .p-top-recruit__image {
    aspect-ratio: 395/260.44;
    margin-top: 0;
    margin-right: calc(50% - min(41.5vw, 37.375rem));
    width: 47.9381443299%;
  }

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

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

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

  .p-working-environment__inner {
    max-width: calc(58.625rem + 60px);
  }

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

  .p-work-schedule__inner {
    max-width: calc(68.75rem + 60px);
  }

  .p-work-schedule__items {
    gap: 0;
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-work-schedule__item {
    position: relative;
  }

  .p-work-schedule__item::before {
    position: absolute;
    top: 30px;
    top: 1.875rem;
    bottom: 0;
    left: 37%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(180deg, #a7a7a7, #a7a7a7 4px, transparent 4px, transparent 6px);
    background-position: left top;
    background-repeat: repeat-y;
    background-size: 1px 100%;
    width: 1px;
    height: 90%;
    content: '';
  }

  .p-work-schedule__item:nth-child(1) {
    padding-bottom: 57px;
    padding-bottom: 3.5625rem;
  }

  .p-work-schedule__item:nth-child(2) {
    padding-bottom: 70px;
    padding-bottom: 4.375rem;
  }

  .p-work-schedule__item:nth-child(3) {
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }

  .p-work-schedule__item:nth-child(3)::before {
    display: none;
  }

  .p-work-schedule__item:nth-child(4) {
    padding-bottom: 95px;
    padding-bottom: 5.9375rem;
  }

  .p-work-schedule__item:nth-child(5) {
    padding-bottom: 95px;
    padding-bottom: 5.9375rem;
  }

  .p-work-schedule__item:nth-child(6)::before {
    display: none;
  }

  .p-work-schedule__time-wrap {
    position: relative;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-left: 35.5%;
  }

  .p-work-schedule__flex {
    gap: 70px;
    gap: 4.375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 10px;
    margin-top: .625rem;
  }

  .p-work-schedule__image {
    aspect-ratio: 376/248;
    margin-bottom: 0;
    width: 34%;
  }

  .p-work-schedule__body {
    width: 59.4545454545%;
  }

  .p-work-schedule__time-item + .p-work-schedule__time-item {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-work-schedule__time-title {
    margin-top: 0;
  }

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

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

  .u-onlyTab {
    display: block;
  }
}

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

  .p-work-schedule__item:nth-child(4)::before {
    top: 56px;
    top: 3.5rem;
    height: 56%;
  }
}

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

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

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

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

  .u-onlyPc {
    display: block;
  }

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

@media (min-width: 1200px) {

  html {
    font-size: 100%;
  }
}

@media (max-width: 767px) {

  .p-store-details__table {
    border: none;
  }

  .p-store-details__row {
    display: block;
    margin-top: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
  }

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

  .p-store-details__label {
    display: block;
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 16px;
    width: 100%;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.5;
  }

  .p-store-details__content {
    display: block;
    padding: 12px 16px;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.6;
  }

  .p-store-details__time {
    color: #333;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.6;
  }

  .p-store-details__holiday {
    margin-top: 6px;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.6;
  }

  .p-store-details__note {
    margin-top: 6px;
    color: #666;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.5;
  }

  .p-store-details__description {
    margin-top: 6px;
    color: #333;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .03em;
    line-height: 1.6;
  }
}

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

  .u-onlySp {
    display: block;
  }

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

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw) / 375px * 100%);
  }
}

@media (hover: hover) {

  .p-area__dropdown-link:hover {
    background-color: rgba(242, 73, 79, .1);
  }

  .p-footer__nav-link:hover {
    color: #01B0CB;
  }

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

  .p-header__nav-item > a:hover {
    text-decoration: none;
  }

  .p-header__nav-link:hover {
    color: #01B0CB;
  }

  .p-interview-card:hover .p-interview-card__image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-job-opening-type__link:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-filter: drop-shadow(2px 8px 16px rgba(165, 188, 201, .4));
    filter: drop-shadow(2px 8px 16px rgba(165, 188, 201, .4));
  }

  .p-news-list__link:hover .p-news-list__text {
    color: #888;
  }

  .p-news-list__link:hover::after {
    -webkit-transform: translateY(-50%) translateX(.1875rem);
    transform: translateY(-50%) translateX(.1875rem);
  }

  .p-staff-card:hover .p-staff-card__image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

  a.p-store-card:hover .p-store-card__image img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

  .p-store-list__map-badge:hover {
    border: 1px solid #EE8084;
    background: #fff;
    color: #EE8084;
  }

  .p-top-news__more-link:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
/*# sourceMappingURL=map/style.css.map */