@charset "utf-8";

:root {
  --container-magnification: 0.66; /* 495 / 750 */
}

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  font-size: clamp(1rem, 2.6vw, 2rem);
  background-color: #f7f9fa;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

section.lead,
section.content {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 90px;
  box-sizing: border-box; /* content-box → border-box に変更 */
}
.sm section.lead,
.sm section.content {
  padding: 0;
  width: 92%;
}

main {
  padding: 50px 0 70px;
}
.sm main {
  padding: 0 0 50px;
}
.mv {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
section.lead {
  margin: 80px auto 0;
}
.sm section.lead {
  margin: 10% auto 0;
}
section.content {
  margin: 80px auto 0;
}
.sm section.content {
  margin: 15% auto 0;
}
.lead-inner {
  position: relative;
}
.lead-quotation {
  position: absolute;
  width: 41px;
  height: 35px;
}
.sm .lead-quotation {
  width: 20px;
  height: 18px;
}

.lead-quotation._start {
  top: 0;
  left: 0;
}
.lead-text {
  padding: 20px 50px;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #009ecb;
  text-align: center;
  font-weight: bold;
}
.sm .lead-text {
  font-size: 1.5rem;
  padding: 10px;
}
.lead-quotation._close {
  bottom: 0;
  right: 0;
}

.content-profile-title {
  width: 210px;
}
.sm .content-profile-title {
  width: 40%;
}
.content-profile-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 60px;
}
.sm .content-profile-card {
  flex-direction: column;
  gap: 0;
  align-items: self-start;
  margin-top: 13%;
}

.content-profile-card._reverse {
  /* 二つ目の.content-profile-card (推奨) */
}

.content-profile-card._reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.sm .content-profile-card._reverse {
  flex-direction: column;
}
.content-profile-card-img {
  width: 480px;
  min-width: 480px;
}
.sm .content-profile-card-img {
  width: 85%;
  min-width: 85%;
}
.content-profile-card._reverse .content-profile-card-img {
  transform: translateX(-100px);
}
.sm .content-profile-card._reverse .content-profile-card-img {
  transform: translateX(0);
}
.content-profile-card-img > img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.sm .content-profile-card-img > img {
  aspect-ratio: 580 / 675;
}
.content-profile-card-text {
  width: 640px;
  min-width: 640px;
  background-color: #fff;
  /* padding: clamp(1.25rem, 0.849rem + 1.83vw, 2.5rem); */
  padding: 40px;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(-100px);
}
.sm .content-profile-card-text {
  width: 85%;
  min-width: 85%;
  transform: translate(16%, -12%);
  padding: 5%;
}
.content-profile-card._reverse .content-profile-card-text {
  transform: translateX(0px);
}
.sm .content-profile-card._reverse .content-profile-card-text {
  transform: translate(16%, -12%);
}

.content-profile-card-text-nameArea {
  padding: 0 0 0 3%;
  border-left: 7px solid #009ecb;
}
.sm .content-profile-card-text-nameArea {
  border-left: 3px solid #009ecb;
}

.content-profile-card-text-nameArea-position {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.sm .content-profile-card-text-nameArea-position {
  font-size: 1.1rem;
}
.content-profile-card-text-nameArea-name {
  font-size: 3.4rem;
  font-weight: bold;
  margin-top: 1.7rem;
}
.sm .content-profile-card-text-nameArea-name {
  font-size: 1.9rem;
  margin-top: 1rem;
}

.content-profile-card-text-body {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 3rem;
  line-height: 1.5;
}
.sm .content-profile-card-text-body {
  font-size: 1.4rem;
  margin-top: 8%;
}
.content-talk {
  margin-top: 120px;
}
.sm .content-talk {
  margin-top: 10%;
}

.content-talk-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sm .content-talk-title {
  align-items: flex-start;
}
.content-talk-title > img {
  width: 50px;
}
.sm .content-talk-title > img {
  width: 10%;
}
.content-talk-title > span {
  font-size: 3.6rem;
  font-weight: 700;
  color: #009ecb;
  font-style: italic;
}
.sm .content-talk-title > span {
  font-size: 2.5rem;
}

.content-talk-question-text {
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 4rem;
  line-height: 1.5;
}
.sm .content-talk-question-text {
  font-size: 1.7rem;
  margin-top: 10%;
}

.content-talk-question-text p {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}
.content-talk-question-text span {
  display: block;
}
.content-talk-box {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.sm .content-talk-box {
  gap: 10vw;
}

.content-talk-box-img {
  max-width: 705px;
  margin: 0 auto;
}
.content-talk-box-img-note {
  display: block;
  font-size: 1.4rem;
  color: #666;
  margin-top: 6px;
  line-height: 1.2;
  text-align: center;
}
.sm .content-talk-box-img-note {
  font-size: 1.2rem;
  margin-top: 3px;
}
.content-talk-box-pdfLink > a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #009ecb;
  text-decoration: underline;
  margin-top: 20px;
  line-height: 1.5;
}

.sm .content-talk-box-pdfLink > a {
  font-size: 1.4rem;
}

.content-talk-box-text {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.content-talk-box-text .note {
  display: block;
  font-size: 1.4rem;
  color: #666;
  margin-top: 6px;
  line-height: 1.2;
}
.sm .content-talk-box-text .note {
  font-size: 1.2rem;
  margin-top: 3px;
}
.sm .content-talk-box-text {
  justify-content: space-between;
}
.content-talk-box-text-icon {
  width: 77px;
  margin-top: 3px;
}
.sm .content-talk-box-text-icon {
  width: 44px;
}
.content-talk-box-text > p {
  font-size: 2rem;
  line-height: 1.6;
  width: calc(100% - 107px);
  font-weight: 600;
}
.sm .content-talk-box-text > p {
  font-size: 1.4rem;
  width: calc(100% - 17%);
}
.content-pagination {
  position: relative;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
.sm .content-pagination {
  margin-top: 16%;
}

.content-pagination-numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sm .content-pagination-numbers {
  justify-content: center;
  margin-top: 10%;
  padding-top: 50px;
}

.content-pagination-numbers-item {
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sm .content-pagination-numbers-item {
  font-size: 1.8rem;
  width: 35px;
  height: 35px;
}
.content-pagination-numbers-item a {
  color: #009ecb;
}
.content-pagination-numbers-item._current {
  background-image: linear-gradient(120deg, #075b8f, #48aff0);
}

.content-pagination-numbers-item._current a {
  color: #fff;
}

.content-pagination-btn {
  position: absolute;
  background-image: linear-gradient(120deg, #075b8f, #48aff0);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 86px;
  color: #009ecb;
  font-size: 2.4rem;
  font-weight: 700;
}
.content-pagination-btn._next {
  right: 0;
}
.content-pagination-btn._prev {
  left: 0;
}
.sm .content-pagination-btn {
  font-size: 1.8rem;
  padding: 2px;
}
.content-pagination-btn-inner {
  background-color: #f7f9fa;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.content-pagination-btn-inner > img {
  width: 30px;
  height: 14px;
}
.sm .content-pagination-btn-inner > img {
  width: 20px;
  height: 10px;
}

.sm .content-pagination-btn-container {
  display: flex;
  justify-content: space-between;
}
.sm .content-pagination-btn {
  width: 100px;
  height: 50px;
}

.sm .s-none {
  display: none;
}
.none {
  display: none;
}
.sm .s-block {
  display: block;
}

@media (max-width: 1210px) {
  .content-profile-card-text {
    width: 60%;
    min-width: 60%;
  }
  .content-profile-card-img {
    width: 350px;
    min-width: 350px;
  }
}

/* @media (max-width: 1030px) {
  .content-profile-card-text {
    transform: translateX(-50%);
  }
  .content-profile-card-img {
    transform: translateX(-30%);
  }
} */
