/* ---------------------------------------------------------
    page_ttl
--------------------------------------------------------- */
.page_ttl {
  margin-top: 100px;
  font-size: 32px;
  color: #f48f9f;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page_ttl .en {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

@media (max-width: 767px) {
  .page_ttl {
    margin-top: 70px;
    font-size: 28px;
    gap: 10px;
  }
}

/* ---------------------------------------------------------
    mind
--------------------------------------------------------- */
.mind {
  margin-top: 60px;
  font-size: 20px;
  font-weight: 500;
  color: #f48f9f;
  text-align: center;
}

@media (max-width: 767px) {
  .mind {
    margin-top: 45px;
    font-size: 14px;
  }
}

/* ---------------------------------------------------------
    promise_content
--------------------------------------------------------- */
.promise_content {
  padding: 30px 15px 30px 0;
  margin-bottom: 45px;
  background: #fff;
  display: flex;
}

.promise_content.first {
  margin-top: 60px;
}

.promise_content.last {
  margin-bottom: 0;
}

.promise_content .l_content {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.promise_content .l_content .promise {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #f48f9f;
}

.promise_content .l_content .num {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 80px;
  font-weight: 300;
  color: #f48f9f;
}

.promise_content .r_content {
  width: auto;
}

.promise_content .r_content .ttl_wrap .sect_ttl {
  font-size: 24px;
  color: #f48f9f;
  font-weight: 400;
}

.promise_content .r_content .ttl_wrap .sub_ttl {
  font-size: 16px;
  color: #f48f9f;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 15px;
}

.promise_content .r_content .body {
  margin-top: 25px;
}

.promise_content .r_content .body .list {
  list-style-type: none;
}

.promise_content .r_content .body .list .list_item {
  margin-bottom: 15px;
  text-align: justify;
  padding-left: 17px;
  position: relative;
}

.promise_content .r_content .body .list .list_item::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  background: url(../images/speciality/marker.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 4px;
}

.promise_content .r_content .body .list .list_item:last-child {
  margin-bottom: 0;
}

.promise_content .open_btn {
  display: none;
}

@media (max-width: 767px) {
  .promise_content {
    padding: 45px 20px;
    margin-bottom: 100px;
    display: block;
    position: relative;
  }
  .promise_content.first {
    margin-top: 90px;
  }
  .promise_content .l_content {
    width: fit-content;
    gap: 10px;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .promise_content .l_content .promise {
    font-size: 12px;
  }
  .promise_content .l_content .num {
    font-size: 60px;
  }
  .promise_content .r_content {
    width: auto;
  }
  .promise_content .r_content .ttl_wrap {
    text-align: center;
  }
  .promise_content .r_content .body {
    display: none;
    margin-top: 25px;
  }
  .promise_content .r_content .body .list {
    list-style-type: none;
  }
  .promise_content .r_content .body .list .list_item {
    line-height: 1.4;
  }
  .promise_content .open_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 30px;
    border: 1px solid #f48f9f;
    border-radius: 100px;
    background: #f48f9f;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all .3s;
  }
  .promise_content .open_btn.open_active {
    background: #fff;
  }
  .promise_content .open_btn.open_active .text {
    color: #f48f9f;
  }
  .promise_content .open_btn .text {
    font-size: 12px;
    color: #fff;
    transition: all .3s;
  }
}

/* ---------------------------------------------------------
    sub_visual
--------------------------------------------------------- */
.sub_visual {
  width: 100%;
  margin-top: 55px;
}

.sub_visual .image {
  width: 100%;
  height: 100%;
  aspect-ratio: 94 / 43;
  object-fit: cover;
}

@media (max-width: 767px) {
  .sub_visual {
    margin-top: 70px;
  }
}

/* ---------------------------------------------------------
    speciality_content
--------------------------------------------------------- */
.speciality_content {
  padding: 30px 15px 30px 0;
  margin-bottom: 45px;
  background: #fff;
  display: flex;
}

.speciality_content.speciality_3 .r_content .body .sub_ttl {
  color: #f48f9f;
  margin: 40px 0 20px;
}

.speciality_content.speciality_3 .r_content .body .bunner {
  max-width: 260px;
  margin-top: 15px;
  position: relative;
}

.speciality_content.speciality_3 .r_content .body .bunner:hover .cap {
  text-decoration: none;
}

.speciality_content.speciality_3 .r_content .body .bunner .link {
  position: absolute;
  inset: 0;
}

.speciality_content.speciality_3 .r_content .body .bunner .cap {
  font-size: 13px;
  color: #f48f9f;
  text-decoration: underline;
  transition: all .3s;
}

.speciality_content.first {
  margin-top: 60px;
}

.speciality_content.last {
  margin-bottom: 0;
}

.speciality_content .l_content {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.speciality_content .l_content .speciality {
  font-family: "Belleza", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #f48f9f;
}

.speciality_content .l_content .num {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 80px;
  font-weight: 300;
  color: #f48f9f;
}

.speciality_content .r_content {
  width: auto;
}

.speciality_content .r_content .ttl_wrap .sect_ttl {
  font-size: 24px;
  color: #f48f9f;
  font-weight: 500;
}

.speciality_content .r_content .ttl_wrap .sub_ttl {
  font-size: 16px;
  color: #f48f9f;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 15px;
}

.speciality_content .r_content .body {
  margin-top: 25px;
}

.speciality_content .r_content .body .list {
  list-style-type: none;
}

.speciality_content .r_content .body .list .list_item {
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
  padding-left: 17px;
  position: relative;
}

.speciality_content .r_content .body .list .list_item::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  background: url(../images/speciality/marker.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 8px;
}

.speciality_content .r_content .body .list .list_item:last-child {
  margin-bottom: 0;
}

.speciality_content .r_content .body .primary_btn {
  margin-top: 20px;
  width: fit-content;
  padding: 15px 35px;
  border: 4px solid #F5E9F3;
  border-radius: 100px;
  background: #f48f9f;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .3s;
}

.speciality_content .r_content .body .primary_btn:hover {
  background: #fff;
  border: 4px solid #f48f9f;
}

.speciality_content .r_content .body .primary_btn:hover .text {
  color: #f48f9f;
}

.speciality_content .r_content .body .primary_btn .link {
  position: absolute;
  inset: 0;
}

.speciality_content .r_content .body .primary_btn .text {
  font-size: 14px;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}

.speciality_content .open_btn {
  display: none;
}

@media (max-width: 767px) {
  .speciality_content {
    padding: 45px 20px;
    margin-bottom: 100px;
    display: block;
    position: relative;
  }
  .speciality_content.speciality_3 .r_content .body .sub_ttl {
    text-align: center;
    margin: 40px 0 20px;
  }
  .speciality_content.speciality_3 .r_content .body .bunner {
    margin: 15px auto 0;
  }
  .speciality_content.speciality_3 .r_content .body .bunner .cap {
    text-align: center;
  }
  .speciality_content.first {
    margin-top: 90px;
  }
  .speciality_content .l_content {
    width: fit-content;
    gap: 10px;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .speciality_content .l_content .speciality {
    font-size: 12px;
  }
  .speciality_content .l_content .num {
    font-size: 60px;
  }
  .speciality_content .r_content {
    width: auto;
  }
  .speciality_content .r_content .ttl_wrap {
    text-align: center;
  }
  .speciality_content .r_content .body {
    display: none;
    margin-top: 25px;
  }
  .speciality_content .r_content .body .list {
    list-style-type: none;
  }
  .speciality_content .r_content .body .list .list_item {
    line-height: 1.4;
  }
  .speciality_content .r_content .body .primary_btn {
    margin: 20px auto 0;
  }
  .speciality_content .open_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 30px;
    border: 1px solid #f48f9f;
    border-radius: 100px;
    background: #f48f9f;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all .3s;
  }
  .speciality_content .open_btn.open_active {
    background: #fff;
  }
  .speciality_content .open_btn.open_active .text {
    color: #f48f9f;
  }
  .speciality_content .open_btn .text {
    font-size: 12px;
    color: #fff;
    transition: all .3s;
  }
}

/* ---------------------------------------------------------
    connection
--------------------------------------------------------- */
.sect_connection {
  margin: 65px auto 0;
}

.sect_connection .sect_ttl {
  font-size: 24px;
  color: #f48f9f;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
}

.sect_connection .sect_ttl::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #f48f9f;
  position: absolute;
  top: 8px;
  left: 0;
}

.sect_connection .sentence {
  line-height: 1.75;
  margin-top: 15px;
}

.sect_connection .list_area {
  padding: 30px;
  margin-top: 20px;
  background: #fff;
}

.sect_connection .list_area .list {
  list-style-type: none;
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 0 4%;
}

.sect_connection .list_area .list .item {
  color: #f48f9f;
  font-weight: 300;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .sect_connection {
    margin: 80px auto 0;
  }
  .sect_connection .sect_ttl {
    font-size: 22px;
  }
  .sect_connection .list_area {
    padding: 25px;
  }
  .sect_connection .list_area .list {
    display: block;
  }
  .sect_connection .list_area .list .item {
    margin-bottom: 10px;
  }
  .sect_connection .list_area .list .item:last-child {
    margin-bottom: 0;
  }
}
