@charset "UTF-8";

/* CSS Document */
header .now {
  color: #D75288 !important;
}

main {
  width: 100%;
  margin-bottom: 180px;
  text-align: justify;
}

.main_inner {
  width: 80%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(110px + 5%);
}


.profile_1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* border-bottom: solid 1px #B3B3B3;
  padding-bottom: 80px; */
  margin-bottom: 160px;
  margin-left: auto;
  margin-right: auto;
}

.profile_1_img {
  width: 25%;
  min-width: 184px;
  height: auto;
  position: relative;
  cursor: pointer;

}

.profile_1_img img {
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
  border-radius: 1px;
}

.profile_1_img .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.profile_1_img:hover .hover {
  opacity: 1;
}

.profile_1_text {
  width: 66%;
}

.profile_1_text h2 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.profile_1_text h2 span {
  margin-left: 10px;
}

.profile_1_text h2::after {
  content: '（オオハシ ユイ）';
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  color: var(--color-gray-dark);
  margin-left: 6px;
}

.profile_1_text p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 2;
}

.profile_1_text .note {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: #333333;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 矢印設定 */
.profile_1_text .note::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../images/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.profile_1_text .note:hover {
  opacity: 0.7;
}


/* 心がけていること */

/* レイアウト設定 */
.profile_flex_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* 左側ナビゲーション */
.side_nav {
  position: sticky;
  top: 150px;
  width: 200px;
}

.side_nav ul {
  list-style: none;
  padding: 0;
}

.side_nav li {
  margin-bottom: 24px;
}

.nav_item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #B0B0B0;
  transition: 0.3s ease;
}

.nav_item:hover {
  color: #333333;
}

/* アクティブ時の色 */
.nav_item.is-active {
  color: #333333;
}

/* 中黒（ドット）の設定とアニメーション */
.nav_item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #D75288;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.nav_item.is-active::before {
  opacity: 1;
  transform: scale(1);
  /* 大きくなるアニメーション */
}

/* 右側コンテンツ */
.content_area {
  width: calc(627 / 960 * 100%);
}

.profile_section {
  margin-bottom: 120px;
}

.section_title {
  display: none;
}

.profile_section .item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #3333331a;
  padding-top: 24px;
  margin-bottom: 48px;
}


.profile_section .item_label {
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
  width: 238px;
}

.profile_section .item .item_label .number {
  font-family: YakuHanJP, "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.4em;
  margin-right: 4px;
}

.profile_section .item .item_details {
  font-size: 14px;
  margin-left: auto;
  line-height: 2;
}

/* Q&A */
.qa .item {
  display: block;
  border-top: 1px solid #3333331a;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-bottom: 0;
}

.qa .item_label {
  cursor: pointer;
  position: relative;
  width: 100%;
}

.qa_row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.qa_row.q {
  align-items: center;
}

.qa .icon_q,
.qa .icon_a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
  width: 1.5em;
}

.qa .item_label h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.qa .item_details {
  display: none;
  padding-top: 24px;
}

.qa .item_label:hover .icon_q,
.qa .item_label:hover h3 {
  opacity: 0.7;
  transition: 0.3s ease;
}

.qa .item_label:hover .accordion_icon span {
  /* opacity: 0.7; */
  background-color: #D75288;
  transition: 0.3s ease;
}

/* プラスマイナスアイコン*/
.qa .accordion_icon {
  position: absolute;
  top: 8px;
  right: 0;
  width: 13px;
  height: 13px;
}

.qa .accordion_icon span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s ease;
}

.qa .accordion_icon span:nth-child(1) {
  transform: translateY(-50%);
}

.qa .accordion_icon span:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}

.item.is-open .accordion_icon span:nth-child(2) {
  transform: translateY(-50%) rotate(180deg);
}


/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
  .profile_flex_container {
    display: block;
  }

  .side_nav {
    display: none;
  }

  .content_area {
    width: 100%;
  }

  .section_title {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section_title::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--color-black);
    border-radius: 50%;
  }

  .qa .section_details {
    width: 100%;
  }

  .qa_row {
    gap: 12px;
  }
}

@media screen and (max-width: 900px) {
  main {
    margin-bottom: 140px;
  }

  .profile_1 {
    padding-bottom: 64px;
    margin-bottom: 64px;
    flex-direction: column;
    row-gap: 28px;
  }

  .profile_1_text {
    width: 100%;
  }

  .profile_1_text p,
  .profile_section .item .item_details {
    line-height: 1.8;
  }

  .section_details {
    width: 100%;
  }


  .profile_section .item {
    padding-top: 28px;
    margin-bottom: 28px;
    flex-direction: column;
    row-gap: 16px;
  }

  .qa .item {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 430px) {

  main {
    margin-bottom: 120px;
  }

  .main_inner {
    width: 88%;
  }



  .profile_section {
    margin-bottom: 80px;
  }
}