/* ========================================
   カラー変数
======================================== */
:root {
  --color-white: #FFFFFF;
  --color-beige-light: #F5EDE4;
  --color-beige: #E8D5C4;
  --color-pink-light: #FFE5E5;
  --color-pink: #FFD1DC;
  --color-text-dark: #5A4A42;
  --color-text-gray: #8B7E74;
}

/* ========================================
   基本スタイル
======================================== */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ========================================
   ヘッダー
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(232, 213, 196, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
}

.nav-list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-pink);
  transition: width 0.3s ease;
}

.nav-item a:hover {
  color: var(--color-pink);
}

.nav-item a:hover::after {
  width: 100%;
}

.ko-link {
  border: 1px solid var(--color-beige);
  border-radius: 20px;
  padding: 4px 12px !important;
  font-size: 12px !important;
  letter-spacing: 0.05em;
  color: var(--color-text-gray) !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.ko-link:hover {
  background-color: var(--color-beige) !important;
  color: var(--color-text-dark) !important;
}

.ko-link::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: all 0.3s ease;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-beige-light) 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  color: var(--color-text-dark);
  max-width: 650px;
}

.hero-text {
  margin-bottom: 60px;
}

.hero-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
  margin-bottom: 10px;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-text-gray);
  animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
  animation: bounce 1.5s ease-in-out infinite;
}

/* ========================================
   ヒーロー画像
======================================== */
.hero-image {
  position: relative;
  height: 500px;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.image-box {
  position: absolute;
  background-color: var(--color-beige);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-box-1 {
  width: 450px;
  height: 300px;
  top: 0;
  left: 0;
  z-index: 2;
}

.image-box-2 {
  width: 420px;
  height: 320px;
  bottom: 0;
  right: -40px;
  z-index: 1;
}

/* ========================================
   装飾的な波
======================================== */
.decorative-wave {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.wave-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-pink-light) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation: wave-float 20s ease-in-out infinite;
}

.wave-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-pink) 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
  animation: wave-float 15s ease-in-out infinite reverse;
}

.wave-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-beige) 0%, transparent 70%);
  top: 40%;
  right: -50px;
  animation: wave-float 18s ease-in-out infinite;
}

/* ========================================
   Aboutセクション
======================================== */
.about {
  padding: 120px 0;
  background-color: var(--color-white);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 80px;
}

.section-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  position: relative;
  padding-left: 120px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 1px;
  background-color: var(--color-text-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: fadeInLeft 1s ease-out;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  animation: fadeInRight 1s ease-out 0.2s both;
}

.about-name {
  margin-bottom: 20px;
}

.name-ja {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.name-en {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text-gray);
}

.about-role {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(232, 213, 196, 0.5);
}

.about-description {
  margin-bottom: 50px;
}

.about-description p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
  margin-bottom: 12px;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-gray);
  transition: all 0.3s ease;
  position: relative;
}

.view-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-pink);
  transition: width 0.3s ease;
}

.view-more:hover {
  color: var(--color-pink);
}

.view-more:hover::after {
  width: calc(100% - 24px);
}

.view-more svg {
  transition: transform 0.3s ease;
}

.view-more:hover svg {
  transform: translateX(4px);
}

/* ========================================
   Worksセクション
======================================== */
.works {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-beige-light) 100%);
}

.works-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.works-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.works-intro p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
  margin-bottom: 8px;
}

.works-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}

.work-item {
  display: block;
  align-items: start;
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.work-item:nth-child(1) {
  animation-delay: 0.1s;
}

.work-item:nth-child(2) {
  animation-delay: 0.2s;
}

.work-item:nth-child(3) {
  animation-delay: 0.3s;
}

.work-item:nth-child(4) {
  animation-delay: 0.4s;
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.work-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--color-beige);
  border: 1px solid rgba(232, 213, 196, 0.5);
  transition: all 0.3s ease;
}

.work-item:hover .icon-circle {
  background-color: var(--color-pink-light);
  border-color: var(--color-pink);
}

.work-content {
  padding-top: 10px;
}

.work-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.work-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--color-beige);
  transition: all 0.3s ease;
}

.work-item:hover .work-title::after {
  width: 100px;
  background-color: var(--color-pink);
}

.work-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
}

.works-button {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 60px;
  background-color: var(--color-beige);
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  background-color: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 209, 220, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* ========================================
   料金セクション
======================================== */
.fee {
  padding: 120px 0;
  background-color: var(--color-white);
}

.fee-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.fee-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.fee-intro p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
  margin-bottom: 8px;
}

.fee-cards {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fee-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-beige);
  border-radius: 20px;
  padding: 50px 45px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.fee-card:nth-child(1) {
  animation-delay: 0.1s;
}

.fee-card:nth-child(2) {
  animation-delay: 0.2s;
}

.fee-card:nth-child(3) {
  animation-delay: 0.3s;
}

.fee-card:nth-child(4) {
  animation-delay: 0.4s;
}

.fee-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-pink);
  box-shadow: 0 10px 40px rgba(255, 209, 220, 0.3);
}

.fee-card-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-beige);
}

.fee-item {
  margin-bottom: 25px;
}

.fee-item:last-child {
  margin-bottom: 0;
}

.fee-duration {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  text-align: center;
  margin-bottom: 8px;
}

.fee-price {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  text-align: center;
}

.fee-notes {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 30px;
  background-color: rgba(245, 237, 228, 0.3);
  border-radius: 12px;
}

.fee-notes p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  margin-bottom: 6px;
}

.fee-notes p:last-child {
  margin-bottom: 0;
}

.fee-contact {
  text-align: center;
}

.fee-contact-info {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.fee-contact-info a {
  color: var(--color-text-dark);
  text-decoration: none;
}

.fee-contact-info a:hover {
  text-decoration: underline;
}

.contact-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  background-color: var(--color-white);
  border: 2px solid var(--color-pink);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 209, 220, 0.2);
}

.contact-bubble:hover {
  background-color: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 209, 220, 0.4);
}

.bubble-decoration {
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-pink-light);
  opacity: 0.6;
  animation: bubble-float 3s ease-in-out infinite;
}

.bubble-1 {
  width: 30px;
  height: 30px;
  top: -15px;
  right: 60px;
  animation-delay: 0s;
}

.bubble-2 {
  width: 20px;
  height: 20px;
  bottom: -10px;
  right: 40px;
  animation-delay: 1s;
}

.bubble-3 {
  width: 25px;
  height: 25px;
  top: -10px;
  right: 20px;
  animation-delay: 2s;
}

.contact-bubble:hover .bubble-decoration {
  background-color: var(--color-pink);
  opacity: 0.8;
}

/* ========================================
   お問い合わせセクション
======================================== */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-beige-light) 100%);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-intro p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
}

.contact-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--color-text-gray);
  margin-bottom: 8px;
}

.contact-info {
  text-align: center;
  margin-top: 40px;
}

.contact-info-item {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 14px;
}

.contact-info-item a {
  color: var(--color-text-dark);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-qr {
  margin-top: 40px;
  text-align: center;
}

.contact-qr-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-qr-text {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-line,
.btn-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.6;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-line {
  background-color: #06C755;
  color: var(--color-white);
}

.btn-line:hover {
  background-color: #05B04D;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(6, 199, 85, 0.3);
}

.btn-form {
  background-color: var(--color-beige);
  color: var(--color-text-dark);
}

.btn-form:hover {
  background-color: var(--color-pink);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 209, 220, 0.4);
}

/* ========================================
   フッター
======================================== */
.footer {
  background-color: var(--color-beige-light);
  padding: 60px 0;
  border-top: 1px solid rgba(232, 213, 196, 0.5);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.footer-info {
  margin-bottom: 40px;
}

.footer-name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.footer-name-en {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text-gray);
  margin-left: 10px;
}

.footer-role {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
}

.footer-nav-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav-list li a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-text-gray);
  transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
  color: var(--color-pink);
}

/* ========================================
   アニメーション
======================================== */
@keyframes bubble-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes wave-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* ========================================
   レスポンシブ対応
======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-image {
    height: auto;
    margin: 0 auto;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }

  .image-box {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100% !important;
    height: 220px !important;
    border-radius: 12px;
  }

  .image-box-1,
  .image-box-2 {
    width: 100%;
    height: 220px;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .about {
    padding: 80px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    max-width: 370px;
    margin: 0 auto;
  }

  .works {
    padding: 80px 0;
  }

  .works-intro {
    margin-bottom: 60px;
  }

  .works-list {
    margin-bottom: 60px;
  }

  .fee {
    padding: 80px 0;
  }


  .contact {
    padding: 80px 0;
  }

  .contact-buttons {
    gap: 30px;
  }

  .footer {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-item a {
    font-size: 16px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-container {
    padding: 40px 20px;
    gap: 40px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .hero-text {
    margin-bottom: 40px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-image {
    height: auto;
    max-width: 360px;
  }

  .image-box-1,
  .image-box-2 {
    height: 190px;
  }

  .wave-1,
  .wave-2,
  .wave-3 {
    opacity: 0.2;
  }

  .about {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 24px;
    padding-left: 80px;
  }

  .section-title::before {
    width: 60px;
  }

  .about-content {
    gap: 40px;
  }

  .name-ja {
    font-size: 28px;
  }

  .name-en {
    font-size: 14px;
  }

  .about-role {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .about-description p {
    font-size: 14px;
    line-height: 2;
  }

  .works {
    padding: 60px 0;
  }

  .works-container {
    padding: 0 20px;
  }

  .works-intro {
    margin-bottom: 50px;
  }

  .works-intro p {
    font-size: 14px;
  }

  .works-list {
    gap: 30px;
    margin-bottom: 60px;
  }

  .work-item {
    padding: 30px;
  }

  .work-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .work-description {
    font-size: 14px;
  }

  .btn-primary {
    padding: 16px 50px;
    font-size: 14px;
  }

  .fee {
    padding: 60px 0;
  }

  .fee-container {
    padding: 0 20px;
  }

  .fee-intro {
    margin-bottom: 60px;
  }

  .fee-intro p {
    font-size: 14px;
  }

  .fee-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .fee-card {
    padding: 35px 25px;
  }

  .fee-card-title {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .fee-duration {
    font-size: 12px;
  }

  .fee-price {
    font-size: 15px;
  }

  .fee-notes {
    padding: 25px;
    margin-bottom: 50px;
  }

  .fee-notes p {
    font-size: 12px;
  }

  .contact-bubble {
    padding: 18px 40px;
    font-size: 15px;
  }

  .bubble-1 {
    width: 25px;
    height: 25px;
    top: -12px;
    right: 50px;
  }

  .bubble-2 {
    width: 18px;
    height: 18px;
    bottom: -8px;
    right: 35px;
  }

  .bubble-3 {
    width: 20px;
    height: 20px;
    top: -8px;
    right: 15px;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-intro {
    margin-bottom: 30px;
  }

  .contact-intro p {
    font-size: 16px;
  }

  .contact-text {
    margin-bottom: 50px;
  }

  .contact-text p {
    font-size: 14px;
  }

  .contact-qr-image {
    max-width: 160px;
  }

  .contact-buttons {
    gap: 25px;
  }

  .btn-line,
  .btn-form {
    width: 220px;
    height: 110px;
    font-size: 15px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-info {
    margin-bottom: 30px;
  }

  .footer-name {
    font-size: 18px;
  }

  .footer-name-en {
    font-size: 14px;
  }

  .footer-role {
    font-size: 13px;
  }

  .footer-nav-list {
    gap: 20px;
  }

  .footer-nav-list li a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 12px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .hero-image {
    height: 300px;
  }

  .image-box-1,
  .image-box-2 {
    height: 160px;
  }

  .section-title {
    font-size: 20px;
    padding-left: 60px;
  }

  .section-title::before {
    width: 40px;
  }

  .name-ja {
    font-size: 24px;
  }

  .name-en {
    font-size: 13px;
  }

  .about-role {
    font-size: 14px;
  }

  .about-description p {
    font-size: 13px;
  }

  .works-intro p {
    font-size: 13px;
  }

  .work-item {
    padding: 25px;
  }

  .work-content {
    padding-top: 0;
  }

  .work-title {
    font-size: 16px;
  }

  .work-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .work-item:hover .work-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .work-description {
    font-size: 13px;
  }

  .btn-primary {
    padding: 14px 40px;
    font-size: 13px;
  }

  .fee-intro p {
    font-size: 13px;
  }

  .fee-card {
    padding: 30px 20px;
  }

  .fee-card-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .fee-duration {
    font-size: 11px;
  }

  .fee-price {
    font-size: 14px;
  }

  .fee-notes {
    padding: 20px;
  }

  .fee-notes p {
    font-size: 11px;
  }

  .contact-bubble {
    padding: 16px 35px;
    font-size: 14px;
  }

  .bubble-1 {
    width: 20px;
    height: 20px;
    top: -10px;
    right: 40px;
  }

  .bubble-2 {
    width: 15px;
    height: 15px;
    bottom: -6px;
    right: 30px;
  }

  .bubble-3 {
    width: 18px;
    height: 18px;
    top: -6px;
    right: 12px;
  }

  .contact-intro p {
    font-size: 15px;
  }

  .contact-text p {
    font-size: 13px;
  }

  .contact-qr-image {
    max-width: 140px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .btn-line,
  .btn-form {
    width: 100%;
    max-width: 280px;
    height: 100px;
    font-size: 14px;
  }

  .footer-name {
    font-size: 16px;
  }

  .footer-name-en {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 13px;
  }

  .footer-role {
    font-size: 12px;
  }

  .footer-nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .footer-nav-list li a {
    font-size: 12px;
  }
}
