/* ========================================
   KOTONOHA - Clone Style
   ======================================== */

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp-only {
  display: none;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  width: 219px;
  height: auto;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger small {
  font-size: 10px;
  color: #333;
  margin-top: 2px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Global Nav */
.global-nav {
  border-top: 1px solid #eee;
  background: #fff;
}

.nav-list {
  display: flex;
  justify-content: center;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-list > li > a:hover {
  color: #cd162c;
  opacity: 1;
}

.nav-list > li > a[aria-current="page"] {
  color: #cd162c;
}

/* Submenu */
.has-submenu:hover .submenu {
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-top: 3px solid #cd162c;
  z-index: 100;
}

.submenu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.submenu li a:hover {
  background: #f7f7f7;
  color: #cd162c;
  opacity: 1;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #333;
  z-index: 2000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.is-open {
  right: 0;
}

.mobile-nav-inner {
  padding: 60px 20px 20px;
}

.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  color: #fff;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
}

.overlay.is-active {
  display: block;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-red {
  background: #cd162c;
  color: #fff;
}

.btn-orange {
  background: #ea724d;
  color: #fff;
}

.btn-yellow {
  background: #f0af42;
  color: #fff;
}

.btn-outline {
  background: #cd162c;
  color: #fff;
  padding: 12px 40px;
  font-size: 16px;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 70%;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 1100px;
  width: 100%;
}

.hero-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.hero-video {
  max-width: 1030px;
  margin: 0 auto 40px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-box {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  border-radius: 8px;
  padding: 28px 32px;
  text-align: left;
}

.hero-box-title {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: #cd162c;
  margin-bottom: 16px;
}

.hero-box-list {
  margin-bottom: 20px;
}

.hero-box-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
}

.hero-box-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #cd162c;
  font-size: 10px;
  top: 4px;
}

.hero-box-list li a {
  color: #333;
  text-decoration: underline;
}

.hero-box-list li a:hover {
  color: #cd162c;
}

.hero-box-btn {
  text-align: center;
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-subtitle {
  display: block;
  font-size: 14px;
  color: #cd162c;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.section-title--accent {
  color: #cd162c;
}

.section-desc {
  text-align: center;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.section-desc-left {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.section-btn {
  text-align: center;
  margin-top: 32px;
}

/* ========================================
   Services
   ======================================== */
.section-services {
  background: #fff;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.service-card {
  text-align: center;
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s;
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-cards-mobile {
  display: none;
}

/* ========================================
   Results Carousel
   ======================================== */
.section-results {
  background: #fff;
}

.results-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

.result-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
}

.result-card a {
  display: block;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.result-card a:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  opacity: 1;
}

.result-card-img {
  position: relative;
  overflow: hidden;
}

.result-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.result-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #cd162c;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
}

.result-card h3 {
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-btn-prev {
  left: 8px;
}

.carousel-btn-next {
  right: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  font-size: 0;
}

.carousel-dots button.active {
  background: #cd162c;
}

/* ========================================
   CTA Bar
   ======================================== */
.cta-bar {
  background: #f7f7f7;
  padding: 40px 0;
  text-align: center;
}

.cta-bar-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ========================================
   Mission Section
   ======================================== */
.section-mission {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.mission-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mission-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mission-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #333;
}

.mission-text {
  font-size: 18px;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto 16px;
  color: #333;
}

/* ========================================
   First Time Section
   ======================================== */
.section-firsttime {
  background: #f7f7f7;
}

.firsttime-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.firsttime-card {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.firsttime-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.firsttime-card:last-child {
  grid-column: 1 / -1;
}

.firsttime-card img {
  width: 100%;
  height: auto;
}

/* ========================================
   Columns Section
   ======================================== */
.section-columns {
  background: #fff;
}

.columns-layout {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 40px;
}

.column-list {
  border-top: 1px solid #eee;
}

.column-item {
  border-bottom: 1px solid #eee;
}

.column-item a {
  display: flex;
  padding: 20px 0;
  gap: 20px;
  transition: background 0.2s;
}

.column-item a:hover {
  opacity: 1;
  background: #fafafa;
}

.column-item-img {
  flex: 0 0 180px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.column-item-img img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}

.column-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #cd162c;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
}

.column-item-body h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
}

.column-item-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.facebook-embed {
  text-align: center;
}

.facebook-embed iframe {
  max-width: 100%;
}

/* ========================================
   Pick Up Section
   ======================================== */
.section-pickup {
  padding: 40px 0;
}

.pickup-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 24px 32px;
  flex-direction: row-reverse;
}

.pickup-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #cd162c;
  margin-bottom: 8px;
}

.pickup-body a {
  text-decoration: underline;
  font-size: 16px;
}

.pickup-body a:hover {
  color: #cd162c;
}

.pickup-img {
  flex: 0 0 300px;
}

/* ========================================
   News Section
   ======================================== */
.section-news {
  background: #f7f7f7;
}

.news-list {
  border-top: 1px solid #ddd;
}

.news-list li {
  border-bottom: 1px solid #ddd;
}

.news-list li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  transition: background 0.2s;
}

.news-list li a:hover {
  background: #f0f0f0;
  opacity: 1;
}

.news-tag {
  flex: 0 0 auto;
  background: #cd162c;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 2px;
}

.news-title {
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   Contact Section
   ======================================== */
.section-contact {
  background: #f0af42;
  padding: 60px 0;
}

.contact-box {
  background: #fff;
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
}

.contact-box .section-title {
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.contact-phone {
  font-size: 16px;
}

.contact-phone a {
  font-size: 20px;
  color: #333;
  text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.footer-main {
  background: #333;
  color: #fff;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  filter: brightness(10);
}

.footer-info address {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-link-title {
  margin-bottom: 4px;
}

.footer-link-title a {
  font-size: 14px;
  font-weight: 700;
}

.footer-links ul {
  margin-bottom: 16px;
}

.footer-links ul li {
  padding-left: 12px;
  position: relative;
}

.footer-links ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #999;
}

.footer-links ul li a {
  font-size: 13px;
  display: block;
  padding: 2px 0;
}

.footer-bottom {
  background: #222;
  color: #aaa;
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (max-width: 1024px) {
  .global-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-buttons {
    display: none;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }

  .columns-layout {
    grid-template-columns: 1fr;
  }

  .columns-side {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-info {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }

  .hero {
    min-height: auto;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-box {
    padding: 20px;
  }

  .hero-box-title {
    font-size: 14px;
  }

  .section-title {
    font-size: 20px;
  }

  .service-cards {
    display: none;
  }

  .service-cards-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .service-card-mobile img {
    width: 100%;
    border-radius: 4px;
  }

  .result-card {
    flex: 0 0 calc(100% - 0px);
    min-width: calc(100% - 0px);
  }

  .firsttime-grid {
    grid-template-columns: 1fr;
  }

  .firsttime-card:last-child {
    grid-column: auto;
  }

  .column-item a {
    flex-direction: column;
    gap: 12px;
  }

  .column-item-img {
    flex: none;
  }

  .column-item-img img {
    width: 100%;
    height: auto;
  }

  .pickup-card {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .pickup-img {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-box {
    padding: 32px 20px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mission-title {
    font-size: 24px;
  }

  .mission-text {
    font-size: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul li {
    padding-left: 0;
  }

  .footer-links ul li::before {
    display: none;
  }
}
