@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #2e2e2e;
  background-color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.text-title {
  font-size: 20px;
}
@media (max-width: 750px) {
  .text-title {
    font-size: 4.267vw;
  }
}

.text-content {
  font-size: 16px;
}
@media (max-width: 750px) {
  .text-content {
    font-size: 3.733vw;
  }
}

.benri .m-txt-ttl .ttl-wrap .ttl-txt:after {
  background-color: #ff2242;
}

#l-footerpath {
  display: block;
}

.pc_item {
  display: block;
}
@media (max-width: 750px) {
  .pc_item {
    display: none;
  }
}

.sp_item {
  display: none;
}
@media (max-width: 750px) {
  .sp_item {
    display: block;
  }
}

.hero-section img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 750px) {
  .hero-section img {
    width: calc(100% + 30px);
    margin-top: -20px;
    margin-left: -15px;
    margin-right: -15px;
    display: block;
  }
}

.quick-nav {
  background-color: #ffffff;
  padding: 40px 0 50px;
}
@media (max-width: 750px) {
  .quick-nav {
    padding: 30px 0 40px;
  }
}
.quick-nav .nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 750px) {
  .quick-nav .nav-grid {
    grid-template-columns: 1fr;
  }
}
.quick-nav .nav-item {
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: color 0.2s ease;
  position: relative;
}
.quick-nav .nav-item .icon-arrow-down {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background-color: #fcf8fb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.quick-nav .nav-item .icon-arrow-down::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #ff2242;
  border-bottom: 2px solid #ff2242;
  transform: rotate(45deg);
  margin-top: -2px;
}
.quick-nav .nav-item:hover,
.quick-nav .nav-item .icon-arrow-down:hover {
  color: #ff2242;
}

.main-section {
  overflow: hidden;
}
.main-section:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  .main-section:not(:last-child) {
    margin-bottom: 45px;
  }
}
.main-section .section-title {
  position: relative;
  background-image: linear-gradient(to right, #ef0045 0%, #ff7b68 100%);
  border-radius: 6px;
  color: #ffffff;
  margin: 0;
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.5px;
}
.main-section .section-title::before, .main-section .section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 10px;
}
.main-section .section-title::before {
  left: 3%;
  background: url("../../hyakugo-id/images/section-title-bg.png") no-repeat center center;
}
.main-section .section-title::after {
  right: 3%;
  background: url("../../hyakugo-id/images/section-title-bg.png") no-repeat center center;
}
.main-section .section-content {
  padding: 30px 0 0;
}
@media (max-width: 1000px) {
  .main-section .section-content {
    padding: 20px 0 0;
  }
}
.main-section .intro-text {
  margin-top: 0;
  margin-bottom: 25px;
}

.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid.triple-column {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .card-grid.triple-column {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 25px;
  border-radius: 4px;
  background-color: #fcf8fb;
}
.feature-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: bold;
}
.feature-card p {
  margin: 0;
  text-align: justify;
}

.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  gap: 20px;
}
@media (max-width: 750px) {
  .icon-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    gap: 35px 15px;
    margin: 9vw auto 0;
    width: 70%;
  }
}
.icon-row .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.icon-row .icon-circle {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 168px;
}
@media (max-width: 750px) {
  .icon-row .icon-circle {
    max-width: 236px;
  }
}
.icon-row .icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 750px) {
  .icon-row .icon-circle img {
    max-width: 236px;
  }
}
.icon-row span {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 750px) {
  .icon-row span {
    font-size: 3.733vw;
  }
}

.main-section .section-content.service-flex {
  padding-bottom: 0px;
}

.service-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 750px) {
  .service-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.service-flex .service-left {
  flex: 1;
}
.service-flex .service-right {
  display: flex;
  gap: 15px;
}
@media (max-width: 750px) {
  .service-flex .service-right {
    justify-content: center;
    margin: 0px auto;
    width: 60%;
  }
}
.service-flex .service-right img {
  display: block;
  max-width: 210px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.styled-list {
  padding-left: 15px;
  margin: 30px 0;
}
.styled-list li {
  position: relative;
  list-style: none;
}
.styled-list li::before {
  content: "・";
  font-weight: normal;
  position: absolute;
  left: -15px;
}

.content-text {
  font-size: 16px;
}

.sub-text {
  font-size: 14px;
  margin: 5px 0 0 0;
}
@media (max-width: 750px) {
  .sub-text {
    font-size: 3.733vw;
  }
}

.logo-box {
  width: 100px;
  height: 60px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}
.logo-box.logo-bank {
  background-color: #ffffff;
  color: #333;
}
.logo-box.logo-bank span {
  color: #ff2242;
  font-size: 16px;
}
.logo-box.logo-ib {
  background-color: #ff2242;
  color: #ffffff;
}
.logo-box.logo-ib span {
  display: block;
  font-size: 11px;
  background: #fff;
  color: #ff2242;
  padding: 1px 4px;
  border-radius: 3px;
  margin-top: 2px;
}

.notes-content p {
  margin: 0 0 5px 0;
  text-align: justify;
}
.notes-content p:last-child {
  margin-bottom: 0;
}

.table-heading {
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 12px 0;
}
@media (max-width: 750px) {
  .table-heading {
    font-size: 3.733vw;
  }
}
.table-heading:first-of-type {
  margin-top: 0;
}

.scroll-box {
  display: block;
}
.scroll-box:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  .scroll-box:not(:last-child) {
    margin-bottom: 45px;
  }
}

.sp-swiper {
  display: none;
}
@media (max-width: 750px) {
  .sp-swiper {
    content: "";
    display: block;
    width: clamp(80px, 42vw, 150px);
    height: clamp(56px, 12vw, 80px);
    background-image: url(../../hyakugo-id/images/swipe.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0px auto;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.env-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 930px;
}
@media (max-width: 750px) {
  .env-table {
    width: 200vw;
    min-width: 800px;
  }
}
.env-table th,
.env-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 750px) {
  .env-table th,
  .env-table td {
    font-size: 3.733vw;
  }
}
.env-table th {
  background-color: #fcf8fb;
  font-weight: normal;
  color: #555;
}
.env-table tbody tr td:first-child {
  background-color: #fcf8fb;
}

.os-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
}

.os-group-title {
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 12px 0;
  border-radius: 4px;
}
@media (max-width: 750px) {
  .os-group-title {
    font-size: 3.733vw;
    padding: 0 0 20px 0;
  }
}

.os-card {
  background-color: #fcf8fb;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 18px;
}
@media (max-width: 750px) {
  .os-card {
    margin-bottom: 28px;
  }
}
.os-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  color: #ff2242;
  font-weight: bold;
}
@media (max-width: 750px) {
  .os-card h4 {
    font-size: 3.733vw;
  }
}

.os-card:nth-last-child(1) {
  margin-bottom: 0;
}

.step-list {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}

.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 1.5em 1fr;
  align-items: flex-start;
  font-size: 16px;
}
@media (max-width: 750px) {
  .step-list li {
    font-size: 3.733vw;
  }
}

.step-list li::before {
  content: counter(step) ".";
  text-align: left;
}

.example-text {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}

.example-text li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 1.5em 1fr;
  align-items: flex-start;
  font-size: 16px;
}
@media (max-width: 750px) {
  .example-text li {
    font-size: 3.733vw;
  }
}

.example-text li::before {
  content: "※";
  text-align: left;
}

/*# sourceMappingURL=hyakugo-id.css.map */
