/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #522601;
    background-color: #fff;
    overflow-x: hidden; /* 横スクロールを防ぐ */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 40px;
    color: #522601;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    color: #522601;
}

p {
    font-size: 16px;
    line-height: 1.75;
    color: #522601;
}

.txt-bold {
    font-weight: 700;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 62px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8F4100;
}

.nav-link.active {
    color: #8F4100;
    font-weight: 700;
}

.cta-button {
    background: linear-gradient(0deg, rgba(255, 5, 5, 1) 0%, rgba(247, 132, 0, 1) 100%);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: transform 0.3s ease;
}

.button-arrow {
    width: 28px;
    height: 28px;
    aspect-ratio: 1/1;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #522601;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Main Visual */
.main-visual {
    margin-top: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video specific styles */
video.main-visual-img {
    display: block;
    background: #000;
}

/* Desktop video (default) */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

.problem-solution {
    margin-top: 0;
}

/* Tablet and Mobile video */
@media (max-width: 1131px) {
    .solution-img {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-video {
        display: none;
    }
    
    .mobile-video {
        display: block;
    }
}

/* Mobile video aspect ratio control */
@media (max-width: 768px) {
    video.main-visual-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* Problem Section */
.problem {
    background: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.problem-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg-1.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.problem-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: auto;
    max-width: 800px;
    z-index: 1;
}

@media (max-width: 1024px) {
    .problem-decoration {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .problem-decoration {
        width: 120%;
        max-width: none;
    }

    .problem-list {
        margin-bottom: 0;
    }

    .reason-description {
        text-align: left;
    }

    .service-description {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .problem-decoration {
        width: 150%;
        max-width: none;
    }
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.problem-title {
    text-align: center;
    color: #522601;
    font-size: 40px;
    margin-bottom: 60px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 600px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #F7F4F0;
    font-size: 18px;
}

.check-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.problem-solution {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
    position: relative;
}

.solution-img {
    width: 300px;
    height: auto;
    object-fit: contain;
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.solution-text {
    color: #522601;
    font-size: 18px;
    line-height: 1.8;
    flex: 1;
    max-width: 600px;
    text-align: center;
    margin: auto;
}

.solution-text-mobile {
    display: none;
}

/* About Section */
.about {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg_about.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-title {
    margin-bottom: 40px;
    text-align: center;
}

.about-text {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 40px;
    text-align: center;
}

.about-button {
    background: #8F4100;
    color: #F7F4F0;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: transform 0.3s ease;
}

.about-button:hover {
    transform: translateY(-2px);
}

/* Reason Section */
.reason {
    background: #F7F4F0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reason-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg_texture.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.reason-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-heading {
    position: relative;
    width: fit-content;     /* 見出し幅をテキストの実幅に */
    margin: 0 auto 60px;    /* 全体は中央配置 */
    text-align: center;     /* 1行見出しなら無くてもOK */
}

.section-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;                               /* テキストの左端を基準に */
    transform: translate(calc(-100% - 8px), -50%); /* 自分の幅分だけ左へ＋隙間8px */
    width: 88px;
    height: 88px;
    background: url('img/deco_subheading.png') no-repeat center/88px 88px;
    pointer-events: none;
}

.reason-cards {
    display: flex;
    justify-content: space-between;
    gap: 44px;
    margin-bottom: 60px;
}

.reason-card {
    flex: 1;
    text-align: center;
}

.reason-img {
    width: 100%;
    height: 241px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.reason-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #522601;
}

.reason-description {
    text-align: center;
    font-size: 24px;
    line-height: 1.6;
    color: #522601;
    margin-bottom: 80px;
}

/* Service Section */
.service {
    background: #FFF8F4;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg_texture.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #522601;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 125% */
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    border: 1px solid #F78400;
    border-radius: 6px;
    padding: 30px 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon-wrap {
  position: relative;
  width: 95px;
  height: 95px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrap::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 95px;
  height: 95px;
  background: #F7F4F0; /* 薄いグレー */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.service-icon {
    width: 83px;
    height: 83px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #522601;
}

.service-text {
    font-size: 16px;
    line-height: 1.5;
    color: #522601;
}

.service-button {
    background: #8F4100;
    color: #F7F4F0;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

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

.service-button:hover {
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    background: #FFF8F4;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/bg_FAQ.png);
    background-repeat: repeat;
    background-size: auto;
    background-position: bottom center;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 122px;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  border: none;
}

/* 質問行 */
.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 56px 18px 16px;
  background: #F3F1F1;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: #ECEAEA;
}

/* Qアイコン */
.faq-q-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #8F4100;
  color: #F7F4F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Century Gothic", sans-serif;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

/* 質問テキスト */
.faq-q-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #522601;
}

/* 右端の＋／－アイコン */
.faq-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #522601;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.faq-toggle::before {
  display: none;
}

/* 開いている時は「＋」を「−」に - JavaScriptで制御 */

/* 答え部分 */
.faq-answer {
  display: none;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 16px;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

/* 開いている時に表示 */
.faq-item.active .faq-answer {
  display: flex;
}

.faq-answer__inner{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

/* Aアイコン */
.faq-a-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 2px solid #8F4100;
  color: #8F4100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Century Gothic", sans-serif;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

/* 答えテキスト */
.faq-a-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #522601;
  text-align: left; 
}


.faq-button {
    background: #8F4100;
    color: #F7F4F0;
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.faq-content {
    text-align: center;
}

.faq-button:hover {
    transform: translateY(-2px);
}

/* ===== Footer Top: Map & Contact ===== */
.footer-map-contact {
  background: #F7F4F0;
  padding: 80px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 画面幅に合わせて1カラムに変更 */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  
  .map {
    width: 90vw;
    margin: 0 auto;
  }
  
  .map-img {
    width: 100%;
    max-width: none;
  }
  
  .contact {
    width: 100%;
    text-align: center;
  }
}

/* Map */
.map {
  flex: 1;
}
.map-img {
  width: 100%;
  max-width: 720px;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
}

/* Contact */
.contact {
  flex: 0 0 340px;
  text-align: left;
}
.footer-logo {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}
.address {
  font-size: 16px;
  color: #5a3a20;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.contact-details {
  margin-bottom: 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.tel, .fax {
  font-size: 18px;
  font-weight: 700;
  color: #5a3a20;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tel img {
  width: 24px;
  height: 24px;
}
.contact-btn {
  background: linear-gradient(0deg, #FF0505 -33.57%, #F78400 116.43%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  min-width: 200px;
  justify-content: center;
}

/* レスポンシブで真ん中配置 */
@media (max-width: 768px) {
  .contact-btn {
    display: flex;
    text-align: center;
    margin: 0 auto;
    max-width: 250px;
    min-width: 200px;
  }
}
.contact-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* --- 下部ナビ部分 --- */
.footer-bottom {
  background: #522601;
  padding: 40px 20px;
  text-align: center;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #ffd3a1;
}
.copyright {
  color: #fff;
  font-size: 16px;
  text-align: center;
}


/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .map-container { padding: 72px 24px; }
  .map-img { width: 100%; }
  .contact-info { width: 320px; flex-basis: 320px; padding: 72px 24px; }
}

@media (max-width: 860px) {
  .map-contact {
    flex-direction: column;
    gap: 0;
  }
  .map-contact::before,
  .map-contact::after { display: none; }
  .map-container { padding: 40px 20px 0; }
  .map-img { height: 300px; width: 100%; }
  .map iframe { height: 300px; }
  .contact-info {
    width: 100%;
    flex-basis: auto;
    border-left: none;
    border-top: 6px solid #F78400;
    padding: 28px 20px 40px;
  }
  .phone-number, .fax-number { font-size: 20px; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }
    
    .reason-cards {
        gap: 20px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-contact {
        flex-direction: column;
    }
    
    .map-container {
        padding: 40px 20px;
    }
    
    .map iframe {
        height: 300px;
    }
    
    .contact-info {
        width: 100%;
        padding: 40px 20px;
    }
}

@media (max-width: 1024px) {
    .main-visual {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 80vh !important;
        position: relative;
    }
    
    .main-visual-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-visual-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

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

    .sp-show{
        display: block;
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
        display: flex;
        padding: 0 20px;
    }
    
    .nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        display: flex;
    }
    
    .hamburger-menu {
        display: flex;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .main-visual {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 80vh !important;
        position: relative;
    }
    
    .main-visual-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-visual-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .problem-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .problem-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .problem-item {
        font-size: 16px;
        gap: 15px;
    }
    
    .problem-solution {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .solution-img {
        position: static;
        transform: none;
        width: 250px;
        margin: 40px auto 0;
        order: 2;
    }
    
    .solution-text {
        font-size: 16px;
        max-width: 100%;
        order: 1;
    }
    
    .solution-text-desktop {
        display: none;
    }
    
    .solution-text-mobile {
        display: block;
    }

    .about-text {
        text-align: left;
    }
/* Decorative subheading used above section/page titles */
.deco_subheading {
    display: block;
    width: 64px;
    height: 6px;
    background: #522601;
    border-radius: 999px;
    margin: 0 auto 16px;
}
    
    .reason-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-visual {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: 60vh !important;
        position: relative;
    }
    
    .main-visual-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-visual-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .problem-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .problem-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .problem-item {
        font-size: 16px;
        gap: 10px;
    }
    
    .problem-solution {
        margin-top: 30px;
    }
    
    .problem-list {
        margin-bottom: 30px;
    }
    
    .solution-img {
        display: none;
    }
    
    .solution-text {
        font-size: 16px;
        text-align: left;
    }
    
    .solution-text-desktop {
        display: none;
    }
    
    .solution-text-mobile {
        display: block;
    }
    
    .reason-title {
        font-size: 20px;
    }
    
    .service-card {
        padding: 20px 10px;
    }
    
    .phone-number {
        font-size: 32px;
    }
    
    .fax-label,
    .fax-number {
        font-size: 24px;
    }
}

/* ===== 全体的なテキスト左寄せ（768px以下） ===== */
@media (max-width: 768px) {
    /* 説明文 */
    .description {
        text-align: left !important;
    }
    
    /* セクション内のテキスト（タイトル以外） */
    .section-content p {
        text-align: left !important;
    }
    
    /* カード内のテキスト（タイトル以外） */
    .service-card p,
    .about-card p {
        text-align: left !important;
    }
    
    /* FAQ */
    .faq-question,
    .faq-answer {
        text-align: left !important;
    }
    
    /* 会社概要テーブル */
    .company-table td {
        text-align: left !important;
    }
    
    /* お問い合わせフォーム */
    .form-group label,
    .form-group input,
    .form-group textarea {
        text-align: left !important;
    }
    
    /* フッター */
    .footer-nav {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .copyright {
        text-align: center !important;
    }
    
    /* その他のテキスト要素（タイトル・ボタン以外） */
    p, span {
        text-align: left !important;
    }
    
    /* ボタンは中央寄せを維持 */
    .cta-button,
    .about-button,
    .service-button,
    .faq-button,
    .submit-button,
    .flow-cta,
    .message-cta,
    .contact-btn {
        text-align: center !important;
    }
    
    /* セクションタイトルの装飾画像をスマホサイズに調整 */
    .section-heading::before {
        width: 64px !important;
        height: 64px !important;
        background-size: 64px 64px !important;
    }
}
