@charset "UTF-8";
/* 基本設定 */
/*============================================
	― 変数設定
=============================================*/
/*============================================
	― PC表示
=============================================*/
.pc-disblock {
  display: block;
}

.pc-disline {
  display: inline;
}

.pc-dislineblock {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-disblock {
  display: none;
}

.sp-disline {
  display: none;
}

.sp-dislineblock {
  display: none;
}

/*============================================
	― スマホ表示切り替え
=============================================*/
@media screen and (max-width: 769px) {
  .pc-disblock {
    display: none;
  }
  .pc-disline {
    display: none;
  }
  .pc-dislineblock {
    display: none;
  }
  .sp-disblock {
    display: block;
  }
  .sp-disline {
    display: inline;
  }
  .sp-dislineblock {
    display: inline-block;
  }
  .sp-none {
    display: none;
  }
}
body {
  font-family: source-han-sans-japanese, sans-serif;
}

/* modules */
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 HAMBURGER-MENU 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.hamburger-menu {
  display: none;
  width: 100%;
  overflow: hidden;
}
.hamburger-menu #hamburger-icon {
  display: inline-block;
  position: absolute;
  right: 0px;
  top: -5px;
  z-index: 2000000;
}
.hamburger-menu #hamburger-icon svg {
  width: 60px;
  height: 60px;
  text-align: center;
}
.hamburger-menu #hamburger-icon svg path,
.hamburger-menu #hamburger-icon svg line {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}
.hamburger-menu #hamburger-icon svg #middle {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-menu #hamburger-icon svg #top,
.hamburger-menu #hamburger-icon svg #bottom {
  stroke-dasharray: 31.71 100;
  stroke-dashoffset: 62.5;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-menu #hamburger-icon .guide {
  color: #fff;
  margin: -10px 0 0 0;
  line-height: 0.9;
  letter-spacing: 1px;
  font-size: 3;
}
.hamburger-menu #hamburger-icon.x svg #top,
.hamburger-menu #hamburger-icon.x svg #bottom {
  stroke-dashoffset: 131;
}
.hamburger-menu #hamburger-icon.x svg #middle {
  opacity: 0;
}
.hamburger-menu nav {
  visibility: hidden;
  display: none;
  width: 100%;
  background: orange;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  display: block;
  padding: 130px 0 40px 0;
}
.hamburger-menu nav h2 {
  text-align: center;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
  font-size: 10vw;
}
.hamburger-menu nav ul {
  margin: 0 0 0 0;
  padding: 20px 4% 10px 4%;
}
.hamburger-menu nav ul li {
  list-style: none;
  margin: 45px 0 0 0;
}
.hamburger-menu nav ul li a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hamburger-menu nav ul li a .left .icon {
  line-height: 0;
  width: 15vw;
  margin: 0 20px 0 0;
}
.hamburger-menu nav ul li a .left .icon img {
  width: 100%;
  height: auto;
}
.hamburger-menu nav ul li a .left .top {
  display: flex;
  align-items: center;
}
.hamburger-menu nav ul li a .left .top .main {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
  font-size: 6.25vw;
}
.hamburger-menu nav ul li a .left .top .sub {
  font-family: "Iceberg", cursive;
  line-height: 1.1;
  letter-spacing: 2px;
  font-size: 4vw;
}
.hamburger-menu nav ul li a .left .bottom {
  display: flex;
  align-items: center;
  margin: 10px 0 0 0;
}
.hamburger-menu nav ul li a .left .bottom .border {
  width: 20vw;
  height: 1px;
  border-top: solid 1px;
  margin: 0 10px 0 0;
}
.hamburger-menu nav ul li a .left .bottom p {
  line-height: 1.3;
  letter-spacing: 3px;
  font-size: 3.25vw;
}
.hamburger-menu nav ul li a .arrow {
  line-height: 0;
  width: 8vw;
}
.hamburger-menu nav ul li a .arrow img {
  width: 100%;
  height: auto;
}
.hamburger-menu nav .privacy {
  margin: 30px 0 0 0;
  text-align: center;
}
.hamburger-menu nav .privacy a {
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0 0 5px 0;
}
.hamburger-menu nav .privacy a .catch {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 5vw;
  margin: 0 7px 0 0;
}
.hamburger-menu nav .privacy a .arrow {
  line-height: auto;
  width: 7vw;
}
.hamburger-menu nav .privacy a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: solid 2px #fff;
}
.hamburger-menu nav .energy {
  position: relative;
  margin: 70px auto 0;
  width: 30vw;
  height: 30vw;
}
.hamburger-menu nav .energy span {
  position: absolute;
  width: calc(30vw + var(--i));
  height: calc(30vw + var(--i));
  background: var(--clr);
  border-radius: 50%;
  transform-origin: calc(10vw + var(--i));
  animation: animate 5s linear infinite;
  animation-duration: calc(var(--d));
  mix-blend-mode: plus-lighter;
  filter: blur(30px);
}
.hamburger-menu nav .energy span:nth-child(even) {
  animation-direction: reverse;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hamburger-menu nav .last-copy {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  padding: 70px 0 0 0;
}
.hamburger-menu nav .last-copy .main {
  text-align: center;
  color: transparent;
  -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
  line-height: 1;
  font-size: 20vw;
}
.hamburger-menu nav .last-copy .sub {
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 8vw;
}
.hamburger-menu nav .last-copy .semi {
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 8vw;
}
.hamburger-menu nav .logo p {
  font-family: "Iceberg", cursive;
  font-weight: normal;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-size: 12vw;
  margin: 40px 0 0 0;
}
.hamburger-menu nav .address {
  margin: 20px 0 0 0;
}
.hamburger-menu nav .address p {
  text-align: center;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 2px;
  font-size: 3.5vw;
}
.hamburger-menu nav .address p .syncopate {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hamburger-menu {
    width: 100%;
    overflow: hidden;
    display: block;
  }
  .hamburger-menu #hamburger-icon {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: -5px;
    z-index: 2000000;
  }
  .hamburger-menu #hamburger-icon svg {
    width: 60px;
    height: 60px;
    text-align: center;
  }
  .hamburger-menu #hamburger-icon svg path,
  .hamburger-menu #hamburger-icon svg line {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 3px;
  }
  .hamburger-menu #hamburger-icon svg #middle {
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-menu #hamburger-icon svg #top,
  .hamburger-menu #hamburger-icon svg #bottom {
    stroke-dasharray: 31.71 100;
    stroke-dashoffset: 62.5;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-menu #hamburger-icon .guide {
    color: #fff;
    margin: -10px 0 0 0;
    line-height: 0.9;
    letter-spacing: 1px;
    font-size: 3vw;
  }
  .hamburger-menu #hamburger-icon.x svg #top,
  .hamburger-menu #hamburger-icon.x svg #bottom {
    stroke-dashoffset: 131;
  }
  .hamburger-menu #hamburger-icon.x svg #middle {
    opacity: 0;
  }
  .hamburger-menu nav {
    visibility: hidden;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100000;
    padding: 130px 0 40px 0;
    overflow: hidden;
    overflow-y: scroll;
  }
  .hamburger-menu nav h2 {
    text-align: center;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
    font-size: 5vw;
  }
  .hamburger-menu nav ul {
    margin: 0 0 0 0;
    padding: 20px 6% 10px 6%;
  }
  .hamburger-menu nav ul li {
    list-style: none;
    margin: 45px 0 0 0;
  }
  .hamburger-menu nav ul li a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hamburger-menu nav ul li a .left .icon {
    line-height: 0;
    width: 6vw;
    margin: 0 20px 0 0;
  }
  .hamburger-menu nav ul li a .left .icon img {
    width: 100%;
    height: auto;
  }
  .hamburger-menu nav ul li a .left .top {
    display: flex;
    align-items: center;
  }
  .hamburger-menu nav ul li a .left .top .main {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 3px;
    font-size: 3.25vw;
  }
  .hamburger-menu nav ul li a .left .top .sub {
    font-family: "Iceberg", cursive;
    line-height: 1.1;
    letter-spacing: 2px;
    font-size: 2vw;
  }
  .hamburger-menu nav ul li a .left .bottom {
    display: flex;
    align-items: center;
    margin: 10px 0 0 0;
  }
  .hamburger-menu nav ul li a .left .bottom .border {
    width: 10vw;
    height: 1px;
    border-top: solid 1px;
    margin: 0 10px 0 0;
  }
  .hamburger-menu nav ul li a .left .bottom p {
    line-height: 1.3;
    letter-spacing: 3px;
    font-size: 2.5vw;
  }
  .hamburger-menu nav ul li a .arrow {
    line-height: 0;
    width: 4vw;
  }
  .hamburger-menu nav ul li a .arrow img {
    width: 100%;
    height: auto;
  }
  .hamburger-menu nav .privacy {
    margin: 50px 0 0 0;
    text-align: center;
  }
  .hamburger-menu nav .privacy a {
    display: inline-flex;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 0 0 5px 0;
  }
  .hamburger-menu nav .privacy a .catch {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 3vw;
    margin: 0 7px 0 0;
  }
  .hamburger-menu nav .privacy a .arrow {
    line-height: auto;
    width: 3.5vw;
  }
  .hamburger-menu nav .privacy a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: solid 2px #fff;
  }
  .hamburger-menu nav .energy {
    position: relative;
    margin: 80px auto 0;
    width: 20vw;
    height: 20vw;
  }
  .hamburger-menu nav .energy span {
    position: absolute;
    width: calc(20vw + var(--i));
    height: calc(20vw + var(--i));
    background: var(--clr);
    border-radius: 50%;
    transform-origin: calc(6.6666666667vw + var(--i));
    animation: animate 5s linear infinite;
    animation-duration: calc(var(--d));
    mix-blend-mode: plus-lighter;
    filter: blur(30px);
  }
  .hamburger-menu nav .energy span:nth-child(even) {
    animation-direction: reverse;
  }
  @keyframes animate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .hamburger-menu nav .last-copy {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    padding: 70px 0 0 0;
  }
  .hamburger-menu nav .last-copy .main {
    text-align: center;
    color: transparent;
    -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
    line-height: 1;
    font-size: 10vw;
  }
  .hamburger-menu nav .last-copy .sub {
    text-align: center;
    color: #fff;
    line-height: 1.2;
    font-size: 4vw;
  }
  .hamburger-menu nav .last-copy .semi {
    text-align: center;
    color: #fff;
    line-height: 1.2;
    font-size: 4vw;
  }
  .hamburger-menu nav .logo p {
    font-family: "Iceberg", cursive;
    font-weight: normal;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    font-size: 7vw;
    margin: 40px 0 0 0;
  }
  .hamburger-menu nav .address {
    margin: 20px 0 0 0;
  }
  .hamburger-menu nav .address p {
    text-align: center;
    color: #fff;
    line-height: 2.2;
    letter-spacing: 2px;
    font-size: 2.5vw;
  }
  .hamburger-menu nav .address p .syncopate {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .hamburger-menu {
    width: 100%;
    overflow: hidden;
    display: block;
  }
  .hamburger-menu #hamburger-icon {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: -5px;
    z-index: 2000000;
  }
  .hamburger-menu #hamburger-icon svg {
    width: 60px;
    height: 60px;
    text-align: center;
  }
  .hamburger-menu #hamburger-icon svg path,
  .hamburger-menu #hamburger-icon svg line {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 3px;
  }
  .hamburger-menu #hamburger-icon svg #middle {
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-menu #hamburger-icon svg #top,
  .hamburger-menu #hamburger-icon svg #bottom {
    stroke-dasharray: 31.71 100;
    stroke-dashoffset: 62.5;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hamburger-menu #hamburger-icon .guide {
    color: #fff;
    margin: -5px 0 0 0;
    line-height: 0.9;
    letter-spacing: 1px;
    font-size: 4vw;
    position: relative;
  }
  .hamburger-menu #hamburger-icon .guide span {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
  }
  .hamburger-menu #hamburger-icon.x svg #top,
  .hamburger-menu #hamburger-icon.x svg #bottom {
    stroke-dashoffset: 131;
  }
  .hamburger-menu #hamburger-icon.x svg #middle {
    opacity: 0;
  }
  .hamburger-menu nav {
    visibility: hidden;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100000;
    padding: 130px 0 40px 0;
    overflow: hidden;
    overflow-y: scroll;
  }
  .hamburger-menu nav h2 {
    text-align: center;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
    font-size: 12vw;
  }
  .hamburger-menu nav ul {
    margin: 0 0 0 0;
    padding: 20px 6% 10px 6%;
  }
  .hamburger-menu nav ul li {
    list-style: none;
    margin: 45px 0 0 0;
  }
  .hamburger-menu nav ul li a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hamburger-menu nav ul li a .left .icon {
    line-height: 0;
    width: 15vw;
    margin: 0 20px 0 0;
  }
  .hamburger-menu nav ul li a .left .icon img {
    width: 100%;
    height: auto;
  }
  .hamburger-menu nav ul li a .left .top {
    display: flex;
    align-items: center;
  }
  .hamburger-menu nav ul li a .left .top .main {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 3px;
    font-size: 6.25vw;
  }
  .hamburger-menu nav ul li a .left .top .sub {
    font-family: "Iceberg", cursive;
    line-height: 1.1;
    letter-spacing: 2px;
    font-size: 4vw;
  }
  .hamburger-menu nav ul li a .left .bottom {
    display: flex;
    align-items: center;
    margin: 10px 0 0 0;
  }
  .hamburger-menu nav ul li a .left .bottom .border {
    width: 20vw;
    height: 1px;
    border-top: solid 1px;
    margin: 0 10px 0 0;
  }
  .hamburger-menu nav ul li a .left .bottom p {
    line-height: 1.3;
    letter-spacing: 3px;
    font-size: 3.5vw;
  }
  .hamburger-menu nav ul li a .arrow {
    line-height: 0;
    width: 8vw;
  }
  .hamburger-menu nav ul li a .arrow img {
    width: 100%;
    height: auto;
  }
  .hamburger-menu nav .privacy {
    margin: 30px 0 0 0;
    text-align: center;
  }
  .hamburger-menu nav .privacy a {
    display: inline-flex;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 0 0 5px 0;
  }
  .hamburger-menu nav .privacy a .catch {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 5vw;
    margin: 0 7px 0 0;
  }
  .hamburger-menu nav .privacy a .arrow {
    line-height: auto;
    width: 7vw;
  }
  .hamburger-menu nav .privacy a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: solid 2px #fff;
  }
  .hamburger-menu nav .energy {
    position: relative;
    margin: 70px auto 0;
    width: 30vw;
    height: 30vw;
  }
  .hamburger-menu nav .energy span {
    position: absolute;
    width: calc(30vw + var(--i));
    height: calc(30vw + var(--i));
    background: var(--clr);
    border-radius: 50%;
    transform-origin: calc(10vw + var(--i));
    animation: animate 5s linear infinite;
    animation-duration: calc(var(--d));
    mix-blend-mode: plus-lighter;
    filter: blur(30px);
  }
  .hamburger-menu nav .energy span:nth-child(even) {
    animation-direction: reverse;
  }
  @keyframes animate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .hamburger-menu nav .last-copy {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    padding: 70px 0 0 0;
  }
  .hamburger-menu nav .last-copy .main {
    text-align: center;
    color: transparent;
    -webkit-text-stroke: rgb(220, 220, 220) 1.5px;
    line-height: 1;
    font-size: 20vw;
  }
  .hamburger-menu nav .last-copy .sub {
    text-align: center;
    color: #fff;
    line-height: 1.2;
    font-size: 8vw;
  }
  .hamburger-menu nav .last-copy .semi {
    text-align: center;
    color: #fff;
    line-height: 1.2;
    font-size: 8vw;
  }
  .hamburger-menu nav .logo p {
    font-family: "Iceberg", cursive;
    font-weight: normal;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    font-size: 12vw;
    margin: 40px 0 0 0;
  }
  .hamburger-menu nav .address {
    margin: 20px 0 0 0;
  }
  .hamburger-menu nav .address p {
    text-align: center;
    color: #fff;
    line-height: 2.2;
    letter-spacing: 2px;
    font-size: 3.5vw;
  }
  .hamburger-menu nav .address p .syncopate {
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 HEADER 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  padding: 20px 3% 0px 3%;
  z-index: 10;
}
#header .logo a {
  text-decoration: none;
  color: #fff;
  font-family: "Iceberg", cursive;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 45px;
}
#header nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
#header nav ul li {
  padding: 0 10px 0 10px;
}
#header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
}
#header .hamburger-menu {
  display: none;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #header {
    padding: 20px 2% 0px 2.5%;
  }
  #header .logo a {
    letter-spacing: 2px;
    font-size: 4.25vw;
  }
  #header nav ul li {
    padding: 0 8px 0 8px;
  }
  #header nav ul li a {
    letter-spacing: 2px;
    font-size: 1.85vw;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #header {
    padding: 20px 2% 0px 2.5%;
  }
  #header .logo a {
    letter-spacing: 2px;
    font-size: 4.75vw;
  }
  #header nav {
    display: none;
  }
  #header nav ul li {
    padding: 0 8px 0 8px;
  }
  #header nav ul li a {
    letter-spacing: 2px;
    font-size: 2vw;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #header {
    width: 100%;
    padding: 10px 3% 0px 3%;
    z-index: 10;
  }
  #header .logo a {
    letter-spacing: 2px;
    font-size: 11vw;
  }
  #header .global {
    display: none;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 PAGE-TITLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.page-title {
  background: #000;
  padding: 0px 0 0px 0;
  overflow: hidden;
}
.page-title .wrapper {
  background: linear-gradient(57deg, #3d072a, #1f1553, #202060, #1f4287, #602080, #990d56, #7d0860);
  background-size: 400%;
  animation: grad 3s linear infinite;
  animation-direction: alternate;
  width: 100%;
  height: 120vh;
  margin: 0 auto 0;
  padding: 102px;
}
@keyframes grad {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.page-title .wrapper .inner {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.page-title .wrapper .inner .heading,
.page-title .wrapper .inner .clone {
  position: absolute;
  font-family: "Syncopate", futura-pt, futura-pt-bold, atten-round-new, sans-serif;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  transform: translate(0, -50%);
  top: 30%;
  left: 0;
  animation: infiniteText 20s linear infinite;
  font-size: 180px;
}
.page-title .wrapper .inner .heading {
  z-index: 1;
  color: #fff;
}
.page-title .wrapper .inner .clone {
  color: transparent;
  -webkit-text-stroke: #fff;
  -webkit-text-stroke-width: 3px;
  z-index: 3;
}
@keyframes infiniteText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.page-title .wrapper .inner .heading2,
.page-title .wrapper .inner .clone2 {
  position: absolute;
  font-family: "Syncopate", futura-pt, futura-pt-bold, atten-round-new, sans-serif;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  transform: translate(0, -50%);
  top: 60%;
  left: 0;
  animation: infiniteText2 14s linear infinite;
  letter-spacing: 4px;
  font-size: 60px;
}
.page-title .wrapper .inner .heading2 {
  z-index: 3;
  -webkit-text-stroke: #fff;
  -webkit-text-stroke-width: 2px;
  color: transparent;
}
.page-title .wrapper .inner .clone2 {
  color: #fff;
  z-index: 1;
}
@keyframes infiniteText2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
.page-title .wrapper .inner .rgbKineticSlider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.page-title .wrapper .inner .rgbKineticSlider canvas {
  position: absolute;
  display: block;
  top: 0 !important;
  left: 0 !important;
  transform: scale(1) !important;
}
.page-title .wrapper .inner .rgbKineticSlider nav {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-title .wrapper .inner .rgbKineticSlider nav a {
  text-decoration: none;
  position: absolute;
  z-index: 1;
  font-size: 20px;
  letter-spacing: 10px;
  font-family: "Syncopate";
  color: #fff;
  font-weight: 700;
}
.page-title .wrapper .inner .rgbKineticSlider nav a img {
  width: 180px;
  height: auto;
}
.page-title .wrapper .inner .rgbKineticSlider nav a:hover {
  color: #fff;
}
.page-title .wrapper .inner .rgbKineticSlider nav a.prev {
  top: 5vh;
  left: 30px;
  text-align: left;
}
.page-title .wrapper .inner .rgbKineticSlider nav a.next {
  top: 5vh;
  right: 30px;
  text-align: right;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .page-title {
    background: #000;
    padding: 0px 0 0px 0;
    overflow: hidden;
  }
  .page-title .wrapper {
    animation: grad 3s linear infinite;
    animation-direction: alternate;
    width: 100%;
    height: 114vh;
    margin: 0 auto 0;
    padding: 11vw 7vw 7vw 7vw;
  }
  @keyframes grad {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .page-title .wrapper .inner {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .page-title .wrapper .inner .heading,
  .page-title .wrapper .inner .clone {
    transform: translate(0, -50%);
    top: 35%;
    left: 0;
    animation: infiniteText 20s linear infinite;
    font-size: 11.5vw;
  }
  .page-title .wrapper .inner .heading {
    z-index: 1;
  }
  .page-title .wrapper .inner .clone {
    -webkit-text-stroke-width: 3px;
    z-index: 3;
  }
  @keyframes infiniteText {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .page-title .wrapper .inner .heading2,
  .page-title .wrapper .inner .clone2 {
    transform: translate(0, -50%);
    top: 65%;
    left: 0;
    animation: infiniteText2 14s linear infinite;
    letter-spacing: 4px;
    font-size: 6vw;
  }
  .page-title .wrapper .inner .heading2 {
    -webkit-text-stroke-width: 2px;
    color: transparent;
  }
  .page-title .wrapper .inner .clone2 {
    z-index: 1;
  }
  @keyframes infiniteText2 {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  .page-title .wrapper .inner .rgbKineticSlider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  .page-title .wrapper .inner .rgbKineticSlider canvas {
    position: absolute;
    display: block;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a {
    text-decoration: none;
    position: absolute;
    z-index: 1;
    font-size: 20px;
    letter-spacing: 10px;
    font-family: "Syncopate";
    color: #fff;
    font-weight: 700;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a img {
    width: 180px;
    height: auto;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a:hover {
    color: #fff;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a.prev {
    top: 5vh;
    left: 30px;
    text-align: left;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a.next {
    top: 5vh;
    right: 30px;
    text-align: right;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .page-title .wrapper {
    background: linear-gradient(57deg, #3d072a, #1f1553, #202060, #1f4287, #602080, #990d56, #7d0860);
    background-size: 400%;
    animation: grad 3s linear infinite;
    height: 80vh;
    padding: 20vw 7vw 7vw 7vw;
  }
  @keyframes grad {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .page-title .wrapper .inner {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .page-title .wrapper .inner .heading,
  .page-title .wrapper .inner .clone {
    top: 40%;
    left: 0;
    animation: infiniteText 20s linear infinite;
    font-size: 20vw;
  }
  .page-title .wrapper .inner .heading {
    z-index: 1;
    color: #fff;
  }
  .page-title .wrapper .inner .clone {
    color: transparent;
    -webkit-text-stroke-width: 2px;
    z-index: 3;
  }
  @keyframes infiniteText {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .page-title .wrapper .inner .heading2,
  .page-title .wrapper .inner .clone2 {
    top: 60%;
    left: 0;
    animation: infiniteText2 14s linear infinite;
    letter-spacing: 4px;
    font-size: 10vw;
  }
  .page-title .wrapper .inner .heading2 {
    z-index: 3;
    -webkit-text-stroke: #fff;
    -webkit-text-stroke-width: 1.5px;
    color: transparent;
  }
  .page-title .wrapper .inner .clone2 {
    color: #fff;
    z-index: 1;
  }
  @keyframes infiniteText2 {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  .page-title .wrapper .inner .rgbKineticSlider canvas {
    transform: scale(1) !important;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a {
    text-decoration: none;
    position: absolute;
    z-index: 1;
    font-size: 3.5vw;
    letter-spacing: 6px;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a img {
    width: 25vw;
    height: auto;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a.prev {
    top: 5vh;
    left: 30px;
    text-align: left;
  }
  .page-title .wrapper .inner .rgbKineticSlider nav a.next {
    top: 5vh;
    right: 30px;
    text-align: right;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 CTA 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.cta {
  margin: 0;
  width: 100%;
  height: calc(90vh + 50px);
}
.cta .wrapper {
  background: linear-gradient(57deg, #3d072a, #1f1553, #202060, #1f4287, #602080, #990d56, #7d0860);
  background-size: 400%;
  animation: cta03-grad 3s linear infinite;
  animation-direction: alternate;
  width: 100%;
  height: 100%;
  margin: 0 auto 0;
  padding: 50px 50px 50px 50px;
  display: flex;
  align-self: center;
  justify-content: center;
}
@keyframes cta03-grad {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cta #cta-view {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-up;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.cta #cta-view .text {
  position: relative;
  z-index: 4;
  padding: 50px 0 0 0;
}
.cta #cta-view .text h3 {
  text-align: center;
  font-family: "Syncopate", sans-serif;
  color: transparent;
  -webkit-text-stroke: #fff;
  -webkit-text-stroke-width: 1px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
  font-size: 30px;
}
.cta #cta-view .text h2 {
  text-align: center;
  color: #fff;
  font-family: "Syncopate", sans-serif;
  color: "fff";
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 15px;
  font-size: 90px;
}
.cta #cta-view .text .sentence p {
  text-align: center;
  color: #fff;
  font-family: "Iceberg", cursive;
  letter-spacing: 8px;
  font-size: 26px;
}
.cta #cta-view .text .button {
  text-align: center;
  margin: 50px 0 0 0;
}
.cta #cta-view .text .button a {
  font-weight: 700;
  font-family: "Syncopate", sans-serif;
  position: relative;
  display: inline-block;
  padding: 25px 60px;
  margin: 0px 0 0 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s;
  letter-spacing: 4px;
  overflow: hidden;
  font-size: 25px;
}
.cta #cta-view .text .button a:hover {
  background: linear-gradient(57deg, #1f4287, #602080, #990d56, #7d0860);
  color: #fff;
  -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
}
.cta #cta-view .text .button a span {
  position: absolute;
  display: block;
}
.cta #cta-view .text .button a span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff);
  animation: animate1 1s linear infinite;
}
@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
.cta #cta-view .text .button a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #fff);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
.cta #cta-view .text .button a span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #fff);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
.cta #cta-view .text .button a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #fff);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
.cta #cta-view canvas {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.9;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .cta {
    height: calc(90vh + 50px);
  }
  .cta .wrapper {
    padding: 50px 50px 50px 50px;
  }
  @keyframes cta03-grad {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .cta #cta-view .text {
    padding: 50px 0 0 0;
  }
  .cta #cta-view .text h3 {
    letter-spacing: 3px;
    font-size: 2.5vw;
  }
  .cta #cta-view .text h2 {
    line-height: 1.2;
    letter-spacing: 15px;
    font-size: 5.5vw;
  }
  .cta #cta-view .text .sentence p {
    letter-spacing: 8px;
    font-size: 2.35vw;
  }
  .cta #cta-view .text .button {
    margin: 50px 0 0 0;
  }
  .cta #cta-view .text .button a {
    padding: 25px 40px;
    margin: 0px 0 0 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s;
    letter-spacing: 4px;
    font-size: 2.35vw;
  }
  .cta #cta-view .text .button a:hover {
    color: #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
  }
  .cta #cta-view .text .button a span {
    position: absolute;
    display: block;
  }
  .cta #cta-view .text .button a span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    animation: animate1 1s linear infinite;
  }
  @keyframes animate1 {
    0% {
      left: -100%;
    }
    50%, 100% {
      left: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
  }
  @keyframes animate2 {
    0% {
      top: -100%;
    }
    50%, 100% {
      top: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
  }
  @keyframes animate3 {
    0% {
      right: -100%;
    }
    50%, 100% {
      right: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
  }
  @keyframes animate4 {
    0% {
      bottom: -100%;
    }
    50%, 100% {
      bottom: 100%;
    }
  }
  .cta #cta-view canvas {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.9;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1024px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .cta {
    height: calc(60vh + 50px);
  }
  .cta .wrapper {
    padding: 50px 50px 50px 50px;
  }
  @keyframes cta03-grad {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .cta #cta-view .text {
    padding: 50px 0 0 0;
  }
  .cta #cta-view .text h3 {
    letter-spacing: 3px;
    font-size: 3vw;
  }
  .cta #cta-view .text h2 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 15px;
    font-size: 7vw;
  }
  .cta #cta-view .text .sentence p {
    letter-spacing: 8px;
    font-size: 2.35vw;
  }
  .cta #cta-view .text .button {
    margin: 50px 0 0 0;
  }
  .cta #cta-view .text .button a {
    padding: 25px 50px;
    margin: 0px 0 0 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s;
    letter-spacing: 4px;
    font-size: 2.5vw;
  }
  .cta #cta-view .text .button a:hover {
    color: #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
  }
  .cta #cta-view .text .button a span {
    position: absolute;
    display: block;
  }
  .cta #cta-view .text .button a span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    animation: animate1 1s linear infinite;
  }
  @keyframes animate1 {
    0% {
      left: -100%;
    }
    50%, 100% {
      left: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
  }
  @keyframes animate2 {
    0% {
      top: -100%;
    }
    50%, 100% {
      top: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
  }
  @keyframes animate3 {
    0% {
      right: -100%;
    }
    50%, 100% {
      right: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
  }
  @keyframes animate4 {
    0% {
      bottom: -100%;
    }
    50%, 100% {
      bottom: 100%;
    }
  }
  .cta #cta-view canvas {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.9;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .cta {
    margin: 0;
    width: 100%;
    height: calc(80vh + 6vw);
  }
  .cta .wrapper {
    background: linear-gradient(57deg, #3d072a, #1f1553, #202060, #1f4287, #602080, #990d56, #7d0860);
    background-size: 400%;
    animation: cta03-grad 3s linear infinite;
    padding: 6vw;
  }
  @keyframes cta03-grad {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .cta #cta-view {
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .cta #cta-view .text {
    position: relative;
    z-index: 4;
    padding: 50px 0 0 0;
  }
  .cta #cta-view .text h3 {
    -webkit-text-stroke-width: 1px;
    line-height: 1.2;
    letter-spacing: 3px;
    font-size: 5.5ve;
  }
  .cta #cta-view .text h2 {
    line-height: 1.2;
    letter-spacing: 12px;
    font-size: 14vw;
    margin: 20px 0 0 0;
  }
  .cta #cta-view .text .sentence p {
    letter-spacing: 6px;
    font-size: 4.5vw;
  }
  .cta #cta-view .text .button {
    text-align: center;
    margin: 30px 0 0 0;
  }
  .cta #cta-view .text .button a {
    padding: 20px 40px;
    margin: 0px 0 0 0;
    letter-spacing: 2px;
    font-size: 5vw;
  }
  .cta #cta-view .text .button a:hover {
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
  }
  .cta #cta-view .text .button a span {
    position: absolute;
    display: block;
  }
  .cta #cta-view .text .button a span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    animation: animate1 1s linear infinite;
  }
  @keyframes animate1 {
    0% {
      left: -100%;
    }
    50%, 100% {
      left: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
  }
  @keyframes animate2 {
    0% {
      top: -100%;
    }
    50%, 100% {
      top: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
  }
  @keyframes animate3 {
    0% {
      right: -100%;
    }
    50%, 100% {
      right: 100%;
    }
  }
  .cta #cta-view .text .button a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
  }
  @keyframes animate4 {
    0% {
      bottom: -100%;
    }
    50%, 100% {
      bottom: 100%;
    }
  }
  .cta #cta-view canvas {
    opacity: 0.9;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 FOOTER 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
.footer {
  margin: 0px 0 0 0;
  background: #000;
  padding: 50px 0 0 0;
  position: relative;
}
.footer .circle-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 0px 0 0 0;
  padding: 0 5% 0 0;
  position: relative;
  z-index: 10;
}
.footer .circle-wrapper svg#circle-circle {
  height: auto;
  max-width: 100%;
  width: 300px;
  font-family: "Iceberg", cursive;
  letter-spacing: 2px;
}
.footer .text-path-wrapper {
  margin: -80px 0 0 0;
}
.footer .text-path-wrapper svg {
  position: relative;
  z-index: 5;
}
.footer .text-path-wrapper svg text {
  fill: #fff;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-size: 54px;
  white-space: pre;
}
.footer .wrapper {
  overflow: hidden;
  position: relative;
  padding: 0px 0 0 0;
  z-index: 3;
}
.footer .wrapper .content .top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5% 0 5%;
}
.footer .wrapper .content .top .left .logo p a {
  text-decoration: none;
  color: #fff;
  font-family: "Iceberg", cursive;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 45px;
}
.footer .wrapper .content .top .left .address {
  margin: 30px 0 0 0;
  color: #fff;
  font-size: 16px;
}
.footer .wrapper .content .top .left .address .place {
  margin: 20px 0 0 0;
}
.footer .wrapper .content .top .left .address .place p.en {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
}
.footer .wrapper .content .top .right {
  width: 1000px;
  display: flex;
  flex-direction: column;
}
.footer .wrapper .content .top .right nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  justify-content: flex-end;
}
.footer .wrapper .content .top .right nav ul li {
  padding: 0 17px 0 17px;
}
.footer .wrapper .content .top .right nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
}
.footer .wrapper .content .top .right .explain {
  margin: 50px 0 0 0;
  padding: 0 17px 0 17px;
}
.footer .wrapper .content .top .right .explain p {
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.8;
  font-size: 12px;
}
.footer .wrapper .content .bottom ul {
  list-style-type: none;
  border-top: solid 1px #ccc;
  width: 90%;
  margin: 60px auto 0;
  padding: 0 0 0 0;
  display: flex;
  justify-content: space-between;
}
.footer .wrapper .content .bottom ul li {
  font-family: "Syncopate", sans-serif;
  color: #fff;
  font-weight: 500;
  letter-spacing: 4px;
  font-size: 15px;
  padding: 10px 0 5px 0;
}
.footer .wrapper .content .bottom ul li a {
  text-decoration: none;
  color: #fff;
}
.footer #scene-footer {
  position: absolute;
  width: 100%;
  overflow: hidden;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .footer {
    padding: 50px 0 0 0;
    position: relative;
  }
  .footer .circle-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 0px 0 0 0;
    padding: 0 5% 0 0;
    position: relative;
    z-index: 10;
  }
  .footer .circle-wrapper svg#circle-circle {
    height: auto;
    max-width: 100%;
    width: 27.5vw;
    font-family: "Iceberg", cursive;
    letter-spacing: 2px;
  }
  .footer .text-path-wrapper {
    margin: -80px 0 0 0;
  }
  .footer .text-path-wrapper svg {
    position: relative;
    z-index: 5;
  }
  .footer .text-path-wrapper svg text {
    fill: #fff;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 4vw;
    white-space: pre;
  }
  .footer .wrapper .content .top {
    padding: 0 5% 0 5%;
    display: block;
  }
  .footer .wrapper .content .top .left {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .wrapper .content .top .left .logo {
    margin: 0 30px 0 0;
  }
  .footer .wrapper .content .top .left .logo p {
    text-align: center;
  }
  .footer .wrapper .content .top .left .logo p a {
    letter-spacing: 2px;
    font-size: 4vw;
  }
  .footer .wrapper .content .top .left .address {
    margin: 0px 0 0 0;
    color: #fff;
    font-size: 16px;
  }
  .footer .wrapper .content .top .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 30px 0 0 0;
  }
  .footer .wrapper .content .top .right nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    justify-content: center;
  }
  .footer .wrapper .content .top .right nav ul li {
    padding: 0 12px 0 12px;
  }
  .footer .wrapper .content .top .right nav ul li a {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.85vw;
  }
  .footer .wrapper .content .top .right .explain {
    margin: 50px 0 0 0;
    padding: 0 17px 0 17px;
  }
  .footer .wrapper .content .top .right .explain p {
    letter-spacing: 1px;
    line-height: 1.8;
    font-size: 1.35vw;
  }
  .footer .wrapper .content .bottom ul {
    width: 90%;
    margin: 60px auto 0;
  }
  .footer .wrapper .content .bottom ul li {
    letter-spacing: 4px;
    font-size: 1.5vw;
    padding: 10px 0 5px 0;
  }
  .footer .wrapper .content .bottom ul li a {
    color: #fff;
  }
  .footer #scene-footer {
    bottom: 0;
    left: 0;
    z-index: 2;
  }
} /* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer {
    padding: 50px 0 0 0;
    position: relative;
  }
  .footer .circle-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 0px 0 0 0;
    padding: 0 5% 0 0;
    position: relative;
    z-index: 10;
  }
  .footer .circle-wrapper svg#circle-circle {
    height: auto;
    max-width: 100%;
    width: 27.5vw;
    font-family: "Iceberg", cursive;
    letter-spacing: 2px;
  }
  .footer .text-path-wrapper {
    margin: -80px 0 0 0;
  }
  .footer .text-path-wrapper svg {
    position: relative;
    z-index: 5;
  }
  .footer .text-path-wrapper svg text {
    fill: #fff;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 4vw;
    white-space: pre;
  }
  .footer .wrapper .content .top {
    padding: 0 5% 0 5%;
    display: block;
  }
  .footer .wrapper .content .top .left {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .wrapper .content .top .left .logo {
    margin: 0 30px 0 0;
  }
  .footer .wrapper .content .top .left .logo p {
    text-align: center;
  }
  .footer .wrapper .content .top .left .logo p a {
    letter-spacing: 2px;
    font-size: 4vw;
  }
  .footer .wrapper .content .top .left .address {
    margin: 0px 0 0 0;
    color: #fff;
    font-size: 16px;
  }
  .footer .wrapper .content .top .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 30px 0 0 0;
  }
  .footer .wrapper .content .top .right nav ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    justify-content: center;
  }
  .footer .wrapper .content .top .right nav ul li {
    padding: 0 12px 0 12px;
  }
  .footer .wrapper .content .top .right nav ul li a {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.85vw;
  }
  .footer .wrapper .content .top .right .explain {
    margin: 50px 0 0 0;
    padding: 0 17px 0 17px;
  }
  .footer .wrapper .content .top .right .explain p {
    letter-spacing: 1px;
    line-height: 1.8;
    font-size: 1.35vw;
  }
  .footer .wrapper .content .bottom ul {
    width: 90%;
    margin: 60px auto 0;
  }
  .footer .wrapper .content .bottom ul li {
    letter-spacing: 4px;
    font-size: 1.5vw;
    padding: 10px 0 5px 0;
  }
  .footer .wrapper .content .bottom ul li a {
    color: #fff;
  }
  .footer #scene-footer {
    bottom: 0;
    left: 0;
    z-index: 2;
  }
} /* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
 □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .footer {
    padding: 15px 0 0 0;
    position: relative;
  }
  .footer .circle-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 0px 0 0 0;
    padding: 0 5% 0 0;
    position: relative;
    z-index: 10;
  }
  .footer .circle-wrapper svg#circle-circle {
    height: auto;
    max-width: 100%;
    width: 40vw;
    font-family: "Iceberg", cursive;
    letter-spacing: 2px;
  }
  .footer .text-path-wrapper {
    margin: -40px 0 0 0;
  }
  .footer .text-path-wrapper svg {
    position: relative;
    z-index: 5;
  }
  .footer .text-path-wrapper svg text {
    fill: #fff;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    font-size: 54px;
    white-space: pre;
  }
  .footer .wrapper {
    overflow: hidden;
    position: relative;
    padding: 50px 0 0 0;
    z-index: 3;
  }
  .footer .wrapper .content .top {
    display: block;
    padding: 0px 8% 0 8%;
  }
  .footer .wrapper .content .top .left .logo p {
    text-align: center;
  }
  .footer .wrapper .content .top .left .logo p a {
    letter-spacing: 2px;
    font-size: 9vw;
  }
  .footer .wrapper .content .top .left .address {
    margin: 30px 0 0 0;
    font-size: 16px;
  }
  .footer .wrapper .content .top .right {
    width: 100%;
    display: block;
    padding: 20px 0 0 0;
  }
  .footer .wrapper .content .top .right nav ul {
    display: block;
  }
  .footer .wrapper .content .top .right nav ul li {
    padding: 5px 0px 5px 0px;
  }
  .footer .wrapper .content .top .right nav ul li a {
    text-decoration: none;
    color: #fff;
    font-family: "Syncopate", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
  }
  .footer .wrapper .content .top .right .explain {
    margin: 50px 0 0 0;
    padding: 0 0px 0 0px;
  }
  .footer .wrapper .content .top .right .explain p {
    letter-spacing: 1px;
    line-height: 2.2;
    font-size: 3vw;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 20px 20px 20px;
  }
  .footer .wrapper .content .bottom {
    padding: 0 0 300px 0;
  }
  .footer .wrapper .content .bottom ul {
    list-style-type: none;
    width: 88%;
    margin: 60px auto 0;
    display: block;
  }
  .footer .wrapper .content .bottom ul li {
    font-weight: 500;
    letter-spacing: 4px;
    font-size: 3vw;
    padding: 0px 0 0px 0;
    text-align: center;
    margin: 10px 0 0 0;
  }
  .footer .wrapper .content .bottom ul li a {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 20px 0 20px;
  }
  .footer .wrapper .content .bottom ul li span {
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 20px 0 20px;
  }
  .footer #scene-footer {
    position: absolute;
    width: 100%;
    overflow: hidden;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
} /* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □   

◆	Stylesheet: さらに刻んで320pxまでのモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
/* 320px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/* breakpoints *//*# sourceMappingURL=page.css.map */