@charset "UTF-8";

#contents.base-container .p-sr-list-title01 {
  margin: 50px auto 0;
  font-size: 3.5rem;
  font-weight: 700;
  max-width: 1100px;
}

#contents.base-container .p-sr-title01 {
  display: flex;
  min-height: 120px;
  margin: -10px 0 0;
  padding: 20px 60px 20px 0;
  background: #fff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.384;
  cursor: pointer;
  align-items: center;
  gap: 30px;
  position: relative;
}

/* テーブル */
.io-table {
  width: 100%;
  overflow-x: auto;
}

.io-table table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #ddd; /* 外枠 */
}

/* カラム幅 */
.io-table th:nth-child(1),
.io-table td:nth-child(1) {
  width: 15%;
}

.io-table th:nth-child(2),
.io-table td:nth-child(2),
.io-table th:nth-child(3),
.io-table td:nth-child(3) {
  width: 42.5%;
}

/* 共通セル */
.io-table th,
.io-table td {
  padding: 15px !important;
  text-align: center;
  vertical-align: middle;
}

/* td */
.io-table td {
  text-align: left;
  border: 1px solid #ccc !important;
}

/* th */
.io-table th {
  border: 1px solid #ccc !important;
  color: #fff;
  background-color: #ff568f !important;
  font-weight: bold !important;
  text-align: center !important;
}

/* ★ 最上行の上罫線を背景色に */
.io-table table tr:first-child th {
  border-top: 1px solid #ff568f !important;
}

/* ★ 最左列の左罫線を背景色に */
.io-table table th:first-child {
  border-left: 1px solid #ff568f !important;
}

/* 行区切り（tdより薄く） */
.io-table tr {
  border-bottom: 1px solid #eee;
}

/* ストライプ（2行目以降のみ） */
.io-table tr:nth-child(n+2):nth-child(even) td {
  background-color: #fafafa !important;
}

.io-table tr:nth-child(n+2):nth-child(odd) td {
  background-color: #f5f5f5 !important;
}

/* thはストライプの影響を受けない */
.io-table tr:nth-child(even) th,
.io-table tr:nth-child(odd) th {
  background-color: #ff568f !important;
}

/* 既存クラス（維持） */
.io-table th.border-right {
  border-right: 1px solid #ff568f !important;
}

.io-table th.border-bottom {
  border-bottom: 1px solid #ff568f !important;
}

/* 画像 */
.io-table td .img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.io-table td .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 申込みボックス */
.io-ri-title {
  text-align: center;
  color: #0099FF;
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 120px;
}

.io-ri-box {
  border: 1px solid #0099FF;
  box-sizing: border-box;
  border-radius: 20px;
  width: 860px;
  margin: 0 auto 150px;
  text-align: center;
  padding: 20px 30px;
}

.io-ri-box .io-ri-box-t {
  padding: 20px 20px 0;
}

.io-ri-box .io-ri-box-m {
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}

.io-ri-box .io-ri-box-b {
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.io-ri-box div {
  box-sizing: border-box;
}

.io-ri-box-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.io-ri-box-txt {
  font-size: 1.4rem;
  line-height: 1.7;
}

.io-ri-box-b-txt {
  font-size: 1.4rem;
  line-height: 1.7;
	text-align: left;
}

.io-ri-box-m a,
.io-ri-box-mail a,
.io-ri-box-b a {
  color: #0099FF;
  text-decoration: none;
}

.io-ri-box-b a:hover,
.io-ri-box-dl a:hover {
  text-decoration: none;
}

.io-ri-box-tel,
.io-ri-box-fax {
  display: inline-flex;
  font-size: 3rem;
  color: #0099FF;
  font-weight: 800;
  align-items: center;
}

.io-ri-box-tel span,
.io-ri-box-fax span,
.io-ri-box-mail span {
  font-size: 2rem;
  margin-right: 20px;
}

.io-ri-box-mail {
  font-size: 2.6rem;
  color: #0099FF;
  font-weight: 800;
}

.io-ri-box-dl {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.io-ri-box-dl a {
  display: inline-flex;
  align-items: center;
  color: #0099FF;
  text-decoration: underline;
}

.io-ri-box-dl a::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../nani/siryo/images/icon_download.png") no-repeat center/contain;
  margin-right: 5px;
}

.io-ri-box-b-txt a {
  display: inline-flex;
  align-items: center;
  color: #0099FF;
  text-decoration: underline;
	margin-left: 5px;
}

.io-ri-box-b-txt a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../idea/images/arrow-up-right-from-square-solid.png") no-repeat center/contain;
	margin-left: 5px;
}

/* タブレット */
@media screen and (max-width: 1176px) {
  #contents.base-container .p-sr-list-title01 {
    padding: 0 30px;
  }

  .io-ri-title {
    font-size: 2.2rem;
    margin-top: 60px;
  }

  .io-ri-box {
    width: auto;
    margin: 20px 15px 80px;
    padding: 15px;
  }

  .io-ri-box-title {
    font-size: 1.8rem;
  }

  .io-ri-box-txt {
    font-size: 1.3rem;
  }

  .io-ri-box-tel,
  .io-ri-box-fax {
    font-size: 2.4rem;
    flex-wrap: wrap;
  }

  .io-ri-box-tel span,
  .io-ri-box-fax span,
  .io-ri-box-mail span {
    font-size: 1.6rem;
  }

  .io-ri-box-mail {
    font-size: 2.2rem;
    word-break: break-all;
  }

  .io-ri-box-dl {
    flex-direction: column;
    gap: 10px;
  }

  .io-ri-box-dl a {
    padding-left: 0;
    font-size: 1.3rem;
  }
}

/* スマホ */
@media screen and (max-width: 768px) {
  #contents.base-container .p-sr-list-title01 {
    padding: 0 20px;
    font-size: 2.2rem;
  }

  #contents.base-container .p-sr-title01 {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 15px;
    font-size: 2rem;
    gap: 10px;
  }

  .io-table {
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }

  .io-table table {
    min-width: 100%;
  }

  .io-table th:nth-child(1),
  .io-table td:nth-child(1) {
    width: 25%;
  }

  .io-table th:nth-child(2),
  .io-table td:nth-child(2),
  .io-table th:nth-child(3),
  .io-table td:nth-child(3) {
    width: 37.5%;
  }

  .io-table th,
  .io-table td {
    font-size: 1.3rem;
    padding: 10px !important;
  }

  .io-table th {
    font-size: 1.1rem;
    padding: 10px 5px !important;
  }

  .io-table td img {
    max-width: 100%;
    height: auto;
  }

}