@charset "UTF-8";

/* =========================
  base
========================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "YuGothic",
    sans-serif;
  color:#333;
  line-height:1.8;
  background:#fff;
}

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

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

.inner{
  width:min(1120px,90%);
  margin:0 auto;
}

.section{
  padding:100px 0;
}

.section-en{
  margin:0 0 10px;
  color:#1d9bd7;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-align:center;
}

.section h2{
  margin:0 0 34px;
  color:#263238;
  font-size:clamp(28px,4vw,44px);
  line-height:1.45;
  text-align:center;
}


/* =========================
  header
========================= */

.site-header{
  position:fixed;
  top:0;
  left:0;
  z-index:100;
  width:100%;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.header-inner{
  width:min(1200px,94%);
  height:74px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

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

.header-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:700;
}

.header-nav a{
  transition:.25s ease;
}

.header-nav a:hover{
  opacity:.7;
}

.header-nav .nav-reserve{
  padding:10px 22px;
  border-radius:999px;
  background:#ffe22d;
  color:#222;
}



/* =========================
  footer
========================= */

.site-footer{
  padding:48px 0 88px;
  background:#263238;
  color:#fff;
}

.footer-inner{
  width:min(1120px,90%);
  margin:0 auto;
}

.footer-logo{
  margin:0 0 10px;
  font-size:22px;
  font-weight:900;
}

.footer-address{
  margin:0;
  font-size:14px;
  opacity:.8;
}
.footer-site-link {
    margin-top: 20px;
}
.footer-site-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    opacity: .85;
    transition: .3s ease;
}
.footer-site-link a::after {
    content: "→";
}

/* =========================
  fixed cta
========================= */

.fixed-cta{
  display:none;
}


/* =========================
  responsive
========================= */

@media (max-width:768px){

  body{
    padding-bottom:58px;
  }

  .header-inner{
    height:62px;
  }

  .site-logo img{
    height:34px;
  }

  .header-nav a:not(.nav-reserve){
    display:none;
  }

  .header-nav .nav-reserve{
    padding:8px 16px;
    font-size:13px;
  }

  .section{
    padding:72px 0;
  }

  .section-en,
  .section h2{
    text-align:center;
  }

  .fixed-cta{
    position:fixed;
    left:0;
    bottom:0;
    z-index:200;
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .fixed-cta a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:58px;
    color:#222;
    font-weight:900;
    background:#ffe22d;
  }

  .fixed-cta a:first-child{
    background:#263238;
    color:#fff;
  }

}


/* =====================================================
01 Hero
===================================================== */

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:#dff5ff;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.86) 36%,
      rgba(255,255,255,.35) 52%,
      rgba(255,255,255,.05) 75%
    ),
    url("images/hero-pc.webp") center center / cover no-repeat;
}
.hero-title{
  margin:0 0 24px;
    color:#2e4a62;
    text-shadow:0 2px 10px rgba(255,255,255,.45);
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:clamp(58px,6vw,76px);
  line-height:1.45;
  font-weight:700;
  letter-spacing:.06em;

}

.hero-title span{
  display:block;
  opacity:0;
  transform:translateY(22px);
  animation:heroTitleFade 1.1s ease-out forwards;
}
.hero-title span:nth-child(1){
  animation-delay:.2s;
}

.hero-title span:nth-child(2){
  animation-delay:.55s;
  letter-spacing:.09em;
}

.hero-inner{
  position:relative;
  z-index:2;
  width:min(1180px,90%);
  min-height:100vh;
  margin:0 auto;
  display:flex;
  align-items:center;
  padding:90px 0 60px;
}

.hero-copy{
  max-width:620px;
}

.hero-label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 22px;
  padding:8px 18px;
  border-radius:999px;
  background:#ffe44d;
  color:#222;
  font-size:15px;
  font-weight:900;
  letter-spacing:.08em;
    opacity:0;
    transform:translateY(20px);
    animation:heroFade .8s ease .2s forwards;
  }


.hero-lead{
  margin:0 0 30px;
  color:#222;
  font-size:clamp(16px,1.8vw,20px);
  line-height:2;
  font-weight:700;
    opacity:0;
    transform:translateY(20px);
    animation:heroFade .8s ease 1.1s forwards;
}

.hero-info{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 34px;
}

.hero-info span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 15px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  color:#222;
  font-size:14px;
  font-weight:800;
  color:rgba(35,35,35,.92);
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  opacity:0;
  transform:translateY(16px);
}
.hero-info span:nth-child(1){
    animation:heroFade .7s ease 1.5s forwards;
}
.hero-info span:nth-child(2){
    animation:heroFade .7s ease 1.7s forwards;
}
.hero-info span:nth-child(3){
    animation:heroFade .7s ease 1.9s forwards;
}
.hero-cta{
  opacity:0;
  transform:translateY(20px);
  animation:heroFade .8s ease 2.3s forwards;
}
.hero-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:300px;
  padding:17px 34px;
  border-radius:999px;
  background:#ffe44d;
  color:#111;
  font-size:18px;
  font-weight:900;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  transition:.25s ease;
   animation:heroButtonFloat 3s ease-in-out 3.2s infinite;

}
.hero-cta a:hover{
  transform:translateY(-3px);
  opacity:.9;
}




/* SP */
@media (max-width:768px){

  .hero{
    min-height:92vh;
  }
  .hero-title{
    font-size:44px;
    line-height:1.45;
  }
  .hero-bg{
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.82) 42%,
        rgba(255,255,255,.38) 70%,
        rgba(255,255,255,.08) 100%
      ),
      url("images/hero-sp.webp") center center / cover no-repeat;
  }

  .hero-inner{
    width:90%;
    min-height:100vh;
    align-items:flex-start;
    padding:100px 0 40px;
  }

  .hero-copy{
    max-width:100%;
  }

  .hero-label{
    margin-bottom:18px;
    font-size:13px;
  }

  .hero h1{
    font-size:44px;
    line-height:1.22;
  }

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

  .hero-info{
    gap:8px;
    margin-bottom:26px;
  }

  .hero-info span{
    font-size:12px;
    padding:6px 12px;
  }

  .hero-cta a{
    width:100%;
    min-width:auto;
    font-size:16px;
  }
}
@keyframes heroTitleFade{
  0%{
    opacity:0;
    transform:translateY(22px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}
@keyframes heroFade{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes heroButtonFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-4px);
  }
}

/*=========================
Hero Event
=========================*/

.hero-event{

    margin:36px 0 34px;

    padding:20px 28px;

    background:#fff;

    border-radius:14px;

    box-shadow:0 12px 28px rgba(0,0,0,.08);

    text-align:center;

}

.hero-event-label{

    margin:0 0 10px;

    color:#2a9dcc;

    font-size:12px;

    font-weight:700;

    letter-spacing:.25em;

}

.hero-event-date{

    margin:0;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        serif;

    font-size:38px;

    font-weight:700;

    color:#2e4a62;

    line-height:1.2;

    white-space:nowrap;

}

.hero-event-date span{

    margin-left:4px;

    font-size:.45em;

    color:#2a9dcc;

    font-weight:700;

    letter-spacing:.08em;

    vertical-align:middle;

}

.hero-event-date em{

    margin:0 -5px;
    
    color:#9fc8dd;

    font-style:normal;

}
@media(max-width:768px){

.hero-event{

    padding:16px 18px;

    margin:26px 0;

}

.hero-event-date{

    font-size:28px;

}

.hero-event-date em{

    margin:0 8px;

}

}
/*=========================
Hero Event Animation
=========================*/

.hero-event{

    opacity:0;

    transform:translateY(18px);

    animation:
        fadeUpEvent .9s ease forwards;

    animation-delay:1.2s;

}

@keyframes fadeUpEvent{

    from{

        opacity:0;

        transform:
            translateY(18px);

    }

    to{

        opacity:1;

        transform:
            translateY(0);

    }

}


/* =====================================================
02 Problem
===================================================== */

.problem{
  padding:100px 0;
  background:#fff;
}

.problem-lead{
  max-width:720px;
  margin:0 auto 58px;
  text-align:center;
  color:#555;
  font-size:1.45em;
  line-height:2;
}

.problem-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
  margin-bottom:58px;
}

.problem-item{
  text-align:center;
}

.problem-icon{
  width:120px;
  height:120px;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#eef8fc;
}
.problem-icon img{
    width:74px;
    height:74px;
    display:block;
}
.problem-item:hover .problem-icon{
    background:#dff2fb;
    transform:translateY(-3px);
}

.problem-icon svg{
  width:62px;
  height:62px;
  fill:none;
  stroke:#2a9dcc;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.problem-item h3{
  margin:0 0 10px;
  color:#374869;
  font-size:1.35em;
  line-height:1.5;
  font-weight:800;
}

.problem-item p{
  margin:0;
  color:#666;
  font-size:1.1em;
  line-height:1.8;
}

.problem-message{
  max-width:860px;
  margin:0 auto;
  padding:54px 40px;
  border:0;
  border-radius:30px;
  background:linear-gradient(135deg,#f4fbff 0%,#ffffff 100%);
  text-align:center;
  box-shadow:0 18px 44px rgba(42,157,204,.12);
}

.problem-message p{
  margin:0;
  color:#333;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:24px;
  line-height:1.9;
  letter-spacing:.04em;
}


.problem-message-icon{
  width:70px;
  height:70px;
  margin:0 auto 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e8f7fd;
}
.problem-message-icon span{
  width:30px;
  height:30px;
  display:block;
  border-radius:50%;
  background:#2a9dcc;
  opacity:.18;
  box-shadow:
    14px 0 0 rgba(42,157,204,.28),
    28px 0 0 rgba(42,157,204,.14);
}

.problem-copy{
  margin:0 0 18px;
  color:#2e4a62;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:clamp(28px,3.6vw,44px);
  line-height:1.65;
  letter-spacing:.06em;
}

.problem-copy strong{
  color:#2a9dcc;
  font-weight:700;
}
.problem-text{
  margin:0 0 26px;
  color:#444;
  font-size:17px;
  line-height:2;
  font-weight:700;
}
.problem-message-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:280px;
  padding:15px 28px;
  border-radius:999px;
  background:#ffe44d;
  color:#111;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,0,0,.12);
  transition:.25s ease;
}

.problem-message-link:hover{
  transform:translateY(-3px);
  opacity:.9;
}
.problem .section-en{
  text-align:center;
}
.problem h2{
  margin:0 0 24px;
  text-align:center;
  color:#2e4a62;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:clamp(1.75em,4vw,48px);
  line-height:1.55;
  font-weight:700;
  letter-spacing:.06em;
}
.problem h2 span{
  display:inline-block;
  padding:0 .12em;
  background:linear-gradient(transparent 68%, rgba(42,157,204,.18) 68%);
}
/* 共通CTAボックス */

.lp-cta-box{
  position:relative;
  max-width:900px;
  margin:0 auto;
  padding:58px 50px;
  border:0;
  border-radius:32px;
  background:
    radial-gradient(circle at 12% 12%, rgba(42,157,204,.12) 0%, transparent 34%),
    linear-gradient(135deg,#ffffff 0%,#f5fbff 100%);
  text-align:center;
  box-shadow:0 18px 44px rgba(42,157,204,.12);
  overflow:hidden;
}

.lp-cta-label{
  display:inline-block;
  margin:0 0 22px;
  padding-bottom:10px;
  border-bottom:2px solid #d9edf7;
  color:#2a9dcc;
  font-size:12px;
  font-weight:800;
  letter-spacing:.24em;
}

.lp-cta-title{
  margin:0 0 24px;
  color:#2e4a62;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:clamp(28px,3.4vw,42px);
  line-height:1.7;
  letter-spacing:.05em;
  font-weight:700;
}

.lp-cta-title span{
  color:#2a9dcc;
}

.lp-cta-text{
  margin:0 0 34px;
  color:#444;
  font-size:17px;
  line-height:2;
  font-weight:700;
}

.lp-cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:260px;
  padding:16px 34px;
  border-radius:999px;
  background:#ffe44d;
  color:#111;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,0,0,.13);
  transition:.25s ease;
  margin-top: 1em;
}

.lp-cta-button:hover{
  transform:translateY(-3px);
  opacity:.9;
}



/* SP */
@media(max-width:768px){

  .problem{
    padding:76px 0;
  }

  .problem-lead{
    margin-bottom:38px;
    text-align:left;
    font-size:1.1em;
  }

  .problem-list{
    grid-template-columns:1fr;
    gap:18px;
    margin-bottom:38px;
  }


  .problem-item{
    display:block;
    padding:24px 20px;
    border:1px solid #e1f0f7;
    border-radius:20px;
    background:#fff;
    text-align:center;
  }

  .problem-item:first-child{
    border-top:1px solid #e1f0f7;
  }

  .problem-icon{
    width:160px;
    height:160px;
    margin:0 auto 16px;
  }

    .problem-icon img{
    width:90px;
    height:90px;
  }

  .problem-icon svg{
    width:76px;
    height:76px;
  }

  .problem h2{
  }
  .problem-item h3{
    margin-bottom:4px;
    font-size:18px;
  }
    .problem-item h3{
    margin:0 0 8px;
    font-size:18px;
    line-height:1.5;
    text-align:center;
  }

  .problem-item p{
    margin:0;
    font-size:14px;
    line-height:1.8;
    text-align:center;
  }

  .problem-message{
    padding:36px 22px;
    border-radius:24px;
    text-align:left;
  }
    .problem-message-icon{
    margin:0 0 22px;
  }

  .problem-copy{
    font-size:28px;
  }

  .problem-text{
    font-size:15px;
  }
    .problem-message-link{
    width:100%;
    min-width:auto;
  }


  .lp-cta-box{
    padding:38px 24px;
    border-radius:24px;
    text-align:left;
  }

.lp-cta-label{
 font-size: 0.95em !important;
}

.lp-cta-title{

    font-size:24px;
    line-height:1.7;

}

.lp-cta-text{

    font-size:15px!important;
    line-height:2!important;

}
.lp-cta-title span{
      font-size:1em;
}

  .lp-cta-button{
    width:100%;
    min-width:auto;
  }
.nowrap{

    white-space:nowrap;

}

}

/*====================================================
03 Comfort
====================================================*/

.comfort-heading{
    margin:0 0 28px;
    text-align:center;
    color:#2e4a62;
    font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
    font-size:clamp(28px,4vw,52px);
    line-height:1.6;
    letter-spacing:.06em;
}

.comfort-heading span{
    display:inline-block;
    color:#2a9dcc;
    background:linear-gradient(
        transparent 70%,
        rgba(42,157,204,.15) 70%
    );
}

.comfort-cta-label{
    display:inline-block;
    margin-bottom:20px;
    padding-bottom:10px;
    font-weight:700;
    font-size:13px;
    letter-spacing:.28em;
    color:#5ea9d6;
    border-bottom:2px solid #d9edf7;
}

.comfort-lead{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    color:#555;
    font-size:18px;
    line-height:2;
}
.comfort{
  padding:110px 0;
  background:#f4fbff;
}

.comfort-lead{
  max-width:760px;
  margin:0 auto 64px;
  text-align:center;
  color:#555;
  font-size:1.4em;
  line-height:2;
}

.comfort-stories{
  display:grid;
  gap:56px;
}

.comfort-story{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:48px;
  align-items:center;
}

.comfort-story:nth-child(even){
  grid-template-columns:.92fr 1.08fr;
}

.comfort-story:nth-child(even) .comfort-story-photo{
  order:2;
}

.comfort-story:nth-child(even) .comfort-story-text{
  order:1;
}

.comfort-story-photo{
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 18px 42px rgba(0,0,0,.10);
}

.comfort-story-photo img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  object-position:center center;
  transition:.6s ease;
}

.comfort-story:hover .comfort-story-photo img{
  transform:scale(1.04);
}

.comfort-story-text{
  padding:12px 0;
}

.comfort-story-text span{
  display:block;
  margin:0 0 12px;
  color:#2a9dcc;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:42px;
  line-height:1;
  font-weight:700;
}

.comfort-story-text h3{
  margin:0 0 18px;
  color:#374869;
  font-size:clamp(25px,3vw,36px);
  line-height:1.45;
  font-weight:800;
}

.comfort-story-text p{
  margin:0;
  color:#555;
  font-size:16px;
  line-height:2;
}

.comfort-cta{
  position:relative;
  max-width:880px;
  margin:74px auto 0;
  padding:52px 44px;
  overflow:hidden;
  border-radius:30px;
  background:
    radial-gradient(circle at 18% 30%, rgba(42,157,204,.16) 0%, transparent 32%),
    linear-gradient(135deg,#ffffff 0%,#f2fbff 100%);
  text-align:center;
  box-shadow:0 18px 44px rgba(42,157,204,.14);
}
.comfort-cta::before,
.comfort-cta::after{
  content:"";
  position:absolute;
  border-radius:999px;
  background:rgba(42,157,204,.09);
  pointer-events:none;
}
.comfort-cta::before{
  width:180px;
  height:180px;
  right:-54px;
  top:-58px;
}

.comfort-cta::after{
  width:120px;
  height:120px;
  left:-36px;
  bottom:-42px;
}
.comfort-cta-icon{
  width:64px;
  height:64px;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e8f7fd;
}

.comfort-cta-icon span{
  width:34px;
  height:12px;
  display:block;
  border-top:3px solid #2a9dcc;
  border-bottom:3px solid #2a9dcc;
  position:relative;
}

.comfort-cta-icon span::after{
  content:"";
  position:absolute;
  left:8px;
  top:8px;
  width:24px;
  border-top:3px solid #2a9dcc;
}


.comfort-cta a{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:340px;
  padding:16px 30px;
  border-radius:999px;
  background:#ffe44d;
  color:#111;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,0,0,.14);
  transition:.25s ease;
}

.comfort-cta a:hover{
  transform:translateY(-3px);
  opacity:.9;
}
.comfort-cta p{
  margin:0 0 20px;
  color:#222;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:26px;
  line-height:1.6;
  letter-spacing:.04em;
}

.comfort-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:340px;
  padding:16px 30px;
  border-radius:999px;
  background:#ffe44d;
  color:#111;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,0,0,.14);
  transition:.25s ease;
}

.comfort-cta a:hover{
  transform:translateY(-3px);
  opacity:.9;
}

/* SP */
@media(max-width:768px){

  .comfort{
    padding:78px 0;
  }

  .comfort-lead{
    margin-bottom:42px;
    text-align:left;
    font-size:1.0em;
  }

  .comfort-stories{
    gap:42px;
  }

  .comfort-story,
  .comfort-story:nth-child(even){
    grid-template-columns:1fr;
    gap:22px;
  }

  .comfort-story:nth-child(even) .comfort-story-photo,
  .comfort-story:nth-child(even) .comfort-story-text{
    order:initial;
  }

  .comfort-story-photo{
    border-radius:22px;
  }

  .comfort-story-photo img{
    aspect-ratio:4 / 3;
  }

  .comfort-story-text{
    padding:0;
  }

  .comfort-story-text span{
    font-size:30px;
    margin-bottom:8px;
  }

  .comfort-story-text h3{
    font-size:23px;
    margin-bottom:10px;
  }

  .comfort-story-text p{
    font-size:14px;
    line-height:1.9;
  }

  .comfort-cta{
    margin-top:48px;
    padding:28px 20px;
    text-align:left;
  }

  .comfort-cta p{
    font-size:22px;
  }

  .comfort-cta{
    margin-top:48px;
    padding:36px 22px;
    text-align:left;
  }

  .comfort-cta-icon{
    margin:0 0 20px;
  }

  .comfort-cta a{
    width:100%;
    min-width:auto;
    text-align:center;
  }
  .comfort-heading span{
      display:inline;
      color:#2a9dcc;
      background:
          linear-gradient(
              transparent 82%,
              rgba(42,157,204,.16) 82%
          );

  }


}

/* =====================================================
04 Design
===================================================== */

.design{
  padding:110px 0;
  background:#fff;
}
.design-heading{
    margin:0 0 28px;
    text-align:center;
    color:#2e4a62;
    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size:clamp(28px,4vw,52px);
    line-height:1.6;
    letter-spacing:.06em;
}
.design-heading span{
    display:inline-block;
    color:#2a9dcc;
    background:
          linear-gradient(
            transparent 72%,
            rgba(42,157,204,.15) 72%
        );
}
.design-lead{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    color:#555;
    font-size:18px;
    line-height:2;
}

.design-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.design-card{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  box-shadow:0 16px 38px rgba(0,0,0,.08);
}

.design-photo{
  overflow:hidden;
}

.design-photo img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  transition:.6s ease;
}

.design-card:hover .design-photo img{
  transform:scale(1.04);
}

.design-body{
  padding:28px 26px 32px;
}

.design-body span{
  display:block;
  margin:0 0 10px;
  color:#2a9dcc;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}

.design-body h3{
  margin:0 0 12px;
  color:#222;
  font-size:24px;
  line-height:1.45;
}

.design-body p{
  margin:0;
  color:#555;
  font-size:15px;
  line-height:1.9;
}
.design-message{
  max-width:860px;
  margin:70px auto 0;
  padding:52px 40px;
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff 0%,#f5fbff 100%);
  text-align:center;
  box-shadow:0 18px 42px rgba(42,157,204,.12);
}

.design-message-copy{
  margin:0 0 20px;
  color:#2e4a62;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:clamp(24px,3.4vw,42px);
  line-height:1.7;
  letter-spacing:.05em;
}
.design-message-copy strong{
  color:#2a9dcc;
  font-weight:700;
}
.design-message-text{
  margin:0;
  color:#555;
  font-size:18px;
  line-height:2;
}



/* SP */
@media(max-width:768px){

  .design{
    padding:78px 0;
  }
  .design-message{
    margin-top:48px;
    padding:38px 24px;
  }
  .design-message-copy{
  }
  .design-message-text{
    font-size:1.1em;
    line-height:1.9;
  }
  
  .design-heading{
    line-height:1.6;
  }

  .design-lead{
      font-size:1.0em;
      line-height:1.9;
      margin-bottom:48px;
  }

  .design-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .design-card{
    border-radius:22px;
  }

  .design-body{
    padding:24px 20px 28px;
  }

  .design-body h3{
    font-size:21px;
  }

  .design-body p{
    font-size:14px;
  }
  .design-heading span{
    display:inline;
    background: linear-gradient(transparent 82%, rgba(42, 157, 204, .16) 82%);
    color:#2a9dcc;
  }


}

/* =====================================================
05 Performance
===================================================== */

.performance{
  padding:110px 0;
  background:#f8fbfd;
}
.performance-heading{
    margin:0 0 28px;
    text-align:center;
    color:#2e4a62;
    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size:clamp(28px,4vw,52px);
    line-height:1.6;
    letter-spacing:.06em;
}
.performance-heading span{
    display:inline-block;
    color:#2a9dcc;
    background:
        linear-gradient(
            transparent 72%,
            rgba(42,157,204,.15) 72%
        );
}

.performance-lead{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    color:#555;
    font-size:18px;
    line-height:2;
}

.performance-visual{
  max-width:1040px;
  margin:0 auto 42px;
  overflow:hidden;
  border-radius:30px;
  box-shadow:0 18px 42px rgba(0,0,0,.10);
}

.performance-visual img{
  width:100%;
  aspect-ratio:16 / 8;
  object-fit:cover;
}

.performance-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.performance-card{
  padding:30px 26px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.performance-card span{
  display:block;
  margin:0 0 10px;
  color:#2a9dcc;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:30px;
  line-height:1;
  font-weight:700;
}

.performance-card h3{
  margin:0 0 10px;
  color:#222;
  font-size:21px;
  line-height:1.5;
}

.performance-card p{
  margin:0;
  color:#555;
  font-size:15px;
  line-height:1.9;
}

/* SP */
@media(max-width:768px){
  .performance{
    padding:78px 0;
  }
  .performance-heading{
    line-height:1.6;
  }
  .performance-lead{
    margin-bottom:48px;
    font-size:15px;
    line-height:1.9;
  }
  .performance-visual{
    margin-bottom:28px;
    border-radius:22px;
  }

  .performance-visual img{
    aspect-ratio:4 / 3;
  }

  .performance-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .performance-card{
    padding:24px 20px;
  }

  .performance-card span{
    font-size:26px;
  }

  .performance-card h3{
    font-size:20px;
  }

  .performance-card p{
    font-size:14px;
  }
  .performance-heading span{
    display:inline;
    background:
        linear-gradient(
            transparent 72%,
            rgba(42,157,204,.15) 72%
        );
    color:#2a9dcc;
    }
}

/* =====================================================
06 System
===================================================== */

.system{
  padding:110px 0;
  background:#fff;
}

.system-heading{
    margin:0 0 28px;
    text-align:center;
    color:#2e4a62;
    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
    font-size:clamp(28px,4vw,52px);
    line-height:1.6;
    letter-spacing:.06em;
}

.system-heading span{
    display:inline-block;
    color:#2a9dcc;
    background:
        linear-gradient(
            transparent 72%,
            rgba(42,157,204,.15) 72%
        );
}

.system-lead{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    color:#555;
    font-size:18px;
    line-height:2;
}

.system-layout{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:360px 1fr;
  gap:42px;
  align-items:center;
}

.system-photo{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  box-shadow:0 16px 38px rgba(0,0,0,.10);
}

.system-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.16);
  pointer-events:none;
}

.system-photo img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  object-position:center center;
}

.system-photo-badge{
  position:absolute;
  right:18px;
  bottom:18px;
  z-index:2;
  width:116px;
  height:116px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#ffe44d;
  color:#111;
  font-size:15px;
  font-weight:900;
  line-height:1.5;
  text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,.20);
}

.system-box{
  padding:42px 44px;
  border-radius:28px;
  background:#f4fbff;
}

.system-box h3{
  margin:0 0 26px;
  color:#222;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:clamp(28px,3.2vw,40px);
  line-height:1.5;
  letter-spacing:.04em;
}

.system-box ul{
  display:grid;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.system-box li{
  position:relative;
  padding:15px 18px 15px 42px;
  border-radius:15px;
  background:#fff;
  color:#333;
  font-weight:700;
  line-height:1.7;
}

.system-box li::before{
  content:"";
  position:absolute;
  left:18px;
  top:50%;
  width:11px;
  height:11px;
  border-radius:50%;
  background:#2a9dcc;
  transform:translateY(-50%);
}

.system-reserve{
  max-width:880px;
  margin:58px auto 0;
  padding:38px 44px;
  border-top:1px solid #d7edf6;
  border-bottom:1px solid #d7edf6;
  text-align:center;
}

.system-reserve{
    max-width:900px;
    margin:80px auto 0;
    padding:55px 50px;
    border-radius:32px;
    background:linear-gradient(135deg,#ffffff 0%,#f4fbff 100%);
    text-align:center;
    box-shadow:0 18px 44px rgba(42,157,204,.12);
    position:relative;
    overflow:hidden;
}
.system-reserve::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-70px;
    top:-70px;
    border-radius:50%;
    background:rgba(42,157,204,.08);
}

.system-reserve::after{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    left:-40px;
    bottom:-40px;
    border-radius:50%;
    background:rgba(42,157,204,.06);
}
.system-reserve>*{
    position:relative;
    z-index:2;
}
.system-reserve-icon{
    width:72px;
    height:72px;
    margin:0 auto 24px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#e8f7fd;
    font-size:34px;
}

.system-reserve-copy{
    margin:0 0 18px;
    font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;
    font-size:34px;
    line-height:1.7;
    color:#2e4a62;
}
.system-reserve-copy strong{
    color:#2a9dcc;
}
.system-reserve-text{
    max-width:620px;
    margin:0 auto 34px;
    color:#555;
    line-height:2;
    font-size:17px;
}

.system-reserve a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:330px;
    padding:18px 34px;
    border-radius:999px;
    background:#ffe44d;
    color:#111;
    font-weight:700;
    box-shadow:0 14px 30px rgba(0,0,0,.14);
    transition:.25s;
}

.system-reserve a:hover{
    transform:translateY(-3px);
}
.system-mini{
    display:inline-block;
    margin-bottom:18px;
    padding:6px 16px;
    border:1px solid #cfe6f2;
    border-radius:999px;
    color:#2a9dcc;
    font-size:12px;
    letter-spacing:.2em;
    font-weight:700;
}

/* SP */
@media(max-width:768px){

  .system{
    padding:78px 0;
  }
  .system-heading{
  }
  .system-lead{
    margin-bottom:48px;
    font-size:15px;
    line-height:1.9;
  }
  .system-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .system-photo{
    max-width:320px;
    margin:0 auto;
    border-radius:22px;
  }

  .system-photo-badge{
    right:14px;
    bottom:14px;
    width:96px;
    height:96px;
    font-size:13px;
  }

  .system-box{
    padding:30px 20px;
    border-radius:22px;
  }

  .system-box h3{
    margin-bottom:22px;
    font-size:26px;
  }

  .system-box li{
    padding:15px 16px 15px 40px;
    font-size:1.15em;
  }

  .system-reserve{
    margin-top:42px;
    padding: 30px 1em;
    text-align: center;
  }


  .system-reserve a{
    width:100%;
    min-width:auto;
  }
  .system-reserve-copy {
    font-size: 1.5em;
  }
  .system-mini{
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 16px;
    border: 1px solid #cfe6f2;
    border-radius: 999px;
    color: #2a9dcc;
    font-size: 12px;
  }
.system-heading span{
    display:inline;
    background:
        linear-gradient(
            transparent 72%,
            rgba(42,157,204,.15) 72%
        );
    color:#2a9dcc;
  }

}


/* =====================================================
07 Voice
===================================================== */

.voice{
  padding:110px 0;
  background:#f4fbff;
}
.voice-cta{

    max-width:900px;

    margin:80px auto 0;

    padding:58px 50px;

    border-radius:32px;

    text-align:center;

    background:
        linear-gradient(135deg,#ffffff 0%,#f4fbff 100%);

    box-shadow:
        0 18px 44px rgba(42,157,204,.12);

    position:relative;

    overflow:hidden;

}
.voice-cta::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    right:-80px;
    top:-80px;

    border-radius:50%;

    background:rgba(42,157,204,.08);

}
.voice-cta::after{

    content:"";

    position:absolute;

    width:140px;
    height:140px;

    left:-40px;
    bottom:-40px;

    border-radius:50%;

    background:rgba(42,157,204,.05);

}
.voice-cta>*{

    position:relative;

    z-index:2;

}

.voice-cta-sub{

    display:inline-block;

    margin-bottom:18px;

    padding:6px 18px;

    border-radius:999px;

    background:#e8f7fd;

    color:#2a9dcc;

    font-size:12px;

    font-weight:700;

    letter-spacing:.2em;

}

.voice-cta h3{

    margin:0 0 20px;

    color:#2e4a62;

    font-family:
        "Noto Serif JP",
        "Yu Mincho",
        serif;

    font-size:clamp(28px,3vw,40px);

    line-height:1.7;

    letter-spacing:.05em;

}

.voice-cta-text{

    max-width:640px;

    margin:0 auto 34px;

    color:#555;

    font-size:17px;

    line-height:2;

}

.voice-cta a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:320px;

    padding:18px 36px;

    border-radius:999px;

    background:#ffe44d;

    color:#111;

    font-weight:700;

    box-shadow:0 14px 30px rgba(0,0,0,.14);

    transition:.25s;

}

.voice-cta a:hover{

    transform:translateY(-3px);

}



.voice-heading{
  margin:0 0 28px;
  text-align:center;
  color:#2e4a62;
  font-family:
        "Noto Serif JP",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        serif;
  font-size:clamp(28px,4vw,52px);
  line-height:1.6;
  letter-spacing:.06em;
}
.voice-heading span{
  display:inline-block;
  color:#2a9dcc;
  background:
        linear-gradient(
            transparent 72%,
            rgba(42,157,204,.15) 72%
        );
}

.voice-lead{
  max-width:780px;
  margin:0 auto 70px;
  text-align:center;
  color:#555;
  font-size:18px;
  line-height:2;
}

.voice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.voice-card{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  box-shadow:0 16px 38px rgba(0,0,0,.08);
}

.voice-photo{
  overflow:hidden;
}

.voice-photo img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  transition:.6s ease;
}

.voice-card:hover .voice-photo img{
  transform:scale(1.04);
}

.voice-body{
  padding:28px 26px 32px;
}

.voice-body span{
  display:block;
  margin:0 0 10px;
  color:#2a9dcc;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
}

.voice-body h3{
  margin:0 0 14px;
  color:#222;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:23px;
  line-height:1.55;
  font-weight:700;
}

.voice-body p{
  margin:0 0 20px;
  color:#555;
  font-size:15px;
  line-height:1.9;
}

.voice-body a{
  display:inline-flex;
  align-items:center;
  color:#2a9dcc;
  font-weight:800;
  font-size:14px;
}

.voice-body a::after{
  content:"→";
  margin-left:8px;
}

.voice-note{
  max-width:880px;
  margin:64px auto 0;
  padding:38px 44px;
  border-radius:26px;
  background:#fff;
  text-align:center;
  box-shadow:0 14px 34px rgba(0,0,0,.07);
}

.voice-note p{
  margin:0 0 20px;
  color:#222;
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size:26px;
  line-height:1.7;
  letter-spacing:.04em;
}

.voice-note a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:300px;
  padding:16px 30px;
  border-radius:999px;
  background:#ffe44d;
  color:#111;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,0,0,.14);
  transition:.25s ease;
}

.voice-note a:hover{
  transform:translateY(-3px);
  opacity:.9;
}

/* SP */
@media(max-width:768px){

  .voice{
    padding:78px 0;
  }
  .voice-heading{
    line-height:1.6;
  }

  .voice-lead{
    font-size:1.1em;
    line-height:1.9;
    margin-bottom:48px;
  }

  .voice-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .voice-card{
    border-radius:22px;
  }

  .voice-body{
    padding:24px 20px 28px;
  }

  .voice-body h3{
    font-size:21px;
  }

  .voice-body p{
    font-size:1.0em;
  }

  .voice-note{
    margin-top:44px;
    padding:28px 20px;
    text-align:left;
  }

  .voice-note p{
    font-size:22px;
  }

  .voice-note a{
    width:100%;
    min-width:auto;
  }
  .voice-cta{
    padding: 26px 6px;
  }
  .voice-cta h3{

  }
  .voice-heading span{
    display:inline;
    background:
        linear-gradient(
            transparent 72%,
            rgba(42,157,204,.15) 72%
        );
    color:#2a9dcc;
    }
}

