@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: #333;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.8;
  -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: #E8E8E8;
  padding: .25em .5em;
}

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

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

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

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

var {
  background-color: #E8E8E8;
  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;
  font-size: 100%;
}

button {
  color: #333;
}

/************************************************************************
* 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 {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

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: #333;
  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
************************************************************************/
:root {

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

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

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

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

/************************************************************************
* swiper
************************************************************************/
.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: #34342E;
}

/* 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
************************************************************************/
.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

.l-main {
  text-shadow: 0 5px 5px rgba(51, 51, 51, .2);
  text-shadow: 0 .3125rem .3125rem rgba(51, 51, 51, .2);
}

.l-main img {
  -webkit-filter: drop-shadow(0 5px 5px rgba(51, 51, 51, .2));
  -webkit-filter: drop-shadow(0 .3125rem .3125rem rgba(51, 51, 51, .2));
  filter: drop-shadow(0 5px 5px rgba(51, 51, 51, .2));
  filter: drop-shadow(0 .3125rem .3125rem rgba(51, 51, 51, .2));
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

/************************************************************************
* 基本形
************************************************************************/
.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 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #34342E;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  text-decoration: none;
}

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

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #34342E;
  background-color: #34342E;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(24.9387755102, 24.9387755102, 22.0612244898);
  background-color: #34342E;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #34342E;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #34342E;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #34342E;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -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: #34342E;
  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-case__top {
  position: relative;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-case__number {
  position: absolute;
  top: -15px;
  top: -.9375rem;
  left: 20px;
  left: 1.25rem;
  color: #E8E8E8;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 5px 5px rgba(51, 51, 51, .2);
  text-shadow: 0 .3125rem .3125rem rgba(51, 51, 51, .2);
}

.p-case__topContent {
  position: relative;
  z-index: 1;
  margin-left: 15px;
  margin-left: .9375rem;
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-case__title {
  color: #333;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-case__subtitle {
  margin-top: 4px;
  margin-top: .25rem;
  color: #333;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-case__company {
  margin-top: 22px;
  margin-top: 1.375rem;
  color: #555;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

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

.p-case__image {
  width: 100%;
}

.p-case__image img {
  width: 100%;
  height: auto;
}

.p-case__image:not(.p-case__imageWrap .p-case__image) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-case__image.p-case__image--mt10:not(#_) {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-case__caption {
  margin-top: 7px;
  margin-top: .4375rem;
  color: #555;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}

.p-case__opening {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin: 62px auto 0;
  margin: 3.875rem auto 0;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-case__openingText {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.p-case__openingTextItem--mt {
  margin-top: 1lh;
}

.p-case__opening--wide {
  margin: 10px 0 0;
  margin: .625rem 0 0;
  padding: 0;
  max-width: none;
}

.p-case__opening--wide .p-case__openingText {
  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;
  background: rgba(255, 255, 255, .9);
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}

.p-case__opening--wide .p-case__openingTextItem {
  max-width: 460px;
  max-width: 28.75rem;
}

.p-case__section {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.p-case__sectionLabel {
  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;
  border: 1px solid #AAA;
  padding: 5px 10px;
  padding: .3125rem .625rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-case__interview {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-inline: auto;
  padding-top: 16px;
  padding-top: 1rem;
  width: 100%;
  max-width: 460px;
  max-width: 28.75rem;
  text-align: left;
}

.p-case__section .p-case__interview {
  padding-inline: 0;
}

.p-case__qa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  margin-top: 3.125rem;
}

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

.p-case__question {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 70px;
  width: 4.375rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-case__answer {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.p-case__close {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}

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

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

.p-case__summaryMeta {
  gap: 11px;
  gap: .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-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}

.p-case__summaryCompany {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-case__summaryName {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-case__summaryText {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

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

.p-case__faqTitle {
  color: #333;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.p-case__faqList {
  gap: 56px;
  gap: 3.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: 24px;
  margin-top: 1.5rem;
}

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

.p-case__faqQa {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-case__faqLabel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #AAA;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-case__faqText {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
  word-break: break-all;
  overflow-wrap: break-word;
}

.p-case__faqLink {
  display: inline;
  color: inherit;
  text-decoration: none;
}

.p-case__faqContact {
  margin-top: 1lh;
}

.p-case__list {
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  list-style: decimal;
}

.p-case__list li + li {
  margin-top: 4px;
  margin-top: .25rem;
}

.p-case__imageDouble {
  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;
  padding: 0 10px;
  padding: 0 .625rem;
}

.p-case__imageDouble img {
  width: 100%;
  height: auto;
}

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

.p-contact__heading {
  color: #333;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.p-contact__lead {
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-contact__grid {
  gap: 15px;
  gap: .9375rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact__card {
  -webkit-box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  box-shadow: 0 .25rem .25rem 0 rgba(0, 0, 0, .25);
  border: 1px solid #AAA;
  padding: 20px;
  padding: 1.25rem;
}

.p-contact__name {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-contact__divider {
  margin-top: 7px;
  margin-top: .4375rem;
  border: none;
  border-top: 1px solid #AAA;
  width: 100%;
}

.p-contact__info {
  margin-top: 7px;
  margin-top: .4375rem;
  color: #333;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  word-break: break-all;
}

.p-contact__info a {
  color: inherit;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #34342E;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #fff;
  text-align: center;
}

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

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

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

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

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #fff;
}

.p-footer {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #000;
  background-image: url('../img/common/footer-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
}

.p-footer__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  width: 100%;
  max-width: 618px;
  max-width: 38.625rem;
}

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

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

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

.p-footer__logo {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.p-footer__orgName {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

.p-footer__address {
  width: 100%;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-footer__nav {
  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-footer__navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__navListItem {
  position: relative;
  padding-left: 10px;
  padding-left: .625rem;
}

.p-footer__navListItem::before {
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  width: 3px;
  width: .1875rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.p-footer__navListItem a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-footer__copyright {
  margin-top: 50px;
  margin-top: 3.125rem;
  color: #fff;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}

/************************************************************************
* p-fv
************************************************************************/
.p-header {
  background-color: #34342E;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 15px;
  padding: 0 .9375rem;
  height: 60px;
  height: 3.75rem;
}

.p-header__logo {
  z-index: 41;
}

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

.p-header__logo img {
  width: auto;
  height: 35px;
  height: 2.1875rem;
}

.p-header__nav {
  display: none;
}

.p-header__navList {
  gap: clamp(20px, 2.8vw, 50px);
  gap: clamp(1.25rem, 2.8vw, 3.125rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__navLink {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  padding: 10px;
  padding: .625rem;
  color: #fff;
  font-size: clamp(12px, 1.2vw, 16px);
  font-size: clamp(.75rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.p-hero {
  background-color: transparent; /* #fff から transparent (透明) に変更 */
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-hero__title {
  color: #333;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.p-hero__visual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 14px;
  margin-top: .875rem;
  background-image: url('../img/common/hero-image.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 28px 0px;
  padding: 1.75rem 0rem;
  height: 280px;
  height: 17.5rem;
  text-aline:center;
}

.p-hero__badge {
  color: #fff;
    font-size: 48px;
    font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-shadow: 0 4px 4px rgb(0, 0, 0);
  text-shadow: 0 .25rem .25rem rgb(0, 0, 0);
    padding: 0px 16px;
  padding: 0rem 1.25rem;
}

.p-hero__subtitle {
  color: #fff;
  font-size: 24px;     
  font-size: 1.8rem;  
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: right;
  text-shadow: 0 1px 4px rgb(0, 0, 0);
  text-shadow: 0 .0625rem .25rem rgb(0, 0, 0);
  padding: 0px 35px;
  padding: 0rem 2.5rem;
}

.p-hero__lead {
  width:100%;
  margin-top: 12px;
  margin-top: .75rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0 4px 4px rgb(0, 0, 0);
  text-shadow: 0 .25rem .25rem rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5); /* 黒の50%透明度 */
    padding: 5px 20px;                   /* 上下10px、左右20pxの余白 */
    display: inline-block;                /* 背景の幅を文字に合わせる */
}

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

.p-introduction__heading {
  color: #333;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-introduction__subheading {
  margin-top: 16px;
  margin-top: 1rem;
  color: #333;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-introduction__catchcopy {
  margin-top: 16px;
  margin-top: 1rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-introduction__body {
  margin-top: 58px;
  margin-top: 3.625rem;
}

.p-introduction__text {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

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

.p-introduction__items {
  margin-top: 32px;
  margin-top: 2rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.p-introduction__item {
  position: relative;
}

.p-introduction__item::before {
  position: absolute;
  top: .5lh;
  left: 12px;
  left: .75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #333;
  width: 3px;
  width: .1875rem;
  height: 3px;
  height: .1875rem;
  content: '';
}

.p-introduction__item {
  padding-left: 25px;
  padding-left: 1.5625rem;
}

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

.p-stories__header {
  border-top: 1px solid #AAA;
  padding-top: 24px;
  padding-top: 1.5rem;
  width: 100%;
}

.p-stories__heading {
  color: #333;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-stories__subheading {
  margin-top: 16px;
  margin-top: 1rem;
  color: #333;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

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

.p-stories__item + .p-stories__item {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-stories__card {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-box-shadow: 0 .25rem .25rem 0 rgba(51, 51, 51, .15);
  box-shadow: 0 .25rem .25rem 0 rgba(51, 51, 51, .15);
  border: 1px solid #AAA;
  background-color: transparent;
  padding: 15px 10px;
  padding: .9375rem .625rem;
  width: 100%;
}

.p-stories__number {
  color: #333;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-stories__title {
  margin-top: 6px;
  margin-top: .375rem;
  color: #333;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-stories__desc {
  margin-top: 10px;
  margin-top: .625rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-stories__company {
  margin-top: 10px;
  margin-top: .625rem;
  color: #555;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

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

.p-timeline__heading {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-top: 1px solid #AAA;
  padding-top: 24px;
  padding-top: 1.5rem;
  color: #333;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-timeline__image {
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-left: 50px;
  margin-left: 3.125rem;
}

.p-timeline__image img {
  width: 100%;
  height: auto;
}

.l-body {
  background-color: #fff;
  background-image: url('../img/common/bg-pattern.webp');
  background-repeat: repeat;
}

.p-top__bg {
  position: fixed;
  top: 110px;
  top: 6.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: .04;
  z-index: 0;
  width: 92%;
  max-width: 1764px;
  max-width: 110.25rem;
  pointer-events: none;
}

.p-top__bgImage {
  width: 100%;
  height: auto;
}

.p-top {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  max-width: 740px;
  max-width: 46.25rem;
}

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

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

.p-voice__heading {
  color: #000;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: center;
}

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

.p-voice__role {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-voice__label {
  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;
  margin-top: 10px;
  margin-top: .625rem;
  border: 1px solid #AAA;
  padding: 10px;
  padding: .625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-voice__labelText {
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-voice__name {
  margin-top: 10px;
  margin-top: .625rem;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

.p-voice__bio {
  margin-top: 10px;
  margin-top: .625rem;
  color: #333;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.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: 768px) {

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

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

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

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

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

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

  .p-case__number {
    left: 50px;
    left: 3.125rem;
    font-size: 100px;
    font-size: 6.25rem;
  }

  .p-case__topContent {
    padding-top: 48px;
    padding-top: 3rem;
  }

  .p-case__title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1;
  }

  .p-case__caption {
    margin-top: 10px;
    margin-top: .625rem;
    font-size: 12px;
    font-size: .75rem;
  }

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

  .p-case__opening--wide .p-case__openingText {
    padding: 50px;
    padding: 3.125rem;
  }

  .p-case__sectionLabel {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1;
  }

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

  .p-case__close {
    padding: 50px 60px;
    padding: 3.125rem 3.75rem;
  }

  .p-case__summary {
    gap: 50px;
    gap: 3.125rem;
  }

  .p-case__summaryHeader {
    gap: 11px;
    gap: .6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .p-case__summaryHeader--wide {
    gap: 50px;
    gap: 3.125rem;
  }

  .p-case__summaryMeta {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

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

  .p-case__faqQa {
    gap: 50px;
    gap: 3.125rem;
  }

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

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

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

  .p-case__imageDouble img {
    width: 50%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-contact {
    padding: 0 60px;
    padding: 0 3.75rem;
  }

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

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

  .p-contact__grid {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
  }

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

  .p-contact__info {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-footer {
    padding: 50px 21px;
    padding: 3.125rem 1.3125rem;
    min-height: 334px;
    min-height: 20.875rem;
  }

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

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

  .p-footer__address {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-footer__nav {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 204px;
    width: 12.75rem;
  }

  .p-footer__navListItem a {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-footer__copyright {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-header__inner {
    padding: 0 20px 0 30px;
    padding: 0 1.25rem 0 1.875rem;
    height: 81px;
    height: 5.0625rem;
  }

  .p-header__logo img {
    height: 50px;
    height: 3.125rem;
  }

  .p-header__nav {
    display: block;
  }

  .p-header__drawer {
    display: none;
  }

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

  .p-hero__title {
    font-size: 48px;
    font-size: 3rem;
  }

  .p-hero__visual {
    height: 416px;
    height: 26rem;
  }

  .p-hero__badge {
    font-size: 48px;
    font-size: 3rem;
  }

  .p-hero__subtitle {
    font-size: 36px;    /* 48px から 40px に変更 */
    font-size: 1.8rem;  /* 3rem から 2.5rem に変更 */
  }

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

  .p-introduction {
    padding: 0 60px;
    padding: 0 3.75rem;
  }

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

  .p-introduction__subheading {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
  }

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

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

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

  .p-stories {
    padding: 0 60px;
    padding: 0 3.75rem;
  }

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

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

  .p-stories__card {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-stories__number {
    font-size: 64px;
    font-size: 4rem;
  }

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

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

  .p-stories__company {
    font-size: 12px;
    font-size: .75rem;
  }

  .p-timeline {
    padding: 0 60px;
    padding: 0 3.75rem;
  }

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

  .p-top > * + * {
    margin-top: 130px;
    margin-top: 8.125rem;
  }

  .p-voice {
    padding: 0 60px;
    padding: 0 3.75rem;
  }

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

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

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

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

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

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

  .u-onlyTab {
    display: block;
  }
}

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

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

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

  .u-onlyPc {
    display: block;
  }

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

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

  .p-header__logo img {
    height: 69px;
    height: 4.3125rem;
  }
}

@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-unitless) / 375 * 100%);
  }
}

@media (hover: hover) {

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

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

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

  .p-stories__card:hover {
    opacity: .8;
  }
}
/*# sourceMappingURL=map/style.css.map */