@charset "UTF-8";
/*共通*/
html{
    font-size: 100%;
}

body{
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    max-width: 750px;
}

img{
    width:100%;
}

a{
    text-decoration:none;
    color: inherit;
}

footer a:hover{
  opacity: 0.8;
}

section{
    position: relative;
}

section#form {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

footer{
    text-align: center;
    line-height: 1.2;
    background-color: #000;
    color: #fff;
    font-family: "Noto Sans JP", serif;
    padding: 10px 0;
    font-size: 12px;
}

/*横スクロール*/
.mobile-scroll {
    width: 90%; 
    overflow-x: scroll;
    position: absolute;
    bottom: 7%;
    left: 5%;
}

.scroll-img{
    width: 350%;
}

/*アコーディオン*/
.accordion{
    background-color: #f1f1f1;
    padding: 0 5%;
}

.accordion-header{
    position: relative; /* 矢印アイコンの位置調整のため */
    list-style: none; /* デフォルトの矢印を消す */
    transition: background-color 0.3s; /* 背景色の変化にアニメーションを適用 */
  }

  .accordion-header:hover {
    opacity: 0.9;
  }

  /* カスタム矢印のスタイル */
  .accordion-header::after {
    content: '∨';
    position: absolute;
    right: 10%;
    top: 50%;
    transition: transform 0.3s ease;
    color: #fff;
  }
  
  /* アコーディオンが開いている時の矢印のスタイル */
  .accordion[open] .accordion-header::after {
    transform: rotate(180deg); /* 矢印を180度回転 */
  }

  /* WebKitベースのブラウザでデフォルトの矢印を消す */
  .accordion .accordion-header::-webkit-details-marker {
    display: none;
  }



/*-----btn-----*/

.btn_1{
    position: absolute;
    top: 49.3%;
    right: 10%;
    width: 80%;
}

.btn_2{
    position: absolute;
    bottom: 7.6%;;
    right: 10%;
    width: 80%;
}

.btn_3{
    position: sticky;
    bottom: 0;
    padding-top: 3px;
    max-width: 750px;
    width: 100%;
}
.btn_3.anim-box{
  text-align: center;
}

.anim-box {
    animation: poyopoyo 3s ease-out infinite;
    opacity: 1;
  }
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    10%, 50%, 70%,90% {
      transform: scale(0.85);
    }
  }

@media screen and (min-width:750px) {
  .btn_3 img{
    width: 70%;
}
}

footer{
  background-color: #ff8900;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

