@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Kalnia:wdth,wght@112.5,100..700&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

:root {
  --black: #000;
  --enbig: "Kalnia", serif;
  --en: "Hanken Grotesk", sans-serif;
  --ja: "Shippori Mincho", serif;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  background-color: #fc3636;
}

body {
  color: #363b48;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  height: 100%;
  color: var(--black);
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
  scroll-behavior: auto;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  display: block;
}

a:hover {
  opacity: 0.6;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main,
picture {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: absolute;
  top: 0;
  z-index: 100;
}
.header-logo {
  position: fixed;
  top: 3.5rem;
  left: 4rem;
  max-width: 14.6rem;
  z-index: 100;
}
@media screen and (max-width: 834px) {
  .header-logo {
    top: 0.95rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Hamburger menu */
.gnav {
  position: fixed;
  top: 4rem;
  right: 3.6rem;
  z-index: 100;
  font-size: 1.4rem;
  font-family: var(--en);
}
@media screen and (max-width: 834px) {
  .gnav {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100dvh;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    pointer-events: none;
    align-items: stretch;
    overflow-y: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.gnav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
}
@media screen and (max-width: 834px) {
  .gnav-list {
    color: #fff;
    font-size: 2.2rem;
    width: 90%;
    margin: 0 auto;
  }
}
.gnav-item {
  margin-bottom: 1em;
}
@media screen and (max-width: 834px) {
  .gnav-item {
    margin-bottom: 1.4em;
  }
}
@media screen and (min-width: 835px) {
  .gnav-link {
    text-align: right;
  }
}
.gnav-link.-rec {
  transition: all 0.3s ease;
}
@media screen and (max-width: 834px) {
  .gnav-link.-rec:hover {
    opacity: 1;
    color: #000;
    background-color: #fff;
  }
}
@media screen and (max-width: 834px) {
  .gnav-link.-rec {
    display: block;
    max-width: 15.1rem;
    line-height: 4.5rem;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 100vmax;
    -webkit-border-radius: 100vmax;
  }
}

.gnav-item:has(.sub-gnav) {
  position: relative;
}
.gnav-item:has(.sub-gnav) .gnav-link {
  position: relative;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  padding-left: 1.2rem;
}
@media screen and (max-width: 834px) {
  .gnav-item:has(.sub-gnav) .gnav-link {
    padding-left: 0;
    padding-right: 1.5rem;
    margin-left: 0;
    margin-right: auto;
  }
}
.gnav-item:has(.sub-gnav) .gnav-link::before {
  position: absolute;
  content: "＋";
  top: calc(50% - 0.5em);
  left: 0;
  z-index: 1;
  font-size: 1rem;
  transform: all 0.3s ease;
}
@media screen and (max-width: 834px) {
  .gnav-item:has(.sub-gnav) .gnav-link::before {
    left: auto;
    right: 0;
  }
}
.gnav-item:has(.sub-gnav) .gnav-link.open::before {
  content: "－";
}

.sub-gnav {
  position: absolute;
  left: -20rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem;
  background-color: #000;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 834px) {
  .sub-gnav {
    left: 14rem;
    background-color: #fff;
  }
}
@media screen and (max-width: 450px) {
  .sub-gnav {
    padding: 1.5rem;
  }
}
.sub-gnav.open {
  opacity: 1;
  pointer-events: auto;
}
.sub-gnav__item:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (max-width: 450px) {
  .sub-gnav__item:not(:first-of-type) {
    margin-top: 0.5em;
  }
}
.sub-gnav__link {
  position: relative;
  padding-left: 1.2rem;
  color: #fc3636;
  font-size: 1.2rem;
}
.sub-gnav__link::before {
  position: absolute;
  content: "●";
  top: calc(50% - 0.5em);
  left: 0;
  z-index: 1;
  font-size: 0.6rem;
}

/* toggle button */
.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar:nth-child(2) {
  background-color: #fff;
  -webkit-transform: translateY(0.47rem) rotate(-135deg);
  transform: translateY(0.47rem) rotate(-135deg);
}

.toggle.active .toggle__bar:nth-child(3) {
  background-color: #fff;
  -webkit-transform: translateY(-0.47rem) rotate(135deg);
  transform: translateY(-0.47rem) rotate(135deg);
}

.toggle {
  position: fixed;
  bottom: 2rem;
  right: 5%;
  width: 8.4rem;
  height: 3.92rem;
  cursor: pointer;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  z-index: 100;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 834px) {
  .toggle {
    opacity: 1;
    pointer-events: all;
    mix-blend-mode: difference;
  }
}
.toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #fff;
  border-radius: inherit;
  pointer-events: none;
}
.toggle.active {
  border-color: #fc3636;
}
.toggle.active::before {
  border-color: #fc3636;
}
.toggle.active .toggle__title::before {
  content: "Close";
  color: #fc3636;
}
.toggle:hover {
  mix-blend-mode: unset;
  background-color: #000;
}
.toggle:hover::before {
  mix-blend-mode: unset;
  border-color: #000;
}
.toggle:hover .toggle__title::before {
  color: #fc3636;
}
.toggle__title {
  display: block;
  position: relative;
  z-index: 1;
}
.toggle__title::before {
  display: block;
  content: "Menu";
  font-size: 1.7rem;
  font-family: var(--en);
  color: #fff;
}

/***************************

layout/_footer.scss

***************************/
.footer {
  margin-top: 12rem;
  padding-top: 5rem;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 834px) {
  .footer {
    margin-top: 4rem;
  }
}
.footer .c-ttl {
  text-align: center;
}
@media screen and (max-width: 450px) {
  .footer .c-ttl {
    font-size: 1.1rem;
  }
}
.footer-flex {
  margin-top: 9.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .footer-flex {
    margin-top: 5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .footer-flex {
    margin-top: 14.9rem;
    gap: 13.3rem;
  }
}
.footer-logo {
  max-width: 85.3rem;
  width: 60%;
}
@media screen and (max-width: 450px) {
  .footer-logo {
    width: 80%;
  }
}
.footer-rht {
  min-width: 28.5rem;
  max-width: 29rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 1100px) {
  .footer-rht {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .footer-rht {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.footer-rht__logo {
  max-width: 17.9rem;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 834px) {
  .footer-rht__logo {
    margin-right: auto;
  }
}
.footer-copy {
  display: block;
  margin-top: 2rem;
  text-align: right;
  font-size: 1.2rem;
  font-family: var(--en);
  opacity: 0.3;
}

.sitemap {
  margin-top: 27rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10rem;
}
@media screen and (max-width: 834px) {
  .sitemap {
    margin-top: 5.5rem;
    gap: 5rem;
  }
}
@media screen and (max-width: 450px) {
  .sitemap {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem 3rem;
  }
}
.sitemap-list:first-of-type {
  margin-right: 3rem;
}
@media screen and (max-width: 834px) {
  .sitemap-list:first-of-type {
    margin-right: 0;
  }
}
.sitemap-item {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 450px) {
  .sitemap-item {
    font-size: 1.6rem;
  }
}
.sitemap-link {
  font-size: 1.4rem;
  font-family: var(--en);
}
.sitemap-link.-rec {
  width: 10rem;
  line-height: 3rem;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s ease;
}
.sitemap-link.-rec:hover {
  opacity: 1;
  color: #000;
  background-color: #fff;
}
.sitemap-dtl__link {
  position: relative;
  padding-left: 1.2rem;
}
.sitemap-dtl__link::before {
  position: absolute;
  content: "●";
  font-size: 0.6rem;
  top: calc(50% - 0.5em);
  left: 0;
  z-index: 1;
}

/***************************

object/object/project/_fv.scss

***************************/
.top-fv {
  position: relative;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 834px) {
  .top-fv {
    padding-top: 1.7rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    overflow: hidden;
  }
}
.top-fv__fig {
  position: relative;
}
@media screen and (max-width: 834px) {
  .top-fv__fig {
    margin: 0 auto;
    max-width: 90vw;
  }
}
@media screen and (max-width: 600px) {
  .top-fv__fig {
    display: block;
    height: calc(100dvh - 11.5rem);
  }
}
.top-fv__fig img {
  max-height: 90vh;
}
@media screen and (max-width: 834px) {
  .top-fv__fig img {
    max-height: calc(100dvh - 11.5rem);
    aspect-ratio: 690/1100;
    object-fit: cover;
    object-position: center center;
  }
}
@media screen and (max-width: 600px) {
  .top-fv__fig img {
    width: 100%;
    height: 100%;
  }
}
.top-fv__cap {
  position: absolute;
  writing-mode: vertical-rl;
  font-family: var(--en);
  right: calc(-7em - 1.8rem);
  top: 0;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .top-fv__cap {
    color: #f4f4f4;
    font-size: 1.1rem;
    right: -1.4em;
    top: -0.9em;
  }
}
.top-fv__v {
  position: absolute;
  bottom: -4vw;
  right: 0;
  z-index: 2;
  max-width: 74.5rem;
  width: 45vw;
}
@media screen and (max-width: 834px) {
  .top-fv__v {
    width: 90vw;
    right: -10vw;
    bottom: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .top-fv__v {
    bottom: 7rem;
  }
}
.top-fv__v img {
  width: 100%;
}
.top-fv__ttl {
  position: absolute;
  bottom: 0;
  left: 3.3%;
  z-index: 1;
  max-width: 28.6rem;
}
@media screen and (max-width: 834px) {
  .top-fv__ttl {
    left: 5%;
    bottom: 2rem;
    max-width: 23rem;
  }
}

/***************************

object/object/project/_about.scss

***************************/
.top-about {
  margin: 23rem 0 16.8rem;
}
@media screen and (max-width: 834px) {
  .top-about {
    margin: 10rem 0;
  }
}
@media screen and (max-width: 450px) {
  .top-about {
    margin: 5rem 0;
  }
}
.top-about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .top-about__flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
.top-about__ttl {
  min-width: fit-content;
  font-size: 6.2rem;
  font-weight: 400;
  transform: scale(1, 0.9);
  line-height: 1.45;
}
@media screen and (max-width: 834px) {
  .top-about__ttl {
    min-width: auto;
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 450px) {
  .top-about__ttl {
    font-size: 3.8rem;
  }
}
.top-about__ttl .w-harf {
  display: inline-block;
}
.top-about__ttl .w-harf:nth-of-type(odd) {
  margin-left: -0.5em;
}
.top-about__ttl .w-harf:nth-of-type(even) {
  margin-right: -0.5em;
}
@media screen and (min-width: 835px) {
  .top-about__cont {
    max-width: 51rem;
  }
}
.top-about__cont .c-btn {
  margin-top: 4rem;
}
@media screen and (max-width: 834px) {
  .top-about__cont .c-btn {
    margin-top: 3rem;
  }
}

/***************************

object/object/project/_brand.scss

***************************/
.top-brand {
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-brand {
    height: auto;
  }
}
.top-brand__list {
  min-width: fit-content;
  padding-right: 11vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 834px) {
  .top-brand__list {
    padding-right: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 3rem;
  }
}
.top-brand__item {
  height: 100vh;
}
@media screen and (max-width: 834px) {
  .top-brand__item {
    height: auto;
  }
}
.top-brand__item01-img {
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 834px) {
  .top-brand__item01-img {
    height: auto;
    aspect-ratio: 750/860;
  }
}
.top-brand__item01-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 834px) {
  .top-brand__item01-img img {
    object-position: calc(100% + 16vw) center;
  }
}
.top-brand__item02-flex {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
}
.top-brand__item02-cont {
  position: relative;
  width: 64.3vw;
  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;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-cont {
    width: 100%;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: normal;
    padding-top: 6.1rem;
  }
}
.top-brand__item02-cont .c-ttl {
  position: absolute;
  top: 10vh;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-cont .c-ttl {
    position: relative;
    top: auto;
    text-align: center;
  }
}
.top-brand__item02-cont .c-copy {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-cont .c-copy {
    margin: 0 auto;
    font-size: 3.2rem;
  }
}
.top-brand__item02-cont .c-catch {
  font-size: 6rem;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-cont .c-catch {
    margin-left: 5%;
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.1);
  }
}
.top-brand__item02-btm {
  position: absolute;
  left: 4rem;
  bottom: 2.4rem;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-btm {
    position: relative;
    left: auto;
    bottom: auto;
  }
}
.top-brand__item02-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.9rem;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  font-family: var(--en);
}
@media screen and (max-width: 834px) {
  .top-brand__item02-txt {
    margin-left: 5%;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.7rem;
  }
}
.top-brand__item02-txt small {
  margin-bottom: 0.4em;
  display: inline-block;
  font-size: 2rem;
  writing-mode: sideways-rl;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-txt small {
    margin-bottom: 0;
    font-size: 1.7rem;
    writing-mode: horizontal-tb;
  }
}
.top-brand__item02-img {
  width: 35.7vw;
  height: 100vh;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-img {
    width: 100vw;
    height: auto;
    aspect-ratio: 75/50;
  }
}
.top-brand__item02-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 834px) {
  .top-brand__item02-img img {
    aspect-ratio: 75/50;
  }
}
.top-brand__item-flex {
  min-width: 140rem;
  width: 103vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .top-brand__item-flex {
    min-width: auto;
    width: 100vw;
    height: auto;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-brand__item-cont {
  width: 35.7vw;
  min-width: 45rem;
  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;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 834px) {
  .top-brand__item-cont {
    padding: 7.3rem 0 6.7rem;
    width: 100vw;
    min-width: auto;
  }
}
.top-brand__item-cont .c-catch {
  margin: 1rem 0 4rem;
  font-size: 6rem;
}
@media screen and (max-width: 834px) {
  .top-brand__item-cont .c-catch {
    font-size: 4.5rem;
    margin-bottom: 2rem;
  }
}
.top-brand__item-cont .c-btn {
  margin-top: 3.5rem;
}
@media screen and (max-width: 834px) {
  .top-brand__item-cont .c-btn {
    margin-top: 5.2rem;
  }
}
.top-brand__item-sml {
  font-family: var(--en);
  font-weight: 500;
  font-size: 1.4rem;
}
.top-brand__item-rht {
  position: relative;
  height: 74vh;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .top-brand__item-rht {
    margin-top: 0;
    height: auto;
  }
}
.top-brand__item-img {
  display: block;
  width: 100%;
  height: auto;
}
.top-brand__item-img:first-of-type {
  max-width: 63rem;
  width: 38vw;
  height: 100%;
}
@media screen and (max-width: 834px) {
  .top-brand__item-img:first-of-type {
    max-width: 100%;
    width: 90vw;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 1;
  }
}
.top-brand__item-img:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.top-brand__item-img:nth-of-type(2) {
  max-width: 18rem;
  width: 13vw;
  aspect-ratio: 1;
  margin: -22vh 0 0 4.3vw;
}
@media screen and (max-width: 834px) {
  .top-brand__item-img:nth-of-type(2) {
    display: none;
  }
}
.top-brand__item-img:last-of-type {
  max-width: 34rem;
  width: 23vw;
  margin: 35vh 0 0 -6vw;
  aspect-ratio: 340/235;
}
@media screen and (min-height: 800px) {
  .top-brand__item-img:last-of-type {
    margin-top: 30vh;
  }
}
@media screen and (max-width: 834px) {
  .top-brand__item-img:last-of-type {
    display: none;
  }
}
.top-brand__item:last-of-type {
  margin-left: 10vw;
}
@media screen and (max-width: 834px) {
  .top-brand__item:last-of-type {
    margin-left: 0;
  }
}

/***************************

object/object/project/_person.scss

***************************/
.top-person {
  padding: 12rem 0 13rem;
  background-color: #dbd6cf;
}
@media screen and (max-width: 834px) {
  .top-person {
    padding: 5rem 0;
  }
}
.top-person__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .top-person__flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-person__cont {
  min-width: 30rem;
}
@media screen and (max-width: 1100px) {
  .top-person__cont {
    min-width: auto;
  }
}
.top-person__cont .c-catch {
  margin: 3rem 0 0.5rem;
}
.top-person__cont .c-copy {
  margin: 9rem 0 4rem;
}
@media screen and (max-width: 834px) {
  .top-person__cont .c-copy {
    margin: 3rem 0 1rem;
  }
}
.top-person__cont .c-btn {
  margin-top: 6rem;
}
@media screen and (max-width: 834px) {
  .top-person__cont .c-btn {
    margin-top: 3rem;
  }
}
.top-person__list {
  max-width: 110rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 1100px) {
  .top-person__list {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .top-person__list {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
}
.top-person__ttl {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-family: var(--en);
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  .top-person__ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .top-person__img img {
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
  }
}

/***************************

object/object/project/_producer.scss

***************************/
.top-producer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.5rem;
}
@media screen and (max-width: 1100px) {
  .top-producer__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-producer__flex {
    gap: 2rem;
  }
}
.top-producer__img {
  max-width: 100rem;
  width: 74%;
}
@media screen and (max-width: 1100px) {
  .top-producer__img {
    max-width: 100%;
    width: 100%;
  }
}
.top-producer__cont {
  position: relative;
  max-width: 58rem;
  width: 40%;
  padding: 3.5rem 0;
}
@media screen and (max-width: 1420px) {
  .top-producer__cont {
    width: 50%;
  }
}
@media screen and (max-width: 1260px) {
  .top-producer__cont {
    width: 60%;
  }
}
@media screen and (max-width: 1100px) {
  .top-producer__cont {
    max-width: 100%;
    width: 90vw;
    margin: 0 auto;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-producer__cont {
    padding-top: 5rem;
  }
}
.top-producer__cont .c-catch__s {
  font-size: 1.4rem;
}
.top-producer__cont-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .top-producer__cont-flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-producer__cont-flex .c-txt {
  margin-top: 2.5rem;
  max-width: 38.5rem;
  width: calc(100% - 13rem);
}
@media screen and (max-width: 1200px) {
  .top-producer__cont-flex .c-txt {
    margin-top: 0;
  }
}
@media screen and (max-width: 1100px) {
  .top-producer__cont-flex .c-txt {
    max-width: 100%;
  }
  .top-producer__cont-flex .c-txt br {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .top-producer__cont-flex .c-txt {
    width: 100%;
  }
}
.top-producer__cont-flex .c-txt span {
  display: inline-block;
  margin-right: -0.5em;
}
.top-producer__btm {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .top-producer__btm {
    position: relative;
    margin-top: 5rem;
    bottom: auto;
  }
  .top-producer__btm .c-copy {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 834px) {
  .top-producer__btm {
    margin-top: 3rem;
  }
}

/***************************

object/object/project/_recruit.scss

***************************/
.top-rec {
  position: relative;
  overflow: hidden;
  border: 1rem solid #e9e9e9;
  height: 100vh;
}
@media screen and (max-width: 834px) {
  .top-rec {
    height: auto;
    aspect-ratio: 700/934;
  }
}
.top-rec__para {
  position: absolute;
  inset: 0;
  display: block;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  z-index: 1;
}
.top-rec__para img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.top-rec .c-ttl {
  position: absolute;
  top: 5vh;
  left: 5%;
  z-index: 2;
}
.top-rec__cont {
  position: absolute;
  bottom: 4vh;
  left: 5%;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .top-rec__cont {
    width: 90%;
  }
}
@media screen and (min-width: 835px) {
  .top-rec__cont .c-copy {
    font-size: 4.2rem;
  }
}
.top-rec__cont .c-txt {
  margin-top: 1rem;
}
.top-rec__catch {
  position: absolute;
  z-index: 2;
  top: 5vw;
  right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
  writing-mode: vertical-rl;
  height: 90vw;
}
@media screen and (max-width: 450px) {
  .top-rec__catch {
    top: 8rem;
    right: auto;
    left: 5%;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    writing-mode: horizontal-tb;
  }
}
.top-rec__catch .c-catch {
  margin-right: -0.3em;
  font-size: clamp(0rem, 8vw, 16rem);
}
@media screen and (max-width: 600px) {
  .top-rec__catch .c-catch {
    font-size: 5rem;
  }
}
@media screen and (max-width: 450px) {
  .top-rec__catch .c-catch {
    margin-right: auto;
    font-size: 20vw;
    font-weight: 500;
  }
}
.top-rec__catch .c-catch__s {
  text-align: right;
}
@media screen and (max-width: 450px) {
  .top-rec__catch .c-catch__s {
    text-align: left;
    font-size: 1.7rem;
  }
  .top-rec__catch .c-catch__s br {
    display: none;
  }
}

/***************************

object/object/project/_news.scss

***************************/
.top-news {
  margin-top: 10rem;
}
@media screen and (max-width: 834px) {
  .top-news {
    margin-top: 5rem;
  }
}
.top-news__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .top-news__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-news__ttl {
  min-width: fit-content;
}
@media screen and (max-width: 834px) {
  .top-news__ttl .c-catch__s {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 410px) {
  .top-news__ttl .c-catch__s {
    font-size: 1.8rem;
  }
}
.top-news__ttl .c-catch {
  font-size: 8rem;
}
@media screen and (max-width: 834px) {
  .top-news__ttl .c-catch {
    font-size: 6rem;
  }
}
@media screen and (max-width: 410px) {
  .top-news__ttl .c-catch {
    font-size: 4rem;
  }
}
.top-news__cont {
  max-width: 90rem;
  width: 60%;
}
@media screen and (max-width: 1200px) {
  .top-news__cont {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.top-news__cont .c-btn {
  display: block;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .top-news__cont .c-btn {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-news__cont .c-btn {
    margin-top: 2rem;
  }
}
.top-news__box {
  margin-top: 3.6rem;
}
@media screen and (max-width: 1200px) {
  .top-news__box {
    margin-top: 0;
  }
}
.top-news__link {
  display: block;
  padding: 3rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  border-top: 1px solid #000;
}
@media screen and (max-width: 834px) {
  .top-news__link {
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 450px) {
  .top-news__link {
    padding: 1.5rem 0.5rem;
    gap: 1rem;
  }
}
.top-news__link:last-of-type {
  border-bottom: 1px solid #000;
}
.top-news__link:hover {
  opacity: 1;
}
.top-news__link:hover .top-news__thum img {
  transform: scale(1.1);
}
.top-news__link:hover .top-news__arw {
  transform: translateX(1rem);
}
.top-news__link .top-news__ttl {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 450px) {
  .top-news__link .top-news__ttl {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.top-news__link .top-news__ttl p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3.5em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}
.top-news__fig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  width: 85%;
}
@media screen and (max-width: 834px) {
  .top-news__fig {
    gap: 2rem;
    width: calc(100% - 3.8rem);
  }
}
@media screen and (max-width: 450px) {
  .top-news__fig {
    width: calc(100% - 2.8rem);
    gap: 1rem;
  }
}
.top-news__thum {
  max-width: 20rem;
  overflow: hidden;
  aspect-ratio: 200/150;
}
@media screen and (max-width: 834px) {
  .top-news__thum {
    max-width: 15rem;
  }
}
@media screen and (max-width: 450px) {
  .top-news__thum {
    max-width: 10rem;
  }
}
.top-news__thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.3s ease;
}
.top-news__cap {
  width: calc(100% - 23rem);
}
@media screen and (max-width: 834px) {
  .top-news__cap {
    width: calc(100% - 17rem);
  }
}
@media screen and (max-width: 450px) {
  .top-news__cap {
    width: calc(100% - 11rem);
  }
}
.top-news__date {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-family: var(--en);
}
@media screen and (max-width: 450px) {
  .top-news__date {
    margin-top: 1rem;
  }
}
.top-news__arw {
  transition: all 0.3s ease;
}
.top-news__arw .material-symbols-outlined {
  font-size: 1.8rem;
}

/***************************

object/component/_heading.scss

***************************/
.c-ttl {
  font-family: var(--en);
  font-size: 1.4rem;
  font-weight: 300;
}

.c-copy {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  transform: scale(1, 0.9);
}
@media screen and (max-width: 834px) {
  .c-copy {
    font-size: 2.2rem;
  }
}

.c-catch {
  font-variation-settings: "wdth" 112.5;
  font-family: var(--enbig);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}
.c-catch__s {
  font-family: var(--en);
  font-weight: 600;
  font-size: 3rem;
}

/***************************

object/component/_box.scss

***************************/
.inner {
  max-width: 150rem;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .inner {
    width: 90%;
  }
}
.inner.-s {
  max-width: 120rem;
}
.inner.-left {
  max-width: 159rem;
  width: 95%;
  margin-left: 0;
}
@media screen and (max-width: 1100px) {
  .inner.-left {
    margin-left: auto;
    width: 100%;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 834px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp {
    display: inline-block;
  }
}

@media screen and (max-width: 450px) {
  .sp-no {
    display: none;
  }
}

.radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.radius60 {
  border-radius: 60px;
  -webkit-border-radius: 60px;
}
@media screen and (max-width: 500px) {
  .radius60 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

.radius100vmax {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.pc-fv {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  top: 0;
  left: 0;
  background: url(../img/common/pc-fv.webp) no-repeat center center/cover;
}
.pc-fv__nav {
  width: calc((100% - 50rem) / 2);
  height: 100vh;
  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;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  font-size: 2.1rem;
}
@media screen and (max-width: 450px) {
  .pc-fv__nav {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 900px) {
  .pc-fv__nav {
    display: none;
  }
}
.pc-fv__nav-link {
  position: relative;
  display: block;
  margin-bottom: 1.5em;
  padding-left: 1em;
}
.pc-fv__nav-link::before {
  position: absolute;
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  top: calc(50% - 0.5rem);
  left: 0;
  z-index: 1;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.pc-fv__nav-link.current::before {
  background-color: #a09472;
}
.pc-fv__rgt {
  padding: 0 2rem;
  width: calc((100% - 50rem) / 2);
  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;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .pc-fv__rgt {
    display: none;
  }
}
.pc-fv__rgt-box {
  max-width: 34rem;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 5rem 2.5rem;
  background: radial-gradient(circle, rgba(78, 93, 105, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
@media screen and (max-width: 1320px) {
  .pc-fv__rgt-box {
    padding: 3.5rem 2rem 2.5rem;
  }
}
.pc-fv__rgt-box .c-btn01 {
  margin-top: 1.5rem;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}
.pc-fv__rgt .c-tb {
  margin-top: 2.4rem;
  max-width: 34rem;
}
.pc-fv__btm {
  position: absolute;
  width: 98%;
  bottom: -1.5vw;
  left: 1%;
  z-index: 0;
  font-size: 9.5vw;
  color: #f8f8e9;
  opacity: 0.1;
  text-align: center;
  mix-blend-mode: overlay;
}

.fv-swiper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
.fv-swiper .swiper-slide:nth-of-type(1) .fv-swiper__img {
  background-image: url(../img/common/fv-slide01.webp);
}
@media screen and (max-width: 900px) {
  .fv-swiper .swiper-slide:nth-of-type(1) .fv-swiper__img {
    background-position: left 60% center;
  }
}
.fv-swiper .swiper-slide:nth-of-type(2) .fv-swiper__img {
  background-image: url(../img/common/fv-slide02.webp);
}
.fv-swiper .swiper-slide:nth-of-type(3) .fv-swiper__img {
  background-image: url(../img/common/fv-slide03.webp);
}
.fv-swiper .swiper-slide:nth-of-type(4) .fv-swiper__img, .fv-swiper .swiper-slide:nth-of-type(5) .fv-swiper__img {
  background-image: url(../img/common/fv-slide04.webp);
}
.fv-swiper .swiper-slide.swiper-slide-active .fv-swiper__img {
  animation: zoomDown 8s linear forwards;
}
.fv-swiper__img {
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@keyframes zoomDown {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.pc-nav__link {
  position: relative;
  margin-top: 4rem;
  padding-left: 4rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .pc-nav__link {
    font-size: 1.6rem;
  }
}
.pc-nav__link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 25px;
  aspect-ratio: 25/7;
  transform: translateY(-50%);
  z-index: 1;
  background: url(../img/common/ico-wave.webp) no-repeat center center/cover;
  opacity: 0;
}
.pc-nav__link::after {
  position: absolute;
  content: "";
  width: 130%;
  height: 1px;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
}
.pc-nav__link.now::before, .pc-nav__link.now::after {
  opacity: 1;
}

.c-tb {
  width: 100%;
}
.c-tb caption {
  margin-top: 2rem;
  caption-side: bottom;
  text-align: left;
}
.c-tb caption .f12 {
  display: block;
}
.c-tb th {
  font-weight: 400;
}
.c-tb td {
  text-align: center;
  font-weight: 400;
}
.c-tb thead {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.c-tb thead th:first-of-type {
  padding: 1rem 0.5rem;
}
.c-tb tbody {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.c-tb tbody th {
  width: 11rem;
  padding: 1.5rem 0.8rem;
}
.c-tb tbody tr:last-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.sp-cont {
  position: relative;
  max-width: 50rem;
  margin: 8.5rem auto 0;
  border: 1px solid #fff;
}
@media screen and (max-width: 550px) {
  .sp-cont {
    margin-top: 0;
    border-width: 0;
  }
}
.sp-cont::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.2);
  mix-blend-mode: screen;
}
@media screen and (max-width: 550px) {
  .sp-cont::before {
    display: none;
  }
}
.sp-cont__fix {
  position: fixed;
  max-width: 410px;
  padding: 0 5px;
  bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 901px) {
  .sp-cont__fix {
    display: none;
  }
}
.sp-cont__fix.is-show {
  opacity: 1;
  pointer-events: fill;
}

.rht-fix {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  margin: 0 0 0 auto;
  padding: 2.4rem 1.3rem;
  font-size: 1.6rem;
  color: #9c7838;
  text-align: center;
  background-color: #fff;
  writing-mode: vertical-rl;
  border-radius: 0.5rem 0 0 0.5rem;
  -webkit-border-radius: 0.5rem 0 0 0.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 450px) {
  .rht-fix {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 550px) {
  .rht-fix {
    opacity: 1;
    pointer-events: all;
  }
}
.rht-fix.is-show {
  opacity: 1;
  pointer-events: all;
}

.btm-fix.c-btn01 {
  position: fixed;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 28rem;
  width: 100%;
  padding: 1.5rem;
  padding-bottom: 1.5rem;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 550px) {
  .btm-fix.c-btn01 {
    opacity: 1;
    pointer-events: all;
  }
}
.btm-fix.c-btn01.is-show {
  opacity: 1;
  pointer-events: all;
}
.btm-fix.c-btn01 .f16 {
  margin-bottom: 1.1rem;
  display: block;
}

.top-main {
  position: relative;
  z-index: 2;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 550px) {
  .top-main {
    padding-left: 0;
    padding-right: 0;
  }
}

.top-c__top {
  position: relative;
}
.top-c__top .c-hg {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
}
.top-c__top .c-ttl {
  color: #acada1;
}
.top-c__top .c-catch {
  color: #f8f8e9;
}

.top-sec__top-img {
  position: relative;
  top: -1.2rem;
  display: block;
  width: 100%;
  margin-bottom: 5.4rem;
  overflow: hidden;
}
.top-sec__top-img img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 1.1rem 1.1rem 0 0;
  -webkit-border-radius: 1.1rem 1.1rem 0 0;
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  opacity: 1;
  animation: fadeUpAnime 0.5s ease-in-out;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeImgTrigger {
  opacity: 0;
}

.fadeImg {
  opacity: 1;
  animation: zoomDown 0.5s ease;
}

.imgAnime {
  position: relative;
}
.imgAnime::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
  animation: imgAnime 0.5s ease;
}
.imgAnime.start::before {
  animation: txtAnime 0.5s ease;
}

@keyframes imgAnime {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn {
  position: relative;
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-family: var(--en);
  font-size: 1.4rem;
  border: 1px solid #000;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media screen and (max-width: 834px) {
  .c-btn {
    padding: 1.15rem 2.2rem;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}
.c-btn:hover {
  opacity: 1;
  color: #fff;
  border-color: transparent;
}
.c-btn:hover::before {
  transform: scale(1);
}
.c-btn:hover .c-btn__txt .c-btn__txt-hover {
  transform: translateY(0) rotateX(0) translateZ(0);
  opacity: 1;
  filter: blur(0);
  transition-delay: 0s;
}
.c-btn:hover .c-btn__txt .c-btn__txt-main {
  transform: translateY(-100%) rotateX(-35deg) translateZ(-40px) scale(0.92);
  opacity: 0;
  filter: blur(1px);
  transition-delay: 0s;
}
.c-btn:hover.-wht {
  border-color: transparent;
}
.c-btn:hover.-red {
  color: #fff;
  border-color: transparent;
}
.c-btn:hover.-red::before {
  background-color: #fc3636;
}
.c-btn:not(:hover) .c-btn__txt .c-btn__txt-hover,
.c-btn:not(:hover) .c-btn__txt .c-btn__txt-main {
  transition: none !important;
}
.c-btn__txt {
  position: relative;
  display: block;
  line-height: 1;
  perspective: 80rem;
  overflow: hidden;
  height: 1em;
}
.c-btn__txt > span {
  display: block;
  will-change: transform, opacity, filter;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
  text-align: center;
}
.c-btn__txt-main {
  transform: translateY(0);
  opacity: 1;
}
.c-btn__txt-hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(100%) rotateX(15deg) translateZ(20px);
  opacity: 0;
  filter: blur(0.4px);
}
.c-btn.-wht {
  border-color: #fff;
}
.c-btn.-wht::before {
  background-color: #fff;
}
.c-btn.-wht .c-btn__txt-hover {
  color: #000;
}
.c-btn.-red {
  color: #fc3636;
  border-color: #fc3636;
}

/***************************

object/utility/_background.scss

***************************/
.bg-white {
  background-color: #fff;
}

.bg-dark-pink {
  background-color: #f2e7e4;
}

.bg-gold {
  background-color: #a09472;
}

.bg-db {
  color: #f8f8e9;
  background-color: #0b1c25;
}
.bg-db .c-ttl {
  color: #acada1;
}

/***************************

object/utility/_link.scss

***************************/
.c-link {
  padding-bottom: 0.5rem;
  font-size: 1.7rem;
}
.c-link span {
  transition: background-size 0.3s ease;
  background-image: linear-gradient(rgba(161, 164, 156, 0.7), rgba(161, 164, 156, 0.7));
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  -webkit-box-decoration-break: slice;
  box-decoration-break: slice;
}
.c-link:hover {
  opacity: 1;
}
.c-link:hover span {
  background-size: 0 1px;
  background-position: bottom right;
}

/***************************

object/utility/_text.scss

***************************/
.c-txt {
  font-size: 1.5rem;
  line-height: 1.86;
  letter-spacing: -0.2rem;
}
@media screen and (max-width: 450px) {
  .c-txt {
    font-size: 1.3rem;
  }
}

.c-txt02 {
  font-size: 1.7rem;
  line-height: 1.6;
}

.c-txt__undline {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.c-bg__txt {
  width: fit-content;
  margin: 0 auto;
  padding: 0.3rem 0.5rem 0.5rem;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
}
.c-bg__txt.bg-gold {
  color: #fff;
}

.txt-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.txt-ellipsis02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3.5em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}

.txt-anime {
  position: relative;
  width: fit-content;
}
.txt-anime::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #000;
}
.txt-anime.start::before {
  animation: txtAnime 0.5s ease;
}

@keyframes txtAnime {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.f8 {
  font-size: 8px;
}

.f12 {
  font-size: 1.2rem;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .f16 {
    font-size: 1.5rem;
  }
}

.f17 {
  font-size: 1.7rem;
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f20 {
  font-size: 2rem;
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 450px) {
  .f21 {
    font-size: 4.7vw;
  }
}

.f22 {
  font-size: 2.2rem;
}

.f24 {
  font-size: 2.4rem;
}

.f25 {
  font-size: 2.5rem;
}

.f27 {
  font-size: 2.7rem;
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 450px) {
  .f28 {
    font-size: 6vw;
  }
}

.f31 {
  font-size: 3.1rem;
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 550px) {
  .f32 {
    font-size: 5.4vw;
  }
}

.f35 {
  font-size: 3.5rem;
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

.f45 {
  font-size: 4.5rem;
}
@media screen and (max-width: 500px) {
  .f45 {
    font-size: 9vw;
  }
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f50 {
  font-size: 5rem;
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 450px) {
  .f56 {
    font-size: 12vw;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 834px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.fc-blue {
  color: #08a6e5;
}

.fc-light-blue {
  color: #6bb7d5;
}

.fc-wht {
  color: #fff;
}

.fc-gold {
  color: #80765a;
}

.fc-red {
  color: #fc3636;
}

.lh-1_3 {
  line-height: 1.3;
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.lh-2 {
  line-height: 2;
}

.lh-2_2 {
  line-height: 2.2;
}

.lh-2_5 {
  line-height: 2.5;
}
@media screen and (max-width: 450px) {
  .lh-2_5 {
    line-height: 1.8;
  }
}

.lh-2_7 {
  line-height: 2.7;
}
@media screen and (max-width: 450px) {
  .lh-2_7 {
    line-height: 2;
  }
}

.bg-pink_txt {
  display: block;
  width: fit-content;
  padding: 1rem;
  color: #fff;
  background-color: #cd356f;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  writing-mode: vertical-rl;
}

/***************************

object/utility/_font.scss

***************************/
.en {
  font-family: "Hanken Grotesk", sans-serif;
}

.enbig {
  font-family: "Kalnia", serif;
}