/*全体設定-------------------------------*/

* {
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: #1b1b1e;
  font-size: 15px;
  line-height: 2em;
  font-weight: 500;
  margin-top: 85px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a:link {
  color: #fff;
}

/*
a:visited {
  color: #2c3e50;
}


a:hover {
  color: #2c3e50;
  text-decoration: none;
}
*/
a:active {
  color: #ffffff;
}

#container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container {
  position: relative;
  z-index: 1; /* 親要素が最前面に出ないように、ボタンが最前面になるように設定 */
}

#nav li a,
#g-nav-list li a {
  color: #ffffff;
  /* 通常時の文字色 */
  text-decoration: none;
  /* 下線なし */
  font-size: 1rem;
  transition: color 0.3s;
  /* ホバー時に色が変わるアニメーション */
}

#nav li a:hover,
#g-nav-list li a:hover {
  color: #f76c5e;
  /* ホバー時の色 */
  text-decoration: underline;
  /* ホバー時に下線 */
}

/*メニュー------------------------*/
#nav {
  display: block;
  margin: 10px 100px 20px auto;
}


#nav ul {
  display: flex;
  list-style-type: none;
}

#nav li a {
  display: block;
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: #ffffff;
}

#g-nav-list ul {
  display: block;
  list-style-type: none;
  text-decoration: none;
  padding: 2rem 1rem;
  font-size: 120%;
}
.scroll-top {
  position: fixed;
  bottom: 20px;
  /* 画面の下から20px */
  right: 20px;
  /* 画面の右から20px */
  padding: 10px 15px;
  z-index: 1000;
  /* 他の要素より前に出すため */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}
/* スマートフォン（最大幅480px） */
@media screen and (max-width: 480px) {
  .scroll-top {
    bottom: 15px; /* 画面下から少し近づける */
    right: 15px; /* 画面右から少し近づける */
    padding: 6px 10px; /* ボタンのパディングを小さく */
    font-size: 14px; /* フォントサイズを少し小さく */
  }
}

/* タブレット（最大幅768px） */
@media screen and (max-width: 768px) {
  .scroll-top {
    bottom: 20px; /* 画面下から20px */
    right: 20px; /* 画面右から20px */
    padding: 8px 12px; /* ボタンのパディングを少し小さく */
    font-size: 16px; /* フォントサイズを少し小さく */
  }
}

/* 小さめのPC画面（最大幅1024px） */
@media screen and (max-width: 1024px) {
  .scroll-top {
    bottom: 20px; /* 画面下から20px */
    right: 20px; /* 画面右から20px */
    padding: 8px 14px; /* ボタンのパディングを少し小さく */
    font-size: 16px; /* フォントサイズを少し小さく */
  }
}

/* 大きいPC画面（最小幅1025px） */
@media screen and (min-width: 1025px) {
  .scroll-top {
    bottom: 20px; /* 画面下から20px */
    right: 20px; /* 画面右から20px */
    padding: 10px 15px; /* 標準のパディング */
    font-size: 18px; /* フォントサイズはそのまま */
  }
}
@media screen and (max-width: 900px) {
  #nav {
    display: none;
  }
}


/*ヘッダー-------------------------*/
header {
  position: absolute;
  z-index: 999;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 85px;
  display: flex;
  background: #003366;
  margin-bottom: 0;
}

#top_logo {
  display: block;
  width: 200px;
  margin: 25px;
}
.contact-note {
  color: gray;
}

/*メインビジュアル start-------------------------*/
.main-visual {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #003366, #0066cc);
  /* 背景色 */
  z-index: 0;
  /* 背景画像がコンテンツの後ろに来るように */
}

.main-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #003366, #0066cc);
  /* 背景色 */
  background-image: url('../images/p_pt_0252_m_pt_02520_t.png');
  /* 画像のURL */
  background-size: auto;
  /* 画像を適切なサイズに縮小して繰り返す */
  background-position: top left;
  background-repeat: repeat;
  /* 画像を繰り返し表示 */
  opacity: 0.2;
  /* 透過度を設定 */
  z-index: -1;
  /* 背景画像がコンテンツの後ろに来るように */
}

/* main-content01 セクション */
.main-content01 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  /* 上部に余白を加える */
}

.main-content01 img {
  max-width: 50%;
  height: auto;
  object-fit: contain;
}

.cta-container p {
  position: relative;
  z-index: 1; /* 親要素も最前面に配置 */
  font-size: 150%;
  font-weight: bold;
  text-align: center;
}

/* main-content02 セクション */
.main-content02 {
  display: flex;
  justify-content: center;
  /* 中央寄せ */
  align-items: center;
  gap: 20px;
  /* 左右の要素間の間隔を狭くする */
  border-radius: 8px;
  width: 70%;
  /* 幅を100%に設定 */
  margin-left: 15%;
  padding: 0 20px;
  /* 左右の余白を少し追加 */
}
.seigen {
  color: white; 
  font-size: 15px; 
  margin-top: -10px;
}

/* 左側のコンテンツ */
.main-content02-left {
  flex: 1 1 45%;
  /* それぞれのセクションを画面幅の45%に設定 */
  text-align: center;
}

/* 右側の画像 */
.main-content02-right {
  flex: 1 1 45%;
  text-align: center;
}

.main-content02-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 左側のテキスト */
.free-trial-text {
  font-size: 2rem;
  color: #ffffff;
  /* 白色 */
  margin-bottom: 20px;
  font-weight: bold;
}

/* ボタンスタイル */
.cta-button {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 5% 15%;
  border: 4px solid #000;
  font-weight: bold;
  font-size: 200%;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  position: relative; /* これを追加 */
  z-index: 10; /* 最前面に配置 */
}

/* ボタンホバー時 */
.cta-button:hover {
  background: #ff4d4d;
}

/* main-content03 セクション */
.main-content03 {
  display: flex;
  justify-content: center;
  /* 横方向中央揃え */
  align-items: center;
  /* 縦方向中央揃え */
  height: 200px;
  /* 高さを適切に設定 */
  padding: 20px;
  margin-top: -100px;
}

/* main-content03 の文字 */
.main-content03-text {
  font-size: 2.5rem;
  /* 文字サイズを大きめに */
  font-weight: bold;
  /* 文字を太く */
  color: white;
  /* 白色 */
  line-height: 1.4;
}

/* 強調されたテキスト */
.highlight-text {
  background-color: #ff6b6b;
  /* 赤い背景 */
  color: white;
  /* 白色 */
  padding: 5px 10px;
  /* パディングを追加して背景を広げる */
  border-radius: 5px;
  /* 角を丸く */
}

/*レスポンシブ対応*/
/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .main-content01 {
    flex-direction: column;
    /* 縦並び */
    align-items: center;
    /* 中央揃え */
    padding-top: 40px;
    /* 上部に余白を加える */
  }

  .main-content01 img {
    max-width: 80%;
    /* 画像の幅を80%に */
  }

  .main-content02 {
    flex-direction: column;
    /* 縦並びに変更 */
    margin-left: 0;
    /* 左寄せ解除 */
    margin-top: 40px;
    /* 上部に余白を追加 */
  }

  .main-content02-left,
  .main-content02-right {
    text-align: center;
    /* 中央揃え */
    width: 100%;
    margin-left: 50%;
    margin-bottom: 10px;
    /* 下部に余白を追加 */
  }

  .main-content03 {
    margin-left: 0;
    /* 左寄せ解除 */
  }
}

/* 小さな画面（スマホ）対応 */
@media screen and (max-width: 480px) {
  .main-content01 img {
    max-width: 100%;
    /* さらに小さな画面で画像を大きく */
  }

  .main-content02-left {
    font-size: 0.5rem;
    /* 文字サイズを少し小さく */
  }

  .cta-button {
    font-size: 150%;
    /* ボタンサイズを調整 */
    font-size: 1.0rem;
    /* 文字サイズを少し小さく */
  }

  .main-content03-text {
    font-size: 1.5rem;
    /* 文字サイズを調整 */
  }
 .seigen{
    font-size: 10px
  }
}

/*メインビジュアル end-------------------------*/



/* サブタイトル */
.section-subtitle {
  font-size: 2rem;
  background-color: #ff1900c6;
  /* 赤色 */
  color: #fff;
  /* 文字色を白 */
  padding: 10px 20px;
  /* 横幅に余裕を持たせる */
  border-radius: 5px;
  margin-bottom: 30px;
  display: inline-block;
  /* 背景色の幅が文字に応じて可変に */
  text-align: center;
  margin-left: auto;
  /* 左右自動でセンタリング */
  margin-right: auto;
  /* 左右自動でセンタリング */
}

/* 見出しデザイン */
.heading-title {
  font-size: 2rem;
  width: 90%;
  color: #003366;
  /* ネイビー色 */
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: left;
  /* 左寄せ */
  margin-left: 0%;
  /* 左に余白を追加して左寄せに調整 */
  border-radius: 8px;
  /* 角を丸くする */
}

/* 見出し下の下線（薄青から薄オレンジのグラデーション） */
.heading-title::after {
  content: "";
  display: block;
  width: 90%;
  /* 画面幅の8割の長さに設定 */
  height: 10px;
  /* 下線の太さを増加 */
  margin-top: 10px;
  background: linear-gradient(to right, #a1c4fd, #ff9d7f);
  /* 薄青から薄オレンジのグラデーション */
  border-radius: 4px;
  /* 下線の角を丸くする */
}

/******************************************* できる事start *****************************************/
/* セクションの全体設定 */
/* ai-shift-section 全体設定 */
.ai-shift-main-section {
  background-color: #c7d7ef;
  /* 背景色 */
  padding: 40px 0;
  display: grid;
}

.ai-shift-section {
  margin: 0 auto;
  /* 横中央揃え！ */
  background-color: #c7d7ef;
  /* 背景色 */
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 横2列 */
  grid-gap: 20px;
  justify-items: center;
}

/* 各コンテンツアイテム */
.ai-shift-item {
  background-color: #003366;
  /* 背景色ネイビー */
  color: #fff;
  /* 文字色 */
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
}

/* アイテムのタイトル */
.item-title {
  font-size: 1.5rem;
  color: #fff;
  /* 文字色は白 */
  display: flex;
  align-items: center;
}

.item-number {
  font-size: 3rem;
  /* 数字を大きく */
  color: #c7d7ef;
  /* 数字の文字色 */
  margin-right: 15px;
  /* 数字とタイトルの間隔 */
}

/* 下線 */
.underline {
  width: 70%;
  /* 横に広がる下線 */
  height: 5px;
  /* 下線の高さ */
  background: linear-gradient(to right, #a1c4fd, #ff9d7f);
  /* グラデーション */
  border-radius: 4px;
}

/* 画像部分 */
.item-image {
  margin-top: 10px;
}

.item-description {
  font-size: 1rem;
  color: #fff;
  margin-top: 10px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .ai-shift-section {
    grid-template-columns: 1fr;
    /* 画面幅が小さくなると1列に並べる */
  }

  .ai-shift-item {
    padding: 15px;
    /* 小さい画面で少しパディングを減らす */
  }

  .item-title {
    font-size: 1.2rem;
    /* タイトルの文字サイズを調整 */
  }

  .item-description {
    font-size: 0.9rem;
    /* 説明文の文字サイズを調整 */
  }
}


/******************************************* できる事end *****************************************/

/******************************************* 事例start *****************************************/
.before-after-section {
  text-align: center;
  padding: 0px 20px;
}

.before-after-img-wrapper {
  max-width: 40%;
  /* 画面幅に応じて調整 */
  width: 100%;
  margin: 0 auto;
}

.before-after-img {
  width: 100%;
  /* 親に合わせて拡大縮小 */
  height: auto;
  /* アスペクト比保持 */
  display: block;
}

.below-image-wrapper {
  margin-top: 30px;
}

.extra-image-wrapper {
  margin-top: 10px;
  margin-bottom: 50px;
}

.annotation {
  margin-left: 20%;
}

.step-section {
  width: 80%;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  margin-bottom: -50px;
}

.step-item {
  margin-bottom: 60px;
}

.step-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
  margin-left: 10%;
}

.step-image-wrapper {
  max-width: 1200px;
  /* お好みで */
  margin: 0 auto;
}

.step-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.step-title-filed {
  width: 10%;
}

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  background-color: #003366;
  /* ネイビー背景 */
  color: #fff;
  /* 文字色を白に */
  padding: 10px 20px;
  /* 文字の周りに余白を追加 */
  border-radius: 8px;
  /* 角を丸くする */
  display: inline-block;
  /* 横幅を文字に合わせて可変に */
}

/* タブレット（1024px以下） */
@media screen and (max-width: 1024px) {
  .before-after-img-wrapper {
    max-width: 60%;
    /* PCより広げる */
  }

  .annotation {
    margin-left: 50%;
  }

  .step-description {
    font-size: 0.9rem;
    margin-left: 0px;
  }
}

/* スマホ・小さいタブレット（768px以下） */
@media screen and (max-width: 768px) {
  .before-after-img-wrapper {
    max-width: 90%;
    /* ほぼ画面いっぱい */
  }

  .annotation {
    margin-left: 50%;
    font-size: 0.8rem;
  }

  .step-description {
    font-size: 0.8rem;
    margin-left: 0px;
  }
}

/* スマホ超小型（480px以下） */
@media screen and (max-width: 480px) {
  .before-after-img-wrapper {
    max-width: 100%;
  }

  .annotation {
    margin-left: 50%;
    font-size: 0.7rem;
  }

  .step-description {
    font-size: 0.7rem;
  }

  .step-description {
    font-size: 0.8rem;
    margin-left: 0px;
  }
}

/******************************************* 事例end *****************************************/

/******************************************* 主な機能start *****************************************/
/* #main-features セクション */
#main-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* セクション内のアイテムを中央に配置 */
  justify-content: center;
  margin-top: 0;
}

/* feature-block */
.feature-block {
  position: relative;
  background: linear-gradient(to bottom, #003366, #0066cc);
  /* ネイビーのグラデーション */
  padding: 20px;
  padding-bottom: 40px;
  /* 下部の余白を増やして高さを調整 */
  border-radius: 10px;
  margin-top: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* 各段の間隔 */
  width: 100%;
  max-width: 1900px;
  margin-left: auto;
  /* 左寄せ解除 */
  margin-right: auto;
  /* 右寄せ解除して中央寄せ */
  height: auto;
  /* 自動調整 */
}

.feature-block::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid #003366;
  /* 吹き出しの三角形部分の色をネイビーに */
}

/* 吹き出しのコンテンツの配置 */
.feature-bubble {
  display: flex;
  justify-content: center;
  /* 横方向中央揃え */
  align-items: center;
  /* 縦方向中央揃え */
  flex-wrap: wrap;
  /* 画面サイズに合わせてラップ */
  width: 80%;
  /* 親要素の幅いっぱいに広げる */
  text-align: center;
  /* テキスト中央揃え */
  margin-left: 10%;
}


/* 左右に並べる */
.features-content {
  display: flex;
  justify-content: center;
  /* 横並びのとき中央寄せ */
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto;
  /* 横中央寄せ */
}

.features-text-description {
  font-size: 4.0rem;
  /* 文字サイズを少し大きめに */
  color: #003366;
  /* ネイビー色に変更 */
  line-height: 1.6;
  font-weight: bold;
  /* 文字を太字にして強調 */
}

/* 左の画像 */
.feature-bubble-left {
  flex: 0 0 auto;
  max-width: 40%;
  /* PCでは40% */
  text-align: center;
}

.feature-bubble-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* 右の説明 */
.feature-bubble-right {
  flex: 1 1 auto;
  max-width: 50%;
  /* PCでは50% */
  padding: 20px;
  text-align: left;
  background-color: transparent;
  border-radius: 8px;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  /* 見出しの文字色を白に */
}

.feature-description {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}

/* 下に3列配置するためのスタイル */
.feature-bubble-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-bubble-row .feature-item {
  width: calc(33.333% - 20px);
  /* 3列に分ける */
  text-align: center;
  margin-bottom: 20px;
}

.feature-bubble-row .feature-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media screen and (max-width: 1024px) {
  .features-content {
    flex-direction: column;
    /* 縦並びに */
    align-items: center;
    /* 中央寄せ */
    gap: 20px;
  }

  .feature-bubble-left,
  .feature-bubble-right {
    max-width: 90%;
    /* 幅を広げすぎない */
    margin: 0 auto;
    /* 中央寄せ */
  }

  .feature-bubble-left img {
    max-width: 100%;
  }

  .feature-bubble-right {
    text-align: center;
    /* 説明テキストも中央寄せ */
  }

  .features-text-description {
    font-size: 3.0rem;
    /* 文字サイズを少し大きめに */
    color: #003366;
    /* ネイビー色に変更 */
    line-height: 1.6;
    font-weight: bold;
    /* 文字を太字にして強調 */
  }
}

/* レスポンシブ対応（スマホ、タブレット） */
@media screen and (max-width: 768px) {
  .features-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .feature-bubble-left,
  .feature-bubble-right {
    max-width: 100%;
    margin: 0 auto;
  }

  .feature-bubble-left img {
    max-width: 100%;
  }

  .feature-bubble-right {
    text-align: center;
  }

  .features-text-description {
    font-size: 2.5rem;
    /* 文字サイズを少し大きめに */
    color: #003366;
    /* ネイビー色に変更 */
    line-height: 1.6;
    font-weight: bold;
    /* 文字を太字にして強調 */
  }
}

/******************************************* 主な機能end *****************************************/

/******************************************* シフト画面start *****************************************/

/* シフト画面セクション */
#shift-screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  position: relative;
  /* 吹き出しの位置を調整するために必要 */
}

/* 上向きの吹き出し（三角形） */
#shift-screen::before {
  content: "";
  position: absolute;
  top: -20px;
  /* セクションの上に吹き出しを配置 */
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid #fff;
  /* 吹き出しの色を白に */
}

/* 概要のテキスト */
.shift-overview {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 1600px;
  width: 100%;
  /* 説明文の幅を調整 */
  margin-left: auto;
  margin-right: auto;
}

/* 小見出し */
.shift-subtitles {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  margin-bottom: 50px;
  flex-direction: column;
  /* 縦並びに変更 */
}

.shift-subtitle {
  width: 100%;
  /* 横幅を100%に調整 */
  text-align: left;
}

.shift-subtitle h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #003366;
}

.shift-subtitle p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* 画面紹介セクション */
.screen-blocks {
  display: flex;
  flex-direction: column;
  /* 縦並びに変更 */
  gap: 20px;
  justify-content: center;
  width: 90%;
}

.screen-block {
  width: 100%;
  /* 各ブロックの幅を100%に設定 */
  margin-bottom: 20px;
  text-align: left;
}

/* 画面名のタイトル部分 */
.screen-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  background-color: #003366;
  /* ネイビー背景 */
  color: #fff;
  /* 文字色を白に */
  padding: 10px 20px;
  /* 文字の周りに余白を追加 */
  border-radius: 8px;
  /* 角を丸くする */
  display: inline-block;
  /* 横幅を文字に合わせて可変に */
}

.screen-description {
  font-size: 1rem;
  margin-bottom: 20px;
  margin-left: 10%;
}

/* 画面紹介セクションの画像 */
.screen-image {
  max-width: 80%;
  /* 親要素の幅を超えないように設定 */
  height: auto;
  overflow: hidden;
  margin-left: 15%;
}

.screen-image img {
  max-width: 80%;
  /* 画像の最大幅を100%に設定 */
  height: auto;
  border-radius: 8px;
  /* 角を丸く */
}

/* 説明なしのブロック */
.screen-block.no-description .screen-description {
  display: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  #shift-screen {
    padding: 20px;
  }

  .shift-subtitles {
    flex-direction: column;
    align-items: center;
  }

  .shift-subtitle {
    width: 100%;
    /* 100%に調整 */
    margin-bottom: 30px;
  }

  .shift-subtitle h3 {
    font-size: 1.2rem;
  }

  .screen-block {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .shift-subtitle h3 {
    font-size: 1.1rem;
  }

  .screen-block {
    width: 100%;
  }
}

/******************************************* シフト画面end *****************************************/

/******************************************* 料金start *****************************************/
/* ご利用料金セクション */
.pricing-section {
  background-color: #c7d7ef;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* ご利用料金テーブル */
.pricing-table table {
  width: 100%;
  /* 幅を100%に設定 */
  max-width: 1000px;
  /* 最大幅を大きく */
  border-collapse: collapse;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  /* フォントサイズを大きく */
  margin-bottom: 50px;
}

.pricing-table th,
.pricing-table td {
  padding: 35px;
  /* セルの内側の余白を大きく */
  border: 1px solid #ccc;
  font-size: 1.6rem;
  /* セル内のフォントサイズを大きく */
}

.pricing-table th {
  background-color: #003366;
  color: #fff;
}

.pricing-table td {
  background-color: #f9f9f9;
}

/* 価格部分のデザイン */
.monthly-fee {
  display: block;
  font-size: 1.2rem;
  color: #555;
}

.price {
  font-size: 2rem;
  /* 価格のフォントサイズをさらに大きく */
  font-weight: bold;
  color: #003366;
  /* 目立つネイビー色 */
  margin-top: 5px;
}

/* ボタンのスタイル */
.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.contact-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.contact-button:hover {
  transform: translateY(-3px);
}

.contact-button--blue {
  background-color: #003366;
}

.contact-button--red {
  background-color: #e85a4f;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .pricing-table table {
    width: 100%;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 30px;
    font-size: 1.4rem;
    /* フォントサイズ調整 */
  }
  .contact-buttons {
    gap: 25px;  /* ボタンの間隔を調整 */
    flex-direction: column;  /* ボタンを縦に並べる */
    align-items: center;  /* ボタンを中央寄せ */
    text-align: center;
  }

  .contact-button {
    padding: 15px 30px;  /* ボタンのサイズを調整 */
    width: 40%;  /* ボタンの幅を100%にする */
  }
}

@media screen and (max-width: 768px) {

  .pricing-table th,
  .pricing-table td {
    padding: 25px;
    font-size: 1.3rem;
    /* フォントサイズ調整 */
  }

  .price {
    font-size: 1.8rem;
    /* スマホサイズで価格を少し小さく */
  }
  .contact-buttons {
    gap: 20px;  /* ボタンの間隔を調整 */
    flex-direction: column;  /* ボタンを縦に並べる */
    align-items: center;  /* ボタンを中央寄せ */
  }

  .contact-button {
    padding: 14px 28px;  /* ボタンのサイズを調整 */
    width: 50%;  /* ボタンの幅を100%にする */
  }
}

/* より小さい画面向け（モバイル） */
@media screen and (max-width: 480px) {
  .pricing-table table {
    font-size: 1rem;
    /* フォントサイズをさらに小さく */
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px;
    /* セルの余白を小さく */
  }
    .contact-buttons {
    gap: 15px;  /* ボタンの間隔を小さく */
    flex-direction: column;  /* ボタンを縦に並べる */
    align-items: center;  /* ボタンを中央寄せ */
    font-size: small;
  }

  .contact-button {
    padding: 12px 25px;  /* ボタンのサイズを調整 */
    width: 50%;  /* ボタンの幅を100%にする */
  }
}

/******************************************* 料金end *****************************************/

/******************************************* 詳しく知るstart *****************************************/
/* toggle-button-containerのスタイル */
.toggle-section {
  position: relative;
  width: 100%;
  border-top: 10px solid red;
  /* 赤い上の枠線 */
  border-radius: 0;
  /* 角を丸くしない */
  box-sizing: border-box;
  background-color: #fff;
}

/* ボタンのスタイル */
.toggle-btn {
  position: absolute;
  top: -30px;
  /* 枠線にかかるようにボタンを上に配置 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  /* ボタンの角は丸く設定 */
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  width: auto;
  /* 自動で文字に合わせて調整 */
}

/* ボタンのホバー時 */
.toggle-btn:hover {
  background-color: #d30000;
}

/* 開いたときに表示されるコンテンツ（初期状態は非表示） */
.toggle-content {
  display: none;
  /* 初期状態で非表示 */
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 10px solid red;
  /* 左の枠線 */
  border-right: 10px solid red;
  /* 右の枠線 */
  border-bottom: 10px solid red;
  /* 下の枠線 */
  border-top: none;
  /* 上の枠線はなし */
  transition: border-color 0.3s ease;
  /* 枠線が変わるアニメーション */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  bottom: 10px;
  /* コンテンツの下部から10pxの位置に配置 */
  left: 50%;
  transform: translateX(-50%);
  /* 中央寄せ */
  background-color: red;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  display: block;
  transition: background-color 0.3s ease;
  width: auto;
  /* 文字幅に合わせて自動で調整 */
  text-align: center;
  margin-bottom: -30px;
}

/* 閉じるボタンのホバー時 */
.close-btn:hover {
  background-color: #d30000;
}

/* 見出しデザイン */
.toggle-title {
  font-size: 2rem;
  color: #003366;
  /* ネイビー色 */
  padding-bottom: 10px;
  margin-bottom: -20px;
  text-align: left;
  /* 左寄せ */
  margin-left: 0;
  /* 左寄せに変更 */
  /* 左に余白を追加して左寄せに調整 */
  border-radius: 8px;
  /* 角を丸くする */
  display: block;
  /* 文字を左寄せにするためにブロック表示 */
}

/* 見出し下の下線（薄青から薄オレンジのグラデーション） */
.toggle-title::after {
  content: "";
  display: block;
  width: 90%;
  /* 画面幅の8割の長さに設定 */
  height: 10px;
  /* 下線の太さを増加 */
  margin-top: 5px;
  background: linear-gradient(to right, #a1c4fd, #ff9d7f);
  /* 薄青から薄オレンジのグラデーション */
  border-radius: 4px;
  /* 下線の角を丸くする */
}

/* 画面紹介セクション */
.headingn-blocks {
  display: flex;
  flex-direction: column;
  /* 縦並びに変更 */
  gap: 20px;
  justify-content: center;
  width: 90%;
  margin-left: 10%;
}

.headingn-block {
  width: 100%;
  /* 各ブロックの幅を100%に設定 */
  margin-bottom: 20px;
  text-align: left;
}

/* 画面名のタイトル部分 */
.headingn-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  background-color: #003366;
  /* ネイビー背景 */
  color: #fff;
  /* 文字色を白に */
  padding: 10px 20px;
  /* 文字の周りに余白を追加 */
  border-radius: 8px;
  /* 角を丸くする */
  display: inline-block;
  /* 横幅を文字に合わせて可変に */
}

.headingn-description {
  font-size: 1rem;
  margin-bottom: 20px;
  margin-left: 10%;
  max-width: 70%;
}

/* 画面紹介セクションの画像 */
.headingn-image {
  max-width: 80%;
  /* 親要素の幅を超えないように設定 */
  height: auto;
  overflow: hidden;
}

.headingn-image img {
  max-width: 80%;
  /* 画像の最大幅を100%に設定 */
  height: auto;
  border-radius: 8px;
  /* 角を丸く */
  margin-left: 15%;
}

.detail_item {
  margin-left: 10%;
  max-width: 70%;
}

.detail_explanation {
  margin-top: -20px;
  margin-left: 10%;
}

/******************************************* 詳しく知るend *****************************************/

/******************************************* 使い方start *****************************************/
/*使い方 */

.how-to-use-block {
  background-color: #003366;
  /* ネイビー背景 */
  color: #fff;
  /* 文字色を白に */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-subtitle {
  margin-top: 100px;
}

.how-to-use-description {
  margin-bottom: 150px;
  font-size: 30px;
}

/******************************************* 使い方end *****************************************/

/******************************************* FAQ start *****************************************/
/* FAQセクション */
.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
  align-items: center;
}

/* 各FAQ項目 */
.faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 70%;
}

/* 質問部分 */
.faq-question {
  display: flex;
  align-items: flex-start;
  /* アイコンを1行目の高さに合わせて配置 */
  gap: 10px;
}

/* 回答部分 */
.faq-answer {
  display: flex;
  align-items: flex-start;
  /* アイコンを1行目の高さに合わせて配置 */
  gap: 10px;
}

/* アイコン（画像） */
.faq-icon {
  margin-top: 5px;
  width: 24px;
  /* アイコンのサイズ */
  height: 24px;
  object-fit: contain;
  /* アスペクト比を保って縮小 */
  margin-right: 10px;
  /* アイコンとテキストの間にスペースを入れる */
}

/* テキスト */
.faq-text {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 100%;
}

/* レスポンシブ対応（画面が狭くなるとQとAのアイコンを縦並びに） */
@media screen and (max-width: 768px) {

  .faq-question,
  .faq-answer {
    flex-direction: column;
    align-items: flex-start;
    /* アイコンとテキストを縦に並べる */
  }

  .faq-icon {
    width: 20px;
    /* アイコンを小さく */
    height: 20px;
  }
}

/******************************************* FAQend *****************************************/


/******************************************* フッターstart *****************************************/
/* フッターのスタイル */
.footer {
  background-color: #2c3e50;
  /* ネイビー系の背景色 */
  color: #fff;
  /* 文字色は白 */
  padding: 20px;
}

/* フッターのコンテナ */
.footer-container {
  display: flex;
  justify-content: space-between;
  /* 左右に分ける */
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* 左側（ロゴと会社情報） */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 40%;
  /* 左側の幅 */
}

.company-logo img {
  width: 150px;
  height: auto;
  transition: opacity 0.3s;
}

.company-logo:hover img {
  opacity: 0.8;
}

.company-info {
  font-size: 1.0rem;
  color: #fff;
  font-weight: bold;
}

/* 右側（ボタンとメニュー） */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
  width: 25%;
  /* 右側の幅 */
  justify-content: flex-start;
  /* 左寄せ */
  margin-left: auto;
  /* 右寄せ */
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  /* 縦並び */
  gap: 16px;
  margin-bottom: 20px;
}

.footer-menu-buttons {
  display: flex;
  gap: 16px;
  margin-top: 50px;
  margin-bottom: 20px;
  min-width: 300px;
}

.footer-buttons {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #fff;
  color: #2c3e50;
  /* ネイビーに合う文字色 */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer-buttons:hover {
  background-color: #f76c5e;
  /* ホバー時に色を変える */
  color: #fff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #f76c5e;
  /* ホバー時にオレンジ色に */
}
@media screen and (max-width: 1320px) {
.footer-buttons{
  font-size: 14px;
}
}

/* レスポンシブ対応 */
@media screen and (max-width: 1158px) and (min-width: 769px) {
  .footer-container {
    justify-content: space-between;
    max-width: 100%;
    /* 最大幅を100%にする */
    width: 100%;
    /* 幅を100%にして右側の空白を防ぐ */
  }

  .footer-left,
  .footer-right {
    width: 50%;
    /* 幅を50%ずつにして均等に分ける */
  }

  /* 右側のボタンとメニューのサイズ調整 */
  .footer-right {
    margin-left: 0;
    /* 右寄せを解除 */
  }
}

/* モバイルサイズ調整 */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    /* 中央寄せ */
    padding: 20px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    align-items: center;
  }

  .footer-buttons {
    flex-direction: row;
    /* 横並びに変更 */
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-menu-buttons {
    flex-direction: row;
    /* 横並びに変更 */
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
  }
}

/******************************************* フッターend *****************************************/

/* モーダルの基本スタイル（初期は非表示） */
.modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/* モーダルが開いたときに適用するクラス */
.modal.open {
  display: flex; /* ブロック表示ではなくフレックス表示に */
  justify-content: center; /* 横方向中央 */
  align-items: center;     /* 縦方向中央 */
}

/* モーダル内の画像 */
.modal-content {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #f76c5e;
  text-decoration: none;
  cursor: pointer;
}