@charset "utf-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
:root {
  --padding: max(calc((100% - 1440px) / 2), 64px);
  --sp_padding: max(calc((100% - 390px) / 2), 24px);
  
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* box-sizingは入れないほうがいい（勝手にレイアウトがコントロールされる） */
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

body {
  color: #333333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fcfcfc;
  line-height: 2;

  overflow-x: hidden;
}

/* ↓ここからヘッダー↓ */
header {
  background-color: #fcfcfc;
  padding: 0 var(--padding);
  border-bottom: 0.5px solid;
  border-color: #33333330;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header-area {
  height: 110px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 170px;
  line-height: 40px;
}

.site-menu {
  width: 70%;
}

.site-menu ul {
  width: 100%;
  display: flex;
  justify-content: right;
  text-align: center;
  gap: 16px;
}

.site-menu li {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 60px;
  width: 20%;
  position: relative;
}

.site-menu li a {
  width: 100%;
}

.site-menu li .line{
  padding-bottom: 8px;
  position: relative;
}

.site-menu li .line:hover{
  color: #13a0f4;
}

.site-menu li .line::before {
  background: #13a0f4;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.site-menu li .line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.site-menu .item-Contact {
  color: #fcfcfc;
}

/* .site-menu li:hover{
  color: #bcbfc0;
  transition: all 0.5s 0s;
} */

.Contact-button {
  display: block;
  background-color: #e16122;
  width: 100%;
  line-height: 56px;
  text-align: center;
  border-radius: 30px;
  transition: all 0.5s 0s;
  color: #fcfcfc;
}

.Contact-button:hover {
  transform: scale(1.1);
}

/* ↑ヘッダーここまで↑ */

/* ↓メインここから↓ */

main {
  padding-top: 110px;
}

/* topへ戻るボタン */
.back-button {
  display: flex;
  justify-content: right;
  padding: 0 var(--padding);
  position: fixed;
  bottom: 2%;
  left: 0;
  right: 0;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}
.back-button.on {
  opacity: 1;
  visibility: visible;
}

.back-button-area {
  display: block;
}

.back-button-area p {
  color: #00d5d5;
}

.back-button:hover {
  background-position: 100% 0;
}

.object {
  display: flex;
  justify-content: center;
}

.object .background {
  color: #fcfcfc;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    45deg,
    #13a0f4,
    #22c1d5,
    #23dbdb,
    #22c1d5,
    #13a0f4
  );
  background-position: 0% 50%;
  background-size: 200% auto;
  transition: all 1s ease;
  text-align: center;
  line-height: 150%;
  border-radius: 30px;
  padding-top: 30px;
  position: relative;
}

.back-button a:hover .object .background{
  background-position: 100% 51%;
}

.object .arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-bottom: solid 3px;
  border-right: solid 3px;
  border-color: #fcfcfc;
  transform: rotate(-135deg);
  align-items: center;
  position: relative;
  justify-content: center;
  position: absolute;
  top: 40%;
  left: 35%;
}


 
.c-btn.grad {
  background: linear-gradient(90deg, rgba(255,112,30,1) 0%, rgba(255,191,48,1) 50%, rgba(255,77,48,1) 100%);
  background-size: 200% 100%;
  border: none;
}
.c-btn.grad:hover {
  background-position: 100% 0;
}

/* contact */
.Contact-area {
  display: flex;
  justify-content: center;
  padding: 96px var(--padding);
}

.Contact-button-area {
  width: 960px;
  background: linear-gradient(-26deg, #79f4f4, #00d5d5);
  padding-bottom: 64px;
  position: relative;
}

.Contact-button-area::after {
  content: "";
  width: 100%;
  height: 480px;
  background-color: #fcfcfc60;
  position: absolute;
  top: 0%;
  left: auto;
  opacity: 0;
  transition: all 0.5s;
}

.Contact-button-area:hover::after {
  opacity: 1;
}

.Contact-button-area h3 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 8rem;
  color: #fcfcfc;
  letter-spacing: 4px;
  text-shadow: 0px 1px 5px #008a8a20;
  line-height: 0.5;
  padding-top: 80px;
}

.Contact-button-area h3 span {
  font-weight: bold;
  font-size: 2rem;
  color: #fcfcfc;
  letter-spacing: 4px;
  text-shadow: 0px 1px 5px #008a8a20;
}

.Contact-button-area p {
  text-align: center;
  font-weight: 600;
  color: #fcfcfc;
  text-shadow: 0px 1px 5px #008a8a20;
  padding-top: 40px;
}

.Contact-button-area .button {
  background-color: #fcfcfc;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  margin: auto;
  margin-top: 40px;
  padding: 18px 15px;
}

.Contact-button-area .button span {
  display: block;
  width: 22px;
  height: 22px;
  border-bottom: solid 3px;
  border-right: solid 3px;
  border-color: #00d5d5;
  transform: rotate(-45deg);
  align-items: center;
}

/* ↑メインここまで↑ */

/* ↓フッターここから↓ */
footer {
  background-color: #333333;
  color: #fcfcfc;
}

.footer-area {
  padding: 96px calc((100% - 1504px) / 2);
  margin: 0 64px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  display: block;
  width: 170px;
  line-height: 40px;
  padding-bottom: 16px;
}


.SNS-area {
  display: flex;
  width: 160px;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

/* .SNS-area .img{
  width: 35px;
  height: 35px;
} */

.SNS-area .facebook{
  width: 35px;
  height: 35px;
  background-image: url(../img/Footer/Facebook_Logo_Secondary.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  transition: all 0.5s ease-in-out;
}

.SNS-area .instagram{
  width: 35px;
  height: 35px;
  background-image: url(../img/Footer/Instagram_Glyph_White.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  transition: all 0.5s ease-in-out
}

.SNS-area .x{
  width: 35px;
  height: 35px;
  background-image: url(../img/Footer/logo-white.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  transition: all 0.5s ease-in-out
}

.SNS-area .facebook:hover{
  width: 35px;
  height: 35px;
  background-image: url(../img/logo/Facebook_Logo_Primary.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}

.SNS-area .instagram:hover{
  width: 35px;
  height: 35px;
  background-image: url(../img/logo/Instagram_Glyph_Gradient.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}

.SNS-area .x:hover{
  width: 35px;
  height: 35px;
  background-image: url(../img/logo/logo-black.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}

.footer-navigation nav {
  padding-bottom: 40px;
}

.footer-navigation ul {
  display: flex;
  justify-content: right;
}

.footer-navigation li a {
  margin-left: 64px;
}

.footer-navigation li .line {
  padding-bottom: 8px;
  position: relative;
}

.footer-navigation li .line:hover{
  color: #00d5d5;
}

.footer-navigation li .line::before {
  background: #00d5d5;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.footer-navigation li .line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer-navigation li {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  transition: all 0.5s 0s;
}

/* .footer-navigation li:hover {
  color: #bcbfc0;
} */

.footer-navigation .item-contact:hover {
  color: #fcfcfc;
}

.contact-button {
  display: block;
  background-color: #e16122;
  width: 104px;
  line-height: 37px;
  text-align: center;
  border-radius: 30px;
  transition: all 0.5s 0s;
  color: #fcfcfc;
}

.contact-button:hover {
  transform: scale(1.1);
  color: #fcfcfc;
}

.download-area {
  display: flex;
  width: 580px;
  height: 250px;
  background-color: #fcfcfc;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.download-area .appli-image {
  display: block;
  width: 260px;
  height: 208px;
  margin: 24px 0px 24px 24px;
}

.appli-logo {
  display: block;
  width: 80%;
  margin: 24px;
}

.dwnlord-button-area {
  display: flex;
  align-items: center;
}

.dwnlord-button-area .App {
  display: block;
}

.dwnlord-button-area .Google {
  display: block;
}

@media screen and (max-width: 768px) {

  /* nav ul li{
        width: 50%;
    } */

main{
  padding-top: 60px;
  }

header{
  padding: 0 24px;
  }

  .header-area {
    position: relative;
  }
  
  .site-menu {
    border-left: 0.5px solid #33333330;
    position: absolute;
    top: 100%;
    right: -10%;
    background-color: #fcfcfc;
    color: #fcfcfc;
    padding: 24px;
    height: 100vh;
    /* display: none; */
    transform: translateX(100vw);
    transition: all 0.3s linear;
    z-index: 9999;
    
  }

  .site-menu.is-active {
    transform: translateX(0);
  }

  .site-menu ul {
    flex-direction: column;
    align-items: center;
  }
  
  .site-menu ul li {
    width: 70%;
    color: #333;
  }

  .toggle-menu-button {
    display: block;
    height: 50px;
    border: none;
    background-color: transparent;
    border-radius: 0;
    outline: none;
    z-index: 99999;
  }

  .toggle-menu-button span {
    display: block;
    background-color: #333333;
    width: 30px;
    height: 2px;
    margin: 8px auto;
    position: relative;
  }

  .toggle-menu-button span::before {
    content: "";
    display: block;
    background-color: #333;
    width: 30px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: -8px;
  }

  .toggle-menu-button span::after {
    content: "";
    display: block;
    background-color: #333;
    width: 30px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 8px;
  }


  /* ハンバーガーメニューアニメーション */
  #menu span {
    transition: all .25s .25s;
    background-color: #333;
  }
  @keyframes menu-bar01 {
    0% {
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #menu span::before {
    animation: menu-bar01 .75s forwards;
  }
  #menu span::after {
    animation: menu-bar03 .75s forwards;
  }
  @keyframes menu-bar03 {
    0% {
      transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #menu.active span {
    background-color: transparent;
  }
  @keyframes active-menu-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(8px) rotate(45deg);
    }
  }
  #menu.active span::before {
    animation: active-menu-bar01 .75s forwards;
    background-color: #13a0f4;
  }
  #menu.active span::after {
    animation: active-menu-bar03 .75s forwards;
    background-color: #13a0f4;
  }
  @keyframes active-menu-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

/* back-button */

.back-button-area p {
  display: none;
}


/* header */
.header-area{
  height: 60px;
}

.header-logo{
  width: 100px;
  line-height: 10px;
}

/* contact */
.Contact-area{
  padding: 40px 24px;
}

.Contact-button-area{
  width: 342px;
  padding: 40px 0;

}

.Contact-button-area .title h3{
  font-size: 4.0rem;
  padding: 0;
  line-height: 100%;
}

.Contact-button-area .title p{
  font-size: 2.0rem;
  line-height: 150%;
  padding: 0;
}

.Contact-button-area .text-box{
  text-align: left;
}

.Contact-button-area .text-box{
  padding: 0 24px;
  font-weight: 600;
  font-size: 1.6rem;
}

.Contact-button-area::after{
  height: 400px;
}


/* footer */

.footer-area{
  padding: 40px 0;
  margin: 0 24px;
}

.footer-inner{
  flex-direction: column;
}

.footer-imformation p{
  font-size: 1.4rem;
}

.footer-navigation ul{
  flex-direction: column;
  gap: 16px;
}

.footer-navigation ul a{
  margin-left: 0;
}

.download-area{
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 24px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.download-area .appli-image{
  width: 100%;
  height: auto;
  margin: 0;
}

.download-area .appli-logo{
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
}

.dwnlord-button-area{
  margin: 0;
  padding-top: 8px;
  justify-content: center;
  width: 100%;
}

.dwnlord-button-area.SumSug_logo{
  width: 60%;
}

.back-button{
  max-width: 100%;
  padding: 0 24px;
}

}
