body {
  font-family: Noto Sans JP;
  margin: 0;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  color: #333;
}

h2, h3, p {
  margin: 0;
}

#fullpage {
  position: relative;
  top: 0;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
}

@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-button {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.nav-button.reserve-button {
  color: #01a1bc;
}

/* fullPage.js用の設定 */
.section {
  position: relative;
  height: 100vh;
  padding-top: 80px;
}

.section[data-anchor="top"] {
  padding-top: 0;
}

@media (max-width: 768px) {
  .section {
    height: auto !important;
    padding: 42px 16px 0px 16px;
  }

  .section[data-anchor="top"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .section > div {
    transform: none;
    top: 0;
  }

  .section[data-anchor="top"] {
    padding-top: 150px;
  }
}

@media (max-width: 768px) {
  /* fullPage.js関連のスタイルをリセット */
  html.fp-enabled,
  .fp-enabled body {
    overflow: visible !important;
    height: auto !important;
  }

  #fp-nav {
    display: none !important;
  }
}

/* TOP */

.top-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top-image {
  width: 100%;
  flex: 1;
}


@media (max-width: 768px) {
  .top-video {
    height: auto;
  }
}

/* スポサポレンタカーとは */

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-image {
  max-width: 50%;
}

.about-image img {
  padding: 42px 0;
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 25px;
  box-shadow: 8px 9px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    max-width: 100%;
    margin-bottom: 2rem;
    top: -30px;
  }

  .about-image img {
    padding: 0;
    height: auto;
  }
}

.about-text {
  flex: 1;
}

.header-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 2rem;
}

.header-description {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .header-title {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .header-description {
    font-size: 14px;
    letter-spacing: 0;
  }
}

/* 連携チーム一覧 */

.teams-content {
  max-width: 1200px;
  margin: 0 auto;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin: 0 42px;
}

@media (max-width: 768px) {
  .team-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0;
  }
}

.card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.card-image {
  height: 270px;
  background-color: #f0f0f0;
}

@media screen and (max-width: 768px) {
  .card-image {
    height: 230px;
  }
}

.team-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-image:hover {
  transform: scale(1.1);
}

.team-button {
  width: auto;
  padding: 1.5rem 4rem;
  border: none;
  border-radius: 25px 0 25px 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .team-button {
    padding: 1rem;
    width: 215px;
  }
}

.ryukyu-asteeda {
  background-color: #01a1bc;
}

.amitie-ryukyu {
  background-color: #45B7B8;
}

.golden-kings {
  background-color: #DBE169;
}

.see-more {
  text-align: center;
  margin-top: 2rem;
}

.see-more-button {
  padding: 0.75rem 2rem;
  background-color: #01a1bc;
  font-size: 14px;
  color: white;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

/* サービスの特徴 */

.features-content {
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  text-align: left;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.features-description {
  text-align: left;
  margin: 0 0 3rem 1rem;
  max-width: 600px;
}

.feature-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

.icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden; /* 追加: 画像を丸く切り取る */
  display: flex; /* 追加: 画像を中央に配置 */
  justify-content: center; /* 追加: 画像を水平方向に中央揃え */
  align-items: center; /* 追加: 画像を垂直方向に中央揃え */
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 追加: 画像のアスペクト比を保持しながら領域を埋める */
}

.feature-title {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: bold;
}

/* ラッピング車両 */

.rappings-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.rappings-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .rappings-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.rappings-card img {
  width: 100%; /* 画像の幅を親要素に合わせる */
  height: auto; /* アスペクト比を保持 */
  max-width: 400px; /* 画像の最大幅を設定 */
  max-height: 400px; /* 画像の最大高さを設定 */
  object-fit: contain; /* 画像のアスペクト比を保持しながら領域を埋める */
  border-radius: 25px;
}

/* スポサポレンタカーがもたらす効果 */

.effect-content {
  max-width: 1200px;
  margin: 0 auto;
}

.effect-cards {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 0 20px;
}

.effect-card {
  background: #EF8E8E; /* 各カードで色を変更 */
  border-radius: 60px;
  padding: 24px;
  width: 400px;
  height: 300px;
  color: white;
  text-align: center;
}

.effect-card:nth-child(2) {
  background: #69BCC5; /* 2番目のカード色 */
}

.effect-card:nth-child(3) {
  background: #949490; /* 3番目のカード色 */
}

.effect-card .number {
  font-family: 'Bebas Neue', cursive;
  font-size: 96px;
  text-align: right;
  font-weight: bold;
  letter-spacing: 6px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .effect-card .number {
    font-size: 60px;
  }
}

.effect-card h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .effect-card h3 {
    font-size: 18px;
  }
}

.effect-card p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .effect-card p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .effect-cards {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .effect-card {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
}

/* メリット */

.point-content {
  padding-top: 40px;
}

.point-title {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .point-title {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}

.point-description {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .point-description {
    font-size: 14px;
  }
}

.point-item {
  position: relative;
  min-height: 200px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .point-item {
    margin-bottom: 20px;
  }
}

.point-image {
  position: absolute;
  width: 30%;
  height: auto;
}

.point-image img {
  width: 100%;
  height: auto;
}

.point-image.left {
  top: 30px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .point-image.left {
    display: none;
  }
}

.point-image.right {
  top: -150px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .point-image.right {
    display: none;
  }
}

.point-text {
  position: relative;
  padding: 34px 112px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.point-text.left {
  margin-left: auto;
  margin-right: 30%;
}

@media screen and (max-width: 768px) {
  .point-text.left {
    margin-right: 0;
  }
}

.point-text.right {
  margin-right: auto;
  margin-left: 30%;
}

@media screen and (max-width: 768px) {
  .point-text.right {
    margin-left: 0;
  }
}

.point-text .number {
  font-family: 'Bebas Neue', cursive;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .point-text .number {
    font-size: 60px;
  }
}

.point-text p {
  font-size: 18px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .point-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.highlight {
  color: #01a1bc;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .point-image {
    margin-bottom: 20px;
  }

  .point-text {
    padding: 20px;
  }
}

/* お知らせ */

.news-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /* padding: 1rem; */
}

.news h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.news-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .news-cards {
    margin: 0 16px;
  }
}

.news-card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media screen and (max-width: 768px) {
  .news-card {
    min-width: 100%;
  }
}

.news-image {
  position: relative;
  background: #FFB366;
  padding-bottom: 60%;
  border-radius: 0 0 0 45px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.news-title {
  font-size: 1rem;
  padding: 24px;
}

@media screen and (max-width: 768px) {
  .news-title {
    padding: 12px;
  }
}

.news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px 16px 24px;
}

@media screen and (max-width: 768px) {
  .news-wrapper {
    padding: 0 12px 12px 12px;
  }
}

.news-category {
  font-size: 0.8rem;
  color: #D9D9D9;
  margin: 0;
}

.news-date {
  font-size: 0.8rem;
  color: #D9D9D9;
  margin: 0;
}

@media (max-width: 768px) {
  .news-card {
    flex: 0 0 100%;
  }
}

/* ラッピング企業募集 */

.recruit-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.recruit-image {
  display: block;
  width: 40%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .recruit-image {
    width: 60%;
    height: auto;
  }
}

/* お問い合わせ */

.contact-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact-form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 0 10px; /* モバイル用にパディングを調整 */
    box-sizing: border-box;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #cdc7c7;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-button {
  display: block;
  width: 200px;
  margin: 30px auto 0;
  padding: 15px;
  background-color: #01a1bc; /* または任意の色 */
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-button:hover {
  opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #01a1bc;
  box-shadow: 0 0 0 2px rgba(225, 91, 100, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  font-size: 14px;
  color: #aaa;
}


.form-group.error input,
.form-group.error textarea {
  border-color: #01a1bc;
}

/* フッター */

.site-footer {
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
  }

  .header-nav,
  .footer-nav {
    /* flex-direction: column; */
    align-items: center;
  }

  .logo {
    margin-bottom: 1rem;
  }
}

/* ナビゲーションドットのカスタマイズ */
#fp-nav ul li a span {
  background: #333;
}

#fp-nav ul li a.active span {
  background: #01a1bc;
}

/* ツールチップのフォントカラー変更 */
#fp-nav ul li .fp-tooltip {
  color: #333;
  font-size: 12px;
  font-weight: bold;
}

#fp-nav ul li:hover .fp-tooltip {
  color: #01a1bc;
}

.fp-watermark {
  display: none !important;
}

@media (max-width: 768px) {
  /* fullPage.js関連のスタイルをリセット */
  html.fp-enabled,
  .fp-enabled body {
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
  }

  .fp-scrollable .fp-section:not(.fp-auto-height):not([data-percentage]),
  .fp-scrollable .fp-slide:not(.fp-auto-height):not([data-percentage]),
  .fp-scrollable.fp-responsive .fp-is-overflow.fp-section:not(.fp-auto-height):not([data-percentage]) {
    min-height: auto !important; /* ここでリセット */
  }

  #fp-nav {
    display: none !important;
  }
}

/* フッターの調整 */
.site-footer {
  padding: 2rem 0;
  margin-top: 0; /* 削除 */
}

html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 768px) {
  html.fp-enabled,
  .fp-enabled body {
    overflow: visible !important;
    height: auto !important;
  }
}

/* ヘッダーの調整 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* フッターセクションの調整 */
.section.fp-auto-height {
  height: auto;
  padding: 0;
}


/* 連携企業一覧 */
.company-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.company-container {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center; */
  display: flex;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .company-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 16px
  }
}

.company-text {
  margin-right: 20px; /* テキストと画像の間にスペースを追加 */
}

.company-image {
  width: 100%;
}

.company-image img {
  max-width: 240px; /* 画像の最大幅を設定 */
  height: auto;
}

@media (max-width: 768px) {
  .company-image img {
    max-width: 100%;
  }
}

/* 利用方法 */

.step-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0 42px;
}

@media (max-width: 768px) {
  .step-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0;
  }
}

.step-card {
  background-color: #fff;
  border-radius: 25px;
  /* overflow: hidden; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center; /* 中央揃え */
}

.step-card-image {
  height: 180px;
  border-radius: 25px;
}

@media (max-width: 768px) {
  .step-card-image {
    height: 240px;
  }
}

.step-image {
  width: auto; /* 幅を自動に変更 */
  height: 100%;
  object-fit: contain; /* coverからcontainに変更 */
  max-width: 70%; /* 最大幅を設定 */
}

@media (max-width: 768px) {
  .step-image {
    max-width: 60%;
  }
}

.step-card-content {
  position: relative;
  text-align: center;
}

.step-card-number {
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #333;
  color: white;
  padding: 15px;
  border-radius: 25px 0 25px 0;
  font-weight: bold;
  font-size: 20px;
}

@media (max-width: 768px) {
  .step-card-number {
    top: -240px;
  }
}

.step-card-description {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #333;
  color: white;
  padding: 16px 8px;
  border-radius: 15px 0 25px 15px;
  font-size: 14px;
  font-weight: bold;
  width: 160px;
}

@media (max-width: 768px) {
  .step-card-description {
    width: 70%;
    font-size: 13px;
  }
}

.step-card-explanation {
  margin-top: 10px;
  color: #333;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 768px) {
  .step-card-explanation {
    font-size: 13px;
  }
}

/* 拠点一覧 */

.bese-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.base-cards {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center; */
  display: flex;
  justify-content: center;
  gap: 20px;
  /* padding: 20px; */
}

@media (max-width: 768px) {
  .base-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.base-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 25vw;
  height: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .base-card {
    width: 100%;
    height: auto;
  }
}

.card-image {
  background-color: #e0e0e0;
  flex: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  padding: 10px;
}

.card-info h3 {
  font-size: 20px;
  margin: 12px;
}

@media (max-width: 768px) {
  .card-info h3 {
    font-size: 16px;
  }
}

.card-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* 料金 */

.price-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

@media (max-width: 768px) {
  .price-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.price-card {
  text-align: center;
}

.price-card img {
  width: 220px;
  height: auto;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .price-card img {
    width: 100%;
  }
}

.price-info h3 {
  font-size: 16px;
  margin: 5px 0;
}

.price-info p {
  margin: 5px 0;
}

.price {
  font-size: 24px;
  font-weight: bold;
}
