
.sm {
  display: none;
}

@media screen and (max-width: 560px) {
  .sm {
    display: block;
  }
}

.sm02 {
  display: block;
}

.sm02-sp {
  display: none;
}

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

  .sm02-sp {
    display: block;
  }
}

.btn01 {
  width: 100%;
  justify-content: center;
}

.btn01 img {
  display: block;
  margin: 0 auto;
}

.btn01 a {
  margin: 0 2em;
}

.mv-box {
  background-color: #e4f0e4;
  width: 0 auto;
  padding: 5em 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  text-align: center;
}

.mv-box img {
  margin:  0 auto;
}

@media screen and (max-width: 1500px) {
  .btn01 img {
    width: 90%;
  }
} 

@media screen and (max-width: 768px) {
  .btn a {
    margin: 0 10px;
  }
  
  .mv-box {
    width: auto;
  }

  .mv-box img {
    width: 90%;
    margin:  0 auto;
  } 
} 


.aicamera {
  position: relative;
  text-align: center;
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

.aicamera h2 {
  border: none;
  background-color: #5977AE;
  color: #fff;
  font-size: 40px;
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  padding: 1em;
}

.aicamera h3 {
  border: none;
}

.aicamera h3::after {
  display: none;
}


.aicamera img {
  display: block;
  margin: 0 auto;
}

ul.aicamera-choice {
  display: flex;
  width: 100%;
  max-width: 1068px;
  justify-content: space-between;
}

/* 親コンテナの基本設定 */
.a-eye {
  margin: 50px auto;
  padding: 0 15px;
  max-width: 1068px;
}

.a-eye-container {
  position: relative;
  background: #fff;
  border: 2px solid #5a82b8;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: left;
}

/* 上部の吹き出しタイトル */
.a-eye-title {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #5a82b8;
  color: #fff;
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: bold;
  white-space: nowrap;
  font-size: 22px;
}

/* コンテンツのレイアウト */
.a-eye-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* リストのデザイン */
.a-eye-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.a-eye-list li {
  position: relative;
  font-size: 18px;
  padding-left: 1.5em;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
  font-weight: bold;
}

/* 青い丸（ドット） */
.a-eye-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #5a82b8;
}

/* 赤字強調 */
.a-eye-list li .red-text {
  color: #e65555;
  display: block;
  margin-top: 5px;
  font-size: 26px;
}

/* イラスト部分 */
.a-eye-illust {
  flex: 0 0 200px; /* イラストの幅を固定 */
}

.a-eye-illust img {
  width: 100%;
  height: auto;
}

/* 下部の三角形ボタン風 */
.a-eye-bottom {
  position: absolute;
  bottom: -58px;
  left: 50%;
  transform: translateX(-50%);
  background: #5a82b8;
  color: #fff;
  padding: 10px 60px 30px 60px;
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 46% 100%, 46% 100%);
  z-index: 10;
}

.a-eye-bottom::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 15px solid #5a82b8;
}

p.red-text {
  color: #ff0000;
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
}

/* レスポンシブ対応（スマホ） */
@media screen and (max-width: 767px) {

  .aicamera h2 {
    font-size: 24px;
  }

  .a-eye-content {
    flex-direction: column; /* 縦並びに変更 */
  }
  
  .a-eye-illust {
    order: -1; /* スマホでは先にイラストを見せる場合（不要なら削除） */
    flex: 0 0 150px;
    margin-bottom: 20px;
  }

  .a-eye-list li {
    font-size: 14px;
  }

  .a-eye-list li .red-text {
    font-size: 18px;
  }

  .a-eye-title {
    font-size: 14px;
    width: 80%;
    text-align: center;
  }

  p.red-text {
    font-size: 20px;
  }
}


@media screen and (max-width: 540px) {
  .a-eye-bottom {
    bottom: -68px;
  }
  .a-eye {
    padding: 0 15px 3em 15px;
  }
}


/* リスト全体のレイアウト */
.aicamera-choice {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 20px;       /* カード間の隙間 */
  padding: 0;
  list-style: none;
  margin: 30px auto 0 auto;
  justify-content: center; /* 中央寄せ */
}

/* 各カードの設定 */
.camera-card {
  background: transparent;
  flex: 0 1 calc(33.333% - 20px); /* PCでは3カラム */
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

/* タイトルバー（ピンク） */
.camera-title {
  background-color: #ef7d7d; /* 画像に近いピンク色 */
  color: #fff;
  margin: 0;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

h3.camera-title::after {
  display: none;
}


/* 画像エリア */
.camera-img-box {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px; /* 高さを揃える */
}

.camera-img-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 説明文 */
.camera-desc {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
  padding: 0 5px;
  margin-bottom: 0;
}

/* --- レスポンシブ対応 --- */

/* タブレットサイズ（2カラム） */
@media screen and (max-width: 992px) {
  .camera-card {
    flex: 0 1 calc(50% - 20px);
  }
}

/* スマホサイズ（1カラム） */
@media screen and (max-width: 599px) {
  .camera-card {
    flex: 0 1 100%;
  }
  
  .camera-title {
    font-size: 20px;
  }
  
  .camera-img-box {
    min-height: auto;
  }
  p.red-text {
    font-size: 18px;
  }
}


/* 2カラム全体のコンテナ */
.aicamera-choice02 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1068px;
  margin: 40px auto;
  padding: 0 15px;
}

/* 各カード（50%幅） */
.camera-card-wide {
  flex: 1 1 calc(50% - 15px);
  display: flex;
  flex-direction: column;
}

/* 赤いタイトルバー */
.camera-title-red {
  background-color: #ef7d7d;
  color: #fff;
  margin: 0 0 15px 0;
  padding: 10px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
}

h3.camera-title-red::after {
  display: none;
}

/* 画像とテキストを横並びにするコンテナ */
.camera-flex-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* 画像エリア（左側） */
.camera-visual {
  flex: 0 0 55%; /* 画像の占有率（お好みで調整） */
}

.camera-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキストエリア（右側） */
.camera-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  text-align: left;
}

/* --- レスポンシブ対応 --- */

/* タブレット・スマホ（1カラム & 縦並び） */
@media screen and (max-width: 768px) {
  .camera-card-wide {
    flex: 1 1 100%;
    margin-bottom: 40px;
  }

  .camera-flex-content {
    flex-direction: column; /* スマホでは画像の下にテキスト */
    align-items: center;
  }

  .camera-visual {
    flex:0;
    max-width: 300px; /* スマホで画像が大きすぎないように制限 */
  }

  .camera-text {
    text-align: left;
    width: 100%;
  }
}


.recorder {
  margin-top: 5em;
  position: relative;
  text-align: center;
  width: 100%;
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  padding-bottom: 1em;
}

.recorder img{
  display: block;
  margin: 0 auto;
}

.recorder h2 {
  border: none;
  background-color: #5977AE;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: bold;
}

.recorder h3.subtitle {
  border: none;
  color: #5977AE;
  font-size: 60px;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recorder h3.subtitle::after {
  display: none;
}

.recorder h4.subtitle {
  border: none;
  font-size: 32px;
  background-color: #DFF2FC;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: 0;
}

.recorder h4.subtitle02 {
  border: none;
  font-size: 32px;
  color: #ef7d7d;
  background-color: #DFF2FC;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: 0;
}

/* 外側のコンテナ */
.recorder-con {
  max-width: 800px;
  margin: 40px auto 10px;
  padding: 0 15px;
}

.recorder-con h3::after {
  display: none;
}

/* 白背景・青枠・角丸のボックス */
.recorder-box {
  background-color: #fff;
  border: 2px solid #5a82b8; /* 画像に基づいた青色 */
  border-radius: 20px;       /* 柔らかい角丸 */
  padding: 30px;
  text-align: left;
  margin-bottom: 3em;
}

/* メインの見出し */
.recorder-title {
  color: #5a82b8;
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 20px 0;
  border: none; /* 既存のh3スタイルがある場合の打ち消し */
}

/* コンテンツ部分 */
.recorder-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 各行のレイアウト */
.recorder-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

/* 赤いラベル部分 */
.recorder-item .label {
  color: #ef7d7d; /* 画像に基づいたピンクがかった赤 */
  font-weight: bold;
  white-space: nowrap;
  flex: 0 0 80px; /* PCでのラベル幅を固定 */
}

/* 説明テキスト */
.recorder-item .text {
  margin: 0;
  color: #333;
  font-weight: bold;
  flex: 1;
}

/* --- レスポンシブ対応 --- */

@media screen and (max-width: 767px) {
  .recorder h2 {
    font-size: 24px;
  }

  .recorder h3.subtitle {
    font-size: 26px;
  }

  .recorder h4.subtitle {
    font-size: 20px;
  }

  .recorder h4.subtitle02 {
    font-size: 20px;
  }

  .recorder-box {
    padding: 20px;
  }

  .recorder-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .recorder-item {
    flex-direction: column; /* スマホでは縦に並べる */
  }

  .recorder-item .label {
    flex: 0 0 auto;
    margin-bottom: 2px;
  }
  
  .recorder-item .text {
    font-size: 14px;
    padding-left: 5px; /* 少しインデント */
  }
}

