/*------------------------------------
    全下層ページ共通のCSS
------------------------------------*/
.page-title {
  margin-top: 60px;
  padding: 30px 0 15px;
  background-color: #EEF7FB;
}
.page-h1 {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto 18px;
}
.page-h1__en {
  position: relative;
  margin-bottom: 0;
  padding-left: 28px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1;
  color: #57B0D6;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.page-h1__en::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(10px, 1.5vw, 18px);
  height: clamp(10px, 1.5vw, 18px);
  margin: auto;
  background-color: #57B0D6;
  border-radius: 50%;
}
.page-h1__ja {
  position: relative;
  padding-left: clamp(14px, 2vw, 20px);
  padding-bottom: clamp(5px, 1vw, 10px);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0;
}
.page-h1__ja::before {
  position: absolute;
  content: "/";
  left: 0;
  top: 0;
}

@media screen and (max-width: 750px) {
  .page-title {
    padding: 20px 10px;
  }
  .page-h1__ja {
    width: 100%;
    padding-left: 40px;
  }
  .page-h1__ja::before {
    left: 27px;
  }
}

.page-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 300px;
  margin: auto;
  padding: 8px 20px;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(to right, #57B0D6, #007ACC);
  border-radius: 50px;
}
.page-button::before {
  position: absolute;
  content: "";
  right: 20px;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background-color: #FFF;
  border-radius: 50%;
}
.page-button::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: auto;
  font-size: 14px;
  color: #57B0D6;
  transform-origin: center;
  transform: rotate(-45deg);
}
.page-button:hover {
  color: #FFF;
  opacity: 0.8;
}
.office-counselors .page-button {
  width: clamp(300px, 50vw, 800px);
  max-width: 400px;
  margin-top: clamp(60px, 10vw, 100px);
}

.page-breadcrumb {
  display: flex;
  gap: 6px 12px;
  flex-wrap: wrap;
  width: calc(100% - 60px);
  max-width: 1144px;
  margin: auto;
  padding-left: 0;
  font-size: 13px;
  list-style: none;
}
.page-breadcrumb li a {
  color: #4B4B4B;
  text-decoration: none;
}
.page-breadcrumb li a:hover {
  text-decoration: underline;
}
.page-breadcrumb li:has(a)::after {
  content: "/";
  padding-left: 12px;
}

@media screen and (min-width: 768px) {
  .page-title {
    padding: 20px 10px;
    background-color: #EEF7FB;
  }
}

main {
  padding: clamp(60px, 10vw, 100px) 0;
}
main.counseling-main {
  padding-bottom: 0;
}

.page-h2 {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(20px, 3vw, 60px);
  padding-left: 40px;
  padding-right: 20px;
  padding-bottom: 8px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  border-bottom: 1px solid #424242;
}
.page-h2::before {
  position: absolute;
  content: "";
  left: 4px;
  bottom: -8px;
  width: 30px;
  height: 60px;
  background-color: #57B0D6;
  clip-path: polygon(0 100%, 8px 100%, 100% 0, calc(100% - 8px) 0);
}
.profile-section .page-h2 {
  margin-bottom: 0;
}
.profile-main:not(.bg-white) .page-h2 {
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .page-h2 {
    padding-left: 24px;
    padding-right: 10px;
    padding-bottom: 2px;
  }
  .page-h2::before {
    left: 2px;
    bottom: -4px;
    width: 18px;
    height: 36px;
    clip-path: polygon(0 100%, 6px 100%, 100% 0, calc(100% - 6px) 0);
  }
}

/*------------------------------------
    カウンセリングについてのページ
------------------------------------*/
.counseling-section {
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}

.counseling-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 90px;
}
.counseling-flow__image01, .counseling-flow__image02 {
  width: 138px;
}
.counseling-flow__detail {
  width: calc(100% - 456px);
}

@media screen and (max-width: 960px) {
  .counseling-flow {
    position: relative;
    display: block;
    padding-bottom: 280px;
  }
  .counseling-flow__detail {
    width: calc(100% - 50px);
    max-width: 360px;
    margin: auto;
  }
  .counseling-flow__image01 {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 100px;
    bottom: 20px;
    width: 118px;
    margin: auto;
  }
  .counseling-flow__image02 {
    position: absolute;
    z-index: 1;
    left: 100px;
    right: 0;
    bottom: 0;
    width: 118px;
    margin: auto;
  }
}

.counseling-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
}
.counseling-menu dt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 140px);
}
.counseling-menu dt.middle {
  width: calc(100% - 210px);
}
.counseling-menu dt.short {
  width: calc(100% - 280px);
}
.counseling-menu dt::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  margin-left: 1rem;
  background: linear-gradient(to right, #000 8px, transparent 8px);
  background-size: 10px 1px;
  background-repeat: repeat-x; 
}
.counseling-menu dt .type {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #FFF;
  padding: 6px 10px;
  border-radius: 5px;
}
.counseling-menu dt .type.offline {
  background-color: #57B0D6;
}
.counseling-menu dt .type.online {
  background-color: #007ACC;
}
.counseling-menu dd {
  width: 140px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
.counseling-menu dd.middle {
  width: 210px;
}
.counseling-menu dd.long {
  width: 280px;
}
.counseling-menu dd .unit {
  font-size: 14px;
}

@media screen and (max-width: 750px) {
  .counseling-menu dt {
    width: calc(100% - 96px);
    font-size: 14px;
  }
  .counseling-menu dt .type {
    font-size: 12px;
  }
  .counseling-menu dt.sp-long {
    width: 100%;
	font-size: 13px;
  }
  .counseling-menu dt.sp-long::after {
    display: none;
  }
  .counseling-menu dt.sp-long .type {
    padding: 6px;
	font-size: 12px;
  }
  .counseling-menu dt::after {
    margin-left: 0.5rem;
  }
  .counseling-menu dd {
    width: 96px;
    font-size: 16px;
  }
  .counseling-menu dd.sp-long {
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
  }
  .counseling-menu dd.sp-long::before {
    content: "";
    flex-grow: 1;
    position: relative;
    bottom: 10px;
    height: 1px;
    margin-right: 1rem;
    background: linear-gradient(to right, #000 8px, transparent 8px);
    background-size: 10px 1px;
    background-repeat: repeat-x; 
  }
  .counseling-menu dd .unit {
    font-size: 12px;
  }
  .counseling-menu dt.middle {
    width: calc(100% - 150px);
  }
  .counseling-menu dd.middle {
    width: 150px;
  }
}

.counseling-menu__note {
  margin-top: clamp(20px, 3vw, 40px);
  font-size: 14px;
  letter-spacing: .03em;
}
.counseling-note {
  padding: clamp(16px, 2vw, 30px) clamp(16px, 4vw, 60px);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.7;
  font-weight: 500;
  background-color: #EEF7FB;
  border-radius: 20px;
}
.counseling-text {
  margin-bottom: clamp(20px, 3vw, 60px);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
}
.counseling-text.--sp-big {
  font-size: 20px;
}
.counseling-explanation {
  margin-bottom: clamp(20px, 3vw, 60px);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.7;
  text-align: center;
}
.counseling-image {
  width: 100%;
  height: auto;
  margin-bottom: clamp(20px, 3vw, 60px);
}
.counseling-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.counseling-comparison__item {
  padding: clamp(16px, 2vw, 20px) clamp(16px, 3vw, 40px);
  background-color: #EEF7FB;
  border-radius: 30px;
}
.counseling-comparison__item h3 {
  margin-bottom: clamp(10px, 2vw, 20px);
  font-size: 18px;
  text-align: center;
  font-weight: 700;
}
.counseling-comparison__item h3 span {
  font-size: 14px;
}
.counseling-comparison__item p {
  margin-bottom: 0;
  line-height: 1.7;
}

@media screen and (max-width: 750px) {
  .counseling-comparison {
    grid-template-columns: 1fr;
  }
}


.counseling-programs {
  display: grid;
  width: calc(100% - 2rem);
  max-width: 880px;
  margin: 60px auto 0;
  gap: clamp(25px, 5vw, 50px);
}
.counseling-programs__others {
  margin-top: 20px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: #007ACC;
}
.counseling-programs__item {
  position: relative;
  padding: 30px 20px 20px;
  background-color: #EEF7FB;
}
.counseling-programs__item h3 {
  position: absolute;
  left: -20px;
  top: -18px;
  font-size: 24px;
  line-height: 34px;
  padding-left: 44px;
  font-weight: 700;
}
.counseling-programs__item h3::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border: 3px solid #57B0D6;
  border-radius: 50%;
}
.counseling-programs__item h3::after {
  position: absolute;
  content: "";
  left: 6px;
  top: 6px;
  width: 22px;
  height: 22px;
  border: 1px solid #57B0D6;
  border-radius: 50%;
}
.counseling-programs__item .head {
  display: flex;
  font-weight: 700;
  margin-bottom: 20px;
}
.counseling-programs__item .head.mb-0 {
  margin-bottom: 0;
}
.counseling-programs__item .head .head-title {
  font-size: 18px;
  color: #007ACC;
}
.counseling-programs__item .head .head-content {
  font-size: 18px;
  color: #57B0D6;
  margin-bottom: 0;
}
.counseling-programs__item .description {
  font-size: 14px;
  letter-spacing: .03em;
  font-weight: 500;
}
.counseling-programs__item .detail-wrap {
  padding: 14px;
  background-color: #FFF;
}
.counseling-programs__item .detail-wrap.mb {
  margin-bottom: 20px;
}
.counseling-programs__item .detail-wrap .detail {
  display: grid;
  margin: auto;
}
.counseling-programs__item .detail-wrap .detail.two-columns {
  max-width: 750px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.counseling-programs__item .detail-wrap .detail p {
  font-size: 14px;
  letter-spacing: .03em;
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .counseling-programs {
    width: 100%;
  }
  .counseling-programs__item .head {
    display: block;
  }
  .counseling-programs__item .head p {
    display: inline;
  }
  .counseling-programs__item h3 {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 18px;
    line-height: 22px;
    padding-left: 26px;
  }
  .counseling-programs__item h3::before {
    width: 22px;
    height: 22px;
  }
  .counseling-programs__item h3::after {
    left: 4px;
    top: 4px;
    width: 14px;
    height: 14px;
  }
  .counseling-programs__item .head .head-content {
    font-size: 16px;
  }
  .counseling-programs__item .detail-wrap .detail.two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.counseling-meet__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: auto;
}
.counseling-meet__list--item {
  display: flex;
  align-items: center;
  padding: clamp(15px, 2vw, 50px) 0;
  background-color: #F5F5F5;
  cursor: pointer;
  transition: all .4s;
}
.counseling-meet__list--item:hover {
  opacity: 0.7;
}
.counseling-meet__list--item__inner {
  width: 100%;
}
.counseling-meet__list--item__inner .image {
  width: clamp(120px, 15vw, 160px);
  aspect-ratio: 1!important;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}
.counseling-meet__list--item__inner .onamae {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 700;
  text-align: center;
}
.counseling-meet__list--item__inner .onamae_en {
  font-size: 12px;
  color: rgba(66, 66, 66, 0.2);
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 700;
  text-align: center;
}
.counseling-meet__list--item__inner .keywords {
  display: flex;
  gap: 10px 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 8px;
}
.counseling-meet__list--item__inner .keywords span {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #FFF;
  background-color: #57B0D6;
  padding: 4px 8px;
  border-radius: 5px;
}

@media screen and (max-width: 960px) {
  .counseling-meet__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .counseling-meet__list--item__inner .keywords {
    padding: 0;
  }
  .counseling-meet__list--item__inner .keywords span {
    font-size: 11px;
  }
}

.counseling-image__consultation {
  width: 100%;
  max-width: 840px;
  margin: auto;
}
.counsultation-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 20px;
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
}
.counsultation-lists__item p {
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .counsultation-lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

.counsultation-lists__item h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.counsultation-lists__item h3::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 12px;
  height: 24px;
  background-color: #57B0D6;
  clip-path: polygon(0 100%, 4px 100%, 100% 0, calc(100% - 4px) 0);
}

.page-reservation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(134px, 25vw, 216px);
  background-color: #007ACC;
}
.page-reservation__content {
  position: relative;
}
.page-reservation__content-text {
  margin-bottom: clamp(20px, 4vw, 40px);
  font-size: clamp(16px, 2.4vw, 24px);
  color: #FFF;
  font-weight: 700;
  text-align: center;
}
.page-reservation__content-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(250px, 40vw, 400px);
  height: 95px;
  margin: auto;
  font-weight: 700;
  background-color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 6px 6px #BAD0F0;
  transition: all .3s;
}
.page-reservation__content-link span {
  display: block;
  line-height: 1.1;
}
.page-reservation__content-link span:nth-child(1) {
  font-size: 16px;
  color: #424242;
}
.page-reservation__content-link span:nth-child(2) {
  font-size: 32px;
  color: #007ACC;
}
.page-reservation__content-link:hover {
  color: #007ACC;
  transform: translateY(4px);
  box-shadow: 0 2px 6px #BAD0F0;
}
.page-reservation__content-link::before {
  position: absolute;
  content: "";
  left: 8px;
  top: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #007ACC;
  border-radius: 10px;
}

@media screen and (max-width: 960px) {
  .page-reservation {
    height: 250px;
  }
  .page-reservation__content-link {
    height: 90px;
  }
  .page-reservation__content-link span:nth-child(1) {
    font-size: 14px;
  }
  .page-reservation__content-link span:nth-child(2) {
    font-size: 28px;
  }
}

/*------------------------------------
    店舗情報ページ
------------------------------------*/

.office-section {
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.office-section__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: auto;
}
.office-section__lists--item {
  padding: 20px;
  background-color: #EEF7FB;
  border-radius: 20px;
}
.office-section__lists--item__name {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding: 0 10px 10px;
  font-weight: 700;
  color: #424242;
  text-decoration: none;
  border-bottom: 1px solid #424242;
}
.office-section__lists--item__name::before {
  position: absolute;
  content: "";
  right: 8px;
  top: 0;
  bottom: 6px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-right: 2px solid #424242;
  border-bottom: 2px solid #424242;
  transform-origin: center;
  transform: rotate(-45deg);
}
.office-section__lists--item__name:hover {
  color: #57B0D6;
}
.office-section__lists--item__detail {
  padding: 0 10px;
}
.office-section__lists--item__detail--address {
  line-height: 1.7;
}
.office-section__lists--item__detail--normal {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .03em;
}
.office-section__lists--item__detail--link {
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
}
.office-section__lists--item__detail--link a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #57B0D6;
}
.office-section__lists--item__detail--link a:hover {
  opacity: 0.7;
}
.office-section__lists--item__detail--link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 2px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.office-section__lists--item__detail--link.--map::before {
  background-image: url("../img/icon_map.png");
}
.office-section__lists--item__detail--link.--office::before {
  background-image: url("../img/icon_link.png");
}
.office-section__lists--item__detail--image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 30px;
  object-fit: cover;
}

.office-section__lists--item__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 56px;
  margin-top: 10px;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #007ACC;
  background-color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 6px 6px #BAD0F0;
  transition: all .3s;
}
.office-section__lists--item__link:hover {
  color: #007ACC;
  transform: translateY(4px);
  box-shadow: 0 2px 6px #BAD0F0;
}
.office-section__lists--item__link::before {
  position: absolute;
  content: "";
  left: 8px;
  top: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #007ACC;
  border-radius: 10px;
}

@media screen and (max-width: 960px) {
  .office-section__lists {
    grid-template-columns: repeat(1, 1fr);
  }
}

.office-info {
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.office-info__detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.office-info__detail--text h3 {
  margin-bottom: 0;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1;
  background-color:#EEF7FB;
  text-align: center;
}
.office-info__detail--text p {
  margin-bottom: 0;
  padding: 6px 20px;
  font-size: 14px;
}
.office-info__detail--text .note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.3;
}
.office-info__detail--text a {
  color: #424242;
}
.office-info__detail--text a:hover {
  color: #424242;
  opacity: 0.8;
}

@media screen and (max-width: 960px) {
  .office-info__detail {
    grid-template-columns: 1fr;
  }
  .office-info__detail--text img {
    width: 100%;
  }
  .office-info__detail--map__iframe {
    width: 100%;
  }
}

.office-counselors {
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: auto;
}
.office-counselors__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.office-counselors__list--item {
  display: flex;
  align-items: center;
  padding: clamp(15px, 2vw, 50px) 0;
  background-color: #F5F5F5;
  cursor: pointer;
}
.office-counselors__list--item:hover {
  opacity: 0.8;
}
.office-counselors__list--item__inner {
  width: 100%;
}
.office-counselors__list--item__inner .image {
  width: clamp(120px, 15vw, 160px);
  aspect-ratio: 1!important;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}
.office-counselors__list--item__inner .onamae {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 700;
  text-align: center;
}
.office-counselors__list--item__inner .onamae_en {
  font-size: 12px;
  color: rgba(66, 66, 66, 0.2);
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 700;
  text-align: center;
}
.office-counselors__list--item__inner .keywords {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.office-counselors__list--item__inner .keywords span {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #FFF;
  background-color: #57B0D6;
  padding: 4px 8px;
  border-radius: 5px;
}

@media screen and (max-width: 960px) {
  .office-counselors__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

.counselor-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  padding-top: 60px;
  background-color: rgba(66, 66, 66, 0.5);
}
.counselor-modal__content {
  display: none;
  width: calc(100% - 2rem);
  max-width: 1040px;
  max-height: calc(100dvh - 120px);
  margin: auto;
  padding: 60px;
  background-color: #FFF;
  border-radius: 50px;
}
.counselor-modal__content--main {
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 60px;
  align-items: center;
  max-height: calc(100dvh - 264px);
  margin-bottom: 20px;
  overflow-y: scroll;
}
.counselor-modal__content--main__essential .image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  object-fit: cover;
}
.counselor-modal__content--main__essential .role {
  width: 250px;
  margin: 0 auto 8px;
  font-weight: 700;
}
.counselor-modal__content--main__essential .onamae {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  width: 250px;
  margin: 0 auto 24px;
}
.counselor-modal__content--main__essential .onamae span:nth-child(1) {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.counselor-modal__content--main__essential .onamae span:nth-child(2) {
  color: rgba(66, 66, 66, 0.2);
  font-weight: 700;
  line-height: 1;
}
.counselor-modal__content--main__essential .keywords {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.counselor-modal__content--main__essential .keywords span {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #FFF;
  background-color: #57B0D6;
  padding: 4px 8px;
  border-radius: 5px;
}
.counselor-modal__content--main__detail .profile {
  margin-bottom: clamp(20px, 3vw, 30px);
  line-height: 1.7;
  letter-spacing: .03em;
  font-weight: 700;
  color: rgba(66, 66, 66, 0.8);
}
.counselor-modal__content--main__detail .master {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: flex-start;
  gap: 10px 8px;
  padding: 20px;
  background-color: #EEF7FB;
  border-radius: 20px;
}
.counselor-modal__content--main__detail .master dt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  color: #FFF;
  background-color: #C6CBCE;
  border-radius: 5px;
}
.counselor-modal__content--main__detail .master dd {
  margin-bottom: 0;
  padding-top: 2px;
  line-height: 1.3;
  font-weight: 700;
}
.counselor-modal__content--close .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 36px;
  margin: auto;
  color: #FFF;
  font-weight: 700;
  background-color: #7A7A7A;
  border-radius: 40px;
  cursor: pointer;
}
.counselor-modal__content--close .button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 960px) {
  .counselor-modal__content {
    max-height: calc(100dvh - 40px);
    padding: 40px 1rem;
  }
  .counselor-modal__content--main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .counselor-modal__content--main__essential .image {
    width: 140px;
    height: 140px;
    margin-left: auto;
    margin-right: auto;
  }
  .counselor-modal__content--main__essential .role {
    text-align: center;
  }
  .counselor-modal__content--main__essential .onamae {
    display: grid;
  }
  .counselor-modal__content--main__essential .onamae span {
    display: block;
    text-align: center;
  }
  .counselor-modal__content--main__detail .master dt {
    font-size: 14px;
  }
  .counselor-modal__content--main__detail .master dd {
    padding-top: 4px;
    font-size: 14px;
  }
}

.column-section {
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
}

/*------------------------------------
    お知らせ一覧・詳細ページ
------------------------------------*/

.news-lists {
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: auto;
}
.news-lists__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  color: #424242;
  border-bottom: 1px solid #424242;
  text-decoration: none;
}
.news-lists__item:hover {
  color: #424242;
  opacity: 0.8;
}
.news-lists__item--info {
  width: 210px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-lists__item--info__date {
  font-weight: 500;
}
.news-lists__item--info__tag {
  display: block;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
  color: #FFF;
  background-color: #57B0D6;
}
.news-lists__item--title {
  font-weight: 500;
}

@media screen and (max-width: 750px) {
  .news-lists__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
  .news-lists__item--info {
    width: auto;
  }
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: 0 auto 40px;
  gap: clamp(10px, 1.25vw, 20px);
}
.news-categories a {
  background-color: #FFF;
  color: #57B0D6;
  font-size: clamp(12px, 1.5vw, 18px);
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 50px;
  text-decoration: none;
  box-sizing: border-box;
  border: 2px solid #57B0D6;
  transition: all .3s;
}
.news-categories a.active,
.news-categories a:hover {
  color: #FFF;
  background-color: #57B0D6;
}
.news-detail {
  width: calc(100% - 2rem);
  max-width: 800px;
  margin: auto;
}
.news-detail h2 {
  margin-bottom: clamp(20px, 3vw, 40px);
  padding-left: 8px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: #57B0D6;
  border-left: clamp(4px, .6vw, 6px) solid #57B0D6;
}
.news-detail p {
  margin-bottom: clmap(40px, 6vw, 60px);
  letter-spacing: .018rem;
}
.news-detail__info {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 2rem);
  max-width: 960px;
  margin: 0 auto 4px;
  padding: 0 clamp(16px, 3vw, 40px);
}
.news-detail__info--date {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
}
.news-detail__info--categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.news-detail__info--categories--name {
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1;
  color: #FFF;
  background-color: #57B0D6;
  padding: 4px 8px;
  text-decoration: none;
}
.news-detail__info--categories--name:hover {
  opacity: 0.8;
  color: #FFF;
}
.news-detail__title {
  width: calc(100% - 2rem);
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 0 clamp(16px, 3vw, 40px) 10px;
  font-size: clamp(20px, 3.6vw, 28px);
  line-height: 2;
  font-weight: 700;
  border-bottom: 1px solid #4B4B4B;
}
.news-detail__buttons {
  position: relative;
  width: clamp(240px, 50vw, 390px);
  margin: clamp(40px, 6vw, 60px) auto 0;
  text-align: center;
}
.news-detail__buttons a {
  color: #000;
  text-decoration: none;
}
.news-detail__buttons a:hover {
  opacity: 0.6;
}
.news-detail__buttons--prev {
  position: absolute;
  left: 0;
  top: 0;
}
.news-detail__buttons--prev::before {
  position: absolute;
  content: "";
  left: -20px;
  top: 8px;
  transform: rotate(-45deg);
  width: 11px;
  height: 11px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.news-detail__buttons--next {
  position: absolute;
  right: 0;
  top: 0;
}
.news-detail__buttons--next::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 8px;
  transform: rotate(45deg);
  width: 11px;
  height: 11px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

@media screen and (max-width: 960px) {
  .news-detail__info {
    padding-left: 0;
    padding-right: 0;
  }
  .news-detail__title {
    padding-left: 0;
    padding-right: 0;
  }
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 40px);
}
.news-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #424242;
}
.news-pagination .page-numbers.current {
  background-color: #D9D9D9;
  border: none;
}
.news-pagination a {
  text-decoration: none;
}
.news-pagination a:hover {
  background-color: #D9D9D9;
}

/*------------------------------------
    コラム一覧・詳細ページ
------------------------------------*/
.column-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: 0 auto 40px;
  gap: clamp(10px, 1.25vw, 20px);
}
.column-categories a {
  background-color: #FFF;
  color: #57B0D6;
  font-size: clamp(12px, 1.5vw, 18px);
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 700;
  padding: 4px 8px;
  text-decoration: none;
  box-sizing: border-box;
  border: 2px solid #57B0D6;
  transition: all .3s;
}
.column-categories a.active,
.column-categories a:hover {
  color: #FFF;
  background-color: #57B0D6;
}

.column-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
}
.column-lists__item {
  padding: 25px;
  color: #424242;
  background-color: #EEF7FB;
  border-radius: 30px;
  text-decoration: none;
}
.column-lists__item:hover {
  color: #424242;
  opacity: 0.8;
}
.column-lists__item--info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.column-lists__item--info__tag {
  display: inline-flex;
  font-size: 14px;
  color: #FFF;
  font-weight: 700;
  background-color: #57B0D6;
  padding: 4px 8px;
}
.column-lists__item--info__date {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}
.column-lists__item--title {
  font-weight: 700;
}

@media screen and (max-width: 960px) {
  .column-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 750px) {
  .column-lists {
    grid-template-columns: repeat(1, 1fr);
  }
}

.column-detail {
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: auto;
}
.column-detail h2 {
  margin-bottom: clamp(20px, 3vw, 40px);
  padding-left: 8px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: #57B0D6;
  border-left: clamp(4px, .6vw, 6px) solid #57B0D6;
}
.column-detail h3 {
  margin-bottom: 20px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}
.column-detail p {
  margin-bottom: clamp(40px, 6vw, 60px);
  letter-spacing: .018em;
}
.column-detail__info {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 0 auto 4px;
  padding: 0 clamp(16px, 3vw, 40px);
}
.column-detail__info--date {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
}
.column-detail__info--categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.column-detail__info--categories--name {
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1;
  color: #FFF;
  background-color: #57B0D6;
  padding: 4px 8px;
  text-decoration: none;
}
.column-detail__info--categories--name:hover {
  opacity: 0.8;
  color: #FFF;
}
.column-detail__title {
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 4px auto 40px;
  padding: 0 clamp(16px, 3vw, 40px) 16px;
  font-size: clamp(20px, 3.6vw, 28px);
  line-height: 1.6;
  font-weight: 700;
  border-bottom: 1px solid #4B4B4B;
}
.column-author {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 0 auto clamp(20px, 3vw, 40px);
  padding: 0 clamp(16px, 3vw, 40px);
  text-decoration: none;
}
.column-author:hover {
  opacity: 0.8;
}
.column-author__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.column-author__text {
  font-size: 14px;
  line-height: 1.4;
  color: #007ACC;
}
.column-author__text p {
  margin-bottom: 0;
  font-weight: 500;
}
.column-author__text p:nth-child(1) {
  font-size: 12px;
}
.column-author__text p:nth-child(1) {
  font-size: 14px;
}
.column-lead__wrap {
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
  margin-bottom: clamp(40px, 6vw, 60px);
  padding-bottom: clamp(40px, 6vw, 60px);
  border-bottom: 1px solid #4B4B4B;
}
.column-lead {
  max-width: 900px;
  margin: auto;
}
.column-lead img {
  width: 100%;
  height: auto;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.column-lead p {
  letter-spacing: .018em;
}
.column-detail__buttons {
  position: relative;
  width: clamp(240px, 50vw, 390px);
  margin: clamp(40px, 6vw, 60px) auto 0;
  text-align: center;
}
.column-detail__buttons a {
  color: #000;
  text-decoration: none;
}
.column-detail__buttons a:hover {
  opacity: 0.6;
}
.column-detail__buttons--prev {
  position: absolute;
  left: 0;
  top: 0;
}
.column-detail__buttons--prev::before {
  position: absolute;
  content: "";
  left: -20px;
  top: 8px;
  transform: rotate(-45deg);
  width: 11px;
  height: 11px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.column-detail__buttons--next {
  position: absolute;
  right: 0;
  top: 0;
}
.column-detail__buttons--next::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 8px;
  transform: rotate(45deg);
  width: 11px;
  height: 11px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

@media screen and (max-width: 750px) {
  .column-author__text p:nth-child(1) {
    font-size: 10px;
  }
  .column-author__text p:nth-child(2) {
    font-size: 12px;
  }
}

.column-author__detail {
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: auto;
  padding: 30px 50px;
  box-sizing: border-box;
  border: 2px solid #57B0D6;
  border-radius: 10px;
}
.column-author__detail--title {
  font-size: 16px;
  font-weight: 700;
  color: #007ACC;
  letter-spacing: .03em;
  margin-bottom: 20px;
}
.column-author__detail--info {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 25px;
}
.column-author__detail--info__profile {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
}
.column-author__detail--info__profile img {
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.column-author__detail--info__profile .profile-text__role {
  margin-bottom: 8px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 700;
}
.column-author__detail--info__profile .profile-text__name {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}
.column-author__detail--info__profile .profile-text__name span:nth-child(1) {
  line-height: 1;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 700;
}
.column-author__detail--info__profile .profile-text__name span:nth-child(2) {
  line-height: 1;
  font-size: clamp(12px, 2vw, 16px);  
  font-weight: 700;
  color: rgba(66, 66, 66, 0.2);
}
.column-author__detail--info__expert {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: start;
  padding: 20px;
  background-color: #EEF7FB;
  border-radius: 10px;
}
.column-author__detail--info__expert dt {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1;
  color: #FFF;
  background-color: #C6CBCE;
  text-align: center;
  border-radius: 5px;
}
.column-author__detail--info__expert dd {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: .03em;
  font-weight: 500;
}
.column-author__detail--profile {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .03em;
}

@media screen and (max-width: 750px) {
  .column-author__detail {
    padding: 30px 16px;
  }
  .column-author__detail--info {
	grid-template-columns: 1fr;
	gap: 20px;
  }
  .column-author__detail--info__profile {
	display: inline-flex;
	justify-content: center;
  }
  .column-author__detail--info__profile img {
	width: 80px;
    height: 80px;
  }
  .column-author__detail--info__profile .profile-text {
    max-width: 160px;
  }
  .column-author__detail--info__expert dt {
    font-size: 12px;
  }
  .column-author__detail--info__expert dd {
    font-size: 12px;
	padding-top: 2px;
  }
}

/*------------------------------------
    セミナー一覧・詳細ページ
------------------------------------*/
.seminar-head {
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
}
.seminar-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
}
.seminar-lists__item {
  position: relative;
  padding: 25px;
  color: #424242;
  background-color: #EEF7FB;
  border-radius: 30px;
  text-decoration: none;
}
.seminar-lists__item:hover {
  color: #424242;
  opacity: 0.8;
}
.seminar-lists__item--info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.seminar-lists__item--info__seat {
  display: inline-flex;
  font-size: 14px;
  color: #FFF;
  font-weight: 700;
  background-color: #FF9217;
  padding: 4px 8px;
  border-radius: 50px;
}
.seminar-lists__item--info__date {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}
.seminar-lists__item--title {
  display: -webkit-box;
  height: 72px;
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 960px) {
  .seminar-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 750px) {
  .seminar-lists {
    grid-template-columns: repeat(1, 1fr);
  }
}

.seminar-categories {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 0 auto 40px;
  gap: clamp(10px, 1.25vw, 20px);
}
.seminar-categories a {
  background-color: #FFF;
  color: #FF9217;
  font-size: clamp(12px, 1.5vw, 18px);
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 700;
  padding: 4px 8px;
  text-decoration: none;
  box-sizing: border-box;
  border: 2px solid #FF9217;
  border-radius: 50px;
  transition: all .3s;
}
.seminar-categories a.active,
.seminar-categories a:hover {
  color: #FFF;
  background-color: #FF9217;
}

.seminar-detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: clamp(40px, 6vw, 60px) auto;
  border-top: 1px solid rgba(66, 66, 66, 0.2);
}
.seminar-detail dt {
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  color: #57B0D6;
  line-height: 1.75;
  border-bottom: 1px solid rgba(66, 66, 66, 0.2);
}
.seminar-detail dd {
  margin-bottom: 0;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1.75;
  border-bottom: 1px solid rgba(66, 66, 66, 0.2);
}

.seminar-detail h2 {
  margin-bottom: clamp(20px, 3vw, 40px);
  padding-left: 8px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: #57B0D6;
  border-left: clamp(4px, .6vw, 6px) solid #57B0D6;
}
.seminar-detail p {
  margin-bottom: clmap(40px, 6vw, 60px);
  letter-spacing: .018rem;
}
.seminar-detail__info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 0 auto 4px;
  padding: 0 clamp(16px, 3vw, 40px);
}
.seminar-detail__info--date {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
}
.seminar-detail__info--categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.seminar-detail__info--categories--name {
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1;
  font-weight: 500;
  color: #FFF;
  background-color: #57B0D6;
  padding: 4px 8px;
  text-decoration: none;
}
.seminar-detail__info--categories--name:hover {
  opacity: 0.8;
  color: #FFF;
}
.seminar-lists__item--addition {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 10px;
  align-items: center;
  margin-top: 20px;
}
.seminar-lists__item--addition dt {
  font-size: 14px;
  line-height: 1;
  padding: 4px 8px;
  color: #FFF;
  background-color: #57B0D6;
}
.seminar-lists__item--addition dd {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
.seminar-lists__item--point {
  position: absolute;
  top: 25px;
  right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #FFF;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  background-color: #007ACC;
  text-align: center;
  border-radius: 50%;
}

.seminar-detail__title {
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 4px auto 40px;
  padding: 0 clamp(16px, 3vw, 40px) 16px;
  font-size: clamp(20px, 3.6vw, 28px);
  line-height: 1.6;
  font-weight: 700;
  border-bottom: 1px solid #4B4B4B;
}
.seminar-detail__buttons {
  position: relative;
  width: clamp(240px, 50vw, 390px);
  margin: clamp(40px, 6vw, 60px) auto 0;
  text-align: center;
}
.seminar-detail__buttons a {
  color: #000;
  text-decoration: none;
}
.seminar-detail__buttons a:hover {
  opacity: 0.6;
}
.seminar-detail__buttons--prev {
  position: absolute;
  left: 0;
  top: 0;
}
.seminar-detail__buttons--prev::before {
  position: absolute;
  content: "";
  left: -20px;
  top: 8px;
  transform: rotate(-45deg);
  width: 11px;
  height: 11px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.seminar-detail__buttons--next {
  position: absolute;
  right: 0;
  top: 0;
}
.seminar-detail__buttons--next::before {
  position: absolute;
  content: "";
  right: -20px;
  top: 8px;
  transform: rotate(45deg);
  width: 11px;
  height: 11px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.seminar-poster {
  max-width: 640px;
  height: auto;
  margin: 40px auto 0;
}
.seminar-qr {
  margin-top: clamp(40px, 6vw, 60px);
}
.seminar-qr__text {
  margin-bottom: 20px;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  text-align: center;
}
.seminar-qr__img {
  width: 240px;
  height: auto;
  margin: auto;
}

@media screen and (max-width: 750px) {
  .seminar-detail {
    grid-template-columns: 1fr;
  }
  .seminar-detail dt {
    padding: 10px 16px 0;
    border-bottom: none;
  }
  .seminar-detail dd {
    padding: 0 16px 10px;
    font-size: 14px;
  }
  .seminar-detail dd p:last-of-type {
    margin-bottom: 0;
  }
  .seminar-detail__info {
    gap: 10px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .seminar-poster {
    max-width: calc(100% - 2rem);
    margin: 20px auto 0;
  }
}

/*------------------------------------
    会社概要ページ
------------------------------------*/
.profile-greeting {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.profile-greeting__split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 24px;
}
.profile-greeting__text {
  line-height: 1.75;
}
.profile-section {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}

@media screen and (max-width: 960px) {
  .profile-greeting__split {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  .profile-greeting__text {
    font-size: 14px;
  }
}

.profile-list {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
  margin: clamp(40px, 6vw, 60px) auto;
  border-top: 1px solid rgba(66, 66, 66, 0.2);
}
.profile-list dt {
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  color: #57B0D6;
  line-height: 1.75;
  border-bottom: 1px solid rgba(66, 66, 66, 0.2);
}
.profile-list dt a {
  color: #57B0D6;
}
.profile-list dt a:hover {
  opacity: 0.8;
}
.profile-list dd {
  margin-bottom: 0;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1.75;
  border-bottom: 1px solid rgba(66, 66, 66, 0.2);
}

@media screen and (max-width: 750px) {
  .profile-list {
    grid-template-columns: 1fr;
  }
  .profile-list dt {
    padding: 10px 16px 0;
    border-bottom: none;
  }
  .profile-list dd {
    padding: 0 16px 10px;
    font-size: 14px;
  }
  .profile-list dd p:last-of-type {
    margin-bottom: 0;
  }
}

.profile-main {
  padding: clamp(30px, 6vw, 60px) 0;
  background-color: #EEF7FB;
}
.profile-main.pt-100 {
  padding-top: clamp(60px, 10vw, 100px);
}
.profile-main__inner {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: auto;
}
.profile-main__inner dt,
.profile-main__inner dd {
  background-color: #FFF;
}
.profile-map {
  display: block;
  max-width: 100%;
  aspect-ratio: 2.5!important;
  margin: -30px auto 0;
}

/*------------------------------------
    法人向けサービスページ
------------------------------------*/
.services-section {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.services-text {
  text-align: center;
  line-height: 1.75;
}
.services-cycle {
  width: 100%;
  max-width: 640px;
  margin: clamp(20px, 6vw, 60px) auto 0;
}

@media screen and (max-width: 960px) {
  .services-text {
    text-align: left;
  }
}

.services-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 30px) 40px;
  max-width: 900px;
  margin: clamp(20px, 4vw, 40px) auto 0;
}
.service-examples__item {
  position: relative;
}
.service-examples__item h4 {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #FFF;
  background-color: #57B0D6;
}
.service-examples__item img {
  width: 100%;
  aspect-ratio: 1.5;
  margin-bottom: 8px;
  border-radius: 30px;
  overflow: hidden;
}
.service-examples__item p {
  margin-bottom: 0;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .services-examples {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-examples__item img {
    max-height: 210px;
    object-fit: cover;
  }
}

.services-explanation {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: auto;
}
.services-explanation__item {
  padding: 30px;
  background-color: #EEF7FB;
  border-radius: 30px;
}
.services-explanation__item h4 {
  position: relative;
  margin-bottom: clamp(10px, 2vw, 20px);
  padding-left: 28px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}
.services-explanation__item h4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  font-weight: 700;
  background-color: #57B0D6;
}
.services-explanation__item ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  max-width: 750px;
  margin: auto;
  padding-left: 0;
}
.services-explanation__item ul li {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.75;
  font-weight: 500;
}

@media screen and (max-width: 960px) {
  .services-explanation {
    gap: 10px;
  }
  .services-explanation__item {
    padding: 20px 16px;
  }
  .services-explanation__item h4 {
    padding-left: 26px;
    font-size: 16px;
  }
  .services-explanation__item h4::before {
    width: 16px;
    height: 16px;
  }
  .services-explanation__item ul {
    grid-template-columns: repeat(1, 1fr);
    max-width: calc(100% - 2rem);
  }
}

.services-support {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  max-width: 1080px;
  margin: auto;
}
.services-support p {
  margin-bottom: 0;
  line-height: 1.75;
}

@media screen and (max-width: 960px) {
  .services-support {
    grid-template-columns: repeat(1, 1fr);
  }
}

.services-slogan {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 700;
  color: #007ACC;
  text-align: center;
}
.services-sloganSub {
  margin-bottom: clamp(20px, 3vw, 40px);
  font-weight: 500;
  text-align: center;
}

.services-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(20px, 4vw, 40px);
}
.services-lead__content {
  max-width: 770px;
  text-align: center;
}
.services-lead__image01 {
  width: clamp(90px, 15vw, 180px);
}
.services-lead__image02 {
  width: clamp(90px, 15vw, 180px);
}
.services-lead__content h3 {
  margin-bottom: 40px;
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}
.services-lead__content p {
  line-height: 1.75;
}
.services-lead__content p strong {
  font-weight: 500;
}
.services-lead__content p:has(strong) {
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .services-lead {
    flex-wrap: wrap;
    justify-content: center;
  }
  .services-lead__content {
    order: 3;
    max-width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .services-lead__image01 {
    order: 1;
    margin-right: 40px;
  }
  .services-lead__image02 {
    order: 2;
  }
  .services-lead__content h3 {
    margin-bottom: 10px;
  }
  .services-lead__content p {
    text-align: left;
  }
  .services-lead__content p:has(strong) {
    text-align: center;
  }
}

.services-map {
  max-width: 900px;
  margin: auto;
  padding: 70px 60px;
  background-color: rgba(87, 176, 214, 0.1);
  border-radius: 30px;
  background-image: url("../img/services-map.png");
  background-repeat: no-repeat;
  background-size: 320px auto;
  background-position: center right 70px;
}
.services-map__content h4 {
  margin-bottom: 20px;
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: 1.75;
  font-weight: 700;
}
.services-map__content p {
  margin-bottom: 0;
  line-height: 1.75;
}

@media screen and (max-width: 750px) {
  .services-map {
    padding: 30px 16px 300px;
    background-size: 310px auto;
    background-position: bottom 30px center;
  }
}

/*------------------------------------
    規約系ページ
------------------------------------*/
.terms-section {
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: auto;
}
.terms-content {
  max-width: 800px;
  margin: auto;
}
.terms-content h3 {
  margin-bottom: clamp(10px, 2vw, 20px);
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 700;
}
.terms-content p {
  font-size: clamp(14px, 2vw, 16px);
}
.terms-content p:not(:last-of-type) {
  margin-bottom: clamp(20px, 4vw, 40px);
}

.terms-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
  margin: clamp(40px, 6vw, 60px) auto;
  border-top: 1px solid rgba(66, 66, 66, 0.2);
}
.terms-list dt {
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  color: #57B0D6;
  line-height: 1.75;
  border-bottom: 1px solid rgba(66, 66, 66, 0.2);
}
.terms-list dt a {
  color: #57B0D6;
}
.terms-list dt a:hover {
  opacity: 0.8;
}
.terms-list dd {
  margin-bottom: 0;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1.75;
  border-bottom: 1px solid rgba(66, 66, 66, 0.2);
}

@media screen and (max-width: 750px) {
  .terms-list {
    grid-template-columns: 1fr;
  }
  .terms-list dt {
    padding: 10px 16px 0;
    border-bottom: none;
  }
  .terms-list dd {
    padding: 0 16px 10px;
    font-size: 14px;
  }
  .terms-list dd p:last-of-type {
    margin-bottom: 0;
  }
}

.contact-section {
  padding: 100px 0;
}
.contact-section__inner {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 100px 0;
  background-color: #EEF7FB;
  border-radius: 30px;
}
.contact-section__inner form {
  width: calc(100% - 2rem);
  max-width: 540px;
  margin: auto;
}

.contact-form__control {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.contact-form__control p {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: flex-start;
}
.contact-form__control label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
  font-weight: 500;
}
.contact-form__control label span {
  padding: 2px 4px;
  font-size: 14px;
  color: #FFF;
  background-color: #57B0D6;
  border-radius: 5px;
}
.contact-form__control input {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
}
.contact-form__control textarea {
  width: 100%;
  height: 180px;
  padding: 10px;
  font-size: 14px;
  resize: none;
}
.radio-wrap .wpcf7-list-item {
  width: 100%;
  margin-left: 0;
}
.radio-wrap label {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.radio-wrap label input[type=radio] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.radio-wrap label span {
  width: calc(100% - 30px);
  background: none;
  padding: 0;
  color: #333;
  line-height: 1.7;
}
.contact-form__acceptance .link {
  margin-bottom: 8px;
  text-align: center;
}
.contact-form__acceptance .link a {
  color: #44586B;
  font-weight: 300;
  text-decoration: underline;
}
.contact-form__acceptance .link a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.contact-form__acceptance .wpcf7-list-item {
  display: block;
  margin: 0;
  font-size: 14px;
}
.contact-form__acceptance .wpcf7-list-item input[type=checkbox] {
  width: 21px;
  height: 21px;
}
.contact-form__acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.contact-form__submit {
  margin-top: 30px;
  text-align: center;
}
.contact-form__submit .wpcf7-spinner {
  display: none;
}
.contact-form__submit input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 48px;
  margin: auto;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  background-color: #57B0D6;
  border-radius: 50px;
  border: none;
}
.wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 14px;
}

@media screen and (max-width: 750px) {
  .contact-section {
    padding: 0;
  }
  .contact-section__inner {
    padding: 40px 0;
    border-radius: 0;
  }
  .contact-form__control p {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
