@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap");
/*---------------------------------
  common style
---------------------------------*/
section h1 {
  font-size: 2rem;
  line-height: 1.8rem;
  letter-spacing: .2rem;
  font-weight: 700;
}

.brand_vision,
.whats_own,
.brand_promise,
.origin {
  max-width: 864px;
  margin: 0 auto 300px;
  padding: 0 32px;
}

.brand_vision h2, .whats_own h2, .brand_promise h2, .origin h2 {
  display: inline-block;
  margin-bottom: 16px;
  background: #FFF;
  color: #0F1112;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: .01em;
}

.brand_vision h3, .whats_own h3, .brand_promise h3, .origin h3 {
  margin-bottom: 64px;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .01em;
  line-height: 1.7em;
  text-align: justify;
}

.brand_vision__text,
.whats_own__text,
.brand_promise__text,
.origin__text {
  font-size: 1.25rem;
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: justify;
}

@keyframes HeaderDown {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.FadeUp_T {
  opacity: 0;
}

.fadeUp {
  animation-name: FadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  animation-delay: .3s;
  opacity: 0;
}

@keyframes FadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  font-size: 16px;
  font-weight: 400;
}

* {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
  color: #FFF;
}

body {
  background: #0F1112;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

/*---------------------------------
  contents
---------------------------------*/
header {
  position: relative;
  width: 100%;
  margin-bottom: 300px;
}

.header_bar {
  height: 100px;
  position: fixed;
  background: #0F1112;
  z-index: 1000;
  width: 100%;
}

.header_bar h1 {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 0;
}

.header_bar h1 svg {
  width: 120px;
}

.header__btn-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 64px;
  transform: translateY(-50%);
  width: 124px;
  transition: all .2s;
}

.header__btn-menu::before {
  content: "menu";
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.header__btn-menu:hover {
  transform: translateY(-10px);
  transition: all .2s;
}

@media screen and (max-width: 767px) {
  .header__btn-menu {
    display: none;
  }
}

.header__btn-menu .header__btn-menu__icon {
  width: 48px;
  height: 13px;
  position: relative;
}

.header__btn-menu .header__btn-menu__icon span {
  position: absolute;
  display: block;
  transition: all .2s;
  width: 100%;
  height: 2px;
  background: #FFF;
}

.header__btn-menu .header__btn-menu__icon span:nth-of-type(2) {
  top: 12px;
}

.header__btn-menu.is-active .header__btn-menu__icon span {
  background: #FFF;
}

.header__btn-menu.is-active .header__btn-menu__icon span:nth-of-type(1) {
  transform: translateY(6px) rotate(-16deg);
}

.header__btn-menu.is-active .header__btn-menu__icon span:nth-of-type(2) {
  transform: translateY(-6px) rotate(16deg);
}

@media screen and (max-width: 767px) {
  .header__btn-menu.is-active .header__btn-menu__icon span:nth-of-type(1) {
    transform: translateY(6px) rotate(-24deg);
  }
  .header__btn-menu.is-active .header__btn-menu__icon span:nth-of-type(2) {
    transform: translateY(-6px) rotate(24deg);
  }
}

.header__btn-menu.is-active::before {
  content: "close";
}

.header__btn-menu.is-panel-pc {
  position: absolute;
  z-index: 10000;
  color: #0F1112;
}

.header__btn-menu.is-panel-pc .header__btn-menu__icon span {
  background: #0F1112;
}

@media screen and (max-width: 767px) {
  .header__btn-menu.is-panel-pc {
    color: #FFF;
  }
  .header__btn-menu.is-panel-pc .header__btn-menu__icon span {
    background: #FFF;
  }
}

.header__panel {
  display: block;
  position: fixed;
  transform: translateX(100vw);
  right: 0;
  width: 480px;
  height: 100vh;
  padding: 152px 112px 0;
  background: #FFF;
  box-shadow: 8px 0 16px rgba(0, 0, 0, 0.6);
  transition: all 1s;
}

.header__panel li.header__panel__link a,
.header__panel li.header__panel__link span {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 56px;
  color: #0F1112;
  font-weight: 700;
  font-size: 1.5rem;
}

.header__panel li.header__panel__link span small {
  color: #0F1112;
}

.header__panel li.header__panel__link a::after,
.header__panel li.header__panel__link span::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background: #0F1112;
  transition: all .2s;
}

.header__panel li.header__panel__link a:hover::after {
  width: 100%;
  transition: all .6s;
}

.header__panel li.header__panel__logo {
  margin-bottom: 40px;
}

.header__panel li.header__panel__logo svg {
  width: 100px;
}

.header__panel li.header__panel__logo svg path {
  fill: #0F1112;
}

.header__panel li .header__nav__dl-item {
  display: none;
}

.header__panel.is-panel {
  transform: translateX(0);
  transition: all .6s;
}

.header__panel.is-panel .header__nav__dl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 480px;
  height: 40%;
  background: rgba(15, 17, 18, 0.98);
  backdrop-filter: blur(100rem);
}

.header__panel.is-panel .header__nav__dl-item li {
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .header__panel {
    display: block;
    width: 100%;
    margin: 24px 32px 0;
    padding: 0;
    transform: none;
    background: transparent;
    box-shadow: none;
  }
  .header__panel li a {
    display: flex;
    justify-content: flex-end;
    height: 40px;
    font-size: 1.25rem;
    color: #FFF;
  }
  .header__panel li.header__panel__logo {
    display: none;
  }
  .header__panel.is-panel {
    height: calc(100vh - 80px);
    margin: 80px 0 0;
    padding: 32px;
    color: #FFF;
    background: rgba(15, 17, 18, 0.98);
    transition: all .2s;
  }
  .header__panel.is-panel li a,
  .header__panel.is-panel li span {
    justify-content: flex-start;
    height: 48px;
    color: #FFF;
  }
  .header__panel.is-panel .header__nav__dl-item {
    background: transparent;
  }
}

.header__panel__black {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  cursor: pointer;
}

.header__panel__black.is-panel-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .header__panel__black.is-panel-pc {
    display: none;
  }
}

.is-fixed_header {
  animation: HeaderDown 0.5s forwards;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.is-fixed_header h1 {
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
}

.is-fixed_header h1 svg {
  width: 85px;
}

@media screen and (max-width: 767px) {
  .is-fixed_header {
    height: 80px;
  }
  .is-fixed_header h1 {
    left: 32px;
    transform: translate(0, -50%);
  }
  .is-fixed_header h1 svg {
    width: 85px;
  }
  .is-fixed_header .header__btn-menu {
    display: flex;
    right: 32px;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .is-fixed_header .header__btn-menu {
    width: 80px;
  }
  .is-fixed_header .header__btn-menu::before {
    font-size: 1rem;
  }
  .is-fixed_header .header__btn-menu .header__btn-menu__icon {
    width: 24px;
  }
}

@media screen and (max-width: 767px) {
  .is-fixed_header .header__panel {
    display: none;
  }
  .is-fixed_header .header__panel.is-panel {
    display: block;
  }
}

.top__message {
  height: 100vh;
  min-height: 800px;
}

.top__message h1 {
  display: block;
  position: absolute;
  top: calc(50% - 100px);
  left: 50%;
  width: 220px;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .top__message h1 {
    width: 184px;
  }
}

.top__message h2 {
  position: absolute;
  top: calc(50% - 100px + 56px);
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 40px;
  line-height: 1.4em;
}

@media screen and (max-width: 767px) {
  .top__message h2 {
    text-align: left;
  }
  .top__message h2 span::after {
    content: "\A";
    white-space: pre;
  }
}

.top__message h2 .top__message__test {
  margin-left: 20px;
}

.header__nav__dl-item,
.top__message__dl-item {
  position: absolute;
  bottom: 104px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}

.header__nav__dl-item li,
.top__message__dl-item li {
  margin: 0 0 16px;
}

.header__nav__dl-item li a,
.top__message__dl-item li a {
  height: auto;
}

.brand_vision__text ul {
  margin: 16px 0;
}

.brand_vision__text ul li {
  position: relative;
  padding-left: 1em;
}

.brand_vision__text ul li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #FFF;
}

.footer {
  padding: 100px 0;
  background: #0f1112;
  background: linear-gradient(32deg, #0f1112 0%, #121517 61%);
}

.footer__keyword {
  width: 100%;
  max-width: 864px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer__keyword p {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.8em;
  margin-bottom: 56px;
}

.footer__keyword p:nth-child(3) {
  margin-bottom: 16px;
}

.footer__keyword__logo {
  width: 200px;
}

.footer__copyright {
  margin: 200px 0 0;
  text-align: center;
}

.footer__copyright small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__copyright_linkwrap {
  display: flex;
  max-width: 300px;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .footer__copyright_linkwrap {
    flex-flow: column;
    gap: 24px 0;
  }
}
.footer__copyright_linkwrap small {
  display: block;
  text-decoration: underline;
  color: #fff;
}


/* 追加記入CSS */

.header__panel.is-panel li span {
  color: #8c8f91;
}
.header__panel.is-panel li.header__panel__link span small {
  color: #8c8f91;
  padding-left: 12px;
  font-size: .6em;
}



/*# sourceMappingURL=style.css.map */