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;
}



/* メインセクション */
.main-content {
  margin-top: 140px;
  margin-bottom: 160px;
}
.main-content .inner .title-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px;
}
.main-content .inner .title-main h2 {
  font-size: 60px;
  font-weight: 4700;
  font-family: "Noto Sans JP", sans-serif;
}
.main-content .inner .title-main .line {
  margin: 20px 0;
  height: 0.5px;
  background-color: #888888;
  flex-grow: 1;
}
.main-content .inner .detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.main-content .inner .detail p {
  font-size: 20px;
  font-weight: 400;
}
.main-content .inner .cat-button {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}
.main-content .inner .cat-button .button {
  flex-basis: calc(25% - 15px); /* 4つのボタンに均等幅を設定 */
  flex-grow: 1; /* ボタンが均等に広がるように設定 */
  height: auto;
  background: linear-gradient(to right, #C0CED4 0%, #D9E5EF 50%, #E6E9EA 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 2px;
}
.main-content .inner .cat-button .button span {
  font-size: 24px;
  font-weight: 700;
}
/* ↓ ボタンのホバー効果 ↓ */
.main-content .inner .cat-button .button {
  transition: background-color 1s ease, color 1s ease;
}
.main-content .inner .cat-button .button:hover {
  background: linear-gradient(to right, #a5b8c2 0%, #bbcce0 50%, #cdd1d3 100%);
  color: #ffffff;
}
.main-content .inner .cat-button .button:hover span {
  color: #ffffff;
}
/* ↑ ボタンのホバー効果 ↑ */

/* アニメーション（シート内要素） */
@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;
}

.main-content .inner .requirement-sheet {
  width: 100%;
  padding: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  border-radius: 4px;
}
.main-content .inner .requirement-sheet .sheet .name {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.main-content .inner .requirement-sheet .sheet .name h3 {
  font-size: 36px;
  font-weight: 700;
}
.main-content .inner .requirement-sheet .sheet .name span {
  font-size: 20px;
  font-weight: 600;
  padding-top: 20px;
}
.main-content .inner .requirement-sheet .sheet img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.main-content .inner .requirement-sheet .sheet .description table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}
.main-content .inner .requirement-sheet .sheet .description th, 
.main-content .inner .requirement-sheet .sheet .description td {
  border-top: .5px solid #888888;
  border-bottom: .5px solid #888888;
  padding: 40px 24px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.main-content .inner .requirement-sheet .sheet .description th {
  width: 20%;
}
.main-content .inner .requirement-sheet .sheet .voices {
  overflow: hidden;
}
.main-content .inner .requirement-sheet .sheet .voices {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.main-content .inner .requirement-sheet .sheet .voices-heading {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.main-content .inner .requirement-sheet .sheet .voices-heading h3 {
  font-size: 28px;
  font-weight: 700;
}
.main-content .inner .requirement-sheet .sheet .voices-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; /* space-between */
  align-items: flex-start; /* 画像上部を揃える */
  gap: 20px;
  margin-top: 20px;
}
.main-content .inner .requirement-sheet .sheet .voices-content .voice-item {
  width: calc(33.3% - 13.3px); /* 3つのアイテムが均等に配置される幅 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.main-content .inner .requirement-sheet .sheet .voices-content .voice-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px; /* 画像に丸みを追加 */
}
.main-content .inner .requirement-sheet .sheet .voices-content .voice-item .voice-info {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.main-content .inner .requirement-sheet .sheet .voices-content .voice-item .occupation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  background-color: #FFC300;
  border-radius: 8px;
  width: fit-content;
}
.main-content .inner .requirement-sheet .sheet .voices-content .voice-item .occupation p {
  font-size: 14px;
  font-weight: 500;
}
.main-content .inner .requirement-sheet .sheet .voices-content .voice-item .since {
  font-size: 16px;
  font-weight: 400;
}
.interview-more {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.interview-more a {
  width: 32.1%;
}
.interview-more a .more-button {
  width: 100%;
  padding: 20px;
  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 .more-button span {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
}
.interview-more a .more-button .arrow {
  position: absolute;
  right: 6%;
  top: 36%;
  width: 24px!important;
}
/* ↓ ボタンのホバーエフェクト ↓ */
.interview-more a .more-button { /* グラデーションが動くように */
  transition: background-position 0.4s ease, box-shadow 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}
.interview-more a .more-button:hover { /* ホバー時にグラデーションが右に動く */
  background-position: right;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.interview-more a .more-button span { /* ホバー時のテキストのカラー変化 */
  transition: color 0.4s ease;
}
.interview-more a .more-button:hover span {
  color: #e6e6e6;
}
.interview-more a .more-button .arrow { /* 右矢印アイコンのホバー時スライドアニメーション */
  transition: transform 0.4s ease;
}
.interview-more a .more-button:hover .arrow {  /* ホバー時にアイコンを右にスライド */
  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;
  }
  



  /* メインセクション */
  .main-content {
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .main-content .inner .title-main {
    margin-top: 108px;
    margin-bottom: 12px;
  }
  .main-content .inner .title-main h2 {
    font-size: 36px;
  }
  .main-content .inner .detail {
    gap: 2px;
  }
  .main-content .inner .detail p {
    font-size: 14px;
  }
  .main-content .inner .cat-button {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
  }
  .main-content .inner .cat-button .button {
    flex-basis: calc(50% - 15px);
    padding: 8px;
  }
  .main-content .inner .cat-button .button span {
    font-size: 18px;
  }
  /* ↓ ボタンのホバー効果 ↓ */
  .main-content .inner .cat-button .button {
    transition: background-color 1s ease, color 1s ease;
  }
  .main-content .inner .cat-button .button:hover {
    background: linear-gradient(to right, #a5b8c2 0%, #bbcce0 50%, #cdd1d3 100%);
    color: #ffffff;
  }
  .main-content .inner .cat-button .button:hover span {
    color: #ffffff;
  }
  /* ↑ ボタンのホバー効果 ↑ */


  .main-content .inner .requirement-sheet {
    padding: 20px;
  }
  .main-content .inner .requirement-sheet .sheet .name {
    gap: 12px;
    margin-bottom: 16px;
  }
  .main-content .inner .requirement-sheet .sheet .name h3 {
    font-size: 24px;
    font-weight: 700;
  }
  .main-content .inner .requirement-sheet .sheet .name span {
    font-size: 12px;
    font-weight: 500;
    padding-top: 12px;
  }
  .main-content .inner .requirement-sheet .sheet .description table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  .main-content .inner .requirement-sheet .sheet .description th, 
  .main-content .inner .requirement-sheet .sheet .description td {
    padding: 20px 8px;
    line-height: 1.2;
    font-size: 12px;
  }
  .main-content .inner .requirement-sheet .sheet .description th {
    width: 35%;
    font-size: 12px;
  }
  .main-content .inner .requirement-sheet .sheet .voices {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
  }
  .main-content .inner .requirement-sheet .sheet .voices-heading {
    margin-top: 20px;
  }
  .main-content .inner .requirement-sheet .sheet .voices-heading h3 {
    font-size: 20px;
  }
  .main-content .inner .requirement-sheet .sheet .voices-content {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  .main-content .inner .requirement-sheet .sheet .voices-content .voice-item {
    width: 100%;
  }
  .main-content .inner .requirement-sheet .sheet .voices-content .voice-item .voice-info {
    gap: 12px;
    margin-top: 8px;
  }
  .main-content .inner .requirement-sheet .sheet .voices-content .voice-item .occupation {
    border-radius: 4px;
  }
  .main-content .inner .requirement-sheet .sheet .voices-content .voice-item .occupation p {
    font-size: 12px;
  }
  .main-content .inner .requirement-sheet .sheet .voices-content .voice-item .since {
    font-size: 14px;
    font-weight: 500;
  }
  .interview-more {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0 0;
  }
  .interview-more a {
    width: 100%;
  }
  .interview-more a .more-button {
    padding: 16px;
  }
  .interview-more a .more-button span {
    font-size: 16px;
  }
  .interview-more a .more-button .arrow {
    position: absolute;
    right: 6%;
    top: 36%;
    width: 20px!important;
  }
  /* ↓ ボタンのホバーエフェクト ↓ */
  .interview-more a .more-button { /* グラデーションが動くように */
    transition: background-position 0.4s ease, box-shadow 0.4s ease;
    background-size: 200% 100%;
    background-position: left;
  }
  .interview-more a .more-button:hover { /* ホバー時にグラデーションが右に動く */
    background-position: right;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  .interview-more a .more-button span { /* ホバー時のテキストのカラー変化 */
    transition: color 0.4s ease;
  }
  .interview-more a .more-button:hover span {
    color: #e6e6e6;
  }
  .interview-more a .more-button .arrow { /* 右矢印アイコンのホバー時スライドアニメーション */
    transition: transform 0.4s ease;
  }
  .interview-more a .more-button:hover .arrow {  /* ホバー時にアイコンを右にスライド */
    transform: translateX(10px);
  }
  /* ↑ ボタンのホバーエフェクト ↑ */











}