body {
  font-family: 'Noto Sans JP';
  font-size: 16px;
  background-color: #ffffff;
  overflow-x: hidden;
}
img { 
  image-rendering: auto;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  /* color: #000; */
}
.-flex {
  display: flex;
}
.f-wrap {
  flex-wrap: wrap;
}
.sc {
  justify-content: center;
}
.sb {
  justify-content: space-between;
}
.sa {
  justify-content: space-around;
}
.se {
  justify-content: space-evenly;
}
.al-center {
  align-items: center;
}
.mt30 {
  margin-top: 30px;
}
.mt50 {
  margin-top: 50px;
}
.mr3{
    margin-right: 3px;
}
.mb10 {
    margin-bottom: 10px;
  }
.mb20 {
  margin-bottom: 20px;
}
.pt20 {
  padding-top: 20px;
}
.logo {
  max-height: 60px;
  max-width: 100%;
  z-index: 9999;
}
.sp-none {
  display: block;
}
.sp-block {
  display: none;
}
ul {
  padding: 0;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}





/* アニメーション（シート内要素） */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* フェードイン効果を適用するクラス */
.fade-in {
  animation: fade-in 0.6s ease-in-out;
  opacity: 1;
}










/* 声詳細メインセクション */
.entry-content {
  margin-top: 140px;
  margin-bottom: 140px;
}
.entry-content .inner .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 8px 28px;
  background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
  /* border-radius: 100px; */
  margin-bottom: 20px;
}
.entry-content .inner .heading h3 {
  font-size: 14px;
  color: #FFF;
  font-weight: 600;
  letter-spacing: .8px;
}
.entry-content .inner .title-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.entry-content .inner .title-main h2 {
  font-size: 60px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.entry-content .inner .title-main .line {
  margin: 20px 0;
  height: 0.5px;
  background-color: #888888;
  flex-grow: 1;
}
.entry-content .inner .detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.entry-content .inner .detail p {
  font-size: 20px;
  font-weight: 400;
}

/* form {
  width: 100%;
  background-color: #f9f9f9;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.color-label {
  background-color: #D44040;
  padding: 2px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.red {
  background-color: #D44040;
}
.blue {
  background-color: #004A8C;
}
.is-required {
  font-size: 12px;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 2px;
}
input, select, textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #0056b3;
}
.required {
  color: red;
} */

form {
  width: 100%;
  /* background-color: #bd5b5b; */
}

.form-group {
  margin-bottom: 24px;
}
label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.color-label {
  background-color: #D44040;
  padding: 2px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.red-label {
  background-color: #d44040;
}
.blue-label {
  background-color: #004a8c;
}
.is-required {
  font-size: 12px;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 2px;
}
.error-message {
  display: none; /* 初期状態では非表示 */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #d44040;
}
.error-message.active {
  display: inline; /* バリデーションエラー時に表示 */
}


.form-box {
  display: flex;
  gap: 12px;
}
.form-box-check {
  display: flex;
  gap: 28px;
}

input, select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  /* border-radius: 4px; */
}

/* 生年月日インプット */
input[type="date"] {
  appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
}

/* チェックボックスには別スタイルを適用 */
input[type="checkbox"] {
  width: auto; /* デフォルト幅に戻す */
  padding: 0; /* チェックボックスに余計なパディングを削除 */
  margin-top: 0; /* 必要に応じて調整 */
  border: none; /* チェックボックスには枠線を不要に */
}
/*  */
/* チェックボックス全体のスタイル */
.checkbox-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* 隠しチェックボックス */
.custom-checkbox input[type="checkbox"] {
  display: none; /* デフォルトのチェックボックスを隠す */
}

/* カスタムチェックボックスのデザイン */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.custom-checkbox::before {
  content: "";
  display: inline-block;
  width: 20px; /* サイズ調整可能 */
  height: 20px;
  border: １px solid #333;
  background-color: #ffffff;
  border-radius: 2px; /* 角ばったデザイン */
  transition: background-color 0.3s, border-color 0.3s;
}

/* チェック状態のスタイル */
.custom-checkbox input[type="checkbox"]:checked::before {
  background-color: #007bff; /* チェック時の背景色 */
  border-color: #007bff; /* チェック時の枠色 */
}

/* チェックマークのデザイン */
.custom-checkbox input[type="checkbox"]:checked::after {
  content: "✔"; /* チェックマーク */
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 3px;
  top: -1px;
}




textarea {
  width: 100%; /* 固定幅にしたい場合は具体的な値を指定 */
  min-width: 100%; /* 横幅を最大を制限 */
  height: auto; /* 高さはユーザーが調整可能 */
  padding: 8px;
  border: 1px solid #ccc;
  /* border-radius: 4px; */
  resize: vertical; /* ユーザーが高さだけ変更可能 */
}
/* 
.button-area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
button {
  padding: 16px 140px;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
 */

/* エントリーボタン */
.submit-button {
  display: flex;
  width: 100%;
  justify-content: center;
}
.submit-button .button {
  width: fit-content;
  padding: 12px 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #000000 0%, #535557 50%, #323232 100%);
  position: relative;
  border-radius: 8px;
  box-shadow: 1px 1px 4px #ababab;
}
.submit-button .button .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.submit-button .button .text .sm {
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 1px;
}
.submit-button .button .text .lg {
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 2px;
}
.submit-button .button img {
  position: absolute;
  right: 6%;
  top: 40%;
  width: 24px;
}
/* ↓ ボタンのホバーエフェクト ↓ */
.submit-button .button { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.submit-button .button:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.submit-button .button .text .lg,
.submit-button .button .text .sm { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.submit-button .button:hover .text .lg,
.submit-button .button:hover .text .sm {
  color: #c8d4ff;
}
.submit-button .button img { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.submit-button .button:hover img {  /* ホバー時にアイコンを右にスライド */
  transform: translateX(10px);
}
/* ↑ ボタンのホバーエフェクト ↑ */









.entry-content .inner .voice-top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.entry-content .inner .voice-top .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}
.entry-content .inner .voice-top .title .line {
  margin: 20px 0;
  height: 4px;
  background: linear-gradient(to right, #2378C8 30%, #000000 30%); /* 左側3割が青、右側7割が黒 */
  width: 100%;
}
.entry-content .inner .voice-top .image {
  width: 50%;
  border-radius: 40px 0;
  overflow: hidden;
}
.entry-content .inner .voice-top .image img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.entry-content .inner .voice-top .title .title-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.entry-content .inner .title-main h2 {
  font-size: 46px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.entry-content .inner .detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin: 16px 0 60px 0;
}
.entry-content .inner .detail span {
  font-size: 20px;
  font-weight: 400;
}
.entry-content .inner .block-line {
  margin: 60px 0;
  height: .5px;
  background-color: #888888;
  width: 100%;
}
.entry-content .inner .interview {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.entry-content .inner .interview .head {
  width: 28%;
}
.entry-content .inner .interview .head h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
}
.entry-content .inner .interview .body {
  width: 72%;
}
.entry-content .inner .interview .body p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.6;
}

.entry-content .inner .image-content {
  flex-basis: calc(33.3% - 15px);
  flex-grow: 0;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.entry-content .inner .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.entry-content .inner .voice-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 80px 0;
}
.entry-content .inner .voice-cards a {
  flex-basis: calc(33.3% - 15px);
  flex-grow: 0;
  height: auto;
  background: linear-gradient(to top right, #FAFDFF 0%, #eff2f3 50%, #EEFAFF 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 40px 0;
  overflow: hidden;
}
.entry-content .inner .voice-cards a img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.entry-content .inner .voice-cards a .message {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}
.entry-content .inner .voice-cards a .message p {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.entry-content .inner .voice-cards a .name {
  padding-bottom: 20px;
  width: 100%;
  padding: 0 20px 20px 20px;
}
.entry-content .inner .voice-cards a .name span {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
.voice-cards-head {
  margin-bottom: 40px;
}
.voice-cards-head h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
}
.interview-more {
  display: flex;
  justify-content: center;
  width: 100%;
}
.interview-more a {
  width: 32.1%;
}
.interview-more a .view-more {
  width: 100%;
  padding: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
  position: relative;
  border-radius: 100px;
  box-shadow: 1px 1px 4px #ababab;
}
.interview-more a .view-more span {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}
.interview-more a .view-more img {
  position: absolute;
  right: 6%;
  top: 38%;
  width: 28px;
}
/* ↓ ボタンのホバーエフェクト ↓ */
.interview-more a .view-more { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.interview-more a .view-more:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.interview-more a .view-more span { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.interview-more a .view-more:hover span {
  color: #e6e6e6;
}
.interview-more a .view-more img { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.interview-more a .view-more:hover img {  /* ホバー時にアイコンを右にスライド */
  transform: translateX(10px);
}
/* ↑ ボタンのホバーエフェクト ↑ */













/* レスポンシブ：横幅768px以下 */
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .sp-block {
    display: block;
  }
  .inner {
    padding: 0 20px;
  }
  .swiper-button-next, .swiper-button-prev{
    margin-top: -75%!important;
  }
  p {
    line-height: 1.5;
  }
  .column {
    flex-direction: column;
  }
  .l__flex-section .block__profile-img,
  .l__flex-section .block__profile,
  .price_menu ul li,
  .block__point,
  .access_box,
  .form-label,
  input, textarea{
    width: 100%;
  }
  footer ul li {
    border-left: none;
  }
  .last {
    border-right: none;
  }
  .l__title h2 {
    font-size: 2rem;
  }
  .l__statement {
    font-size: 1.6rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
  }
  .padding-left {
    padding-left: 20px;
  }
  .padding-right {
    padding-right: 20px;
  }
  .top_logo {
    max-width: 350px;
    width: 90%;
  }
  main {
    padding-bottom: 0;
  }
  main.top{
    padding-top: 40px;
  }
  


  label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .label-en {
    /* display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold; */
    letter-spacing: 0px!important;
    /* margin-bottom: 16px; */
  }




    
  .form-box {
    display: flex;
    gap: 12px;
  }
  .form-box-check {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }





  /* 声詳細メインセクション */
  .entry-content {
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .entry-content .inner .heading {
    /* display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content; */
    padding: 4px 20px;
    /* background: linear-gradient(to right, #C0CED4 0%, #D9E5EF 50%, #E6E9EA 100%);
    border-radius: 100px; */
    margin-bottom: 0px;
    margin-top: 100px;
  }
  .entry-content .inner .heading h3 {
    font-size: 14px;
    font-weight: 500;
  }
  .entry-content .inner .voice-top {
    /* display: flex; */
    flex-direction: column-reverse;
    gap: 12px;
    width: 100%;
    /* justify-content: space-between;
    align-items: flex-start; */
  }
  .entry-content .inner .voice-top .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .entry-content .inner .voice-top .title .line {
    margin: 8px 0;
    height: 4px;
    background: linear-gradient(to right, #2378C8 30%, #000000 30%); /* 左側3割が青、右側7割が黒 */
    width: 100%;
  }
  .entry-content .inner .voice-top .image {
    width: 100%;
    border-radius: 4px 0;
    overflow: hidden;
  }
  .entry-content .inner .voice-top .image img {
    width: 100%;
    object-fit: cover;
    display: block;
  }
  .entry-content .inner .voice-top .title .title-main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
  }
  .entry-content .inner .title-main h2 {
    font-size: 28px;
    /* font-weight: 400;
    font-family: "Noto Sans JP", sans-serif; */
  }
  .entry-content .inner .detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin: 8px 0 8px 0;
  }
  .entry-content .inner .detail p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 28px;
  }
  .entry-content .inner .detail span {
    font-size: 16px;
    font-weight: 400;
  }
  .entry-content .inner .block-line {
    margin: 32px 0;
    height: .5px;
    background-color: #888888;
    width: 100%;
  }
  .entry-content .inner .interview {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .entry-content .inner .interview .head {
    width: 100%;
  }
  .entry-content .inner .interview .head h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
  }
  .entry-content .inner .interview .body {
    width: 100%;
  }
  .entry-content .inner .interview .body p {
    font-size: 14px;
    /* font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6; */
  }

  .interview-more {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .interview-more a {
    width: 100%;
  }
  .interview-more a .view-more {
    width: 100%;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #004A8C 0%, #0F5491 50%, #4F7EA8 100%);
    position: relative;
    border-radius: 100px;
    box-shadow: 1px 1px 4px #ababab;
  }
  .interview-more a .view-more span {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
  }
  .interview-more a .view-more img {
    position: absolute;
    right: 6%;
    top: 36%;
    width: 24px;
  }
  /* ↓ ボタンのホバーエフェクト ↓ */
  .interview-more a .view-more { /* グラデーションが動くように */
    transition: background-position 0.4s ease, box-shadow 0.4s ease;
    background-size: 200% 100%;
    background-position: left;
  }
  .interview-more a .view-more:hover { /* ホバー時にグラデーションが右に動く */
    background-position: right;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  .interview-more a .view-more span { /* ホバー時のテキストのカラー変化 */
    transition: color 0.4s ease;
  }
  .interview-more a .view-more:hover span {
    color: #e6e6e6;
  }
  .interview-more a .view-more img { /* 右矢印アイコンのホバー時スライドアニメーション */
    transition: transform 0.4s ease;
  }
  .interview-more a .view-more:hover img {  /* ホバー時にアイコンを右にスライド */
    transform: translateX(10px);
  }
  /* ↑ ボタンのホバーエフェクト ↑ */






    
  /* エントリーボタン */
  .submit-button {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .submit-button .button {
    width: 100%;
    padding: 12px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #000000 0%, #535557 50%, #323232 100%);
    position: relative; */
    /* border-radius: 8px; */
    /* box-shadow: 1px 1px 4px #ababab; */
  }
  .submit-button .button .text {
    /* display: flex;
    flex-direction: column;
    align-items: center; */
  }
  .submit-button .button .text .sm {
    /* font-size: 14px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 1px; */
  }
  .submit-button .button .text .lg {
    font-size: 20px;
    /* font-weight: 700;
    color: #FFF;
    letter-spacing: 2px; */
  }
  .submit-button .button img {
    /* position: absolute;
    right: 6%;
    top: 40%; */
    width: 20px;
  }
  






























}