:root {
  --text-color: #333;
  --white: #fff;
  --navy: #1b2a4a;
  --green: #18825f;
  --gray: #9a9a9a;
  --border-gray: #d0d0d0;
  --bg: #fafafa;
  --border: #333;
  --shadow: rgba(0, 0, 0, 0.25);
  --overlay-30: rgba(0, 0, 0, 0.3);
  --overlay-60: rgba(0, 0, 0, 0.6);
  --overlay-70: rgba(0, 0, 0, 0.7);
  --overlay-hero: rgba(83, 76, 66, 0.35);
  --overlay-concept: rgba(83, 76, 66, 0.5);
  --overlay-works: rgba(83, 76, 66, 0.5);
  --overlay-cta: rgba(83, 76, 66, 0.6);
  --overlay-other: rgba(83, 76, 66, 0.7);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(100vw / var(--vw) * 120);
}

body {
  background-color: var(--bg);
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

body.hidden {
  overflow: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

main {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

p {
  margin: 0;
}

section {
  overflow: hidden;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
}

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

.l-header__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;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16);
}

.l-header__logo {
  display: block;
  width: calc(100vw / var(--vw) * 174);
  height: calc(100vw / var(--vw) * 70);
}

.l-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  margin-right: calc(100vw / var(--vw) * 78);
}

.l-header__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 10);
  height: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 30);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.l-header__cta:hover {
  opacity: 0.85;
}

.l-header__cta--reserve {
  background-color: var(--navy);
}

.l-header__cta--line {
  background-color: var(--green);
}

.l-header__cta-icon {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-header__cta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.l-header__cta--reserve .l-header__cta-icon {
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 21);
}

.l-header__cta--line .l-header__cta-icon {
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 24);
}

.l-header__hamburger {
  position: fixed;
  top: calc(100vw / var(--vw) * 16);
  right: calc(100vw / var(--vw) * 16);
  z-index: 110;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 8);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16);
  background: transparent;
  border: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header__hamburger span {
  display: block;
  background-color: var(--white);
  width: calc(100vw / var(--vw) * 30);
  height: calc(100vw / var(--vw) * 4);
  -webkit-transition: opacity 0.3s ease, background-color 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease, -webkit-transform 0.3s ease;
}

.l-header__hamburger.is-on-light span {
  background-color: var(--text-color);
}

.l-header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(calc(1200vw / var(--vw))) rotate(45deg);
  transform: translateY(calc(1200vw / var(--vw))) rotate(45deg);
}

.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(calc(-1200vw / var(--vw))) rotate(-45deg);
  transform: translateY(calc(-1200vw / var(--vw))) rotate(-45deg);
}

.l-header__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 99;
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.l-header__overlay.is-open {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.3);
}

.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(100vw / var(--vw) * 480);
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 64);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 40);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  overflow-y: auto;
}

.l-header__nav.is-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.l-header__nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  width: 100%;
}

.l-header__nav-item {
  display: block;
}

.l-header__nav-link {
  display: block;
  color: var(--white);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 20);
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.l-header__nav-link:hover {
  opacity: 0.7;
}

.l-header__nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  gap: calc(100vw / var(--vw) * 20);
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 30);
}

.l-header__nav-actions .l-header__cta {
  width: 100%;
  height: calc(100vw / var(--vw) * 56);
  padding: calc(100vw / var(--vw) * 15) calc(100vw / var(--vw) * 30);
  gap: calc(100vw / var(--vw) * 10);
  font-size: calc(100vw / var(--vw) * 18);
}

.l-header__nav-actions .l-header__cta-icon {
  width: calc(100vw / var(--vw) * 24);
}

.l-header__nav-actions .l-header__cta--reserve .l-header__cta-icon {
  height: calc(100vw / var(--vw) * 21);
}

.l-header__nav-actions .l-header__cta--line .l-header__cta-icon {
  height: calc(100vw / var(--vw) * 24);
}

.l-header__nav-logo {
  display: block;
  width: calc(100vw / var(--vw) * 174);
  height: calc(100vw / var(--vw) * 70);
}

.l-header__nav-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

body.is-nav-open {
  overflow: hidden;
}

.l-footer {
  width: 100%;
  background-color: var(--bg);
}

.l-footer__logo {
  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;
  padding: calc(100vw / var(--vw) * 24);
}

.l-footer__logo a {
  display: block;
  width: calc(100vw / var(--vw) * 200);
  height: calc(100vw / var(--vw) * 200);
}

.l-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-footer__copyright {
  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;
  background-color: var(--navy);
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 16);
}

.l-footer__copyright p {
  color: var(--white);
  font-family: "Avenir", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.c-button-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
  border: 1px solid var(--border);
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.c-button-outline:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.c-button-outline__icon {
  width: calc(100vw / var(--vw) * 16);
  height: calc(100vw / var(--vw) * 16);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  fill: currentColor;
}

.c-button-outline--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-button-outline--white {
  border-color: var(--white);
  color: var(--white);
}

.c-button-outline--white:hover {
  background-color: var(--white);
  color: var(--text-color);
}

.c-cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: calc(100vw / var(--vw) * 120) calc(100vw / var(--vw) * 0);
  overflow: hidden;
}

.c-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.c-cta__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-cta__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-cta);
}

.c-cta__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 30);
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 160);
  width: 100%;
}

.c-cta__heading {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 36);
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}

.c-cta__button {
  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;
  gap: calc(100vw / var(--vw) * 10);
  width: calc(100vw / var(--vw) * 400);
  height: calc(100vw / var(--vw) * 80);
  padding: calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 40);
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 22);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.c-cta__button:hover {
  background-color: var(--white);
  color: var(--text-color);
}

.c-cta__button-icon {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 21);
}

.c-cta__button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-front-page {
  background-color: var(--bg);
}

.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-hero);
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-hero__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: calc(100vw / var(--vw) * 35) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.p-hero__copy p {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 70);
  line-height: 1.4;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.p-hero__badges {
  position: absolute;
  top: 0;
  right: 0;
  padding: calc(100vw / var(--vw) * 123) calc(100vw / var(--vw) * 30);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 16);
}

.p-hero__badge {
  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;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--white);
  padding: calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 40);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.p-hero__scroll {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 30) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 30);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
}

.p-hero__scroll-label {
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-hero__scroll-line {
  display: block;
  width: 1px;
  height: calc(100vw / var(--vw) * 100);
  background-color: var(--white);
}

.p-concept-intro {
  background-color: var(--bg);
}

.p-concept-intro__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 64);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 160);
}

.p-concept-intro__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 24);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-concept-intro__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 50);
  line-height: 1.5;
  letter-spacing: 0;
}

.p-concept-intro__desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-concept-intro__gallery {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 16);
}

.p-concept-intro__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  height: calc(100vw / var(--vw) * 445);
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 24);
  overflow: hidden;
}

.p-concept-intro__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-concept {
  position: relative;
  overflow: hidden;
}

.p-concept__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-concept__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-concept__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-concept);
}

.p-concept__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 160);
  text-align: center;
}

.p-concept__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-concept__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  max-width: 100%;
  width: 100%;
}

.p-concept__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 32);
  line-height: 1.5;
  letter-spacing: 0;
}

.p-concept__desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-concept__logo {
  width: calc(100vw / var(--vw) * 480);
  height: calc(100vw / var(--vw) * 480);
}

.p-concept__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-flow {
  background-color: var(--bg);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
}

.p-flow__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-flow__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-flow__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-70);
}

.p-flow--dark {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.p-flow--dark .p-flow__head,
.p-flow--dark .p-flow__list {
  position: relative;
  z-index: 1;
}

.p-flow--dark .p-flow__head,
.p-flow--dark .p-flow__step-title,
.p-flow--dark .p-flow__detail,
.p-flow--dark .p-flow__label,
.p-flow--dark .p-flow__note {
  color: var(--white);
}

.p-flow--dark .p-flow__dot {
  background-color: var(--white);
}

.p-flow__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: calc(100vw / var(--vw) * 8);
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 160);
  margin-bottom: calc(100vw / var(--vw) * 40);
  color: var(--text-color);
}

.p-flow__sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  letter-spacing: 0;
}

.p-flow__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 20);
}

.p-flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1401);
  min-height: calc(100vw / var(--vw) * 260);
}

.p-flow__rail {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: calc(100vw / var(--vw) * 22);
  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-flow__rail::before,
.p-flow__rail::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100vw / var(--vw) * 5);
  background-color: var(--gray);
}

.p-flow__rail::before {
  top: 0;
  bottom: calc(50% + 100vw / var(--vw) * 31);
}

.p-flow__rail::after {
  top: calc(50% + 100vw / var(--vw) * 31);
  bottom: calc(100vw / var(--vw) * -20);
}

.p-flow__step:first-child .p-flow__rail::before {
  display: none;
}

.p-flow__step:last-child .p-flow__rail::after {
  display: none;
}

.p-flow__dot {
  position: relative;
  z-index: 1;
  width: calc(100vw / var(--vw) * 22);
  height: calc(100vw / var(--vw) * 22);
  border-radius: 50%;
  background-color: var(--text-color);
}

.p-flow__num {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 100);
  margin-left: calc(100vw / var(--vw) * 39);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--gray);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-align: center;
}

.p-flow__num-no {
  font-size: calc(100vw / var(--vw) * 50);
  line-height: calc(100vw / var(--vw) * 40);
}

.p-flow__num-step {
  font-size: calc(100vw / var(--vw) * 20);
  line-height: calc(100vw / var(--vw) * 20);
}

.p-flow__divider {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1px;
  margin-left: calc(100vw / var(--vw) * 39);
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-color: var(--gray);
}

.p-flow__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 180);
  height: calc(100vw / var(--vw) * 180);
  margin-left: calc(100vw / var(--vw) * 60);
  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-flow__icon img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-flow__step:nth-child(1) .p-flow__icon img {
  width: calc(100vw / var(--vw) * 156);
  height: calc(100vw / var(--vw) * 168);
}

.p-flow__step:nth-child(2) .p-flow__icon img {
  width: calc(100vw / var(--vw) * 160);
  height: calc(100vw / var(--vw) * 131);
}

.p-flow__step:nth-child(3) .p-flow__icon img {
  width: calc(100vw / var(--vw) * 150);
  height: calc(100vw / var(--vw) * 148);
}

.p-flow__step:nth-child(4) .p-flow__icon img {
  width: calc(100vw / var(--vw) * 150);
  height: calc(100vw / var(--vw) * 143);
}

.p-flow__step:nth-child(5) .p-flow__icon img {
  width: calc(100vw / var(--vw) * 160);
  height: calc(100vw / var(--vw) * 110);
}

.p-flow__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  max-width: calc(100vw / var(--vw) * 900);
  margin-left: calc(100vw / var(--vw) * 60);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 10);
}

.p-flow__step-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.4;
  letter-spacing: 0;
}

.p-flow__step:nth-child(1) .p-flow__step-title {
  font-size: calc(100vw / var(--vw) * 26);
}

.p-flow__detail {
  color: var(--text-color);
}

.p-flow__label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-flow__note {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-works {
  background-color: var(--bg);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
}

.p-works__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 160);
  margin-bottom: calc(100vw / var(--vw) * 40);
}

.p-works__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 8);
  color: var(--text-color);
}

.p-works__sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  letter-spacing: 0;
}

.p-works__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-works__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: calc(100vw / var(--vw) * 24);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 160);
}

.p-works__column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 24);
}

.p-works__item {
  width: 100%;
}

.p-works__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 24);
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px var(--shadow);
  box-shadow: 0 4px 16px var(--shadow);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p-works__card--tall {
  height: calc(100vw / var(--vw) * 792);
}

.p-works__card--short {
  height: calc(100vw / var(--vw) * 445);
}

.p-works__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-works__card-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-works__card-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-works);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.p-works__card-body {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16);
  text-align: center;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.p-works__card-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 32);
  line-height: 1.4;
  letter-spacing: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-works__card-specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 10);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-works__card-specs li {
  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;
  border: 1px solid var(--white);
  border-radius: calc(100vw / var(--vw) * 100);
  padding: calc(100vw / var(--vw) * 6) calc(100vw / var(--vw) * 24);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  white-space: nowrap;
}

.p-works__footer {
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
  margin-top: calc(100vw / var(--vw) * 24);
}

.p-news {
  background-color: var(--bg);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
}

.p-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 160);
  margin-bottom: calc(100vw / var(--vw) * 40);
}

.p-news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 8);
  color: var(--text-color);
}

.p-news__sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  letter-spacing: 0;
}

.p-news__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 160);
  overflow-x: auto;
  scrollbar-width: none;
}

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

.p-news__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc(100vw / var(--vw) * 444);
}

.p-news__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 8);
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px var(--shadow);
  box-shadow: 0 4px 16px var(--shadow);
  height: 100%;
}

.p-news__card:hover {
  opacity: 0.85;
}

.p-news__thumb {
  width: 100%;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}

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

.p-news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: calc(100vw / var(--vw) * 8);
  padding: calc(100vw / var(--vw) * 16);
}

.p-news__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--navy);
  color: var(--white);
  border-radius: calc(100vw / var(--vw) * 4);
  padding: calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 12);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1.2;
  letter-spacing: 0;
}

.p-news__date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
}

.p-news__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1.6;
  letter-spacing: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-news__footer {
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
  margin-top: calc(100vw / var(--vw) * 8);
}

.p-contact {
  background-color: var(--bg);
}

.p-contact-hero {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 400);
  overflow: hidden;
}

.p-contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-contact-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-contact-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
  height: 100%;
  padding-top: calc(100vw / var(--vw) * 40);
}

.p-contact-hero__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-contact-hero__ja {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  white-space: nowrap;
}

.p-contact-form .wpcf7-spinner,
.p-contact-confirm-form .wpcf7-spinner {
  display: none;
}

.p-contact-form {
  background-color: var(--bg);
}

.p-contact-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 160);
}

.p-contact-form__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  text-align: center;
}

.p-contact-form__form,
.p-contact-form__cf7 {
  width: calc(100vw / var(--vw) * 800);
  max-width: 100%;
}

.p-contact-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 10);
}

.p-contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
}

.p-contact-form__row--textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-contact-form__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100vw / var(--vw) * 140);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 0);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #363636;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  white-space: nowrap;
}

.p-contact-form__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 13);
  line-height: calc(100vw / var(--vw) * 20);
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 16);
  white-space: nowrap;
}

.p-contact-form__badge--required {
  background-color: #595757;
}

.p-contact-form__badge--optional {
  background-color: #d0d0d0;
}

.p-contact-form__control {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.p-contact-form__input,
.p-contact-form__textarea {
  display: block;
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  outline: none;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 14) calc(100vw / var(--vw) * 16);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.p-contact-form__input:focus,
.p-contact-form__textarea:focus {
  background-color: #ebebeb;
}

.p-contact-form__input::-webkit-input-placeholder,
.p-contact-form__textarea::-webkit-input-placeholder {
  color: #999;
}

.p-contact-form__input::-moz-placeholder,
.p-contact-form__textarea::-moz-placeholder {
  color: #999;
}

.p-contact-form__input:-ms-input-placeholder,
.p-contact-form__textarea:-ms-input-placeholder {
  color: #999;
}

.p-contact-form__input::-ms-input-placeholder,
.p-contact-form__textarea::-ms-input-placeholder {
  color: #999;
}

.p-contact-form__input::placeholder,
.p-contact-form__textarea::placeholder {
  color: #999;
}

.p-contact-form__input {
  height: calc(100vw / var(--vw) * 56);
}

.p-contact-form__textarea {
  height: calc(100vw / var(--vw) * 320);
  resize: vertical;
  min-height: 120px;
}

.p-contact-form__agree {
  margin-top: calc(100vw / var(--vw) * 16);
}

.p-contact-form__checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 10);
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #363636;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-contact-form__checkbox .wpcf7-form-control-wrap,
.p-contact-form__checkbox .wpcf7-acceptance,
.p-contact-form__checkbox .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.p-contact-form__checkbox .wpcf7-list-item-label {
  display: none;
}

.p-contact-form__checkbox input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 24);
  margin: 0;
  border: 1px solid #363636;
  border-radius: calc(100vw / var(--vw) * 4);
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.p-contact-form__checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 28%;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  -webkit-transform: translate(-55%, -70%) rotate(-45deg);
  transform: translate(-55%, -70%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.p-contact-form__checkbox input[type=checkbox]:checked {
  background-color: #363636;
}

.p-contact-form__checkbox input[type=checkbox]:checked::after {
  opacity: 1;
}

.p-contact-form__checkbox-label a {
  color: inherit;
  text-decoration: underline;
}

.p-contact-form__checkbox-label a:hover {
  text-decoration: none;
}

.p-contact-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 0);
  width: 100%;
}

.p-contact-form__submit-btn {
  background-color: var(--navy);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  width: calc(100vw / var(--vw) * 480);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  border: 1px solid var(--navy);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-contact-form__submit-btn:hover {
  background-color: var(--white);
  color: var(--navy);
}

.p-contact-form__submit-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.p-contact-confirm {
  background-color: var(--bg);
}

.p-contact-confirm-form {
  background-color: var(--bg);
}

.p-contact-confirm-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 160);
}

.p-contact-confirm-form__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #333;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}

.p-contact-confirm-form__cf7 {
  width: calc(100vw / var(--vw) * 1080);
  max-width: 100%;
}

.p-contact-confirm-form__cf7 .wpcf7-form p {
  margin: 0;
}

.p-contact-confirm-form__cf7 .p-contact-confirm-form__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 12);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 0);
  width: 100%;
  margin: 0;
  list-style: none;
}

.p-contact-confirm-form__cf7 .p-contact-confirm-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: calc(100vw / var(--vw) * 8);
  width: 100%;
}

.p-contact-confirm-form__cf7 .p-contact-confirm-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 140);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8);
  border-bottom: 1px solid #202629;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  white-space: nowrap;
}

.p-contact-confirm-form__cf7 .p-contact-confirm-form__value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 12);
  border-bottom: 1px solid #eaeaea;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  margin: 0;
  word-break: break-word;
}

.p-contact-confirm-form__cf7 .p-contact-confirm-form__row--textarea .p-contact-confirm-form__value {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-contact-confirm-form__cf7 .p-contact-confirm-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 24);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  padding-top: calc(100vw / var(--vw) * 80);
  padding-bottom: calc(100vw / var(--vw) * 40);
}

.p-contact-confirm-form__cf7 .p-contact-confirm-form__actions .wpcf7-form-control-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-contact-confirm-form .wpcf7-previous {
  background-color: transparent;
  color: var(--text-color);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  width: calc(100vw / var(--vw) * 320);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  border: 1px solid var(--text-color);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-contact-confirm-form .wpcf7-previous:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.p-contact-confirm-form .wpcf7 [type=submit],
.p-contact-confirm-form__submit-btn {
  background-color: var(--navy);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  width: calc(100vw / var(--vw) * 480);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  border: 1px solid var(--navy);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-contact-confirm-form .wpcf7 [type=submit]:hover,
.p-contact-confirm-form__submit-btn:hover {
  background-color: var(--white);
  color: var(--navy);
}

.p-contact-confirm-form .wpcf7 [type=submit]:disabled,
.p-contact-confirm-form__submit-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.p-thanks {
  background-color: var(--bg);
}

.p-thanks-content {
  background-color: var(--bg);
}

.p-thanks-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 80);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 24);
  text-align: center;
}

.p-thanks-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 32);
}

.p-thanks-content__title {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0.02em;
  margin: 0;
}

.p-thanks-content__message {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #333;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  margin: 0;
}

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

.p-thanks-content__home {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--navy);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  width: calc(100vw / var(--vw) * 480);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  border: 1px solid var(--navy);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-thanks-content__home:hover {
  background-color: var(--white);
  color: var(--navy);
}

.p-concept-page {
  background-color: var(--bg);
}

.p-concept-hero {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 500);
  overflow: hidden;
}

.p-concept-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-concept-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-concept-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-30);
}

.p-concept-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
  height: 100%;
  padding-top: calc(100vw / var(--vw) * 40);
}

.p-concept-hero__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-concept-hero__ja {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  white-space: nowrap;
}

.p-concept-features {
  background-color: var(--bg);
}

.p-concept-features__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 120) calc(100vw / var(--vw) * 160);
  width: 100%;
}

.p-concept-features__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  text-align: center;
  width: 100%;
}

.p-concept-features__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 32);
  line-height: 1.5;
  letter-spacing: 0;
}

.p-concept-features__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
  width: 100%;
}

.p-concept-features__desc p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  text-align: center;
}

.p-concept-features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 40);
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1080);
}

.p-concept-features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  width: 100%;
}

.p-concept-features__item--image-first {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-concept-features__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 24);
}

.p-concept-features__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 8);
  color: var(--text-color);
}

.p-concept-features__sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
}

.p-concept-features__en {
  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: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-concept-features__en span {
  display: block;
}

.p-concept-features__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-concept-features__body p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-concept-features__image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  height: calc(100vw / var(--vw) * 445);
  border-radius: calc(100vw / var(--vw) * 24);
  overflow: hidden;
}

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

.p-concept-staff {
  background-color: var(--bg);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 160);
}

.p-concept-staff__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 8);
  margin-bottom: calc(100vw / var(--vw) * 40);
  color: var(--text-color);
  text-align: center;
}

.p-concept-staff__sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
}

.p-concept-staff__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-concept-staff__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 32);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 32) calc(100vw / var(--vw) * 16);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-concept-staff__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 8);
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 8);
  -webkit-box-shadow: 4px 4px 16px var(--shadow);
  box-shadow: 4px 4px 16px var(--shadow);
  width: calc(100vw / var(--vw) * 320);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-concept-staff__thumb {
  width: 100%;
  height: calc(100vw / var(--vw) * 425);
  overflow: hidden;
}

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

.p-concept-staff__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  color: var(--text-color);
}

.p-concept-staff__dept {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-concept-staff__name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 20);
  line-height: 1.4;
  letter-spacing: 0;
}

.p-concept-staff__name-en {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 13);
  line-height: calc(100vw / var(--vw) * 20);
  letter-spacing: 0;
}

.p-concept-company {
  background-color: var(--bg);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 160);
}

.p-concept-company__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 8);
  margin-bottom: calc(100vw / var(--vw) * 40);
  color: var(--text-color);
  text-align: center;
}

.p-concept-company__sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  letter-spacing: 0;
}

.p-concept-company__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-concept-company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 12);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 0);
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1080);
  margin: 0 auto;
}

.p-concept-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: calc(100vw / var(--vw) * 8);
  width: 100%;
}

.p-concept-company__label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 140);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8);
  border-bottom: 1px solid #202629;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-concept-company__value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 12);
  margin: 0;
  border-bottom: 1px solid #eaeaea;
}

.p-concept-company__value p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-concept-company__map {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 486);
  overflow: hidden;
}

.p-concept-company__map img,
.p-concept-company__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-concept-company__map img {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-concept-company__map-iframe {
  width: 100%;
  height: 100%;
}

.p-concept-company__map-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 13);
  line-height: 1;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 12);
  border-radius: calc(100vw / var(--vw) * 4);
  text-decoration: none;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.p-concept-company__map-link:hover {
  background-color: var(--white);
}

.p-business-page {
  background-color: var(--bg);
}

.p-business-hero {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 500);
  overflow: hidden;
}

.p-business-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-business-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-business-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-30);
}

.p-business-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
  height: 100%;
  padding-top: calc(100vw / var(--vw) * 40);
}

.p-business-hero__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-business-hero__ja {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  white-space: nowrap;
}

.p-business-services {
  background-color: var(--bg);
}

.p-business-services__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 120) calc(100vw / var(--vw) * 160);
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1400);
  margin: 0 auto;
}

.p-business-services__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
  text-align: center;
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1080);
}

.p-business-services__intro p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-business-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 40);
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1080);
}

.p-business-services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  width: 100%;
}

.p-business-services__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--text-color);
}

.p-business-services__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 32);
  width: 100%;
}

.p-business-services__num {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 100);
  line-height: 1.2;
  letter-spacing: 0;
}

.p-business-services__name {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: calc(100vw / var(--vw) * 32);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.p-business-services__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 8);
  width: 100%;
}

.p-business-services__title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.5;
  letter-spacing: 0;
}

.p-business-services__desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  text-align: justify;
}

.p-business-services__image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  height: calc(100vw / var(--vw) * 320);
  border-radius: calc(100vw / var(--vw) * 24);
  overflow: hidden;
}

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

.p-business-cta {
  position: relative;
  overflow: hidden;
}

.p-business-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-business-cta__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-business-cta__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-cta);
}

.p-business-cta__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 120) calc(100vw / var(--vw) * 160);
  text-align: center;
}

.p-business-cta__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 8);
  color: var(--white);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.p-business-cta__title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 48);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
}

.p-business-cta__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
  width: 100%;
}

.p-business-cta__desc p {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.6;
  letter-spacing: 0;
}

.p-business-cta__btn {
  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;
  gap: calc(100vw / var(--vw) * 10);
  width: calc(100vw / var(--vw) * 400);
  height: calc(100vw / var(--vw) * 80);
  padding: calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 40);
  background-color: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 22);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  max-width: 100%;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-business-cta__btn:hover {
  background-color: var(--white);
  color: var(--text-color);
}

.p-business-cta__btn-icon {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 21);
}

.p-business-cta__btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-business-works {
  background-color: var(--bg);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
}

.p-business-works__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 160);
  margin-bottom: calc(100vw / var(--vw) * 40);
}

.p-business-works__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 8);
  color: var(--text-color);
}

.p-business-works__sub {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  letter-spacing: 0;
}

.p-business-works__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-business-works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 160);
  overflow-x: auto;
  scrollbar-width: none;
}

.p-business-works__list::-webkit-scrollbar {
  display: none;
}

.p-business-works__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: calc(100vw / var(--vw) * 424);
}

.p-business-works__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 8);
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px var(--shadow);
  box-shadow: 0 4px 16px var(--shadow);
  height: 100%;
}

.p-business-works__card:hover {
  opacity: 0.85;
}

.p-business-works__thumb {
  width: 100%;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}

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

.p-business-works__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 24);
}

.p-business-works__card-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
  width: 100%;
  color: var(--text-color);
}

.p-business-works__card-title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.4;
  letter-spacing: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-business-works__card-desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-business-works__specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc(100vw / var(--vw) * 4);
}

.p-business-works__specs li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--navy);
  color: var(--white);
  border-radius: calc(100vw / var(--vw) * 4);
  padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 12);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 13);
  line-height: calc(100vw / var(--vw) * 20);
  letter-spacing: 0;
  white-space: nowrap;
}

.p-business-works__footer {
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
  margin-top: calc(100vw / var(--vw) * 16);
}

.p-archive-work {
  background-color: var(--bg);
}

.p-archive-work-hero {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 500);
  overflow: hidden;
}

.p-archive-work-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-archive-work-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-archive-work-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-30);
}

.p-archive-work-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
  height: 100%;
  padding-top: calc(100vw / var(--vw) * 40);
}

.p-archive-work-hero__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-archive-work-hero__ja {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  white-space: nowrap;
}

.p-archive-work-grid {
  background-color: var(--bg);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
}

.p-archive-work-grid__empty {
  text-align: center;
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
}

.p-archive-work-grid__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 24);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 176) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 176);
}

.p-archive-work-grid__column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 24);
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-archive-work-grid__item {
  width: 100%;
}

.p-archive-work-grid__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 24);
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px var(--shadow);
  box-shadow: 0 4px 16px var(--shadow);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p-archive-work-grid__card--tall {
  height: calc(100vw / var(--vw) * 792);
}

.p-archive-work-grid__card--short {
  height: calc(100vw / var(--vw) * 445);
}

.p-archive-work-grid__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-archive-work-grid__card-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-archive-work-grid__card-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-works);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.p-archive-work-grid__card-body {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 16);
  text-align: center;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.p-archive-work-grid__card-title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 32);
  line-height: 1.4;
  letter-spacing: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-archive-work-grid__card-specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 10);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-archive-work-grid__card-specs li {
  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;
  border: 1px solid var(--white);
  border-radius: calc(100vw / var(--vw) * 100);
  padding: calc(100vw / var(--vw) * 6) calc(100vw / var(--vw) * 24);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  white-space: nowrap;
}

.p-archive-work-pagination {
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 24);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-archive-work-pagination__list {
  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;
  gap: calc(100vw / var(--vw) * 24);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-archive-work-pagination__list .page-numbers {
  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;
  width: calc(100vw / var(--vw) * 48);
  height: calc(100vw / var(--vw) * 48);
  background-color: var(--text-color);
  color: var(--white);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.p-archive-work-pagination__list .page-numbers:hover {
  opacity: 0.8;
}

.p-archive-work-pagination__list .page-numbers.current {
  opacity: 0.6;
  cursor: default;
}

.p-archive-work-pagination__list .page-numbers.dots {
  background-color: transparent;
  color: #363636;
  width: auto;
  letter-spacing: calc(100vw / var(--vw) * 4);
  cursor: default;
}

.p-single-work {
  background-color: var(--bg);
}

.p-single-work-detail {
  background-color: var(--bg);
}

.p-single-work-detail__inner {
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-single-work-detail__card {
  width: calc(100vw / var(--vw) * 1080);
  max-width: 100%;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 24);
}

.p-single-work-detail__head {
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 16);
}

.p-single-work-detail__title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-single-work-detail__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc(100vw / var(--vw) * 4);
}

.p-single-work-detail__tag {
  background-color: var(--navy);
  color: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 13);
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 4);
  border-radius: calc(100vw / var(--vw) * 4);
  white-space: nowrap;
}

.p-single-work-detail__main {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.p-single-work-detail__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.p-single-work-detail__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
}

.p-single-work-detail__gallery-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 0;
  aspect-ratio: 1080/607.5;
  overflow: hidden;
}

.p-single-work-detail__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.p-single-work-detail__body {
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
}

.p-single-work-detail__lead {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-single-work-detail__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0.05em;
}

.p-single-work-detail__text p {
  margin: 0;
}

.p-single-work-detail__text p + p {
  margin-top: calc(100vw / var(--vw) * 16);
}

.p-single-work-detail__info {
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 16);
}

.p-single-work-detail__info-title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-single-work-detail__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 12);
  margin: 0;
}

.p-single-work-detail__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 8);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-single-work-detail__info-label {
  width: calc(100vw / var(--vw) * 140);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0.05em;
  border-bottom: 1px solid #202629;
  margin: 0;
}

.p-single-work-detail__info-value {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 0;
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 12);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0.05em;
  border-bottom: 1px solid #eaeaea;
  margin: 0;
}

.p-single-work-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 124) calc(100vw / var(--vw) * 24);
}

.p-single-work-back__btn {
  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;
  width: calc(100vw / var(--vw) * 320);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-single-work-back__btn:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.p-single-work-back__label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-single-work-back__icon {
  width: calc(100vw / var(--vw) * 16);
  height: calc(100vw / var(--vw) * 16);
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-reservation-form .wpcf7-spinner,
.p-reservation-confirm-form .wpcf7-spinner {
  display: none;
}

.p-reservation {
  background-color: var(--bg);
}

.p-reservation__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
}

.p-reservation-hero {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 500);
  overflow: hidden;
}

.p-reservation-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-reservation-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-reservation-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-30);
}

.p-reservation-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
  height: 100%;
  padding-top: calc(100vw / var(--vw) * 40);
}

.p-reservation-hero__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-reservation-hero__ja {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  white-space: nowrap;
}

.p-reservation-cards {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: visible;
  padding-bottom: 24px;
}

.p-reservation-cards__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(100vw / var(--vw) * 24);
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1080);
}

.p-reservation-cards__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 16);
  overflow: hidden;
  -webkit-box-shadow: 4px 4px 16px var(--shadow);
  box-shadow: 4px 4px 16px var(--shadow);
}

.p-reservation-cards__head {
  background-color: var(--text-color);
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 16);
  text-align: center;
}

.p-reservation-cards__title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
}

.p-reservation-cards__body {
  padding: calc(100vw / var(--vw) * 24);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-reservation-cards__body p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #363636;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-reservation-cards__footer {
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24);
}

.p-reservation-cards__link {
  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;
  width: 100%;
  border: 1px solid var(--text-color);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.p-reservation-cards__link:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.p-reservation-cards__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 16);
  height: calc(100vw / var(--vw) * 16);
  fill: currentColor;
}

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

.p-reservation-form__inner {
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 80);
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1080);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 10);
}

.p-reservation-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: calc(100vw / var(--vw) * 8);
  padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24);
  width: 100%;
  text-align: center;
  color: var(--text-color);
}

.p-reservation-form__title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
}

.p-reservation-form__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 2);
  width: 100%;
}

.p-reservation-form__lead p {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  text-align: center;
}

.p-reservation-form__form,
.p-reservation-form__cf7 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 10);
}

.p-reservation-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
}

.p-reservation-form__label-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 16);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-reservation-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100vw / var(--vw) * 140);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 0);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #363636;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  white-space: nowrap;
}

.p-reservation-form__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 13);
  line-height: calc(100vw / var(--vw) * 20);
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 16);
  white-space: nowrap;
}

.p-reservation-form__badge--required {
  background-color: #595757;
}

.p-reservation-form__badge--optional {
  background-color: #d0d0d0;
}

.p-reservation-form__control {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  width: 100%;
}

.p-reservation-form__control--select {
  position: relative;
}

.p-reservation-form__control--select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--text-color);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.p-reservation-form__input,
.p-reservation-form__select {
  display: block;
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  outline: none;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 14) calc(100vw / var(--vw) * 16);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.p-reservation-form__input:focus,
.p-reservation-form__select:focus {
  background-color: #ebebeb;
}

.p-reservation-form__input {
  height: calc(100vw / var(--vw) * 56);
}

.p-reservation-form__select {
  height: calc(100vw / var(--vw) * 56);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: calc(100vw / var(--vw) * 48);
}

.p-reservation-form__agree {
  margin-top: calc(100vw / var(--vw) * 16);
}

.p-reservation-form__checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 10);
  cursor: pointer;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #363636;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-reservation-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.p-reservation-form__checkbox-box {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 24);
  border: 1px solid #363636;
  border-radius: calc(100vw / var(--vw) * 4);
  background-color: var(--white);
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.p-reservation-form__checkbox-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  height: 28%;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  -webkit-transform: translate(-55%, -70%) rotate(-45deg);
  transform: translate(-55%, -70%) rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

input[type=checkbox]:checked + .p-reservation-form__checkbox-box::after {
  opacity: 1;
}

input[type=checkbox]:checked + .p-reservation-form__checkbox-box {
  background-color: #363636;
}

.p-reservation-form__checkbox-label a {
  color: inherit;
  text-decoration: underline;
}

.p-reservation-form__checkbox-label a:hover {
  text-decoration: none;
}

.p-reservation-form__submit {
  padding-top: calc(100vw / var(--vw) * 40);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-reservation-form__submit-btn {
  background-color: var(--navy);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  width: calc(100vw / var(--vw) * 480);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  border: 1px solid var(--navy);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-reservation-form__submit-btn:hover {
  background-color: var(--white);
  color: var(--navy);
}

.p-reservation-other {
  position: relative;
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1080);
  overflow: hidden;
  border-radius: calc(100vw / var(--vw) * 16);
}

.p-reservation-other__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: calc(100vw / var(--vw) * 16);
  overflow: hidden;
}

.p-reservation-other__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-reservation-other__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-other);
}

.p-reservation-other__inner {
  position: relative;
  z-index: 1;
  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;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 60) calc(100vw / var(--vw) * 60);
}

.p-reservation-other__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 20);
  width: calc(100vw / var(--vw) * 420);
  max-width: 100%;
}

.p-reservation-other__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 10);
  width: 100%;
  text-align: center;
  color: var(--white);
}

.p-reservation-other__title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.4;
  letter-spacing: 0;
}

.p-reservation-other__desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-reservation-other__btn {
  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;
  gap: calc(100vw / var(--vw) * 10);
  width: calc(100vw / var(--vw) * 360);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 15) calc(100vw / var(--vw) * 30);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-reservation-other__btn:hover {
  opacity: 0.85;
}

.p-reservation-other__btn--line {
  background-color: var(--green);
}

.p-reservation-other__btn--contact {
  background-color: var(--navy);
}

.p-reservation-other__btn-icon {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 24);
  height: calc(100vw / var(--vw) * 24);
}

.p-reservation-other__btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-reservation-confirm {
  background-color: var(--bg);
}

.p-reservation-confirm-form {
  background-color: var(--bg);
}

.p-reservation-confirm-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 40);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 160);
}

.p-reservation-confirm-form__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #333;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}

.p-reservation-confirm-form__cf7 {
  width: calc(100vw / var(--vw) * 1080);
  max-width: 100%;
}

.p-reservation-confirm-form__cf7 .wpcf7-form p {
  margin: 0;
}

.p-reservation-confirm-form__cf7 .p-reservation-confirm-form__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 12);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 0);
  width: 100%;
  margin: 0;
}

.p-reservation-confirm-form__cf7 .p-reservation-confirm-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: calc(100vw / var(--vw) * 8);
  width: 100%;
}

.p-reservation-confirm-form__cf7 .p-reservation-confirm-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100vw / var(--vw) * 140);
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8);
  border-bottom: 1px solid #202629;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  white-space: nowrap;
}

.p-reservation-confirm-form__cf7 .p-reservation-confirm-form__value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 12);
  border-bottom: 1px solid #eaeaea;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #202629;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  margin: 0;
  word-break: break-word;
}

.p-reservation-confirm-form__cf7 .p-reservation-confirm-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(100vw / var(--vw) * 24);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  padding-top: calc(100vw / var(--vw) * 80);
  padding-bottom: calc(100vw / var(--vw) * 40);
}

.p-reservation-confirm-form__cf7 .p-reservation-confirm-form__actions .wpcf7-form-control-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-reservation-confirm-form .wpcf7-previous {
  background-color: transparent;
  color: var(--text-color);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  width: calc(100vw / var(--vw) * 320);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  border: 1px solid var(--text-color);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-reservation-confirm-form .wpcf7-previous:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.p-reservation-confirm-form .wpcf7 [type=submit],
.p-reservation-confirm-form__submit-btn {
  background-color: var(--navy);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  width: calc(100vw / var(--vw) * 480);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  border: 1px solid var(--navy);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-reservation-confirm-form .wpcf7 [type=submit]:hover,
.p-reservation-confirm-form__submit-btn:hover {
  background-color: var(--white);
  color: var(--navy);
}

.p-reservation-confirm-form .wpcf7 [type=submit]:disabled,
.p-reservation-confirm-form__submit-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.p-archive-news-event {
  background-color: var(--bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-archive-news-event-hero {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 500);
  overflow: hidden;
}

.p-archive-news-event-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-archive-news-event-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-archive-news-event-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-30);
}

.p-archive-news-event-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
  height: 100%;
  padding-top: calc(100vw / var(--vw) * 40);
}

.p-archive-news-event-hero__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-archive-news-event-hero__ja {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  white-space: nowrap;
}

.p-archive-news-event-grid {
  width: 100%;
  max-width: calc(100vw / var(--vw) * 1280);
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-archive-news-event-grid__empty {
  text-align: center;
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
}

.p-archive-news-event-grid__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 24);
  padding: calc(100vw / var(--vw) * 16);
  width: 100%;
}

.p-archive-news-event-grid__item {
  width: calc(100vw / var(--vw) * 400);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-archive-news-event-grid__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 16);
  background-color: var(--white);
  border-radius: calc(100vw / var(--vw) * 8);
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px var(--shadow);
  box-shadow: 0 4px 16px var(--shadow);
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.p-archive-news-event-grid__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.p-archive-news-event-grid__thumb {
  width: 100%;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}

.p-archive-news-event-grid__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-archive-news-event-grid__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: calc(100vw / var(--vw) * 16);
  padding: calc(100vw / var(--vw) * 16);
  padding-top: calc(100vw / var(--vw) * 0);
}

.p-archive-news-event-grid__tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--navy);
  color: var(--white);
  border-radius: calc(100vw / var(--vw) * 4);
  padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 12);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1.2;
  letter-spacing: 0;
}

.p-archive-news-event-grid__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-archive-news-event-grid__date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  width: 100%;
}

.p-archive-news-event-grid__title {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1.6;
  letter-spacing: 0.05em;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-archive-news-event-pagination {
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 24);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-archive-news-event-pagination__list {
  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;
  gap: calc(100vw / var(--vw) * 24);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-archive-news-event-pagination__list .page-numbers {
  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;
  width: calc(100vw / var(--vw) * 48);
  height: calc(100vw / var(--vw) * 48);
  background-color: var(--text-color);
  color: var(--white);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: calc(100vw / var(--vw) * 18);
  line-height: 1;
  letter-spacing: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.p-archive-news-event-pagination__list .page-numbers:hover {
  opacity: 0.8;
}

.p-archive-news-event-pagination__list .page-numbers.current {
  opacity: 0.6;
  cursor: default;
}

.p-archive-news-event-pagination__list .page-numbers.dots {
  background-color: transparent;
  color: #363636;
  width: auto;
  letter-spacing: calc(100vw / var(--vw) * 4);
  cursor: default;
}

.p-single-news-event {
  background-color: var(--bg);
}

.p-single-news-event-detail {
  background-color: var(--bg);
}

.p-single-news-event-detail__inner {
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-single-news-event-detail__card {
  width: calc(100vw / var(--vw) * 1080);
  max-width: 100%;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 24);
}

.p-single-news-event-detail__head {
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 16);
}

.p-single-news-event-detail__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: calc(100vw / var(--vw) * 4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-single-news-event-detail__tag {
  background-color: var(--navy);
  color: var(--white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 13);
  line-height: calc(100vw / var(--vw) * 20);
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 4);
  border-radius: calc(100vw / var(--vw) * 4);
  white-space: nowrap;
}

.p-single-news-event-detail__title {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
}

.p-single-news-event-detail__date {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0.05em;
}

.p-single-news-event-detail__main {
  position: relative;
  width: 100%;
  padding-bottom: 56.2962962963%;
  overflow: hidden;
}

.p-single-news-event-detail__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.p-single-news-event-detail__body {
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
}

.p-single-news-event-detail__lead {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0;
}

.p-single-news-event-detail__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-single-news-event-detail__text p {
  margin: 0;
}

.p-single-news-event-detail__text p + p {
  margin-top: calc(100vw / var(--vw) * 16);
}

.p-single-news-event-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 124) calc(100vw / var(--vw) * 24);
}

.p-single-news-event-back__btn {
  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;
  width: calc(100vw / var(--vw) * 320);
  max-width: 100%;
  padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.p-single-news-event-back__btn:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.p-single-news-event-back__label {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.p-single-news-event-back__icon {
  width: calc(100vw / var(--vw) * 16);
  height: calc(100vw / var(--vw) * 16);
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-privacy-policy {
  background-color: var(--bg);
}

.p-privacy-policy-hero {
  position: relative;
  width: 100%;
  height: calc(100vw / var(--vw) * 500);
  overflow: hidden;
}

.p-privacy-policy-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-privacy-policy-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-privacy-policy-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-30);
}

.p-privacy-policy-hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: calc(100vw / var(--vw) * 16);
  width: 100%;
  height: 100%;
  padding-top: calc(100vw / var(--vw) * 40);
}

.p-privacy-policy-hero__en {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: calc(100vw / var(--vw) * 80);
  line-height: calc(100vw / var(--vw) * 80);
  letter-spacing: 0;
}

.p-privacy-policy-hero__ja {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1;
  letter-spacing: 0;
  padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  white-space: nowrap;
}

.p-privacy-policy-content {
  padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
}

.p-privacy-policy-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 40);
  max-width: calc(100vw / var(--vw) * 1080);
  margin-inline: auto;
  width: 100%;
}

.p-privacy-policy-content__lead {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
}

.p-privacy-policy-content__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(100vw / var(--vw) * 4);
}

.p-privacy-policy-content__heading {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 24);
  line-height: 1.4;
  letter-spacing: 0;
  border-left: 2px solid var(--navy);
  padding-left: calc(100vw / var(--vw) * 16);
}

.p-privacy-policy-content__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-color);
  font-size: calc(100vw / var(--vw) * 15);
  line-height: calc(100vw / var(--vw) * 28);
  letter-spacing: 0;
  border-left: 2px solid var(--border-gray);
  padding-left: calc(100vw / var(--vw) * 16);
}

.pc {
  display: block !important;
}

.pc_inline {
  display: inline;
}

.pc_fx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pc_inline_block {
  display: inline-block;
}

.sp {
  display: none !important;
}

.sp_inline {
  display: none !important;
}

.sp_fx {
  display: none !important;
}

.sp_inline_block {
  display: none !important;
}

.relative {
  position: relative;
}

@media screen and (min-width: 768px) {
  :root {
    --vw: 1920;
  }

  .l-header__nav-actions {
    display: none;
  }

  .p-works__card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  .p-works__card:hover .p-works__card-overlay {
    opacity: 0;
  }

  .p-works__card:hover .p-works__card-body {
    opacity: 0;
  }

  .p-works__footer {
    display: none;
  }

  .p-works__more--sp {
    display: none;
  }

  .p-news__footer {
    display: none;
  }

  .p-news__more--sp {
    display: none;
  }

  .p-business-works__footer {
    display: none;
  }

  .p-business-works__more--sp {
    display: none;
  }

  .p-archive-work-grid__card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  .p-archive-work-grid__card:hover .p-archive-work-grid__card-overlay {
    opacity: 0;
  }

  .p-archive-work-grid__card:hover .p-archive-work-grid__card-body {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --vw: 375;
  }

  .l-header__inner {
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 16);
  }

  .l-header__logo {
    width: calc(100vw / var(--vw) * 100);
    height: calc(100vw / var(--vw) * 40);
  }

  .l-header__actions {
    display: none;
  }

  .l-header__hamburger {
    top: calc(100vw / var(--vw) * 8);
    right: calc(100vw / var(--vw) * 8);
    gap: calc(100vw / var(--vw) * 8);
    padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8);
  }

  .l-header__hamburger span {
    width: calc(100vw / var(--vw) * 30);
    height: calc(100vw / var(--vw) * 4);
  }

  .l-header__nav {
    width: 100%;
    max-width: none;
    background-color: rgba(0, 0, 0, 0.8);
    gap: calc(100vw / var(--vw) * 30);
    padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
  }

  .l-header__nav-links {
    gap: calc(100vw / var(--vw) * 20);
  }

  .l-header__nav-link {
    font-size: calc(100vw / var(--vw) * 20);
    letter-spacing: 0;
  }

  .l-footer__logo a {
    width: calc(100vw / var(--vw) * 160);
    height: calc(100vw / var(--vw) * 160);
  }

  .l-footer__copyright p {
    font-size: calc(100vw / var(--vw) * 12);
  }

  .c-button-outline {
    gap: calc(100vw / var(--vw) * 16);
    padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
    font-size: calc(100vw / var(--vw) * 15);
  }

  .c-button-outline__icon {
    width: calc(100vw / var(--vw) * 16);
    height: calc(100vw / var(--vw) * 16);
  }

  .c-cta {
    padding: calc(100vw / var(--vw) * 60) calc(100vw / var(--vw) * 0);
  }

  .c-cta__inner {
    gap: calc(100vw / var(--vw) * 20);
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
  }

  .c-cta__heading {
    font-size: calc(100vw / var(--vw) * 24);
  }

  .c-cta__button {
    width: 100%;
    max-width: 100%;
    height: calc(100vw / var(--vw) * 53);
    gap: calc(100vw / var(--vw) * 10);
    font-size: calc(100vw / var(--vw) * 20);
  }

  .p-hero {
    height: 80vh;
    min-height: 560px;
  }

  .p-hero__copy p {
    font-size: calc(100vw / var(--vw) * 32);
  }

  .p-hero__badges {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 16);
    margin-bottom: calc(100vw / var(--vw) * 16);
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-hero__badge {
    padding: calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 40);
    font-size: calc(100vw / var(--vw) * 18);
  }

  .p-hero__scroll {
    bottom: 0;
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 16);
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-hero__scroll-label {
    font-size: calc(100vw / var(--vw) * 18);
  }

  .p-concept-intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: calc(100vw / var(--vw) * 24);
    padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
  }

  .p-concept-intro__text {
    gap: calc(100vw / var(--vw) * 24);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
  }

  .p-concept-intro__title {
    font-size: calc(100vw / var(--vw) * 32);
    text-align: center;
  }

  .p-concept-intro__desc {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: center;
  }

  .p-concept-intro__gallery {
    width: 100%;
    gap: calc(100vw / var(--vw) * 8);
    overflow-x: auto;
    scrollbar-width: none;
    padding-left: calc(100vw / var(--vw) * 24);
    padding-right: calc(100vw / var(--vw) * 24);
  }

  .p-concept-intro__gallery::-webkit-scrollbar {
    display: none;
  }

  .p-concept-intro__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc(100vw / var(--vw) * 200);
    height: calc(100vw / var(--vw) * 305);
    border-radius: calc(100vw / var(--vw) * 16);
  }

  .p-concept__inner {
    gap: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24);
  }

  .p-concept__en {
    font-size: calc(100vw / var(--vw) * 24);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-concept__body {
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-concept__title {
    font-size: calc(100vw / var(--vw) * 32);
    line-height: 1.5;
  }

  .p-concept__desc {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: left;
  }

  .p-concept__logo {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .p-concept__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-flow {
    padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
  }

  .p-flow__head {
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
    margin-bottom: calc(100vw / var(--vw) * 24);
  }

  .p-flow__sub {
    font-size: calc(100vw / var(--vw) * 15);
  }

  .p-flow__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-flow__list {
    gap: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
  }

  .p-flow__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 0;
    gap: calc(100vw / var(--vw) * 20);
  }

  .p-flow__rail {
    display: none;
  }

  .p-flow__num {
    width: auto;
    margin-left: 0;
  }

  .p-flow__divider {
    display: none;
  }

  .p-flow__icon {
    margin-left: 0;
  }

  .p-flow__text {
    max-width: none;
    width: 100%;
    margin-left: 0;
    gap: calc(100vw / var(--vw) * 20);
  }

  .p-works {
    padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
  }

  .p-works__head {
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
    margin-bottom: calc(100vw / var(--vw) * 24);
  }

  .p-works__sub {
    font-size: calc(100vw / var(--vw) * 15);
  }

  .p-works__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-works__grid {
    gap: calc(100vw / var(--vw) * 8);
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 8);
  }

  .p-works__column {
    gap: calc(100vw / var(--vw) * 8);
  }

  .p-works__card--tall {
    height: calc(100vw / var(--vw) * 300);
  }

  .p-works__card--short {
    height: calc(100vw / var(--vw) * 200);
  }

  .p-works__card-overlay {
    display: none;
  }

  .p-works__card-body {
    display: none;
  }

  .p-works__more--pc {
    display: none;
  }

  .p-news {
    padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
  }

  .p-news__head {
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
    margin-bottom: calc(100vw / var(--vw) * 16);
  }

  .p-news__sub {
    font-size: calc(100vw / var(--vw) * 15);
    letter-spacing: 0;
  }

  .p-news__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
    letter-spacing: 0;
  }

  .p-news__list {
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 24);
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-news__item {
    width: calc(100vw / var(--vw) * 178);
  }

  .p-news__body {
    gap: calc(100vw / var(--vw) * 8);
    padding: calc(100vw / var(--vw) * 16);
  }

  .p-news__tag {
    font-size: calc(100vw / var(--vw) * 10);
    padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 12);
  }

  .p-news__date {
    font-size: calc(100vw / var(--vw) * 10);
    line-height: 1.4;
  }

  .p-news__title {
    font-size: calc(100vw / var(--vw) * 13);
    letter-spacing: 0;
  }

  .p-news__more--pc {
    display: none;
  }

  .p-contact-hero {
    height: calc(100vw / var(--vw) * 280);
  }

  .p-contact-hero__inner {
    gap: calc(100vw / var(--vw) * 16);
    padding-top: calc(100vw / var(--vw) * 40);
  }

  .p-contact-hero__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-contact-hero__ja {
    font-size: calc(100vw / var(--vw) * 15);
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  }

  .p-contact-form__inner {
    gap: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24);
  }

  .p-contact-form__lead {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: center;
  }

  .p-contact-form__form,
  .p-contact-form__cf7 {
    width: 100%;
  }

  .p-contact-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: calc(100vw / var(--vw) * 8);
  }

  .p-contact-form__label-wrap {
    gap: calc(100vw / var(--vw) * 8);
    width: 100%;
  }

  .p-contact-form__label {
    width: auto;
    padding: 0;
    font-weight: 400;
    font-size: calc(100vw / var(--vw) * 15);
  }

  .p-contact-form__badge {
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 12);
    line-height: calc(100vw / var(--vw) * 12);
    padding: calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 8);
  }

  .p-contact-form__input {
    height: calc(100vw / var(--vw) * 56);
  }

  .p-contact-form__textarea {
    height: calc(100vw / var(--vw) * 240);
  }

  .p-contact-form__agree {
    margin-top: calc(100vw / var(--vw) * 12);
  }

  .p-contact-form__submit {
    padding: 0;
    margin-top: calc(100vw / var(--vw) * 30);
  }

  .p-contact-form__submit-btn {
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  }

  .p-contact-confirm-form__inner {
    gap: calc(100vw / var(--vw) * 32);
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24);
  }

  .p-contact-confirm-form__lead {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: center;
  }

  .p-contact-confirm-form__cf7 {
    width: 100%;
  }

  .p-contact-confirm-form__cf7 .p-contact-confirm-form__list {
    gap: calc(100vw / var(--vw) * 16);
    padding: 0;
  }

  .p-contact-confirm-form__cf7 .p-contact-confirm-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(100vw / var(--vw) * 4);
  }

  .p-contact-confirm-form__cf7 .p-contact-confirm-form__label {
    width: 100%;
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 0);
    font-size: calc(100vw / var(--vw) * 14);
    border-bottom: 1px solid #202629;
  }

  .p-contact-confirm-form__cf7 .p-contact-confirm-form__value {
    width: 100%;
    padding: calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 0);
    font-size: calc(100vw / var(--vw) * 14);
    line-height: calc(100vw / var(--vw) * 24);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-contact-confirm-form__cf7 .p-contact-confirm-form__actions {
    gap: calc(100vw / var(--vw) * 16);
    padding-top: calc(100vw / var(--vw) * 40);
    padding-bottom: calc(100vw / var(--vw) * 24);
  }

  .p-contact-confirm-form .wpcf7-previous {
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-contact-confirm-form .wpcf7 [type=submit],
  .p-contact-confirm-form__submit-btn {
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-thanks-content__inner {
    gap: calc(100vw / var(--vw) * 48);
    padding: calc(100vw / var(--vw) * 60) calc(100vw / var(--vw) * 24);
  }

  .p-thanks-content__head {
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-thanks-content__title {
    font-size: calc(100vw / var(--vw) * 48);
    line-height: calc(100vw / var(--vw) * 56);
  }

  .p-thanks-content__message {
    font-size: calc(100vw / var(--vw) * 14);
    line-height: calc(100vw / var(--vw) * 26);
  }

  .p-thanks-content__home {
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-concept-hero {
    height: calc(100vw / var(--vw) * 280);
  }

  .p-concept-hero__inner {
    gap: calc(100vw / var(--vw) * 16);
    padding-top: calc(100vw / var(--vw) * 40);
  }

  .p-concept-hero__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-concept-hero__ja {
    font-size: calc(100vw / var(--vw) * 24);
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 40);
  }

  .p-concept-features__inner {
    gap: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24);
  }

  .p-concept-features__intro {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-concept-features__title {
    font-size: calc(100vw / var(--vw) * 32);
    line-height: 1.5;
  }

  .p-concept-features__desc p {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: justify;
  }

  .p-concept-features__list {
    gap: calc(100vw / var(--vw) * 48);
  }

  .p-concept-features__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-concept-features__item--image-first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-concept-features__heading {
    gap: calc(100vw / var(--vw) * 4);
  }

  .p-concept-features__sub {
    font-weight: 500;
    font-size: calc(100vw / var(--vw) * 18);
  }

  .p-concept-features__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-concept-features__body p {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: justify;
  }

  .p-concept-features__image {
    width: 100%;
    height: calc(100vw / var(--vw) * 240);
    border-radius: calc(100vw / var(--vw) * 24);
  }

  .p-concept-staff {
    padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 0);
  }

  .p-concept-staff__head {
    margin-bottom: calc(100vw / var(--vw) * 24);
  }

  .p-concept-staff__en {
    padding-top: calc(100vw / var(--vw) * 16);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-concept-staff__list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: calc(100vw / var(--vw) * 16);
    margin-top: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 32) calc(100vw / var(--vw) * 24);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .p-concept-staff__list::-webkit-scrollbar {
    display: none;
  }

  .p-concept-staff__item {
    width: calc(100vw / var(--vw) * 240);
  }

  .p-concept-staff__thumb {
    height: calc(100vw / var(--vw) * 320);
  }

  .p-concept-staff__dept {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-concept-company {
    padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 24);
  }

  .p-concept-company__head {
    margin-bottom: calc(100vw / var(--vw) * 24);
  }

  .p-concept-company__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-concept-company__list {
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-concept-company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(100vw / var(--vw) * 8);
  }

  .p-concept-company__label {
    width: 100%;
    font-size: calc(100vw / var(--vw) * 15);
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 8);
  }

  .p-concept-company__value p {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: justify;
  }

  .p-concept-company__value {
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8);
    gap: calc(100vw / var(--vw) * 32);
    border-bottom: 1px solid #eaeaea;
  }

  .p-concept-company__map {
    height: calc(100vw / var(--vw) * 240);
  }

  .p-business-hero {
    height: calc(100vw / var(--vw) * 280);
  }

  .p-business-hero__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-business-services__inner {
    gap: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24);
  }

  .p-business-services__intro p {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: start;
  }

  .p-business-services__list {
    gap: calc(100vw / var(--vw) * 48);
  }

  .p-business-services__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-business-services__text {
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-business-services__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }

  .p-business-services__num {
    font-size: calc(100vw / var(--vw) * 100);
    line-height: 1.2;
  }

  .p-business-services__name {
    font-size: calc(100vw / var(--vw) * 32);
  }

  .p-business-services__title {
    font-size: calc(100vw / var(--vw) * 24);
  }

  .p-business-services__desc {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-business-services__image {
    width: 100%;
    height: calc(100vw / var(--vw) * 200);
    border-radius: calc(100vw / var(--vw) * 24);
  }

  .p-business-cta__inner {
    gap: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 100) calc(100vw / var(--vw) * 24);
  }

  .p-business-cta__head {
    gap: calc(100vw / var(--vw) * 16);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .p-business-cta__title {
    font-size: calc(100vw / var(--vw) * 32);
  }

  .p-business-cta__desc p {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: left;
    letter-spacing: 0;
  }

  .p-business-cta__btn {
    width: 100%;
    height: calc(100vw / var(--vw) * 64);
    font-size: calc(100vw / var(--vw) * 18);
  }

  .p-business-works {
    padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 0);
  }

  .p-business-works__head {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24);
    margin-bottom: calc(100vw / var(--vw) * 16);
  }

  .p-business-works__sub {
    font-size: calc(100vw / var(--vw) * 15);
  }

  .p-business-works__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-business-works__list {
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 24);
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-business-works__item {
    width: calc(100vw / var(--vw) * 240);
  }

  .p-business-works__body {
    gap: calc(100vw / var(--vw) * 8);
    padding: calc(100vw / var(--vw) * 16);
  }

  .p-business-works__card-title {
    font-size: calc(100vw / var(--vw) * 16);
    letter-spacing: 0;
  }

  .p-business-works__card-desc {
    font-size: calc(100vw / var(--vw) * 13);
    line-height: calc(100vw / var(--vw) * 20);
    letter-spacing: 0;
  }

  .p-business-works__specs li {
    font-size: calc(100vw / var(--vw) * 13);
    padding: calc(100vw / var(--vw) * 2) calc(100vw / var(--vw) * 12);
    letter-spacing: 0;
  }

  .p-business-works__more--pc {
    display: none;
  }

  .p-archive-work-hero {
    height: calc(100vw / var(--vw) * 280);
  }

  .p-archive-work-hero__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-archive-work-grid {
    padding: calc(100vw / var(--vw) * 60) calc(100vw / var(--vw) * 0);
  }

  .p-archive-work-grid__list {
    gap: calc(100vw / var(--vw) * 8);
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 32) calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 32);
  }

  .p-archive-work-grid__column {
    gap: calc(100vw / var(--vw) * 8);
  }

  .p-archive-work-grid__card--tall {
    height: calc(100vw / var(--vw) * 300);
  }

  .p-archive-work-grid__card--short {
    height: calc(100vw / var(--vw) * 200);
  }

  .p-archive-work-grid__card-overlay {
    display: none;
  }

  .p-archive-work-grid__card-body {
    display: none;
  }

  .p-archive-work-pagination {
    padding: calc(100vw / var(--vw) * 60) calc(100vw / var(--vw) * 24);
  }

  .p-archive-work-pagination__list {
    gap: calc(100vw / var(--vw) * 12);
  }

  .p-archive-work-pagination__list .page-numbers {
    width: calc(100vw / var(--vw) * 40);
    height: calc(100vw / var(--vw) * 40);
    font-size: calc(100vw / var(--vw) * 15);
  }

  .p-archive-work-pagination__list .page-numbers.dots {
    width: auto;
  }

  .p-single-work-detail__inner {
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
  }

  .p-single-work-detail__card {
    width: 100%;
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-single-work-detail__head {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-single-work-detail__title {
    font-size: calc(100vw / var(--vw) * 20);
  }

  .p-single-work-detail__tag {
    font-size: calc(100vw / var(--vw) * 12);
  }

  .p-single-work-detail__gallery {
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-single-work-detail__body {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
  }

  .p-single-work-detail__lead {
    line-height: auto;
    letter-spacing: 0;
  }

  .p-single-work-detail__text {
    letter-spacing: 0.02em;
  }

  .p-single-work-detail__info {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-single-work-detail__info-list {
    gap: calc(100vw / var(--vw) * 10);
  }

  .p-single-work-detail__info-row {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-single-work-detail__info-label {
    width: 100%;
    padding: calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 4);
  }

  .p-single-work-detail__info-value {
    width: 100%;
    padding: calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 12);
    letter-spacing: 0.02em;
  }

  .p-single-work-back {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 64) calc(100vw / var(--vw) * 24);
  }

  .p-single-work-back__btn {
    width: 100%;
    padding: calc(100vw / var(--vw) * 14) calc(100vw / var(--vw) * 20);
  }

  .p-reservation__body {
    gap: calc(100vw / var(--vw) * 40);
    padding: calc(100vw / var(--vw) * 80) calc(100vw / var(--vw) * 24);
  }

  .p-reservation-hero {
    height: calc(100vw / var(--vw) * 280);
  }

  .p-reservation-hero__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-reservation-cards {
    padding-bottom: 16px;
  }

  .p-reservation-cards__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-reservation-cards__head {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 16);
  }

  .p-reservation-cards__title {
    font-size: calc(100vw / var(--vw) * 24);
  }

  .p-reservation-cards__body p {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-reservation-cards__footer {
    padding: calc(100vw / var(--vw) * 0) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24);
  }

  .p-reservation-form__inner {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24);
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-reservation-form__head {
    padding: 0;
  }

  .p-reservation-form__title {
    font-size: calc(100vw / var(--vw) * 24);
  }

  .p-reservation-form__lead p {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-reservation-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: calc(100vw / var(--vw) * 8);
  }

  .p-reservation-form__label-wrap {
    gap: calc(100vw / var(--vw) * 8);
    width: 100%;
  }

  .p-reservation-form__label {
    width: auto;
    padding: 0;
    font-weight: 400;
    font-size: calc(100vw / var(--vw) * 15);
  }

  .p-reservation-form__badge {
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 12);
    line-height: calc(100vw / var(--vw) * 12);
    padding: calc(100vw / var(--vw) * 4) calc(100vw / var(--vw) * 8);
  }

  .p-reservation-form__input {
    height: calc(100vw / var(--vw) * 56);
  }

  .p-reservation-form__select {
    height: calc(100vw / var(--vw) * 56);
  }

  .p-reservation-form__agree {
    margin-top: calc(100vw / var(--vw) * 8);
  }

  .p-reservation-form__submit {
    padding: 0;
    margin-top: calc(100vw / var(--vw) * 8);
  }

  .p-reservation-form__submit-btn {
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  }

  .p-reservation-other__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(100vw / var(--vw) * 24);
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24);
  }

  .p-reservation-other__col {
    width: 100%;
  }

  .p-reservation-other__title {
    font-size: calc(100vw / var(--vw) * 20);
  }

  .p-reservation-other__desc {
    font-size: calc(100vw / var(--vw) * 13);
    line-height: calc(100vw / var(--vw) * 24);
  }

  .p-reservation-other__btn {
    width: 100%;
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 30);
  }

  .p-reservation-confirm-form__inner {
    gap: calc(100vw / var(--vw) * 32);
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24);
  }

  .p-reservation-confirm-form__lead {
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
    text-align: center;
  }

  .p-reservation-confirm-form__cf7 {
    width: 100%;
  }

  .p-reservation-confirm-form__cf7 .p-reservation-confirm-form__table {
    gap: calc(100vw / var(--vw) * 16);
    padding: 0;
  }

  .p-reservation-confirm-form__cf7 .p-reservation-confirm-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: calc(100vw / var(--vw) * 4);
  }

  .p-reservation-confirm-form__cf7 .p-reservation-confirm-form__label {
    width: 100%;
    padding: calc(100vw / var(--vw) * 8) calc(100vw / var(--vw) * 0);
    font-size: calc(100vw / var(--vw) * 14);
    border-bottom: 1px solid #202629;
  }

  .p-reservation-confirm-form__cf7 .p-reservation-confirm-form__value {
    width: 100%;
    padding: calc(100vw / var(--vw) * 12) calc(100vw / var(--vw) * 0);
    font-size: calc(100vw / var(--vw) * 14);
    line-height: calc(100vw / var(--vw) * 24);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-reservation-confirm-form__cf7 .p-reservation-confirm-form__actions {
    gap: calc(100vw / var(--vw) * 16);
    padding-top: calc(100vw / var(--vw) * 40);
    padding-bottom: calc(100vw / var(--vw) * 24);
  }

  .p-reservation-confirm-form .wpcf7-previous {
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-reservation-confirm-form .wpcf7 [type=submit],
  .p-reservation-confirm-form__submit-btn {
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 700;
    font-size: calc(100vw / var(--vw) * 15);
    line-height: calc(100vw / var(--vw) * 28);
  }

  .p-archive-news-event-hero {
    height: calc(100vw / var(--vw) * 280);
  }

  .p-archive-news-event-hero__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-archive-news-event-grid {
    padding: calc(100vw / var(--vw) * 60) calc(100vw / var(--vw) * 24);
  }

  .p-archive-news-event-grid__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: calc(100vw / var(--vw) * 24);
    padding: calc(100vw / var(--vw) * 16);
  }

  .p-archive-news-event-grid__item {
    width: 100%;
  }

  .p-archive-news-event-grid__body {
    gap: calc(100vw / var(--vw) * 16);
    padding: calc(100vw / var(--vw) * 16);
    padding-top: calc(100vw / var(--vw) * 0);
  }

  .p-archive-news-event-grid__meta {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-archive-news-event-grid__title {
    letter-spacing: 0;
  }

  .p-archive-news-event-pagination {
    padding: calc(100vw / var(--vw) * 60) calc(100vw / var(--vw) * 24);
  }

  .p-archive-news-event-pagination__list {
    gap: calc(100vw / var(--vw) * 12);
  }

  .p-archive-news-event-pagination__list .page-numbers {
    width: calc(100vw / var(--vw) * 40);
    height: calc(100vw / var(--vw) * 40);
    font-size: calc(100vw / var(--vw) * 15);
  }

  .p-archive-news-event-pagination__list .page-numbers.dots {
    width: auto;
  }

  .p-single-news-event-detail__inner {
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
  }

  .p-single-news-event-detail__card {
    width: 100%;
    gap: calc(100vw / var(--vw) * 24);
  }

  .p-single-news-event-detail__head {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
    gap: calc(100vw / var(--vw) * 16);
  }

  .p-single-news-event-detail__tag {
    font-size: calc(100vw / var(--vw) * 13);
    line-height: calc(100vw / var(--vw) * 20);
  }

  .p-single-news-event-detail__title {
    font-size: calc(100vw / var(--vw) * 24);
    line-height: 1.5;
  }

  .p-single-news-event-detail__date {
    letter-spacing: 0;
  }

  .p-single-news-event-detail__body {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 0);
  }

  .p-single-news-event-detail__lead {
    line-height: 1.5;
    letter-spacing: 0;
  }

  .p-single-news-event-detail__text {
    letter-spacing: 0;
  }

  .p-single-news-event-back {
    padding: calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 24) calc(100vw / var(--vw) * 64) calc(100vw / var(--vw) * 24);
  }

  .p-single-news-event-back__btn {
    width: 100%;
    padding: calc(100vw / var(--vw) * 16) calc(100vw / var(--vw) * 24);
  }

  .p-privacy-policy-hero {
    height: calc(100vw / var(--vw) * 280);
  }

  .p-privacy-policy-hero__inner {
    gap: calc(100vw / var(--vw) * 16);
    padding-top: calc(100vw / var(--vw) * 40);
  }

  .p-privacy-policy-hero__en {
    font-size: calc(100vw / var(--vw) * 40);
    line-height: calc(100vw / var(--vw) * 48);
  }

  .p-privacy-policy-content {
    padding: calc(100vw / var(--vw) * 40) calc(100vw / var(--vw) * 24);
  }

  .p-privacy-policy-content__inner {
    gap: calc(100vw / var(--vw) * 24);
  }

  .pc {
    display: none !important;
    margin: 0;
    padding: 0;
  }

  .pc_fx {
    display: none !important;
  }

  .pc_inline {
    display: none !important;
  }

  .pc_inline_block {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .sp_inline {
    display: inline !important;
  }

  .sp_fx {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sp_inline_block {
    display: inline-block !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*# sourceMappingURL=styles.css.map */
