p {
  text-align: justify;
  text-justify: inter-word;
}
/* 罫線のスタイル */
.section-divider {
  border-top: 1px solid #707070;
  width: 100%;
}
/* TOPセクション */
.top-section {
  position: relative;
  text-align: center;
  background-color: #f4f4f4;
  margin-top: 60px; /* ナビゲーションバーに被らないように上にマージンを追加 */
  overflow: hidden; /* 画像がセクションからはみ出さないようにする */
}
.top-image {
  width: 100%;
  height: 320px; /* PCで縦幅25% */
  overflow: hidden;
  position: relative;
}
.top-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像の縦横比を維持しつつ、上下中央を基準にトリミング */
}
.top-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.top-icon {
  width: 120px; /* PC表示で横幅30% */
  height: auto;
  margin-bottom: 10px;
}
.top-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap; /* 改行を防ぐ */
}
@media (max-width: 768px) {
  .top-image {
    height: 300px; /* モバイルで縦幅40% */
  }
  .top-icon {
  width: 100px; /* モバイル表示で横幅50% */
  }
}
/* 本文セクション */
.service-content-section {
  background-color: #ffffff;
  padding: 60px 0;
  background-image: radial-gradient(#F8F7E5 10%, transparent 10%), radial-gradient(#F8F7E5 10%, transparent 10%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  text-align: center;
}
.service-subtitle {
  font-family: 'Noto Serif Japanese', serif;
  color: #000000;
  margin-bottom: 20px;
}
.service-content-image {
  width: 80%;
  height: auto;
}
@media (max-width: 768px) {
.service-content-image {
  width: 100%;
  height: auto;
  }
}
/* ソリューションセクション */
.solution-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.solution-item {
  text-align: center;
  margin-bottom: 10px;
}
.solution-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
}
.solution-heading {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 5px;
  text-align: left;
}
.solution-text {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  color: #707070;
  line-height: 1.8;
}
/* 背景 */
.album-features-section {
  background-color: #ffffff;
  padding: 60px 0;
  background-image: repeating-linear-gradient(-45deg, white, white 3px, #F4F4F4 3px, #F4F4F4 6px);
}
/* タイトル */
.album-data-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  text-align: center;
  color: black;
  font-family: 'Noto Serif Japanese', serif;
  display: inline-block;
  border-bottom: 3px solid black;
  font-weight: normal;
  left: 50%;
  transform: translateX(-50%);
}
.album-data-title:before, .album-data-title:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}
.album-data-title:before {
  border: 24px solid;
  border-color: transparent;
  border-top-color: black;
  margin-left: -24px;
}
.album-data-title:after {
  border: 20px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -20px;
}
/* 見出しと本文テキスト */
.album-feature-heading {
  font-size: 20px;
  color: #333333;
  margin-bottom: 20px;
  font-weight: bold;
}
.album-feature-text {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  color: #707070;
  line-height: 1.8;
}
/* アルバムサイズ画像と説明文 */
.album-size-image {
  width: 100%;
  height: auto;
  margin-bottom: -10px;
}
.album-size-text {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 14px;
  color: #707070;
}
/* 区切りの罫線 */
.section-divider {
  border-top: 1px solid #707070;
  width: 100%;
  margin: 40px 0;
}
/* 製本ラインナップ */
.album-binding-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #dddddd;
}
/* オレンジ色の背景と白文字の製本名 */
.binding-title {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 14px;
  padding: 5px 10px;
  margin-bottom: 10px;
  background-color: #FFA500; /* オレンジ色の背景 */
  color: #ffffff; /* 白文字 */
  border-radius: 10px; /* 角丸の背景 */
  font-weight: bold;
  background-size: 0% auto;
}
.album-binding-text {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 14px;
  color: #707070;
  line-height: 1.8;
  text-align: left;
}
/* サービスセクション全体 */
.original-service-section {
  padding: 60px 0;
  background-color: #ffffff;
}
/* 見出し */
.service-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
/* ロゴ画像 */
.service-logo {
  width: 80%; /* ロゴのサイズは調整可能 */
  margin-top: 15px;
  margin-bottom: 20px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}
/* 説明テキスト */
.service-text {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  color: #707070;
  line-height: 1.8;
}
/* サービス画像 */
.service-image {
  width: 100%;
  height: auto;
}
/* 区切りの罫線 */
.section-divider {
  border-top: 1px solid #707070;
  width: 100%;
  margin: 40px 0;
}
/* 矢印リンクボタン */
.detail-link-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 20px 0; /* 必要に応じて上下のマージンを調整 */
}

.detail-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  color: #707070;
    font-size: 18px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.detail-text {
  margin-right: 10px;
}

.yazirusi {
  display: flex;
  align-items: center;
}

.yazirusi::after {
  content: '';
  width: 50px;
  height: 10px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  transform: skew(45deg);
  transition: all 0.3s ease;
}
#ai_face {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#ar_video {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#progress_sharing {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#drone_aerial {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#panoramice {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#variable_album {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#cloud_album {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#indesign_script {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
#memorial_book {
  scroll-margin-top: 80px; /* ヘッダーの高さ分だけ余白を確保 */
}
