@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */

a {
  -webkit-text-decoration: none;
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
/* hoverが使えないタッチ端末を想定した装飾 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}

body {
  color: #4A4D50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

.l-404 {
  padding: 60px 0;
  padding: 3.75rem 0;
}

.l-business {
  padding: 40px 0 0;
  padding: 2.5rem 0 0;
}

.l-company {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

.l-drawer {
  background-color: rgba(74, 77, 80, 0.95);
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  visibility: hidden;
  z-index: 100;
}

.l-drawer[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.l-faq {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

.l-flow {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

.l-header {
  bottom: auto;
  height: 60px;
  height: 3.75rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.l-hero-caption {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.l-home {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.l-main {
  padding-top: 70px;
  padding-top: 4.375rem;
}

.l-page-head {
  height: 450px;
  height: 28.125rem;
  width: 100%;
}

.l-page {
  padding: 40px 0 40px;
  padding: 2.5rem 0 2.5rem;
}

.l-post-list {
  margin-top: 80px;
  margin-top: 5rem;
}

.l-single {
  padding: 40px 0 80px;
  padding: 2.5rem 0 5rem;
}

.c-btn {
  display: inline-block;
  position: relative;
}

.c-btn::before {
  background: #4A4D50;
  bottom: 0px;
  bottom: 0rem;
  content: "";
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  z-index: 2;
}

.c-btn::after {
  background: #F0F0F0;
  bottom: 0px;
  bottom: 0rem;
  content: "";
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  position: absolute;
  right: 0;
  width: 100%;
}

.c-btn:hover::before,
.c-btn--white:hover::before {
  height: 2px;
  height: 0.125rem;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-btn--white {
  color: #fff;
}

.c-btn--white::before {
  background: #fff;
}

.c-btn__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 61px;
  gap: 3.8125rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
}

.c-btn__text {
  color: #4A4D50;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.c-btn--white .c-btn__text {
  color: #fff;
}

.c-btn__arrow-box {
  background-color: #4A4D50;
  border-radius: 50%;
  height: 30px;
  height: 1.875rem;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 30px;
  width: 1.875rem;
}

.c-btn--white .c-btn__arrow-box {
  background-color: #fff;
}

.c-btn--white:hover .c-btn__arrow-box {
  background-color: #4A4D50;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}

.c-btn__arrow {
  color: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-btn--white .c-btn__arrow {
  color: #4A4D50;
}

.c-btn--white:hover .c-btn__arrow {
  color: #fff;
}

.c-btn__line {
  background: #4A4D50;
  display: block;
  height: 2px;
  height: 0.125rem;
  width: 50px;
  width: 3.125rem;
}

.c-btn--white .c-btn__line {
  background: #fff;
}

.c-faq-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Roboto";
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: 26px;
  height: 1.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3571428571;
  width: 26px;
  width: 1.625rem;
}

.c-faq-icon--text-white {
  background-color: #4A4D50;
  color: #fff;
}

.c-faq-icon--text-black {
  background-color: #EEEEEE;
  color: #4A4D50;
}

.c-faq-icon--border {
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
}

.c-logo__main {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
  white-space: nowrap;
}

.c-logo__main span {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-left: 8px;
  margin-left: 0.5rem;
  white-space: nowrap;
}

.c-logo__sub {
  font-family: "PT Sans";
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.c-menu-button {
  aspect-ratio: 1/1;
  background-color: #4A4D50;
  height: 35px;
  height: 2.1875rem;
  position: relative;
  width: 38px;
  width: 2.375rem;
}

.c-menu-button span {
  background-color: #fff;
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 20px;
  width: 1.25rem;
}

.c-menu-button span:before,
.c-menu-button span::after {
  background-color: #fff;
  border-radius: 100vw;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  -webkit-transform: translateY(-0.375rem);
          transform: translateY(-0.375rem);
}

.c-menu-button span::after {
  -webkit-transform: translateY(0.375rem);
          transform: translateY(0.375rem);
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  -webkit-transform: translateY(0) rotate(25deg);
          transform: translateY(0) rotate(25deg);
}

.c-menu-button[aria-expanded=true] span::after {
  -webkit-transform: translateY(0) rotate(-25deg);
          transform: translateY(0) rotate(-25deg);
}

.c-no-post {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}

.c-picture {
  aspect-ratio: 450/300;
}
.c-picture img {
  -o-object-fit: contain;
  display: block;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.c-scroll-down-btn {
  position: static;
}

.c-scroll-down-btn a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #4A4D50;
  border: 0.0625rem solid #4A4D50;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4285714286;
  min-width: 155px;
  min-width: 9.6875rem;
  padding: 6px 30px 6px 10px;
  padding: 0.375rem 1.875rem 0.375rem 0.625rem;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-scroll-down-btn a::after {
  background: url(../images/common/arrow-black-down.svg) no-repeat center/cover;
  content: "";
  display: block;
  height: 6px;
  height: 0.375rem;
  position: absolute;
  right: 14px;
  right: 0.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 15px;
  width: 0.9375rem;
}

.c-scroll-down-btn a:hover {
  background-color: #4A4D50;
  color: #fff;
}

.c-scroll-down-btn a:hover::after {
  background: url(../images/common/arrow-white-down.svg) no-repeat center/cover;
}

.c-scroll {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-family: "PT Sans";
  font-size: 16px;
  font-size: 1rem;
  gap: 5px;
  gap: 0.3125rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.c-scroll::before {
  background-color: #F0F0F0;
  content: "";
  display: inline-block;
  height: 62px;
  height: 3.875rem;
  width: 1px;
}

.c-scroll::after {
  -webkit-animation: scrollLineExtend 3s ease-in-out infinite;
          animation: scrollLineExtend 3s ease-in-out infinite;
  background-color: #F0F0F0;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  top: 50px;
  top: 3.125rem;
  width: 2px;
  width: 0.125rem;
}

@-webkit-keyframes scrollLineExtend {
  0% {
    height: 0;
    opacity: 1;
  }
  70% {
    height: 62px;
    height: 3.875rem;
    opacity: 1;
  }
  100% {
    height: 62px;
    height: 3.875rem;
    opacity: 0;
  }
}

@keyframes scrollLineExtend {
  0% {
    height: 0;
    opacity: 1;
  }
  70% {
    height: 62px;
    height: 3.875rem;
    opacity: 1;
  }
  100% {
    height: 62px;
    height: 3.875rem;
    opacity: 0;
  }
}
.c-section-title__jp {
  color: #B6B6B6;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
}

.c-section-title__en {
  font-family: "PT Sans";
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2916666667;
  z-index: 5;
}

.c-slider {
  -o-object-fit: cover;
  aspect-ratio: 800/500;
     object-fit: cover;
  width: 100%;
}

.c-tag {
  background: #4A4D50;
  color: #fff;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  padding: 2px 16px;
  padding: 0.125rem 1rem;
}

.c-tel {
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  gap: 0.3125rem;
  text-align: left;
}

.c-tel--black {
  color: #4A4D50;
}

.c-tel__img {
  height: 20px;
  height: 1.25rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 20px;
  width: 1.25rem;
}

.c-tel__img img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.c-tel__number {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4583333333;
  position: relative;
  text-align: right;
}

.c-tel__hours {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4166666667;
}

.c-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: justify;
}

.c-to-top a {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 51px;
  height: 3.1875rem;
  position: relative;
  width: 51px;
  width: 3.1875rem;
}

.c-to-top a svg {
  color: #4A4D50;
  height: 10px;
  height: 0.625rem;
  left: 45%;
  position: absolute;
  top: 40%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 6px;
  width: 0.375rem;
}

.p-404__title {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}

.p-404__btn {
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
}

.p-breadcrumb {
  background-color: #F7F4F4;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  padding: 6px 0 5px;
  padding: 0.375rem 0 0.3125rem;
}

.p-breadcrumb__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.p-breadcrumb .home {
  padding: 0 10px;
  padding: 0 0.625rem;
}

.p-breadcrumb span[property=itemListElement]:nth-child(n+2) {
  margin: 0 10px;
  margin: 0 0.625rem;
}

.p-breadcrumb span[property=current] {
  padding: 0 10px;
  padding: 0 0.625rem;
}

.p-breadcrumb .current-item {
  border-bottom: 1px solid #4A4D50;
  border-bottom: 0.0625rem solid #4A4D50;
  line-height: 2.2;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.p-business-list__item {
  position: relative;
}

.p-business__mgmt .p-business-list__item:nth-of-type(2) {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-business-list__item::after {
  content: "";
  height: 400px;
  height: 25rem;
  position: absolute;
  top: -132px;
  top: -8.25rem;
  width: 860px;
  width: 53.75rem;
  z-index: -1;
}

.p-business-list__item-content {
  background-color: #4A4D50;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.p-business-list__item-img {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-business-list__box {
  position: relative;
}

.p-business-list__item-content--white {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.5);
}

.p-business-list__item-title {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-business-list__item-text {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-business-list__item-text--black {
  color: #4A4D50;
}

.p-business {
  overflow: hidden;
}

.p-business__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.p-business__estate {
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-business__estate-inner {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-business__section-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  text-align: center;
}

.p-business__section-title--white {
  color: #fff;
}

.p-business__mgmt {
  background-color: #4A4D50;
  padding: 40px 0;
  padding: 2.5rem 0;
  position: relative;
  z-index: -2;
}

.p-business__estate .p-business__inner,
.p-business__mgmt .p-business__inner {
  max-width: none;
}

.p-common-mv {
  background-color: #4A4D50;
  padding: 20px 0;
  padding: 1.25rem 0;
  position: relative;
  z-index: -2;
}

.p-common-mv__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.p-common-mv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

.p-common-mv__english {
  color: #B5B5B5;
  content: "";
  font-family: "PT Sans";
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  left: 10px;
  left: 0.625rem;
  line-height: 1.875;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.p-company__philosophy-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.p-company__philosophy-img img {
  -o-object-fit: cover;
  aspect-ratio: 485/330;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-company__philosophy-index,
.p-company__info-index {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-company__philosophy-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-company__philosophy-body {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  margin-top: 12px;
  margin-top: 0.75rem;
}

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

.p-company__info-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  gap: 0.875rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-company__info-list {
  border-bottom: 1px solid #F7F4F4;
  border-bottom: 0.0625rem solid #F7F4F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
}

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

.p-company__info-detail {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
}

.p-company__info-list:last-child .p-company__info-title,
.p-company__info-list:last-child .p-company__info-detail {
  border-bottom: none;
}

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

.p-company__info-map iframe {
  width: 100%;
}

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

.p-company__link-pictures:nth-child(2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content tbody {
  vertical-align: baseline;
}

.p-content .wp-block-columns {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.wp-block-file a,
.p-content p,
.p-content li,
.p-content th,
.p-content td {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
}

.p-content h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4583333333;
}

.p-content h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-content h4 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-content h2:nth-of-type(1) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-content h2:nth-of-type(n + 2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-content figure:nth-child(n+2) {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.wp-block-file,
.p-content p:nth-child(n+2),
.p-content h3:nth-child(n+2),
.p-content h4:nth-child(n+2),
.p-content h2 + ul:nth-of-type(n + 2),
.p-content h2 + ol:nth-of-type(n + 2),
.p-content ol > li > ol:nth-of-type(n + 2) {
  margin-top: 22px;
  margin-top: 1.375rem;
  max-width: 100%;
}

.p-content img {
  width: auto;
}

.p-content figure.aligncenter,
.p-content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.p-content figure.alignright,
.p-content img.alignright {
  margin-left: auto;
}

.p-content > ol {
  counter-reset: number 0;
}

.p-content > ol > li {
  padding-left: 24px;
  padding-left: 1.5rem;
  text-indent: -16px;
  text-indent: -1rem;
}

.p-content > ol > li:nth-child(n+10) {
  text-indent: -24px;
  text-indent: -1.5rem;
}

.p-content > ol > li > ol {
  counter-reset: number 0;
}

.p-content > ol > li > ol > li {
  padding-left: 24px;
  padding-left: 1.5rem;
  text-indent: -16px;
  text-indent: -1rem;
}

.p-content > ol > li > ol > li > ol {
  counter-reset: number 0;
}

.p-content > ol > li > ol > li > ol > li {
  padding-left: 22px;
  padding-left: 1.375rem;
  text-indent: -20px;
  text-indent: -1.25rem;
}

.p-content ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-content ul > li::before {
  content: "・";
}

.p-content ul > li ol {
  counter-reset: number 0;
}

.p-content ul > li ol > li {
  padding-left: 2em;
  text-indent: -2em;
}

.p-content ul > li ol > li::before {
  content: "(" counter(number) ") ";
  counter-increment: number 1;
}

.p-content .wp-block-table thead {
  border-bottom: none;
}

.wp-block-table td,
.wp-block-table th {
  border: none;
}

.p-content th {
  border: none;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  text-align: left;
}

.p-content td {
  background-color: #FCFCFC;
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
}

.p-content td:first-child {
  background-color: rgba(74, 77, 80, 0.05);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.1428571429;
  width: 30%;
}

.p-content p.p-content__text {
  line-height: 1.8;
}

.p-drawer {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.5);
  padding: 100px 0 80px;
  padding: 6.25rem 0 5rem;
}

.p-drawer__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  width: 100%;
}

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

.p-drawer__logo-link {
  display: inline-block;
}

.p-drawer__logo-link .c-logo__main {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.4375;
}

.p-drawer__logo-link span {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4583333333;
}

.p-drawer__logo-link .c-logo__sub {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}

.p-drawer__nav-items {
  grid-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  grid-row-gap: 0.625rem;
       -webkit-column-gap: 0.625rem;
               column-gap: 0.625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  margin-top: 28px;
  margin-top: 1.75rem;
  row-gap: 10px;
  row-gap: 0.625rem;
}

.p-drawer__nav-item a {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 15px 0;
  padding: 0.9375rem 0;
  width: 100%;
}

.p-drawer__nav-items2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-drawer__nav-item2 a {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.p-drawer__tel {
  margin-top: 31px;
  margin-top: 1.9375rem;
  text-align: right;
}

.p-drawer__tel-link.c-tel {
  color: #4A4D50;
}

.p-drawer__border {
  background-color: #F0F0F0;
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
}

.p-drawer__copyright {
  margin-top: 124px;
  margin-top: 7.75rem;
  text-align: right;
}

.p-drawer__copyright small {
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.005em;
  line-height: 1.5;
}

.p-faq__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.p-faq__btn-items {
  grid-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  grid-row-gap: 0.625rem;
       -webkit-column-gap: 0.625rem;
               column-gap: 0.625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 10px;
  row-gap: 0.625rem;
}

.p-faq__btn-item.c-scroll-down-btn a {
  min-height: 62px;
  min-height: 3.875rem;
  min-width: 155px;
  min-width: 9.6875rem;
  width: 100%;
}

.p-faq__index-item {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-faq__index-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
}

.p-faq__list {
  border-bottom: 1px solid #F0F0F0;
  border-bottom: 0.0625rem solid #F0F0F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.p-faq__list-q-box,
.p-faq__list-a-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}

.p-faq__list-a-box .c-faq-icon {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

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

.p-faq__list-a {
  color: #707070;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}

.p-flow__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}

.p-flow__btn-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
}

.p-flow__btn-item.c-scroll-down-btn a {
  min-height: 55px;
  min-height: 3.4375rem;
  min-width: 300px;
  min-width: 18.75rem;
}

.p-flow__index-items {
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-flow__index-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3333333333;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-flow__index-item:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-flow__index-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

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

.p-flow__card {
  padding: 20px 18px;
  padding: 1.25rem 1.125rem;
  position: relative;
}

.p-flow__card:nth-child(1)::after,
.p-flow__card:nth-child(4)::after {
  right: -6px;
  right: -0.375rem;
}

.p-flow__card:nth-child(2)::after {
  right: -8px;
  right: -0.5rem;
}

.p-flow__card:nth-child(odd) {
  background-color: #F4F4F4;
}

.p-flow__card-head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
}

.p-flow__card-number {
  color: #4A4D50;
  font-family: "PT Sans";
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  opacity: 0.2;
}

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

.p-flow__card-body {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  padding-left: 40px;
  padding-left: 2.5rem;
}

.p-footer__inner {
  display: contents;
}

.p-footer__wrapper {
  background-color: #4A4D50;
  color: #fff;
  padding: 26px 0 18px;
  padding: 1.625rem 0 1.125rem;
}

.p-footer__wrapper-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  width: 100%;
}

.p-footer__to-top {
  display: none;
}

.p-footer__nav-items {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-footer__nav-item a {
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  display: block;
  font-weight: 500;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.p-footer__tel {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}

.p-footer__container {
  margin: 5px 0 10px;
  margin: 0.3125rem 0 0.625rem;
}

.p-footer__container-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  width: 100%;
}

.p-footer__nav-items2 {
  -moz-column-gap: 3.75rem;
       -webkit-column-gap: 3.75rem;
          column-gap: 3.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-footer__nav-item2 a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
}

.p-footer__copyright {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-footer__copyright small {
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.005em;
  line-height: 1.5;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

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

.wpcf7-spinner {
  display: none;
}

.p-form__items {
  grid-gap: 0.9375rem;
  display: grid;
  gap: 15px;
  gap: 0.9375rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-form__item {
  grid-gap: 0.1875rem;
  display: grid;
  gap: 3px;
  gap: 0.1875rem;
  grid-template-columns: repeat(1, 1fr);
}
.p-form__item:first-of-type {
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}

.p-form__dt {
  letter-spacing: 0.1em;
  line-height: 1.5384615385;
}

.p-form__item:first-of-type .p-form__dt {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-form__dd .wpcf7-checkbox,
.p-form__dd .wpcf7-radio {
  grid-gap: 0.4375rem;
  display: grid;
  gap: 7px;
  gap: 0.4375rem;
  grid-template-columns: repeat(1, 1fr);
}

.p-form__dd label {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  line-height: 1.4285714286;
}
.p-form__dd input:not([type=radio]):not([type=checkbox]),
.p-form__dd textarea {
  background-color: #fff;
  border: 1px solid;
  border-radius: 0.375rem;
  display: block;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  width: 100%;
}

.p-form__dd input::-moz-placeholder, .p-form__dd textarea::-moz-placeholder {
  color: #8f8f8f;
}

.p-form__dd input::-webkit-input-placeholder, .p-form__dd textarea::-webkit-input-placeholder {
  color: #8f8f8f;
}

.p-form__dd input:-ms-input-placeholder, .p-form__dd textarea:-ms-input-placeholder {
  color: #8f8f8f;
}

.p-form__dd input::-ms-input-placeholder, .p-form__dd textarea::-ms-input-placeholder {
  color: #8f8f8f;
}

.p-form__dd input::placeholder,
.p-form__dd textarea::placeholder {
  color: #8f8f8f;
}

.p-form__dd input[type=checkbox] + span,
.p-form__dd input[type=radio] + span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  position: relative;
}

.p-form__dd input[type=radio] + span::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #4A4D50;
  border-radius: 50%;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-right: 10px;
  margin-right: 0.625rem;
  width: 20px;
  width: 1.25rem;
}
.p-form__dd input[type=radio]:checked + span::after {
  aspect-ratio: 1/1;
  background-color: #4A4D50;
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: inline-block;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  width: 20px;
  width: 1.25rem;
}

.p-form__dd input[type=checkbox] + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #4A4D50;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 12px;
  width: 0.75rem;
}

.p-form__dd input[type=checkbox]:checked + span::after {
  border-bottom: 2px solid #4A4D50;
  border-right: 2px solid #4A4D50;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  left: 4px;
  left: 0.25rem;
  margin: auto;
  position: absolute;
  top: 2px;
  top: 0.125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  width: 0.375rem;
}

.p-form__dd textarea {
  height: 146px;
  height: 9.125rem;
}

.p-form__acceptance {
  font-style: normal;
  margin-top: 19px;
  margin-top: 1.1875rem;
  text-align: justify;
}

.p-form__acceptance input + span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.p-form__acceptance input + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #4A4D50;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 12px;
  width: 0.75rem;
}

.p-form__acceptance input:checked + span::after {
  border-bottom: 2px solid #4A4D50;
  border-right: 2px solid #4A4D50;
  content: "";
  display: inline-block;
  height: 12px;
  height: 0.75rem;
  left: 4px;
  left: 0.25rem;
  margin: auto;
  position: absolute;
  top: 2px;
  top: 0.125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  width: 0.375rem;
}

.p-form__policy-description {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-form__policy-description a {
  -webkit-text-decoration: underline;
  -webkit-text-decoration: underline;
  color: #4A4D50;
  text-decoration: underline;
}

.p-form__send {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 27px;
  gap: 1.6875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 38px auto 0;
  margin: 2.375rem auto 0;
  max-width: 216px;
  max-width: 13.5rem;
  position: relative;
  width: 100%;
}

.p-form__send input {
  background-color: #4A4D50;
  border-radius: 100vh;
  color: #fff;
  display: block;
  letter-spacing: 0.06em;
  min-height: 41px;
  min-height: 2.5625rem;
  padding: 0 35px 0 27px;
  padding: 0 2.1875rem 0 1.6875rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

/* フォーカスされている要素を明確に示 */
/* 入力デバイスのいずれかにhoverに対応している入力デバイスが含まれる場合に適用 */
.p-header {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #F0F0F0;
  border: 0.0625rem solid #F0F0F0;
}

.p-header.menu-open {
  background-color: transparent;
  border: none;
}

.p-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: none;
  max-width: initial;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-header__logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  z-index: 90;
}
.p-header__logo-link {
  display: block;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-header__menu-button {
  margin-left: auto;
  z-index: 200;
}

.p-header__pc-nav {
  display: none;
}

.p-header__pc-nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 50px;
  margin-right: 3.125rem;
}

.p-header__pc-nav-item {
  height: 100%;
}

.p-header__pc-nav-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  height: 100%;
  line-height: 1.4444444444;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.p-header__tel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4A4D50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-header__tel-link {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__tel .c-tel__hours {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-home__filter-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.p-home__filter-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
}

.p-home__filter-link.p-meta__category {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.6666666667;
  padding: 3px 4px;
  padding: 0.1875rem 0.25rem;
}

.p-home__filter-link.is-active.p-meta__category {
  background: #4A4D50;
  border: none;
  color: #fff;
}

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

.p-home__post a {
  border-bottom: 1px solid #F0F0F0;
  border-bottom: 0.0625rem solid #F0F0F0;
  display: inline-block;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
}

.p-home__post a:hover {
  background: #F7F4F4;
}

.p-home__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 6px;
  gap: 0.375rem;
}

.p-home__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 8px;
  margin-top: 0.5rem;
  overflow: hidden;
  padding-right: 30px;
  padding-right: 1.875rem;
}

.p-home__arrow {
  background-color: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-home__arrow .c-btn__arrow {
  color: #4A4D50;
}

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

.p-hotel {
  overflow-x: hidden;
  padding: 40px 0 55px;
  padding: 2.5rem 0 3.4375rem;
  position: relative;
}

.p-hotel::after {
  background: url(../images/business/vr.png) no-repeat center/cover;
  bottom: 0;
  content: "";
  height: 158px;
  height: 9.875rem;
  overflow: hidden;
  position: absolute;
  right: -32px;
  right: -2rem;
  top: 34px;
  top: 2.125rem;
  width: 247px;
  width: 15.4375rem;
  z-index: -1;
}

.p-hotel__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
}

.p-hotel__section-title {
  text-align: left;
}

.p-hotel__head {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8571428571;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-hotel__body {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  margin-top: 10px;
  margin-top: 0.625rem;
}

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

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

.p-hotel__img:nth-of-type(1) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-hotel__img:nth-of-type(2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-inhouse__bk {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(77%, rgb(74, 77, 80)), color-stop(77%, rgb(74, 77, 80)), color-stop(77.1%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background-image: linear-gradient(0deg, rgb(74, 77, 80) 77%, rgb(74, 77, 80) 77%, rgb(255, 255, 255) 77.1%, rgb(255, 255, 255) 100%);
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-inhouse__img {
  width: 100%;
}

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

.p-inhouse__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 0 8px;
  padding: 0 0.5rem;
}

.p-inhouse__box {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  margin-top: 1rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
}

.p-inhouse__head {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
}

.p-inhouse__body {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-meta__category {
  background-color: #fff;
  border: 1px solid #E8E8E8;
  border: 0.0625rem solid #E8E8E8;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  line-height: 1.6666666667;
  padding: 0 6px;
  padding: 0 0.375rem;
}

.p-meta__date {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
}

.p-mv {
  color: #fff;
  position: relative;
}

.p-mv__swiper {
  height: 100vh;
  min-height: 400px;
  min-height: 25rem;
  position: relative;
}

.p-mv__slide-wrapper {
  height: 100%;
}

.p-mv__swiper-slide {
  height: 100%;
}

.p-mv__swiper-slide::before {
  background-color: rgba(74, 77, 80, 0.4);
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

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

.p-mv__copy {
  bottom: auto;
  font-family: "Zen Old Mincho";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  z-index: 2;
}

.p-mv__main-copy {
  clip-path: inset(0 100% 0 0);
  color: #F7F5F3;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}

.p-mv__sub-copy {
  --scaleX:0;
  color: #fff;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.p-mv__sub-copy::after {
  background: #fff;
  bottom: 10px;
  content: "";
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  -webkit-transform: scaleX(var(--scaleX));
          transform: scaleX(var(--scaleX));
  width: 100%;
}

.p-mv__jp-copy {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.5;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

.p-mv__place {
  bottom: 21px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.p-mv__place-text {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 2;
  position: relative;
}

.p-mv__under {
  bottom: 37px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.swiper-pagination-progressbar-fill {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform linear;
  transition: -webkit-transform linear;
  transition: transform linear;
  transition: transform linear, -webkit-transform linear;
}

@-webkit-keyframes progressBarAnimation {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes progressBarAnimation {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.p-mv__pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
  background-color: #F0F0F0;
  height: 1px;
  position: relative;
  top: 6px;
  width: 100%;
}

.p-mv__pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #fff;
  height: 2px;
  left: 0;
  position: absolute;
  top: -50%;
}

.p-mv__prev:hover,
.p-mv__next:hover {
  opacity: 0.7;
}

.p-mv__prev::after,
.p-mv__next::after {
  border: 1px solid #4A4D50;
  border: 0.0625rem solid #4A4D50;
  border-left: 0;
  border-top: 0;
  bottom: 40%;
  content: "";
  display: inline-block;
  height: inherit;
  height: 7px;
  height: 0.4375rem;
  margin: auto;
  position: absolute;
  width: inherit;
  width: 7px;
  width: 0.4375rem;
}

.p-mv__prev::after {
  right: 11px;
  right: 0.6875rem;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.p-mv__next::after {
  right: 13px;
  right: 0.8125rem;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.p-mv__scroll {
  bottom: 32px;
  bottom: 2rem;
  left: 0;
  left: auto;
  position: absolute;
  right: 0;
  top: auto;
  z-index: 10;
}

.p-pagenavi .nav-links,
.p-pagenavi .wp-pagenavi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  gap: 1.5625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-pagenavi .first,
.p-pagenavi .last,
.p-pagenavi .current,
.p-pagenavi .extend,
.p-pagenavi .page {
  color: #2D2D2D;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  opacity: 0.15;
}

.p-pagenavi .current {
  border-bottom: 1px solid #2D2D2D;
  border-bottom: 0.0625rem solid #2D2D2D;
  color: #2D2D2D;
  opacity: 1;
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  display: inline-block;
}
.p-pavinavi__prev,
.p-pavinavi__next {
  aspect-ratio: 1/1;
  background-color: #4A4D50;
  border-radius: 50%;
  display: block;
  height: 18px;
  height: 1.125rem;
  position: relative;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
  width: 18px;
  width: 1.125rem;
}

.p-pavinavi__prev::after,
.p-pavinavi__next::after {
  background: url(../images/common/arrow-white.svg) no-repeat center/contain;
  content: "";
  height: 7px;
  height: 0.4375rem;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4px;
  width: 0.25rem;
}

.p-pavinavi__prev::after {
  left: 43%;
  top: 38%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-pavinavi__next::after {
  left: 48%;
  top: 50%;
}

.p-pavinavi__prev:hover,
.p-pavinavi__next:hover {
  background-color: #fff;
  border: 1px solid #4A4D50;
  border: 0.0625rem solid #4A4D50;
}

.p-pavinavi__prev:hover::after,
.p-pavinavi__next:hover::after {
  border: 1px solid #4A4D50;
  border: 0.0625rem solid #4A4D50;
  border-left: 0;
  border-top: 0;
  display: inline-block;
  height: 4px;
  height: 0.25rem;
  top: 42%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 4px;
  width: 0.25rem;
}

.p-pavinavi__next:hover::after {
  left: 31%;
  top: 42%;
  -webkit-transform: rotate(320deg);
          transform: rotate(320deg);
}

.p-pictures__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-single__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
}

.p-single__meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-single__content {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-single__btn {
  border-top: 1px solid #F0F0F0;
  border-top: 0.0625rem solid #F0F0F0;
  padding-top: 40px;
  padding-top: 2.5rem;
  text-align: center;
}

.p-sliders__thumbnail1,
.p-sliders__thumbnail2,
.p-sliders__thumbnail3,
.p-sliders__thumbnail4 {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-sliders__thumbnail1 .swiper-slide,
.p-sliders__thumbnail2 .swiper-slide,
.p-sliders__thumbnail3 .swiper-slide,
.p-sliders__thumbnail4 .swiper-slide {
  opacity: 0.7;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 150px;
  width: 9.375rem;
}

.p-sliders__thumbnail1 .swiper-slide:not(.swiper-slide-thumb-active),
.p-sliders__thumbnail2 .swiper-slide:not(.swiper-slide-thumb-active),
.p-sliders__thumbnail3 .swiper-slide:not(.swiper-slide-thumb-active),
.p-sliders__thumbnail4 .swiper-slide:not(.swiper-slide-thumb-active) {
  cursor: pointer;
}

.p-sliders__thumbnail1 .swiper-slide img,
.p-sliders__thumbnail2 .swiper-slide img,
.p-sliders__thumbnail3 .swiper-slide img,
.p-sliders__thumbnail4 .swiper-slide img {
  -o-object-fit: cover;
  aspect-ratio: 150/100;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-sliders__thumbnail1 .swiper-slide.swiper-slide-thumb-active,
.p-sliders__thumbnail2 .swiper-slide.swiper-slide-thumb-active,
.p-sliders__thumbnail3 .swiper-slide.swiper-slide-thumb-active,
.p-sliders__thumbnail4 .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.p-top-business {
  background-color: #4A4D50;
  color: #fff;
  padding: 52px 0 90px;
  padding: 3.25rem 0 5.625rem;
}

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

.p-top-business__en {
  margin-top: -5px;
  margin-top: -0.3125rem;
  position: relative;
}

.p-top-business__en::after {
  color: #B5B5B5;
  content: "Business";
  font-family: "PT Sans";
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  left: -131px;
  left: -8.1875rem;
  line-height: 1.3;
  opacity: 0.15;
  position: absolute;
  top: -11px;
  top: -0.6875rem;
  z-index: -1;
}

.p-top-business__body {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}

.p-top-business__items {
  margin-top: 37px;
  margin-top: 2.3125rem;
}

.p-top-business__item {
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
}

.p-top-business__item:nth-of-type(1) {
  border-top: 1px solid #fff;
  border-top: 0.0625rem solid #fff;
}

.p-top-business__item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  gap: 12px;
  gap: 0.75rem;
  line-height: 2.5;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  width: 100%;
}

.p-top-business__item a:hover {
  background-color: #fff;
  color: #4A4D50;
}

.p-top-business__item a::before {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 24px;
  height: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 28px;
  margin-right: 1.75rem;
  width: 33px;
  width: 2.0625rem;
}

.p-top-business__item:nth-of-type(1) a::before {
  background: url(../../assets/images/top/business01.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(1) a:hover::before {
  background: url(../../assets/images/top/business01black.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(2) a::before {
  background: url(../../assets/images/top/business02.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(2) a:hover::before {
  background: url(../../assets/images/top/business02black.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(3) a::before {
  background: url(../../assets/images/top/business03.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(3) a:hover::before {
  background: url(../../assets/images/top/business03black.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(4) a::before {
  background: url(../../assets/images/top/business04.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(4) a:hover::before {
  background: url(../../assets/images/top/business04black.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(5) a::before {
  background: url(../../assets/images/top/business05.png) no-repeat center/contain;
}

.p-top-business__item:nth-of-type(5) a:hover::before {
  background: url(../../assets/images/top/business05black.png) no-repeat center/contain;
}

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

.p-top-company {
  background-color: #4A4D50;
  overflow-x: hidden;
  padding: 0 0 50px;
  padding: 0 0 3.125rem;
  position: relative;
}

.p-top-company__bk {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(95%, rgb(255, 255, 255)), color-stop(95%, rgb(255, 255, 255)), color-stop(95.1%, rgb(74, 77, 80)), to(rgb(74, 77, 80)));
  background-image: linear-gradient(270deg, rgb(255, 255, 255) 95%, rgb(255, 255, 255) 95%, rgb(74, 77, 80) 95.1%, rgb(74, 77, 80) 100%);
}

.p-top-company__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-top-company__img img {
  -o-object-fit: cover;
  aspect-ratio: 390/250;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-top-company__container {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-bottom: 43px;
  padding-bottom: 2.6875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

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

.p-top-company__en::after {
  color: #B5B5B5;
  content: "Company";
  font-family: "PT Sans";
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  left: 38px;
  left: 2.375rem;
  line-height: 1.3;
  opacity: 0.15;
  position: absolute;
  top: -11px;
  top: -0.6875rem;
  z-index: -1;
}

.p-top-company__head {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 31px;
  margin-top: 1.9375rem;
}

.p-top-company__body {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
}

.p-top-company__btn {
  margin-top: 45px;
  margin-top: 2.8125rem;
  text-align: right;
}

.p-top-faq {
  background-color: #4A4D50;
  color: #fff;
  margin: 0 0 85px;
  margin: 0 0 5.3125rem;
  padding: 61px 0 48px;
  padding: 3.8125rem 0 3rem;
}

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

.p-top-faq__en::after {
  color: #B5B5B5;
  content: "FAQ";
  font-family: "PT Sans";
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  left: 10px;
  left: 0.625rem;
  line-height: 1.3;
  opacity: 0.15;
  position: absolute;
  top: -7px;
  top: -0.4375rem;
  z-index: -1;
}

.p-top-faq__lists {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-top-faq__list {
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  padding: 23px 0;
  padding: 1.4375rem 0;
}

.p-top-faq__list-q-box,
.p-top-faq__list-a-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
}

.p-top-faq__list-q {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.p-top-faq__list-a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.p-top-faq__btn {
  margin-top: 44px;
  margin-top: 2.75rem;
  text-align: right;
}

.p-top-flow {
  background-color: #4A4D50;
  overflow-x: hidden;
  padding: 0 0 50px;
  padding: 0 0 3.125rem;
  position: relative;
}

.p-top-flow__bk {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, rgb(255, 255, 255)), color-stop(95%, rgb(255, 255, 255)), color-stop(95.1%, rgb(74, 77, 80)), to(rgb(74, 77, 80)));
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 95%, rgb(255, 255, 255) 95%, rgb(74, 77, 80) 95.1%, rgb(74, 77, 80) 100%);
}

.p-top-flow__img {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-top-flow__img img {
  -o-object-fit: cover;
  aspect-ratio: 390/250;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-top-flow__container {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-bottom: 43px;
  padding-bottom: 2.6875rem;
}

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

.p-top-flow__en::after {
  color: #B5B5B5;
  content: "Flow";
  font-family: "PT Sans";
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  left: -36px;
  left: -2.25rem;
  line-height: 1.3;
  opacity: 0.15;
  position: absolute;
  top: -7px;
  top: -0.4375rem;
  z-index: -1;
}

.p-top-flow__body {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  margin-top: 31px;
  margin-top: 1.9375rem;
}

.p-top-flow__btn {
  margin-top: 47px;
  margin-top: 2.9375rem;
}

.p-top-news {
  padding: 40px 0 52px;
  padding: 2.5rem 0 3.25rem;
}

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

.p-top-news__en::after {
  color: #B5B5B5;
  content: "News";
  font-family: "PT Sans";
  font-size: 80px;
  font-size: 5rem;
  font-weight: 700;
  left: 30px;
  left: 1.875rem;
  line-height: 1.3;
  opacity: 0.15;
  position: absolute;
  top: -7px;
  top: -0.4375rem;
  z-index: -1;
}

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

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

.p-top-news__item a {
  background-color: #fff;
  border-bottom: 1px solid #F0F0F0;
  border-bottom: 0.0625rem solid #F0F0F0;
  display: inline-block;
  min-height: 103px;
  min-height: 6.4375rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
  width: 100%;
}

.p-top-news__item:first-child a {
  border-top: 1px solid #F0F0F0;
  border-top: 0.0625rem solid #F0F0F0;
}

.p-top-news__item a:hover {
  background-color: #F7F4F4;
  border: 1px solid #F0F0F0;
  border: 0.0625rem solid #F0F0F0;
}

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

.p-top-news__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.p-top-news__category {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 2px 17px;
  padding: 0.125rem 1.0625rem;
}

.p-top-news__title {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #2D2D2D;
  display: -webkit-box;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  overflow: hidden;
}

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

.p-vr {
  background-color: #4A4D50;
}

.p-vr__bk-inner:not(:nth-of-type(1)) {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-vr__bk-inner:nth-of-type(1) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-vr__bk-inner:nth-of-type(4) {
  margin-bottom: 96px;
  margin-bottom: 6rem;
}

.p-vr__bk-inner {
  background: #fff;
  height: auto;
}

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

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

[class^="p-vr__prev"],
[class^="p-vr__next"] {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #F0F0F0;
  border: 0.0625rem solid #F0F0F0;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  height: 2.5rem;
  object-fit: cover;
  pointer-events: auto;
  position: absolute;
  top: 12%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 40px;
  width: 2.5rem;
  z-index: 1;
}

[class^="p-vr__prev"]:hover,
[class^="p-vr__next"]:hover {
  opacity: 0.7;
}

.p-vr__prev1,
.p-vr__prev3 {
  left: 14px;
  left: 0.875rem;
}

.p-vr__prev2,
.p-vr__prev4 {
  left: 14px;
  left: 0.875rem;
}

.p-vr__next1,
.p-vr__next3 {
  right: 14px;
  right: 0.875rem;
}

.p-vr__next2,
.p-vr__next4 {
  right: 14px;
  right: 0.875rem;
}

[class^="p-vr__prev"]::after,
[class^="p-vr__next"]::after {
  border: 1px solid #4A4D50;
  border: 0.0625rem solid #4A4D50;
  border-left: 0;
  border-top: 0;
  content: "";
  display: inline-block;
  height: inherit;
  height: 7px;
  height: 0.4375rem;
  margin: auto;
  position: absolute;
  top: 39%;
  width: inherit;
  width: 7px;
  width: 0.4375rem;
}

[class^="p-vr__prev"]::after {
  left: 43%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

[class^="p-vr__next"]::after {
  left: 38%;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.p-vr__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.p-vr__box1,
.p-vr__box2 {
  border-top: 2px solid #F0F0F0;
  border-top: 0.125rem solid #F0F0F0;
}

.p-vr__box1 {
  padding-top: 14px;
  padding-top: 0.875rem;
}

.p-vr__box2 {
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-top: 14px;
  padding-top: 0.875rem;
}

.p-vr__place-box {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-vr__place-map {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-vr__place-box iframe {
  width: 100%;
}

.p-vr__station-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.u-hidden {
  overflow: hidden;
}

.u-pc {
  display: none;
}

.fz10 {
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
}

.fz12 {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
}

.fz14 {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
}

.fz16 {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.fz18 {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
}

.fz20 {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
}

.u-text-block {
  display: inline-block;
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px){
  html {
    font-size: 1.2030075188vw;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  html {
    scroll-padding-top: 6.25rem;
  }
  .l-404 {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
  .l-business {
    padding: 89px 0 0;
    padding: 5.5625rem 0 0;
  }
  .l-company {
    padding: 139px 0 100px;
    padding: 8.6875rem 0 6.25rem;
  }
  .l-drawer {
    display: none;
  }
  .l-faq {
    padding: 110px 0 114px;
    padding: 6.875rem 0 7.125rem;
  }
  .l-flow {
    padding: 110px 0 127px;
    padding: 6.875rem 0 7.9375rem;
  }
  .l-header {
    height: 90px;
    height: 5.625rem;
  }
  .l-hero-caption {
    margin-top: -22px;
    margin-top: -1.375rem;
  }
  .l-home {
    padding: 120px 0 100px;
    padding: 7.5rem 0 6.25rem;
  }
  .l-inner {
    max-width: 1330px;
    max-width: 83.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .l-main {
    padding-top: 90px;
    padding-top: 5.625rem;
  }
  .l-page {
    padding: 102px 0 100px;
    padding: 6.375rem 0 6.25rem;
  }
  .l-single {
    padding: 123px 0 100px;
    padding: 7.6875rem 0 6.25rem;
  }
  .c-btn__container {
    gap: 105px;
    gap: 6.5625rem;
    padding-bottom: 15px;
    padding-bottom: 0.9375rem;
  }
  .c-btn__text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .c-btn__arrow-box {
    height: 41px;
    height: 2.5625rem;
    width: 41px;
    width: 2.5625rem;
  }
  .c-faq-icon {
    font-size: 26px;
    font-size: 1.625rem;
    height: 46px;
    height: 2.875rem;
    line-height: 1.3846153846;
    width: 46px;
    width: 2.875rem;
  }
  .c-logo__main {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.4375;
  }
  .c-logo__main span {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4583333333;
    margin-left: 0;
  }
  .c-logo__sub {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
  .c-no-post {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .c-scroll-down-btn {
    position: relative;
  }
  .c-scroll-down-btn a {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
    min-height: 120px;
    min-height: 7.5rem;
    min-width: 280px;
    min-width: 17.5rem;
    padding: 29px 0;
    padding: 1.8125rem 0;
  }
  .c-scroll-down-btn a::after {
    bottom: 16px;
    bottom: 1rem;
    height: 8px;
    height: 0.5rem;
    left: 45%;
    right: 5px;
    right: 0.3125rem;
    top: auto;
    width: 21px;
    width: 1.3125rem;
  }
  .c-scroll {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .c-scroll::before {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .c-scroll::after {
    margin-top: 10px;
    margin-top: 0.625rem;
    top: 58px;
    top: 3.625rem;
  }
  .c-section-title__jp {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
  .c-section-title__en {
    font-size: 80px;
    font-size: 5rem;
    line-height: 1.3;
  }
  .c-tag {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    padding: 2px 19px;
    padding: 0.125rem 1.1875rem;
  }
  .c-tel {
    gap: 0;
  }
  .c-tel__img {
    height: 25px;
    height: 1.5625rem;
    margin-top: 0;
    width: 25px;
    width: 1.5625rem;
  }
  .c-tel__number {
    font-size: 32px;
    font-size: 2rem;
    line-height: 0.6956521739;
  }
  .c-tel__hours {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
  .c-text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.875;
  }
  .p-404__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-404__btn {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
  .p-breadcrumb {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8;
    padding: 11px 0 7px;
    padding: 0.6875rem 0 0.4375rem;
  }
  .p-breadcrumb__inner {
    max-width: 1500px;
    max-width: 93.75rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .p-breadcrumb .current-item {
    padding-bottom: 11px;
    padding-bottom: 0.6875rem;
  }
  .p-business__mgmt .p-business-list__item:nth-of-type(2) {
    margin-top: 80px;
    margin-top: 5rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-business-list__item:nth-of-type(1):after {
    background: url(../images/business/estate01.jpg) no-repeat center/cover;
    left: 0;
  }
  .p-business-list__item:nth-of-type(2):after {
    background: url(../images/business/estate02.jpg) no-repeat center/cover;
    right: 0;
  }
  .p-business__mgmt .p-business-list__item:nth-of-type(1):after {
    background: url(../images/business/mgmt01.jpg) no-repeat center/cover;
    left: 0;
    top: 90px;
    top: 5.625rem;
  }
  .p-business__mgmt .p-business-list__item:nth-of-type(2):after {
    background: url(../images/business/mgmt02.jpg) no-repeat center/cover;
    right: 0;
    top: 151px;
    top: 9.4375rem;
  }
  .p-business-list__item-content {
    max-width: 765px;
    max-width: 47.8125rem;
    padding: 35px 61px;
    padding: 2.1875rem 3.8125rem;
    width: 100%;
  }
  .p-business-list__item:nth-of-type(odd) .p-business-list__item-content {
    margin-left: auto;
    margin-top: 210px;
    margin-top: 13.125rem;
  }
  .p-business-list__item:nth-of-type(even) .p-business-list__item-content {
    margin-right: auto;
    margin-top: 262px;
    margin-top: 16.375rem;
  }
  .p-business-list__item-img {
    margin-top: 0;
  }
  .p-business__mgmt .p-business-list__item:nth-of-type(even) .p-business-list__item-content {
    margin-top: 194px;
    margin-top: 12.125rem;
  }
  .p-business-list__item-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .p-business-list__item-text {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.9444444444;
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
  .p-business__inner {
    max-width: 1480px;
    max-width: 92.5rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .p-business__estate {
    padding: 90px 0 90px;
    padding: 5.625rem 0 5.625rem;
  }
  .p-business__estate-inner {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-business__section-title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 0.8;
  }
  .p-business__estate-list {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-business__mgmt {
    margin-top: 50px;
    margin-top: 3.125rem;
    padding: 80px 0 148px;
    padding: 5rem 0 9.25rem;
  }
  .p-business__estate .p-business__inner,
  .p-business__mgmt .p-business__inner {
    max-width: 1480px;
    max-width: 92.5rem;
  }
  .p-common-mv {
    padding: 102px 0;
    padding: 6.375rem 0;
  }
  .p-common-mv__inner {
    max-width: 1490px;
    max-width: 93.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .p-common-mv__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.4375;
  }
  .p-common-mv__english {
    font-size: 120px;
    font-size: 7.5rem;
    left: 80px;
    left: 5rem;
    line-height: 1.2916666667;
  }
  .p-company__philosophy-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
  }
  .p-company__philosophy-container {
    padding: 40px 0;
    padding: 2.5rem 0;
  }
  .p-company__philosophy-img {
    margin-left: auto;
    width: 672px;
    width: 42rem;
  }
  .p-company__philosophy-container {
    left: 0;
    max-width: 53%;
    position: absolute;
  }
  .p-company__philosophy-index,
  .p-company__info-index {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.4375;
    margin-top: 0;
  }
  .p-company__philosophy-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4583333333;
    margin-top: 31px;
    margin-top: 1.9375rem;
  }
  .p-company__philosophy-body {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-company__info-lists {
    display: block;
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
  .p-company__info-list {
    border-bottom: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .p-company__info-title {
    border-bottom: 2px solid #4A4D50;
    border-bottom: 0.125rem solid #4A4D50;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
    padding: 50px 0;
    padding: 3.125rem 0;
    width: 160px;
    width: 10rem;
  }
  .p-company__info-detail {
    border-bottom: 1px solid #F0F0F0;
    border-bottom: 0.0625rem solid #F0F0F0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
    padding: 50px 0 50px 278px;
    padding: 3.125rem 0 3.125rem 17.375rem;
  }
  .p-company__info-map {
    margin-left: 445px;
    margin-left: 27.8125rem;
    margin-top: 0;
  }
  .p-company__link {
    margin-top: 70px;
    margin-top: 4.375rem;
  }
  .p-company__link-pictures:nth-child(2) {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-content .wp-block-columns {
    margin-top: 85px;
    margin-top: 5.3125rem;
  }
  .wp-block-file a,
  .p-content p,
  .p-content li,
  .p-content th,
  .p-content td {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.1875;
  }
  .p-content h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-content h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-content h4 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-content h2:nth-of-type(1) {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-content h2:nth-of-type(n + 2) {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-content figure:nth-child(n+2) {
    margin-top: 38px;
    margin-top: 2.375rem;
  }
  .wp-block-file,
  .p-content p:nth-child(n+2),
  .p-content h3:nth-child(n+2),
  .p-content h4:nth-child(n+2),
  .p-content h2 + ul:nth-of-type(n + 2),
  .p-content h2 + ol:nth-of-type(n + 2),
  .p-content ol > li > ol:nth-of-type(n + 2) {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-content td {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
    padding: 30px 20px;
    padding: 1.875rem 1.25rem;
  }
  .p-content td:first-child {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    padding: 41px 50px;
    padding: 2.5625rem 3.125rem;
  }
  .p-content p.p-content__text {
    line-height: 2.1875;
  }
  .p-content .wp-block-columns {
    margin-bottom: 110px;
    margin-bottom: 6.875rem;
  }
  .p-faq__inner {
    max-width: 1480px;
    max-width: 92.5rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .p-faq__btn-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13px;
    gap: 0.8125rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-faq__btn-item.c-scroll-down-btn a {
    min-height: 120px;
    min-height: 7.5rem;
    min-width: 300px;
    min-width: 18.75rem;
  }
  .p-faq__index-items {
    margin-top: 70px;
    margin-top: 4.375rem;
  }
  .p-faq__index-item {
    margin-top: 10px;
    margin-top: 0.625rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-faq__index-item:not(:first-child) {
    margin-top: 10px;
    margin-top: 0.625rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
  .p-faq__index-title {
    font-size: 32px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.25;
  }
  .p-faq__list {
    gap: 23px;
    gap: 1.4375rem;
    padding: 40px 0 42px;
    padding: 2.5rem 0 2.625rem;
  }
  .p-faq__list-q-box,
  .p-faq__list-a-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
    gap: 2rem;
    margin-left: 10px;
    margin-left: 0.625rem;
  }
  .p-faq__list-q {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .p-faq__list-a {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .p-flow__inner {
    max-width: 1480px;
    max-width: 92.5rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .p-flow__btn-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 70px;
    gap: 4.375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-flow__btn-item.c-scroll-down-btn a {
    min-height: 120px;
    min-height: 7.5rem;
    min-width: 380px;
    min-width: 23.75rem;
  }
  .p-flow__index-items {
    padding-top: 107px;
    padding-top: 6.6875rem;
  }
  .p-flow__index-item {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
    padding-top: 50px;
    padding-top: 3.125rem;
  }
  .p-flow__index-item:not(:first-child) {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }
  .p-flow__index-title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.4375;
  }
  .p-flow__cards {
    grid-column-gap: 0rem;
    -moz-column-gap: 0rem;
    grid-row-gap: 2.5rem;
         -webkit-column-gap: 0rem;
                 column-gap: 0rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
    row-gap: 40px;
    row-gap: 2.5rem;
  }
  .p-flow__card {
    padding: 33px 43px;
    padding: 2.0625rem 2.6875rem;
  }
  .p-flow__card:nth-child(1)::before,
  .p-flow__card:nth-child(2)::before,
  .p-flow__card:nth-child(4)::before {
    content: "";
    display: block;
    height: 18px;
    height: 1.125rem;
    position: absolute;
    right: -4px;
    right: -0.25rem;
    top: 47%;
    width: 7px;
    width: 0.4375rem;
    z-index: 2;
  }
  .p-flow__card:nth-child(1)::before {
    background: url(../images/flow/triangle.svg) no-repeat center/cover;
  }
  .p-flow__card:nth-child(2)::before,
  .p-flow__card:nth-child(4)::before {
    background: url(../images/flow/triangle-white.svg) no-repeat center/cover;
  }
  .p-flow__card:nth-child(1)::after,
  .p-flow__card:nth-child(2)::after,
  .p-flow__card:nth-child(4):after {
    background: url(../images/flow/triangle-border.svg) no-repeat center/cover;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 9px;
    width: 0.5625rem;
    z-index: 1;
  }
  .p-flow__card-head {
    gap: 49px;
    gap: 3.0625rem;
  }
  .p-flow__card-number {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 1.3;
  }
  .p-flow__card-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
  .p-flow__card-body {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.75;
    margin-top: 16px;
    margin-top: 1rem;
    padding-left: 0;
  }
  .p-footer {
    background-color: #4A4D50;
    color: #fff;
  }
  .p-footer__inner {
    display: block;
  }
  .p-footer__wrapper {
    padding: 58px 0 0;
    padding: 3.625rem 0 0;
  }
  .p-footer__wrapper-inner {
    max-width: 1330px;
    max-width: 83.125rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-footer__logo {
    display: inline-block;
  }
  .p-footer__logo .c-logo__main {
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.45;
  }
  .p-footer__logo .c-logo__main span {
    display: inline-block;
    margin-left: 8px;
    margin-left: 0.5rem;
  }
  .p-footer__to-top {
    display: block;
  }
  .p-footer__nav {
    border-bottom: 1px solid #fff;
    border-bottom: 0.0625rem solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }
  .p-footer__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    gap: 2.5rem;
    margin-top: 0;
  }
  .p-footer__nav-item a {
    border-bottom: none;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
  }
  .p-footer__tel {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-footer__tel .c-tel__hours {
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
  .p-footer__container {
    margin: 16px 0 25px;
    margin: 1rem 0 1.5625rem;
  }
  .p-footer__container-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1330px;
    max-width: 83.125rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-footer__nav-item2 a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
  .p-footer__copyright {
    margin-top: 0;
  }
  .p-footer__copyright small {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5625;
    margin-top: 0;
  }
  .p-form__items {
    gap: 12px;
    gap: 0.75rem;
  }
  .p-form__item:first-of-type {
    gap: 16px;
    gap: 1rem;
    margin-bottom: 27px;
    margin-bottom: 1.6875rem;
  }
  .p-form__dt {
    padding-right: 24px;
    padding-right: 1.5rem;
    padding-top: 8px;
    padding-top: 0.5rem;
  }
  .p-form__dd input:not([type=radio]):not([type=checkbox]),
  .p-form__dd textarea {
    border-radius: 0.75rem;
    padding: 12px 24px;
    padding: 0.75rem 1.5rem;
  }
  .p-form__dd input[type=checkbox] + span,
  .p-form__dd input[type=radio] + span {
    gap: 14px;
    gap: 0.875rem;
  }
  .p-form__dd input[type=checkbox] + span::before {
    margin-top: 3px;
    margin-top: 0.1875rem;
    width: 16px;
    width: 1rem;
  }
  .p-form__dd textarea {
    height: 188px;
    height: 11.75rem;
  }
  .p-form__acceptance {
    margin-top: 26px;
    margin-top: 1.625rem;
  }
  .p-form__acceptance input + span::before {
    margin-top: 7px;
    margin-top: 0.4375rem;
  }
  .p-form__policy-description {
    margin-top: 42px;
    margin-top: 2.625rem;
  }
  .p-form__send {
    margin-top: 56px;
    margin-top: 3.5rem;
    max-width: 332px;
    max-width: 20.75rem;
  }
  .p-form__send input {
    min-height: 63px;
    min-height: 3.9375rem;
    padding: 0 54px 0 42px;
    padding: 0 3.375rem 0 2.625rem;
  }
  .p-header__inner {
    padding: 0 0 0 140px;
    padding: 0 0 0 8.75rem;
  }
  .p-header__menu-button {
    display: none;
  }
  .p-header__pc-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-left: auto;
  }
  .p-home__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    gap: 1.5rem;
  }
  .p-home__filter-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
  .p-home__filter-items {
    gap: 4px;
    gap: 0.25rem;
  }
  .p-home__filter-link.p-meta__category {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.5;
    padding: 7px 23px;
    padding: 0.4375rem 1.4375rem;
  }
  .p-home__items {
    margin-top: 37px;
    margin-top: 2.3125rem;
  }
  .p-home__post a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 151px;
    gap: 9.4375rem;
    padding: 65px 52px;
    padding: 4.0625rem 3.25rem;
  }
  .p-home__meta {
    gap: 23px;
    gap: 1.4375rem;
  }
  .p-home__category.p-meta__category {
    padding: 0 8px;
    padding: 0 0.5rem;
  }
  .p-home__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    margin-top: 0;
    padding-right: 100px;
    padding-right: 6.25rem;
  }
  .p-home__arrow {
    right: 93px;
    right: 5.8125rem;
  }
  .p-home__pagenavi {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-hotel {
    padding: 90px 0 120px;
    padding: 5.625rem 0 7.5rem;
  }
  .p-hotel::after {
    bottom: 0;
    height: 388px;
    height: 24.25rem;
    right: -60px;
    right: -3.75rem;
    top: auto;
    width: 593px;
    width: 37.0625rem;
  }
  .p-hotel__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 23px;
    gap: 1.4375rem;
  }
  .p-hotel__container {
    margin-left: 5%;
    margin-top: 45px;
    margin-top: 2.8125rem;
    max-width: 36%;
  }
  .p-hotel__head {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 44px;
    margin-top: 2.75rem;
  }
  .p-hotel__body {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-hotel__btn {
    margin-top: 52px;
    margin-top: 3.25rem;
  }
  .p-hotel__img:nth-of-type(1) {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-hotel__img:nth-of-type(2) {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-inhouse__bk {
    padding-bottom: 89px;
    padding-bottom: 5.5625rem;
  }
  .p-inhouse__inner {
    position: relative;
  }
  .p-inhouse__wrapper {
    margin-left: 34%;
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    position: relative;
  }
  .p-inhouse__img img {
    aspect-ratio: 1200/600;
  }
  .p-inhouse__container {
    left: 28px;
    left: 1.75rem;
    position: absolute;
    top: 50%;
  }
  .p-inhouse__title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 0.8;
    margin-top: 0;
    padding: 0;
  }
  .p-inhouse__box {
    margin-top: 50px;
    margin-top: 3.125rem;
    padding: 53px 80px;
    padding: 3.3125rem 5rem;
    width: 70%;
  }
  .p-inhouse__head {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .p-inhouse__body {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.9444444444;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
  .p-meta__category {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.2222222222;
    padding: 0 22px;
    padding: 0 1.375rem;
  }
  .p-meta__date {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
  }
  .p-mv__copy {
    bottom: auto;
    left: 0;
    right: 0;
    top: 48%;
  }
  .p-mv__inner {
    max-width: 1630px;
    max-width: 101.875rem;
  }
  .p-mv__main-copy {
    font-size: 56px;
    font-size: 3.5rem;
    line-height: 1.8;
    text-align: left;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
  }
  .p-mv__sub-copy {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.4375;
    margin-top: 6px;
    margin-top: 0.375rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
    padding-right: 55px;
    padding-right: 3.4375rem;
    text-align: left;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
  }
  .p-mv__sub-copy::after {
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .p-mv__jp-copy {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 15px;
    margin-top: 0.9375rem;
    text-align: left;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
  }
  .p-mv__place {
    bottom: 55px;
  }
  .p-mv__place-wrapper {
    position: relative;
  }
  .p-mv__place-text {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1;
    width: 84%;
  }
  .p-mv__under {
    bottom: 102px;
  }
  .p-mv__under-wrapper {
    position: relative;
  }
  .p-mv__pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
    top: 51px;
    width: 88%;
  }
  .p-mv__prev,
  .p-mv__next {
    -o-object-fit: cover;
    aspect-ratio: 1/1;
    background-color: #fff;
    border: 1px solid #F0F0F0;
    border: 0.0625rem solid #F0F0F0;
    border-radius: 50%;
    cursor: pointer;
    height: 35px;
    height: 2.1875rem;
       object-fit: cover;
    pointer-events: auto;
    position: absolute;
    top: 33px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 35px;
    width: 2.1875rem;
    z-index: 10;
  }
  .p-mv__prev {
    right: 78px;
    right: 4.875rem;
  }
  .p-mv__next {
    right: 28px;
    right: 1.75rem;
  }
  .p-mv__scroll {
    bottom: 54px;
    bottom: 3.375rem;
    right: 61px;
    right: 3.8125rem;
  }
  .p-pagenavi .nav-links,
  .p-pagenavi .wp-pagenavi {
    gap: 60px;
    gap: 3.75rem;
  }
  .p-pagenavi .first,
  .p-pagenavi .last,
  .p-pagenavi .current,
  .p-pagenavi .extend,
  .p-pagenavi .page {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
  .p-pavinavi__prev,
  .p-pavinavi__next {
    height: 41px;
    height: 2.5625rem;
    width: 41px;
    width: 2.5625rem;
  }
  .p-pavinavi__prev::after {
    left: 45%;
    top: 45%;
  }
  .p-pavinavi__prev:hover::after,
  .p-pavinavi__next:hover::after {
    top: 45%;
  }
  .p-pavinavi__next:hover::after {
    left: 40%;
    top: 45%;
  }
  .p-single__title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
  .p-single__meta {
    border-bottom: 1px solid #F0F0F0;
    border-bottom: 0.0625rem solid #F0F0F0;
    margin-top: 20px;
    margin-top: 1.25rem;
    padding-bottom: 5px;
    padding-bottom: 0.3125rem;
  }
  .p-single__date {
    padding-top: 20px;
    padding-top: 1.25rem;
  }
  .p-single__content {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-single__btn {
    padding-top: 46px;
    padding-top: 2.875rem;
  }
  .p-sliders__thumbnail1,
  .p-sliders__thumbnail2,
  .p-sliders__thumbnail3,
  .p-sliders__thumbnail4 {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-top-business {
    padding: 123px 0 42px;
    padding: 7.6875rem 0 2.625rem;
  }
  .p-top-business__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-business__container {
    margin-top: 31px;
    margin-top: 1.9375rem;
    width: 34%;
  }
  .p-top-business__en::after {
    font-size: 120px;
    font-size: 7.5rem;
    left: -321px;
    left: -20.0625rem;
    line-height: 1.2916666667;
    top: -5px;
    top: -0.3125rem;
  }
  .p-top-business__body {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 18px;
    margin-top: 1.125rem;
  }
  .p-top-business__items {
    margin-top: 0px;
    margin-top: 0rem;
    width: 48%;
  }
  .p-top-business__item a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    padding: 32px 35px;
    padding: 2rem 2.1875rem;
  }
  .p-top-business__item a::before {
    height: 36px;
    height: 2.25rem;
    width: 42px;
    width: 2.625rem;
  }
  .p-top-business__btn {
    margin-top: 73px;
    margin-top: 4.5625rem;
  }
  .p-top-company {
    margin: 0 0 50px;
    margin: 0 0 3.125rem;
    padding: 100px 0;
    padding: 6.25rem 0;
  }
  .p-top-company__bk {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(80%, rgb(255, 255, 255)), color-stop(80%, rgb(255, 255, 255)), color-stop(80.1%, rgb(74, 77, 80)), to(rgb(74, 77, 80)));
    background-image: linear-gradient(270deg, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 80%, rgb(74, 77, 80) 80.1%, rgb(74, 77, 80) 100%);
  }
  .p-top-company__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 200px;
    gap: 12.5rem;
    margin-left: calc(50% - 50vw);
    position: relative;
  }
  .p-top-company__img {
    margin-left: auto;
    margin-top: -100px;
    margin-top: -6.25rem;
    z-index: 15;
  }
  .p-top-company__img img {
    -o-object-fit: cover;
    aspect-ratio: 910/600;
    height: auto;
       object-fit: cover;
    width: 100%;
  }
  .p-top-company__container {
    margin-top: 75px;
    margin-top: 4.6875rem;
    max-width: 650px;
    max-width: 40.625rem;
    padding-bottom: 143px;
    padding-bottom: 8.9375rem;
    padding-left: 0;
  }
  .p-top-company__en::after {
    font-size: 120px;
    font-size: 7.5rem;
    left: -157px;
    left: -9.8125rem;
    line-height: 1.2916666667;
    top: -5px;
    top: -0.3125rem;
  }
  .p-top-company__head {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4583333333;
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-top-company__body {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-top-company__btn {
    margin-top: 75px;
    margin-top: 4.6875rem;
    text-align: left;
  }
  .p-top-faq {
    background: #fff;
    margin: 0 0 125px;
    margin: 0 0 7.8125rem;
    padding: 0 0 30px;
    padding: 0 0 1.875rem;
  }
  .p-top-faq__bk {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(4%, rgb(255, 255, 255)), color-stop(4%, rgb(255, 255, 255)), color-stop(4.1%, rgb(74, 77, 80)), to(rgb(74, 77, 80)));
    background-image: linear-gradient(90deg, rgb(255, 255, 255) 4%, rgb(255, 255, 255) 4%, rgb(74, 77, 80) 4.1%, rgb(74, 77, 80) 100%);
  }
  .p-top-faq__wrapper {
    padding: 78px 0 76px;
    padding: 4.875rem 0 4.75rem;
  }
  .p-top-faq__en::after {
    font-size: 120px;
    font-size: 7.5rem;
    left: -157px;
    left: -9.8125rem;
    line-height: 1.2916666667;
    top: -5px;
    top: -0.3125rem;
  }
  .p-top-faq__lists {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-top-faq__list {
    gap: 25px;
    gap: 1.5625rem;
    padding: 37px 0;
    padding: 2.3125rem 0;
  }
  .p-top-faq__list-q-box,
  .p-top-faq__list-a-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 43px;
    gap: 2.6875rem;
  }
  .p-top-faq__list-q-box .c-faq-icon,
  .p-top-faq__list-a-box .c-faq-icon {
    margin-left: 25px;
    margin-left: 1.5625rem;
  }
  .p-top-faq__list-q {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .p-top-faq__list-a {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .p-top-faq__btn {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-flow {
    margin: 0;
    padding: 150px 0;
    padding: 9.375rem 0;
  }
  .p-top-flow__bk {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(80%, rgb(255, 255, 255)), color-stop(80%, rgb(255, 255, 255)), color-stop(80.1%, rgb(74, 77, 80)), to(rgb(74, 77, 80)));
    background-image: linear-gradient(90deg, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 80%, rgb(74, 77, 80) 80.1%, rgb(74, 77, 80) 100%);
  }
  .p-top-flow__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 200px;
    gap: 12.5rem;
    margin-right: calc(50% - 50vw);
    position: relative;
  }
  .p-top-flow__img {
    margin-right: auto;
    margin-top: -100px;
    margin-top: -6.25rem;
  }
  .p-top-flow__img img {
    -o-object-fit: cover;
    aspect-ratio: 910/600;
    height: auto;
       object-fit: cover;
    width: 100%;
  }
  .p-top-flow__container {
    margin-top: 75px;
    margin-top: 4.6875rem;
    max-width: 650px;
    max-width: 40.625rem;
    padding-bottom: 143px;
    padding-bottom: 8.9375rem;
  }
  .p-top-flow__en::after {
    font-size: 120px;
    font-size: 7.5rem;
    left: -157px;
    left: -9.8125rem;
    line-height: 1.2916666667;
    top: -5px;
    top: -0.3125rem;
  }
  .p-top-flow__body {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-top-flow__btn {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }
  .p-top-news {
    padding: 50px 0;
    padding: 3.125rem 0;
  }
  .p-top-news__en::after {
    font-size: 120px;
    font-size: 7.5rem;
    left: -157px;
    left: -9.8125rem;
    line-height: 1.2916666667;
    top: -5px;
    top: -0.3125rem;
  }
  .p-top-news__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 200px;
    gap: 12.5rem;
  }
  .p-top-news__items {
    margin-right: 100px;
    margin-right: 6.25rem;
    margin-top: 67px;
    margin-top: 4.1875rem;
  }
  .p-top-news__item a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    gap: 1.5625rem;
    min-width: 50vw;
    padding: 64px 64px;
    padding: 4rem 4rem;
  }
  .p-top-news__meta {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 23px;
    gap: 1.4375rem;
  }
  .p-top-news__date {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-top-news__category {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-top-news__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
  }
  .p-top-news__btn {
    margin-right: 100px;
    margin-right: 6.25rem;
    margin-top: 100px;
    margin-top: 6.25rem;
    text-align: right;
  }
  .p-vr__bk-inner:nth-of-type(1) {
    margin-top: 89px;
    margin-top: 5.5625rem;
  }
  .p-vr__bk-inner {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(4%, rgb(74, 77, 80)), color-stop(4%, rgb(74, 77, 80)), color-stop(4.1%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background-image: linear-gradient(90deg, rgb(74, 77, 80) 4%, rgb(74, 77, 80) 4%, rgb(255, 255, 255) 4.1%, rgb(255, 255, 255) 100%);
    padding: 108px 0;
    padding: 6.75rem 0;
  }
  .p-vr__bk-inner--reverse {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(4%, rgb(74, 77, 80)), color-stop(4%, rgb(74, 77, 80)), color-stop(4.1%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background-image: linear-gradient(270deg, rgb(74, 77, 80) 4%, rgb(74, 77, 80) 4%, rgb(255, 255, 255) 4.1%, rgb(255, 255, 255) 100%);
  }
  .p-vr__inner {
    padding-top: 0;
  }
  .p-vr__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.6363636364%;
  }
  .p-vr__wrapper.p-vr__wrapper--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  [class^="p-vr__slider"] {
    width: 55.9440559441%;
  }
  [class^="p-vr__prev"],
  [class^="p-vr__next"] {
    top: 30%;
  }
  .p-vr__prev1,
  .p-vr__prev3 {
    left: 18px;
    left: 1.125rem;
  }
  .p-vr__prev2,
  .p-vr__prev4 {
    left: 45%;
  }
  .p-vr__next1,
  .p-vr__next3 {
    left: 52%;
    right: auto;
  }
  .p-vr__next2,
  .p-vr__next4 {
    right: 2%;
  }
  .p-vr__container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-vr__title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.0666666667;
    margin-top: 25px;
    margin-top: 1.5625rem;
    padding-bottom: 42px;
    padding-bottom: 2.625rem;
  }
  .p-vr__box1 {
    padding-top: 44px;
    padding-top: 2.75rem;
  }
  .p-vr__box2 {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding-bottom: 0;
    padding-top: 34px;
    padding-top: 2.125rem;
  }
  .p-vr__place,
  .p-vr__station {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 21px;
    gap: 1.3125rem;
  }
  .p-vr__place-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
  .p-vr__place-map {
    margin-top: 13px;
    margin-top: 0.8125rem;
  }
  .p-vr__station-text {
    margin-top: 0;
  }
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}

@media (min-width: 1330px){
  html {
    font-size: 16px;
  }
}

@media (hover: hover){
  a:hover {
    opacity: 0.7;
  }
}

@media (hover: none){
  a:active {
    opacity: 0.7;
  }
}

@media (min-width: 1480px){
  .p-faq__btn-item.c-scroll-down-btn a {
    min-height: 120px;
    min-height: 7.5rem;
    min-width: 350px;
    min-width: 21.875rem;
    width: 100%;
  }
  [class^="p-vr__prev"],
  [class^="p-vr__next"] {
    top: 36%;
  }
}

@media (max-width: 1800px){
  .p-mv__scroll {
    bottom: 54px;
    bottom: 3.375rem;
    right: 10px;
    right: 0.625rem;
  }
}

@media (max-width: 767px){
  .p-mv__scroll {
    bottom: -104px;
    bottom: -6.5rem;
    right: 20px;
    right: 1.25rem;
  }
}

@media (min-width: 2000px){
  .p-top-company__img {
    margin-right: calc(50% - 42vw);
  }
  .p-top-flow__img {
    margin-left: calc(50% - 42vw);
  }
}
/*# sourceMappingURL=style.css.map */
