@charset "UTF-8";

/*共通部分
ーーーーーーーーーーーーーーーーーーーーー*/
html{
    font-size: 100%;
}
body{
    font-family: 'Anton', sans-serif;
    font-family: 'Sawarabi Gothic', sans-serif;
    line-height: 1.7;
    font-size: 0.9rem;
}
img {
    width: 100%;
}
a{
    color: rgb(17, 17, 19);
    text-decoration: none;
}
hr {
    border: none;
    background:linear-gradient(to right, white, gray, white);
    height: 3px;
}

#page-top{
    position: fixed;
    bottom: 0;
    right: 5%;
    width: 50px;
    height: 50px;
}
#page-top a{
    border-radius: 50%;
    background: #006e9f;
    color: #fff;
    line-height: 50px;
    text-decoration: none;
}

/*header
------------------------*/
#header{
    font-family: 'Anton', sans-serif;
    transition: all .5s;
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255,255, 0.8);
}
.header-inner{
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
h1{
    margin-left: 10px;
    font-size: 2rem;
}

/*humburger
----------------------------------*/
.hamburger{
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.hamburger span{
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1){
    top: 10px;
}
.hamburger span:nth-child(2){
    top: 20px;
}
.hamburger span:nth-child(3){
    top: 30px;
}

/*ナビあいている時のボタン-----
--------------------------------*/
.hamburger.active span{
    background: #fff;
}
.hamburger.active span:nth-child(1){
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    transform: translateY(6px);
}
.hamburger.active span:nth-child(2){
    -webkit-transform: translateY(-4px);
  -moz-transform   : translateY(-4px);
  transform        : translateY(-4px);
}  

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-14px);
  -moz-transform   : translateY(-14px);
  transform        : translateY(-14px);
}
nav.nav-area{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease,
    visibility .6s ease
}

nav.nav-area ul{
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
nav.nav-area ul li{
    list-style: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
nav.nav-area li:last-child{
    padding-bottom: 0;
}
nav.nav-area ul li:hover{
    background: #ddd;
}
nav.nav-area ul li a{
    display: block;
    color: #fff;
    padding: 1rem 0;
    text-decoration: none;
}
/* このクラスを、jQueryで付与・削除する */
nav.nav-area.active {
    opacity: 100;
}
/*main
----------------------------------*/
#main-img{
    height: 900px;
    overflow: hidden;
    position: relative;
}
.main-img{
    z-index: 10;
    opacity: 0;
    width: 100%;
    height: 900px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 36s 0s infinite;
    animation: anime 36s 0s infinite;
}
.main-img:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s; 
}

.main-img:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s; 
}

.main-img:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s; 
}

.main-img:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s; 
}

.main-img:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s; 
}
@keyframes anime {
    0% {
          opacity: 0;
      }
      8% {
          opacity: 1;
      }
      17% {
          opacity: 1;
      }
      25% {
          opacity: 0;
          transform: scale(1.2) ;
           z-index:9;
      }
      100% { opacity: 0 }
}
  
#concept-wrap{
    margin-top: 50px;
    margin-bottom: 40px;
}
.concept1{
    display: flex;
    justify-content: center;
}
.concept-img1 {
    width: 30%;
    height: auto;
}
.concept-inner{
    display: flex;
    flex-flow: column;
    justify-content: start;
}
.concept-text{
    padding: 3rem 3rem 1rem 3rem;
}

.concept-text h2{
    font-family: 'Anton', sans-serif;
    color: rgb(241,141,95);
    font-size: 2.5rem;
    color: #FF8C00;
    background: -webkit-linear-gradient(0deg, #FF0080, #FF8C00, #FF0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
.comcept-text2{
    font-size: 1rem;
    margin: 0 auto;
    padding-left: 50px;
}
.concept2{
    display: flex;
    justify-content: end;
}
.concept2-inner{
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 0;
    margin: auto;
    width: 600px;
    height: 450px;
}
.video{
    position: absolute;
    top: -50px;
    left: 400px;
    z-index: 2;
    width: 500px;
}
.concept-img2{
    width: 60%;
    height: auto;
    position: absolute;
    top:  150px;
    left: 80px;
    z-index: 1;
}
#content{
    width: 100%;
    margin: 0 auto;
    padding: 70px 0;
}
.grid{
    display: flex;
    justify-content: space-evenly;
}
.item1{  
    position: relative;
}
.fadein{
    width: 300px;
    height: auto;
    z-index: 1;
}
.button1{
  display: inline-block;
  text-decoration: none;
  color: #668ad8;
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  border: double 4px #668ad8;
  text-align: center;
  overflow: hidden;
  transition: .6s;
  position: absolute;
  top: 23%;
  left: 27%;
  background-color: rgba(238, 232, 238,0.8);
  font-size: 20px;
  z-index: 2;
}
.button1:hover {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
.item2{  
    position: relative;
}
.fadein{
    width: 300px;
    height: auto;
    z-index: 1;
}
.button2{
  display: inline-block;
  text-decoration: none;
  color: #668ad8;
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  border: double 4px #668ad8;
  text-align: center;
  overflow: hidden;
  transition: .6s;
  position: absolute;
  top: 23%;
  left: 27%;
  background-color: rgba(238, 232, 238,0.8);
  font-size: 20px;
  z-index: 2;
}
.button2:hover {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
.item3{  
    position: relative;
}
.fadein{
    width: 300px;
    height: auto;
    z-index: 1;
}
.button3{
  display: inline-block;
  text-decoration: none;
  color: #668ad8;
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  border: double 4px #668ad8;
  text-align: center;
  overflow: hidden;
  transition: .6s;
  position: absolute;
  top: 23%;
  left: 27%;
  background-color: rgba(238, 232, 238,0.8);
  font-size: 20px;
  z-index: 2;
}
.button3:hover {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
#contact{
    display: flex;
    justify-content: space-around;
    padding: 100px 0;
}
.contact-wrap h2{
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: rgb(19, 17, 17);
}
.btn{
    display: inline-block;
    position: relative;
    width: 200px;
    padding: 0.8em;
    text-align: center;
    text-decoration: none;
    color: #1B1B1B;
    background: #fff;
    border-radius: 30px;
    border:1px solid #1B1B1B;
    transition: transform ease .3s;
}
.btn:hover{
    cursor: pointer;
    text-decoration: none;
}
.btn span{
    display: inline-block;
    text-decoration: none;
    transition: transform ease .3s;
}
.btn:hover span{
    cursor: pointer;
    text-decoration: none;
    transform: translateX(6px);
}

  /*footer
  ----------------------------*/
#footer{
    background: linear-gradient(to top, rgba(217, 175, 217, 0.7) 0%, rgba(151, 217, 225, 0.7) 100%),url(../img/footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.footer-wrap{
    display: flex;
    justify-content: space-around;
    padding-top: 30px;
}
.footer-logo{
    display: flex;
    flex-flow: column;
    color: seashell;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.1em;
}
.footer-logo h2,.footer-nav h2{
    color: seashell;
}
.copylight{
    padding-top: 150px;
}
.footer-nav h2{
    font-family: 'Anton', sans-serif;
    text-align: right;
}
.footer-menu li{
    list-style: none;
    font-family: 'Anton', sans-serif;
    text-align: right;
}
.footer-logo-wrap{
    display: flex;
}
.sns_icon{
    background-color: purple;
}
.socialEffect__box{
    padding-top: 30px;
}
/* 共通のアイコンエフェクト */
.socialEffect__link {
  margin: .3em;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #bfbfbf;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  transition: transform ease-out 0.2s;
}

.socialEffect__box li {
  display: inline-block;
}


/* インスタ用アイコン設定 */
.icon-instagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.9);
}
.fab.fa-instagram {
  display: inline-block;
  color: #fff;
}
.icon-instagram:hover {
  background: radial-gradient(
      circle farthest-corner at 32% 106%,
      rgb(255, 225, 125) 0%,
      rgb(255, 205, 105) 10%,
      rgb(250, 145, 55) 28%,
      rgb(235, 65, 65) 42%,
      transparent 82%
    ),
    linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
  transform: scale(0.9);
}

/* フェイスブック用アイコン設定 */
.icon-facebook::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.9);
}
.fab.fa-facebook-f {
  display: inline-block;
  color: #fff;
}
.icon-facebook:hover {
  background: #3b5998;
  transform: scale(0.9);
}

/* ツイッター用アイコン設定 */
.icon-twitter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.9);
}
.fab.fa-twitter {
  display: inline-block;
  color: #fff;
}
.icon-twitter:hover {
  background: #00b0ed;
  transform: scale(0.9);
}

/*sp---------------------
------------------------*/
@media screen and (max-width: 600px)  {

.hamburger{
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.hamburger span{
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1){
    top: 10px;
}
.hamburger span:nth-child(2){
    top: 20px;
}
.hamburger span:nth-child(3){
    top: 30px;
}

/*ナビあいている時のボタン-----
--------------------------------*/
.hamburger.active span{
    background: #fff;
}
.hamburger.active span:nth-child(1){
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    transform: translateY(6px);
}
.hamburger.active span:nth-child(2){
    -webkit-transform: translateY(-4px);
  -moz-transform   : translateY(-4px);
  transform        : translateY(-4px);
}  

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-14px);
  -moz-transform   : translateY(-14px);
  transform        : translateY(-14px);
}
nav.nav-area{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease,
    visibility .6s ease
}

nav.nav-area ul{
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
nav.nav-area ul li{
    list-style: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
nav.nav-area li:last-child{
    padding-bottom: 0;
}
nav.nav-area ul li:hover{
    background: #ddd;
}
nav.nav-area ul li a{
    display: block;
    color: #fff;
    padding: 1rem 0;
    text-decoration: none;
}
/* このクラスを、jQueryで付与・削除する */
nav.nav-area.active {
    opacity: 100;
}

/*main------------------
------------------------*/

#concept-wrap{
    position: relative;
}
.concept1{
    display: flex;
    flex-flow: column;
}
.concept1 h2{
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 0;
}
.comcept-text2{
    position: absolute;
    top: 40%;
    left: 55%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    padding: 0;
    width: 80%;
    font-size: 1.1rem;
    background-color: rgba(240, 248, 255,0.3);
}
.concept-img1{
    width: 100%; 
}
.concept2{
    display: flex;
    justify-content: end;
}
.concept2-inner{
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    padding: 0;
    margin: auto;
    width: 600px;
    height: 450px;
}
.video{
    position: absolute;
    top: -50px;
    left: 35%;
    z-index: 2;
    width: 350px;
}
.concept-img2{
    width: 300px;
    height: auto;
    position: absolute;
    top:  100px;
    left: 0;
    z-index: 1;
}
.grid{
    display: grid;
}
}