@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Wallpoet&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tomorrow:ital,wght@0,400;0,600;1,400;1,600&display=swap');
*,*::before,*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:where([hidden]:not([hidden='until-found'])) {
	display: none !important;
}
:where(html) {
	-webkit-text-size-adjust: none;
	color-scheme: dark light;
}
@supports not (min-block-size: 100dvb) {
	:where(html) {
		block-size: 100%;
	}
}
@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: smooth;
	}
}
:where(body) {
	block-size: 100%;
	block-size: 100dvb;
	line-height: 1.5;
	font-family: system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}
:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
}
:where(textarea) {
	resize: vertical;
	resize: block;
}
:where(button, label, select, summary, [role='button'], [role='option']) {
	cursor: pointer;
}
:where(:disabled) {
	cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
	cursor: not-allowed;
}
:where(button) {
	border-style: solid;
}
:where(a) {
	text-underline-offset: 0.2ex;
}
:where(ul, ol) {
	list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}
:where(img, picture, svg) {
	max-inline-size: 100%;
	block-size: auto;
}
:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}
:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);
}
:where(hr) {
	border: none;
	border-block-start: 1px solid;
	color: inherit;
	block-size: 0;
	overflow: visible;
}
:where(:focus-visible) {
	outline: 2px solid var(--focus-color, Highlight);
	outline-offset: 2px;
}
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* foundation */
:root {
  /* font */
  --font-en: "Wallpoet", sans-serif;

  /* color */
  --primaryColor: #B9A16E;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer,
header, hgroup, main, menu, nav, section, summary {
  display: block;
}
html {
  font-size: 62.5%;
  height: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Yu Gothic", "游ゴシック体", "YuGothic", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #000;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0.115em;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
}
.font-wallpoet {
  font-family: "Wallpoet", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  animation: loading 2s forwards;
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-up-page {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease-out forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transition-duration: 600ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 40px);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.page {
  position: relative;
}
.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72.5vw;
  height: 15.5vw;
  background-color: var(--primaryColor);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: -10;
}
@media (max-width: 768px) {
  .page::before {
    width: 85vw;
    height: 27.5vw;
  }
}


/* header */
.l-header__content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  padding: 2vw 2vw 0 2vw;
}
@media (max-width: 768px) {
  .l-header__content {
    padding: 12px 12px 0 12px;
  }
}
.c-productcopy {
  font-size: clamp(12px, 1.222vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}
.c-logo__corporate {
  width: 15%;
  max-width: 160px;
}
@media (max-width: 768px) {
  .c-logo__corporate {
    width: 20%;
    min-width: 96px;
  }
}

/* footer */
.l-footer__content {
  margin: auto;
  padding: 5% 0 10%;
  text-align: center;
  position: relative;
}
.p-social {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  margin: 0 auto 6rem;
}
@media (max-width: 480px) {
  .p-social {
    margin-bottom: 3rem;
  }
}
.p-social__item {
  max-width: 40px;
  margin: 1.25em;
}
.c-copyright {
  font-family: sans-serif;
  font-size: clamp(10px, 0.7666vw, 9999px);
  font-weight: 300;
  letter-spacing: 0.1em;
}
.l-footer__content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72.5vw;
  height: 15.5vw;
  background-color: var(--primaryColor);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: -10;
  pointer-events: none;
}

/* main */
.fw-bold { font-weight: bold;}
.ta-l { text-align: left; }
.ta-c { text-align: center; }
.ta-r { text-align: right; }
.mt-40 { margin-top: 40px;}
.mt-60 { margin-top: 60px;}
.sp { display: none; }
.sp02 { display: none; }
@media screen and (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}
@media screen and (max-width: 480px) {
  .sp02 { display: block; }
}

.p-section {
  width: 90vw;
  max-width: 840px;
  margin: auto;
  padding: 4vw 0;
}
@media (max-width: 768px) {
  .p-section {
    width: 88vw;
    padding: 4rem 0;
  }
}

.p-pageTitle .logo {
  width: 55%;
  max-width: 360px;
  min-width: 200px;
  margin: 40px auto;
}

.p-headline--large {
  font-family: var(--font-en);
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: var(--primaryColor);
}
.p-headline--middle {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  position: relative;
  color: var(--primaryColor);
  margin: 72px 0 32px;
}
.p-headline--middle::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  width: 100vw;
  height: 1px;
  background: var(--primaryColor);
  transform: translateY(-50%);
}
.p-headline--small {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: solid 4px var(--primaryColor);
}

@media screen and (max-width: 768px) {
  .p-headline--large {
    font-size: 32px;
  }
  .p-headline--middle {
    font-size: 18px;
    margin: 56px 0 24px;
  }
  .p-headline--small {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.p-comingsoon {
  width: 100%;
  font-family: 'Tomorrow', sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--primaryColor);
  background-color: #f8f8f6;
  margin: 24px auto;
  padding: 160px 20px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-comingsoon {
    font-size: 28px;
    padding: 80px 12px;
  }
}
.movie-wrap  { 
  position:relative;
  width: 100%;
  max-width: 315px;
  margin: 15px auto;
  overflow: hidden;
}
.movie-wrap iframe { 
  aspect-ratio: 9 / 16;
  width: 100%;
  height: 100%;
}

.p-text {
  line-height: 2;
  padding: 0 24px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
.c-button a {
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 32px auto;
  width: 88%;
  max-width: 320px;
  padding: 16px 32px;
  color: #fff;
  background: var(--primaryColor);
  border-radius: 9999px;
  transition: 0.3s ease-in-out;
}
.c-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 28px;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 8px;
  height: 8px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.c-button a:hover {
  background: #333;
}
.c-button a:hover::after {
  right: 24px;
}


/* sidelink */
.p-sidelink {
  position: relative;
}
.p-sidelink a {
  position: fixed;
  top: 25%;
  right: -5px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  padding: 32px 24px;
  color: #fff;
  background-color: var(--primaryColor);
  text-decoration: none;
  transition: all 0.2s ease-in;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-sidelink a {
    padding: 24px 12px;
  }
}
.p-sidelink a:hover {
  transform: translateX(-5px);
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 768px) {
  .p-sidelink a:hover {
    transform: none;
  }
}


/* youtube */
.movie-wrapper {
  width: 100%;
  margin: 3% auto;
}
@media (max-width: 1080px) {
  .movie-wrapper {
    margin: 2.5em auto;
  }
}

.movie-wrapper--short {
  width: 100%;
  max-width: 400px;
  margin: 3% auto;
}
@media (max-width: 1080px) {
  .movie-wrapper {
    margin: 2.5em auto;
  }
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.movie-player--short {
  width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.movie_play-button {
  max-width: 120px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .movie_play-button {
    width: 18%;
  }
}

.movie-thumbnail {
  width: 100%;
  display: block;
  transition: all 0.3s;
}
.movie-thumbnail:hover {
  filter: brightness(65%);
}