h2.ttl {
  margin: 0;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
h2.ttl + p.caption {
  margin: 20px 0 0;
  letter-spacing: 0.1em;
}

#kv {
  height: 80vh;
  position: relative;
}
#kv .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#kv .bg picture {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
#kv .bg picture::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}
#kv .bg picture img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
#kv .content {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
#kv .content .set {
  padding: 4vw;
}
#kv .content .set .ttl h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
#kv .content .set .ttl p.caption {
  margin: 20px 0 0;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
#kv .content .set .msg p {
  margin: 20px 0 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

#greeting {
  margin: 160px 0;
}
#greeting article h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
#greeting article h2 + p {
  margin-top: 100px;
}
#greeting article p {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
}
#greeting article p.name {
  margin-top: 4em;
}

#about_content .about_wrap .about_set {
  padding: 100px 0;
  gap: 4vw;
}
#about_content .about_wrap .about_set .ttl_set .sticky {
  margin-top: 100px;
  position: sticky;
  top: calc(var(--header-height-pc) + 4vw);
}
#about_content .about_wrap .about_set .ttl_set .logo {
  margin: 100px 0 0;
}
#about_content .about_wrap .about_set .ttl_set .logo img {
  max-width: 300px;
}
#about_content .about_wrap .about_set .main {
  flex: none;
  width: 50%;
}
#about_content .about_wrap .about_set .main article > *:first-child {
  margin-top: 0;
}
#about_content .about_wrap .about_set .main article > *:last-child {
  margin-bottom: 0;
}
#about_content .about_wrap .about_set .main article h3 {
  margin-top: 0;
  padding: 30px 0 0;
  border-top: 1px solid #111;
  position: relative;
  color: var(--theme01);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
#about_content .about_wrap .about_set .main article h3::before {
  content: attr(title);
  font-family: var(--sans-serif);
  font-weight: 600;
  color: #111;
  font-size: 0.75rem;
  line-height: 16px;
  height: 16px;
  padding-right: 1em;
  background: #fff;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
}
#about_content .about_wrap .about_set .main article p {
  font-size: 1rem;
}
#about_content .about_wrap .about_set .main article p + h3 {
  margin-top: 60px;
}
#about_content .about_wrap:nth-child(odd) {
  --bg-color: #fafafa;
  background: var(--bg-color);
}
#about_content .about_wrap:nth-child(odd) .about_set .main article h3::before {
  background: var(--bg-color);
}

#about_member .kv {
  width: 100%;
  height: 400px;
}
#about_member .kv picture {
  width: 100%;
  height: 100%;
  display: block;
}
#about_member .kv picture img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
}
#about_member .ttl_set {
  margin-top: 100px;
}
#about_member ul.member_list {
  margin: 60px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#about_member ul.member_list > li {
  display: flex;
  flex-direction: row;
  gap: 4vw;
}
#about_member ul.member_list > li .img {
  width: 320px;
}
#about_member ul.member_list > li .img picture img {
  max-width: 100%;
  display: block;
}
#about_member ul.member_list > li .txt {
  flex: 1;
}
#about_member ul.member_list > li .txt .post {
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
#about_member ul.member_list > li .txt .name {
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--serif);
  letter-spacing: 0.1em;
}
#about_member ul.member_list > li .txt article {
  margin: 40px 0 0;
}
#about_member ul.member_list > li .txt article ul {
  list-style: disc;
}
#about_member ul.member_list > li .txt .more {
  margin-top: 20px;
}
#about_member ul.member_list > li .txt .more button {
  padding: 0.5em 2em;
  border: 1px solid var(--theme01);
  background: none;
  color: var(--theme01);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
#about_member ul.member_list > li .txt .more button:hover, #about_member ul.member_list > li .txt .more button.active {
  background: var(--theme02);
  color: #fff;
}
#about_member ul.member_list > li .txt .more .more_set {
  display: none;
}
#about_member ul.member_list > li .txt .more table {
  width: 100%;
  margin: 40px 0 0;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
}
#about_member ul.member_list > li .txt .more table tbody tr th, #about_member ul.member_list > li .txt .more table tbody tr td {
  padding: 16px 0;
  vertical-align: text-top;
  border-bottom: 1px solid #ddd;
  line-height: 1.5;
}
#about_member ul.member_list > li .txt .more table tbody tr th {
  width: 100px;
  text-align: right;
}
#about_member ul.member_list > li .txt .more table tbody tr td {
  padding-left: 20px;
}
#about_member ul.member_list > li .txt .sns {
  margin-top: 40px;
}
#about_member ul.member_list > li .txt .sns ul.sns_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a {
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: block;
  position: relative;
  transition: opacity 0.2s;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a:hover {
  opacity: 0.6;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a::before {
  content: "";
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.xtwitter {
  background: #000;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.xtwitter::before {
  background-image: url(../img/common/social/logo_x.svg);
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.instagram {
  background: #CF2E92;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.instagram::before {
  background-image: url(../img/common/social/logo_instagram.svg);
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.line {
  background: #00B900;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.line::before {
  background-image: url(../img/common/social/logo_line.svg);
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.facebook {
  background: #1877f2;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.facebook::before {
  background-image: url(../img/common/social/logo_facebook.svg);
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.threads {
  background: #000;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.threads::before {
  background-image: url(../img/common/social/logo_threads.svg);
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.youtube {
  background: #c4302b;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.youtube::before {
  background-image: url(../img/common/social/logo_youtube.svg);
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.tiktok {
  background: #000;
}
#about_member ul.member_list > li .txt .sns ul.sns_list li a.tiktok::before {
  background-image: url(../img/common/social/logo_tiktok.svg);
}
#about_member .member_nav {
  margin: 0 0 100px;
}
#about_member .member_nav .flex_set .main h3 {
  margin: 100px 0 40px;
  padding-top: 24px;
  border-top: 1px solid #111;
  position: relative;
  color: var(--theme01);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#about_member .member_nav .flex_set .main h3::before {
  content: attr(title);
  padding-right: 1em;
  background: #fff;
  display: inline-block;
  color: #111;
  font-family: var(--sans-serif);
  font-size: 0.75rem;
  letter-spacing: 0;
  position: absolute;
  top: -1px;
  left: 0;
}
#about_member .member_nav .flex_set .main ul.nav_list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
#about_member .member_nav .flex_set .main ul.nav_list li {
  border-bottom: 1px solid #ddd;
  position: relative;
}
#about_member .member_nav .flex_set .main ul.nav_list li::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  background: var(--theme01);
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: width 0.4s;
}
#about_member .member_nav .flex_set .main ul.nav_list li a {
  padding: 16px 0;
  padding-right: 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  color: #111;
  text-decoration: none;
  position: relative;
  transition: padding-left 0.4s, padding-right 0.4s, color 0.2s;
}
#about_member .member_nav .flex_set .main ul.nav_list li a span {
  letter-spacing: 0.1em;
}
#about_member .member_nav .flex_set .main ul.nav_list li a span.post {
  width: 120px;
  font-size: 0.75rem;
}
#about_member .member_nav .flex_set .main ul.nav_list li a span.name {
  flex: 1;
  font-size: 1rem;
}
#about_member .member_nav .flex_set .main ul.nav_list li a::after {
  content: "\e313";
  font-family: material icons;
  color: #999;
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
}
#about_member .member_nav .flex_set .main ul.nav_list li a:hover {
  color: var(--theme01);
  padding-right: 30px;
  padding-left: 10px;
}
#about_member .member_nav .flex_set .main ul.nav_list li a:hover::after {
  color: var(--theme02);
}
#about_member .member_nav .flex_set .main ul.nav_list li:hover::after {
  width: 100%;
}

#about_company {
  margin: 100px 0 0;
  padding: 100px 0;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
#about_company::before, #about_company::after {
  content: "";
  width: calc(100% + 40px);
  height: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: block;
  position: absolute;
  left: -20px;
}
#about_company::before {
  top: -10px;
}
#about_company::after {
  bottom: -10px;
}
#about_company .company_set .main table {
  width: 100%;
  border-collapse: collapse;
}
#about_company .company_set .main table tbody th, #about_company .company_set .main table tbody td {
  padding: 20px 0 10px;
  vertical-align: bottom;
  border-bottom: 1px solid #ddd;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 1rem;
  font-weight: 400;
}
#about_company .company_set .main table tbody th {
  width: 180px;
}

@media screen and (max-width: 767.98px) {
  h2.ttl {
    font-size: 1.5rem;
  }
  h2.ttl + p.caption {
    margin: 10px 0 0;
  }
  #kv {
    height: 60vh;
  }
  #kv .content .set {
    padding: 4vw 4vw 8vw;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  }
  #kv .content .set .ttl h1 {
    font-size: 2rem;
  }
  #kv .content .set .ttl p.caption {
    margin-top: 10px;
    font-size: 0.75rem;
  }
  #greeting {
    margin: 80px 0;
  }
  #greeting article {
    margin: 0 auto;
    max-width: 640px;
  }
  #greeting article h2 {
    font-size: 1.75rem;
  }
  #greeting article h2 + p {
    margin-top: 60px;
  }
  #greeting article p {
    font-size: 1rem;
  }
  #about_content .about_wrap .about_set {
    padding: 60px 0;
    flex-direction: column;
    gap: 4vw;
  }
  #about_content .about_wrap .about_set .ttl_set .sticky {
    margin-top: 0;
    position: relative;
    top: 0;
  }
  #about_content .about_wrap .about_set .ttl_set .logo {
    margin: 40px 0 0;
    text-align: center;
  }
  #about_content .about_wrap .about_set .ttl_set .logo img {
    width: calc(100% - 8vw);
    max-width: 280px;
  }
  #about_content .about_wrap .about_set .main {
    width: 100%;
    margin-top: 40px;
  }
  #about_content .about_wrap .about_set .main article {
    max-width: 640px;
    margin: 0 auto;
  }
  #about_content .about_wrap .about_set .main article h3 {
    padding-top: 40px;
    font-size: 1.25rem;
  }
  #about_content .about_wrap .about_set .main article p {
    font-size: 0.875rem;
    color: #666;
  }
  #about_content .about_wrap .about_set .main article p + h3 {
    margin-top: 40px;
  }
  #about_member .kv {
    height: 40vw;
  }
  #about_member .ttl_set {
    margin-top: 60px;
  }
  #about_member ul.member_list {
    max-width: 640px;
    margin: 40px auto 0;
    gap: 4vw;
  }
  #about_member ul.member_list > li {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 0;
  }
  #about_member ul.member_list > li .img {
    width: 100%;
  }
  #about_member ul.member_list > li .txt {
    padding: 20px;
  }
  #about_member ul.member_list > li .txt .name {
    font-size: 1.75rem;
  }
  #about_member ul.member_list > li .txt article {
    margin: 40px 0 0;
  }
  #about_member ul.member_list > li .txt article ul {
    color: #666;
  }
  #about_member ul.member_list > li .txt article p {
    color: #666;
  }
  #about_member ul.member_list > li .txt .more {
    margin-top: 40px;
  }
  #about_member ul.member_list > li .txt .more button {
    width: 100%;
  }
  #about_member ul.member_list > li .txt .more table tbody tr th, #about_member ul.member_list > li .txt .more table tbody tr td {
    font-size: 0.75rem;
  }
  #about_member ul.member_list > li .txt .more table tbody tr th {
    width: 80px;
  }
  #about_member .member_nav {
    margin: 60px 0;
  }
  #about_member .member_nav .flex_set {
    flex-direction: column;
    gap: 60px;
  }
  #about_member .member_nav .flex_set .ttl_set {
    margin-top: 0;
  }
  #about_member .member_nav .flex_set .main > *:first-child {
    margin-top: 0;
  }
  #about_member .member_nav .flex_set .main h3 {
    margin-top: 60px;
  }
  #about_company {
    margin: 80px 0 0;
    padding: 60px 0;
  }
  #about_company .company_set {
    flex-direction: column;
  }
  #about_company .company_set .main {
    width: 100%;
    max-width: 640px;
    margin: 40px auto 0;
  }
  #about_company .company_set .main table {
    width: 100%;
    border-collapse: collapse;
  }
  #about_company .company_set .main table tbody th, #about_company .company_set .main table tbody td {
    width: 100%;
    display: block;
  }
  #about_company .company_set .main table tbody th {
    padding: 10px 0 0;
    border-bottom: none;
    font-size: 0.75rem;
    font-weight: 600;
  }
  #about_company .company_set .main table tbody td {
    padding: 10px 0;
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=about.css.map */