@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
============================================================================*/
/*==========================================================================
font-size
============================================================================*/
/*==========================================================================
Retina対応
============================================================================*/
/* -----------------------------------------------------------------
ボタンのスライドアニメーション（左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;
  }
  49% {
    opacity: 0;
    transform: translateX(30%);
  }
  50% {
    opacity: 1;
    transform: translateX(-40%);
  }
  51% {
    transform: translateX(-30%);
  }
  100% {
    transform: none;
  }
}
@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
----------------------------------------------------------------- */

body {
  font-size: 18px;
}

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

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

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

.browser-is-ff *:focus-visible {
  outline: solid 1px #403134;
  border-radius: 3px;
}

.l-header {
  width: 100%;
  transition: background-color 0.2s cubic-bezier(0.47, 0, 0.745, 0.715), border-bottom-color 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.l-header.-contact {
  height: auto;
  max-height: auto;
  padding: 0;
}
.l-header.-contact .l-header__content {
  position: relative;
}
.l-header.-contact .l-header__header-warp {
  padding: 24rem 0 0 0;
}
.l-header.-front .l-header__page-title, .l-header.-front .l-header__breadcrumb {
  display: none;
}

.l-header__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.l-header__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6rem;
}
.l-header__bg::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 6rem;
  z-index: 1;
}

.l-header__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.l-header__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.l-header__header-warp {
  display: flex;
  gap: 32rem;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo {
  width: 100%;
  flex-shrink: 0;
}
.l-header__logo img {
  display: block;
}

.l-header__contact-area {
  display: flex;
  gap: 42rem;
}

.l-header__contact-phone {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8rem;
}

.l-header__phone-icon {
  width: 27rem;
  height: 27rem;
  fill: #fff;
}

.l-header__phone-num {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 28rem;
  font-weight: 500;
  line-height: 1;
}
.l-header__nav-item.-current {
  font-weight: bold;
  position: relative;
}
.l-header__nav-item.-current::before {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 100%;
  display: block;
}

.l-header__nav-close {
  background-color: transparent;
  position: relative;
  border: none;
  width: 34rem;
  height: 34rem;
  cursor: pointer;
}
.l-header__nav-close::before, .l-header__nav-close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4rem;
  background-color: #403134;
  border-radius: 10rem;
  top: 50%;
  left: 50%;
}
.l-header__nav-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-header__nav-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.l-header__nav-contact-mail {
  margin-top: 18rem;
}
.l-main-content.-size_s .l-main-content__inner {
  max-width: 740rem;
}
.l-main-content.-size_m .l-main-content__inner {
  max-width: 960rem;
}
.l-main-content.-size_l .l-main-content__inner {
  max-width: 1178rem;
}
.l-main-content__bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-main-content__bg video {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.l-main-content__bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.l-main-content__inner {
  width: 100%;
  max-width: 1024rem;
  margin: auto;
}

.l-footer__inner {
  margin: auto;
  width: 100%;
}
.l-footer__nav-li a {
  font-size: 12rem;
  text-decoration: none;
  color: #403134;
}
.l-footer__nav-li.-blank a {
  display: flex;
  gap: 4rem;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}

.l-footer__nav-blank {
  width: 14rem;
  height: 14rem;
}

.l-footer__copy {
  display: block;
  width: 100%;
  font-size: 12rem;
  color: #403134;
}

.l-sp-contact {
  position: fixed;
  z-index: 300;
  left: 0;
  bottom: -40rem;
  width: 100%;
  height: 40rem;
  transition: bottom 0.2s ease;
}
.l-sp-contact.-show {
  bottom: 0;
}

.l-sp-contact__phone {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #008F48;
}

.l-sp-contact__mail {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #EAE8DD;
  border: none;
}

.l-sp-contact__phone-icon {
  fill: #fff;
  width: 22rem;
  height: 22rem;
}

.l-sp-contact__mail-icon {
  fill: #403134;
  width: 28rem;
  height: 28rem;
}

.l-main-cta {
  position: relative;
  overflow: hidden;
}

.l-main-cta__deco {
  position: absolute;
  height: 100%;
  width: 100%;
}
.l-main-cta__deco img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.l-main-cta__deco::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}

.l-main-cta__deco2 {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px rgb(184, 184, 184);
  white-space: nowrap;
}

.l-main-cta__inner {
  isolation: isolate;
  z-index: 1;
  width: 100%;
  margin: auto;
}

.l-main-cta__message {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.l-main-cta__msg-sub {
  color: #fff;
}

.l-main-cta__phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.l-main-cta__phone-icon {
  fill: #fff;
  display: block;
}

.l-main-cta__mail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.l-main-cta__mail-icon {
  fill: #fff;
  display: block;
}

.l-main-cta__phone-num {
  margin-top: 16rem;
}
.l-main-cta__phone-num a {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}

.l-main-cta__phone-sub {
  color: #fff;
  text-align: center;
}

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

.p-grid {
  grid-template-columns: repeat(12, 1fr);
}
.p-grid .p-grid__child.-col-1 {
  grid-column: 1 span;
}
.p-grid .p-grid__child.-col-2 {
  grid-column: 2 span;
}
.p-grid .p-grid__child.-col-3 {
  grid-column: 3 span;
}
.p-grid .p-grid__child.-col-4 {
  grid-column: 4 span;
}
.p-grid .p-grid__child.-col-5 {
  grid-column: 5 span;
}
.p-grid .p-grid__child.-col-6 {
  grid-column: 6 span;
}
.p-grid .p-grid__child.-col-7 {
  grid-column: 7 span;
}
.p-grid .p-grid__child.-col-8 {
  grid-column: 8 span;
}
.p-grid .p-grid__child.-col-9 {
  grid-column: 9 span;
}
.p-grid .p-grid__child.-col-10 {
  grid-column: 10 span;
}
.p-grid .p-grid__child.-col-11 {
  grid-column: 11 span;
}
.p-grid .p-grid__child.-col-12 {
  grid-column: 12 span;
}
.p-definition-list dt {
  background-color: #EAE8DD;
  color: #403134;
  font-weight: bold;
  font-size: 16rem;
  padding: 18rem 24rem;
  flex-shrink: 0;
}
.p-definition-list dd {
  width: 100%;
  padding: 18rem 24rem;
  font-size: 16rem;
  color: #403134;
}

.p-form {
  margin-top: 64rem;
}
.p-form__block > p {
  width: 200rem;
  flex-shrink: 0;
}
.p-form__block + .p-form__block {
  margin-top: 32rem;
}

.p-form__block-lv-2 {
  font-size: 16rem;
  font-weight: bold;
  margin-top: 12rem;
  display: block;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.p-form__field {
  width: 100%;
}
.p-form__field > p {
  display: block;
  width: 100%;
}
.p-form__field input {
  font-size: 16rem;
  border: 1px solid #403134;
  padding: 14rem 16rem 12rem 16rem;
  border-radius: 6rem;
  display: block;
  width: 100%;
}
.p-form__field input::-moz-placeholder {
  color: #C7C7C7;
}
.p-form__field input::placeholder {
  color: #C7C7C7;
}
.p-form__field textarea {
  font-size: 16rem;
  border: 1px solid #403134;
  padding: 14rem 16rem 12rem 16rem;
  border-radius: 6rem;
  display: block;
  width: 100%;
}
.p-form__field textarea::-moz-placeholder {
  color: #C7C7C7;
}
.p-form__field textarea::placeholder {
  color: #C7C7C7;
}

.p-form__submit {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 64rem auto 0 auto;
}
.p-form__submit .wpcf7-submit {
  background-color: #403134;
  padding: 12rem 24rem;
  color: #fff;
  width: 100%;
  text-decoration: none;
  border-radius: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16rem;
  transition: opacity 0.3s ease;
}
.p-form__submit .wpcf7-submit:hover {
  opacity: 0.7;
}

.wpcf7-not-valid-tip {
  color: #EC4365;
  font-size: 12rem;
}

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

.p-slider__slide-img {
  -o-object-fit: cover;
     object-fit: cover;
  word-wrap: 100%;
  height: 100%;
  display: block;
}

.p-slider__button-prev {
  position: absolute;
  display: block;
  border: solid 2px #403134;
  border-radius: 50%;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 100;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.p-slider__button-prev::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  transition: border-color 0.2s ease;
}
.p-slider__button-prev:hover {
  background-color: #403134;
}
.p-slider__button-prev:hover::before {
  border-color: #fff;
}

.p-slider__button-next {
  position: absolute;
  display: block;
  width: 60rem;
  height: 60rem;
  border: solid 2px #403134;
  border-radius: 50%;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 100;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.p-slider__button-next::before {
  content: "";
  position: absolute;
  border-right: solid 3rem #403134;
  border-top: solid 3rem #403134;
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  transition: border-color 0.2s ease;
}
.p-slider__button-next:hover {
  background-color: #403134;
}
.p-slider__button-next:hover::before {
  border-color: #fff;
}

.p-slider__nav {
  margin: auto;
  overflow: hidden;
}

.p-slider__nav-item {
  cursor: pointer;
}
.p-slider__nav-item img {
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide-thumb-active {
  position: relative;
}
.swiper-slide-thumb-active::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}

.p-reco-articles__item {
  display: flex;
  gap: 20rem;
  align-items: center;
  position: relative;
}
.p-reco-articles__item + .p-reco-articles__item {
  margin-top: 12rem;
  padding-top: 12rem;
  border-top: 1px solid #EAE8DD;
}

.p-reco-articles__img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100rem;
  height: 100rem;
  border-radius: 6rem;
}

.p-reco-articles__title {
  color: #403134;
  font-size: 14rem;
  text-decoration: none;
}

.p-reco-articles__tag {
  position: absolute;
  right: 10rem;
  bottom: 0rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  color: #403134;
  font-size: 14rem;
}

.p-reco-articles__tag-icon {
  width: 13rem;
  height: 13rem;
  fill: #403134;
}

.p-article__main {
  width: 100%;
}
.p-top-section__title .p-top-section__title-en {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: transparent;
  line-height: 0.7;
}
.p-top-section__title .p-top-section__title-jp {
  color: #403134;
  font-weight: normal;
  line-height: 1;
}

.p-top-feature__img-area {
  position: relative;
  margin-left: auto;
}
.p-top-feature__img-area::before {
  content: "";
  position: absolute;
  top: -32rem;
  left: 32rem;
  width: 100vw;
  height: 544rem;
  background-color: #EAE8DD;
  border-radius: 6rem 0 0 6rem;
  z-index: -1;
}

.p-top-feature__img-item {
  border-radius: 6rem;
  overflow: hidden;
  position: relative;
}
.p-top-feature__img-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.p-top-feature__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-top-feature__main-msg {
  position: absolute;
  color: #fff;
}

.p-top-feature__sug-item {
  flex-shrink: 1;
  width: 100%;
}
.p-top-feature__sug-item img {
  width: 100%;
  border-radius: 6rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top-feature__sug-item p {
  color: #403134;
  margin-top: 8rem;
}

.p-top-whywe__first {
  width: 100%;
}

.p-top-whywe__first-title {
  font-weight: bold;
  color: #403134;
}

.p-top-whywe__first-more {
  width: 260rem;
  margin: 24rem auto 0 auto;
}

.p-top-whywe__second {
  width: 100%;
}

.p-top-whywe__second-item {
  border-radius: 6rem;
  overflow: hidden;
  position: relative;
  display: block;
}
.p-top-whywe__second-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.p-top-whywe__second-item:hover::before {
  opacity: 1;
}
.p-top-whywe__second-item:hover .p-top-whywe__second-text {
  opacity: 1;
}
.p-top-whywe__second-item.-illust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 1px #403134;
}
.p-top-whywe__second-item.-illust::before {
  display: none;
}

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

.p-top-whywe__second-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  transform: translate(-50%, -50%);
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.p-top-whywe__second-label {
  position: absolute;
  bottom: 7rem;
  left: 0;
  width: 100%;
  text-align: right;
  color: #fff;
  padding-right: 20rem;
}
.p-top-whywe__second-illust.-small {
  width: 130rem;
  height: 130rem;
}

.p-top-whywe__second-subtitle {
  color: #403134;
  width: 200rem;
  margin-top: 12rem;
  text-align: center;
}

.p-top-issue {
  position: relative;
  display: flex;
  margin: auto;
  width: 960rem;
  margin-top: 128rem;
}
.p-top-issue__list-space {
  height: 50vh;
}

.p-top-issue__list {
  width: 50%;
}

.p-top-issue__li {
  padding: 16rem;
  border: solid 2px #C7C7C7;
  border-radius: 6rem;
  margin-right: 64rem;
  color: #C7C7C7;
  transition: all 0.2s ease;
}
.p-top-issue__li + .p-top-issue__li {
  margin-top: 128rem;
}
.p-top-issue__li.-active {
  margin-right: 0;
  border: solid 2px #403134;
  box-shadow: 0px 3px 10px rgba(218, 144, 144, 0.1);
  color: #403134;
}

.p-top-issue__solution {
  position: relative;
  width: 50%;
}

.p-top-issue__solution-text-wrap {
  position: sticky;
  top: 50vh;
  width: 360rem;
  margin-left: auto;
  transform: translate(0, -50%);
}

.p-top-issue__solution-text {
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-issue__solution-text.-show {
  position: static;
  opacity: 1;
}

.p-top-issue-sp__li + .p-top-issue-sp__li {
  margin-top: 24rem;
}

.p-top-issue-sp__question {
  border: solid 1rem #403134;
  padding: 16rem;
  padding-right: 24rem;
  border-radius: 6rem;
  position: relative;
}
.p-top-issue-sp__question::before, .p-top-issue-sp__question::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 3rem;
  background-color: #403134;
  border-radius: 10rem;
  top: 50%;
  right: 20rem;
  transform: translate(0, -50%);
  display: block;
}
.p-top-issue-sp__question::after {
  transition: transform 0.2s ease;
  transform: translate(0, -50%) rotate(-90deg);
}
.p-top-issue-sp__question.open::after {
  transform: translate(0, -50%);
}

.p-top-issue-sp__answer {
  overflow: hidden;
  padding: 16rem;
  font-size: 16rem;
  color: #403134;
}

.p-top-case {
  display: flex;
  margin: auto;
}

.p-top-case__desc-wrap {
  width: 50%;
  position: relative;
}

.p-top-case__desc-area {
  position: sticky;
  top: 50vh;
  width: 100%;
  transform: translate(0, -50%);
  margin-top: 100rem;
}

.p-top-case__desc-item {
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 370rem;
  pointer-events: none;
}
.p-top-case__desc-item.-show {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.p-top-case__desc-btn {
  display: flex;
  gap: 24rem;
}

.p-top-case__cord-item {
  text-decoration: none;
  display: block;
}

.p-top-case__cord-img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6rem;
}

.p-top-case__paging {
  display: flex;
  align-items: center;
  gap: 12rem;
  position: absolute;
  bottom: -128rem;
  left: 0;
  width: 400rem;
}

.p-top-case__paging-start,
.p-top-case__paging-end {
  border-radius: 50%;
  border: solid 1px #403134;
  font-size: 14rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #403134;
  flex-shrink: 0;
  width: 30rem;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-top-case__paging-bar {
  width: 100%;
  background-color: #fff;
  border-radius: 10em;
  height: 7rem;
  border: solid 1px #403134;
  position: relative;
}
.p-top-case__paging-bar span {
  border: 10rem;
  height: 100%;
  background-color: #403134;
  width: 25%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  border-radius: 10rem;
}

.p-preview {
  position: fixed;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
  display: none;
  top: 0;
  left: 0;
  opacity: 0;
}

.p-preview__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100vh - 100rem);
  background-color: #fff;
}

.p-preview__close {
  position: absolute;
  top: 10rem;
  right: 10rem;
  width: 45rem;
  height: 45rem;
  cursor: pointer;
}
.p-preview__close::before, .p-preview__close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30rem;
  height: 3rem;
  border-radius: 10rem;
  -webkit-backdrop-filter: invert(100%) grayscale(100%) contrast(100);
          backdrop-filter: invert(100%) grayscale(100%) contrast(100);
}
.p-preview__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-preview__close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-preview__img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.c-button {
  --background-color: #403134;
  --color: #fff;
  --border-color: #403134;
  --bg-hover-color: #767676;
  background-color: var(--background-color);
  color: var(--color);
  border: solid 1rem var(--border-color);
  width: 100%;
  text-decoration: none;
  border-radius: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  cursor: pointer;
  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);
}
.c-button.-primary {
  --background-color: #403134;
  --color: #fff;
}
.c-button.-primary .c-button__icon {
  stroke: var(--color);
  fill: var(--color);
}
.c-button.-outline-primary {
  --background-color: transparent;
  --color: #403134;
  --border-color: #403134;
  --bg-hover-color: #403134;
}
.c-button.-outline-primary .c-button__icon {
  stroke: var(--color);
  fill: var(--color);
}
.c-button.-outline-white {
  --background-color: transparent;
  --color: #fff;
  --border-color: #fff;
  --bg-hover-color: #fff;
}
.c-button.-outline-white .c-button__icon {
  stroke: var(--color);
  fill: var(--color);
}

.c-button__icon {
  width: 16rem;
  height: 11rem;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  stroke: #403134;
}

.c-button__text {
  font-weight: 500;
}

.c-tab-bar__ul {
  display: flex;
  position: relative;
}
.c-tab-bar__ul::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2rem;
  bottom: -2rem;
  left: 0;
  background-color: #E2E2E2;
}

.c-tab-bar__li a {
  font-size: 18rem;
  color: #403134;
  text-decoration: none;
  padding: 0rem 18rem 8rem 18rem;
  display: block;
}
.c-tab-bar__li.-current {
  font-weight: bold;
  position: relative;
}
.c-tab-bar__li.-current::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2rem;
  background-color: #403134;
  bottom: -2rem;
  left: 0;
}

.c-gallery-card {
  width: 100%;
  overflow: hidden;
  display: block;
}

.c-gallery-card__img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transition: transform 0.2s ease;
  height: 100%;
  width: 100%;
  cursor: zoom-in;
}

.c-pagination {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.c-pagination__ul {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.c-pagination__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: solid 1rem #EAE8DD;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  border-radius: 3rem;
  transition: background-color 0.2s cubic-bezier(0.47, 0, 0.745, 0.715), border-color 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.c-pagination__item.-current {
  background-color: #403134;
  border-color: #403134;
  pointer-events: none;
}
.c-pagination__item.-current a {
  text-decoration: none;
  pointer-events: none;
  color: #fff;
}
.c-pagination__item.-disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #EAE8DD;
}
.c-pagination__item.-disabled .c-pagination__icon {
  fill: #767676;
}
.c-pagination__item + .c-pagination__item {
  margin-left: 8rem;
}
.c-pagination__item a {
  transition: color 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  text-decoration: none;
  color: #403134;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-pagination__icon {
  display: block;
  transition: fill 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.c-pagination__item.-head .c-pagination__icon {
  transform: rotate(-180deg);
}

.c-pagination__item.-prev .c-pagination__icon {
  transform: rotate(-180deg);
}

.c-breadcrumb {
  display: flex;
  --border-color: #767676;
  --color: #403134;
  --fill-color: #403134;
  --current-color: #767676;
}
.c-breadcrumb.-white {
  --color: #fff;
  --current-color: rgba(255, 255, 255, 0.5);
  --border-color: #fff;
  --fill-color: #fff;
}

.c-breadcrumb__item {
  position: relative;
  line-height: 1.75;
  font-size: 12px;
  color: var(--color);
  font-weight: 500;
  white-space: nowrap;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 57%;
  width: 6px;
  height: 6px;
  border-top: solid 1px var(--border-color);
  border-right: solid 1px var(--border-color);
  transform: translate(0, -50%) rotate(45deg);
  pointer-events: none;
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 27px;
}
.c-breadcrumb__item.-current {
  font-weight: 400;
  color: var(--current-color);
}
.c-breadcrumb__item.-current span {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  display: inherit;
}
.c-breadcrumb__item a {
  text-decoration: none;
  color: var(--color);
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0% 1px;
  transition: background-size 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.c-breadcrumb__item:not(.-current):hover a {
  background-position: 0% 100%;
  background-size: 100% 1px;
}

.c-breadcrumb__icon {
  width: 20px;
  height: 20px;
  fill: var(--fill-color);
}

.c-case-selector {
  width: 100%;
}

.c-case-selector__selectbox {
  width: 100%;
  border: 1px solid #403134;
  border-radius: 3rem;
  padding: 6rem;
}

.c-list {
  --color: #403134;
  --bg-color: #403134;
  line-height: 2;
  font-size: 16px;
}
.c-list.-disc .c-list__item::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--bg-color);
  top: 13px;
  left: 12px;
}

.c-list__item {
  position: relative;
  color: var(--color);
  padding-left: 25px;
  line-height: 1.75;
}
.c-list__item a {
  text-decoration: none;
  color: var(--color);
}

.c-link {
  color: #403134;
  width: -moz-max-content;
  width: max-content;
}
.c-link.-blank {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.c-link.-blank svg {
  width: 18rem;
  height: 18rem;
  fill: #403134;
}

.c-category {
  display: flex;
  align-items: center;
  gap: 4rem;
  color: #403134;
  font-size: 14rem;
}

.c-category__icon {
  width: 13rem;
  height: 13rem;
  fill: #403134;
}

.u-flex {
  display: flex;
}

.u-font {
  --color: #403134;
  --lh: 1.5;
  --solid-padding: 40rem;
  font-size: var(--size);
  color: var(--color);
  line-height: var(--lh);
}
.u-font.-size_xxl {
  --lh: 1.5;
}
.u-font.-size_xl {
  --lh: 1.5;
}
.u-font.-size_l {
  --lh: 1.5;
}
.u-font.-size_m {
  --lh: 1.5;
}
.u-font.-size_xs {
  --lh: 1.5;
}
.u-font.-size_xxs {
  --lh: 1.5;
}
.u-font.-white {
  --color: #fff;
}
.u-font.-gray {
  --color: #767676;
}
.u-font.-primary {
  --color: #403134;
}
.u-font.-error {
  --color: #EC4365;
}
.u-font.-bold {
  font-weight: bold;
}
.u-font.-number {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}
.u-font.-medium {
  font-weight: 500;
}
.u-font.-normal {
  font-weight: 400;
}
.u-font.-solid {
  background-image: linear-gradient(90deg, #403134 0%, #403134 25%, #EAE8DD 25%, #EAE8DD 100%);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% 2rem;
}
.u-text-hover-in {
  display: inline;
  padding-bottom: 0;
  background-image: linear-gradient(90deg, #403134, #403134);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0% 1px;
  transition: background-size 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.u-text-hover-in.-white {
  background-image: linear-gradient(90deg, #fff, #fff);
}
.u-text-hover-in.-gray100 {
  background-image: linear-gradient(90deg, #767676, #767676);
}

/*
矢印の動き
*/

.u-scroll-off {
  overflow: hidden;
} /*
複数行の文書を省略する
*/
.u-line-clamp {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.u-line-clamp.-line_3 {
  -webkit-line-clamp: 3;
}
.wp-edit-content h2:not([class]) {
  color: #403134;
  background-image: linear-gradient(90deg, #403134 0%, #403134 25%, #EAE8DD 25%, #EAE8DD 100%);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% 2rem;
}
.wp-edit-content h2:not([class]):first-child {
  margin-top: 0;
}
.wp-edit-content h3:not([class]) {
  font-weight: bold;
  color: #403134;
}
.wp-edit-content h4:not([class]) {
  font-weight: bold;
  color: #403134;
}
.wp-edit-content ol {
  margin-top: 0;
  line-height: 1.75;
}
.wp-edit-content ol li:not([class]) + li:not([class]) {
  margin-top: 18rem;
}
.wp-edit-content ul:not([class]) {
  margin-top: 24rem;
}
.wp-edit-content ul:not([class]) li:not([class]) {
  position: relative;
}
.wp-edit-content ul:not([class]) li:not([class]):not(:first-child) {
  margin-top: 10rem;
}
.wp-edit-content ul:not([class]) li:not([class])::before {
  content: "";
  position: absolute;
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #403134;
}
.wp-edit-content .p-feature-panel__text br {
  display: block;
}
.wp-edit-content a:not([class]) {
  display: inline;
  color: #EAE8DD;
  text-decoration: none;
  padding-bottom: 0;
  background-image: linear-gradient(90deg, #403134, #403134);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0% 1rem;
  transition: background-size 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-image: linear-gradient(90deg, #EAE8DD, #EAE8DD);
}
.wp-edit-content a[target=_blank]:not([class]) {
  position: relative;
  margin-right: 30rem;
}
.wp-edit-content a[target=_blank]:not([class])::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  width: 20rem;
  height: 20rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M10.2%206.6v1.8H5.7v9.9h9.9v-4.5h1.8v5.4a.9.9%200%200%201-.9.9H4.8a.9.9%200%200%201-.9-.9V7.5a.9.9%200%200%201%20.9-.9Zm9.9-2.7v7.2h-1.8V6.972l-7.014%207.015-1.272-1.273L17.027%205.7H12.9V3.9Z%22%20fill%3D%22%23047FAC%22%2F%3E%3C%2Fsvg%3E");
  transform: translate(10rem, 0);
}
.wp-edit-content .wp-block-table:not(:first-child) {
  margin: 0;
}
.wp-edit-content .wp-block-table table:not([class]) {
  margin: 0rem;
}
.wp-edit-content img:not([class]) {
  width: auto;
  max-width: 100%;
}
.wp-edit-content .wp-block-quote p {
  margin: 0;
}
.wp-edit-content .wp-block-quote p + cite {
  margin-top: 16rem;
  font-size: 12rem;
  color: #767676;
}
.wp-edit-content hr {
  height: 1rem;
  background-color: #EAE8DD;
  border: none;
}
.wp-edit-content .wp-block-image img {
  width: auto;
}
.wp-edit-content pre {
  background-color: #767676;
  padding: 30rem 30rem;
  color: #fff;
  overflow: auto;
}
.wp-edit-content .wp-block-image .aligncenter {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.wp-edit-content .wp-block-image .aligncenter img {
  margin: 0 auto;
  display: block;
}
.wp-edit-content .wp-block-image figure > figcaption {
  word-break: break-all;
  display: block;
}

.wp-block-table {
  overflow-x: auto;
}
.wp-block-table table {
  width: -moz-max-content;
  width: max-content;
}
.wp-block-table th:not([class]) {
  border: solid 1rem #EAE8DD;
  font-weight: 400;
  line-height: 1.5;
}
.wp-block-table td {
  border: solid 1rem #EAE8DD;
  font-weight: 400;
}

.browser-is-ff .wp-edit-content a[target=_blank]:not([class]) {
  margin-right: 20rem;
}
.browser-is-ff .wp-edit-content a[target=_blank]:not([class])::after {
  position: relative;
  bottom: -2rem;
  display: inline-block;
  width: 20rem;
  height: 20rem;
  right: 0;
  left: auto;
}

/*
Theme Name: chuuouhikari-theme
Theme URI:
Author: urasaki
Author URI:
Description:
*/
/*foundation
------------------------------------------------------*/
/*layout
------------------------------------------------------*/
/*project
------------------------------------------------------*/
/*component
------------------------------------------------------*/
/*utility
------------------------------------------------------*/

.u-line {
  border-top: solid 1px var(--color);
}
.u-line.-gray {
  --color: #EAE8DD;
}

.u-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  display: inherit;
}

@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 = ( 10 / 375 ) * 100 = 2.66
    */
    font-size: 0.266vw;
  }
  .wp-edit-content .p-col-list .wp-block-column + .wp-block-column {
    margin-top: 10rem !important;
  }
  .wp-edit-content .has-text-align-center {
    text-align: left;
  }
  .wp-edit-content .wp-block-quote {
    padding: 34rem 10rem;
    margin-top: 32rem;
    margin-bottom: 32rem;
  }
  .wp-edit-content hr {
    margin-top: 32rem;
    margin-bottom: 32rem;
  }
}

@media only screen and (min-width: 48.0625em ) {
  html {
    /*
    1400の時に10pxな設定
    計算： ( font-size / width ) * 100 = ( 10 / 1400 ) * 100 = 0.714
    */
    font-size: 0.0714vw;
  }
  body {
    font-family: "Noto Sans JP", sans-serif, "メイリオ", "Meiryo", "ヒラギノ角ゴProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic";
    font-size: 16rem;
  }
  .l-header {
    padding: 16rem 16rem 0rem 16rem;
    height: 100vh;
    max-height: 436rem;
  }
  .l-header.-front {
    padding: 16rem 16rem 0rem 16rem;
    height: 100vh;
    max-height: calc(100vh - 16rem);
  }
  .l-header.-front .l-header__content-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .l-header.-front .l-header__nav-area .l-header__nav {
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
  .l-header.-front .l-header__nav-area .l-header__nav-item {
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
  .l-header.-front .l-header__nav-area .l-header__nav-item + .l-header__nav-item {
    margin-top: 32rem;
  }
  .l-header.-front .l-header__aside {
    padding-bottom: 100rem;
  }
  .l-header.-front .l-header__top-msg .pc {
    display: block;
    width: 605rem;
  }
  .l-header.-front .l-header__top-msg .sp {
    display: none;
  }
  .l-header__content {
    padding: 0 100rem;
  }
  .l-header__content-inner {
    max-width: 1200rem;
    margin: 0 auto;
  }
  .l-header__header-warp {
    padding: 0 100rem;
    padding: 43rem 0 26rem 0;
    border-bottom: 1rem solid #fff;
  }
  .l-header__logo {
    max-width: 340rem;
  }
  .l-header__nav-warp {
    margin-top: 32rem;
  }
  .l-header__sp-menu {
    display: none;
  }
  .l-header__nav {
    display: flex;
    gap: 24rem;
    align-items: center;
  }
  .l-header__nav-item a {
    color: #fff;
    font-size: 18rem;
    text-decoration: none;
  }
  .l-header__nav-item.-current::before {
    background-color: #fff;
    height: 2rem;
  }
  .l-header__nav-blank {
    transform: translate(0, 4rem);
    fill: #fff;
    width: 24rem;
    height: 24rem;
    margin-left: 8rem;
  }
  .l-header__page-title {
    margin-top: 51rem;
    margin-bottom: 57rem;
  }
  .l-header__aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-header__sub-logo {
    width: 90rem;
  }
  .l-header__nav-sp-top {
    display: none;
  }
  .l-header__nav-logo {
    display: none;
  }
  .l-header__nav-contact {
    display: none;
  }
  .l-main-content {
    padding: 128rem 48rem;
  }
  .l-footer {
    padding: 24rem 48rem;
  }
  .l-footer__inner {
    max-width: 1200rem;
  }
  .l-footer__logo {
    display: flex;
    align-items: center;
    gap: 16rem;
  }
  .l-footer__logo-main {
    width: 160rem;
  }
  .l-footer__logo-sub {
    width: 60rem;
  }
  .l-footer__nav {
    margin-top: 12rem;
  }
  .l-footer__nav-ul {
    display: flex;
    gap: 24rem;
  }
  .l-footer__nav-li {
    position: relative;
  }
  .l-footer__nav-li:not(:last-child)::before {
    content: "";
    position: absolute;
    display: block;
    height: 12rem;
    width: 1rem;
    background-color: #403134;
    top: 4rem;
    right: -14rem;
  }
  .l-footer__nav-li a {
    display: block;
  }
  .l-footer__copy {
    margin-top: 12rem;
    text-align: right;
  }
  .l-sp-contact {
    display: none;
  }
  .l-main-cta__deco2 {
    bottom: -50rem;
    left: -50rem;
    font-size: 124rem;
  }
  .l-main-cta__inner {
    display: flex;
    padding: 198rem 0rem;
    max-width: 1200rem;
  }
  .l-main-cta__message {
    width: 50%;
  }
  .l-main-cta__msg-sub {
    font-size: 16rem;
    margin-top: 12rem;
  }
  .l-main-cta__phone {
    width: 25%;
    padding: 32rem 16rem;
    border-left: solid 1px #fff;
  }
  .l-main-cta__phone-icon {
    width: 42rem;
    height: 42rem;
  }
  .l-main-cta__mail {
    width: 25%;
    padding: 32rem 16rem;
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  .l-main-cta__mail-icon {
    width: 52rem;
    height: 52rem;
  }
  .l-main-cta__phone-num a {
    font-size: 28rem;
  }
  .l-main-cta__phone-sub {
    font-size: 14rem;
  }
  .l-main-cta__mail-btn {
    margin-top: 20rem;
  }
  .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.-gap_row_24 {
    --gap-row: 20rem;
  }
  .p-grid-auto-fill.-gap_col_24 {
    --gap-col: 24rem;
  }
  .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)));
  }
  .p-grid {
    display: grid;
  }
  .p-definition-list dl {
    border-top: solid 1px #BEBDB6;
    display: flex;
  }
  .p-definition-list dl:last-child {
    border-bottom: solid 1px #BEBDB6;
  }
  .p-definition-list dt {
    width: 200rem;
  }
  .p-form__block {
    display: flex;
  }
  .p-slider {
    width: 960rem;
    height: 600rem;
  }
  .p-slider__button-prev {
    width: 60rem;
    height: 60rem;
    left: 20rem;
  }
  .p-slider__button-prev::before {
    width: 16rem;
    height: 16rem;
    left: 57%;
    border-left: solid 3rem #403134;
    border-top: solid 3rem #403134;
  }
  .p-slider__button-next {
    width: 60rem;
    height: 60rem;
    right: 20rem;
  }
  .p-slider__button-next::before {
    width: 16rem;
    height: 16rem;
    left: 42%;
    border-right: solid 3rem #403134;
    border-top: solid 3rem #403134;
  }
  .p-slider__nav {
    width: 960rem;
    margin-top: 24rem;
  }
  .p-slider__nav-item {
    height: 135rem !important;
  }
  .p-article {
    display: flex;
    gap: 43rem;
  }
  .p-article__aside {
    flex-shrink: 0;
    width: 300rem;
  }
  .p-top-section__title {
    border-bottom: solid 2rem #EAE8DD;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .p-top-section__title .p-top-section__title-en {
    font-size: 124rem;
    -webkit-text-stroke: 2rem #EAE8DD;
  }
  .p-top-section__title .p-top-section__title-jp {
    font-size: 28rem;
  }
  .p-top-section__title.-re {
    flex-direction: row-reverse;
  }
  .p-top-feature__img-area {
    width: 870rem;
  }
  .p-top-feature__img-item {
    width: 870rem;
    height: 544rem;
    margin-top: 97rem;
  }
  .p-top-feature__main-msg {
    font-size: 16rem;
    width: 480rem;
    bottom: 64rem;
    left: 48rem;
  }
  .p-top-feature__sug-content {
    display: flex;
    gap: 32rem;
    margin-top: 64rem;
  }
  .p-top-feature__sug-item img {
    height: 156rem;
  }
  .p-top-feature__sug-item p {
    font-size: 16rem;
  }
  .p-top-whywe {
    display: flex;
    gap: 10rem;
  }
  .p-top-whywe.-re {
    flex-direction: row-reverse;
  }
  .p-top-whywe__first {
    background-color: #EAE8DD;
    border-radius: 6rem;
    flex-shrink: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-top-whywe__first-content {
    width: 430rem;
  }
  .p-top-whywe__first-title {
    font-size: 24rem;
  }
  .p-top-whywe__second {
    flex-shrink: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10rem;
  }
  .p-top-whywe__second-item {
    width: 285rem;
    height: 285rem;
  }
  .p-top-whywe__second-text {
    font-size: 18rem;
  }
  .p-top-whywe__second-label {
    font-size: 18rem;
  }
  .p-top-whywe__second-illust {
    width: 140rem;
    height: 140rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-top-issue-sp {
    display: none;
  }
  .p-top-case {
    margin-top: 128rem;
    width: 960rem;
  }
  .p-top-case__cord-item {
    width: 480rem;
  }
  .p-top-case__cord-item + .p-top-case__cord-item {
    margin-top: 128rem;
  }
  .p-top-case__cord-img {
    width: 480rem;
    height: 360rem;
  }
  .p-preview__inner {
    width: calc(100vw - 100rem);
    padding: 12rem;
  }
  .c-button {
    font-size: 16rem;
    padding: 9rem 32rem;
  }
  .c-button.-outline-primary:hover {
    --color: #fff;
    background-position: 0% 100%;
    background-size: 100% 100%;
  }
  .c-button.-outline-white:hover {
    --color: #403134;
    background-position: 0% 100%;
    background-size: 100% 100%;
  }
  .c-button__icon {
    margin-top: 2rem;
  }
  .c-gallery-card {
    height: 200rem;
  }
  .c-pagination__before {
    margin-right: 40rem;
  }
  .c-pagination__after {
    margin-left: 40rem;
  }
  .c-pagination__item {
    width: 50rem;
    height: 50rem;
    line-height: 2;
    font-size: 16px;
    font-weight: 500;
  }
  .c-pagination__item:not(.-disabled):hover {
    background-color: #403134;
    border-color: #403134;
  }
  .c-pagination__item:not(.-disabled):hover a {
    color: #fff;
  }
  .c-pagination__item:not(.-disabled):hover .c-pagination__icon {
    fill: #fff;
  }
  .c-pagination__item.-head .c-pagination__icon {
    width: 15rem;
    height: 15rem;
  }
  .c-pagination__item.-prev .c-pagination__icon {
    width: 14rem;
    height: 14rem;
  }
  .c-pagination__item.-next .c-pagination__icon {
    width: 14rem;
    height: 14rem;
  }
  .c-pagination__item.-tail .c-pagination__icon {
    width: 15rem;
    height: 15rem;
  }
  .u-flex.-d {
    display: flex;
  }
  .u-flex.-m {
    display: block;
  }
  .u-font {
    --size: 16rem;
  }
  .u-font.-size_xxl {
    --size: 36rem;
  }
  .u-font.-size_xl {
    --size: 28rem;
  }
  .u-font.-size_l {
    --size: 24rem;
  }
  .u-font.-size_m {
    --size: 18rem;
  }
  .u-font.-default {
    --size: 16rem;
    --lh: 1.5;
  }
  .u-font.-size_s {
    --size: 14rem;
    --lh: 1.5;
  }
  .u-font.-size_xs {
    --size: 12rem;
  }
  .u-font.-size_xxs {
    --size: 11rem;
  }
  .u-font.-lh_l {
    --lh: 2;
  }
  .u-font.-lh_d {
    --lh: 1.75;
  }
  .u-font.-lh_m {
    --lh: 1.5;
  }
  .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-arrow-hover-1:hover {
    animation: hoverArrowAnimation1 0.4s ease;
  }
  a:hover .u-arrow-hover-1, button:hover .u-arrow-hover-1 {
    animation: hoverArrowAnimation1 0.4s ease;
  }
  .u-mt-d-4 {
    margin-top: 4rem;
  }
  .u-mt-d-8 {
    margin-top: 8rem;
  }
  .u-mt-d-16 {
    margin-top: 16rem;
  }
  .u-mt-d-24 {
    margin-top: 24rem;
  }
  .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-198 {
    margin-top: 198rem;
  }
  .u-mb-d-n24 {
    margin-bottom: -24rem;
  }
  .wp-edit-content h2:not([class]) {
    font-size: 28rem;
    font-weight: bold;
    margin-bottom: 40rem;
    margin-top: 120rem;
    padding-bottom: 5rem;
  }
  .wp-edit-content h3:not([class]) {
    font-size: 22rem;
    margin-bottom: 40rem;
    margin-top: 64rem;
    border-left: 3rem solid #403134;
    padding-left: 12rem;
  }
  .wp-edit-content h4:not([class]) {
    font-size: 20rem;
    margin-bottom: 40rem;
    margin-top: 40rem;
  }
  .wp-edit-content ol {
    font-size: 18rem;
    padding-left: 20rem;
  }
  .wp-edit-content ul:not([class]) li:not([class]) {
    padding-left: 15rem;
    font-size: 18rem;
    line-height: 1.75;
  }
  .wp-edit-content ul:not([class]) li:not([class])::before {
    top: 12rem;
    left: 2rem;
  }
  .wp-edit-content p:not(.u-font) {
    font-size: 18rem;
    line-height: 1.7;
  }
  .wp-edit-content p:not(.u-font) + p:not(.u-font) {
    margin-top: 40rem;
  }
  .wp-edit-content ol:not([class]) + p:not(.u-font), .wp-edit-content ul:not([class]) + p:not(.u-font) {
    margin-top: 40rem;
  }
  .wp-edit-content a:not([class]):hover {
    background-position: 0% 100%;
    background-size: 100% 1rem;
  }
  .wp-edit-content .wp-block-table:not(:first-child) {
    margin-top: 40rem;
    margin-bottom: 40rem;
  }
  .wp-edit-content .wp-block-quote {
    padding: 40rem 30rem;
    margin-top: 40rem;
    margin-bottom: 40rem;
  }
  .wp-edit-content hr {
    margin-top: 40rem;
    margin-bottom: 40rem;
  }
  .wp-edit-content table:not([class]) {
    margin: 40rem auto;
  }
  .wp-edit-content pre {
    margin: 40rem auto;
  }
  .wp-edit-content iframe {
    margin: 40rem auto;
  }
  .wp-block-table th:not([class]) {
    line-height: 2;
    font-size: 16px;
    padding: 16rem 20rem;
  }
  .wp-block-table td {
    line-height: 2;
    font-size: 16px;
    padding: 16rem 20rem;
    line-height: 1.5;
  }
  .wp-block-table td p {
    line-height: 2;
    font-size: 16px;
    line-height: 1.5;
  }
  .u-s-br {
    display: none;
  }
  .u-d-show {
    display: block;
  }
  .u-s-show {
    display: none;
  }
  .u-d-align-center {
    text-align: center;
  }
}

@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";
    font-size: 14rem;
  }
  .l-header {
    padding: 8rem 8rem 0rem 8rem;
    height: 50vh;
    max-height: 208rem;
  }
  .l-header.-front {
    padding: 8rem 8rem 0rem 8rem;
    height: 80vh;
    max-height: calc(100vh - 8rem);
  }
  .l-header.-front .l-header__top-msg .pc {
    display: none;
  }
  .l-header.-front .l-header__top-msg .sp {
    display: block;
    width: 70%;
    margin-top: 80rem;
  }
  .l-header__content {
    padding: 0 16rem;
  }
  .l-header__content-inner {
    width: 100%;
  }
  .l-header__header-warp {
    padding: 0 16rem;
    padding: 16rem 0 0rem 0;
  }
  .l-header__logo {
    max-width: 200rem;
  }
  .l-header__contact-area {
    display: none;
  }
  .l-header__nav-warp {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 24rem 16rem;
    transition: left 0.2s ease;
    z-index: 500;
  }
  .l-header__nav-warp.-open {
    left: 0;
  }
  .l-header__sp-menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .l-header__sp-menu span {
    width: 34rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 10rem;
    display: block;
  }
  .l-header__sp-menu p {
    font-size: 11rem;
    font-weight: bold;
    color: #fff;
    display: block;
    margin: 3rem 0 2rem 0;
  }
  .l-header__nav-area {
    margin-top: 24rem;
  }
  .l-header__nav-item + .l-header__nav-item {
    margin-top: 16rem;
  }
  .l-header__nav-item a {
    color: #403134;
    font-size: 16rem;
    text-decoration: none;
    display: block;
  }
  .l-header__nav-item.-current::before {
    background-color: #403134;
    height: 1rem;
  }
  .l-header__nav-blank {
    fill: #403134;
    width: 18rem;
    height: 18rem;
    margin-left: 6rem;
    transform: translate(0, 3rem);
  }
  .l-header__page-title {
    margin-top: 39rem;
    margin-bottom: 23rem;
  }
  .l-header__sub-logo {
    width: 50rem;
    margin-top: 8rem;
  }
  .l-header__nav-sp-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-header__nav-logo {
    width: 200rem;
  }
  .l-header__nav-contact {
    margin-top: 24rem;
  }
  .l-header__nav-phone {
    display: flex;
    align-items: center;
    gap: 6rem;
    text-decoration: none;
    justify-content: center;
  }
  .l-header__nav-phone-icon {
    width: 24rem;
    height: 24rem;
    fill: #403134;
  }
  .l-header__nav-phone-num {
    font-size: 32rem;
    color: #403134;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
  }
  .l-main-content {
    padding: 48rem 8rem;
  }
  .l-footer {
    padding: 48rem 8rem 64rem 8rem;
  }
  .l-footer__logo-main {
    width: 160rem;
  }
  .l-footer__logo-sub {
    margin-top: 12rem;
    width: 60rem;
  }
  .l-footer__nav {
    margin-top: 24rem;
  }
  .l-footer__copy {
    margin-top: 24rem;
  }
  .l-sp-contact {
    display: flex;
  }
  .l-main-cta__deco2 {
    bottom: -40rem;
    left: -50rem;
    font-size: 86rem;
  }
  .l-main-cta__inner {
    padding: 64rem 8rem;
  }
  .l-main-cta__msg-main {
    text-align: center;
  }
  .l-main-cta__msg-sub {
    text-align: center;
    font-size: 14rem;
    margin-top: 4rem;
  }
  .l-main-cta__phone {
    margin-top: 32rem;
  }
  .l-main-cta__phone-icon {
    width: 32rem;
    height: 32rem;
  }
  .l-main-cta__mail {
    margin-top: 28rem;
    border-top: solid 1px #fff;
    padding-top: 28rem;
  }
  .l-main-cta__mail-icon {
    width: 36rem;
    height: 36rem;
  }
  .l-main-cta__phone-num a {
    font-size: 22rem;
  }
  .l-main-cta__phone-sub {
    font-size: 11rem;
  }
  .l-main-cta__mail-btn {
    margin-top: 12rem;
  }
  .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.-gap_row_24 {
    --gap-row: 24rem;
  }
  .p-grid-auto-fill.-gap_col_24 {
    --gap-col: 20rem;
  }
  .p-grid-auto-fill {
    grid-template-columns: 1;
  }
  .wpcf7-form-control-wrap {
    margin-top: 8rem;
  }
  .p-slider {
    width: 100%;
    height: 260rem;
  }
  .p-slider__button-prev {
    width: 28rem;
    height: 28rem;
    left: 10rem;
  }
  .p-slider__button-prev::before {
    width: 8rem;
    height: 8rem;
    left: 53%;
    border-left: solid 2rem #403134;
    border-top: solid 2rem #403134;
  }
  .p-slider__button-next {
    width: 28rem;
    height: 28rem;
    right: 10rem;
  }
  .p-slider__button-next::before {
    width: 8rem;
    height: 8rem;
    left: 40%;
    border-right: solid 2rem #403134;
    border-top: solid 2rem #403134;
  }
  .p-slider__nav {
    width: 100%;
    height: 48rem;
    margin-top: 12rem;
  }
  .p-slider__nav-item {
    height: 48rem !important;
  }
  .p-top-section__title {
    border-bottom: solid 1rem #EAE8DD;
    position: relative;
    display: block;
  }
  .p-top-section__title .p-top-section__title-en {
    font-size: 80rem;
    -webkit-text-stroke: 1rem #EAE8DD;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .p-top-section__title .p-top-section__title-jp {
    font-size: 24rem;
  }
  .p-top-feature__img-area {
    width: calc(100% - 10rem);
  }
  .p-top-feature__img-item {
    width: calc(100% - 10rem);
    height: 340rem;
    margin-top: 48rem;
  }
  .p-top-feature__main-msg {
    font-size: 12rem;
    width: calc(100% - 46rem);
    bottom: 24rem;
    left: 18rem;
  }
  .p-top-feature__sug-content {
    margin-top: 32rem;
  }
  .p-top-feature__sug-item + .p-top-feature__sug-item {
    margin-top: 24rem;
  }
  .p-top-feature__sug-item img {
    height: 200rem;
  }
  .p-top-feature__sug-item p {
    font-size: 14rem;
  }
  .p-top-whywe__first-content {
    width: 100%;
  }
  .p-top-whywe__first-title {
    font-size: 18rem;
  }
  .p-top-whywe__second {
    margin-top: 24rem;
  }
  .p-top-whywe__second-item {
    width: 100%;
    height: 360rem;
  }
  .p-top-whywe__second-item + .p-top-whywe__second-item {
    margin-top: 12rem;
  }
  .p-top-whywe__second-text {
    font-size: 16rem;
  }
  .p-top-whywe__second-label {
    font-size: 16rem;
  }
  .p-top-whywe__second-illust {
    width: 140rem;
    height: 140rem;
  }
  .p-top-issue {
    display: none;
  }
  .p-top-case {
    margin-top: 64rem;
    width: 100%;
  }
  .p-top-case__desc-wrap {
    display: none;
  }
  .p-top-case__cord {
    width: 100%;
  }
  .p-top-case__cord-item {
    width: 100%;
  }
  .p-top-case__cord-item + .p-top-case__cord-item {
    margin-top: 32rem;
  }
  .p-top-case__cord-img {
    width: 100%;
    height: 200rem;
  }
  .p-preview__inner {
    width: calc(100% - 24rem);
    padding: 4rem;
    margin-left: -7rem;
  }
  .c-button {
    font-size: 14rem;
    padding: 9rem 24rem;
  }
  .c-gallery-card {
    height: 200rem;
  }
  .c-pagination__before {
    margin-right: 15rem;
  }
  .c-pagination__after {
    margin-left: 15rem;
  }
  .c-pagination__item {
    width: 28rem;
    height: 28rem;
    line-height: 1.75;
    font-size: 14px;
    font-weight: 500;
  }
  .c-pagination__item.-head .c-pagination__icon {
    width: 12rem;
    height: 12rem;
  }
  .c-pagination__item.-prev .c-pagination__icon {
    width: 9rem;
    height: 9rem;
  }
  .c-pagination__item.-next .c-pagination__icon {
    width: 9rem;
    height: 9rem;
  }
  .c-pagination__item.-tail .c-pagination__icon {
    width: 12rem;
    height: 12rem;
  }
  .u-flex.-d {
    display: block;
  }
  .u-flex.-m {
    display: flex;
  }
  .u-font {
    --size: 14rem;
  }
  .u-font.-size_xxl {
    --size: 24rem;
  }
  .u-font.-size_xl {
    --size: 24rem;
  }
  .u-font.-size_l {
    --size: 22rem;
  }
  .u-font.-size_m {
    --size: 16rem;
  }
  .u-font.-default {
    --size: 14rem;
    --lh: 1.5;
  }
  .u-font.-size_s {
    --size: 12rem;
    --lh: 1.5;
  }
  .u-font.-size_xs {
    --size: 11rem;
  }
  .u-font.-size_xxs {
    --size: 10rem;
  }
  .u-font.-lh_l {
    --lh: 2;
  }
  .u-font.-lh_d {
    --lh: 1.75;
  }
  .u-font.-lh_m {
    --lh: 1.5;
  }
  .u-font.-solid {
    line-height: 1.5;
  }
  .u-text-hover-in {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
  .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;
  }
  .wp-edit-content h2:not([class]) {
    font-size: 20rem;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 32rem;
    margin-top: 100rem;
    padding-bottom: 3rem;
  }
  .wp-edit-content h3:not([class]) {
    font-size: 16rem;
    margin-bottom: 32rem;
    margin-top: 48rem;
    border-left: 2rem solid #403134;
    padding-left: 8rem;
  }
  .wp-edit-content h4:not([class]) {
    font-size: 16rem;
    margin-bottom: 32rem;
    margin-top: 32rem;
  }
  .wp-edit-content ol {
    font-size: 16rem;
    padding-left: 14rem;
  }
  .wp-edit-content ul:not([class]) li:not([class]) {
    padding-left: 15rem;
    font-size: 16rem;
    line-height: 1.75;
  }
  .wp-edit-content ul:not([class]) li:not([class])::before {
    top: 13rem;
    left: 2rem;
  }
  .wp-edit-content p:not(.u-font) {
    font-size: 16rem;
    line-height: 1.7;
  }
  .wp-edit-content p:not(.u-font) + p:not(.u-font) {
    margin-top: 32rem;
  }
  .wp-edit-content ol:not([class]) + p:not(.u-font), .wp-edit-content ul:not([class]) + p:not(.u-font) {
    margin-top: 32rem;
  }
  .wp-edit-content .wp-block-table:not(:first-child) {
    margin-top: 20rem;
    margin-bottom: 20rem;
  }
  .wp-edit-content table:not([class]) {
    margin: 32rem auto;
  }
  .wp-edit-content .has-text-align-center {
    text-align: left;
  }
  .wp-edit-content pre {
    margin: 32rem auto;
  }
  .wp-edit-content iframe {
    margin: 32rem auto;
  }
  .wp-block-table th:not([class]) {
    line-height: 1.75;
    font-size: 14px;
    padding: 16rem 20rem;
  }
  .wp-block-table td {
    line-height: 1.75;
    font-size: 14px;
    padding: 16rem 20rem;
    line-height: 1.5;
  }
  .wp-block-table td p {
    line-height: 1.75;
    font-size: 14px;
    line-height: 1.5;
  }
  .u-d-br {
    display: none;
  }
  .u-d-show {
    display: none;
  }
  .u-s-show {
    display: block;
  }
}

@media print, screen and (min-width: 87.5em ) {
  .c-button {
    font-size: 16rem;
  }
}