@charset "utf-8";
/* CSS Document */

  
/**********************************************************/
/* SP */
/**********************************************************/
@media screen and (max-width:767px){
    body{
      font-size: 1.4rem;
      min-width: 100%;
      -webkit-text-size-adjust: 100%;/*スマホを横向きにしたときに文字サイズを自動調整する機能を制御*/
    }
  .flex{
    display: block;
  }
  .pc{
      display: none;
  }
  .sp{
      display: block;
  }
  .inner {
      max-width: 100%;
  }
/**********************************
Loading
**********************************/
  #splash {
    background-image: url("../images/loding-bg_sp.webp");
  }
  #splash_logo {
    width: 70%;
}
  #splash_logo img {
    width:100%;
  }
  
/**********************************
header
**********************************/
  header {
    height: 60px;
  }
  header h1{
    width: 93px;
    top:20px;
    left:19px;
  }
  header nav{
    display: none;
  }
/**********************************
スクロールしたら色が変わるエリア
**********************************/
.header.change-color h1{
  width: 80px;
  top:7px;
  left:19px;
}
.btn {
	position: relative;
	width: 100%;
  height: 46px;
}

/**********************************
ハンバーガー
**********************************/
  .openbtn1{
    display: block;
  }
  #g-nav{
    display: block;
  }

  #g-nav{
    position:fixed;
    z-index: -1;
    opacity: 0;/*はじめは透過0*/
    top:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background-image: url("../images/loding-bg_sp.webp");
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s;
  }
  #g-nav.panelactive{
    opacity: 1;
    z-index:999;
  }
  #g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    background:#fff;
    width: calc(100% - 80px);
    padding: 100px;
}
  #g-nav.panelactive ul {
      display: block;
  }
  #g-nav li{
    list-style: none;
    text-align: center; 
  }
  #g-nav li a{
    color: #333;
    padding:10px 0;
    display: block;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size:1.9rem;
    font-style: italic;
  }
  .openbtn1.active{
    z-index: 1000;/*ボタンを最前面に*/
    }
  .openbtn1{
    position:fixed;
    z-index: 998;/*ボタンを最前面に*/
    top:10px;
    right: 40px;
    cursor: pointer;
    width: 42px;
    height:42px;
  }
  .openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
    background-color: #fff;
    width: 100%;
  }
  .openbtn1 span:nth-of-type(1) {
    top:15px; 
  }

  .openbtn1 span:nth-of-type(2) {
    top:23px;
  }

  .openbtn1 span:nth-of-type(3) {
    top:31px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-20deg);
    width: 100%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(20deg);
    width: 100%;
  }

/**********************************
fv
**********************************/
  .fv {
    height: 1273px;
    background-image: url("../images/fv-bg_sp.webp");
    margin: auto;
  }
  .fv .inner {
    top: 370px;
    left:0;
    transform: translateX(0%);
    width: 750px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
  }
  .phone-frame {
    width: 480px;
    margin-right: 58px;
  }
  .phone-frame div{
    border-radius: 0 0 50px 50px;
  }
.bg-slider {
    top: 70%;
    left: 50%;
    transform: translate(-50%,-70%);
    width: 89%;
    height: 96%;
  object-fit: contain;
}
.fv .txt1{
    width: 703px;
    padding-top: 116px;
    margin: 0 auto;
  }
  .fv h2 {
    width: 86px;
}

/**********************************
section
**********************************/
  section {
    padding: 60px 0 112px 0;
    margin-top: 100px;
  }
  section h2 img {
    width: 100%;
    padding: 0 54px;
  }
  section ul.flex{
    display: block;
    padding: 0 40px;
    margin-top: 47px;
  }
  section li{
    width: 100%;
  }
  section li:nth-of-type(2){
    margin-top: 63px;
  }
  section li:last-of-type {
      margin-top: 51px;
  }  
  
/**********************************
footer
**********************************/
  footer h2{
    font-size: 1.6rem;
    width: 100px;
  }
  footer dl {
    width: 80%;
    text-align: left;
    margin: auto;
  }
  footer dt {
    margin: 20px auto 15px;
  }
  footer dd {
    line-height: 2;
  }
  small{
    font-size: 0.9rem;
    padding: 36px 0 23px 0;
  }

  .footer-logo {
      width: 100px;
      margin: 30px auto;
  }
  

  
}

@media screen and (max-width:700px){
    .fv {
    height: 1270px;
  }

}
@media screen and (max-width:650px){
    .fv {
    height: 1120px;
  }
  .fv .inner {
    top: 270px;
  }
}

@media screen and (max-width:600px){
    .fv {
    height: 1050px;
  }
  .fv .inner {
    top: 270px;
  }
}
@media screen and (max-width:550px){
    .fv {
    height: 950px;
  }
  .fv .inner {
    top: 250px;
  }
  .phone-frame div {
    border-radius: 0 0 40px 40px;
  }


}


/**********************************************************/
/* SP */
/**********************************************************/
@media screen and (max-width:500px){
/**********************************
fv
**********************************/
  .fv {
    height: 636px;
  }
  .fv .inner {
    top: 185px;
    left:50%;
    transform: translateX(-50%);
    width: 310px;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  .fv .txt1 {
    width: 375px;
    padding-top: 110px;
}
  .fv .txt2 {
    margin-top: 80px;
    width: 100%;
}
    .fv h2 {
    width: 42px;
  }
.phone-frame {
    width: 240px;
    height: 480px;
    margin-right: 28px;
}
  .phone-frame div{
    border-radius: 0 0 30px 30px;
}
.bg-slider {
    top: 70%;
    left: 50%;
    transform: translate(-50%,-70%);
    width: 89%;
    height: 95%;
    object-fit: contain;
}
/**********************************
section
**********************************/
section {
    padding: 70px 0 70px 0;
    margin-top: 13px;
}  
  
  
  
}
  
