:root{
  --main:#0C7FCB;
  --main-dark:#0868A6;
  --accent:#FF8A5B;
  --accent-dark:#F06F3C;
  --line:#06C755;
  --bg:#F7FBFF;
  --bg-alt:#EEF6FC;
  --white:#FFFFFF;
  --text:#222222;
  --text-light:#5F6B76;
  --border:#D9E6F2;
  --border-strong:#BDD4E8;
  --shadow:0 12px 30px rgba(12,127,203,.10);
  --shadow-soft:0 8px 20px rgba(12,127,203,.08);
  --radius:18px;
  --radius-lg:24px;
  --radius-sm:12px;
  --container:1120px;
  --header-height:84px;
  --transition:.25s ease;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.75;
  -webkit-text-size-adjust:100%;
}

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

a{
  color:inherit;
  text-decoration:none;
}

ul,
ol{
  margin:0;
  padding:0;
}

li{
  list-style:none;
}

p,
h1,
h2,
h3,
h4,
dl,
dt,
dd{
  margin:0;
}

iframe{
  border:0;
}

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:#000;
  color:#fff;
  z-index:9999;
  border-radius:8px;
}

.topbar{
  background:linear-gradient(90deg, var(--main-dark), var(--main));
  color:#fff;
  font-size:13px;
}

.topbar-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
}

.topbar-inner p{
  font-weight:700;
}

.topbar-links{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.topbar-links a{
  opacity:.95;
}

.topbar-links a:hover{
  opacity:1;
  text-decoration:underline;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(217,230,242,.85);
}

.header-inner{
  min-height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.site-brand{
  display:flex;
  align-items:center;
  min-width:0;
}

.site-logo{
  height:52px;
  width:auto;
  object-fit:contain;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
}

.site-nav ul{
  display:flex;
  align-items:center;
  gap:22px;
}

.site-nav li a{
  font-size:15px;
  font-weight:700;
  color:var(--text);
  position:relative;
  transition:color var(--transition);
}

.site-nav li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background:var(--main);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--transition);
}

.site-nav li a:hover{
  color:var(--main);
}

.site-nav li a:hover::after{
  transform:scaleX(1);
}

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

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  padding:0;
  cursor:pointer;
  transition:background var(--transition), border-color var(--transition);
}

.menu-toggle:hover{
  background:var(--bg);
  border-color:var(--border-strong);
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px auto;
  border-radius:999px;
  transition:transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  letter-spacing:.01em;
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  border:1px solid transparent;
  white-space:nowrap;
}

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

.btn-main{
  background:var(--main);
  color:#fff;
  box-shadow:var(--shadow-soft);
}

.btn-main:hover{
  background:var(--main-dark);
}

.btn-sub{
  background:#fff;
  color:var(--main);
  border-color:var(--border-strong);
}

.btn-sub:hover{
  background:var(--bg);
  border-color:var(--main);
}

.btn-line{
  background:var(--line);
  color:#fff;
  box-shadow:0 10px 20px rgba(6,199,85,.18);
}

.btn-line:hover{
  background:#03b24b;
}

.hero{
  background:
    radial-gradient(circle at top right, rgba(255,138,91,.18), transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #f2f8fd 100%);
  padding:72px 0 56px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
}

.section-label{
  display:inline-block;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.12em;
  color:var(--main);
  margin-bottom:16px;
}

.hero-copy h1{
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.25;
  letter-spacing:.01em;
  margin-bottom:18px;
}

.hero-lead{
  font-size:16px;
  color:var(--text-light);
  max-width:60ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:28px;
}

.hero-points li{
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px 14px 14px 42px;
  font-weight:700;
  box-shadow:var(--shadow-soft);
}

.hero-points li::before{
  content:"";
  position:absolute;
  left:16px;
  top:18px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--main), var(--accent));
}

.hero-card{
  display:flex;
  justify-content:flex-end;
}

.hero-service-card{
  width:min(100%, 470px);
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:30px;
}

.hero-service-label{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(12,127,203,.09);
  color:var(--main);
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  margin-bottom:14px;
}

.hero-service-card h2{
  font-size:28px;
  line-height:1.4;
  margin-bottom:18px;
}

.hero-service-list{
  display:grid;
  gap:10px;
  margin-bottom:24px;
}

.hero-service-list li{
  position:relative;
  padding-left:22px;
  color:var(--text);
  font-weight:700;
}

.hero-service-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
}

.hero-info-list{
  display:grid;
  gap:14px;
  padding-top:20px;
  border-top:1px solid var(--border);
}

.hero-info-list div{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:12px;
}

.hero-info-list dt{
  color:var(--main);
  font-size:13px;
  font-weight:900;
}

.hero-info-list dd{
  font-size:14px;
  color:var(--text);
}

.news-section{
  padding:72px 0;
  background:#fff;
}

.section,
.section-alt{
  padding:84px 0;
}

.section-alt{
  background:var(--bg-alt);
}

.section-heading{
  margin-bottom:32px;
}

.section-heading h2{
  font-size:clamp(28px, 3vw, 38px);
  line-height:1.3;
  margin-bottom:10px;
}

.section-heading p:not(.section-label){
  color:var(--text-light);
  max-width:64ch;
}

.news-root{
  min-height:120px;
}

.news-loading,
.news-noscript,
.news-error{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
  color:var(--text-light);
  box-shadow:var(--shadow-soft);
}

.news-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-soft);
}

.news-list{
  display:grid;
  gap:16px;
}

.news-item{
  display:grid;
  grid-template-columns:130px auto 1fr;
  align-items:start;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid #e8eef5;
}

.news-item:first-child{
  padding-top:0;
}

.news-item:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.news-date{
  display:inline-block;
  font-size:14px;
  font-weight:900;
  color:var(--main);
  letter-spacing:.03em;
}

.news-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(12,127,203,.10);
  color:var(--main);
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
}

.news-badge-important{
  background:rgba(255,138,91,.16);
  color:#c85a31;
}

.news-content{
  min-width:0;
}

.news-title{
  font-size:18px;
  line-height:1.5;
  font-weight:900;
  margin-bottom:6px;
}

.news-text{
  color:var(--text-light);
  font-size:15px;
}

.news-note{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid #e8eef5;
  color:var(--text-light);
  font-size:13px;
}

.card-grid{
  display:grid;
  gap:20px;
}

.card-grid.three{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.card-grid.two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.info-card,
.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px;
  box-shadow:var(--shadow-soft);
  height:100%;
}

.info-card h3,
.service-card h3{
  font-size:21px;
  line-height:1.45;
  margin-bottom:12px;
}

.info-card p,
.service-card p{
  color:var(--text-light);
}

.service-card{
  position:relative;
}

.service-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(12,127,203,.10), rgba(255,138,91,.16));
  color:var(--main);
  border:1px solid rgba(12,127,203,.10);
  box-shadow:0 8px 18px rgba(12,127,203,.08);
}

.service-icon svg{
  width:28px;
  height:28px;
  stroke:currentColor;
}

.flow-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
  counter-reset:step;
}

.flow-list li{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow-soft);
  position:relative;
}

.flow-step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,138,91,.14);
  color:#c85a31;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  margin-bottom:14px;
}

.flow-list h3{
  font-size:21px;
  margin-bottom:10px;
}

.flow-list p{
  color:var(--text-light);
}

.access-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:stretch;
}

.access-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.store-data{
  display:grid;
  gap:14px;
}

.store-data div{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:12px;
  padding-bottom:14px;
  border-bottom:1px solid #edf2f7;
}

.store-data div:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.store-data dt{
  font-weight:900;
  font-size:14px;
  color:var(--main);
}

.store-data dd{
  color:var(--text);
  font-size:15px;
  word-break:break-word;
}

.access-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.map-wrap{
  min-height:100%;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--border);
  background:#fff;
}

.map-wrap iframe{
  width:100%;
  height:100%;
  min-height:460px;
  display:block;
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:0;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:20px 54px 20px 22px;
  font-weight:800;
  position:relative;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(12,127,203,.10);
  color:var(--main);
  display:grid;
  place-items:center;
  font-size:18px;
  font-weight:900;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-item p{
  padding:0 22px 20px;
  color:var(--text-light);
}

.cta-section{
  padding:0 0 84px;
  background:linear-gradient(180deg, transparent 0%, transparent 20%, var(--white) 20%);
}

.cta-box{
  background:linear-gradient(135deg, var(--main), #1898e9);
  color:#fff;
  border-radius:28px;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 18px 36px rgba(12,127,203,.20);
}

.cta-box .section-label{
  color:#dff1ff;
}

.cta-box h2{
  font-size:32px;
  line-height:1.3;
  margin-bottom:8px;
}

.cta-box p:not(.section-label){
  color:rgba(255,255,255,.88);
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.cta-box .btn-main{
  background:#fff;
  color:var(--main);
}

.cta-box .btn-main:hover{
  background:#f0f8ff;
}

.cta-box .btn-line{
  box-shadow:none;
}

.site-footer{
  background:#0d2c45;
  color:#fff;
  padding:64px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr;
  gap:32px;
}

.footer-brand-sub{
  margin-bottom:4px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  color:rgba(255,255,255,.72);
}

.footer-brand-name{
  font-size:30px;
  line-height:1.25;
  margin-bottom:6px;
}

.footer-brand-en{
  font-size:13px;
  font-weight:800;
  letter-spacing:.1em;
  color:rgba(255,255,255,.72);
  margin-bottom:16px;
}

.footer-text{
  color:rgba(255,255,255,.82);
  max-width:38ch;
}

.footer-nav h3,
.footer-contact h3{
  font-size:18px;
  margin-bottom:14px;
}

.footer-nav ul,
.footer-contact ul{
  display:grid;
  gap:10px;
}

.footer-nav a,
.footer-contact a{
  color:rgba(255,255,255,.9);
}

.footer-nav a:hover,
.footer-contact a:hover{
  text-decoration:underline;
}

.footer-contact li{
  color:rgba(255,255,255,.86);
}

.footer-bottom{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.14);
  text-align:center;
}

.footer-bottom p{
  color:rgba(255,255,255,.68);
  font-size:13px;
}

.mobile-fixed-actions{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:999;
  display:none;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}

.mobile-fixed-actions a{
  min-height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:900;
  color:#fff;
  box-shadow:0 12px 24px rgba(0,0,0,.18);
}

.mobile-fixed-actions .call{
  background:var(--main);
}

.mobile-fixed-actions .line{
  background:var(--line);
}

.mobile-fixed-actions .access{
  background:var(--accent);
}

@media (max-width: 1100px){
  .site-nav{
    gap:18px;
  }

  .site-nav ul{
    gap:16px;
  }

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

  .hero-card{
    justify-content:flex-start;
  }

  .card-grid.three,
  .flow-list{
    grid-template-columns:1fr 1fr;
  }

  .access-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .map-wrap iframe{
    min-height:380px;
  }
}

@media (max-width: 860px){
  :root{
    --header-height:74px;
  }

  .topbar-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .header-inner{
    min-height:74px;
  }

  .site-logo{
    height:44px;
  }

  .menu-toggle{
    display:block;
  }

  .site-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    box-shadow:0 14px 30px rgba(9,32,58,.08);
    padding:14px 16px 18px;
  }

  .site-nav.is-open{
    display:flex;
  }

  .site-nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:0;
  }

  .site-nav li{
    width:100%;
    border-bottom:1px solid #edf2f7;
  }

  .site-nav li a{
    display:block;
    width:100%;
    padding:14px 0;
  }

  .site-nav li a::after{
    display:none;
  }

  .nav-actions{
    margin-top:16px;
    flex-direction:column;
    align-items:stretch;
  }

  .nav-actions .btn{
    width:100%;
  }

  .hero{
    padding:52px 0 48px;
  }

  .hero-copy h1{
    font-size:32px;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-service-card{
    padding:24px;
  }

  .hero-service-card h2{
    font-size:24px;
  }

  .news-item{
    grid-template-columns:1fr;
    gap:10px;
  }

  .news-badge{
    width:max-content;
  }

  .card-grid.three,
  .card-grid.two,
  .flow-list{
    grid-template-columns:1fr;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-actions{
    width:100%;
  }

  .cta-actions .btn{
    flex:1 1 auto;
  }
}

@media (max-width: 640px){
  body{
    padding-bottom:80px;
  }

  .container{
    width:min(100% - 24px, var(--container));
  }

  .topbar{
    font-size:12px;
  }

  .hero-copy h1{
    font-size:28px;
  }

  .hero-lead{
    font-size:15px;
  }

  .section,
  .section-alt,
  .news-section{
    padding:64px 0;
  }

  .section-heading{
    margin-bottom:24px;
  }

  .section-heading h2{
    font-size:26px;
  }

  .info-card,
  .service-card,
  .flow-list li,
  .access-card,
  .news-wrap{
    padding:20px;
  }

  .hero-service-card{
    padding:20px;
    border-radius:20px;
  }

  .hero-info-list div,
  .store-data div{
    grid-template-columns:1fr;
    gap:6px;
  }

  .cta-box{
    padding:24px 20px;
    border-radius:24px;
  }

  .cta-box h2{
    font-size:26px;
  }

  .footer-grid{
    gap:24px;
  }

  .mobile-fixed-actions{
    display:grid;
  }
}
