
:root {
  --primary: #0B5CAB;
  --primaryDeep: #083A73;
  --accent: #2F80ED;
  --bgSoft: #F5F8FF;
  --border: #D9E4FF;
  --text: #0B1220;
  --sub: #4B5565;
  --radius: 12px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui;
  color: var(--text);
  line-height: 1.8
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0
}

.hero {
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bgSoft) 100%)
}

.kicker {
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 8px
}

h1 {
  font-size: 40px;
  line-height: 1.25;
  margin: 25px 0;
  text-align:center;
}
h1 > span{
  font-size: 24px;
}

h2 {
  font-size:36px;
  text-align: center;
}
h2 br {
  display: none;
}
@media screen and (width <= 768px) {
  h2 {
    margin: 12px 0;
    font-size: 24px;
  }
  h2 br {
    display: block;
  }
}
h3 {
  font-size: 24px;
  text-align: center;
}
@media screen and (width <= 768px) {
  h3 {
    margin: 12px 0;
    font-size: 20px;
  }
}

.lead {
  color: var(--sub);
  margin: 0 0 18px;
  font-size: 18px;
  text-align: center;
}
@media screen and (width <= 768px){
  .lead {
    text-align: left;
  }
  .lead br {
    display: none;
  }
}
.badge__group {
text-align: center;
color: var(--primary);
font-size: 24px;
margin:20px;
}
@media (max-width: 960px) {
  .badge__group {
    display: flex;
    flex-direction: column;
  }
}
.badge {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 999px;
  background: #E8F0FF;
  color: var(--primary);
  font-weight: 700;
  margin: 0 8px;
}
@media (max-width: 768px)  {
  .badge {
    font-size: 20px;
  }
}

.note {
  font-size: 12px;
  color: var(--sub);
  margin-top: 12px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700
}

.btn--primary {
  background: var(--primary);
  color: #fff
}

.btn--secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary)
}

.btn--invert {
  background: #fff;
  color: var(--primaryDeep)
}

.section {
  padding: 56px 0
}
@media screen and (width <= 768px){
  .section {
    padding: 28px 0;
  }
}

.section--soft {
  background: var(--bgSoft)
}

.section--soft .lead {
  color: var(--sub);
}

.section--soft strong {
  color: var(--primary);
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 20px
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr)
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(11, 92, 171, .10)
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px
}

.img {
  width: 100%;
}
.img img {
  width: 100%;
}

.alert {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px
}

.placeholder {
  height: 260px;
  border-radius: var(--radius);
  border: 1px dashed #B9C7E6;
  background: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub)
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center
}


@media (max-width: 960px) {

  .hero__inner,
  .two-col {
grid-template-columns: 1fr
  }

  .grid--4 {
grid-template-columns: 1fr 1fr
  }

  .grid--3 {
grid-template-columns: 1fr
  }

  h1 {
font-size: 30px
  }
.card p {
   margin: 0;
   color: var(--sub);
   text-align: center;
  }
}

@media (max-width: 560px) {
  .grid--4 {
grid-template-columns: 1fr
  }
}



.quick-service-flow {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .quick-service-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.flow-step {
  display: flex;
  align-items: center;
}

.flow-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 240px;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(11, 92, 171, .10);
}
@media (max-width: 1200px) {
  .flow-card {
    width: 100%;
    max-width: 516px;
  }
  .flow-card:last-child {
    width: calc(100% - 48px);
  }
}

.flow-card h3 {
  display: flex;
align-items: center;
justify-content: center;
height: 100%;
  font-size: 18px;
  margin: 0 0 8px;
}

.flow-card p {
  font-size: 18px;
  color: var(--sub);
  margin: 0;
}

.flow-arrow {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 12px;
}

/* SP対応 */
@media (max-width: 960px) {
  .quick-service-flow {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .flow-step {
flex-direction: column;
  }

  .flow-arrow {
transform: rotate(90deg);
margin: 8px 0;
  }

  .flow-card:last-child {
    width: 100%;
  }
}
  


