@charset "UTF-8";

* {
  box-sizing: border-box;
}



/* header */
header {
  background: #FFFFFF;
}

.header_item p {
  color: #5C4243;
}


/* ハンバーガー */
.hamburger1 .MenuBtn-BarFrame-FirstBar {
  background-color: #5C4243;
}

.hamburger1 .MenuBtn-BarFrame-SecondBar {
  background-color: #5C4243;
}

.hamburger1 .MenuBtn-BarFrame-ThirdBar {
  background-color: #5C4243;
}

/* content */

.profile_maincontent {
  padding-block: 8rem;
}

.page_profile {
  main {
    background-image: url(img/bg_2.png);
  }

  /* readmore_area */
  .readmore_area {
    margin: 0;
    justify-content: center;
  }

  .readmore_link {
    margin: 0;
  }
  
}

.contact .readmore_link {
  margin-top: 4rem;
}

@media (max-width: 834px) {
  .contact .readmore_link {
    margin-top: 5rem;
  }
}

/* profile_container */

.profile_container_02 {
  margin-top: 16rem;
}


/* profile_content */

.profile_content {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  width: 109.5rem;
  margin-top: 5.6rem;
  margin-inline: auto;
}

.profile_content_item {
  padding: 7.4rem 5rem;
  display: flex;
  gap: 5rem;
}

.profile_violin {
  flex-direction: row-reverse;
}

.profile_content_img_fl {
  width: 35rem;
  height: 45rem;
}

.profile_content_img_vl {
  width: 50.8rem;
  height: 37.2rem;
}

.profile_content_txtarea {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.profile_content_titlearea {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  justify-content: center;
}

.profile_content_logo {
  width: 18.3rem;
  height: 6.1rem;
}

.profile_content_title {
  font-family: "Cormorant SC", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 4rem;
  margin-top: 2rem;
}

.profile_content_txt {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.6rem;
}

@media (max-width: 834px) {

  .profile_content_item {
    padding-inline: 0 !important;
  }
  
  .profile_content {
    width: 90%;
  }
  .profile_content_txtarea {
    align-items: center;
    gap: 5rem;
  }
  .profile_content_txt {
    font-size: 2.4rem;
    line-height: 4rem;
    text-align: center;
    padding-inline: 4rem;
  }

  .profile_content_item .readmore_link {
    margin-top: 0 !important;
  }

  .profile_content_item .readmore_txt {
    font-size: 2.6rem;
  }



  
 
}

/* history_content */

.history_content {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  width: 109.5rem;
  margin-top: 5.6rem;
  margin-inline: auto;
  padding-inline: 9rem;
  padding-block: 5rem;
}

.history_items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.history_item {
  padding-block: 0.8rem;
  position: relative;
}

.history_item::before {
  content: "";
  background-color: #5C4243;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  position: absolute;
}

.history_item_inner {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
  align-items: center;
}

.history_year {
  font-weight: 400;
  font-size: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.history_txt {
  font-weight: 400;
  font-size: 1.6rem;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.history_img {
  width: 22.3rem;
  height: 12.4rem;
  flex-shrink: 0;
}

.history_tag_area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.history_tag {
  background-color: rgba(198, 144, 144, 0.8);
  border-radius: 30px;
  width: 8.7rem;
  padding: 1rem 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.history_tag_txt {
  font-family: "Cormorant SC", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  text-align: center;
}

.history_item_sp_right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}

@media (max-width: 834px) {

  .history_content {
    width: 90%;
    padding-inline: 4rem;
    padding-block: 5rem;
  }

  .history_item_inner {
    justify-content: space-between;
  }

  .history_year {
    font-size: 2.2rem;
  }

  .history_txt {
    text-align: right;
    font-size: 2.4rem;
  }

  .history_tag {
    width: 10rem;
  }
  .history_tag_txt {
    font-size: 2rem;
  }

  .history_item_sp_left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-bottom: auto;
  }

  .history_img {
    width: 27.2rem;
    height: 15.2rem;
  }

  .history_item_sp_right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0.8rem;
  }

}