@charset "utf-8";
/* common */
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body { 
  color: #333; 
  font-family: 'Zen Maru Gothic', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  text-align: left;
}
section h2 {
  font-size: 2.6rem;
}
a:hover {
  opacity: 0.5;
}
img {
  width: 100%;
  height: auto;
}
.section {
  padding: 60px 15px;
}
.topic {
  text-align: center;
}
.sp__design {
  max-width: 390px;
  margin: 0 auto;
  box-shadow: 0 4px 64px rgba(25, 25, 25, .15);
  background-image: url("../images/bg.png");
  background-size: 20%;
  overflow: hidden;
}

.pc__design {
  display: none;
}

/*to top */
#scroll-top {
  width: 65px;
  height: 65px;
  padding: 10px;
  position: fixed;
  right: 0%;
  bottom: 12%;
}
#scroll-top a {
  text-decoration: none;
}
@media(min-width: 450px) {
  #scroll-top {
    width: 100px;
    height: 100px;
    right: 10%;
    bottom: 10%;
  }
}

/* button */
.btn {
  max-width: 390px;
  width: 100%;
  height: 80px;
  background-color: #C12C25;
  position: fixed;
  z-index: 1000;
  margin: 0 auto;
  padding: 15px 30px 15px 50px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border: none;
}
.btn div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn a {
  display: block;
  text-decoration: none;
  color: #FFF;
}
.btn__txt span {
  font-size: 2.0rem;
}
.btn__limit {
  border-left: dotted #FFF;
  padding-left: 20px;
}

/* header */
.header {
  padding: 10px 4.2%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 390px;
  z-index: 1200;
}

.header h1 {
  position: absolute;
  left: 10px;
}
.header h1,
.nav__topic {
  width: 90px;
  height: 40px;
}
.header__topic a,
.nav__topic a {
    display: flex;
    align-items: center;
}

/* navigation */
/* .nav初期表示 */
.nav {
  background: rgba(54,54,54, 0.95);
  width: 100%;
  height: 100vh;
  max-width: 390px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.nav__header {
  padding: 10px 4.2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 397px;
}
.nav__btn {
  width: 55px;
  height: 40px;
}
.nav__list {
  margin-top: 70px;
}
.nav__item {
  color: #FFF;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 30px;
  text-align: center;
  font-family: "DotGothic16";
}
.nav__item a {
  color: #FFF;
  text-decoration: none;
}

/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}
.header__btn {
  display: block;
  width: 55px;
  height: 40px;
  position:absolute;
  top: 10px;
  right: 10px;
  z-index: 1200;
  cursor: pointer;
}
/* PCデザイン */
@media(min-width: 1040px) {
  .sp__design {
    max-width: 390px;
    margin: 0 auto;
    background-image: none;
}
  .pc__design {
    background-image: url("../images/bg.png");
    position: fixed;
    z-index: -100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .pc__design-wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }
  .pc__design_logo {
    width: 150px;
    height: auto;
    margin: 40px 0 0 8%;
  }
  .pc__design_txt {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 100px 0 0 8%;
    width: clamp(500px, 55vw, 1300px);
  }
  .pc__design_title {
    width: 250px;
    height: auto;
    margin: 40px 0 0 8%;
  }
  .pc__design_target {
    color: #F05A28;
    font-size: 2.0rem;
    font-weight: 700;
    border-radius: 50px;
    border: 1px solid #F05A28;
    background: #FFF;
    margin: 40px 0 0 8%;
    padding: 5px 20px;
    display: inline-block;
    position: relative;
  }
  .pc__design_target::before {
    content: "";
    display: block;
    background-image: url("../images/robo3.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 90px;
    right: 30px;
    animation: bounce 1s infinite;
  }
  .pc__design_target::after {
    content: "";
    display: block;
    background-image: url("../images/robo4.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -500%;
    right: -380%;
    animation: fly 4s linear 0s infinite ;
  }
  /* .btn {
    position: fixed;
    left: 14%;
    bottom: 100px;
  } */
  .nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
  }
  .nav__item {
    font-size: 2.2rem;
    margin-bottom: 48px;
  }
  .pc__design {
    display: block;
  }  
}

/* ↑↑↑PC要調整 */




/* main */
.mainVis {
  width: 95%;
  height: auto;
  margin: 30px auto;
}

/* secsion-top */
.section-top {
  background-color: #F57B26;
}
.section-top h3 {
  width: 95%;
  height: auto;
  margin: 0 auto 30px;
  position: relative;
}
.section-top h3::before {
  content: "";
  display: block;
  background-image: url("../images/Polygon\ 1.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 70px;
  height: 70px;
  position: absolute;
  top: -30px;
  left: -30px;
  animation: rollAnime 5s linear infinite;
}
.section-top h3::after {
  content: "";
  display: block;
  background-image: url("../images/Polygon\ 2.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 70px;
  right: -10px;
  animation: rollAnime2 6s linear infinite;
}
.top__txt {
  color: #FFF;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
.top__txt::before {
  content: "";
  display: block;
  background-image: url("../images/Polygon\ 1.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 90%;
  left: 40%;
  animation: rollAnime 5s linear infinite;
}
.top__txt::after {
  content: "";
  display: block;
  background-image: url("../images/Polygon\ 2.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 100%;
  right: 40%;
  animation: rollAnime2 6s linear infinite;
}
.schedule {
  border-radius: 5px;
  background-color: #FFF;
  padding: 30px 15px;
  text-align: center;
  position: relative;
}
/* .schedule::before {
  content: "";
  display: block;
  background-image: url("../images/Polygon\ 1.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 40%;
  right: -18%;
  animation: rollAnime 5s linear infinite;
}
.schedule::after {
  content: "";
  display: block;
  background-image: url("../images/Polygon\ 2.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: -12%;
  left: 0%;
  animation: rollAnime2 6s linear infinite;
} */
.schedule__content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  
}
.schedule__date {
  width: 160px;
  font-weight: 700;
}
.schedule__date time {
  font-size: 2.5rem;
  background: linear-gradient(transparent 60%, rgb(255 115 165 / 0.5) 40%);
  line-height: 1.1;
}
.bold {
  font-size: 4.0rem;
}
.schedule__time {
  font-size: 2.6rem;
  margin: 20px 0;
}
.schedule__img {
  width: 130px;
  height: auto;
}
.schedule__txt {
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.schedule__txt::after {
  content: "";
  display: block;
  width: 274px;
  border-bottom: dotted 1px #F57B26;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.schedule__place {
  font-size: 2.0rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 5px;
}
.place__txt {
  margin-right: 10px;
}
.schedule__place span {
  background-color: #F57B26;
  padding: 3px 10px;
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 1.7px;
}

/* section-about */
.section-about {
  position: relative;
}
.section-about::before {
  content: "";
  display: block;
  background-color: #F0827E; 
  border-radius: 50%; 
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  left: 0px;
  animation: scaleAnime 4s infinite;
}
.section-about::after {
  content: "";
  display: block;
  background-image: url("../images/circle3.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 70px;
  left: 40px;
}
.section-about h3 {
  width: 235px;
  height: auto;
  margin: 0 auto 30px;
  position: relative;
}
.section-about h3::before {
  content: "";
  display: block;
  background-image: url("../images/circle1.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0px;
  right: -60px;
  animation: scaleAnime 3s infinite;
}
.section-about h3::after {
  content: "";
  display: block;
  background-image: url("../images/circle3.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 37px;
  right: -70px;
}
.aboutDx__item {
  width: 345px;
  height: 480px;
  border-radius: 10px;
  border: 5px solid #F0827E;
  background: #FFF;
  margin: 0 auto 30px;
  text-align: center;
}
.aboutDx__title {
  background-color: #F0827E;
  color: #FFF;
  padding: 30px 20px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: left;
}
.aboutDx__img {
  width: 270px;
  height: 180px;
  margin: 20px auto;
}
.aboutDx__txt {
  margin-bottom: 20px;
  padding: 0 20px;
  text-align: left;
}
.aboutDx__next {
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.aboutDx__next span {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 6px;
  left: 60px;
  margin: auto;
}

/* demo */
.d-demo__wrap {
  display: flex;
  overflow: hidden;
}
.d-demo__list {
  display: flex;
  list-style: none;
}
.d-demo__list--left{
animation :flowing 30s infinite linear 0.5s both;
}
.d-demo__item {
  width: calc(100vw / 2);
}
.d-demo__item > img{
  width: 100%;
}
@media(min-width: 500px) {
  .d-demo__item {
    width: calc(100vw / 6);
  }
}

/* section-workShop */
.section-workShop {
  position: relative;
}
.section-workShop::before {
  content: "";
  display: block;
  background-image: url("../images/square.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 90px;
  height: 60px;
  position: absolute;
  top: 0%;
  left: 0%;
  animation: 5s linear 1s infinite fly;
}
.section-workShop::after {
  content: "";
  display: block;
  background-image: url("../images/square2.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 90px;
  height: 60px;
  position: absolute;
  top: 100px;
  right: 0%;
  animation: 5s linear 1s infinite fly;
}
.section-workShop h3 {
  width: 182px;
  height: auto;
  margin: 0 auto 30px;
}
.description__list {
  margin-bottom: 30px;
}
.description__item--dd {
  margin-bottom: 20px;
}
.reservation {
  background-color: #C12C25;
  border-radius: 30px;
  color: #FFF;
  display: inline-block;
  padding: 4px 20px;
  margin: 0 10px 15px 0;
}
.kit {
  background-color: #F5B315;
  border-radius: 30px;
  color: #FFF;
  display: inline-block;
  padding: 4px 20px;
  margin: 0 10px 15px 0;
}
.currentDay {
  background-color: #0073C8;
  border-radius: 30px;
  color: #FFF;
  display: inline-block;
  padding: 4px 20px;
  margin: 0 10px 15px 0;
}
.description__txt {
  text-decoration-line: underline;
  padding-bottom: 30px;
  position: relative;
}
.description__txt span {
  color: #C12C25;
}
.description__txt::after {
  content: "";
  display: block;
  width: 350px;
  height: 3px;
  border-bottom: dotted 2px #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* section-workShop List*/
.workShop__list {
  text-align: center;
  position: relative;
  margin: 0 auto 60px;
}
.workShop__list::after {
  content: "";
  display: block;
  width: 350px;
  height: 3px;
  border-bottom: dotted 2px #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.WS__info {
  font-size: 2.0rem;
  font-weight: 700;
  display: inline-block;
  margin: 30px 40px 30px 0;
  position: relative;
}
.WS__info .hand {
  content: "";
  display: block;
  background-image: url("../images/hand.png");
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -10px;
  right: -40px;
}
.pc_display {
  display: none;
}
@media(min-width: 1040px) {
  .pc_display {
    display: block;
  }
  .sp_display {
    display: none;
  }
  .WS__info .hand {
    top: 0px;
    right: -40px;
  }
}
.WS__list {
  max-width: 370px;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
}
.WS__item {
  width: 95px;
  margin: 0 auto 25px;
}
.WS__item a {
  color: #333;
}
.WS__img {
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #333;
  box-shadow: 3px 3px 0px 0px #4D4D4D;
}
.WS__img img {
  width: 70%;
  height: 90px;
}
.WS__txt {
  text-align: left;
  display: inline-block;
}

/* decoration */

.decoration_txt {
  display: flex;
  overflow:hidden;
  width: 100%;
  white-space:nowrap;
  z-index: -10;
  /* test */
}
.decoration_txt ul {
  animation: flowing 15s linear infinite;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
.decoration_txt ul li {
  display: inline-block;
  padding-right: 10px;
}
.decoration__img {
  display: flex;
  justify-content: center;
}
.decoration__img li {
  width: 85px;
  height: auto;
  margin: 40px 15px;
  list-style: none;
}
.decoration__img li:nth-child(1) {
  animation: bounce 2s steps(1, end) infinite;
}
.decoration__img li:nth-child(2) {
  animation: bounce 2s steps(1, end) infinite;
  animation-delay: 1s;
}
.decoration__img li:nth-child(3) {
  animation: bounce 2s steps(1, end) infinite;
}


/* Workshop details */
.event__list {
  list-style: none;
  margin: 0 auto;
}
.event__item {
  width: 345px;
  margin: 0 auto 50px;
}
.event__number {
  max-width: 350px;
  text-align: center;
  margin: 0 auto;
}
.event__topic {
  font-family: "DotGothic16", sans-serif;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  line-height: normal;
}
.event__topic2 {
  font-family: "DotGothic16", sans-serif;
  text-align: center;
  font-size: 2.2rem;
  line-height: normal;
}
.TextTyping span {
	display: none;
}
.TextTyping::after {
  content: "|";
	animation: typinganime .8s ease infinite;
}
.event__img {
  width: 345px;
  height: 210px;
  margin: 0 auto 15px;
}
.event__text {
  margin: 0 auto 15px;
  font-size: 1.6rem;
}
.event__process {
  margin: 0 auto;
}
.event__detail {
  border: 1px solid #333;
  background-color: #FFF;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
  width: 345px;
  padding: 15px 10px 0;
  margin: 0 auto;
}
.event__count {
  margin-bottom: 10px;
}
.event__count span {
  border-radius: 5px;
  background-color: #4D4D4D;
  color: #FFF;
  padding: 5px 15px;
  margin-right: 10px;
}
.event__txt {
  margin-bottom: 10px;
}

/* section-map */
.section-map {
  background-color: #009C3C;
  background-image: url("../images/map_bg.png");
  background-size: 20%;
  color: #FFF;
  padding: 60px 0;
}
.section-map h3 {
  width: 130px;
  height: auto;
  margin: 0 auto 30px;
}
.map__txt {
  margin: 0 15px 30px;
}
.map__img {
  width: 100%;
}

/* section-attention */
.section-attention h3 {
  width: 105px;
  height: auto;
  margin: 0 auto 30px;
}
.attention__list {
  margin: 0 auto;
  width: 300px;
}
.attention__item {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
}
.attention__item::before {
  content: "";
  display: block;
  background-image: url("../images/check.png");
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: -24px;
}

/* section-access */
.section-access {
  background-color: #F5B315;
  background-image: url("../images/access_bg.png");
  background-size: 20%;
  color: #FFF;
}
.section-access h3{
  width: 105px;
  height: auto;
  margin: 0 auto 30px;
}
.access__list {
  width: 320px;
  margin: 0 auto 30px;
}

.access__item {
  list-style: none;
  margin: 0 0 10px 30px;
  position: relative;
}

.map_icon {
  content: "";
  display: block;
  background-image: url("../images/map_icon.png");
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: -24px;
}
.train_icon {
  content: "";
  display: block;
  background-image: url("../images/train_icon.png");
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: -24px;
}
.car_icon {
  content: "";
  display: block;
  background-image: url("../images/car_icon.png");
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: -24px;
}
.section-access iframe {
  width: 285px;
  height: 165px;
  display: block;
  margin: 0 auto;
}

/* section-info */
.section-info h4{
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.info__item {
  padding: 20px 10px;
  border-radius: 5px;
  border: 1px solid #000;
  background-color: #FFF;
  position: relative;
}
.contact {
  margin-bottom: 50px;
}
.info__company {
  margin-right: 50px;
}
.kispan::after {
  content: "";
  display: block;
  background-image: url("../images/kisupan.png");
  background-size: contain;
  width: 50px;
  height: 60px;
  position: absolute;
  top: -70px;
  right: 100px;
  animation: bounce 2s steps(1, end) infinite;
}

/* footer */

.footer {
  background-color: #737373;
  color: #fff;
  padding: 50px 15px 100px;
}
.footer__logo {
  width: 150px;
  height: 65px;
  margin: 0 auto 40px;
}
.footerNav__list {
  display: flex;
  justify-content: space-around;
  padding-bottom: 80px;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.footerNav__item a {
  text-decoration: none;
  color: #FFF;
}
.footer small {
  display: block;
  text-align: center;
}




/* アニメーションまとめ */

/* 回転 */
@keyframes rollAnime {
  50% {
        transform: rotate(180deg);
      }
  100% {
        transform: rotate(360deg);
      }
}
@keyframes rollAnime2 {
  50% {
    transform: rotate(180deg);
  }
100% {
    transform: rotate(360deg);
  }
}

/* 拡大 */
@keyframes scaleAnime {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.5);
  }
}
/* 写真・文字スライド */
@keyframes flowing {
  from { 
    transform:translateX(0);
  }
  to { 
    transform:translateX(-100%); 
  }
}

/* タイピング */
@keyframes typinganime{
	from {
    opacity:0
  }
	to {
    opacity:1
  }
}

/* ドローン左右 */
/* animation: 6s linear 1s infinite fly; */
@keyframes fly {
  0% {
    transform: rotate(0deg) translateX(0px);
  }
  50% {
    transform: rotate(0deg) translateX(25px);
  }
  100% {
    transform: rotate(0deg) translateX(0px);
  }
}

/*跳ねる*/
/* animation: bounce 0.5s infinite; */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 回る */
/* animation: spin 5.5s linear infinite; */
@keyframes spin{
  0% {
    transform: rotate(0deg);
  }
    100% {
    transform: rotate(360deg);
  }
}





.nav{
  position:absolute;
  transform: none;
  background-color:initial;
  overflow: hidden;
}
.nav__inner{
  padding-top:60px;
  background-color:#000;
  opacity: .8;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.nav.active .nav__inner{
  transform: translateX(0);
}
.btn{
  z-index: 1500;
}

.nav.active+.header__btn{
  display:none;
} 
.nav.active+.header__btn{
  opacity:0;
} 
.header__btn{
  transition: all 0.3s;
}

.nav{
  pointer-events: none;
}
.nav__list{
  pointer-events: auto;
}
/* 
.nav.active+.nav__btn{
  pointer-events: auto;
}  */

.nav__btn {
  pointer-events: auto;
}