@charset "UTF-8";

/* =====================================================
   1. Base Settings & Variables
===================================================== */
:root { 
  font-size: 62.5%; 
  --s-2: calc(var(--s1) / 2); 
  --s1: 0.8rem; 
  --s2: calc(var(--s1) * 2); 
  --s3: calc(var(--s1) * 3); 
  --s4: calc(var(--s1) * 4); 
  --s5: calc(var(--s1) * 5); 
  --s6: calc(var(--s1) * 6); 
  --s7: calc(var(--s1) * 7); 
  --s8: calc(var(--s1) * 8); 
  --s9: calc(var(--s1) * 9); 
  --s10: calc(var(--s1) * 10); 
  --bg-color: #eaf4ff; 
  --teal-color: #4dbfb5; 
  --blue-color: #0078d4; 
  --border-blue: #70b0e0; 
  --text-main: #111; 
  --gray-bg: #f0f0f0; 
}

@media screen and (max-width: 1440px) { 
  :root { font-size: 0.6944444444vw; } 
}

body { 
  margin: 0; padding: 0; background: #fff; color: #000; 
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif; 
  font-size: 1.6rem; -webkit-text-size-adjust: 100%; line-height: 1; 
}
body.is-no-scroll { overflow: hidden; }
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-weight: normal; clear: both; }
ul, ol, dl, p, img, form, dt, dd, figure { margin: 0; padding: 0; border: 0; }
li { list-style: none; }
input, button, textarea, select { 
  margin: 0; padding: 0; background: none; border: none; border-radius: 0; outline: none; 
  font-size: 1.6rem; font-family: YakuHanJP_Narrow,"Noto Sans JP", sans-serif; 
  -webkit-appearance: none; -moz-appearance: none; appearance: none; 
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: #000; transition: opacity 0.2s ease, color 0.2s ease; outline: none; }
a:active, a:hover { color: #000; text-decoration: none; }
strong { font-weight: 700; }
em { font-style: italic; font-weight: normal; }
small { font-size: 80%; }
sup { font-size: 50%; }
* { box-sizing: border-box; word-break: break-all; }

@media screen and (min-width: 768px) { .for-sp { display: none !important; } }
@media screen and (max-width: 767px) { .for-pc { display: none !important; } }


/* =====================================================
   2. Animations
===================================================== */
@keyframes scroll-bar { 0% { height: 0; top: 4.8rem; opacity: 0; } 30% { height: 8rem; opacity: 1; } 100% { height: 0; top: 24rem; opacity: 0; } }
@keyframes mv-line-01 { 0% { transform: translate(0, 5rem); } 50% { transform: translate(10%, -5rem); } 100% { transform: translate(0, 5rem); } }
@keyframes mv-line-02 { 0% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -7rem); } 100% { transform: translate(-50%, 0); } }
@keyframes mv-line-01-sp { 0% { transform: translate(0, 0); } 50% { transform: translate(0, 10%); } 100% { transform: translate(0, 0); } }
@keyframes mv-line-02-sp { 0% { transform: translate(0, 0); } 50% { transform: translate(0, -15%); } 100% { transform: translate(0, 0); } }
@keyframes about-swiper { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% - var(--s2))); } }
@keyframes icon-arrow { 0% { transform: translate(-50%, -50%); opacity: 1; } 37% { transform: translate(calc(3rem - 50%), -50%); opacity: 1; } 38% { transform: translate(calc(3rem - 50%), -50%); opacity: 0; } 39% { transform: translate(calc(-3rem - 50%), -50%); opacity: 0; } 40% { transform: translate(calc(-3rem - 50%), -50%); opacity: 1; } 100% { transform: translate(-50%, -50%); opacity: 1; } }
@keyframes icon-arrow-up { 0% { transform: translate(-50%, -50%); opacity: 1; } 37% { transform: translate(-50%, calc(-3rem - 50%)); opacity: 1; } 38% { transform: translate(-50%, calc(-3rem - 50%)); opacity: 0; } 39% { transform: translate(-50%, calc(3rem - 50%)); opacity: 0; } 40% { transform: translate(-50%, calc(3rem - 50%)); opacity: 1; } 100% { transform: translate(-50%, -50%); opacity: 1; } }


/* =====================================================
   3. Layout & Background
===================================================== */
.l-center { max-width: 128rem; margin-right: auto; margin-left: auto; }
.l-cluster { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s3); }
.l-grid-areas-01 { display: grid; grid-template-areas: "header btn" "content content"; grid-template-columns: 1fr 38rem; grid-template-rows: auto 1fr; grid-gap: 12rem 0; }
.l-grid-areas-01__cell-01 { grid-area: header; }
.l-grid-areas-01__cell-02 { grid-area: btn; place-self: end center; }
.l-grid-areas-01__cell-03 { grid-area: content; }
.l-grid-areas-02 { display: grid; grid-template-areas: "header content" "btn content"; grid-template-columns: 31.4rem 1fr; grid-template-rows: auto 1fr; grid-gap: var(--s8) var(--s9); }
.l-grid-areas-02__cell-01 { grid-area: header; }
.l-grid-areas-02__cell-02 { padding: 0 var(--s4); grid-area: btn; }
.l-grid-areas-02__cell-03 { grid-area: content; }
.l-page { min-height: 100vh; display: flex; flex-direction: column; }
.l-page > .footer-area { margin-top: auto; }
.l-offset-02 { width: calc(100% - var(--s6)); margin-left: auto; }

.bg-light-blue-left { background: #e2f3ff; border-radius: 20rem 0 0 0; }
.bg-light-blue-right { background: #e2f3ff; border-radius: 0 var(--s9) 0 0; }
.bg-blue-right-small { position: relative; z-index: 1; }
.bg-blue-right-small::after { content: ""; width: calc(100% - var(--s6)); height: 100%; background: linear-gradient(#3dafff 0%, #0080d9 50%, #0080d9 100%); border-radius: var(--s1) 20rem var(--s1) var(--s1); position: absolute; top: 0; left: 50%; z-index: -2; transform: translate(-50%, 0); }


/* =====================================================
   4. UI Components (Icons, Buttons, Effects)
===================================================== */
/* Icons */
.icon-arrow { width: var(--s5); height: var(--s5); overflow: hidden; position: relative; }
.icon-arrow::before { content: ""; width: var(--s2); height: var(--s2); background: url("../../common/images/arrow-01-white-right.svg") no-repeat center/100% auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-arrow-up { width: var(--s5); height: var(--s5); overflow: hidden; position: relative; }
.icon-arrow-up::before { content: ""; width: 1.4rem; height: 1.9rem; background: url("../../common/images/arrow-01-white-up.svg") no-repeat center/100% auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-arrow-circle-01 { width: 6rem; height: 6rem; border: 1px solid #fff; border-radius: 100%; overflow: hidden; position: relative; }
.icon-arrow-circle-01::before { content: ""; width: var(--s2); height: var(--s2); background: url("../../common/images/arrow-01-white-right.svg") no-repeat center/100% auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.icon-arrow-circle-02 { width: var(--s6); height: var(--s6); border: 1px solid #bfe3f8; border-radius: 100%; overflow: hidden; position: relative; }
.icon-arrow-circle-02::before { content: ""; width: 1.2rem; height: 1.2rem; background: url("../../common/images/arrow-01-blue-right.svg") no-repeat center/100% auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

@media (hover: hover) {
  a:hover .icon-arrow::before, a:hover .icon-arrow-circle-01::before, a:hover .icon-arrow-circle-02::before { animation: icon-arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards; }
  a:hover .icon-arrow-up::before { animation: icon-arrow-up 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards; }
}

/* Buttons */
.btn-primary { margin: 0; position: relative; z-index: 10; pointer-events: auto; }
.btn-primary__link { width: 30rem; max-width: 100%; min-height: var(--s10); padding: var(--s1) 2rem var(--s1) var(--s5); background: #0080d9; border-radius: 10rem; display: flex; align-items: center; justify-content: space-between; color: #fff; font-weight: 500; line-height: 1.6; letter-spacing: 0.02em; text-decoration: none; position: relative; z-index: 10; }
.btn-primary__link:hover { color: #fff; }

/* Hover scroll & Scroll text */
.hover-scroll { display: inline-block; overflow: hidden; position: relative; }
.hover-scroll.min { display: inline-block; overflow: hidden; position: relative; left: 30px; }
.hover-scroll__text { display: inline-block; padding: 0.6em 0; opacity: 1; transform: translateY(0); transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s; }
.hover-scroll__text:nth-child(2) { position: absolute; top: 100%; left: 0; opacity: 0; }

@media (hover: hover) {
  a:hover .hover-scroll__text { opacity: 0; transform: translateY(-100%); }
  a:hover .hover-scroll__text:nth-child(2) { opacity: 1; }
}

.scroll-text { position: relative; }
.scroll-text__text { display: inline-block; opacity: 0; transform: translateY(100%); transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.3s, opacity 0.8s ease 0.3s; }
.scroll-text__text--delay01 { transition-delay: 0.6s; }
.scroll-text.is-loaded .scroll-text__text, .scroll-text.is-inview .scroll-text__text { opacity: 1; transform: translateY(0); }


/* =====================================================
   5. Global Sections (Header, Footer, Page Top)
===================================================== */
/* Header */
.header-area { width: 100%; height: 10rem; padding: 0 var(--s8); display: flex; align-items: center; position: fixed; top: 0; left: 50%; z-index: 15; transform: translate(-50%, 0); transition: transform ease 0.4s; }
.header-area::before { content: ""; width: 100vw; height: 100%; opacity: 0; visibility: hidden; background: rgba(255, 255, 255, 0.8); -webkit-backdrop-filter: blur(15px) saturate(180%); backdrop-filter: blur(15px) saturate(180%); position: absolute; top: 0; left: 0; z-index: -1; transition: opacity ease 0.4s, visibility ease 0.4s; }
.header-area.is-state-01 { transform: translate(-50%, -100%); }
.header-area.is-state-02 { height: var(--s10); transform: translate(-50%, 0); }
.header-area.is-state-02::before { opacity: 1; visibility: visible; }
body.is-scroll-down .header-area.is-state-02 { transform: translate(-50%, -100%); }
.header-area.is-show-menu::before { opacity: 1; visibility: visible; }

.header-logo { width: 18.2rem; height: 45px; margin: 0 var(--s8) 0 0; }
.header-logo__link { display: block; text-decoration: none; padding-top: 3em; }
.header-logo-switch { position: relative; }
.header-logo-switch__img { transform: translateY(-100%); transition: transform 0.4s; }
.header-logo-switch__img:last-child { position: absolute; top: 100%; left: 0; }
.header-area.is-state-02 .header-logo-switch__img { transition: none; }

.header-menu { height: 100%; margin: 0 auto 0 0; display: flex; gap: var(--s5); }
.header-menu__item { height: 100%; display: flex; align-items: center; font-size: 1.4rem; font-weight: 500; letter-spacing: 0.02em; }
.header-menu__link { text-decoration: none; }
.header-menu--secondary { margin: 0 0 0 auto; }
.header-menu--secondary .header-menu__item { font-size: 1.3rem; }
@media (hover: hover) { .header-menu__link:hover { opacity: 0.5; } }

.header-btn { margin: 0 0 0 var(--s6); }
.header-btn__link { min-width: 18rem; padding: var(--s1) var(--s6); background: #0080d9; border-radius: 10rem; display: block; color: #fff; font-size: 1.4rem; font-weight: 500; line-height: 1.2; text-decoration: none; }
.header-btn__link:hover { color: #fff; }

/* dropdownmenu */
.has-dropdown { position: relative; }
.dropdown-arrow { font-family: Arial, sans-serif; font-size: 1.4rem; margin-left: 6px; display: inline-block; transform: rotate(90deg); transition: transform 0.3s; }
.has-dropdown.is-active .dropdown-arrow { transform: rotate(-90deg); }
.dropdown-menu { position: absolute; top: calc(100% + 15px); left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid #e5e5e5; border-radius: 8px; padding: 10px 0; min-width: 140px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); visibility: hidden; opacity: 0; transition: opacity 0.3s, visibility 0.3s, top 0.3s; z-index: 100; list-style: none; margin: 0; }
.dropdown-menu::before { content: ""; position: absolute; top: -15px; left: 0; width: 100%; height: 15px; }
.dropdown-menu li { margin: 0; }
.dropdown-menu li a { display: block; padding: 12px 20px; color: #333; text-decoration: none; font-size: 1.3rem; text-align: center; transition: background 0.2s, color 0.2s; }
.dropdown-menu li a:hover { background-color: #f0f8ff; color: #0080d9; }
.has-dropdown.is-active .dropdown-menu { visibility: visible; opacity: 1; top: 100%; }

/* Footer */
.footer-area { padding: 7.8rem 0 var(--s10) 3em; background: #f7f7f7; overflow: hidden; position: relative; z-index: 1; }
.l-footer { display: grid; grid-template-areas: "logo menu" "catch other"; grid-template-columns: 47.6rem 1fr; grid-template-rows: auto 1fr; grid-gap: 10rem 0; justify-content: space-between; }
.l-footer__cell-01 { grid-area: logo; }
.l-footer__cell-02 { grid-area: menu; }
.l-footer__cell-03 { grid-area: catch; place-self: end start; }
.l-footer__cell-04 { grid-area: other; }
.footer-logo { width: 18.2rem; margin: 0 var(--s3); }
.footer-logo__link { display: block; }
.footer-menu-wrapper { display: flex; gap: var(--s10); justify-content: flex-end; padding-right: 5em; }
.footer-menu { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 60px; list-style: none; padding: 0; margin: 0; }

.footer-menu__item { font-size: 1.4rem; font-weight: 500; letter-spacing: 0.02em; line-height: 1.6; margin: 0; padding: 0; }
.footer-menu__link { display: block; text-decoration: none; color: #333; margin: 0; padding: 0; line-height: 1; }
.footer-menu .footer-menu { margin-top: var(--s4); }
.footer-menu .footer-menu .footer-menu__item { font-weight: 400; }
.footer-menu .footer-menu .footer-menu__item + .footer-menu__item { margin-top: var(--s2); }
.footer-menu .footer-menu .footer-menu__link { color: #8c8c8c; }
.footer-menu-sub { margin-top: var(--s6); }
.footer-menu-sub__item { font-size: 1.2rem; font-weight: 300; letter-spacing: 0.02em; line-height: 1.6; }
.footer-menu-sub__item + .footer-menu-sub__item { margin-top: var(--s1); }
.footer-menu-sub__link { display: block; text-decoration: none; }
.footer-sns { display: flex; justify-content: flex-end; gap: var(--s2); }
.footer-sns__item { width: var(--s5); height: var(--s5); }
.footer-sns__link { display: block; }
.footer-catch { margin: 0 var(--s4); }
.footer-catch__en { font-size: 2.8rem; font-family: "Lato", sans-serif; font-weight: 700; letter-spacing: 0.02em; }
.footer-catch__en__em-01 { padding-right: 1.2rem; color: #0080d9; font-size: 4.4rem; }
.footer-catch__en__em-02 { font-size: 4.4rem; }
.footer-catch__jp { margin-top: 2rem; display: block; font-size: 1.8rem; font-weight: 500; letter-spacing: 0.02em; }
.footer-copyright { font-size: 1.3rem; font-family: "Lato", sans-serif; font-weight: 300; letter-spacing: 0.02em; line-height: 1.2; }
.footer-privacy { width: var(--s5); }
.footer-other { padding: 0 var(--s7); display: flex; flex-direction: column; gap: var(--s8); }
.footer-other__bottom { display: flex; justify-content: flex-end; align-items: center; gap: var(--s4); }

/* Page Setup & Page Top */
.page-area { opacity: 0; transition: opacity 0.4s; }
.page-area.is-loaded { opacity: 1; }
.page-top { width: 13rem; height: 13rem; border-radius: 100%; overflow: hidden; opacity: 0; visibility: hidden; position: sticky; left: calc(100vw - 19.2rem); bottom: 9.6rem; z-index: 10; transform: translate(0, 50%); transition: visibility 0.4s, opacity 0.4s; }
.page-top__link { width: 100%; height: 100%; padding-top: var(--s10); background: #0080d9; display: flex; justify-content: center; color: #fff; font-size: 1.4rem; font-weight: 300; text-align: center; text-decoration: none; position: relative; }
.page-top__link:hover { color: #fff; }
.page-top__link .icon-arrow-up { position: absolute; top: var(--s4); left: 50%; transform: translate(-50%, 0); z-index: 1; }
.page-top.is-show { opacity: 1; visibility: visible; }

/* Common Section Titles */
.section-title { padding-left: var(--s6); font-size: 8rem; font-family: "Lato", sans-serif; font-weight: 700; letter-spacing: 0.02em; line-height: 1.2; }
.section-title__label { margin-bottom: var(--s1); display: block; color: #0080d9; font-size: 1.6rem; font-family: YakuHanJP, "Noto Sans JP", sans-serif; font-weight: 500; line-height: 1.6; position: relative; }
.section-title__label--white { color: #fff; }
.section-lead { margin-left: var(--s6); font-weight: 500; line-height: 1.8; }
.section-title + .section-lead { margin-top: var(--s5); }


/* =====================================================
   6. Main Content Sections (PC Layouts)
===================================================== */
/* --- Catch / About Area --- */
.catch-area { position: relative; z-index: 1; }
.catch-about-wrapper { height: 90rem; display: flex; align-items: flex-end; margin: -60rem 0 var(--s7); position: relative; z-index: 2; pointer-events: none; }
.catch-about { position: sticky; bottom: var(--s4); z-index: 1; transform: translate3d(0, 0, 0); pointer-events: auto; }
.catch-about__img { width: auto; max-height: 100%; }
.catch-about__mask { display: block; overflow: hidden; }
.catch-about__line-01, .catch-about__line-02 { height: 10.6rem; display: block; opacity: 0; transform: translate(0, 60%); }
.catch-about__line-01 { transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s, opacity 1s ease 0.4s; }
.catch-about__line-02 { margin-top: var(--s4); transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.7s, opacity 1s ease 0.7s; }
.catch-about.is-loaded .catch-about__line-01, .catch-about.is-loaded .catch-about__line-02 { opacity: 1; transform: translate(0, 0); }

/* --- MV Section --- */
.mv-section { width: 100%; height: 100svh; padding: 42rem var(--s9) 0; -webkit-overflow: clip; overflow: clip; position: relative; z-index: 5; }
.mv-title { margin: 0; font-size: 3.6rem; font-weight: 500; line-height: 1.8; letter-spacing: 0.08em; position: relative; z-index: 10; }
.mv-txt { width: auto; line-height: 1.8; font-size: 1.6rem; margin: 2em 0 3em .5em; letter-spacing: 0.04em; font-weight: 600; position: relative; z-index: 10; }
.mv-scroll { color: #fff; font-size: 1.4rem; font-family: "Lato", sans-serif; font-weight: 300; letter-spacing: 0.08em; writing-mode: vertical-rl; position: absolute; right: var(--s5); bottom: 9rem; z-index: 10; }
.mv-scroll::after { content: ""; width: 1px; height: var(--s10); background: #fff; opacity: 0; animation: scroll-bar 2.5s ease-in-out infinite; position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 0); }
.mv-section div.btn-primary { margin: 4em 0 2em .6em; }
.mv-section div.btn-primary a.btn-primary__link { width: 40rem !important; font-size: 20px; letter-spacing: 0.08em; }
.mv-section .pic { width: 40%; position: relative; left: -1.2%; }
.mv-section .pic img { max-width: 550px; height: auto; }
.mv-line-01 { width: 149%; height: 169%; background: url("../../common/images/mv-line-01.png") no-repeat center/100% 100%; animation: mv-line-01 40s ease-in-out infinite; position: absolute; bottom: 0; left: -5rem; z-index: 1; pointer-events: none; }
.mv-line-02 { width: 138%; height: 180%; background: url("../../common/images/mv-line-02.png") no-repeat top center/100% 100%; animation: mv-line-02 30s ease-in-out infinite; position: absolute; top: -21rem; left: 50%; z-index: 1; transform: translate(-50%, 0); pointer-events: none; }
.mv-swiper { width: 100%; height: 100svh; position: absolute; top: 0; left: 50%; z-index: -1; transform: translate(-50%, 0); pointer-events: none; }
.mv-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.1); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 3s cubic-bezier(0.22, 1, 0.36, 1); }
.mv-swiper .swiper-slide-active img { opacity: 1; transform: scale(1); }

/* --- About Section --- */
.about-section { -webkit-overflow: clip; overflow: clip; }
.about-section__inner { padding: 13rem var(--s9) 5.4rem; position: relative; }
.about-line-01, .about-line-02 { width: 165.2rem; height: 110.3rem; position: absolute; left: 0; z-index: -1; }
.about-line-01 { top: 24.3rem; transform: translate(-12rem, 0); }
.about-line-02 { opacity: 0.7; top: 21.9rem; }
.about-box { width: calc(50% + var(--s4)); margin: 0 0 0 auto; }
.about-box .btn-primary { margin-top: var(--s7); }
.about-text { font-weight: 500; line-height: 2.1; }
.about-text + .about-text { margin-top: var(--s2); }
.about-swiper { margin-top: 26.8rem; display: flex; gap: var(--s2); }
.about-swiper__group { display: flex; align-items: flex-start; gap: var(--s2); animation: about-swiper 40s linear infinite; }
.about-slide { border-radius: var(--s1); overflow: hidden; }
.about-slide--01 { width: 42rem; margin-top: var(--s2); }
.about-slide--02 { width: 30rem; margin-top: var(--s10); }
.about-slide--03 { width: 40rem; }
.about-slide--04 { width: 31rem; margin-top: 4.6rem; }
.about-slide--05 { width: 38rem; margin-top: 9rem; }

/* --- Service Section (Quick 4step) --- */
.service-section { padding: 10.8rem 5em 6rem; overflow: hidden; position: relative; z-index: 1; margin-left: 7em; }
.service-container { padding: 40px 20px 0; }
.header-section { margin-bottom: 9em; }
.badge-quick { display: inline-block; background-color: #fff; color: #0088cc; font-weight: bold; padding: 6px 16px; border-radius: 20px; font-size: 26px; margin-bottom: 15px; letter-spacing: 0.08em; }
.title-area { display: flex; align-items: baseline; flex-wrap: wrap; gap: 15px; }
.title { font-size: 7rem; font-weight: bold; margin: 0; color: #000; }
.subtitle { font-size: 18px; font-weight: bold; margin: 0; letter-spacing: 0.08em; color: #000; }
.step-container { position: relative; margin-bottom: 30px; }
.step-card { background-color: #fff; border-radius: 15px; padding: 20px; display: flex; align-items: center; position: relative; min-height: 140px; margin: 6em 0; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.step-card::after { content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); border-top: 20px solid #fff; border-left: 20px solid transparent; border-right: 20px solid transparent; z-index: 10; }
.step-circle { position: absolute; left: -40px; top: 50%; transform: translateY(-50%); width: 75px; height: 75px; background-color: #0077d9; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; z-index: 20; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.step-circle .step-text { font-size: 16px; font-weight: bold; line-height: 1; margin-top: 5px; }
.step-circle .step-number { font-size: 36px; font-weight: bold; line-height: 1; margin-top: 2px; }
.step-content { display: flex; align-items: center; width: 100%; gap: 20px; margin-left: 30px; }
.image-area { width: 40%; display: flex; align-items: center; justify-content: center; position: relative; margin: -6em 4em 0 4em; padding: 3em 0px 0em; }
.text-area { width: 45%; font-size: 20px; font-weight: bold; line-height: 1.8; }
.text-area span {font-size: 15px;}
.mock-machine { width: 70px; height: 90px; background: #e0e0e0; border-radius: 5px; position: relative; box-shadow: inset 0 -5px 0 #ccc; }
.mock-machine::before { content: ''; position: absolute; top: 10px; left: 10px; right: 10px; height: 15px; background: #fff; border-radius: 2px; }
.mock-machine::after { content: ''; position: absolute; top: 35px; left: 10px; width: 20px; height: 4px; background: #666; border-radius: 2px; box-shadow: 0 10px 0 #666, 0 20px 0 #666, 0 30px 0 #666, 30px 0 0 #666, 30px 10px 0 #666, 30px 20px 0 #666, 30px 30px 0 #666; }
.mock-phone { width: 50px; height: 100px; background: #fff; border: 2px solid #333; border-radius: 10px; margin-left: 10px; position: relative; }
.mock-phone::before { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 15px; height: 3px; background: #333; border-radius: 2px; }
.scan-badge { position: absolute; top: -10px; left: 50%; background: #00bcd4; color: #fff; font-size: 10px; padding: 2px 8px; border-radius: 10px; }
.scan-arrow { position: absolute; top: 20px; left: 45%; color: #00bcd4; font-size: 20px; font-weight: bold; }
.footer-action { margin-top: 50px; }
.btn-find { display: inline-flex; align-items: center; justify-content: center; background-color: #0077d9; color: #fff; text-decoration: none; font-weight: bold; font-size: 20px; padding: 24px 50px; border-radius: 50px; width: 80%; max-width: 460px; box-shadow: 0 4px 10px rgba(0, 119, 217, 0.3); transition: opacity 0.2s; }
.tc { text-align: center; }
.btn-find:hover { opacity: 0.9; color: #fff; }
.btn-icon { margin-right: 8px; width: 30px; }

/* --- Pricing Section --- */
.pricing-container { max-width: 100%; margin: 0 auto; padding: 40px 0px 0; }
.pricing-header { display: flex; align-items: baseline; margin-bottom: 20px; }
.main-title { font-size: 5rem; font-weight: bold; margin: 0; margin-right: 15px; }
.sub-title { font-size: 18px; font-weight: bold; margin: 0; letter-spacing: 0.08em; }
.formula-box, .footer-box { background-color: #fff; border: 2px solid var(--blue-color); border-radius: 12px; padding: 20px 30px; margin-bottom: 20px; }
.formula-box { display: flex; justify-content: space-between; align-items: self-start; text-align: center; font-weight: bold; }
.formula-item { flex: 1; padding: 15px 0; border-radius: 8px; font-size: 20px; letter-spacing: 0.08em; display: block; width: 100%; }
.formula-item-wrapper { flex: 1; display: flex; flex-direction: column; align-items: center; }
.formula-operator { font-size: 1.5rem; margin: 0 15px; padding-top: 1.2em; }
.formula-note { font-size: 14px; margin-top: 5px; font-weight: normal; letter-spacing: 0.08em; }
.bg-gray { background-color: var(--gray-bg); }
.bg-teal { background-color: var(--teal-color); }
.bg-blue { background-color: var(--blue-color); }
.text-white { color: #fff; }
.details-section { display: flex; gap: 20px; margin-bottom: 20px; }
.card { flex: 1; background-color: #fff; border-radius: 12px; overflow: hidden; border: 2px solid; }
.border-teal { border-color: var(--teal-color); }
.border-blue { border-color: var(--blue-color); }
.card-header { text-align: center; color: #fff; font-weight: bold; padding: 15px 0; font-size: 20px; }
.card-body { padding: 20px; }
.deposit-box { background-color: var(--gray-bg); text-align: center; padding: 15px; border-radius: 8px; margin-bottom: 20px; }
.deposit-label { display: block; font-size: 15px; margin-bottom: 1em; }
.deposit-price { display: block; font-size: 32px; font-weight: bold; }
.rule-list { list-style: none; padding: 0; margin: 0; }
.rule-list li { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; font-size: 18px; font-weight: bold; border-bottom: 2px solid #45c5bd; padding-bottom: 15px; letter-spacing: 0.08em; }
.rule-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.rule-left { width: 45%; display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.rule-arrow { font-size: 26px; width: 10%; text-align: center; }
.rule-right { width: 45%; text-align: left; line-height: 1.4; }
.rule-right strong { font-size: 26px; }
.text-teal { color: var(--teal-color); }
.icon-placeholder { display: inline-block; width: 20px; height: 20px; }
.circle-icon { width: 53px; height: 47px; background: url(../../common/images/clock_ico.jpg) 50% no-repeat; background-size: 43px auto; }
.cal-icon { width: 43px; height: 39px; background: url(../../common/images/calendar_ico.jpg) 50% no-repeat; }
.time-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
.time-list li { display: flex; justify-content: space-between; align-items: center; padding: 30px 10px; border-bottom: 2px solid var(--blue-color); font-weight: bold; }
.time-list li:last-child { border-bottom: none; }
.time-label { font-size: 20px; }
.time-label small { font-size: 16px; font-weight: normal; }
.time-price { font-size: 30px; }
.time-note { font-size: 16px; text-align: center; color: #555; margin: 0; }
.payment-title { text-align: center; font-size: 20px; margin: 10px 0 20px; font-weight: 700; letter-spacing: 0.08em; }
.payment-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.logo-img { height: 30px; object-fit: contain; background: #eee; min-width: 60px; color: transparent; }
.divider { border: none; border-top: 2px solid var(--blue-color); margin-bottom: 25px; }

/* --- Contact Section --- */
.contact-sectionwrap { display: flex; justify-content: space-between; align-items: center; }
.contact-left { text-align: center; flex: 1; }
.phone-number { font-size: 6rem; font-weight: bold; margin-bottom: 10px; letter-spacing: 0.05em; }
.icon-phone { font-size: 2rem; vertical-align: middle; }
.icon-phone img { width: 50px; height: 50px; }
.phone-hours { font-weight: bold; margin-bottom: 20px; }
.hours-label { background-color: #e0f0ff; color: var(--blue-color); padding: 3px 8px; border-radius: 4px; margin-right: 10px; }
.btn-mail { display: inline-block; background-color: var(--blue-color); color: #fff; text-decoration: none; padding: 21px 44px; border-radius: 53px; font-weight: bold; font-size: 18px; transition: opacity 0.2s; margin: .5em 0; }
.btn-mail:hover { opacity: 0.8; color: #fff; }
.contact-right { width: 360px; background-color: #f7f7f7; padding: 20px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; }
.ai-support-header { display: flex; align-items: center; gap: 10px; font-weight: bold; margin-bottom: 15px; line-height: 1.3; }
.icon-robot { font-size: 2rem; }
.qr-code-wrapper { background: #fff; padding: 10px; border-radius: 8px; }
.qr-img { width: 100px; height: 100px; display: block; background: #ccc; }
.contact-sectionwrap .contact-left .btn-primary { display: flex; justify-content: center; margin: 3em 0 0; }

/* --- Features Section --- */
.features { max-width: 90%; margin: 0 auto; padding: 60px 20px; }
.features_header { text-align: center; margin-bottom: 70px; }
.main-ttl { color: #1082c5; font-size: 28px; font-weight: bold; letter-spacing: 0.1em; margin-bottom: 15px; }
.sub-ttl { font-weight: bold; letter-spacing: 0.05em; margin-bottom: 40px; }
.description { line-height: 2; font-weight: 500; }
.features-section { width: 90%; display: flex; justify-content: space-between; gap: 40px; margin: 8em auto; }
.feature-item { width: 28.333%; display: flex; flex-direction: column; align-items: center; }
.feature-image { width: 100%; height: auto; margin-bottom: 30px; display: flex; justify-content: center; align-items: center; }
.feature-image img { max-width: 100%; height: auto; }
.feature-title { font-size: 20px; font-weight: bold; text-align: center; line-height: 1.6; margin-bottom: 25px; min-height: 50px; }
.feature-text { line-height: 2.2; text-align: left; font-weight: 600; margin-top: 2em; }
.divider { border: none; border-top: 1px solid #1082c5; margin: 0 10px 50px 10px; }
.partners-section { text-align: center; padding-bottom: 40px; }
.partners-title { color: #0080d9; font-size: 30px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 30px; }
.partner-logo { display: flex; justify-content: center; }
.partner-logo img { width: 180px; height: auto; }

/* --- Product Section --- */
.product-section { padding: 10.8rem 4em 7rem; margin-right: 6em; }
.product-container { max-width: 100%; margin: 0 auto; padding: 60px 40px; }
.product-header { display: flex; align-items: baseline; margin-bottom: 60px; gap: 40px; }
.product-header-title { font-size: 7rem; font-weight: 700; letter-spacing: 0.05em; color: #111; }
.product-header-subtitle { font-size: 18px; font-weight: bold; margin-left: 20px; }
.product-card { background-color: #ffffff; border-radius: 20px; padding: 50px; margin-bottom: 80px; position: relative; max-width: 100%; }
.card-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.product-card.even .card-inner { flex-direction: row-reverse; }
.image-box { flex: 0 0 45%; display: flex; justify-content: center; align-items: center; }
.image-box img { max-width: 100%; height: auto; }
.text-box { flex: 0 0 50%; }
.plain-title { font-size: 15px; font-weight: bold; margin-left: 8px; margin-bottom: 5px; }
.pill-title { background-color: #eaf4fa; color: #111; font-size: 20px; font-weight: bold; padding: 8px 20px; border-radius: 25px; display: inline-block; margin-bottom: 20px; }
.description { line-height: 2.2; font-weight: 600; color: #222; }
.decoration { position: absolute; top: 0; width: 100%; height: 100%; pointer-events: none; }
.number { position: absolute; top: -55px; font-size: 11rem; font-weight: bold; font-family: Arial, sans-serif; color: #1082c5; line-height: 1; }
.vertical-text { position: absolute; top: 30px; writing-mode: vertical-rl; font-size: 13px; font-weight: bold; color: #333; letter-spacing: 0.1em; font-family: Arial, sans-serif; }
.product-card.odd .number { right: 0; }
.product-card.odd .vertical-text { right: 20px; top: 80px; font-size: 2.5rem; }
.product-card.even .number { left: -90px; }
.product-card.even .vertical-text { left: -80px; top: 80px; font-size: 2.5rem; }

/* --- Company Section --- */
.company-section { max-width: 1200px; margin: 0 auto; padding: 60px 20px; display: flex; gap: 60px; }
.company-info { flex: 1; min-width: 0; }
.info-label { display: block; color: #3b82f6; font-size: 14px; font-weight: bold; margin-bottom: 8px; letter-spacing: 0.05em; }
.main-title { font-size: 56px; font-weight: bold; margin: 0 25px 60px 0; letter-spacing: 0.02em; }
.info-list { display: flex; flex-direction: column; }
.info-row { display: flex; padding: 24px 0; border-bottom: 1px solid #e5e5e5; }
.info-row:first-child { border-top: 1px solid #e5e5e5; }
.info-dt { width: 140px; font-weight: bold; flex-shrink: 0; font-size: 15px; }
.info-dd { flex: 1; margin: 0; font-size: 15px; line-height: 1.8; }
.board-member { display: flex; margin-bottom: 8px; }
.board-member:last-child { margin-bottom: 0; }
.member-title { width: 130px; display: inline-block; }
.member-name { display: inline-block; }
.company-map { flex: 1; display: flex; }
.company-map iframe { width: 100%; height: 100%; min-height: 450px; border: none; }

/* --- News Section --- */
.news-section { padding: 12.8rem 0; }
.news-card-01.js-inview { opacity: 0; transform: translate(0, 5rem); transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s, transform 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.2s; }
.news-card-01.js-inview.is-inview { opacity: 1; transform: translate(0, 0); }
.news-card-01__link { width: 100%; height: 100%; padding: 2rem 0; border-bottom: 1px solid #dcdcdc; display: flex; align-items: flex-start; gap: var(--s6); text-decoration: none; position: relative; }
.news-card-01__content { padding: 1em 6em 0em 0em; display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s4); flex: 1; }
.news-card-01__category { min-width: 11rem; padding: var(--s-2) var(--s2); border-radius: 10rem; background: #eaf7fe; display: inline-block; color: #0080d9; font-size: 1.3rem; text-align: center; }
.news-card-01__date { display: inline-block; color: #aaa; font-size: 1.4rem; }
.news-card-01__title { width: 100%; line-height: 1.6; }
.news-card-01 .icon-arrow-circle-02 { position: absolute; top: 50%; right: var(--s3); transform: translate(0, -50%); }


/* =====================================================
   7. SP (スマートフォン) メディアクエリ
===================================================== */
/* 中間サイズ調整（480px以下用の一部スタイル） */
@media (max-width: 480px) {
  .step-content { flex-direction: column; text-align: center; margin-left: 20px; }
  .image-area { height: auto; margin-bottom: 10px; }
  .step-circle { left: -15px; width: 50px; height: 50px; }
  .step-circle .step-number { font-size: 22px; }
}

/* タブレット〜スマホサイズ共通（max-width: 768px） */
@media (max-width: 768px) {
  .features-section { flex-direction: column; gap: 50px;margin: 4em auto; }
  .feature-item { width: 100%; padding: 0 20px; }
  .main-title { font-size: 22px; }
  .description br { display: none; }
  
  .product-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .product-header-subtitle { margin-left: 0; }
  .product-card { padding: 40px 20px 30px; margin-bottom: 60px; }
  .card-inner, .product-card.even .card-inner { flex-direction: column; }
  .text-box { margin-top: 20px; }
  .number { font-size: 60px; top: -40px; }
  .product-card.even .number { left: auto; right: 0; }
  
  .company-section { flex-direction: column; gap: 40px; padding: 40px 20px; }
  .main-title { font-size: 40px; margin-bottom: 40px; }
  .info-row { flex-direction: column; padding: 20px 0; gap: 10px; }
  .info-dt { width: 100%; color: #555; }
  .company-map iframe { min-height: 350px; }
}

/* === SP専用メイン調整 (max-width: 767px) === */
@media screen and (max-width: 767px) {
  
  /* --- 7-1. Base & Global --- */
  :root { font-size: 2.6666666667vw; }
  body { font-size: 1.3rem; }
  input, button, textarea, select { font-size: 1.3rem; }
  .l-center { padding-right: 2rem; padding-left: 2rem; }
  .l-cluster { gap: 1.2rem; }
  .l-grid-areas-01 { grid-template-areas: "header" "content" "btn"; grid-template-columns: 100%; grid-template-rows: auto auto 1fr; grid-gap: var(--s5) 0; }
  .l-grid-areas-02 { grid-template-areas: "header" "content" "btn"; grid-template-columns: 100%; grid-template-rows: auto auto 1fr; grid-gap: var(--s5) 0; }
  .l-grid-areas-02__cell-02 { padding: 0; place-self: center; }
  .l-offset-02 { width: 100%; margin-left: 0; }
  .bg-light-blue-left { border-radius: var(--s9) 0 0 0; }
  .bg-blue-right-small::after { width: 100%; border-radius: 0 var(--s9) 0 0; }
  .section-title { font-size: 5rem;padding:0 }
  .section-title__label { margin-bottom: 0; font-size: 1.2rem; }
  .section-lead { margin-left: 2rem; }
  .page-top { width: var(--s9); height: var(--s9); left: calc(100vw - 9.6rem); bottom: var(--s7); }
  .page-top__link { padding-top: 4.2rem; font-size: 0.9rem; }
  .page-top__link .icon-arrow-up { top: var(--s2); }

  /* 見出しの共通調整 */
  .title { font-size: 3.5rem; }
  .main-title { font-size: 3.5rem; margin-bottom: 20px; }

  /* --- 7-2. Components --- */
  .icon-arrow { width: var(--s4); height: var(--s4); }
  .icon-arrow::before { width: 1.2rem; height: 1.2rem; }
  .icon-arrow-up { width: var(--s4); height: var(--s4); }
  .icon-arrow-up::before { width: 0.8rem; height: 1.2rem; }
  .icon-arrow-circle-01 { width: var(--s6); height: var(--s6); }
  .icon-arrow-circle-02 { width: var(--s4); height: var(--s4); }
  .btn-primary__link { width: 24rem; min-height: 6rem; padding: var(--s2) var(--s2) var(--s2) var(--s4); }

  /* --- 7-3. Header & Gnavi --- */
  .header-area { height: 6rem; padding: 0 2rem; }
  .header-area.is-state-02 { height: 6rem; }
  .header-logo { width: 11rem; margin: 0; }
  .header-area.is-gnavi-open .header-logo-switch__img { transform: translateY(-100%); }
  
  .gnavi-btn { width: 50px; height: 50px; position: absolute; top: 50%; right: 1rem; transform: translate(0, -50%); background: #0080d9; border-radius: 60px; }
  .gnavi-btn__bar { width: 50%; height: 1px; background: #fff; position: absolute; top: 50%; left: 13px; transform: translate(0, -50%) rotate(0deg); transition: margin 0.4s 0.4s, transform 0.4s, opacity 0.4s; }
  .gnavi-btn__bar:nth-child(1) { margin-top: calc(var(--s1) * -0.8); }
  .gnavi-btn__bar:nth-child(3) { margin-top: .5em; }
  .is-gnavi-open .gnavi-btn__bar:nth-child(1) { margin-top: 0; transform: translate(0, -50%) rotate(30deg); transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s; }
  .is-gnavi-open .gnavi-btn__bar:nth-child(2) { opacity: 0; }
  .is-gnavi-open .gnavi-btn__bar:nth-child(3) { margin-top: 0; transform: translate(0, -50%) rotate(-30deg); transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s; }
  
  .gnavi-area { width: 100%; height: 100vh; background: #fff; visibility: hidden; opacity: 0; overflow-x: hidden; overflow-y: auto; position: fixed; top: 0; right: 0; z-index: -1; transform: translate(100%, 0); transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), visibility 0.6s, opacity 0.6s; }
  .is-gnavi-open .gnavi-area { visibility: visible; opacity: 1; transform: translate(0, 0); }
  .gnavi-main { padding: var(--s5);margin-top: 8em; }
  .gnavi-menu__item { border-bottom: 1px solid rgba(0, 128, 217, 0.15); font-size: 1.7rem; line-height: 1.6; }
  .gnavi-menu__link { padding: var(--s2) var(--s1); display: block; text-decoration: none; }
  .gnavi-primary-btn__link { width: 100%; min-height: 6rem; padding: var(--s2) var(--s2) var(--s2) var(--s4); background: #0080d9; border-radius: 10rem; display: flex; align-items: center; justify-content: space-between; color: #fff; font-size: 1.7rem; font-weight: 500; text-decoration: none;margin-top: 3em; }
  .gnavi-sns { display: flex; justify-content: flex-start; gap: 2rem; }
  .gnavi-sns__item { width: var(--s5); height: var(--s5); }
  .gnavi-catch { margin: var(--s10) 0 0; }
  .gnavi-catch__en { font-size: 2.4rem; font-weight: 700; }
  .gnavi-catch__en__em-01, .gnavi-catch__en__em-02 { font-size: 3.7rem; }
  .gnavi-catch__jp { font-size: 1.4rem; }
  .header-area.is-gnavi-open .gnavi-area.for-sp .gnavi-bottom .gnavi-sns {display: flex;justify-content: center;}
  .about-box .btn-primary {margin-top: var(--s7);display: flex; justify-content: center;}
  
  /* --- 7-4. Footer --- */
  .l-footer { grid-template-areas: "logo" "menu" "other" "catch"; grid-template-columns: 100%; grid-template-rows: auto auto auto 1fr; grid-gap: 0; }
  .footer-area { padding: var(--s8) 0 var(--s5); }
  .footer-logo { width: 19rem; margin: 0 auto var(--s4); text-align: center;}
  .footer-logo img {width: 180px;height: auto;}  
  .footer-menu-wrapper { flex-wrap: wrap; gap: var(--s5); justify-content: space-between; }
  .footer-menu-wrapper > * { width: calc((100% - var(--s5)) / 2); }
  .footer-menu__item { font-size: 1.1rem; }
  .footer-sns { justify-content: center; gap: 2rem; }
  .footer-catch { margin: var(--s10) 0 0; text-align: center; }
  .footer-catch__en { font-size: 2rem; } 
  .footer-catch__en br { display: none; } 
  .footer-catch__en__em-01, .footer-catch__en__em-02 { font-size: 2.5rem; } 
  .footer-catch__jp { font-size: 1.4rem; }
  .footer-other { margin-top: var(--s5); padding: 0; gap: var(--s3); }
  .footer-copyright{margin-top: 2em;}
  .page-top {width: var(--s5);height: var(--s5);left: calc(100vw - 6.6rem);bottom: var(--s7);}
  .icon-arrow-up::before {top: 18%;}

  /* --- 7-5. Catch / About --- */
  .catch-about-wrapper { height: 39.5rem; margin: -24.5rem 0 var(--s4); }
  .catch-about { bottom: var(--s3); }
  .catch-about__line-01, .catch-about__line-02 { height: 3.87rem; }
  .about-section__inner { padding: 4.5rem var(--s1) 8.8rem; }
  .about-line-01, .about-line-02 { width: 75rem; height: 31.7rem; }
  .about-box { width: 100%; }
  .about-text { width:90%;margin: 4em auto; }
  .about-swiper { margin-top: 8.8rem; gap: var(--s1); }
  .about-swiper__group { gap: var(--s1); }
  .about-slide--01 { width: 12.2rem; }
  .about-slide--02 { width: 12.6rem; margin-top: 4.6rem; }
  .about-slide--03 { width: 16.9rem; }
  .about-slide--04 { width: 13rem; margin-top: 2rem; }
  .about-slide--05 { width: 19.4rem; margin-top: 3.7rem; }

  /* --- 7-6. MV Section --- */
  .mv-section { padding: 380px 20px 40px; height: auto; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
  .mv-title { font-size: 2.6rem; margin: 0 0 15px 0; line-height: 1.6; }
  .mv-txt { font-size: 1.4rem; margin: 0 0 20px 0; }
  .mv-scroll { display: none; }
  .mv-section .pic { width: 100%; margin: 0 auto 20px; left: 0;display: block;text-align: center; }
  .mv-section .pic img { max-width: 100%; height: auto;margin: 0 auto;}
  .mv-section .footer-action { margin-top: 10px; text-align: center;display: inline-block; }
  .mv-section .btn-find { width: 100%; max-width: 320px; padding: 16px 20px; font-size: 1.6rem; }

  /* --- 7-7. Service Section --- */
  .service-section { margin-left: 0; padding: 40px 0px; }
  .service-container { padding: 40px 0px 0; }
  .badge-quick { font-size: 1.6rem; padding: 4px 12px; }
  .header-section { margin-bottom: 4em; }
  .step-card { margin: 4em 0 2em 2em; min-height: auto; }
  .step-circle { width: 60px; height: 60px; left: -5px; }
  .step-circle .step-number { font-size: 2.2rem; }
  .step-container{margin-bottom: 4.5em}
  .step-content { flex-direction: column; margin-left: 0; gap: 10px; text-align: center; }
  .step-content img {width: 94%; height: auto;}
  .image-area { width: 100%; margin: -4em 0 0 0; padding: 0; }
  .text-area { width: 100%; font-size: 1.4rem;line-height: 1.4;margin:1em 0 }
  .btn-find { width: 100%; padding: 18px 20px; font-size: 1.6rem; }
  
  /* --- 7-8. Pricing Section --- */
  .pricing-container { padding: 20px 0; }
  .formula-box { flex-direction: column; align-items: center; gap: 10px; padding: 20px 15px; }
  .formula-item, .formula-item-wrapper { width: 100%; }
  .formula-operator { padding-top: 0; transform: rotate(90deg); margin: 10px 0; font-size: 2rem; }
  .details-section { flex-direction: column; gap: 20px; }
  .rule-list li { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 1.5rem; }
  .rule-left, .rule-right { width: 100%;text-align:center; }
  .rule-arrow { width: 100%; transform: rotate(90deg); margin: -10px 0; }
  .deposit-price { font-size: 2.6rem; }
  .time-list li { flex-direction: column; align-items: flex-start; gap: 5px; padding: 20px 10px; }
  .time-price { font-size: 2.4rem; align-self: flex-end; }
  .payment-logos { gap: 10px; }
  .pricing-header{ margin:40px 0 20px }
  .rule-left {justify-content: center;}
  .logo-img { height: 25px; min-width: 50px;}
  .time-note {line-height: 1.5;}
  .btn-primary.tel_btn {margin: .5em 0 0 !important;}
  .phone-hours{margin: 1.5em 0}
  .divider{border-top: 2px solid #1082c5;margin: 15px 0px 30px 0px;}
  .contact-sectionwrap .contact-left .btn-primary {margin: 1em 0 0;}

  /* --- 7-9. Contact Section --- */
  .contact-sectionwrap { flex-direction: column; gap: 40px; }
  .contact-left { width: 100%; }
  .phone-number { font-size: 4rem; }
  .btn-mail { width: 100%; padding: 18px 10px; font-size: 1.6rem; text-align: center; }
  .contact-right { width: 100%; padding: 0; background: #fff; border: 2px solid #1082c5; border-radius: 8px; overflow: hidden; }
  .contact-right a { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; padding: 20px 40px 20px 20px; box-sizing: border-box; text-decoration: none; position: relative; }
  .contact-right a::after { content: ""; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 1.5rem; height: 1.5rem; background: url("../../common/images/arrow-01-blue-right.svg") no-repeat center/contain; }
  .main-ttl {line-height: 1.5;}
  .sub-ttl { margin-top: 2em;line-height: 1.5}

  /* --- 7-10. Product Section --- */
  .product-section { margin-right: 0; padding: 40px 0px 0px;line-height: 1.5;}
  .product-container { padding: 20px 20px; }
  .product-header-title { font-size: 3.5rem;margin-bottom:.5em }
  .product-card { padding: 30px 20px; margin-bottom: 80px; }
  .card-inner, .product-card.even .card-inner { flex-direction: column; gap: 20px; }
  .image-box, .text-box { flex: 0 0 100%; width: 100%; }
  .image-box img {width: 80%;height: auto;}
  .pill-title { font-size: 1.6rem; padding: 6px 16px; margin-bottom: 15px; }
  .number { font-size: 8rem; top: -54px; font-weight: 600; right: 7px !important}
  .product-card.odd .number { right: 10px; }
  .product-card.even .number { left: auto; right: 10px; }
  .product-card.odd .vertical-text,.product-card.even .vertical-text {right: 4px !important;top: 80px !important;font-size: 2rem !important;}

  /* --- 7-11. Company & News Section --- */
  .company-section { padding: 0;flex-direction: column-reverse; }
  .company-header { margin-bottom: var(--s5); }
  .company-info { width: 90%; margin: 0 auto;}
  .news-section { padding: var(--s10) 0 0; }
  .news-card-01-wrapper { border-top: 1px solid #dcdcdc; }
  .news-card-01__link { gap: var(--s2); }
  .news-card-01__thumb { width: 10rem; height: 5.5rem; }
  .news-card-01__content { padding: 0 var(--s5) 0 0; gap: var(--s1); }
  .news-card-01__category { min-width: var(--s9); font-size: 0.9rem; }
  .news-card-01__title { font-size: 1.1rem; }
}