@charset "UTF-8";
*, ::after, ::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style: none;
}

a {
  color: initial;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  font-weight: initial;
}

button {
  border: initial;
  background: initial;
  outline: 0;
}

textarea {
  resize: none;
}

:root {
  --color-black: #1A1A1A;
  --color-white: #ffffff;
  --color-light-gray: #E4E4E4;
  --color-gray: #999999;
  --color-yellow: #D7F712;
  --color-green: #BAD70C;
}

.header {
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .header {
    top: 24px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .Image {
  max-width: 135px;
}
@media screen and (max-width: 768px) {
  .header .Image {
    max-width: 108px;
  }
}
.header__button {
  width: 34px;
  height: 10px;
  cursor: pointer;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .header__button {
    display: block;
  }
}
.header__button::before, .header__button::after {
  width: 100%;
  height: 2px;
  background-color: var(--color-green);
  content: "";
  position: absolute;
  left: 0;
  transition: 0.24s ease;
}
.header__button::before {
  top: 0;
}
.header__button::after {
  bottom: 0;
}
.header__button.-active::before {
  transform: translateY(4px) rotate(45deg);
}
.header__button.-active::after {
  transform: translateY(-4px) rotate(-45deg);
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--color-black);
}
.footer__copy {
  font-weight: 500;
  font-size: 12px;
  color: var(--color-white);
  opacity: 0.32;
  text-align: center;
  font-size: 10px;
}

.menu {
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: 0.24s ease;
}
.menu.-active {
  pointer-events: all;
  opacity: 1;
}
.menu__inner {
  width: 100%;
  height: 100%;
  padding-top: 120px;
  padding-right: 20px;
  padding-bottom: 36px;
  padding-left: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu__inner::-webkit-scrollbar {
  display: none;
}
.menu__item--link {
  font-weight: 400;
  font-size: 28px;
  display: block;
  text-transform: capitalize;
  position: relative;
}
.menu__item--link::before, .menu__item--link::after {
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.menu__item--link::before {
  width: 100%;
  background-color: var(--color-light-gray);
  z-index: 1;
}
.menu__item--link::after {
  width: 0;
  background-color: var(--color-green);
  transform-origin: top left;
  transition: 0.48s ease;
  z-index: 2;
}
.menu__item--link:hover::after {
  width: 100%;
}
.menu__item--link:hover span {
  transform: translateX(8px);
}
.menu__item--link span {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.01, 0.8, 0.33, 1.24);
}
.menu__copy {
  margin-top: 80px;
  font-weight: 500;
  font-size: 10px;
  color: var(--color-gray);
}

.Image {
  display: flex;
}

.SectionTitle .Image, .SectionTitle__shoulder {
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .SectionTitle .Image {
    width: auto;
    height: 56px;
  }
}
.SectionTitle__shoulder {
  font-weight: 500;
  transition-delay: 0.12s;
}
@media screen and (max-width: 768px) {
  .SectionTitle__shoulder {
    font-size: 14px;
  }
}
.SectionTitle__shoulder span {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  display: inline-block;
  transform: translateY(-4px);
}

.Button {
  width: 100%;
  font-weight: 500;
}
.Button.-contact {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(26, 26, 26, 0.6);
  border-radius: 30px;
  max-width: 223px;
  transition: 0.24s ease;
}
.Button.-contact:hover {
  background-color: var(--color-black);
  color: var(--color-yellow);
}
.Button.-contact .Button__imgw {
  display: none;
}
.Button.-note {
  padding-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 180px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Button.-note {
    width: 168px;
    font-size: 14px;
  }
}
.Button.-note::before, .Button.-note::after {
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.Button.-note::before {
  width: 100%;
  background: var(--color-light-gray);
  z-index: 1;
}
.Button.-note::after {
  width: 0;
  background: var(--color-green);
  transition: all 0.4s cubic-bezier(0.94, 0, 0.09, 0.94);
  transform-origin: top left;
  z-index: 2;
}
.Button.-note .Button__imgw {
  transition: all 0.4s cubic-bezier(0.94, 0, 0.09, 0.94);
}
.Button.-note:hover::after {
  width: 100%;
}
.Button.-note:hover .Button__imgw {
  transform: translate(2px, -2px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-family: "Noto Sans", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: var(--color-black);
}

.-font-inter {
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
}

header, footer, section {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}
header > div, footer > div, section > div {
  width: inherit;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.-is-md {
  display: none;
}
@media screen and (max-width: 768px) {
  .-is-md {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .-is-not-md {
    display: none;
  }
}