@charset "UTF-8";


/**********************************************/
/**********KV***********************************/
/**********************************************/

.front_kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  padding: 0;
}

/* ---- 左カラム ---- */
.front_kv_left {
  background-color: var(--Beige);
  display: flex;
  align-items: center;
  padding: 80px 64px;
}

.front_kv_left_inner {
  display: flex;
  flex-direction: column;
}

.front_kv_logo {
  margin-bottom: 12px;
  line-height: 1.1;
}

.front_kv_logo_home {
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--Green-d);
}

.front_kv_logo_taste {
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--Yellow);
}

.front_kv_sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--Green-d);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.front_kv_desc {
  font-size: 1.125rem;
  margin-bottom: 60px;
}

.front_kv_btns {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.front_kv_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.front_kv_btn:hover {
  opacity: 0.75;
}

.front_kv_btn--green {
  background-color: var(--Green-d);
  color: var(--White);
}

.front_kv_btn--yellow {
  background-color: var(--Yellow);
  color: var(--White);
}

.front_kv_scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--Green-d);
  animation: scrollIndicatorPulse 2.4s ease-in-out infinite;
}

.front_kv_scroll_line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(45, 93, 57, 0.25);
  flex-shrink: 0;
  position: relative;
}

.front_kv_scroll_line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--Green-d);
  animation: scrollDotSlide 2.4s ease-in-out infinite;
}

@keyframes scrollDotSlide {
  0%       { left: -2px;           opacity: 0; }
  10%      { opacity: 1; }
  85%      { left: calc(100% - 3px); opacity: 1; }
  100%     { left: calc(100% - 3px); opacity: 0; }
}

@keyframes scrollIndicatorPulse {
  0%, 100% { opacity: 0.55; }
  40%      { opacity: 1; }
}

/* ---- 右カラム ---- */
.front_kv_right {
  display: grid;
  grid-template-rows: 1fr 220px;
}

/* スライダー */
.front_kv_slider {
  position: relative;
  overflow: hidden;
}

.front_kv_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.front_kv_slide.is-active {
  opacity: 1;
}

.front_kv_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.front_kv_dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.front_kv_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}

.front_kv_dot.is-active {
  background-color: var(--White);
}

/* コンセプトボックス */
.front_kv_concept {
  background:
    repeating-linear-gradient(45deg, rgba(198, 167, 94, 0.06) 0px, rgba(198, 167, 94, 0.06) 1px, transparent 1px, transparent 14px),
    linear-gradient(to right, var(--Green-d), var(--Green-l));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 52px;
}

.front_kv_concept_label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--Yellow);
  margin-bottom: 14px;
}

.front_kv_concept_text {
  font-size: 1.5rem;
  color: var(--White);
  line-height: 1.65;
  letter-spacing: 0.08em;
}


/**********************************************/
/**********HomeTasteとはセクション*************/
/**********************************************/

.about_top_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- 写真コラージュ --- */
.about_photos {
  position: relative;
  padding-bottom: 160px;
  isolation: isolate;
}

.about_photo_main {
  position: relative;
  isolation: isolate;
}

.about_photo_main::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 12px;
  width: 82%;
  height: 100%;
  background-color: rgba(45, 93, 57, 0.12);
  z-index: -1;
}

.about_photo_main img {
  width: 82%;
  height: auto;
  display: block;
  position: relative;
}

.about_photo_sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.about_photo_sub::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 12px;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 93, 57, 0.12);
  z-index: -1;
}

.about_photo_sub img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

/* --- テキスト --- */
.about_lead {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--Green-d);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}

.about_body p {
  margin-bottom: 1em;
}

.about_body p:last-child {
  margin-bottom: 0;
}

.front_about_btn {
  display: inline-flex;
  align-items: center;
  margin-top: 36px;
  padding: 14px 40px;
  border: 1px solid var(--Green-d);
  color: var(--Green-d);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.front_about_btn:hover {
  opacity: 0.65;
}


/**********************************************/
/**********おすすめのレッスンセクション*********/
/**********************************************/

.front_lessons_section {
  background-color: var(--Beige);
}

.front_lessons_footer {
  text-align: center;
  margin-top: 56px;
}

.front_lessons_all_btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 48px;
  border: 1px solid var(--Green-d);
  color: var(--Green-d);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.front_lessons_all_btn:hover {
  opacity: 0.65;
}

.front_lessons_empty {
  text-align: center;
  color: var(--Darkgray);
  font-size: 0.875rem;
  padding: 60px 0;
}


/**********************************************/
/**********ブログセクション********************/
/**********************************************/

/* 3カラム：左1枚が大きく、右2枚が等幅 */
.front_blog_grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px 24px;
  margin-bottom: 0;
}

/* ---- ブログカード ---- */
.blog_card a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.blog_card a:hover {
  opacity: 0.75;
}

.blog_card_thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--Lightgray);
  margin-bottom: 14px;
}

.blog_card_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog_card a:hover .blog_card_thumb img {
  transform: scale(1.04);
}

.blog_card_body {
  padding: 0;
}

.blog_card_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blog_card_date {
  font-size: 0.75rem;
  color: var(--Darkgray);
  letter-spacing: 0.06em;
}

.blog_card_title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--Green-d);
  line-height: 1.55;
  margin-bottom: 8px;
}

/* 1枚目（大きいカード）はタイトルをやや大きく */
.front_blog_grid .blog_card:first-child .blog_card_title {
  font-size: 1.3rem;
}

.blog_card_excerpt {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--Darkgray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- ブログ一覧ボタン ---- */
.front_blog_footer {
  text-align: center;
  margin-top: 48px;
}

.front_blog_more {
  display: inline-flex;
  align-items: center;
  padding: 14px 48px;
  border: 1px solid var(--Green-d);
  color: var(--Green-d);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.front_blog_more:hover {
  opacity: 0.65;
}


/**********************************************/
/**********レスポンシブ************************/
/**********************************************/

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

  .front_kv {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .front_kv_left {
    padding: 60px 24px;
  }

  .front_kv_logo img {
    width: 200px;
  }

  .front_kv_btns {
    flex-direction: column;
  }

  .front_kv_right {
    grid-template-rows: 60vw 180px;
  }

  .front_kv_concept {
    padding: 28px 24px;
  }

  .front_kv_concept_text {
    font-size: 1.2rem;
  }

  .about_top_inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about_photos {
    padding-bottom: 60px;
    padding-right: 36px;
  }

  .front_blog_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .front_about_btn {
    display: flex;
    margin: 36px auto 0;
    align-self: center;
    width: fit-content;
  }

}
