@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif&display=swap");
:root {
  --text-color: #222;
  --wh: #fff;
  --bk: #222;
  --gray: #dddcda;
}

/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-weight: 400;
}

a,
button {
  cursor: revert;
  padding: 0;
}

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

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ====================================================
HTML
==================================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.9444444444;
  line-height: 2;
  background: #fff;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 499px) {
  body {
    font-size: 13px;
  }
}

.inner {
  width: 90%;
  max-width: 1366px;
  height: 100%;
  margin: 0 auto;
}
.inner.narrow {
  max-width: 1110px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease-in-out;
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
LOADING
==================================================== */
/* ====================================================
Animation
==================================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.zoom-in.active {
  animation: zoom-in 1s ease-out forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(9%);
    opacity: 1;
  }
}
.bounce-in.active {
  animation: bounceIn 1.5s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
  }
  60% {
    transform: translateY(-10%);
  }
  80% {
    transform: translateY(5%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInOnLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  animation: fadeInOnLoad 0.8s ease-out forwards;
  animation-delay: 0.3s;
  /* 遅延を付けたい場合:
  */
}

.fade-in-text span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.puluShake {
  animation: puluShake 2s infinite;
}

@keyframes puluShake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  1% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  2% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  3% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  4% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  /* 残りの時間は停止 */
}
.text-wave,
.interview__ttl-title,
.about__ttl-title-s {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.text-wave .char,
.interview__ttl-title .char,
.about__ttl-title-s .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.text-wave .char.is-visible,
.interview__ttl-title .char.is-visible,
.about__ttl-title-s .char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 回転アニメーション */
.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  white-space: nowrap;
}
.rolle-effect:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

.link-more:hover .rolle-effect {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

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

.rotate-text:hover {
  animation: rotate 0.5s forwards;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
/* 回転アニメーション 2D */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 回転アニメーション 3D */
@keyframes spin3D {
  0% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 360deg);
  }
}
.text-hover {
  display: inline-block;
  cursor: pointer;
  perspective: 400px;
  /* 3D回転をきれいに見せるため（任意） */
}
.text-hover .char {
  display: inline-block;
  transform-origin: center center;
  /* 回転の中心を文字の中央に */
  /* backface-visibility: hidden; // 裏面非表示（任意） */
  /* アニメーション関連のプロパティはJSで設定 */
}

.fx-talk-pop {
  animation: fx-talk-pop 0.6s steps(1) 0s forwards, fx-talk-pop-loop 2.3s steps(1) 0.6s infinite;
}

.fx-talk-pop-loop {
  animation: fx-talk-pop-loop 2.3s steps(1) 0s infinite;
}

@keyframes fx-talk-pop {
  0% {
    transform: scale(0, 0);
  }
  60% {
    transform: scale(0.6, 0.6);
  }
  80% {
    transform: scale(1.04, 1.04);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes fx-talk-pop-loop {
  0% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(0.96, 0.96);
  }
  95% {
    transform: scale(1.02, 1.02);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fx-yurayura {
  animation: fx-yurayura 0.6s steps(2) 0s alternate infinite;
}

.fx-yurayura-reverse {
  animation: fx-yurayura 0.6s steps(2) 0s alternate-reverse infinite;
}

@keyframes fx-yurayura {
  0% {
    transform: rotate(-10deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  80% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.fx-hangul {
  --hangle-move: 0.53333vw;
  --hangle-move2: -0.53333vw;
  animation: hangul 0.6s steps(1) 0s infinite;
}

@keyframes hangul {
  0% {
    transform: translate(var(--hangle-move), 0);
  }
  50% {
    transform: translate(var(--hangle-move2), 0);
  }
  100% {
    transform: translate(var(--hangle-move2), 0);
  }
}
.fx-logo-scale-in {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s !important;
}

/* テキストウェーブ */
@keyframes slideTextWave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* リンクhover 下線アニメーション */
.link--view-more {
  display: block;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 200px;
  position: relative;
  z-index: 0;
}
.link--view-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--wh);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}
.link--view-more::after {
  background: var(--wh);
}
.link--view-more::after, .link--view-more:hover::before {
  transition: transform 0.4s ease, background-color 0.4s ease;
  transform-origin: 100% 50%;
  transform: scaleX(0);
}
.link--view-more:hover::after {
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}

/* リンクhover 下線アニメーション2 */
.link-item {
  display: inline-block;
  position: relative;
}
.link-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--wh);
  transition: width 0.3s ease;
}
.link-item:hover::after {
  width: 100%;
}

/* 一文字ずつ表示 */
.letter span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.letter.animate span {
  opacity: 1;
  transform: translateY(0);
}

.sake {
  animation: puluShake 2s infinite;
}

@keyframes puluShake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  1% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  2% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  3% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  4% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* クリップパスでフェードイン */
.fadein_txt {
  width: -moz-fit-content;
  width: fit-content;
  /* opacity: 0; */
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.fadein_txt.show {
  clip-path: polygon(0 0, 100% 0, calc(100% + 9rem) 100%, 0% 100%);
  transition: clip-path 1.2s ease-out;
}

/* ====================================================
Module
==================================================== */
/* ====================================================
Header
==================================================== */
.header {
  background-color: transparent;
  height: 10rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.5rem 5rem;
}
@media screen and (max-width: 834px) {
  .header {
    height: 8rem;
    padding: 1.5rem 1.5rem;
  }
}
.header__logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__logo-img {
  width: 100%;
  max-width: 12.6rem;
}
@media screen and (max-width: 834px) {
  .header__logo-img {
    max-width: 10vw;
    min-width: 7rem;
  }
}
.header__logo.active {
  z-index: 101;
}
.header__subtitle {
  font-size: 1.4rem;
  font-family: "Figtree", sans-serif;
  color: var(--text-color);
  text-align: center;
  margin-top: 0.5rem;
}
.header__btn {
  width: 4.5rem;
  height: 1.7rem;
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 3.3rem;
  transform: translateY(-50%);
  z-index: 101;
}
@media screen and (max-width: 834px) {
  .header__btn {
    display: flex;
  }
}
@media screen and (max-width: 640px) {
  .header__btn {
    right: 2rem;
    width: 4rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .header__btn {
    right: 2rem;
    width: 3.5rem;
    height: 1.3rem;
  }
}
.header__btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.header__btn.active span {
  transform-origin: center center;
  background-color: var(--wh);
}
.header__btn.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
  transition: all 0.3s ease-in-out;
}
.header__btn.active span:nth-child(2) {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.header__btn.active span:last-child {
  transform: rotate(-45deg) translate(-5px, 5px);
  transition: all 0.3s ease-in-out;
}
.header .nav-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  display: none;
}
@media screen and (max-width: 834px) {
  .header .nav-bg {
    display: block;
  }
}
.header .nav-bg.active {
  opacity: 1;
  z-index: 98;
  transition: all 0.3s ease-in-out;
  pointer-events: auto;
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--text-color);
  font-size: 1.6rem;
  font-family: "Figtree", sans-serif;
  line-height: 1.5;
  position: relative;
  z-index: 100;
  padding: 0;
  transition: transform 0.3s ease;
}
.header__nav.scroll-hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 834px) {
  .header__nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #7f7e7d;
    color: var(--wh);
    font-size: 3.2rem;
    line-height: 2;
    position: absolute;
    top: 0;
    right: -100%;
    padding: 0;
    transition: all 0.6s;
  }
  .header__nav.scroll-hide {
    transform: none;
  }
  .header__nav.active {
    right: 0;
    transition: all 0.6s;
  }
}
.header__nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  height: 10rem;
}
.header__nav-list.--sub {
  display: none;
}
@media screen and (max-width: 834px) {
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    height: auto;
  }
  .header__nav-list.--sub {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 3rem);
    font-size: clamp(1.4rem, 1vw + 1.6rem, 1.6rem);
    margin-top: clamp(3rem, 3.5vw, 5rem);
  }
}
.header__nav-item {
  position: relative;
}
.header__nav-item a {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s;
  font-family: "Figtree", sans-serif;
  padding: 0;
  width: auto;
  border: none;
}
@media screen and (max-width: 834px) {
  .header__nav-item a {
    color: var(--wh);
  }
}
.header__nav-item .arrow-down {
  font-size: 1.3rem;
  margin-left: 3px;
  margin-top: -4px;
}
@media screen and (max-width: 834px) {
  .header__nav-item .arrow-down {
    margin-top: -1px;
  }
}
.header__nav-item:hover .header__sub-menu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.header__sub-menu {
  font-size: 1.3rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding-top: 1rem;
}
@media screen and (max-width: 834px) {
  .header__sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transition: none;
  }
}
.header__sub-menu .link-more {
  height: 2.5rem;
}
@media screen and (min-width: 835px) {
  .header__sns {
    display: none;
  }
}
.header__sns-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--wh);
  font-size: 1.6rem;
  font-family: "Instrument Serif", serif;
  margin-top: 3rem;
}
.header__sns-icon {
  display: inline-block;
  max-width: 1.4rem;
  height: 1.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 834px) {
  .header .rolle-effect {
    text-shadow: 0 -1.5em 0 #ffffff, 0 0 0 #ffffff;
  }
  .header .rolle-effect:hover {
    text-shadow: 0 0 0 #ffffff, 0 1.5em 0 #ffffff;
  }
}

/* ====================================================
Footer
==================================================== */
.footer {
  background-color: var(--gray);
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 7rem 0 9rem;
  }
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 6.5rem 0 8rem;
  }
}
@media screen and (max-width: 499px) {
  .footer {
    padding: 6rem 0 8rem;
  }
}
@media screen and (max-width: 376px) {
  .footer {
    padding: 5.5rem 0 8rem;
  }
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer__logo {
  max-width: 12.6rem;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2.5rem 14rem;
  justify-items: start;
}
@media screen and (max-width: 1200px) {
  .footer__nav-list {
    gap: 2.5rem 10vw;
  }
}
.footer__nav-item {
  position: relative;
}
.footer__nav-item .arrow-down {
  font-size: 1.3rem;
  margin-left: 3px;
  margin-top: 2px;
}
.footer__nav-item:hover .footer__sub-menu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.footer__sub-menu {
  font-size: 1.2rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding-top: 1.5rem;
}
@media screen and (max-width: 834px) {
  .footer__sub-menu {
    font-size: 1.1rem;
    position: static;
    visibility: visible;
    opacity: 1;
    transition: none;
  }
}
.footer__sub-menu .link-more {
  height: 2.5rem;
}
.footer__sub-item {
  height: 2rem;
}
.footer__copyright {
  font-size: 1.2rem;
  font-family: "Figtree", sans-serif;
  margin-top: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .footer__copyright {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 640px) {
  .footer__copyright {
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 499px) {
  .footer__copyright {
    margin-top: 2.5rem;
  }
}
.footer__copyright .insta {
  width: 100%;
  max-width: 19px;
  max-height: 19px;
}
.footer__copyright .insta svg {
  width: 100%;
  height: auto;
}
.footer .link-more {
  border: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  font-family: "Figtree", sans-serif;
  line-height: 1;
}

/* ====================================================
ENTRY
==================================================== */
#entry-section {
  scroll-margin-top: 100px;
  margin: 17rem 0 16rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  #entry-section {
    margin: 15rem 0 14rem;
  }
}
@media screen and (max-width: 834px) {
  #entry-section {
    margin: 0 0 12rem;
  }
}
@media screen and (max-width: 640px) {
  #entry-section {
    margin: 0 0 8rem;
  }
}
@media screen and (max-width: 499px) {
  #entry-section {
    margin: 2rem 0 5rem;
  }
}

.entry {
  color: var(--wh);
  position: relative;
  overflow: hidden;
  transition: background-size 1s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry {
    overflow: visible;
  }
}
.entry picture {
  display: block;
  overflow: hidden;
  height: 100%;
}
.entry img {
  transition: transform 1s ease-in-out;
}
@media screen and (max-width: 834px) {
  .entry img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
}
.entry:hover img {
  transform: scale(1.05);
  transition: transform 1s ease-in-out;
}
.entry__wrapper {
  width: 100%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media screen and (max-width: 834px) {
  .entry__wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #7f7e7d;
    position: static;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .entry__wrapper {
    padding: 4rem 3rem;
  }
}
@media screen and (max-width: 376px) {
  .entry__wrapper {
    padding: 3rem 2rem;
  }
}
.entry__title {
  width: 50%;
  margin-left: auto;
  padding-left: 15rem;
}
@media screen and (max-width: 1200px) {
  .entry__title {
    padding-left: 10vw;
  }
}
@media screen and (max-width: 834px) {
  .entry__title {
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
  }
}
.entry__title-heading {
  line-height: 1;
  font-size: 9.6rem;
  margin-left: -0.5rem;
  font-family: "Figtree", sans-serif;
}
@media screen and (max-width: 1200px) {
  .entry__title-heading {
    font-size: 8.6rem;
  }
}
@media screen and (max-width: 834px) {
  .entry__title-heading {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 640px) {
  .entry__title-heading {
    font-size: 4.8rem;
  }
}
.entry__title-text {
  font-family: "Instrument Serif", serif;
  font-size: 3.2rem;
  line-height: 0.8;
}
@media screen and (max-width: 1200px) {
  .entry__title-text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 834px) {
  .entry__title-text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .entry__title-text {
    font-size: 2rem;
  }
}
.entry__title-desc {
  line-height: 1.7777777778;
  margin-top: clamp(1rem, 3vw, 5rem);
}
@media screen and (max-width: 834px) {
  .entry__title-desc {
    margin-top: 3rem;
  }
}
.entry__btn {
  width: 50%;
  margin-left: auto;
  padding-left: 15rem;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .entry__btn {
    padding-left: 10vw;
  }
}
@media screen and (max-width: 834px) {
  .entry__btn {
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
  }
}
.entry .link-more {
  margin-top: clamp(1rem, 3vw, 3.7rem);
  border-color: var(--wh);
  display: inline-flex;
  padding: 1.1rem 2rem 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 834px) {
  .entry .link-more {
    margin: 3rem auto 0;
  }
}
.entry .link-more .text {
  overflow: hidden;
  font-size: 1.4rem;
}
.entry .link-more .icon {
  width: 1rem;
}
.entry .link-more .icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.entry .rolle-effect {
  text-shadow: 0 -1.5em 0 var(--wh), 0 0 0 var(--wh);
}
.entry .rolle-effect:hover {
  text-shadow: 0 0 0 var(--wh), 0 1.5em 0 var(--wh);
}
.entry .link-more:hover .rolle-effect {
  text-shadow: 0 0 0 #ffffff, 0 1.5em 0 #ffffff !important;
}

/* ====================================================
common
==================================================== */
body {
  overflow-x: clip;
}
body.no-scroll {
  overflow-x: hidden;
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Figtree", sans-serif;
}

.loading {
  background-color: var(--wh);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1s ease-in-out 2s forwards;
}
.loading::before {
  content: "";
  background: url(../img/common/logo.svg) no-repeat center center;
  background-size: contain;
  width: 200px;
  height: 200px;
  animation: fadeOut 1s ease-in-out 2s forwards;
}
@media screen and (max-width: 640px) {
  .loading::before {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 499px) {
  .loading::before {
    width: 120px;
    height: 120px;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.header__logo-img svg {
  max-width: 100%;
}
.header__logo-img .cls-1 {
  transition: fill 0.3s ease-out;
}

.header__logo.active .header__logo-img .cls-1 {
  fill: #fff;
  transition: fill 0.3s ease-out;
}

.header__sns-icon svg {
  fill: #fff;
  max-width: 100%;
  height: auto;
}

.cls-1 {
  fill: #fff;
}

/* ====================================================
PAGE TOP
==================================================== */
.page-top__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 18rem;
  height: 18rem;
  border-radius: 100vmax;
  background-color: var(--brown);
  color: var(--wh);
}
.page-top .ja span {
  font-size: 1.3rem;
}
.page-top .en {
  font-size: 3.2rem;
}

/* ====================================================
Breadcrumb
==================================================== */
.breadcrumb {
  position: absolute;
  bottom: 3rem;
  right: 10%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  list-style: none;
  font-size: 1.2rem;
  font-family: "Figtree", sans-serif;
}
@media screen and (max-width: 834px) {
  .breadcrumb {
    bottom: 1.5rem;
  }
}
@media screen and (max-width: 640px) {
  .breadcrumb {
    position: static;
    padding-top: 2rem;
    padding-right: 5%;
  }
}
.breadcrumb-item {
  position: relative;
  color: #999;
}
.breadcrumb-item + .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: #999;
}
/* ====================================================
LINK VIEW
==================================================== */
.link-more {
  border: 1px solid var(--bk);
  padding: 2rem;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 3.5rem;
  font-family: "Instrument Serif", serif;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .link-more {
    padding: 1.5rem 2rem;
  }
}
.link-more .icon {
  width: 1.3rem;
  height: auto;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
.link-more:hover .icon {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* ====================================================
NEWS LINE
==================================================== */
.news-line {
  max-width: 31rem;
  height: 9rem;
  background-color: var(--wh);
  border-radius: 6px;
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  box-shadow: 0px 0px 10px rgba(83, 88, 106, 0.3);
  z-index: 98;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
@media screen and (max-width: 834px) {
  .news-line {
    bottom: 5rem;
  }
}
.news-line .news-line__close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 100vmax;
  background: #363636;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.news-line .news-line__close:hover {
  background: #222;
}
.news-line__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.news-line__icon {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  background-color: #cac7c4;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh);
}
.news-line__title-heading {
  font-size: 1.4rem;
  font-weight: normal;
  padding: 1rem 0;
}
.news-line__text {
  color: #cac7c4;
  font-size: 1.2rem;
  margin-left: 1rem;
}
.news-line.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s linear;
}/*# sourceMappingURL=common.css.map */