@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 {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-feature-settings: "palt";
  font-weight: 400;
  line-height: 2;
  background: #ffffff;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  letter-spacing: 0.05em;
  z-index: 2;
  overflow-x: clip;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 14px;
  }
}

.inner {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}

.inner-s {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding-left: 5%;
}
@media screen and (max-width: 834px) {
  .inner-s {
    padding-left: 0%;
  }
}

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

a {
  text-decoration: none;
}

/* ====================================================
FONTS
==================================================== */
.u-ja {
  font-family: "Noto Sans JP", sans-serif;
}

.u-en-al {
  font-family: "Albert Sans", sans-serif;
  line-height: 1.8;
}

.u-en-oz {
  font-family: "Oswald", sans-serif;
}

.u-en-lib {
  font-family: "Libre Baskerville", serif;
}

/* ====================================================
fadein 
==================================================== */
.js-scroll.fadein {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-scroll.fadein.active {
  opacity: 1;
}

/* 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,
h5,
h6,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-weight: 400;
}

p {
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100vw;
  position: fixed;
  top: 0px;
  right: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (min-width: 835px) {
  .header {
    margin: 0 auto;
    padding: 50px 5% 20px;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
}
@media screen and (max-width: 834px) {
  .header {
    padding: 10px 3% 5px;
    position: fixed;
  }
}

.header__logo {
  opacity: 1;
  position: relative;
  z-index: 1051;
  width: 200px;
  height: auto;
  transition: width 0.4s ease, opacity 0.4s ease;
}
@media screen and (max-width: 834px) {
  .header__logo {
    max-width: 80px;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.header__nav-list a {
  color: #000;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 20px);
}
.header__burger {
  display: none;
}
@media screen and (max-width: 834px) {
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1100;
  }
}
.header__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  transform-origin: center;
}
.header__burger.is-open span {
  background: #fff;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media screen and (max-width: 834px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100dvh;
    background: #ff6f19;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
}

@media screen and (max-width: 834px) {
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 10%;
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header__nav-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 834px) {
  .header__nav-list a {
    display: block;
    color: #fff;
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 15px 0;
    letter-spacing: 0.02em;
  }
}

/* ====================================================
Footer
==================================================== */
.footer {
  padding: 40px 0 30px;
  background: #000000;
  color: #fff;
}
.footer__title span.u-en-al {
  color: #fff;
  font-size: clamp(45px, 4.5vw, 74px);
  font-weight: bolder;
  display: block;
  line-height: 1.2;
}
.footer__title span.u-en-lib {
  color: #ff6f19;
  font-style: italic;
  font-weight: 700;
}
.footer__title span.u-ja {
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 700;
}
.footer .copyright {
  margin-top: 50px;
  text-align: right;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 834px) {
  .footer .copyright {
    margin-top: 30px;
    font-size: 12px;
  }
}

/* ====================================================
common
==================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.l-col-2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .l-col-2 {
    flex-direction: column;
  }
}/*# sourceMappingURL=common.css.map */