@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
/* ====================================================
common
==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #8A8B88;
  --green: #6AC643;
  --yellow: #FFD700;
  --footer-bg: #111827;
}

@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: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    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: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

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

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

@media screen and (min-width: 377px) {
  .sp-xs {
    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;
}

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 {
  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: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  isolation: isolate;
  padding: 0;
  margin: 0;
  color: var(--text-color);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.9444444444;
  line-height: 2;
  background: #fff;
  overflow-x: clip;
  background: url("../img/top/particles.svg") repeat-y left top fixed;
  background-size: cover;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 640px) {
  body {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 499px) {
  body {
    font-size: 0.8125rem;
  }
}

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

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
a:hover {
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}

input[type=radio],
input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  margin: 0;
  padding: 0;
}

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

/* ====================================================
LOADING
==================================================== */
/* ====================================================
Animation
==================================================== */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* クリップパスでフェードイン */
.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;
}

/* ====================================================
Header
==================================================== */
header {
  color: var(--wh);
}
header a {
  color: var(--wh);
}
header a:hover {
  color: var(--yellow);
}
header.scrolled {
  background-color: rgba(25, 25, 25, 0.9);
}

/* ====================================================
Footer
==================================================== */
.footer {
  color: var(--wh);
  padding: clamp(5rem, 7vw, 10rem) 0 2rem;
  background-color: #111827;
}
.footer__nav a {
  color: var(--wh);
  transition: color 0.3s ease-in-out;
}
.footer__nav a:hover {
  color: var(--yellow);
}
.footer__sns-logo, .footer__sns-qr {
  flex-shrink: 0;
}
.footer__sns-logo:hover, .footer__sns-qr:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}
.footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer__sns-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.footer__sns-list li:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}
.footer__copyright {
  display: block;
  font-size: 0.75rem;
  text-align: center;
  color: #6b7280;
  margin: auto;
  margin-top: clamp(5rem, 7vw, 10rem);
}

/* ====================================================
PAGE TOP
==================================================== */
.page-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}
.page-top__link {
  color: var(--wh);
  display: flex;
  justify-content: flex-end;
}
.page-top__link::before {
  content: "keyboard_arrow_up";
  font-family: "Material Symbols Outlined";
  font-size: 14px;
  color: var(--wh);
  margin-right: 1rem;
}
.page-top .text {
  text-decoration: underline;
  padding-bottom: 1rem;
}

.google-icon {
  font-family: "Material Symbols Outlined";
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .google-icon {
    font-size: 1rem;
  }
}
@media screen and (max-width: 499px) {
  .google-icon {
    font-size: 0.875rem;
  }
}

[class$=__inner],
.inner {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}

.chevron_forward::after {
  content: "chevron_forward";
  font-family: "Material Symbols Outlined";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
  border: 1px solid #8cd0d0;
  border-radius: 100vmax;
  font-size: 1.25rem;
  color: #8cd0d0;
  margin-left: 1.25rem;
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (max-width: 640px) {
  .chevron_forward::after {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    margin-left: 0.625rem;
  }
}
@media screen and (max-width: 499px) {
  .chevron_forward::after {
    width: 1.625rem;
    height: 1.625rem;
    font-size: 0.875rem;
    margin-left: 0.3125rem;
  }
}

.chevron_forward-link:hover::after {
  transform: translateX(0.625rem);
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}

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

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

.swiper-pagination-bullet {
  background: var(--wh);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--green);
}

.swiper-pagination-progressbar {
  background: var(--wh);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--green);
}

input[type=search] {
  width: 100%;
}
input[type=search]:focus {
  outline: none;
  box-shadow: none;
}

.link-hover {
  position: relative;
  white-space: nowrap;
}
.link-hover::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--green);
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.link-hover:hover::after {
  width: 100%;
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}

/* ====================================================
SimpleBar Custom Scrollbar
==================================================== */
.simplebar-scrollbar:before {
  background: var(--green) !important;
  /* スクロールバーの色 */
}

.simplebar-track.simplebar-horizontal {
  height: 6px !important;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 5px !important;
  opacity: 1 !important;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  width: 6px !important;
}

.simplebar-track {
  background: var(--wh);
  /* トラックの色（任意） */
  border-radius: 0;
}

/* ====================================================
Scroll　Down Indicator
==================================================== */
.scroll_down {
  position: absolute;
  bottom: 50px;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: var(--wh);
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: var(--wh);
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: var(--wh);
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
/* ====================================================
404 Page
==================================================== */
._404 {
  height: 100vh;
  color: var(--wh);
  display: flex;
  justify-content: center;
  align-items: center;
}
._404 .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
._404__title {
  font-size: clamp(1.5rem, 2vw, 2rem);
}
._404__desc {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 2;
}/*# sourceMappingURL=common.css.map */