@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
:root {
  --wh: #fff;
  --red: #bb000b;
  --text-color: $color-base;
  --bk: #222;
}

@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;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

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

.inner {
  width: 90%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
}
.inner.--1400 {
  max-width: 1400px;
}

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

a {
  text-decoration: none;
  color: #222;
}

/* ====================================================
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;
  }
  60% {
    transform: translateY(-10%);
    opacity: 1;
  }
  80% {
    transform: translateY(5%);
  }
  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);
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.yureru-s {
  animation: yureru-s 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);
}
.rolle-effect:hover {
  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で設定 */
}

/* テキストウェーブ */
@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%;
}

/* 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;
}

/* ====================================================
Module
==================================================== */
/* ====================================================
Header
==================================================== */
.header {
  padding: 2rem 4rem;
}
@media screen and (max-width: 834px) {
  .header {
    padding: 2rem 1rem 1rem;
  }
}
.header-logo {
  width: 100%;
}
.header-logo-img {
  max-width: 311px;
}
@media screen and (max-width: 834px) {
  .header-logo-img {
    max-width: 200px;
  }
}

/* ====================================================
Footer
==================================================== */
.footer {
  background-color: #37363d;
  color: var(--wh);
  height: 370px;
}
@media screen and (max-width: 834px) {
  .footer {
    height: 300px;
  }
}
@media screen and (max-width: 640px) {
  .footer {
    height: 250px;
  }
}
@media screen and (max-width: 499px) {
  .footer {
    height: 200px;
  }
}
@media screen and (max-width: 376px) {
  .footer {
    height: 150px;
  }
}
.footer-wrapper {
  display: flex;
  padding-top: 8.6rem;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 834px) {
  .footer-wrapper {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .footer-wrapper {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 499px) {
  .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }
}
@media screen and (max-width: 376px) {
  .footer-wrapper {
    padding-top: 2rem;
  }
}
.footer-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 499px) {
  .footer-copyright {
    text-align: right;
  }
}
.footer .copyright {
  font-family: "Albert Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
}

/* ====================================================
common
==================================================== */
.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 2s ease-in-out 2s forwards;
}
.loading::before {
  content: "";
  background: url(../img/common/logo.png) no-repeat center center;
  background-size: contain;
  width: 200px;
  height: 200px;
  animation: fadelogoSlideUp 2s ease-in-out 2s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100vh);
  }
}
@keyframes logoSlideUp {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(0.8) translateY(-50px);
  }
}/*# sourceMappingURL=common.css.map */