@charset "utf-8";

/* ==========================================================================
   First Page Styles (Flexbox Refactored)
   ========================================================================== */

.first__container {
  max-width: 1000px;
  margin: 0 auto;
}

/* イントロセクション全体 */
.intro {
  margin-bottom: 80px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro__text-block {
  flex: 1;
}

.intro__image-block {
  flex: 0 0 45%;
}

.intro__image-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャッチコピー */
.intro__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.intro__catch-main {
  display: block;
}

.intro__catch-accent {
  color: #AD0306;
}

/* 青い下線付きのテキスト行 */
.intro__line {
    display: flex;
    padding-bottom: 2px;
    margin-bottom: 1.5em;
    line-height: 1.8;
    font-weight: 500;
}

/* 実績セクション */
.works-event {
  margin-bottom: 80px;
}

.works-event__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  font-size: 2rem;
}

.works-event__list {
  list-style: none;
  padding: 0;
}

.works-event__item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px dotted #ccc;
  font-family: "Zen Old Mincho", serif;
}

.works-event__date {
  width: 120px;
  flex-shrink: 0;
  font-weight: 700;
}

.works-event__detail {
  flex: 1;
}

/* モバイル対応 */
@media screen and (max-width: 767px) {
  .intro {
    flex-direction: column;
  }
  
  .intro__image-block {
    width: 100%;
    margin-top: 0px;
  }
  .intro__image-block img{
    width: 70%;
    margin: 0 auto;
  }

  .works-event__item {
    flex-direction: column;
    gap: 5px;
  }

  .works-event__date {
    width: 100%;
  }
}

.fw{
  color: #fff;
}

/* FLOWセクション */
.flow {
  margin-top: 60px;
}

.flow-step {
  margin-bottom: 100px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.flow-step__content {
  flex: 1;
}

.flow-step__image {
  flex: 0 0 40%;
}

.flow-step__image img {
  width: 100%;
  height: auto;
  display: block;
}

.flow-step__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.flow-step__label {
  background-color: #AD0306;
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.flow-step__label .step-text {
  font-size: 1.2rem;
}

.flow-step__label .step-num {
  font-size: 2rem;
}

.flow-step__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
}

.flow-step__desc {
  margin-bottom: 30px;
  line-height: 2;
}

/* コンタクトブロック */
.flow-contact {
  background-color: #1a1515;
  color: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.flow-contact__info {
  flex-shrink: 0;
}

.flow-contact__text {
  margin-bottom: 15px;
}

.flow-contact__sns {
  display: flex;
  gap: 15px;
}

.flow-contact__sns img {
  width: 32px;
  height: auto;
}

.flow-contact__tel {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 4rem;
  padding-left: 30px;
}

.flow-contact__tel img {
  width: 40px;
  height: auto;
}

@media screen and (max-width: 991px) {
  .flow-contact {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    text-align: center;
  }
  .flow-contact__sns {
    display: block;
  gap: 15px;
}
  .flow-contact__tel {
    display: block;
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .flow-step {
    flex-direction: column;
    gap: 30px;
  }
  .flow-step__image {
    width: 100%;
  }
}