@charset "UTF-8";
/* ------------------------------------------------------------
// Contact
------------------------------------------------------------ */
.content-ttl-img {
  position: relative;
  height: 380px;
  background: url(../images/about/content-ttl-img.png) no-repeat bottom center/cover;
}
@media print, screen and (max-width: 767px) {
  .content-ttl-img {
    height: 280px;
  }
}

.page-ttl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.page-ttl h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 500;
  color: #f49e4c;
  line-height: 1;
  text-shadow: 0 0 3px rgb(255, 255, 255), 0 0 6px rgb(255, 255, 255), 0 0 12px rgba(255, 255, 255, 0.9);
}
.page-ttl .txt {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  margin-top: 2px;
}
@media print, screen and (max-width: 767px) {
  .page-ttl h2 {
    font-size: 40px;
  }
}

.table-ttl {
  position: relative;
  padding: 8px 16px;
  outline: 1px solid #cccccc;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: 400;
  display: block;
  box-sizing: border-box;
  max-width: 500px;
  text-align: center;
  margin: 24px;
  margin-inline: auto;
}
.table-ttl::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 98%;
  height: 82%;
  background: #333333;
  z-index: -999;
}
.table-ttl::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  border-right: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  width: 98%;
  height: 98%;
}

.about-table-box {
  position: relative;
  overflow-x: auto;
  margin: 0 auto 20px;
}
.about-table-box .about-table {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  min-width: 900px;
  border: 1px solid #eeeeee;
}
@media print, screen and (max-width: 767px) {
  .about-table-box {
    margin: 40px auto;
  }
}

.about-table {
  table-layout: fixed;
  width: 100%;
}
.about-table tr:first-child th {
  color: #ffffff;
  background: #f49e4c;
}
.about-table tr th,
.about-table tr td {
  vertical-align: middle;
  font-size: 15px;
  text-align: center;
  padding: 15px 10px;
  border: 1px solid #eeeeee;
}
.about-table tr th {
  font-weight: 500;
  width: 140px;
  background: #fff6f0;
}
.about-table tr td {
  position: relative;
  width: calc((100% - 140px) / 7);
  background: #ffffff;
}
.about-table tr td br {
  display: none;
}
.about-table tr td p {
  text-align: left;
  line-height: 1.4;
}
.about-table tr td ul {
  padding-left: 1.5em;
}
.about-table tr td ul li {
  list-style-type: disc;
  text-align: left;
  line-height: 1.4;
}
.about-table tr td.arrow::before {
  content: "→";
  position: absolute;
  left: -0.6em; /* 矢印の位置を調整 */
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #f49e4c;
  padding: 0 4px;
}
@media print, screen and (max-width: 767px) {
  .about-table tr th,
  .about-table tr td {
    padding: 10px 5px;
  }
  .about-table tr th {
    width: 120px;
  }
  .about-table tr td br {
    display: inline;
  }
  .about-table tr td.arrow::before {
    content: "→";
    position: absolute;
    left: -0.6em; /* 矢印の位置を調整 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #f49e4c;
    padding: 0 4px;
  }
}
@media print, screen and (max-width: 575px) {
  .about-table tr th,
  .about-table tr td {
    font-size: 14px;
  }
}

.scroll-hint-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #f49e4c;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  border-radius: 5px;
  animation: pulse 1.5s infinite;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.4s;
  overflow-x: auto;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
}
.scroll-notice {
  font-size: 13px;
  color: #666666;
  padding: 6px 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-notice.visible {
  opacity: 1;
}