@charset "UTF-8";
body {
    background: url("StockSnap_TWNP864IW9.webp") no-repeat top center;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  
  *{
    margin: 10;
    padding:0;
    box-sizing: border-box;
    outline: none;
    font-family: serif;
}
  .home-content {
    padding: 50px 20px;
    text-align: center;
    color: gray;
  }
  
  .page-title {
    margin: 0;
    font-size: 3em;
    font-family: 'Philosopher', serif;
    /* text-transform: uppercase; */
    font-weight: normal;
  }

  .scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px; /* カードの間隔 */
    padding: 20px;
    scroll-behavior: smooth; /* スムーズスクロール */
    -webkit-overflow-scrolling: touch; /* iOSのスクロールを滑らかに */
  }
  
  .scroll-item {
    flex: 0 0 90%; /* カードの幅 (90%にするとほぼ画面いっぱい) */
    max-width: 400px; /* PCでの見栄え調整 */
    height: 250px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    scroll-snap-align: center;
  }
  
  画像のスタイル
  .app-contents img {
  }
  
  .app-contents a {
    display: inline-block;
  }

  .app-img {
    display:flex;
    justify-content: space-around;
    padding: 50px;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    margin-top: 50px;
    height: 100px;
  }
  
  .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

.app-contents {
    display:flex;
    justify-content: space-around;
    margin-bottom: 50px;
    margin-top: 50px;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    color: white;
    padding: 20px;
}

.form-group {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    font-size: 16px;
}

.form-input:focus {
    border-color: #6A5ACD;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.form-button {
  background-color: #6A5ACD;
  color: #FFFFFF;
  font-family: 'Times New Roman', serif;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 10px;
  border: 2px solid #483D8B;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #483D8B;
}

/* ローディング画面のスタイル */
#loading {
  display: none; /* 最初は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ローディングのアニメーション */
.loader {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid #fff;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.inquiry-btn {
  display: block;
  width: 150px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background-color: greenyellow;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}

.inquiry-btn:hover {
  background-color: olivedrab;
  color: #fff;
  border-radius: 10px;
}