@charset "UTF-8";

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f0f2f5;
  color: #333;
}

/* =========================
   Header / Nav
========================= */
header {
  background: #f5f7fa;
  text-align: center;
  padding: 20px 0;
}

header h1 {
  font-size: 2rem;
  color: #4285F4;
}
.header p {
  font-size: 2rem;
  color: #08e0c7;
}
.logo img{
  padding-bottom: 15px;
}

/* ヘッダー */
.header {
  position: relative;
  background: #4285F4;
  height: 80px;
}

.menu-btn {
  position: absolute;
  top: 26px;   /* ← 18px → 26px */
  left: 20px;
  width: 30px;
  cursor: pointer;
}


.menu-btn span {
  display: block;
  height: 3px;
  background: #fff;
  margin-bottom: 6px;
}

/* ドロワーメニュー */
.drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background:#4285F4;
  transition: 0.4s;
  padding-top: 80px;
}

.drawer.open {
  left: 0;
}

.drawer ul {
  list-style: none;
  padding: 0 30px;
}

.drawer li {
  border-bottom: 1px solid #555;
}

.drawer a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  font-size: 20px;
  letter-spacing: 2px;
}

/* 閉じるボタン */
.close-btn {
position: relative;
  top: 15px;
  left: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

nav {
  background: #4285F4;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

nav li {
  margin: 0 20px;
}

nav a {
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  border-bottom: 2px solid #fff;
}

/* =========================
   Hero (Common)
========================= */
.hero {
  height: 60vh;
  min-height: 300px;
  background: url(images/hero.jpg) center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  color: #4285F4;
  font-size: 2.8rem;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
}

.banner-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}


.banner-item:hover img {
  transform: scale(1.05);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: 1fr;
  }

  .banner-item img {
    height: 220px;
  }
}


/* =========================
   Layout
========================= */
.container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}
/* ===== Pricing section spacing fix ===== */

.container {
  padding: 40px 20px;
}

section.container {
  margin: 0 auto;  
}

h2 {
  color: #4285F4;
  text-align: center;
  margin-bottom: 40px;
}
p {
  color: #4285F4;
  text-align: center;
  margin-bottom: 40px; 
}
/* =========================
   Cards
========================= */
.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
} 
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;        
  margin-top: 30px;
  justify-content: center;
}

.card {
  background: #fff;
  flex: 1 1 280px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  transition: .3s;
}
.card {
  padding: 20px;
}

.card:hover {
  transform: translateY(-5px);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  align-items: start;
}

.company-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
}

.company-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 16px;
}
.company-map iframe {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .company-grid {
    grid-template-columns: 1fr;
  }

  .company-map iframe {
    height: 240px;
  }
}

/* =========================
   Service Images (2 photos)
========================= */
.service-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.service-images img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.page-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 40px;
  border-radius: 10px;
}

.service-hero {
  height: 60vh;
  background-image: url("images/istockphoto-1361246389-612x612.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.service-hero h2,
.service-hero p {
  position: relative;
  color: #fff;
}

.service-hero h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 18px;
}


/* =========================
   Pricing Images (2 columns)
========================= */

.pricing-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.pricing-images {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.pricing-images img {
  width: 200px;   /* ← ここを大きくする */
  height: 160px;  /* ← 高さも調整 */
  object-fit: cover;
  border-radius: 10px;
}


.pricing-images img:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 480px) {
  .pricing-images {
    grid-template-columns: 1fr;
  }

  .pricing-images img {
    height: 160px;
  }
}

/* =========================
   Table / Form
========================= */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

form button {
  background: #00796b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.company-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.company-map {
  margin-top: 60px;
}

/* スマホ */
@media (max-width: 768px) {
  .company-map iframe {
    height: 240px;
  }
}
/* =========================
   Footer
========================= */

.site-footer {
  background: #4285F4;
  color:#f5f7fa;
  padding: 5px 10px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-sns {
  margin-bottom: 20px;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px; /* ← SNSロゴサイズ */
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-sns a:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.3);
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer {
  background: #4285F4;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.sns-icons {
  margin-bottom: 10px;
}

.sns-icons i {
  font-size: 28px;
  margin: 0 12px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}

.sns-icons i:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

/* =========================
   Chat Button
========================= */
#chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #08e0c7;
  border-radius: 50%;
}
#chat {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #08e0c7;
  opacity: 0.6;
  border-radius: 60%;
}
#chat a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#chat a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: "\f075";
  font-size: 25px;
  color: #f5f7fa;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .service-cards {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .service-images {
    grid-template-columns: 1fr;
  }
}
.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
}

.lang-switch button {
  background: #fff;
  border: 1px solid #4285F4;
  color: #4285F4;
  padding: 5px 10px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.lang-switch button:hover {
  background: #4285F4;
  color: #fff;
}
