@charset "utf-8";
/* CSS Document */

.company_info {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.company_info .company_info_inner {
  width: 100%;
}

.company_info .company_info_list {
  border-top: 1px solid #ddd;
}

.company_info .company_info_item {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 7vw, 100px);
  padding: 22px 15px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

.company_info .company_info_label {
  flex: 0 0 180px;
  margin: 0;
  color: #ff669d;
  line-height: 1.7;
}

.company_info .company_info_value {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: #333;
  line-height: 1.7;
}

.company_info .company_info_value p {
  margin: 0;
  line-height: 1.7;
}

.company_info .company_info_value p + p {
  margin-top: 3px;
}

.company_info .company_info_value a {
  color: #333;
  text-decoration: none;
}

.company_info .company_info_value a:focus-visible {
  outline: 3px solid rgba(109, 193, 203, 0.45);
  outline-offset: 3px;
}

.company_info .company_info_map {
  position: relative;
  width: 100%;
  height: clamp(400px, 45vw, 550px);
  margin-top: clamp(75px, 10vw, 120px);
}

.company_info .company_info_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 45px;
}

.company_info .company_info_deco {
  position: absolute;
  top: clamp(-75px, -6vw, -50px);
  right: 15px;
  z-index: 2;
  width: clamp(105px, 12vw, 155px);
  pointer-events: none;
}

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

@media screen and (max-width: 900px) {
  .company_info .company_info_item {
    gap: 40px;
  }

  .company_info .company_info_label {
    flex-basis: 145px;
  }

  .company_info .company_info_map iframe {
    border-radius: 38px;
  }

  .company_info .company_info_deco {
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .company_info .company_info_item {
    gap: 25px;
    padding: 19px 10px;
  }

  .company_info .company_info_label {
    flex-basis: 120px;
  }

  .company_info .company_info_map {
    height: 420px;
    margin-top: 80px;
  }

  .company_info .company_info_deco {
    top: -55px;
    right: 8px;
    width: 105px;
  }
}

@media screen and (max-width: 576px) {
  .company_info .company_info_item {
    flex-direction: column;
    gap: 5px;
    padding: 17px 5px;
  }

  .company_info .company_info_label {
    flex: none;
    width: 100%;
  }

  .company_info .company_info_value {
    width: 100%;
  }

  .company_info .company_info_map {
    height: 350px;
    margin-top: 65px;
  }

  .company_info .company_info_map iframe {
    border-radius: 28px;
  }

  .company_info .company_info_deco {
    top: -45px;
    right: 5px;
    width: 80px;
  }
}
.top_message {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
}

.top_message .top_message_inner {
  padding: clamp(50px, 7vw, 85px);
  background-color: #fff;
  border-radius: 55px;
  box-sizing: border-box;
}

.top_message .top_message_body {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 5vw, 60px);
  width: 100%;
}

.top_message .top_message_content {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  max-width: 750px;
}

.top_message .top_message_title {
  margin-bottom: 30px;
  color: #ff669d;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.top_message .top_message_text p {
  margin: 0;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.top_message .top_message_profile {
  flex: 0 0 320px;
  width: 320px;
  padding: 35px 28px;
  background-color: #fff6ca;
  border-radius: 22px;
  box-sizing: border-box;
}

.top_message .top_message_img {
  width: 165px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  overflow: hidden;
  background-color: #fff;
  border: 5px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
}

.top_message .top_message_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.top_message .top_message_name {
  margin-bottom: 20px;
  text-align: center;
}

.top_message .top_message_name p {
  margin: 0;
  line-height: 1.5;
}

.top_message .top_message_name_en {
  margin-top: 3px;
  color: #65bfca;
}

.top_message .top_message_profile_text {
  margin: 0;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1080px) {
  .top_message .top_message_inner {
    padding: 60px;
  }

  .top_message .top_message_body {
    gap: 45px;
  }

  .top_message .top_message_profile {
    flex-basis: 260px;
    width: 260px;
    padding: 30px 24px;
  }

  .top_message .top_message_img {
    width: 150px;
  }
}

@media screen and (max-width: 900px) {
  .top_message .top_message_inner {
    padding: 55px 45px;
    border-radius: 45px;
  }

  .top_message .top_message_body {
    flex-direction: column;
    align-items: stretch;
    gap: 45px;
  }

  .top_message .top_message_content {
    order: 2;
    flex: none;
    width: 100%;
    max-width: none;
  }

  .top_message .top_message_profile {
    order: 1;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 10px 30px;
    flex: none;
    width: 100%;
    padding: 30px;
  }

  .top_message .top_message_img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 150px;
    margin: 0;
  }

  .top_message .top_message_name {
    grid-column: 2;
    margin: 0;
    text-align: left;
  }

  .top_message .top_message_profile_text {
    grid-column: 2;
  }
}

@media screen and (max-width: 768px) {
  .top_message .top_message_inner {
    padding: 45px 35px;
    border-radius: 40px;
  }

  .top_message .top_message_body {
    gap: 40px;
  }

  .top_message .top_message_profile {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 10px 25px;
    padding: 25px;
  }

  .top_message .top_message_img {
    width: 130px;
  }
}

@media screen and (max-width: 576px) {
  .top_message .top_message_inner {
    padding: 40px 22px;
    border-radius: 30px;
  }

  .top_message .top_message_title {
    margin-bottom: 23px;
    line-height: 1.7;
  }

  .top_message .top_message_text p {
    line-height: 1.8;
  }

  .top_message .top_message_profile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 25px 20px;
    border-radius: 20px;
  }

  .top_message .top_message_img {
    width: 140px;
    margin: 0 auto;
  }

  .top_message .top_message_name {
    margin: 0;
    text-align: center;
  }

  .top_message .top_message_profile_text {
    width: 100%;
    line-height: 1.8;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

