@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body {
  font-family: "Midashi Go MB31", sans-serif;
  font-weight: 400;
  font-style: normal;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 2;
  color: #000;
  background-color: #fff;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

.js-more {
  cursor: pointer;
}

html {
  font-size: 16px;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

/* モーダル表示中はスクロール禁止 */
body.modal-open {
  overflow: hidden;
  overscroll-behavior: contain;
  position: fixed;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  body.modal-open {
    -ms-touch-action: auto;
        touch-action: auto;
  }
}
@media (hover: none) and (pointer: coarse) {
  body.modal-open {
    -ms-touch-action: manipulation;
        touch-action: manipulation;
  }
}

.p-modal.js-modal-window {
  -ms-touch-action: pan-y !important;
      touch-action: pan-y !important;
  -webkit-overflow-scrolling: touch !important;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.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;
}

/* Set core root defaults */
/* 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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -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;
}

@media screen and (min-width: 431px) {
  .l-main {
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 1200px) {
  .l-main__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-container {
  position: relative;
  z-index: 1;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .l-container {
    width: calc(100% - 18.4375rem);
    margin-left: 18.4375rem;
  }
}

.l-contents {
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 431px) {
  .l-contents {
    width: 24.375rem;
  }
}

.fixed-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 34px;
  height: 2.125rem;
  border-radius: 100%;
  z-index: 500;
}
@media screen and (min-width: 1200px) {
  .fixed-btn {
    width: calc(100% - 18.4375rem);
  }
}

.fixed-btn-inner {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 431px) {
  .fixed-btn-inner {
    width: 24.375rem;
  }
}

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

p {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
  font-family: "Gothic Medium BBB", sans-serif;
}

.l-left {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 36px 63px 66px 48px;
  padding: 2.25rem 3.9375rem 4.125rem 3rem;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .l-left {
    width: 18.4375rem;
    display: block;
  }
}

.l-modal {
  position: fixed;
  /*サイトによってここの数値は調整 */
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 390px;
  max-width: 24.375rem;
}
@media screen and (min-width: 1200px) {
  .l-modal {
    left: calc(147.5px + 50%);
  }
}

.l-modal.is-modal {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 200;
}

.l-overlay {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  -webkit-transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: clip-path;
  z-index: 300;
  padding: 0 26px;
  padding: 0 1.625rem;
}
@media screen and (min-width: 431px) {
  .l-overlay {
    width: 24.375rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .l-overlay {
    display: none;
  }
}
.l-overlay.is-open {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.l-overlay-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, .5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-overlay-bg.is-open {
  opacity: 1;
  z-index: 300;
}
@media screen and (min-width: 1200px) {
  .l-overlay-bg {
    display: none;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@-webkit-keyframes loop-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes fold {
  0%, 49% {
    opacity: 1;
    visibility: visible;
  }
  50%, 100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fold {
  0%, 49% {
    opacity: 1;
    visibility: visible;
  }
  50%, 100% {
    opacity: 0;
    visibility: hidden;
  }
}
.c-hamburger {
  width: 26px;
  width: 1.625rem;
  height: 10px;
  height: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1200px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger__line {
  width: 100%;
  position: relative;
}

.c-hamburger span {
  width: 100%;
  height: 1px;
  border-radius: 1000px;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.c-hamburger span:nth-of-type(1) {
  top: 0;
}

.c-hamburger span:nth-of-type(2) {
  bottom: 0;
}

.c-hamburger.is-open span:nth-of-type(1) {
  top: 40%;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.c-hamburger.is-open span:nth-of-type(2) {
  bottom: 45%;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.c-qr__container {
  margin-top: -82px;
  margin-top: -5.125rem;
}

.c-qr__text {
  font-family: "Midashi Go MB31", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px rgba(51, 51, 51, .6);
}

.c-qr__image {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 98px;
  width: 6.125rem;
  height: 120px;
  height: 7.5rem;
  margin-left: auto;
  margin-right: auto;
}
.c-qr__image img {
  border: solid 1px #fff;
}

.c-sec-title.-en {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "futura-pt", sans-serif;
  margin: 26px 0 50px;
  margin: 1.625rem 0 3.125rem;
  line-height: 1;
  letter-spacing: 0;
}
.c-sec-title.-jp {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Midashi Go MB31", sans-serif;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.c-sec-title.-feature {
  line-height: 2.2;
}
.c-sec-title.-white {
  color: #fff;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
.c-sec-title.-studio {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 431px) {
  .c-sec-title.-studio {
    margin-bottom: 3.75rem;
  }
}

.c-text p:not(:first-child) {
  margin-top: 33.6px;
  margin-top: 2.1rem;
}

.c-border {
  border-bottom: 1px solid #d3d3d3;
}

.c-border.-white {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.c-btn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 10px 0;
  padding: 0.625rem 0;
  color: #fff;
  background-color: #000;
  border-radius: 100px;
  width: 183px;
  width: 11.4375rem;
  overflow: hidden;
  -webkit-transition: width 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: width 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: width 1s ease-in-out, transform 1s ease-in-out;
  transition: width 1s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
.c-btn.-fixed {
  position: absolute;
  bottom: 50%;
  right: 3%;
  z-index: 9999;
  padding: 7px 0;
  padding: 0.4375rem 0;
  width: 145px;
  width: 9.0625rem;
}
.c-btn.-fixed::before {
  content: "";
  width: 4px;
  width: 4px;
  width: 0.25rem;
  height: 4px;
  height: 4px;
  height: 0.25rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.c-btn.is-open {
  width: 365px;
  width: 22.8125rem;
}

.c-slide-btn__inner {
  overflow: hidden;
  width: calc(100% - 44px);
}

.c-slide-btn__inner .c-btn__txt.-jp {
  margin-left: 4px;
  margin-left: 0.25rem;
}

.c-btn__txt {
  font-family: "Midashi Go MB31", sans-serif;
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
  white-space: nowrap;
}
.c-btn__txt.-jp {
  font-weight: 500;
  font-size: 11px;
  font-size: 0.6875rem;
  margin-left: 11px;
  margin-left: 0.6875rem;
}
.c-btn__txt.-en {
  font-weight: 500;
  font-family: "futura-pt", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
}

.c-btn svg {
  width: 4px;
  width: 0.25rem;
}

.c-btn2 {
  position: relative;
  display: inline-block;
  font-family: "futura-pt", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 11px 60px 11px 22px;
  padding: 0.6875rem 3.75rem 0.6875rem 1.375rem;
  border-radius: 999px;
  border: 1px solid #B3A99E;
  border: 0.0625rem solid #B3A99E;
  color: #B3A99E;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.c-btn2.-black {
  border: 1px solid #000;
  border: 0.0625rem solid #000;
  color: #000;
}
.c-btn2.-white {
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  color: #fff;
}

.c-btn2::before {
  content: "";
  width: 4px;
  width: 0.25rem;
  height: 4px;
  height: 0.25rem;
  background-color: #B3A99E;
  position: absolute;
  top: 50%;
  right: 15%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-btn2.-black::before {
  background-color: #000;
}

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

.c-btn2.-modal::before {
  content: "";
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  background-color: transparent;
  background-image: url(../images/close.svg);
  background-size: cover;
  background-position: center;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  line-height: 1;
}

.c-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.c-slide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-slide 30s linear infinite;
          animation: loop-slide 30s linear infinite;
}

.c-sec-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.c-sec-dots.-price {
  padding: 0 10px;
  padding: 0 0.625rem;
}
.c-sec-dots.-modal {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.c-sec-dots span {
  height: 4px;
  height: 0.25rem;
  border-left: 1px solid #000;
  border-left: 0.0625rem solid #000;
  margin: 0 2.5px;
  margin: 0 0.15625rem;
}

.c-sec-dots.-white span {
  border-left: 1px solid #fff;
  border-left: 0.0625rem solid #fff;
}

.c-joint {
  position: absolute;
  left: 0;
  top: -500px;
  top: -31.25rem;
}
.c-joint.-footer {
  top: 740px;
  top: 46.25rem;
}

.c-dot {
  width: 60px;
  width: 3.75rem;
  margin: 0 auto;
}
.c-dot.-left {
  margin-left: 0;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.c-top {
  display: grid;
  gap: 7px;
  gap: 0.4375rem;
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, .1);
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 30px;
  margin-right: 1.875rem;
}

.c-top__arrow {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.c-top__arrow img {
  width: 10px;
  width: 0.625rem;
  height: 12px;
  height: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

.c-top__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
}

.p-404 {
  margin-top: 46px;
  margin-top: 2.875rem;
}

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

.p-404__title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 600;
}

.p-404__texts {
  margin-top: 32px;
  margin-top: 2rem;
  color: #464646;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 500;
}

.p-404__btn {
  margin-top: 50px;
  margin-top: 3.125rem;
  display: block;
  width: 318px;
  width: 19.875rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  background-color: #fff;
  border: 1px solid rgba(148, 113, 81, .3);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.p-404__arrow {
  position: absolute;
  content: "";
  width: 26px;
  width: 1.625rem;
  top: 42%;
  right: calc(50% - 6.875rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-access {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.p-access__iframe__wrap iframe {
  aspect-ratio: 43/29;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.p-access__items {
  padding-top: 20px;
  padding-top: 1.25rem;
  display: grid;
  gap: 14px;
  gap: 0.875rem;
}

.p-access__item a {
  pointer-events: visible;
}

.p-access__number {
  font-family: "futura-pt", sans-serif;
  line-height: 1.9;
  letter-spacing: 0;
}

.p-access__number span {
  font-family: "Gothic Medium BBB", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  margin-right: 4px;
  margin-right: 0.25rem;
}

.p-access__address {
  line-height: 1.9;
  letter-spacing: 0;
}

.p-access__address span {
  font-family: "futura-pt", sans-serif;
}

.p-access__other {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
}

.p-access__tel {
  font-family: "futura-pt", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #625F5C;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

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

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

.p-breadcrumb__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  font-size: 0.6875rem;
}

.p-breadcrumb__arrow,
.p-breadcrumb__open {
  color: #464646;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.p-concept {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 82px 0 80px;
  padding: 5.125rem 0 5rem;
}
@media screen and (min-width: 431px) {
  .p-concept {
    padding: 5.125rem 0 5rem;
  }
}

.p-concept__inner {
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.p-concept__title {
  font-family: "Midashi Go MB31", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-concept__title.-jp {
  font-weight: bold;
}
.p-concept__title.-en {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.5;
}

.p-concept__title span {
  letter-spacing: -0.02em;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.p-concept__txt {
  font-family: "Gothic Medium BBB", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2.2;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-concept__slide__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 11px;
  top: 0.6875rem;
  left: -12px;
  left: -0.75rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-concept__slide__txt img {
  padding: 6px 0;
  padding: 0.375rem 0;
}

.corporate-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/studio01.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  /* 常にトランジション有効にする */
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  /* クリックを邪魔しない */
  pointer-events: none;
  /* デフォは非表示。z-indexは固定でOK */
  z-index: 1;
  opacity: 0;
}
.p-corporate {
  padding-bottom: 95px;
  padding-bottom: 5.9375rem;
  position: relative;
  z-index: 10;
}

.p-corporate__text__box {
  margin-top: 44px;
  margin-top: 2.75rem;
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}

.p-corporate__text__title {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  line-height: 2.4;
}

.p-corporate__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2.4;
  letter-spacing: 0;
}

.p-corporate__bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 272px;
  height: 17rem;
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-corporate__bg img {
  position: absolute;
  top: -60px;
  top: -3.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 340px;
  height: 21.25rem;
}

.p-company {
  padding-bottom: 95px;
  padding-bottom: 5.9375rem;
}

.p-company__title__box {
  margin: 24px 0 60px;
  margin: 1.5rem 0 3.75rem;
}

.p-company__title.-en {
  font-family: "futura-pt", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.p-company__title.-jp {
  font-family: "Gothic Medium BBB", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  color: #ABA7A3;
}

.p-company__list {
  width: 162px;
  width: 10.125rem;
  margin: 0 auto;
}

.p-drawer {
  display: none;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.3s ease;
  transition: opacity 0.5s ease, visibility 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .p-drawer {
    position: absolute;
  }
}
.p-drawer.is-open {
  visibility: visible;
  display: block;
}

.p-drawer__nav {
  margin-top: 32px;
  margin-top: 2rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  overflow: auto;
  height: calc(100vh - 220px);
  scrollbar-width: none;
}

.p-drawer .p-drawer__nav {
  height: calc(100vh - 269px);
}

.p-drawer__lists {
  display: grid;
  gap: 20px;
  gap: 1.25rem;
}

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

.p-drawer__list__ttl {
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
.p-drawer__list__ttl.-jp {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Gothic Medium BBB", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
  color: #757575;
  margin-top: 6px;
  margin-top: 0.375rem;
}
.p-drawer__list__ttl.-en {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "futura-pt", sans-serif;
  line-height: 1;
  color: #000;
}

.p-drawer__list__ttl .word {
  overflow: hidden;
  display: inline-block;
}

.p-drawer__list__ttl .word--text {
  display: inline-block;
}

.p-drawer__line {
  position: relative;
  width: 26px;
  width: 1.625rem;
  height: 10px;
  height: 0.625rem;
}

.p-drawer__line span {
  width: 26px;
  width: 1.625rem;
  height: 2px;
  height: 0.125rem;
  background-color: #000;
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-drawer__line span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(25deg);
          transform: translate(-50%, -50%) rotate(25deg);
}

.p-drawer__line span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(155deg);
          transform: translate(-50%, -50%) rotate(155deg);
}

.p-feature {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .p-feature {
    padding-bottom: 3.75rem;
  }
}

.p-feature__texts p {
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 25px 0 65px;
  margin: 1.5625rem 0 4.0625rem;
  line-height: 2.2;
}

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

.p-feature__list {
  position: relative;
  width: 45%;
  border-radius: 100%;
  overflow: hidden;
}

.p-feature__list__img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 10;
}

.p-feature__list--texts {
  width: 50%;
  position: relative;
}

.p-feature__list--texts::before {
  position: absolute;
  content: "";
  background-image: url(../images/circle.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  width: 270px;
  width: 16.875rem;
  height: 270px;
  height: 16.875rem;
  -webkit-animation: rotate 100s linear infinite;
          animation: rotate 100s linear infinite;
}

.p-feature__put {
  width: 55px;
  width: 3.4375rem;
  margin: 8px auto;
  margin: 0.5rem auto;
}

.p-feature__name {
  text-align: center;
  font-family: "Midashi Go MB31", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
}

.p-feature__name span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: "futura-pt", sans-serif;
  letter-spacing: 0;
  line-height: 2;
  margin-top: -5px;
  margin-top: -0.3125rem;
  color: rgba(70, 70, 70, .8);
  text-shadow: none;
}

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

.p-feature__item {
  font-family: "Gothic Medium BBB", sans-serif;
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.2;
  letter-spacing: 0;
}

.p-feature__item:first-child {
  margin: 10px auto 16px;
  margin: 0.625rem auto 1rem;
}

.p-feature__dot {
  width: 27px;
  width: 1.6875rem;
  margin: 0 auto;
}

.p-footer {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#223847), color-stop(53%, #223847), color-stop(53%, #fff), to(#fff));
  background-image: linear-gradient(180deg, #223847 0%, #223847 53%, #fff 53%, #fff 100%);
  padding: 100px 0 10px;
  padding: 6.25rem 0 0.625rem;
}

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

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

.p-footer__form__image {
  width: 28px;
  width: 1.75rem;
  margin: 0 auto;
}

.p-footer__form__text {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-footer__form__text p {
  line-height: 2;
  font-family: "Gothic Medium BBB", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-footer__btn {
  text-align: center;
  margin: 30px 0 95px;
  margin: 1.875rem 0 5.9375rem;
}

.p-footer__info {
  width: 100%;
  margin: 80px auto 50px;
  margin: 5rem auto 3.125rem;
  color: #fff;
}

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

.p-footer__info__box__inner {
  display: inline-block;
  text-align: left;
}

.p-footer__logo__link {
  width: 100%;
  display: block;
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}

.p-footer__logo__img {
  width: 184px;
  width: 11.5rem;
  margin: 0 auto;
}

.p-footer__info p,
.p-footer__form__text p {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
}

.p-footer__number {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-family: "futura-pt", sans-serif;
  line-height: 1.6;
}

.p-footer__number span {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Gothic Medium BBB", sans-serif;
  margin-right: 2px;
  margin-right: 0.125rem;
}

.p-footer__address span {
  font-family: "futura-pt", sans-serif;
}

.p-footer__tel {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-footer__tel,
.p-footer__sns {
  position: relative;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.p-footer__sns::before {
  content: "";
  width: 0.5px;
  width: 0.03125rem;
  height: 9px;
  height: 0.5625rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-footer__tel a,
.p-footer__sns a {
  font-weight: 400;
  margin-left: 20px;
  margin-left: 1.25rem;
}

.p-footer__sns a {
  margin-left: 14px;
  margin-left: 0.875rem;
}

.p-footer__nav {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

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

.p-footer__list {
  width: 50%;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.p-footer__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 17px;
  font-size: 1.0625rem;
  font-family: "futura-pt", sans-serif;
  line-height: 1.4;
}

.p-footer__list span {
  display: inline-block;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "Gothic Medium BBB", sans-serif;
  color: #757575;
}

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

.p-footer__sub__lists.-border {
  padding-bottom: 0;
  border-bottom: 1px solid #dcdcdc;
  border-bottom: 0.0625rem solid #dcdcdc;
}

.p-footer__sub__lists h2 {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Midashi Go MB31", sans-serif;
  color: #757575;
}

.p-footer__sub__lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-footer__sub__lists li {
  margin-right: 20px;
  margin-right: 1.25rem;
}

.p-footer__sub__lists a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__sub__lists p {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "futura-pt", sans-serif;
}

.p-footer__sub__lists img {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.p-footer__copy {
  font-family: "futura-pt", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #757575;
}

.p-footer__policy {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "futura-pt", sans-serif;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 110px;
  margin-bottom: 6.875rem;
  display: inline-block;
}

.p-header {
  position: sticky;
  top: 0;
  z-index: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 19px 25px;
  padding: 1.1875rem 1.5625rem;
}
.p-header.-drawer {
  padding: 25px 0 0;
  padding: 1.5625rem 0 0;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .p-header {
    position: relative;
  }
}

.p-header.is-hidden {
  opacity: 0;
  pointer-events: none; /* クリック等を無効化 */
}

.p-left {
  position: relative;
  height: inherit;
}

.p-left__logo {
  width: 176px;
  width: 11rem;
  display: block;
}

.p-left__box {
  font-family: "futura-pt", sans-serif;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-left__box.-sp {
  padding: 0 26px;
  padding: 0 1.625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-left__box.-drawer {
  padding: 80px 0 0;
  padding: 5rem 0 0;
}
.p-left__address__box {
  overflow: hidden;
  width: 100px;
  width: 6.25rem;
}

.p-left__address {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
  margin-right: 4px;
  margin-right: 0.25rem;
}

.p-left__address span {
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.p-left__sns__map,
.p-left__sns__line,
.p-left__sns__ig {
  position: relative;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  white-space: nowrap;
}

.p-left__sns__line,
.p-left__sns__ig {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  display: inline-block;
}

.p-left__sns__ig {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.p-left__sns__ig::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -13px;
  left: -0.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  background-color: rgba(0, 0, 0, .3);
  height: 100%;
}

.p-left__sns__map {
  line-height: 2.4;
}

.p-left__sns__line {
  margin-right: 10px;
  margin-right: 0.625rem;
}

.p-left__snss {
  margin-top: 14px;
  margin-top: 0.875rem;
  position: relative;
  line-height: 1;
}

.p-left__nav {
  margin-top: 43px;
  margin-top: 2.6875rem;
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
}

.p-left__lists {
  display: grid;
  gap: 14px;
  gap: 0.875rem;
}
@media screen and (max-height: 790px) {
  .p-left__lists {
    overflow: auto;
    scrollbar-width: none;
  }
}

.p-left__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  color: rgba(0, 0, 0, .25);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 1.6;
}

.p-left__list.is-active a {
  color: #000;
}

.p-left__list.is-active a span {
  color: #000;
}

.p-left__list span {
  color: rgba(0, 0, 0, .4);
  font-family: "Gothic Medium BBB", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
}

.p-left__qr__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 50px;
  bottom: 3.125rem;
  left: 48px;
  left: 3rem;
}
@media screen and (max-height: 790px) {
  .p-left__qr__box {
    display: none;
  }
}

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

.p-left__qr__txt {
  font-size: 10px;
  font-size: 0.625rem;
  margin-left: 14px;
  margin-left: 0.875rem;
  color: #7D7979;
  line-height: 1.4;
}

/* 画面全体を覆うローダー */
.loding {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

/* ロゴを中央に配置（クラス名を HTML に合わせる） */
.loding-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* ロゴの初期スタイル */
.lottie-box {
  width: 178px;
  width: 11.125rem;
  height: 61px;
  height: 3.8125rem;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform, opacity;
  background-color: transparent;
}

#lottie1 {
  -webkit-transform: scale(1.6);
          transform: scale(1.6);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

@media (max-width: 430px) {
  #lottie1 {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/* 白い覆い（上にスライドして消える）*/
.loding-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  will-change: transform;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ローダー非表示後は消す */
.loding.-hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .lottie-box,
  .loding-bg {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.p-modal {
  background-color: rgba(0, 0, 0, .6);
  padding: 40px 15px 40px;
  padding: 2.5rem 0.9375rem 2.5rem;
  width: 100%;
  max-width: 100%;
  height: 100vh !important;
  max-height: 100vh !important;
  min-height: 0;
  overflow-y: auto !important;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch !important;
  -ms-touch-action: pan-y !important;
      touch-action: pan-y !important;
  scrollbar-width: none;
  overscroll-behavior: contain;
  position: relative;
  outline: none;
}

.p-modal::-webkit-scrollbar {
  display: none;
}

.p-modal__container {
  background-color: #fff;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}

.p-modal__close {
  position: absolute;
  top: 21px;
  top: 1.3125rem;
  right: 27px;
  right: 1.6875rem;
  padding: 0;
  width: 30px;
  width: 1.875rem;
  height: 13px;
  height: 0.8125rem;
}

.p-modal__close span {
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #000;
}

.p-modal__close span:nth-child(1) {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.p-modal__close span:nth-child(2) {
  -webkit-transform: rotate(160deg);
          transform: rotate(160deg);
  margin-top: -1px;
  margin-top: -0.0625rem;
}

.p-modal__info {
  position: relative;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-modal__image {
  width: 208px;
  width: 13rem;
  margin: 0 auto;
}

.p-modal__icon {
  width: 15px;
  width: 0.9375rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  margin-left: auto;
}

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

.p-modal__name {
  line-height: 1.2;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-modal__subname {
  font-family: "futura-pt", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
}

.p-modal__details {
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 32px;
  padding-right: 2rem;
  display: grid;
  gap: 46px;
  gap: 2.875rem;
}

.p-modal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  font-size: 1rem;
}

.p-modal__text {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-modal__detail li {
  font-family: "Gothic Medium BBB", sans-serif;
  position: relative;
  padding-left: 16px;
  padding-left: 1rem;
  color: #464646;
  font-size: 12.6px;
  font-size: 0.7875rem;
}

.p-modal__detail li::after {
  position: absolute;
  content: "";
  top: 12px;
  top: 0.75rem;
  left: 8px;
  left: 0.5rem;
  width: 2px;
  width: 0.125rem;
  height: 2px;
  height: 0.125rem;
  border-radius: 1000px;
  background-color: #464646;
}

.p_modal__close__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-mv {
  overflow: hidden;
  position: relative;
  margin-top: 75px;
  margin-top: 4.6875rem;
}
.p-mv__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-policy {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 431px) {
  .p-policy {
    padding-top: 3.75rem;
  }
}

.p-policy__pankuzu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-policy__pankuzu__top {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #858683;
  margin-top: 3px;
  margin-top: 0.1875rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-policy__pankuzu__top:hover {
  color: #464646;
}

.p-policy__pankuzu__policy {
  font-size: 11px;
  font-size: 0.6875rem;
  margin-left: 6px;
  margin-left: 0.375rem;
}

.p-policy__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 115px;
  padding-bottom: 7.1875rem;
}

.p-policy__title {
  font-family: "futura-pt", sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 400;
  text-align: center;
  color: #464646;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-policy__title span {
  display: block;
  font-family: "Midashi Go MB31", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #464646;
}

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

.p-policy__contents h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
}

.p-policy__contents ol {
  list-style: auto;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-policy__contents ul {
  list-style: lower-alpha;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.p-policy__contents li,
.p-policy__contents p {
  font-family: "Gothic Medium BBB", sans-serif;
  color: #464646;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-policy__contents .alpha {
  list-style-type: lower-alpha;
}

.p-policy__contents .en {
  list-style-type: lower-roman;
}

.p-price {
  position: relative;
  z-index: 1;
  padding-top: 170px;
  padding-top: 10.625rem;
}

.p-price__bg {
  content: "";
  background-image: url(../images/price_bg.png);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -470px;
  top: -29.375rem;
  left: 0;
  width: 100%;
  height: 2500px;
  height: 156.25rem;
  opacity: 0;
}
@media screen and (min-width: 431px) {
  .p-price__bg {
    width: 24.375rem;
  }
}

.p-price__inner {
  padding: 0 26px;
  padding: 0 1.625rem;
  position: relative;
  z-index: 1;
}

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

.p-price__items {
  background-color: #FEFDFB;
  padding: 50px 30px;
  padding: 3.125rem 1.875rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  -webkit-clip-path: polygon(1rem 0, 100% 0, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 0 100%, 0 1rem);
          clip-path: polygon(1rem 0, 100% 0, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 0 100%, 0 1rem);
}

.p-price__subtitle__box {
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.p-price__subtitle {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7D7979;
}

.p-price__title {
  margin: 8px 0 12px;
  margin: 0.5rem 0 0.75rem;
}

.p-price__sec__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-price__sec__dots span {
  width: 1px;
  width: 0.0625rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #DF9866;
  margin: 0 2px;
  margin: 0 0.125rem;
}

.p-price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Gothic Medium BBB", sans-serif;
}

.p-price__head {
  font-family: "Midashi Go MB31", sans-serif;
  font-weight: normal;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  white-space: nowrap;
}
.p-price__head.-sec {
  margin: 40px 0 30px;
  margin: 2.5rem 0 1.875rem;
}
.p-price__head.-text {
  font-family: "Gothic Medium BBB", sans-serif;
}

.p-price__price {
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-price__price_num {
  font-size: 10px;
  font-size: 0.625rem;
}

.p-price__subprice {
  text-align: right;
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #7D7979;
  line-height: 1.2;
}

.p-price__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-price__comment span {
  color: #DF9866;
}

.p-price__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-price__dots {
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.5em;
  color: #8E8A8A;
}

.p-reservation__contents {
  padding: 36px 36px 44px;
  padding: 2.25rem 2.25rem 2.75rem;
  background-color: rgba(255, 255, 255, .06);
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.p-review {
  padding: 100px 0 90px;
  padding: 6.25rem 0 5.625rem;
  position: relative;
  z-index: 1;
}

.p-review__title__box {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-review__note {
  font-family: "Gothic Medium BBB", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #ABA7A3;
  margin-left: 42px;
  margin-left: 2.625rem;
}

/* 次に .p-review__item が続くときだけ線を出す */
.p-review__item:has(+ .p-review__item) {
  padding: 35px 0;
  padding: 2.1875rem 0;
  border-bottom: 1px solid rgba(35, 24, 21, .16);
  border-bottom: 0.0625rem solid rgba(35, 24, 21, .16);
}

/* もともとの線指定があるなら外す */
.p-review__item {
  padding-top: 35px;
  padding-top: 2.1875rem;
  border-bottom: none;
}

.p-review__name {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.p-review__item img {
  width: 63px;
  width: 3.9375rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-review-detail-wrap {
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
  will-change: max-height;
}

.p-review-detail-wrap.checked {
  cursor: default;
}

.p-review__text {
  position: relative;
}

.p-review-detail {
  overflow: hidden;
  /* あると気持ちよくなる（任意） */
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  line-height: 2;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-review-arrow {
  pointer-events: none;
  position: relative;
  position: absolute;
  bottom: 5px;
  bottom: 0.3125rem;
  right: 2%;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: bottom 0.5s ease, -webkit-transform 0.5s ease;
  transition: bottom 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, bottom 0.5s ease;
  transition: transform 0.5s ease, bottom 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 2;
}

.p-review-detail-wrap.checked + .p-review-arrow {
  pointer-events: all;
  bottom: -20px;
  bottom: -1.25rem;
}

/* チェックマークの斜め下の線 */
.p-review-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  background-image: url(../images/arrow-brown.svg);
  background-size: cover;
  background-position: center;
}

.p-review-detail-wrap.checked + .p-review-arrow::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.p-review__btn {
  text-align: right;
  margin-top: 50px;
  margin-top: 3.125rem;
}

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

.p-right__inner {
  margin-top: 9%;
}

.p-right__info {
  margin-top: 75px;
  margin-top: 4.6875rem;
  text-align: center;
}

.p-right__title {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.7;
}

.p-right__subTitle {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.p-right__item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: 500;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-right__sns {
  margin-top: 25px;
  margin-top: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  gap: 0.875rem;
}

.p-right__icon {
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.p-staff {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  position: relative;
  z-index: 10;
}

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

.p-staff__title__box {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-staff__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "futura-pt", sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #7D7979;
  width: 94px;
  width: 5.875rem;
}

.p-staff__link span {
  margin: 0 3px;
  margin: 0 0.1875rem;
}

.p-studio {
  position: relative;
  padding-top: 100px;
  padding-top: 6.25rem;
  z-index: 3;
}
@media screen and (min-width: 1200px) {
  .p-studio {
    padding-top: 2.5rem;
  }
}

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

.p-studio__lists {
  position: relative;
}

/* 好みで高さを調整：例 520px。SPは 60svh にしてもOK */
.p-studio__list {
  /* ← ここを変えれば一括で高さ変更 */
  position: relative;
  height: 63vh;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 431px) {
  .p-studio__list {
    height: 78vh;
  }
}

.p-studio__list img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 最初は全表示。ここから下方向（bottom）へ切っていく */
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
  will-change: clip-path;
  /* パフォーマンス改善 */
}

/* ユーザーが簡易表示を選んでいる場合はアニメ無効化 */
@media (prefers-reduced-motion: reduce) {
  .p-studio__list img {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.swiper-wrapper {
  height: auto;
}

.swiper-mv .swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  top: initial;
  bottom: 2px;
  bottom: 0.125rem;
  width: 7px;
  width: 0.4375rem;
  height: 16px;
  height: 1rem;
}

.swiper-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
  opacity: 0;
}
@media screen and (min-width: 431px) {
  .swiper-bg {
    opacity: 1;
  }
}

.swiper-bg .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  height: 100vh;
}

.swiper-bg .swiper-slide img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.swiper-bg .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, .6) !important;
}

.swiper-mv {
  overflow: hidden;
  height: calc(100% - 15.9375rem);
  max-height: 770px;
  max-height: 48.125rem;
}
@media screen and (min-width: 431px) {
  .swiper-mv {
    max-height: 31.25rem;
  }
}

.swiper-mv .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.swiper-mv .swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-common {
  overflow: hidden;
  position: relative;
  margin-left: 41px;
  margin-left: 2.5625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  width: 100%;
}
.swiper-common .swiper-slide {
  position: relative;
  height: 265px;
  height: 16.5625rem;
}

.swiper-common .swiper-slide .p-concept__slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-common .swiper-slide.-even {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.swiper-common .swiper-button-prev,
.swiper-common .swiper-button-next {
  background-image: url(../images/arrow.svg);
  background-size: cover;
  background-position: center;
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  position: absolute;
  top: 101.5%;
}

.swiper-common .swiper-button-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-common .swiper-button-next {
  right: auto;
  left: 18px;
  left: 1.125rem;
}

.swiper-feature {
  height: auto;
}

.swiper-feature-auto {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.swiper-feature-auto .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.swiper-feature-auto .swiper-slide.-even {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.swiper-staff {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.swiper-staff .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.swiper-staff .swiper-slide {
  position: relative;
  height: 265px;
  height: 16.5625rem;
}

/* ベース（右下を切り欠き） */
.swiper-staff .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  right: -1px;
  right: -0.0625rem;
  width: 20px;
  height: 20px;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  -webkit-animation: fold 4s step-start infinite;
          animation: fold 4s step-start infinite;
  z-index: 1;
}

/* 折り返し部分 */
.swiper-staff .swiper-slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background-color: #EEE7E2;
  /* 折り返しカラー */
  z-index: 2;
  /* 初期は三角形（折れてる状態） */
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  /* 折れたり戻ったりのアニメーション */
  -webkit-animation: fold 4s step-start infinite;
          animation: fold 4s step-start infinite;
}

.swiper-staff .swiper-slide.-even::after,
.swiper-staff .swiper-slide.-even::before {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

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

.swiper-staff .swiper-slide.-even {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
/*# sourceMappingURL=styles.css.map */
