@charset "UTF-8";
/* //////////////////////////////////////////////////

Title : strengths.scss
For   : bell-c/

Created       : 2025-11-14
Last Modified : 2025-11-14

==========================================

Content

////////////////////////////////////////////////// */
/**
 * common
 */
.pin {
  min-height: 100vh;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-strengths .c-page-item__title {
    margin-bottom: 2.8rem;
  }
  .p-strengths .c-page-item__sub-title {
    margin-bottom: 2.8rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-strengths .c-page-item__title {
    margin-bottom: 4.8rem;
  }
  .p-strengths .c-page-item__sub-title {
    margin-bottom: 2.8rem;
  }
}
/**
 * intro
 */
.p-strengths-intro__title {
  position: relative;
}
.p-strengths-intro__title-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-style: Bold;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--color-tertiary);
  opacity: 10%;
}
.p-strengths-intro__title-ja {
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.p-strengths-intro__title-ja > span {
  font-size: 8rem;
}
.p-strengths-intro__text {
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-strengths-intro {
    padding: 3.5rem 0 8rem;
  }
  .p-strengths-intro__title {
    margin: 0 auto;
  }
  .p-strengths-intro__title-en {
    font-size: 4rem;
    line-height: 1;
    padding-bottom: 4.2rem;
  }
  .p-strengths-intro__title-ja {
    font-size: 1.8rem;
    top: 2rem;
  }
  .p-strengths-intro__title-ja > span {
    font-size: 2.8rem;
  }
  .p-strengths-intro__text {
    font-size: 1.4rem;
    line-height: 2;
    margin: 0 2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-strengths-intro {
    padding: 10rem 0 20rem;
  }
  .p-strengths-intro__title {
    margin: 0 auto 8rem;
  }
  .p-strengths-intro__title-en {
    font-size: 17rem;
    line-height: 0.8;
    padding-bottom: 10rem;
  }
  .p-strengths-intro__title-ja {
    font-size: 4.4rem;
    top: 8rem;
  }
  .p-strengths-intro__title-ja > span {
    font-size: 8rem;
  }
  .p-strengths-intro__text {
    font-size: 2rem;
    line-height: 2.2;
  }
}
.letter-spacing-0_18 {
  letter-spacing: 0.18em;
}

.letter-spacing--0_09 {
  letter-spacing: 0.09em;
}

.letter-spacing-0_1 {
  letter-spacing: 0.1em;
}

.letter-spacing-0_07 {
  letter-spacing: 0.07em;
}

.p-strength-swiper-wrapper {
  position: relative;
  overflow: hidden;
}

.p-strength-swiper-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6.6rem;
  transform: translateY(-50%);
  background-color: var(--color-background-default);
}

.swiper.p-strength-swiper {
  overflow: visible;
}
.swiper.p-strength-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper.p-strength-swiper img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1; /* 正方形維持 */
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 4px 4px 40px 0px rgba(51, 80, 134, 0.4);
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-strength-swiper-wrapper {
    padding: 4rem 0 4rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-strength-swiper-wrapper {
    padding: 8rem 0 8rem;
  }
}
/**
 * certification
 */
.p-strengths-certification__list {
  display: grid;
  list-style: none;
  padding: 0;
}
.p-strengths-certification__list:last-of-type {
  margin-bottom: 0;
}
.p-strengths-certification__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.p-strengths-certification__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px solid var(--color-light-gray);
  z-index: 0;
}
.p-strengths-certification__item:last-of-type {
  justify-content: flex-end;
}
.p-strengths-certification__item:last-of-type::before {
  display: none;
}
.p-strengths-certification__name, .p-strengths-certification__annotation, .p-strengths-certification__count {
  /* 線の上に重ねる */
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}
.p-strengths-certification__name, .p-strengths-certification__annotation {
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
.p-strengths-certification__name {
  display: inline-block;
}
.p-strengths-certification__count {
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-strengths-certification__list {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-bottom: 4rem;
  }
  .p-strengths-certification__list:last-of-type {
    margin-bottom: 0;
  }
  .p-strengths-certification__name, .p-strengths-certification__annotation {
    font-size: 1.4rem;
  }
  .p-strengths-certification__name {
    padding-right: 1.2rem;
    max-width: 88%;
  }
  .p-strengths-certification__count {
    font-size: 1.4rem;
    padding-left: 1.2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-strengths-certification__list {
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    gap: 3.2rem 7.6rem;
    margin-bottom: 8rem;
  }
  .p-strengths-certification__list:last-of-type {
    margin-bottom: 0;
  }
  .p-strengths-certification__name, .p-strengths-certification__annotation {
    font-size: 1.8rem;
  }
  .p-strengths-certification__name {
    padding-right: 2rem;
    max-width: 80%;
  }
  .p-strengths-certification__count {
    font-size: 2rem;
    padding-left: 2rem;
  }
  .p-strengths-certification .c-page-item__title {
    margin-bottom: 8rem;
  }
  .p-strengths-certification .c-page-item__sub-title {
    margin-bottom: 4rem;
  }
}
/**
 * grand-design
 */
.p-strengths-grand-design__contents {
  display: flex;
}
.p-strengths-grand-design__txt p {
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.p-strengths-grand-design__img {
  aspect-ratio: 74/73;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-strengths-grand-design__txt p {
    font-size: 1.4rem;
  }
  .p-strengths-grand-design__contents {
    flex-direction: column;
    align-items: center;
  }
  .p-strengths-grand-design__img {
    width: min(100%, 400px);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-strengths-grand-design .c-page-item__title {
    margin-bottom: 8rem;
  }
  .p-strengths-grand-design__contents {
    justify-content: space-between;
    align-items: flex-start;
  }
  .p-strengths-grand-design__txt {
    width: 54%;
  }
  .p-strengths-grand-design__txt p {
    font-size: 1.8rem;
  }
  .p-strengths-grand-design__img {
    width: 37%;
  }
}
/**
 * plan
 */
.p-strengths-table {
  border: 0.2rem solid #eaeff1;
  border-collapse: collapse;
  table-layout: fixed;
}
.p-strengths-table thead th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-block: 2rem;
  border: 0.2rem solid #eaeff1;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.p-strengths-table tbody th,
.p-strengths-table tbody td {
  border: 0.2rem solid #eaeff1;
}
.p-strengths-table tbody th {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.p-strengths-table tbody td {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.p-strengths-table tbody td > span {
  display: inline-block;
  margin-bottom: 1.6rem;
  font-weight: 700;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  thead th {
    font-size: 1.6rem;
  }
  tbody th,
tbody td {
    font-size: 1.4rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  thead th {
    font-size: 1.8rem;
  }
  tbody th,
tbody td {
    font-size: 1.6rem;
  }
}
.p-strengths-plan__img {
  width: 40%;
  margin: 0 auto 2.4rem;
}
.p-strengths-plan__lead {
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.p-strengths-plan__txt {
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.p-strengths-plan__table-wrap {
  overflow-x: auto;
}
.p-strengths-plan__table-wrap:last-of-type {
  margin-bottom: 0;
}

.p-strengths-plan-v4_0__table tbody th {
  padding: 1.6rem;
}
.p-strengths-plan-v4_0__table tbody td {
  padding: 1.6rem 0.5rem 1.7rem 1.4rem;
}
.p-strengths-plan-v4_0__table tbody th,
.p-strengths-plan-v4_0__table tbody td:last-of-type {
  text-align: center;
  vertical-align: middle;
}

.p-strengths-plan-v3_0__table tbody th,
.p-strengths-plan-v3_0__table tbody td {
  padding: 1.6rem;
}
.p-strengths-plan-v3_0__table tbody th {
  text-align: center;
  vertical-align: middle;
}
.p-strengths-plan-v3_0__table tbody td:first-of-type {
  vertical-align: middle;
}
.p-strengths-plan-v3_0__table .c-page-link {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-strengths-plan__img {
    width: min(100%, 400px);
    margin: 0 auto 2.4rem;
  }
  .p-strengths-plan__lead {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }
  .p-strengths-plan__txt {
    font-size: 1.4rem;
    margin-bottom: 6rem;
  }
  .p-strengths-plan__table-wrap {
    margin-bottom: 4rem;
  }
  .p-strengths-plan-v4_0__table {
    width: 92.43rem;
  }
  .p-strengths-plan-v4_0__table-col1 {
    width: 20.3rem;
  }
  .p-strengths-plan-v4_0__table-col2 {
    width: 50.3rem;
  }
  .p-strengths-plan-v4_0__table-col3 {
    width: 22.3rem;
  }
  .p-strengths-plan-v3_0__table {
    width: 110rem;
  }
  .p-strengths-plan-v3_0__table-col1 {
    width: 9.8rem;
  }
  .p-strengths-plan-v3_0__table-col2 {
    width: 35.3rem;
  }
  .p-strengths-plan-v3_0__table-col3 {
    width: 65.3rem;
  }
  .p-strengths-plan-v3_0__table .c-page-link {
    font-size: 1.4rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-strengths-plan__img {
    width: 40%;
    margin: 0 auto 2.4rem;
  }
  .p-strengths-plan__lead {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
  .p-strengths-plan__txt {
    font-size: 1.8rem;
    margin-bottom: 6rem;
  }
  .p-strengths-plan__table-wrap {
    margin-bottom: 6rem;
  }
  .p-strengths-plan-v4_0__table {
    width: 98.43rem;
  }
  .p-strengths-plan-v4_0__table-col1 {
    width: 22.3rem;
  }
  .p-strengths-plan-v4_0__table-col2 {
    width: 52.3rem;
  }
  .p-strengths-plan-v4_0__table-col3 {
    width: 24.3rem;
  }
  .p-strengths-plan-v3_0__table {
    width: 120rem;
  }
  .p-strengths-plan-v3_0__table-col1 {
    width: 10.8rem;
  }
  .p-strengths-plan-v3_0__table-col2 {
    width: 35.3rem;
  }
  .p-strengths-plan-v3_0__table-col3 {
    width: 72.3rem;
  }
  .p-strengths-plan-v3_0__table .c-page-link {
    font-size: 1.6rem;
  }
}
/*# sourceMappingURL=strengths.css.map */