@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --gray-color: #a1a1a1;
  --text-color: #3A2F35;
  --base-color02: #f9f6f4;
  --primary-color: #D3CAC0;
  --accent-color: #E8AFCF;
  --accent-color02: rgba(232, 175, 207, 0.5);
  --accent-color03: #D184A8;
  --shadow-color: rgba(217, 217, 217, 0.2);
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  color: var(--text-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

a {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 120px 0;
}

/* ---------- header ---------- */
.l_header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index:var(--z-index-header);
  box-sizing: border-box;
}

.l_header-logo_wrap {
  min-width: 0;
}

.l_header-logo_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.l_header-logo_img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 10px;
}

.l_header-logo_name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 18px;
}

.l_header-logo_region {
  letter-spacing: 0;
  font-weight: lighter;
}

.l_header-logo_ttl {
  font-weight: lighter;
  letter-spacing: 0;
  white-space: normal;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--base-color02);
  z-index: var(--z-index-header);
  padding: 80px 0;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 160px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.l_nav_01, .l_nav_02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media screen and (min-width: 1080px) {
  .l_nav_01, .l_nav_02 {
    width: 280px;
    align-items:normal;
  }
}

.l_nav_02 {
  margin-top: 20px;
}

.l_nav_link {
  font-weight: bold;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
  transition: transform 0.2s;
}
.l_nav_link:hover {
  color: var(--gray-color);
}

.m_nav_sub {
  font-size: 12px;
  font-weight: normal;
}

.m_hamburger {
  width: 30px;
  height: 30px;
  position: relative;
  background-color: transparent;
  z-index: var(--z-index-menu);
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  transition: ease .4s;
  background-color: var(--text-color);
  display: block;
  border-color: transparent;
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}
.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.m_hamburger-bar:nth-child(3) {
  bottom: 0;
}

/* ---------- kv ---------- */
.top_kv {
  background: linear-gradient(rgba(225,225,225,0.1),rgba(225,225,225,0.4)),
  url(../img/kv_about_sp.webp)center/cover;
  height: 100vh;
  width: 100%;
  z-index: var(--z-index-back);
}
@media screen and (min-width: 768px) {
.top_kv {
  background: linear-gradient(rgba(225,225,225,0.1),rgba(225,225,225,0.4)),
  url(../img/kv_pc.webp)center /cover;
}
}

.top_kv_ttl {
  font-size: clamp(22px, 4vw , 48px);
  font-weight: bold;
  color: var(--white-color);
  text-shadow: 0px 2px 2px  var(--text-color);
  position: absolute;
  bottom: 180px;
}

.m_scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}

.m_scroll_txt {
  font-family: "Nunito", sans-serif;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}

.m_scroll_arrow {
  color: var(--white-color);
  line-height: 1;
  letter-spacing: 0;
}

/* ---------- スクロールしたら出てくる ---------- */
.l_about_section {
  background: linear-gradient(rgba(58,47,53,0.7),rgba(58,47,53,0.7)),
  url(../img/kv_about_sp.webp)center/cover;
  height: 100vh;
  width: 100%;
  z-index: var(--z-index-back);
  padding: 120px 0;
  color: var(--white-color);
}
@media screen and (min-width: 768px) {
.l_about_section {
  background: linear-gradient(rgba(58,47,53,0.7),rgba(58,47,53,0.7)),
  url(../img/about_pc.webp)center/cover;
  padding: 80px 0;
}
}

@media screen and (min-width: 1080px) {
.l_about_content {
  width: 330px;
}
.l_about_container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
}

.l_about_txt:not(:first-child) {
  margin-top: 40px;
}

/* ===== KV → ABOUT アニメーション用 ここから追加 ===== */
.top_kv-about-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.top_kv, .l_about_section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.top_kv {
  z-index: 2;
}

.l_about_section {
  z-index: 1;
  opacity: 0;
}

.l_about_content {
  opacity: 0;
  transform: translateY(30px);
}

/* ---------- concept ---------- */
.m_section_ttl {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  font-size: clamp(36px , 4vw , 56px);
  line-height: 1;
}

.m_section_subttl {
  font-size: clamp(14px , 4vw , 20px);
  margin-bottom: 64px;
}
@media screen and (min-width: 1080px) {
.m_section_subttl {
  margin-bottom: 80px;
}
}

.m_section-ttl_txt {
  font-weight: bold;
  font-size: clamp(18px , 4vw , 32px);
  margin-bottom: 40px;
}

@media screen and (min-width: 1080px) {
  .l_concept_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.concept_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: opacity(80%);
  margin-bottom: 64px;
  border-radius: 10px;
  flex-shrink: 1;
}
@media screen and (min-width: 1080px) {
.concept_img {
  max-width: 440px;
  height: 420px;
  margin-bottom: 0;
}
}

@media screen and (min-width: 1080px) {
  .concept_img_sm {
    display: none;
  }
}

.concept_img_lg {
  display: none;
}
@media screen and (min-width: 1080px) {
.concept_img_lg {
  display: flex;
}
}

.l_message_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
.l_message_container {
  text-align: left;
  gap: 24px;
}
}

.m_txt_bold {
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .u_lg_dn {
    display: none;
  }
}

/* ---------- information ---------- */
.l_information {
  background-color: var(--base-color02);
}

.info_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info_table {
  padding: 32px 0;
}

.info_tr:not(:first-child):not(:last-child){
  padding-top: 40px;
}
@media screen and (min-width: 1080px) {
  .info_tr:not(:first-child):not(:last-child){
  padding-top: 24px;
}
}

.info_tr {
  display: flex;
}

.info_tr:last-child {
  padding-top: 16px;
}

.info_th {
  width: 90px;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 1080px) {
.info_th {
  width: 100px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
}

.info_td {
  display: block;
  width: 230px;
  line-height: 1;
  letter-spacing: 0;
  margin-left: 24px;
}
@media screen and (min-width: 1080px) {
  .info_td {
    width: 400px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-left: 80px;
  }
}

.info_address_link {
  text-decoration: underline;
}

.m_line_link {
  width: 30px;
  height: 30px;
  background: url(../img/LINE_Brand_icon.png)center / cover;
  transition-duration: .4s;
}

.m_line_link:hover {
  transform: scale(1.1);
}

/* ---------- what we do ---------- */
.l_content_container {
  width: 100%;
  padding: 40px 0;
  border-radius: 10px;
  background-color: var(--white-color);
  box-shadow: 0px 8px 24px 0 var(--shadow-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .l_content_container__whatwedo {
    height: 500px;
    flex-direction: row;
    gap: 40px;
  }
  .l_content_container__whatwedo:nth-child(even){
    flex-direction: row-reverse;
  }
  .l_content_wrap {
    width: 430px;
  }
}

.l_content_container:not(:first-child) {
  margin-top: 80px;
}

.l_content-img_container {
  max-width: 343px;
  height: 250px;
  object-fit: cover;
  filter: opacity(85%);
  border-radius: 10px;
}
@media screen and (min-width: 1080px) {
  .l_content-img_container__whatwedo {
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 8 / 5;
  }
}

.m_content_txt {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1080px) {
  .m_content_txt {
    flex-direction: row;
    align-items: center;
}
}

.m_content_meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 100dvh;
  font-family: "Nunito", sans-serif;
  margin: 40px auto 0;
  background:
  linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
  var(--accent-color03);
  color: var(--white-color);
}
@media screen and (min-width: 1080px) {
  .m_content_meta {
    margin: 0;
  }
}

.m_meta_english {
  font-size: 14px;
  line-height: 1.5;
}

.m_meta_cul {
  font-size: 22px;
  line-height: 1;
}

.m_content_ttl {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
.m_content_ttl {
  font-size: 22px;
}
}

.m_content_desc {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1080px) {
.m_content_desc__whatwedo {
  text-align: start;
}
}

.m_content_sweets {
  font-size: 12px;
}

/* ---------- Activities ---------- */
.l_activities {
  background-color: var(--base-color02);
}

.m_section-ttl_txt__act {
  font-size: clamp(18px , 4vw , 22px);
  margin-bottom: 16px;
}

.m_message_txt__act {
  margin-bottom: 40px;
  font-size: clamp(14px , 4vw , 16px);
}
@media screen and (min-width: 1080px) {
  .m_message_txt__act {
    margin-bottom: 64px;
  }
}

@media screen and (min-width: 1080px) {
  .activities_contents {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background-color: var(--white-color);
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

.activities_post {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  box-shadow: none;
  gap: 24px;
}
@media screen and (min-width: 1080px) {
  .activities_post {
    width: 400px;
  }
  .activities_post:not(:first-child) {
    margin-top: 0;
  }
}

.p_post_desc {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .p_post_desc {
    font-size: 16px;
  }
}

.m_insta_link {
  height: 60px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px auto 0;
}

.m_sns_txt {
  font-size: 18px;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
  border-bottom: 2px solid var(--shadow-color);
  position: relative;
}

.m_sns_txt::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--accent-color03);
  bottom: 0px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
  position: absolute;
  left: 0;
}

.m_sns_txt:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.m_insta_icon {
  width: 30px;
  height: 30px;
  background: url(../img/instagram-2016-logo-svgrepo-com.svg)center / cover;
  transition-duration: .4s;
}
.m_insta_link:hover .m_insta_icon {
  transform: scale(1.1);
}

/* ---------- Voice ---------- */
@media screen and (min-width: 1080px) {
  .voice_contents {
    display: flex;
    padding: 0 80px;
    gap: 120px;
  }
}

.voice_post {
  height: 400px;
  text-align: center;
  gap: 24px;
}
@media screen and (min-width: 1080px) {
  .voice_post {
    width: 400px;
    height: 450px;
  }
  .voice_post:not(:first-child){
    margin-top: 0;
  }
}

.l_post-img_container {
  width: 200px;
  height: 200px;
  object-fit: cover;
  filter: opacity(85%);
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}

@media screen and (min-width: 1080px) {
.m_content_desc {
  font-size: 18px;
}
}

/* ---------- vision ---------- */
.l_vision {
  position: relative;
  background: var(--white-color)
}

.l_vision::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 50vw 0 50vw;
  border-color: var(--white-color) transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

.l_message_container__vision {
  text-align: center;
  margin: 80px auto 0;
}

@media screen and (min-width: 1080px) {
  .m_message_txt {
    font-size: 18px;
  }
}

/* ---------- cta ---------- */
.l_cta {
  background-color: var(--accent-color);
}

.l_cta_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1080px) {
.l_cta_contents {
  flex-direction: row;
  justify-content: center;
}
}

.l_cta_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .l_cta_container {
    width: 440px;
  }
}

.cta_txt {
  font-weight: bold;
}

.m_cta_link {
  width: 60px;
  height: 60px;
  transition-duration: .4s;
}
.m_cta_link:hover {
  transform: scale(1.1);
}

/* ---------- profile ---------- */
.profile_content {
  background-color: var(--base-color02);
  border-radius: 10px;
  box-shadow: none;
  gap: 65px;
}
@media screen and (min-width: 1080px) {
.profile_content {
  height: 560px;
  flex-direction: row;
  gap: 120px;
}
.profile_content:nth-child(2) {
  flex-direction: row-reverse;
}
}

.l_profile_img__wrap {
  width: 250px;
  height: 250px;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 1080px) {
.l_profile_img__wrap {
  width: 400px;
  height: 400px;
}
}

.l_profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100dvh;
  filter: opacity(85%);
}

.l_profile_img__wrap::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100dvh;
  position: absolute;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}
@media screen and (min-width: 1080px) {
  .l_profile_img__wrap::after {
    width: 150px;
    height: 150px;
  }
}

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-5deg);
  }
  50% {
    transform:translate(0, -5px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(5deg);
  }
}

.l_profile-img_ide::after{
  bottom: 0;
  left: -24px;
  background-image: url(../img/babyfeliz_icon.webp);
  background-size: contain;
  vertical-align: middle;
  filter: opacity(70%);
}

.l_profile-img_naopi::after{
  bottom: 0;
  right: -24px;
  background-image: url(../img/clover_icon.webp);
  background-size: contain;
  vertical-align: middle;
  filter: opacity(70%);
}

.l_profile_desc__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.profile_businessname {
  font-weight: bold;
}

.profile_name {
  font-weight: bold;
  font-size: 24px;
}

/* ---------- faq ---------- */
.l_faq_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.l_faq_content {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
.l_faq_content {
  max-width: 900px;
}
}

.faq_question {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  background-color: var(--accent-color02);
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq_q {
  display: flex;
  gap: 8px;
}

.faq_q_open {
  position: relative;
  width: 15px;
  height: 15px;
  background-color: transparent;
  z-index: var(--z-index-default);
}

/* 横線 */
.faq_q_open::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transform: translateY(-50%);
}

/* 縦線 */
.faq_q_open::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--text-color);
  transform: translateX(-50%);
}

.faq_answer {
  position: relative;
  border: transparent; /*borderを非表示の状態にする*/ 
  padding: 0 20px; /*上下のpaddingを0に書き換える*/
  line-height: 0; /* 非表示時、0*/
  opacity: 0; /* 非表示時、0*/
}

.faq_answer.is-open {
  width: 100%;
  min-height: 80px;
  padding: 0 16px;
  border: 1px solid var(--accent-color02);
  border-radius: 0 0 10px 10px ;
  display: flex;
  align-items: center;
  opacity: 1;
}

.faq_a{
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1;
  gap: 8px;
}

.faq_a_txt {
  font-size: 14px;
  line-height: 1;
}

.faq_q_open {
  font-weight: bold;
}

/* ---------- footer ---------- */
.l_footer {
  background-color: var(--primary-color);
  padding-top: 120px;
}

@media screen and (min-width: 1080px) {
  .l_footer-nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 160px;
  }
}

.l_sns_container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.privacypolicy {
  display: block;
  text-align: center;
  margin: 24px auto 32px auto;
  font-size: 12px;
  text-decoration: underline;
}

.l_footer_copylight {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copylight {
  font-size: 12px;
}

/* ----------privacy_policy  ---------- */
.privacy_policy {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 20px;
  font-size: 14px;
}

.privacy_policy_name {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: bold;
}

.privacy_policy_sub {
  font-size: 12px;
}

.privacy_policy_ttl {
  margin-top: 40px;
  font-weight: bold;
}

.privacy_policy_date {
  margin-top: 40px;
}


/* js */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq_question.is-open .faq_q_open::after {
  opacity: 0;
}

.js_shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.js_shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  transform: translateX(-150%) skewX(-20deg);
}

.js_shine.is-active::after {
  animation: shine 2s ease forwards;
}

@keyframes shine {
  from {
    transform: translateX(-150%) skewX(-20deg);
  }
  to {
    transform: translateX(150%) skewX(-20deg);
  }
}
