/*
  Made by Elly Loel - https://ellyloel.com/
*/
* {
  margin: 0;
  padding: 0;
}

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

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(ul, ol) {
  list-style-position: inside;
}

:where(ul, ol)[role=list] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

:where(a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
  cursor: not-allowed;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}
body ul {
  margin: 0;
  padding: 0;
}
body li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body img {
  width: 100%;
  height: auto;
}
body a {
  text-decoration: none;
  color: #000;
}
body a:hover {
  opacity: 0.7;
}
body .inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  body .inner {
    max-width: 100%;
  }
}

.header {
  background-color: #000;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
}
.header__logo {
  width: 150px;
}
.header #menu__toggle {
  display: none;
}
.header .global-nav__list {
  display: flex;
  gap: 30px;
}
.header .global-nav__item a {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.header .menu__btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    z-index: 1;
    width: 100%;
  }
  .header .inner {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-inline: 10px;
  }
  .header__logo {
    width: 120px;
  }
  .header .menu__btn {
    display: flex;
    position: relative;
    width: 30px;
    height: 26px;
    margin-left: auto;
    cursor: pointer;
    z-index: 1001;
  }
  .header .menu__btn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
  }
  .header .menu__btn span::before, .header .menu__btn span::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: transform 0.25s ease, top 0.25s ease;
  }
  .header .menu__btn span::before {
    top: -8px;
  }
  .header .menu__btn span::after {
    top: 8px;
  }
  .header .global-nav__list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    background-color: #2d303a;
    flex-direction: column;
    padding: 60px 0 20px;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease, visibility 0.5s ease;
    visibility: hidden;
    z-index: 1000;
    box-sizing: border-box;
  }
  .header .global-nav__item {
    padding: 12px 24px;
    font-size: 18px;
  }
  .header .global-nav__item:hover {
    background-color: #4f5464;
  }
  .header #menu__toggle:checked ~ .menu__btn span {
    transform: rotate(45deg);
  }
  .header #menu__toggle:checked ~ .menu__btn span::before {
    top: 0;
    transform: rotate(0);
    background-color: #f06c64;
  }
  .header #menu__toggle:checked ~ .menu__btn span::after {
    top: 0;
    transform: rotate(90deg);
    background-color: #f06c64;
  }
  .header #menu__toggle:checked ~ .global-nav .global-nav__list {
    transform: translateY(0);
    visibility: visible;
  }
}

.footer .inner {
  margin-block: 100px 0;
}
.footer .sns__list {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer .sns__item {
  width: 50px;
}
.footer .copy__right {
  padding-block: 100px 30px;
  font-family: "Outfit", sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

main .heading {
  text-align: center;
}
main .heading__text {
  position: relative;
  display: inline-block;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}
main .heading__text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  border-bottom: 4px solid #000;
}
@media screen and (max-width: 767px) {
  main .heading__text {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
  }
  main .heading__text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    border-bottom: 4px solid #000;
  }
}
main .new__tag {
  position: relative;
  font-family: "Outfit", sans-serif;
}
main .new__tag::before {
  content: "NEW";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  padding-block: 5px;
  padding-inline: 10px;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main .new__tag::before {
    padding-block: 3px;
    padding-inline: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
  }
}