/* ======================================
   Luxury × Soft Pop Responsive Design
====================================== */

* {
    box-sizing: border-box;
}

/* ベース */
body {
    margin: 0;
    font-family: 'Noto Sans JP', "游ゴシック", YuGothic, sans-serif;
    background: #faf8f4;
    color: #222;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.5px;
    padding-bottom: 200px; /* CTAの高さに合わせて調整 */
}

/* ナビゲーション */
.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgb(29 53 87 / 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#000;
}

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

.logo a div{
  font-weight:500;
  font-size:clamp(14px, 2vw, 22px);
  line-height:1.2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.owner {
    max-width: 100px;
}

/* コンテナ */
.inner {
    width: 90%;
    margin: 0 auto;
}

/* ======================================
   ヘッダー
====================================== */
.header {
    background: linear-gradient(135deg,#0f1a2b,#1b2a45);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin: 0;
}

.tagline {
    color: #d4af37;
    margin-top: 15px;
    font-size: 1.8rem;
}

/* ======================================
   ヒーロー
====================================== */
.hero {
    padding: 90px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap; /* ← 横はみ出し防止 */
}

.hero-text {
    flex: 2;
    min-width: 280px;
}

.hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.hero-image {
    flex: 1;
    text-align: center;
    min-width: 280px;
}

.hero-image img {
    max-width: 320px;
    width: 100%;
}

/* ======================================
   セクション共通
====================================== */
.section {
    padding: 90px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-left: 5px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    padding-left: 18px;
}

.lead {
    font-size: 1.5rem;
    line-height: 2.2;
}

.bg-dark {
    background: #0f1a2b;
    color: white;
}

.bg-soft {
    background: #f5f1e8;
}

.content-flex{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.img-right{
    max-width:40%;
    height: auto;
}

/* ======================================
   Choice
====================================== */
.choice {
    text-align: center;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* ← はみ出し防止 */
}

.choice-box {
    background-color: #ffffff;
    padding: 25px 40px;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.choice-box .icon {
    font-size: 40px;
    margin-right: 8px;
}

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

.point-box ul{
    padding-inline-start: 20px;
}

.point-box ul li{
    list-style: none; /* ← ・を消す */
    padding-left: 0;  /* ← 左の余白もリセット（必要に応じて） */
}

.point-box ul li::before {
    content: "\2713";   /* ← ✓ */
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}

/* ======================================
   プロフィール
====================================== */

.representative {
  width: 260px;
  height: 260px;
  image-rendering: auto; /* 初期値 */
  image-rendering: -webkit-optimize-contrast; /* Chrome向け */
  image-rendering: crisp-edges; /* Firefoxや一部で有効 */
  image-rendering: high-quality; /* 一部ブラウザで有効 */
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4f8ef7;
  box-shadow: 0 8px 20px rgba(79, 142, 247, 0.35);
  transition: transform 0.3s ease;
  cursor: pointer;
  background: white;
}


/* ======================================
   CTA
====================================== */
.cta {
    background: linear-gradient(135deg,#f5f1e8,#ffffff);
    padding: 90px 0;
    text-align: center;
}

.sp-only {
  display: none;
}


/* ======================================
   バナー
====================================== */

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg,#d4af37,#b9973a);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: .3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}
.footer-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 70, 160, 0.6);
  backdrop-filter: blur(5px);
  border-top: 1px solid #ddd;
  z-index: 999;
  padding: 8px 0;
  font-size: 30px;
  font-weight: bold;
}

/* 上段：受付時間 */
.banner-time {
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
}

/* 下段：ボタン横並び */
.footer-banner-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 0 10px;
  list-style: none;
}

.banner-tel {
    flex: 1;
}

.banner-contact {
    flex: 1;
}

.footer-banner-list li {
  text-align: center;
  margin: 0 4px;
}

.footer-banner-list a {
  display: block;
  padding: 10px 8px;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
}

.footer-banner-list a::after {
	animation: 2s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255,255,255,0) 25%, rgba(255,255,255,.6) 50%, rgba(255, 255, 255, 0) 75%);
	content: '';
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transform: skewX(-15deg);
	width: 100%;
}
@keyframes shine {
	20% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

/* ボタン色 */
.banner-tel {
  list-style: none;
}

.banner-tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.banner-tel a:hover {
  background-color: #218838;
}

.tel-number {
  font-weight: bold;
  letter-spacing: 1px;
}

.phone_image {
  width: 50px;
  height: auto;
}

.banner-contact a {
  background: #007bff;
}

.banner-assessment a {
  background: #ff6600;
}

.ellipse {
  display: inline-block;
  padding: 3px 20px;
  margin-left: 10px;
  border: 2px solid white;
  border-radius: 50px; /* これで楕円 */
  color: white;
  font-weight: bold;
}

/* ======================================
   フッター
====================================== */
footer {
    background: #0f1a2b;
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 1.5rem;
}

/* ======================================
   レスポンシブ
====================================== */

@media (max-width: 1024px) {

    .hero-flex,
    .flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .owner {
        max-width: 50px;
    }

    .sp-only {
        display: block;
    }
}

@media (max-width: 768px) {

    body {
        font-size: 17px;
        padding-bottom: 100px; /* CTAの高さに合わせて調整 */
    }

    .header {
        padding: 50px 0;
    }

    .header h1 {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 1rem;
    }

    .section,
    .hero,
    .cta {
        padding: 60px 0;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .concept p {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        padding: 20px;
    }

    .inner {
        width: 92%;
    }

    .choices {
        flex-direction: column;
        gap: 15px;
    }

    .choice-box {
        padding: 5px 20px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .card {
        padding: 30px 25px;
    }

    footer {
        font-size: 1rem;
    }

    .footer-banner {
        font-size: 0.8rem;
    }

    .footer-banner-list {
        display: flex;
    }

    .banner-tel {
        flex: 1.5;   /* ← 左を広く */
    }

    .banner-contact {
        flex: 1;   /* ← 右を狭く */
    }

    .footer-banner-list a {
        padding: 5px;
    }

    .phone_image {
        display: none;
    }

    .ellipse {
        padding: 1px 10px;
        margin-left: 2px;
        border: 0.5px solid white;
        border-radius: 30px; /* これで楕円 */
        color: white;
        font-weight: bold;
    }
}

/* 画面が小さいとき */
@media (max-width: 600px) {
    .content-flex{
        display: block;
    }

    .img-right{
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    body {
        font-size: 16px;
    }

    .tagline {
        font-size: 16px;
    }
}