@charset "UTF-8";

:root {
  --color-black: #22221F;
  --color-white: #ffffff;
  --color-gray: #F5F5F5;
  --color-bg-bk: #290202;
  --color-red: #6E0202;

  --poppins: "Poppins", sans-serif;
  --noto: "Noto Sans JP", sans-serif;


  --fs24: 2.4rem;
  --fs22: 2.2rem;
}

@media screen and (max-width:767px) {
  :root {
    --fs24: 2rem;
    --fs22: 1.8rem;
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1280>> 10px */
  font-size: clamp(7.5px, 0.78125vw, 14px);
  scroll-behavior: smooth;
  background: var(--color-white);
}

body {
  font-family: var(--noto);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-black);
  letter-spacing: 0.05em;
  line-height: 1.8;
}


.wrap {
  /* width: 110rem; */
  width: 86%;
  margin: 0 auto;
}

.narrow {
  /* width: 100rem; */
  width: 78.125%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */

h2.hd {
  font-size: 15rem;
  font-family: var(--poppins);
  letter-spacing: 0;
  margin-bottom: 6rem;
}

h2.hd .clip_inner {
  height: 11rem;
}

h2.hd .clip_inner .aim {
  position: relative;
  left: -3rem;
  display: flex;
}

@media screen and (max-width:767px) {
  html {
    /* 375px>> 10px */
    font-size: 2.666666vw;
  }

  body {
    font-size: 1.4rem;
  }

  .wrap,
  .narrow {
    width: 34.5rem;
  }

  h2.hd {
    font-size: 7.6rem;
    /* margin-bottom: 4rem; */
  }

  h2.hd .clip_inner {
    height: 6rem;
  }

  h2.hd .clip_inner .aim {
    left: -1rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 10rem;
  transition: .6s;
  transform: translateY(0%);
  /* filter: invert(1);
  mix-blend-mode: difference; */
}

header.hide {
  transform: translateY(-100%);
  transition-delay: .2s;
}

.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 86%;
  margin: 0 auto;
}

.nav_left {
  width: 20rem;
}



.nav_right ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3em;
  font-family: var(--poppins);
}

@media screen and (max-width:767px) {

  header {
    padding: 1.5rem 1rem 0;
  }

  /* 
  header.open_nav {
    filter: invert(0);
    mix-blend-mode: normal;
  } */

  .nav_inner {
    width: 100%;
  }

  .nav_left {
    width: 13rem;
  }




  .nav_right {
    padding: 0;
    font-size: 1em;
  }

  .hamburger {
    position: absolute;
    right: 2rem;
    top: 0.5rem;
    width: 5rem;
    height: 6rem;
    cursor: pointer;
    z-index: 300;
    transition: all 1s ease-out;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 35%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 65%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
    background-color: var(--color-white);
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
    background-color: var(--color-white);
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 0 0 10rem 0;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  .nav_right ul {
    display: block;
    color: var(--color-white);
    padding: 10rem 3rem;
    opacity: 0;
    transition: .3s;
    transition-delay: .2s;
  }

  .open_nav .nav_right ul {
    opacity: 1;
    transition: .3s;
    transition-delay: .2s;
  }

  .nav_right ul li {
    margin-bottom: 2rem;
  }

  .nav_right ul a {
    font-size: 3rem;
  }

  .nav_right ul .sp a {
    font-size: 1.4rem;
  }

  .nav_right ul .sp p {
    font-size: 1rem;
    margin-top: 6rem;
  }
}


/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 10rem;
  background: var(--color-white);
  margin-top: -1px;
}

.section {
  padding-top: 10rem;
}


.btnArea .c_btn {
  width: 30rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-black);
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  transition: .4s;
  margin-top: 4rem;
  position: relative;
}

.btn_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem 0 1rem 0;
  background: var(--color-04);
  transition: .4s;
  opacity: 1;
}

.arrow-icon {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;

}

.arrow-icon:before,
.arrow-icon:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/arrow.png);
  width: 2rem;
  height: 2rem;
  transition: .4s;
}

.arrow-icon:after {
  transform: translateX(-100%);
}


/* animation */
.btnArea .c_btn .arrow-icon:before {
  animation-name: transformBottomLeftTopRight;
  animation-delay: 0.2s;
}

.btnArea .c_btn .arrow-icon:after {
  animation-name: transformTopRightBottomLeft;
}

.btnArea .c_btn:hover .arrow-icon:before {
  animation-name: transformTopRightBottomLeft;
  animation-delay: 0s;
}

.btnArea .c_btn:hover .arrow-icon:after {
  animation-name: transformBottomLeftTopRight;
  animation-delay: 0.2s;
}

/* link03 */
@keyframes transformBottomLeftTopRight {
  0% {
    transform: translate(-100%, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes transformTopRightBottomLeft {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, -100%);
  }
}


.clip_inner {
  display: block;
  height: 100%;
  line-height: 1;
  overflow: hidden;
}

.clip_inner span {
  height: 100%;
  display: block;
}

#fix_movie {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

#fix_movie::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  top: 0;
  left: 0;
}

#fix_movie video {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

@media screen and (max-width:767px) {
  section {
    padding-bottom: 7rem;
  }

  .btnArea .c_btn {
    width: 100%;
  }
}


/*================================================
 *  footer
 ================================================*/
footer {
  /* background: rgb(0 0 0 / 10%); */
  color: var(--color-white);
  padding: 12rem 0 30rem;
  position: relative;
  min-height: 90vh;
}

footer::before {

  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(0.5rem);
  z-index: -1;
}


footer .narrow {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.ft_logo {
  width: 34rem;
}

.ft_menu {
  width: 45rem;
  font-family: var(--poppins);
  font-weight: 300;
}

.ft_menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2em;
}

.ft_policy {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 2rem;
}

.ft_copy {
  font-size: 1rem;
  text-align: right;
  padding-top: 20rem;
}

@media screen and (max-width:767px) {
  footer {
    padding: 16rem 0 10rem;
  }

  footer .narrow {
    flex-wrap: wrap;
    gap: 10rem;
  }

  .ft_logo {
    width: 30rem;
    margin: 0 auto;
  }

  .ft_menu {
    width: 100%;
  }

  .ft_menu ul {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .ft_menu ul li {
    width: 100%;
    text-align: center;
  }


  .ft_policy {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 8rem;
  }

  .ft_copy {
    font-size: 1rem;
    text-align: center;
    padding-top: 6rem;
  }
}

/*================================================
* subVisual
================================================*/
#subVisual {
  padding-top: 24rem;
  padding-bottom: 6rem;
}

@media screen and (max-width:767px) {
  #subVisual {
    padding-top: 20rem;
  }
}

/*================================================
* policy
================================================*/
#policy h3 {
  margin-top: 4rem;
}

#policy p,
#policy ul {
  margin-top: 1rem;
  font-size: 1.2rem;
}



#policy ul li {
  list-style: disc;
  margin-left: 2rem;
}



@media screen and (max-width:767px) {
  #subVisual {
    padding-top: 20rem;
  }
}

/*================================================
* ani
================================================*/

/* fadeup */
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.fadeup.on {
  opacity: 1;
  transform: translateY(0px);
}

.delay01 {
  transition-delay: .1s;
}

.delay02 {
  transition-delay: .2s;
}

.delay03 {
  transition-delay: .3s;
}

.delay04 {
  transition-delay: .4s;
}

.delay05 {
  transition-delay: .5s;
}

.delay06 {
  transition-delay: .6s;
}

.delay08 {
  transition-delay: .8s;
}

.clip_inner .aim span {
  transition-duration: 1s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translateY(100%);

}


.on .clip_inner .aim span {
  transform: translateY(0%);
}

.clip_inner .aim span:nth-of-type(2) {
  transition-delay: 0.07s;
}

.clip_inner .aim span:nth-of-type(3) {
  transition-delay: 0.14s;
}

.clip_inner .aim span:nth-of-type(4) {
  transition-delay: 0.21s;
}

.clip_inner .aim span:nth-of-type(5) {
  transition-delay: 0.28s;
}

.clip_inner .aim span:nth-of-type(6) {
  transition-delay: 0.35s;
}

.clip_inner .aim span:nth-of-type(7) {
  transition-delay: 0.42s;
}

.clip_inner .aim span:nth-of-type(8) {
  transition-delay: 0.49s;
}

.clip_inner .aim span:nth-of-type(9) {
  transition-delay: 0.56s;
}

.clip_inner .aim span:nth-of-type(10) {
  transition-delay: 0.63s;
}

.clip_inner .aim span:nth-of-type(11) {
  transition-delay: 0.7s;
}

.clip_inner .aim span:nth-of-type(12) {
  transition-delay: 0.77s;
}

@media screen and (max-width:767px) {}