@charset "UTF-8";
/*==========================================================================
Break Point
============================================================================*/
/*==========================================================================
Font
============================================================================*/
/*==========================================================================
Color
カラーコード変換
https://tech-unlimited.com/color.html
============================================================================*/
/*==========================================================================
box shadow
box-shadowジェネレータ https://www.bad-company.jp/box-shadow
==========================================================================*/
/*==========================================================================
Line Height
==========================================================================*/
/*==========================================================================
z-index Lv
==========================================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
/*==========================================================================
transition
==========================================================================*/
body {
  --transitionTime: 0.2s;
}

.browser-is-ff {
  --transitionTime: 0s;
}

/*==========================================================================
SVGをBase64コードに変換する

[Html] SVG塗りつぶしの色をBackground-Imageとして扱うときに変更する
https://code.i-harness.com/ja/q/cbfa3c
============================================================================*/
/*==========================================================================
フレキシブルな数字の生成 y=ax+bの形の一次関数グラフの動きをする余白を生成します。
============================================================================*/
/*==========================================================================
font-family
============================================================================*/
/* -----------------------------------------------------------------
ボタンのスライドアニメーション（左in左out）
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
ボタンのスライドアニメーション（右in右out）
----------------------------------------------------------------- */
/* -----------------------------------------------------------------
グロナビメニューの開閉時に中のコンテンツをnoneにするのを遅延させるアニメーション
----------------------------------------------------------------- */
@keyframes DisplayOfGlobalMenu {
  0% {
    display: none;
  }
  50% {
    display: block;
  }
  100% {
    display: block;
  }
}
/* -----------------------------------------------------------------
ヘッダーメニューのホバーアニメーション
----------------------------------------------------------------- */
@keyframes headerBarReturn {
  0% {
    transform: translate(16px, 0) rotate(180deg);
    width: calc(100% - 32px);
  }
  100% {
    width: 0;
  }
}
@keyframes headerBarHover {
  0% {
    width: 0;
    transform: translate(16px, 0);
  }
  100% {
    width: calc(100% - 32px);
  }
}
/*
矢印の動き
*/
@keyframes hoverArrowAnimation1 {
  0% {
    transform: none;
    opacity: 1;
  }
  49% {
    opacity: 0;
    transform: translateX(50%);
  }
  50% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes hoverArrowAnimation2 {
  0% {
    transform: rotate(-90deg);
    opacity: 1;
  }
  49% {
    opacity: 0;
    transform: translateY(-50%) rotate(-90deg);
  }
  50% {
    opacity: 0;
    transform: translateY(50%) rotate(-90deg);
  }
  100% {
    opacity: 1;
    transform: rotate(-90deg);
  }
}
@keyframes headerNavOpenAnimation {
  0% {
    left: 0;
    opacity: 0;
    visibility: visible;
  }
  100% {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes headerNavCloseAnimation {
  0% {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    left: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    left: -100%;
    visibility: hidden;
  }
}
/* Reset
ヘッダーとフッターとホームのメインコンテンツにだけ適応
----------------------------------------------------------------- */
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
l,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
table,
input,
textarea,
select,
option,
button {
  font-size: 100%;
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
main {
  display: block;
}

body,
input,
textarea {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

li::marker {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

img,
a img {
  border: none;
}

a {
  cursor: pointer;
}

input:not([type=checkbox]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Font
----------------------------------------------------------------- */

/* Base
----------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  color: #454C5B;
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #fbfbfb;
}
.preload * {
  transition: none !important;
  animation: none !important;
}

img {
  width: 100%;
  display: inline-block;
}

.browser-is-ff *:focus-visible {
  outline: solid 1px #454C5B;
  border-radius: 3px;
}
/*foundation
------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76rem;
}

/*layout
------------------------------------------------------*/
.l-service-page-bg {
  background-image: url("../images/common/background_image.png");
  background-repeat: repeat;
}

.l-header {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  transition: border-bottom 0.3s ease, background-color 0.3s ease;
}
.l-header.js-header-scrolled {
  border-bottom: solid 1rem #CFCFCF;
  background-color: #fff;
}

.l-header__inner {
  width: 100%;
  max-width: 1280rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64rem;
}

.l-header__logo-img {
  display: block;
}

.l-header__ul {
  display: flex;
}

.l-header__li a {
  padding: 8rem 12rem;
  font-size: 18rem;
  color: #050505;
  text-decoration: none;
}

.l-footer {
  border-top: solid 2rem #DCDCDC;
  width: 100%;
}

.l-footer__inner {
  margin: 0 auto;
  max-width: 1024rem;
  display: flex;
  justify-content: space-between;
}

.l-footer__nav-item {
  font-size: 16rem;
}
.l-footer__nav-item a {
  color: #050505;
}

/*project
------------------------------------------------------*/
.p-mv {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.p-mv::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: solid 1rem #1d54a7;
  background-color: transparent;
  bottom: 24rem;
  left: 50%;
  transform: translate(-50%, 0);
}

.p-mv__inner {
  width: 100%;
}

.p-mv__title {
  font-weight: bold;
  color: #050505;
  line-height: 1.3;
  text-align: center;
}

.p-mv__title-stg {
  color: #1d54a7;
}

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

.p-mv__cv {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 10rem;
  height: 10rem;
}

.p-mv__cv-btn {
  display: block;
  position: absolute;
  left: 0%;
  transform: translate(-50%, 0);
}

.p-mv__img {
  margin: 0 auto;
}
.p-mv__img img {
  display: block;
}

.p-place-table {
  width: 100%;
  max-width: 840rem;
  margin: 0 auto;
}

.p-place-table__inner {
  position: relative;
}
.p-place-table__inner::before {
  content: "";
  position: absolute;
  background-color: #EFEFEF;
  border: solid 3rem #E8E8E8;
  z-index: -1;
}

.p-place-table__table {
  table-layout: fixed;
}

.p-place-table__tr {
  font-weight: normal;
  border-bottom: solid 1rem #CFCFCF;
}
.p-place-table__tr th {
  text-align: center;
}
.p-place-table__tr td {
  text-align: center;
}

th.p-place-table__label {
  text-align: left;
}

.p-place-graph {
  position: relative;
}

.p-place-graph__deco1 {
  position: absolute;
}

.p-place-graph__deco2 {
  position: absolute;
}

.p-place-graph__deco3 {
  position: absolute;
}

.p-place-graph__cv {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-place-graph__main {
  border-radius: 6rem;
  background-color: #EFEFEF;
  border: solid 3rem #E8E8E8;
}

.p-place-graph__title {
  font-weight: bold;
  color: #050505;
  line-height: 1.3;
  text-align: center;
}

.p-place-graph__strong {
  font-weight: bold;
  color: #F14C00;
}

.p-place-graph__graph {
  margin: 0 auto;
  margin-top: 64rem;
}

.p-place-graph__graph-img {
  display: block;
}

.p-deco-tag {
  width: 100%;
  position: relative;
}

.p-deco-tag__bg-img {
  position: absolute;
  top: -190px;
  left: 0;
  width: 93%;
  z-index: -1;
}

.p-deco-tag__inner {
  max-width: 640rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24rem;
}

.p-deco-tag__tag {
  background-color: #EFEFEF;
  border: solid 3rem #E8E8E8;
  border-radius: 3rem;
  font-size: 20rem;
  font-weight: bold;
  color: #050505;
  padding: 3rem 12rem 1rem 12rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-sample__ul {
  max-width: 1024rem;
  margin: 0 auto;
}

.p-sample__li {
  background-color: #fff;
  border-radius: 6rem;
  border: solid 3rem #CFCFCF;
  position: relative;
}
.p-sample__li + .p-sample__li {
  margin-top: 64rem;
}
.p-sample__li.js-open .p-sample__content {
  border-bottom: solid 1rem #CFCFCF;
}
.p-sample__li.js-open .p-sample__content::after {
  display: none;
}

.p-sample__number {
  position: absolute;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke-width: 2rem;
  -webkit-text-stroke-color: #CFCFCF;
  line-height: 1;
}

.p-sample__flame {
  background-color: #CFCFCF;
  flex-shrink: 0;
}

.p-sample__title {
  font-weight: bold;
  color: #050505;
}

.p-sample__content {
  color: #050505;
  overflow: hidden;
  height: 90rem;
  position: relative;
  border: solid 1rem #CFCFCF;
  border-bottom: none;
  border-radius: 3rem;
  padding: 8rem;
}
.p-sample__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50rem;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.7), rgb(255, 255, 255));
}

.p-sample__btn {
  display: flex;
  justify-content: center;
  margin-top: 24rem;
}

.p-document__inner {
  display: flex;
  max-width: 1024rem;
  margin: 0 auto;
}

.p-document__item {
  border: solid 1rem #CFCFCF;
  background-color: #fff;
  border-radius: 6rem;
  display: flex;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-document__item:hover {
  transform: translate(0, -10rem);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
}

.p-document__img {
  background-color: #EFEFEF;
  border: solid 1rem #CFCFCF;
  border-radius: 3rem;
  padding: 8rem;
  flex-shrink: 0;
  width: 75rem;
  height: 75rem;
}

.p-document__title {
  font-weight: bold;
  color: #050505;
}

.p-document__desc {
  font-size: 12rem;
  color: #050505;
}

.p-faq__ul {
  max-width: 860rem;
  margin: 0 auto;
}

.p-faq__item {
  background-color: #EFEFEF;
  border-radius: 6rem;
  border: solid 1rem #E8E8E8;
}
.p-faq__item + .p-faq__item {
  margin-top: 20rem;
}

.p-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12rem;
  cursor: pointer;
}

.p-faq__question-text {
  font-weight: bold;
  color: #050505;
}

.p-faq__btn {
  border-right: solid 1rem #050505;
  border-bottom: solid 1rem #050505;
  transform: translate(0, -5rem) rotate(45deg);
  flex-shrink: 0;
}

.p-faq__answer {
  border-top: solid 1rem #E8E8E8;
  overflow: hidden;
  height: 0;
}

.p-faq__answer-text {
  color: #050505;
}

.p-grid-auto-fill {
  display: grid;
  --col-number: 3;
  --gap-row: 20rem;
  --gap-col: 20rem;
  grid-auto-rows: auto;
  gap: var(--gap-col) var(--gap-row);
}
.p-grid-auto-fill.-width_auto {
  grid-template-columns: repeat(auto-fit, auto);
}

.p-grid-auto-fill__item {
  width: 100%;
}

/*component
------------------------------------------------------*/
/*utility
------------------------------------------------------*/
.u-text {
  display: block;
  color: #050505;
}
.u-text.-section-title {
  color: #1d54a7;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}
.u-text.-bold {
  font-weight: bold;
}
.u-text.-accent {
  color: #F14C00;
}
.u-text.-center {
  text-align: center;
}

.u-list.-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-sheet {
  background-color: #EFEFEF;
  border: solid #E8E8E8 3rem;
  border-radius: 6rem;
  padding: 16rem;
}

.u-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6rem;
  cursor: pointer;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  --background-color: #1d54a7;
  --color: #fff;
  --border-color: #1d54a7;
  --bg-hover-color: #050505;
  background-color: var(--background-color);
  color: var(--color);
  border: solid 1rem var(--border-color);
  background-image: linear-gradient(90deg, var(--bg-hover-color), var(--bg-hover-color));
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0% 100%;
  transition: background-size 0.2s cubic-bezier(0.39, 0.575, 0.565, 1), color 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.u-btn.-full {
  width: 100%;
}
.u-btn.-primary {
  --background-color: #1d54a7;
  --color: #fff;
  --border-color: #1d54a7;
  --bg-hover-color: #050505;
}
.u-btn.-secondary {
  --background-color: #fff;
  --color: #1d54a7;
  --border-color: #1d54a7;
  --bg-hover-color: #1d54a7;
}
.u-btn.-shadow {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
}
.u-btn:hover {
  --color: #fff;
  background-position: 0% 100%;
  background-size: 100% 100%;
}

.u-section {
  width: 100%;
  padding: 0 12rem;
}
.u-section.-size-l {
  width: 100%;
}
.u-section.-size-l .u-section__inner {
  margin: 0 auto;
  max-width: 1024rem;
}

.u-text-hover-in {
  display: inline;
  padding-bottom: 0;
  background-image: linear-gradient(90deg, #050505, #050505);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0% 1px;
  transition: background-size 0.2s ease;
  text-decoration: none;
}

.u-separator-img {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 23.375em ) {
  html {
    font-size: 1px;
  }
}

@media only screen and (min-width: 23.4375em ) {
  html {
    /*
    375の時に10pxな設定
    計算： ( font-size / width ) * 100 = ( 1 / 375 ) * 100 = 2.66
    */
    font-size: 0.266vw;
  }
}

@media only screen and (min-width: 48.0625em ) {
  html {
    /*
    1400の時に10pxな設定
    計算： ( font-size / width ) * 100 = ( 1 / 1440 ) * 100 = 0.714
    */
    font-size: 0.083vw;
  }
  body {
    font-family: "Noto Sans JP", sans-serif, "メイリオ", "Meiryo", "ヒラギノ角ゴProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic";
  }
  .u-mt-d-4 {
    margin-top: 4rem;
  }
  .u-mt-d-8 {
    margin-top: 8rem;
  }
  .u-mt-d-12 {
    margin-top: 12rem;
  }
  .u-mt-d-16 {
    margin-top: 16rem;
  }
  .u-mt-d-24 {
    margin-top: 24rem;
  }
  .u-mt-d-28 {
    margin-top: 28rem;
  }
  .u-mt-d-32 {
    margin-top: 32rem;
  }
  .u-mt-d-48 {
    margin-top: 48rem;
  }
  .u-mt-d-54 {
    margin-top: 54rem;
  }
  .u-mt-d-64 {
    margin-top: 64rem;
  }
  .u-mt-d-128 {
    margin-top: 128rem;
  }
  .u-mt-d-148 {
    margin-top: 148rem;
  }
  .u-mt-d-198 {
    margin-top: 198rem;
  }
  .u-mb-d-n24 {
    margin-bottom: -24rem;
  }
  .l-header {
    padding: 14rem 64rem;
  }
  .l-header__logo {
    width: 120rem;
  }
  .l-header__cv {
    display: flex;
    align-items: center;
    gap: 8rem;
    margin-left: auto;
  }
  .l-footer {
    padding: 40rem;
  }
  .l-footer__logo-img {
    width: 150rem;
  }
  .l-footer__right {
    display: flex;
    gap: 64rem;
  }
  .p-mv {
    padding-top: 76rem;
    height: 100vh;
  }
  .p-mv::before {
    width: 230vw;
    height: 200vh;
  }
  .p-mv__inner {
    transform: translate(0, 40rem);
  }
  .p-mv__title {
    font-size: 48rem;
  }
  .p-mv__title-stg {
    font-size: 64rem;
  }
  .p-mv__desc {
    font-size: 18rem;
  }
  .p-mv__cv-btn {
    width: 280rem;
    top: 48rem;
  }
  .p-mv__img {
    width: 560rem;
  }
  .p-place-table__inner::before {
    left: 195rem;
    width: 20%;
    height: calc(100% + 40rem);
    top: -20rem;
    border-radius: 6rem;
  }
  .p-place-table__table {
    width: 100%;
  }
  .p-place-table__tr {
    font-size: 18rem;
  }
  .p-place-table__tr th {
    padding: 9rem 24rem 7rem 24rem;
  }
  .p-place-table__tr td {
    padding: 9rem 24rem 7rem 24rem;
  }
  th.p-place-table__label {
    width: 24%;
  }
  .p-place-graph__deco1 {
    width: 164rem;
    top: 0rem;
    left: 30rem;
  }
  .p-place-graph__deco2 {
    width: 70rem;
    top: 489rem;
    left: 655rem;
  }
  .p-place-graph__deco3 {
    width: 60rem;
    top: 396rem;
    left: 776rem;
  }
  .p-place-graph__main {
    padding: 54rem 48rem 100rem 48rem;
    margin-top: 48rem;
  }
  .p-place-graph__title {
    font-size: 32rem;
  }
  .p-place-graph__strong {
    font-size: 48rem;
  }
  .p-place-graph__graph {
    width: 840rem;
  }
  .p-service-img {
    display: flex;
    justify-content: space-between;
  }
  .p-service-img__img {
    width: 640rem;
  }
  .p-sample__li {
    padding: 32rem 32rem;
  }
  .p-sample__number {
    top: -47rem;
    right: 16rem;
    font-size: 84rem;
  }
  .p-sample__main {
    display: flex;
    gap: 32rem;
  }
  .p-sample__flame {
    width: 230rem;
    height: 130rem;
  }
  .p-sample__title {
    font-size: 28rem;
  }
  .p-sample__content {
    font-size: 18rem;
    margin-top: 8rem;
  }
  .p-sample__content::after {
    padding: 2rem;
    font-size: 14rem;
  }
  .p-document__inner {
    gap: 24rem 24rem;
    flex-wrap: wrap;
  }
  .p-document__item {
    width: calc(50% - 12rem);
    padding: 24rem 20rem;
    gap: 12rem;
  }
  .p-document__title {
    font-size: 18rem;
  }
  .p-faq__question {
    padding: 18rem 24rem 15rem 24rem;
  }
  .p-faq__question-text {
    font-size: 18rem;
  }
  .p-faq__btn {
    width: 14rem;
    height: 14rem;
  }
  .p-faq__answer-text {
    font-size: 16rem;
    padding: 12rem 24rem;
  }
  .p-grid-auto-fill.-col_2 {
    --col-number: 2;
  }
  .p-grid-auto-fill.-col_3 {
    --col-number: 3;
  }
  .p-grid-auto-fill.-gap30_30 {
    --gap-row: 30rem;
    --gap-col: 30rem;
  }
  .p-grid-auto-fill {
    grid-template-columns: repeat(var(--col-number), calc(100% / var(--col-number) - var(--gap-row) * (var(--col-number) - 1) / var(--col-number)));
  }
  .u-text.-section-title {
    font-size: 48rem;
  }
  .u-text.-size-s {
    font-size: 12rem;
  }
  .u-text.-size-m {
    font-size: 16rem;
  }
  .u-text.-size-d {
    font-size: 18rem;
  }
  .u-text.-size-l {
    font-size: 20rem;
  }
  .u-btn.-size-s {
    padding: 6rem 12rem 4rem 12rem;
    font-size: 14rem;
  }
  .u-btn.-size-m {
    padding: 9rem 16rem 7rem 16rem;
    font-size: 18rem;
  }
  .u-text-hover-in:hover {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
  a:hover .u-text-hover-in {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
  .u-br-pc {
    display: block;
  }
  .u-br-sp {
    display: none;
  }
}

@media print, screen and (min-width: 75em ) {
  html {
    font-size: 1px;
  }
}

@media only screen and (max-width: 48em ) {
  body {
    font-family: "Noto Sans JP", sans-serif, "メイリオ", "Meiryo", "ヒラギノ角ゴProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic";
  }
  .u-mt-s-4 {
    margin-top: 4rem;
  }
  .u-mt-s-8 {
    margin-top: 8rem;
  }
  .u-mt-s-12 {
    margin-top: 12rem;
  }
  .u-mt-s-16 {
    margin-top: 16rem;
  }
  .u-mt-s-18 {
    margin-top: 18rem;
  }
  .u-mt-s-24 {
    margin-top: 24rem;
  }
  .u-mt-s-32 {
    margin-top: 32rem;
  }
  .u-mt-s-48 {
    margin-top: 48rem;
  }
  .u-mt-s-64 {
    margin-top: 64rem;
  }
  .u-mt-s-128 {
    margin-top: 128rem;
  }
  .l-header {
    padding: 12rem 12rem;
  }
  .l-header__logo {
    width: 100rem;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__cv {
    display: none;
  }
  .l-footer {
    padding: 24rem 12rem;
  }
  .l-footer__logo-img {
    width: 100rem;
  }
  .p-mv {
    padding: 0 12rem;
    padding-top: 68rem;
    height: 100vh;
  }
  .p-mv::before {
    width: 230vw;
    height: 130vh;
  }
  .p-mv__title {
    font-size: 32rem;
  }
  .p-mv__title-stg {
    font-size: 32rem;
  }
  .p-mv__desc {
    font-size: 14rem;
  }
  .p-mv__cv-btn {
    width: 180rem;
    top: 24rem;
  }
  .p-mv__img {
    width: 360rem;
  }
  .p-place-table__inner {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    height: 290rem;
  }
  .p-place-table__inner::before {
    left: 123rem;
    width: 30%;
    height: 280rem;
    top: -10rem;
    border-radius: 3rem;
  }
  .p-place-table__table {
    width: -moz-max-content;
    width: max-content;
  }
  .p-place-table__tr {
    font-size: 16rem;
  }
  .p-place-table__tr th {
    padding: 6rem 12rem 4rem 12rem;
  }
  .p-place-table__tr td {
    padding: 6rem 12rem 4rem 12rem;
  }
  th.p-place-table__label {
    width: 20%;
  }
  .p-place-graph__deco1 {
    width: 100rem;
    top: 4rem;
    left: 9rem;
  }
  .p-place-graph__deco2 {
    width: 30rem;
    top: 304rem;
    left: 216rem;
  }
  .p-place-graph__deco3 {
    width: 30rem;
    top: 267rem;
    left: 265rem;
  }
  .p-place-graph__main {
    padding: 24rem 12rem 32rem 12rem;
    margin-top: 24rem;
  }
  .p-place-graph__title {
    font-size: 20rem;
  }
  .p-place-graph__strong {
    font-size: 28rem;
  }
  .p-place-graph__graph {
    width: 100%;
  }
  .p-service-img__img {
    width: 100%;
    margin-top: 24rem;
  }
  .p-sample__li {
    padding: 24rem 16rem 16rem 16rem;
  }
  .p-sample__number {
    top: -24rem;
    right: 12rem;
    font-size: 48rem;
  }
  .p-sample__flame {
    width: 300rem;
    height: 180rem;
  }
  .p-sample__title {
    font-size: 18rem;
    margin-top: 24rem;
  }
  .p-sample__content {
    font-size: 14rem;
    margin-top: 4rem;
  }
  .p-sample__content::after {
    font-size: 10rem;
  }
  .p-document__inner {
    flex-direction: column;
    gap: 12rem;
  }
  .p-document__item {
    width: 100%;
    padding: 12rem 12rem;
    gap: 8rem;
  }
  .p-document__title {
    font-size: 16rem;
  }
  .p-faq__question {
    padding: 12rem 18rem 11rem 18rem;
  }
  .p-faq__question-text {
    font-size: 16rem;
  }
  .p-faq__btn {
    width: 10rem;
    height: 10rem;
  }
  .p-faq__answer-text {
    font-size: 14rem;
    padding: 8rem 18rem;
  }
  .p-grid-auto-fill.-col_2 {
    --col-number: 1;
  }
  .p-grid-auto-fill.-col_3 {
    --col-number: 1;
  }
  .p-grid-auto-fill.-gap30_30 {
    --gap-row: 0;
    --gap-col: 30rem;
  }
  .p-grid-auto-fill {
    grid-template-columns: 1;
  }
  .u-text.-section-title {
    font-size: 32rem;
  }
  .u-text.-size-s {
    font-size: 12rem;
  }
  .u-text.-size-m {
    font-size: 16rem;
  }
  .u-text.-size-d {
    font-size: 16rem;
  }
  .u-text.-size-l {
    font-size: 18rem;
  }
  .u-btn.-size-s {
    padding: 4rem 12rem 2rem 12rem;
    font-size: 14rem;
  }
  .u-btn.-size-m {
    padding: 6rem 16rem 4rem 16rem;
    font-size: 16rem;
  }
  .u-br-pc {
    display: none;
  }
  .u-br-sp {
    display: block;
  }
  .u-sp-none {
    display: none;
  }
}