
@import url(./common/_variable.css);
@import url(./common/_reset.css);

/* common 

font-family: "Noto Sans JP", sans-serif;

font-family: "Roboto", sans-serif;

font-family: "Anton", sans-serif;

font-family: "Zen Kurenaido", sans-serif;

font-family: "Noto Serif JP", serif;


  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  word-break: normal;
  line-break: strict;
  overflow-wrap: anywhere;

============================================ */

html{
	font-size: 62.5%;
  scroll-behavior: smooth;
  /*scroll-padding-top: 50px; check the header hight!*/
}

body{
	background-color: #FFF;
	color: var(--font);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
	line-height: 1.6;
  text-size-adjust: 100%;
  min-height: 100dvh;
  @media (max-width: 896px) {
    font-size: 1.4rem;
  }
  .is-fixed{
    height: 100%;
    overflow: hidden;
  }
}

#wrapper {
  position: relative;
  overflow: hidden;
}

a{
  color: currentColor;
  transition: all 0.3s ease-out;
  &:hover{
    color: var(--over);
    img {
      opacity: 0.7;
    }
  }
}

img{
	max-width: 100%;
  height: auto;
}

.reading{
  overflow: hidden;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}

.pconly {
  @media (max-width: 896px) {
    display: none;
  }
}
.sponly {
  display: none;
  @media (max-width: 896px) {
    display: block;
  }
}
.portraitonly {
  display: none;
  @media (max-width: 480px) {
    display: block;
  }
}
.portraitnone{
  @media (max-width: 480px) {
    display: none;
  }
}
.tabonly{
  display: none;
  @media (max-width: 1025px) {
    display: block;
  }
}
.tabnone{
  @media (max-width: 1025px) {
    display: none;
  }
}


.newline {
	display: inline-block;
}

.width{
  max-width: 1280px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.clearfix {
	/*display: inline-table;*/
  &:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
}


/* page top */
/* ============================================ */
.pagetop_arrow {
  position: fixed;
  right: 70px;
  bottom: -100px;
  z-index: 1500;
  transition: all 300ms 0s ease;
  opacity: 0;
  a {
    overflow: hidden;
    outline: none;
    display: block;
    background-color: rgba(0,0,0,0.4);
    padding: 5px;
    img {
      width: 60px;
      height: auto;
    }
  }
  @media (max-width:1025px) {
    right: 10px;
  }
  @media (max-width:896px) {
    a {
      img {
        width: 30px;
      }
    }
  }
}
.fade_in {
  .pagetop_arrow {
    opacity: 1;
    transition: all 300ms 0s ease;
    bottom: 180px;
  }
}



/* drawer menu */
/* ============================================ */

@keyframes active-btn-bar {
  100% {
    height: 0;
  }
}

.drawer_menu {
  .wrap_btn_drawer {
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    padding: 4px;
    background: var(--gradient01);
    border-radius: 50%;
    align-content: center;
    text-align: center;
    color: #FFF;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    @media (width < 896px) {
      width: 60px;
      height: 60px;
      top: 16px;
      right: 16px;
    }
  }
  .btn_drawer {
    margin: auto;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    border-radius: 50%;
    align-content: center;
    cursor: pointer;
    @media (width < 1025px) {
    }
    .button {
      position: relative;
      width: 50%;
      height: 36%;
      margin: auto;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      display: inline-block;
      transition: all .5s;
      box-sizing: border-box;
      @media (width < 896px) {
        height: 44%;
      }
      span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient01);
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
        @media (width < 896px) {
          height: 3px;
        }
        &:nth-of-type(1) {
          top: 0;
        }
        &:nth-of-type(2) {
          top: 50%;
          transform: translateY(-50%);
        }
        &:nth-of-type(3) {
          bottom: 0;
        }
      }
      &.active {
        span:nth-of-type(1) {
          transform: translateY(11px) rotate(-45deg);
          @media (width < 896px) {
            transform: translateY(10px) rotate(-45deg);
          }
        }
        span:nth-of-type(2) {
          left: 60%;
          opacity: 0;
          animation: active-btn-bar .8s forwards;
        }
        span:nth-of-type(3) {
          transform: translateY(-11px) rotate(45deg);
          @media (width < 896px) {
            transform: translateY(-10px) rotate(45deg);
          }
        }
      }
    }
  }
  .menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    inset: 0;
    transition: 0.3s ease;

    .drawer_menu__area {
      position: absolute;
      top: 100dvh;
      left: 0px;
      background-color: rgba(255, 255, 255, 0.8);
      width: 100%;
      height: 100dvh;
      padding: 20px 3vw 20px;
      box-sizing: border-box;
      text-align: center;
      overflow: auto;
      display: inline-block;
      transition: 0.3s ease;
      @media (max-width:896px) {
        padding: 40px 20px 20px;
      }
      .list_nav_footer_sub {
        padding: 24px 0 0;
        justify-content: center;
        .item_nav_footer_sub {
          @media (max-width:480px) {
            width: 47%;
            text-align: left;
            letter-spacing: 0em;
          }
        }
      }
    }
  }
  
  .menu.is-active {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: 100vh;
    transition: 0.5s ease;
    z-index: 8900;
    .drawer_menu__area {
      top: 0px;
    }
  }
  
  .overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
  }
  
  .list {
    position: relative;
    display: flex;
    z-index: 8100;
    align-items: center;
    justify-content: center;
    height: 100vh;
    height: 100dvh;
    gap: 24px;
    font-size: 20px;
    flex-direction: column;
    list-style-type: none;
  }
  
  .d_inner {
    display: inline-block;
    padding: 80px 0 0;
    @media (max-width:896px) {
      padding: 0px 0px 0;
      width: 100%;
    }
  }

  .drawer_menu__block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    @media (max-width:896px) {
      grid-template-columns: 1fr;
    }
  }

  .drawer_menu__block--logo {
    .dmenu_logo {
      text-align: center;
    }
  }

  .drawer_menu__block--list {
    border-left: var(--text) dotted 1px;
    text-align: center;
    @media (max-width:896px) {
      border-left: none;
      padding-left: 0vw;
    }
    .btn_entry {
      margin-top: 24px;
    }
  }

  .d_list_box {
    display: inline-block;
    width: 100%;
  }

  .btn_home {
    display: inline-block;
    border: #666 solid 1px;
    padding: 5px 16px;
    border-radius: 50px;
  }

  .d_list {
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 20px;
    row-gap: 5px;
    @media (width < 480px) {
      grid-template-columns: repeat(1,auto);
      border-top: #666 dotted 1px;
      gap: 0px;
    }
    .d_item {
      font-size: 1.6rem;
      line-height: 1.6em;
      text-align: left;
      @media (width < 480px) {
        border-bottom: #666 dotted 1px;
      }
      a {
        display: block;
        position: relative;
        letter-spacing: 0.1em;
        padding: 8px 0 8px 1.3em;
        position: relative;
        &::before {
          content: "";
          display: block;
          border-radius: 50px;
          background: var(--gradient05);
          width: 1.2rem;
          height: 1.2rem;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0px;
        }
      }
    }
  }
  .d_list_sub {
    padding: 10px 0 0;
  }
  .d_item_sub {
    padding: 4px 0;
  }

  .box__contact_d {
    padding: 24px 0 0;
    text-align: center;
  }

  .box__contact--tel {
    border-bottom: #666 dotted 1px;
    padding-bottom: 10px;
    .number {
      font-size: 2.4rem;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      color: #000;
      line-height: 1.2em;
      span {
        font-size: 0.7em;
      }
      a {
        color: var(--text);
        &:hover {
          color: var(--over);
        }
      }
    }
  }

  .box__contact--address_d {
    display: inline-block;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.4em;
    padding: 10px 0 0;
  }
}


.area__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 4vw;
  position: absolute;
  top: 0px;
  z-index: 8800;
}

.logo_header {
  width: auto;
  height: 90px;
  @media (width < 896px) {
    height: 70px;
  }
  img {
    width: auto;
    height: 100%;
  }
}

.logo_w {
  display: none;
}

.btn_link {
  a {
    font-size: clamp(1.6rem, 0.26vw + 1.503rem, 2rem);
    display: inline-block;
    font-weight: 700;
    position: relative;
    padding: 0 0 0 1em;
    line-height: 1.2em;
    &::before {
      content: "";
      display: block;
      background-color: #FFF;
      mask: url("../images/common/arrow01.svg") no-repeat center / contain;
      width: 11px;
      height: 24px;
      position: absolute;
      left: 0px;
      top: 50%;
      transform: translateY(-50%);
    }
    &:hover {
      color: var(--over);
      opacity: 1;
      &::before {
        background-color: var(--over);
      }
    }
  }
}

.btn_entry {
  a {
    font-size: clamp(1.6rem, 0.26vw + 1.503rem, 2rem);
    display: block;
    font-weight: 700;
    background: var(--gradient01);
    border-radius: 50px;
    padding: 8px 16px;
    line-height: 1.2em;
    color: #FFF;
    .inner_entry {
      display: inline-block;
      padding: 0 0 0 16px;
      position: relative;
      &::after {
        content: "";
        display: block;
        background-color: #FFF;
        mask: url("../images/common/arrow01.svg") no-repeat center / contain;
        width: 9px;
        height: 22px;
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
      }
    }
    &:hover {
      color: var(--over);
      opacity: 1;
      .inner_entry {
        &::after {
          background-color: var(--over);
        }
      }
    }
  }
}

.pt3cqw {
  padding-top: 3cqw;
}

.pt4vw {
  padding-top: 4vw;
}

.pd_4vw20px6vw {
  padding: 4vw 20px 6vw;
  @media (width < 480px) {
    padding: 40px 20px 50px;
  }
}

.pt6vw {
  padding-top: 6vw;
}

.plr20px {
  padding-left: 20px;
  padding-right: 20px;
}

.pt4cqw {
  padding-top: 4cqw;
  @media (width < 480px) {
    padding-top: 30px;
  }
}


.mt6cqw {
  margin-top: 6cqw;
  @media (width < 480px) {
    margin-top: 40px;
  }
}
.mt8cqw {
  margin-top: 8cqw;
  @media (width < 480px) {
    margin-top: 40px;
  }
}


.color_w {
  color: #FFF;
}

.a_color_w {
  color: #FFF;
  &:hover {
    color: var(--over);
  }
}

.txt_small {
  font-size: 1.2rem;
}

.ttl_en {
  font-size: clamp(3.6rem, 1.36vw + 3.09rem, 5.7rem);
  font-family: "Anton", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.2em;
}

.hd_content {
  font-size: clamp(1.6rem, 0.26vw + 1.503rem, 2rem);
  font-weight: 600;
  line-height: 1.4em;
  padding: 1vw 0 0;
}

.hd_content_jp {
  font-size: clamp(2.6rem, 1.55vw + 2.017rem, 5rem);
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0.4em;
}

.hd_sec {
  font-size: clamp(2rem, 1.24cqw + 1.535rem, 2.8rem);
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: 600;
  line-height: 1.7em;
  font-feature-settings: "palt";
}

.txt_description {
  margin-top: 2.4vw;
  padding: 2.2vw 0 0;
  line-height: 2em;
  position: relative;
  word-break: keep-all;
  overflow-wrap: anywhere;
  @media (width < 480px) {
    margin-top: 16px;
    padding: 14px 0 0;
    line-height: 1.8em;
  }
  &::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: #FFF;
    max-width: 320px;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.block_entry {
  text-align: center;
  a {
    display: block;
    background: var(--gradient05);
    color: #FFF;
    padding: 6vw 0;
    &:hover {
      .side_entry_txt {
        color: var(--over);
      }
      .cls-1 {
        fill: var(--over);
      }
    }
  }
}

.side_entry_txt {
  transition: all 0.3s ease-out;
}

.ttl_entry {
  font-size: clamp(5rem, 3.56vw + 3.665rem, 10.5rem);
  font-family: "Anton", sans-serif;
  line-height: 1em;
  text-transform: uppercase;
}

.block_entry_name {
  display: flex;
  justify-content: center;
}

.side_entry_cap {
  width: 2.8vw;
  height: auto;
  padding: 0.7vw 0.8vw 0 0;
  box-sizing: border-box;
  min-width: 22px;
  @media (width < 1300px) {
    padding: 1vw 0.8vw 0 0;
  }
  @media (width < 1025px) {
    padding: 1.5vw 0.8vw 0 0;
  }
  @media (width < 896px) {
    padding: 1.9vw 0.8vw 0 0;
  }
  @media (width < 480px) {
    padding: 1.5vw 0.8vw 0 0;
  }
}
.cls-1 {
  fill:#fff;
  transition: all 0.3s ease-out;
}
.txt_entry {
  font-size: clamp(1.2rem, 0.26vw + 1.103rem, 1.6rem);
}

.area_footer {
  padding: 0 0 4vw;
}

.block_footer,.block_footer_sub {
  padding: 5vw 0 0;
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hd_footer_en {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 1.29vw + 1.515rem, 4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hd_footer {
  font-size: clamp(1.6rem, 0.26vw + 1.503rem, 2rem);
  font-weight: 600;
}

.side_nav {
  display: grid;
  grid-template-columns: repeat(2,auto);
  align-items: center;
  gap: 3vw;
  @media (width < 480px) {
    gap: 20px;
  }
}

.list_nav_footer {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 3vw;
  @media (width < 480px) {
    gap: 20px;
  }
}

.item_nav_footer {
  letter-spacing: 0.1em;
  padding: 0 0 0 1.3em;
  position: relative;
  &::before {
    content: "";
    display: block;
    border-radius: 50px;
    background: var(--gradient05);
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
  }
}

.block_footer_sub {
  flex-direction: row-reverse;
  @media (width < 896px) {
    display: block;
  }
  @media (width < 896px) {
    display: block;
  }
}

.copyright {
  white-space: nowrap;
  @media (width < 896px) {
    padding: 16px 0 0;
  }
}

.list_nav_footer_sub {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2vw;
  @media (width < 480px) {
    column-gap: 20px;
  }
}

.item_nav_footer_sub {
  letter-spacing: 0.1em;
  padding: 0 0 0 1.3em;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.78em;
  @media (width < 896px) {
    font-size: 1.3rem;
  }
  &::before {
    content: "";
    display: block;
    border-radius: 50px;
    background: var(--gradient05);
    width: 0.8em;
    height: 0.8em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
  }
}


.area_title {
  margin-top: 120px;
  text-align: center;
  position: relative;
  @media (width < 896px) {
    margin-top: 90px;
  }
}

.gradation01 {
  background: var(--gradient01);
}
.gradation02 {
  background: var(--gradient02);
}
.gradation03 {
  background: var(--gradient03);
}
.gradation04 {
  background: var(--gradient04);
}
.gradation05 {
  background: var(--gradient05);
}
.gradation06 {
  background: var(--gradient06);
}

.area_title_img {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.block_title {
  position: relative;
  height: 20vw;
  align-content: center;
  box-sizing: border-box;
  @media (width < 896px) {
    height: 180px;
  }
}

.w_narrow {
  max-width: 1020px;
  margin: auto;
}

.area_contents {
  padding-bottom: 8vw;
  @media (width < 896px) {
    padding-bottom: 40px;
  }
}

.block_contets {
  container-type: inline-size;
}

.box_txt_data {
  text-align: center;
  position: relative;
  word-break: keep-all;
}

.op80 {
  opacity: 0.8;
}

.grayout {
  &::before {
    content: "";
    background-color: #000;
    opacity: 0.6;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
  }
  &::after {
    content: "Coming soon";
    font-family: "Roboto", sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1em;
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 20;
  }
}