@charset "UTF-8";

/*---------------------------------------------
    greeting
---------------------------------------------*/
.greeting-section {
  padding: 28px 0 80px;
  position: relative;
  overflow: hidden;
  background: #f1faf8;
}
.greeting-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  display: none; /* 装飾ブロブ無効化（背景を単色で統一）*/
  z-index: 0;
}
.greeting-section .inner {
  position: relative;
  z-index: 1;
}
.greeting-content {
  display: flex;
  gap: 48px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .greeting-content {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
}
.greeting-photo {
  flex: 0 0 420px;
  text-align: center;
  position: relative;
  top: 16px;
}
.greeting-photo img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: block;
}
.greeting-name-box {
  margin-top: 18px;
  padding-top: 0;
  border-top: 2px solid #e8f5f3;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.greeting-position {
  font-size: 1.3rem;
  color: #4DB6AC;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.greeting-name {
  font-size: 2.0rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .greeting-photo {
    flex: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
.greeting-txt {
  flex: 1;
}
.greeting-catch {
  font-size: 2.4rem;
  font-weight: 700;
  color: #4DB6AC;
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8f5f3;
}
@media screen and (max-width: 767px) {
  .greeting-catch {
    font-size: 2.0rem;
  }
}
.greeting-txt p {
  font-size: 1.5rem;
  line-height: 2.0;
  margin-bottom: 20px;
  color: #555;
  text-indent: 1em;
}

/*---------------------------------------------
    profile
---------------------------------------------*/
.profile-section {
  padding: 0 0 80px;
}
.profile-table {
  max-width: 700px;
  margin: 0 auto;
}
.profile-table table {
  width: 100%;
  border-top: 2px solid #4DB6AC;
}
.profile-table table tr {
  border-bottom: 1px solid #e8e8e8;
}
.profile-table table th,
.profile-table table td {
  padding: 16px 24px;
  font-size: 1.5rem;
  line-height: 1.8;
  vertical-align: top;
}
.profile-table table th {
  width: 120px;
  background: #f9f7f2;
  font-weight: 700;
  white-space: nowrap;
}
.profile-table table td {
  color: #555;
}
@media screen and (max-width: 767px) {
  .profile-table table th,
  .profile-table table td {
    display: block;
    width: 100%;
    padding: 10px 16px;
  }
  .profile-table table th {
    padding-bottom: 2px;
    background: none;
  }
  .profile-table table td {
    padding-top: 0;
  }
}
