/* BEM対応後のCSS */
:root {
  --color-bg: #ffffff;
  --color-bg-light: #f8f8f8;

  /* ピンクの文字色 */
  --color-primary: #b99576;

  --color-primary-dark: #ec6d8a;

  /* https://maketintsandshades.com/#b99576 */
  /* ピンク背景色 */
  --color-secondary: #c7aa91;
  --color-third: #ceb59f;
  --color-forch: #d5bfad;
  --color-fifth: #dccabb;


  --color-footer: #d6dfe4;
  --color-text: #333333;
  --color-text-light: #5b5b5b;
  --color-subtext: #e49da2;
  --color-white: #ffffff;
  --color-silver: #6e797f;

  --color-background-gray: #ecf1f5;

  --font-base: 'Noto Sans JP', sans-serif;
  --font-title: 'Noto Serif JP', serif;
  --font-logo: 'Quicksand', sans-serif;
  --font-catchcopy: 'Shippori Mincho', serif;

  --max-width: 1200px;
  --padding-section: 150px 50px;
  --padding-section-sm: 70px 25px 100px 25px;

  --radius-base: 12px;
  --shadow-base: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-weight: 400;
}

section {
  padding: var(--padding-section);
}

@media (max-width: 768px) {
  section {
    padding: var(--padding-section-sm);
  }
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.only-pc {
  display: none;
}

@media (min-width: 768px) {
  .only-pc {
    display: inline;
  }
}

.only-sm {
  display: none;
}

@media (max-width: 767px) {
  .only-sm {
    display: inline;
  }
}


.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}


/* 見出しブロック */
.section-header__headline {
  font-family: var(--font-title);
  font-weight: 300;
  position: relative;
  margin-bottom: 60px;
}

/* 詳細ページのヘッダー */
.detail-page-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  margin-bottom: 40px;
}

.detail-page-header .section-header__headline {
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .detail-page-header {
    padding: 60px 20px 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-header__headline {
    margin-bottom: 50px;
  }
}

.section-header__title {
  font-size: 70px;
  font-weight: 300;
  font-family: var(--font-title);
}

@media (max-width: 768px) {
  .section-header__title {
    font-size: 44px;
  }
}





.section-header__subtext {
  position: absolute;
  font-size: 16px;
  color: var(--color-primary);
  bottom: -10px;
  font-family: var(--font-base);
}

@media (max-width: 768px) {
  .section-header__subtext {
    position: absolute;
    font-size: 14px;
    bottom: -10px;
  }
}

.section-header__subtext::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-header__subtext::before {
    margin-right: 8px;
    width: 8px;
    height: 8px;
  }
}

.section-header__lead {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .section-header__lead {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
}

.section-header__description {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .section-header__description {
    font-size: 14px;
    margin-top: 32px;
    margin-bottom: 40px;
  }
}


.service__description,
.flow__step-description,
.voice__text {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--color-text-light);
}

/* 見出し ここまで */


.header {
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px 60px 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  width: 100%;
}

/* sm用メニューのため */
@media (max-width: 768px) {
  .header {
    padding: 0;
  }
}


.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  font-family: var(--font-logo);
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .header__logo {
    display: none;
  }
}

  .header__logo-sm {
    display: block;
    font-family: var(--font-logo);
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 16px;
    font-weight: 100;
    color: #a7a7a7;
    letter-spacing: 0.2em;
    z-index: 1000;
  }

  .header__logo-sm2 {
    display: block;
    font-family: var(--font-logo);
    position: absolute;
    left: 30px;
    top: 50px;
    font-size: 12px;
    font-weight: 100;
    color: #a7a7a7;
    z-index: 1000;
  }

@media (max-width: 768px) {
  .header__logo-sm {
    display: block;
    font-family: var(--font-logo);
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 13px;
    font-weight: 100;
    color: #a7a7a7;
    letter-spacing: 0.2em;
    z-index: 1000;
  }

  .header__logo-sm2 {
    display: block;
    font-family: var(--font-logo);
    position: absolute;
    left: 20px;
    top: 40px;
    font-size: 10px;
    font-weight: 100;
    color: #a7a7a7;
    z-index: 1000;
  }

}




/* Desktop navigation */
@media (min-width: 769px) {
  .header__nav {
    position: absolute;
    right: 40px;
    top: 30px;
  }
  
  .nav__list {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
  }
}

/* Mobile navigation */
@media (max-width: 768px) {
  .nav__list {
    display: flex;
    gap: 40px;
    align-items: center;
  }
}

.nav__link {
  font-size: 16px;
  padding: 10px 0;
  color: var(--color-text-light);
}

.main-visual {
  padding: 0;
  /* padding-top: 80px; */
  /* margin-bottom: 10vh; */
}

.main-visual__image {
  width: 75%;
  height: 100vh;
  object-fit: cover;
  background-position: center top;
}

@media (max-width: 768px) {
  .main-visual__image {
    width: 100%;
    height: 100vh;
    /* object-fit: cover; */
    background-position: center top;
    object-fit: cover;
    object-position: 53% center;
    /* これがポイント */

  }
}

.main-visual__catchcopy {
  position: absolute;
  bottom: 3%;
  right: 8vw;
  font-family: var(--font-catchcopy);
  font-size: clamp(18px, 2.666vw, 32px);
  writing-mode: vertical-rl;
  line-height: 2;
  white-space: nowrap;
  color: #444444;
}

@media (max-width: 768px) {
  .main-visual__catchcopy {
    position: absolute;
    bottom: 3%;
    right: 6vw;
    line-height: 2.1;
    color: #707070;
  }
}

.main-visual__catchcopy p {
  letter-spacing: 0.25em;
}

.main-visual__catchcopy-lower {
  text-indent: 1em;
  margin-top: 5em;
}

/* ゆっくり表示されるアニメーション */
.main-visual__catchcopy {
  opacity: 0;
  animation: slowFadeIn 3s ease-out 0.75s forwards;
}

@keyframes slowFadeIn {
  0% { 
    opacity: 0; 
    transform: translateY(30px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0);
  }
}

.about {
  /* background: linear-gradient(180deg, rgba(236, 241, 245, 0.2) 0%, rgba(236, 241, 245, 1) 100%); */
}

.about__image {
  margin-top: 30px;
  margin-bottom: 30px;
}

.about__works {
  padding: 50px 0;
}

@media (max-width: 768px) {
  .about__works {
    padding: 0 0 30px 0;
  }
}

.about__work-card {
  background: var(--color-white);
  /* border: 1px solid #ddd; */
  /* width: calc(33% - 20px); */
  width: 100%;
  padding: 20px;
  border-radius: var(--radius-base);
  text-align: center;
}

.about__work-card-detail {
  color: #565656;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about__work-card-detail {
    font-size: 12px;
  }
}

.about__work-card-category {
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .about__work-card-category {
    font-size: 12px;
  }
}

.about__more-link-wrapper {
  text-align: center;
  /* margin: 90px auto; */
}

.service {
  background: var(--color-bg-light);
}


.service__item-wrapper {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .service__item-wrapper {
    margin-top: 50px;
  }
}

.service__item {
  display: flex;
  align-items: center;

  margin-bottom: 80px;
  padding: 0px 0px;
  justify-content: center;
}

.service__item:last-child {
  margin-bottom: 0px;
}

.service__text-block {
  /* width: 40%; */
  padding: 20px;
}

.service__image-block {
  /* width: 60%; */
  padding: 20px;
}

@media (max-width: 768px) {
  .service__item {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .service__text-block {
    order: 2;
    padding: 16px 20px 0 20px;
  }

  .service__image-block {
    order: 1;
    padding: 0 20px 16px 20px;
  }
}

.service__title {
  font-size: 35px;
  color: #5d5d5d;
  font-weight: normal;
  font-family: var(--font-title);
}

@media (max-width: 768px) {
  .service__title {
    font-size: 30px;
    line-height: 2rem;
  }
}

.service__sub-subtext {
  display: inline-block;
  font-size: 14px;
  color: var(--color-primary);
  position: relative;
  font-family: var(--font-logo);
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .service__sub-subtext {
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: bold;
  }
}

.service__sub-subtext::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #d48c8c;
  vertical-align: middle;
  margin-right: 8px;
}

.service__description {
  font-size: 20px;
}

@media (max-width: 768px) {
  .service__description {
    font-size: 14px;
    margin-bottom: 26px;
  }
}

.service__tags {
  margin-top: 10px;
}

.service__tag {
  display: inline-block;
  background: #ebe6e6;
  color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 18px;
  margin-right: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .service__tag {
    padding: 5px 10px;
    font-size: 14px;
  }
}



.flow {
  /* background: var(--color-background-gray); */
  background: #f4f5f7;
}

.flow__steps {
  background: var(--color-white);
  /* border-radius: var(--radius-base); */
  padding: 80px 100px;
  max-width: 1300px;
  margin: 80px auto 0;
  /* box-shadow: var(--shadow-base); */
}

@media (max-width: 768px) {
  .flow__steps {
    margin: 50px auto 0;
  }
}

.flow__steps-wrapper {
  width: fit-content;
  margin: auto auto;
}

.flow__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 70px;
  position: relative;
}

@media (max-width: 768px) {
  .flow__step {
    margin-bottom: 45px;
  }
}

.flow__step:last-child {
  margin-bottom: 0px;
}

.flow__step-content {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .flow__step-content {
    flex-direction: column;
  }
}

.flow__step-number-title-wrapper {
  display: flex;
}

@media (max-width: 768px) {
  .flow__step-number-title-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-bottom: 10px;
  }
}

.flow__step-number {
  font-size: 60px;
  font-family: var(--font-logo);
  font-weight: normal;
  color: #dcdcdc;
  flex-shrink: 0;
  line-height: 1;
  width: 5vw;
}

@media (max-width: 768px) {
  .flow__step-number {
    font-size: 38px;
    font-family: var(--font-logo);
    font-weight: normal;
    color: #dcdcdc;
    flex-shrink: 0;
    line-height: 1;
    width: fit-content;
  }
}

.flow__step-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin: 8px 30px;
  width: 16vw;
}

@media (max-width: 768px) {
  .flow__step-title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin: 4px 0px;
    width: 100%;
  }
}

.flow__step-description {
  /* font-size: 14px; */
  color: #333;
  line-height: 1.8;
  margin: 0;
  border-left: 1px solid var(--color-primary);
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .flow__step-description {
    padding-left: 0rem;
    border-left: none;
    border-top: 1px solid var(--color-primary);
    padding: 10px 10px 0;
    font-size: 14px;
    line-height: 1.8rem;
  }
}

.flow__arrow {
  text-align: center;
  font-size: 24px;
  color: #aaa;
  margin: -32px auto 32px;
}

@media (max-width: 768px) {
  .flow__arrow {
    margin: -32px auto 26px;
  }
}

.flow__arrow {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.flow__arrow::before,
.flow__arrow::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 1px;
  background-color: #999;
  top: 25px;
  left: 50%;
  transform-origin: left center;
}

@media (max-width: 768px) {

  .flow__arrow::before,
  .flow__arrow::after {
    width: 20px;
  }
}

.flow__arrow::before {
  transform: translate(-50%, -50%) rotate(-120deg);
}

.flow__arrow::after {
  transform: translate(-50%, -50%) rotate(-60deg);
}



.voice__list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .voice__list {
    max-width: 100%;
  }
}

.voice__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.voice__item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .voice__item {
    padding: 15px 0;
  }
}

.voice__date,
.voice__category,
.voice__text {
  margin-bottom: 10px;
  font-size: 14px;
}

.voice__category {
  display: inline-block;
  background: #ebe6e6;
  color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  margin-right: 5px;
}

.voice__more-link-wrapper {
  text-align: center;
  margin: 90px auto 0px;
}

@media (max-width: 768px) {
  .voice__more-link-wrapper {
    margin: 45px auto 0px;
  }
}

.contact {
  padding: 0 10vw 10vw;
}


.contact__inner {
  background: linear-gradient(90deg, var(--color-fifth), var(--color-primary));
  color: var(--color-white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
    padding: 20px;
  }
}

.contact__btn {
  display: inline-block;
  /* margin-top: 30px; */
  background: var(--color-white);
  color: var(--color-primary);
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: bold;
}

.contact__btn:hover {
  background: var(--color-bg-light);
}

.contact__small-text {
  letter-spacing: 0.1em;
}

.footer {
  background: var(--color-footer);
  padding: 60px 20px 40px;
  font-size: 14px;
  color: #555;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

.footer__copyright {
  font-family: var(--font-logo);
  font-size: 12px;
  color: #888;
  letter-spacing: 0.05em;
}

.footer__links {
  justify-self: center;
}

.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link-item {
  font-size: 13px;
  line-height: 1.6;
}

.footer__link-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link-item a:hover {
  color: var(--color-primary);
}

.footer__contact {
  text-align: right;
}

@media (max-width: 768px) {
  .footer__contact {
    text-align: center;
    margin-top: 15px;
  }
}

.footer__contact-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 15px;
  font-family: var(--font-title);
  text-align: center;
}

.footer__sns-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .footer__sns-icons {
    justify-content: center;
  }
}

.footer__sns-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 18px;
  color: #666;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}

.footer__sns-icons a svg {
  display: block;
  margin: 0 auto;
}

.footer__sns-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
}

/* Instagram特別スタイル */
.footer__sns-icons a.sns-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.footer__sns-icons a.sns-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
  color: white;
}

/* Facebook特別スタイル */
.footer__sns-icons a.sns-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
}

/* プロフィールページ・お客様の声ページのスタイル */
.section-content {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-content {
    margin-bottom: 40px;
  }
}

/* プロフィールページ */
.profile-content {
  max-width: 1000px;
  margin: 0 auto;
}

.profile-info {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .profile-info {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
  }
}

.profile-photo {
  flex-shrink: 0;
  width: 300px;
}

@media (max-width: 768px) {
  .profile-photo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

.profile-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
}

.profile-text {
  flex: 1;
}

.profile-name {
  font-size: 32px;
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 30px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .profile-name {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
}

.profile-name-en {
  display: block;
  font-size: 16px;
  color: var(--color-primary);
  font-family: var(--font-logo);
  font-weight: 300;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .profile-name-en {
    font-size: 14px;
  }
}

.profile-description {
  margin-bottom: 40px;
}

.profile-description p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .profile-description p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.profile-skills h4 {
  font-size: 20px;
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}

@media (max-width: 768px) {
  .profile-skills h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.profile-skills ul {
  list-style: none;
  padding: 0;
}

.profile-skills li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.profile-skills li::before {
  content: "•";
  color: var(--color-primary);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .profile-skills li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* 実績セクション */
.achievements-categories {
  max-width: 1200px;
  margin: 0 auto;
}

.achievement-category {
  margin-bottom: 80px;
}

.achievement-category:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .achievement-category {
    margin-bottom: 50px;
  }
}

.achievement-category-title {
  font-size: 28px;
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.achievement-category-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .achievement-category-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .achievement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.achievement-item {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .achievement-item {
    padding: 20px;
  }
}

.achievement-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .achievement-name {
    font-size: 16px;
  }
}

.achievement-type {
  font-size: 14px;
  color: var(--color-primary);
  background: #ebe6e6;
  padding: 4px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 8px;
}

.achievement-period {
  font-size: 12px;
  color: var(--color-text-light);
}

/* お客様の声ページ */
.testimonials-list {
  max-width: 1000px;
  margin: 0 auto;
}

/* アンカーリンクで飛んだ時に中央に表示 */
#testimonial-wedding,
#testimonial-corporate,
#testimonial-lesson {
  scroll-margin-top: 30vh;
}

.testimonial-item {
  background: var(--color-white);
  margin-bottom: 40px;
  padding: 40px;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-2px);
}

.testimonial-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .testimonial-item {
    padding: 24px;
    margin-bottom: 30px;
  }
}

.testimonial-header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.testimonial-date {
  font-size: 14px;
  color: var(--color-text-light);
  font-family: var(--font-logo);
}

.testimonial-category {
  display: inline-block;
  background: #ebe6e6;
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.testimonial-title {
  font-size: 22px;
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .testimonial-text {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.testimonial-client {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
  text-align: right;
}

@media (max-width: 768px) {
  .testimonial-client {
    font-size: 12px;
  }
}

/* 戻るボタンセクション */
.back-section {
  text-align: center;
  /* background: var(--color-bg-light); */
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .back-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {

  .service__item,
  .service__item--reverse {
    flex-direction: column;
  }

  .service__text-block,
  .service__image-block {
    width: 100%;
  }

  .flow__steps {
    padding: 40px 24px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}