@charset "UTF-8";

:root{
  --red:#ef615d;
  --blue:#0797d2;
  --cyan:#12b5b5;
  --yellow:#f2ed2c;
  --orange:#f89544;
  --purple:#b69acb;
  --pink:#f6d9db;
  --cream:#fff7e8;
  --ink:#222;
  --text:#4b4b4b;
  --white:#fff;
  --radius:30px;
  --shadow:0 18px 45px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:"Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
  line-height:1.85;
  background:#fff;
}
img{max-width:100%;height:auto;vertical-align:bottom}
a{text-decoration:none;color:inherit}
.lp-container{width:min(1080px,calc(100% - 36px));margin:0 auto}

/* header */
.lp-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.94);
  border-bottom:4px solid var(--red);
}
.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.site-logo{
  color:var(--blue);
  font-size:22px;
  font-weight:900;
  line-height:1.1;
}
.site-logo span{
  color:var(--ink);
  font-size:13px;
}
.header-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 20px;
  border-radius:999px;
  color:#fff;
  background:var(--red);
  font-weight:900;
  box-shadow:0 6px 0 #c94743;
}

/* hero */
.hero{
  position:relative;
  padding:70px 0 50px;
  text-align:center;
  background:url("./assets/expo-bg.png") center top/cover no-repeat;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:120px;
  background:linear-gradient(to bottom,rgba(255,255,255,0),#fff);
}
.hero-inner{position:relative;z-index:1}
.hero-kicker{
  display:inline-block;
  margin:0 0 14px;
  padding:8px 24px;
  border-radius:999px;
  background:var(--yellow);
  color:var(--ink);
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 6px 0 rgba(0,0,0,.10);
}
.hero h1{
  margin:0;
  color:var(--red);
  font-size:clamp(38px,7vw,82px);
  line-height:1.12;
  letter-spacing:.03em;
  text-shadow:4px 4px 0 #fff;
}
.hero h1 span{color:var(--blue)}
.hero-lead{
  margin:22px auto 0;
  max-width:780px;
  color:var(--ink);
  font-size:18px;
  font-weight:800;
  background:rgba(255,255,255,.88);
  border-radius:22px;
  padding:16px 24px;
}
.hero-note{
  display:inline-flex;
  margin:24px 0;
  padding:13px 28px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(90deg,var(--red),var(--blue));
  font-size:18px;
  font-weight:900;
}
.hero-photo{
  width:min(720px,100%);
  margin:10px auto 0;
  padding:16px;
  border-radius:34px;
  background:#fff;
  box-shadow:var(--shadow);
}
.hero-photo img{border-radius:24px}
.supervision{
  margin:14px 0 0;
  color:#666;
  font-size:14px;
}

/* common */
.section{padding:60px 0}
.section-heading{
  margin-bottom:34px;
  text-align:center;
}
.section-heading span{
  display:inline-block;
  color:var(--red);
  font-weight:900;
  letter-spacing:.16em;
}
.section-heading h2{
  margin:6px 0 0;
  color:var(--ink);
  font-size:clamp(30px,4.5vw,48px);
  line-height:1.25;
}
.section-heading p{
  margin:12px 0 0;
  font-weight:800;
}

/* product */
.product{
  padding-top:50px;
  background:
    radial-gradient(circle at 7% 10%,rgba(18,181,181,.13),transparent 25%),
    radial-gradient(circle at 90% 20%,rgba(239,97,93,.12),transparent 28%),
    #fff;
}
.product-box{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:26px;
  padding:30px;
  border:5px solid var(--blue);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
}
.product-main h3{
  margin:0 0 20px;
  color:var(--red);
  font-size:30px;
}
.product-main dl{margin:0}
.product-main dl div{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:18px;
  padding:15px 0;
  border-bottom:2px dashed #e3e3e3;
}
.product-main dt{color:var(--blue);font-weight:900}
.product-main dd{margin:0;color:var(--ink);font-weight:800}
.price-panel{
  padding:28px;
  border-radius:24px;
  background:var(--cream);
  border:4px solid var(--yellow);
}
.price-panel h3{
  margin:0 0 16px;
  color:var(--ink);
  font-size:26px;
}
.price-panel ul{list-style:none;margin:0;padding:0}
.price-panel li{
  display:grid;
  grid-template-columns:54px 1fr 40px;
  align-items:center;
  gap:10px;
  padding:12px 0;
  border-bottom:2px dotted rgba(0,0,0,.13);
}
.price-panel b{
  width:44px;height:44px;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-size:24px;
}
.price-panel li:nth-child(2) b{background:var(--blue)}
.price-panel li:nth-child(3) b{background:var(--cyan)}
.price-panel span{color:var(--ink);font-size:26px;font-weight:900}
.price-panel small{font-weight:800}

.size-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:32px;
}
.size-list article{
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  border:4px solid #f0f0f0;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
  text-align:center;
}
.size-list article:nth-child(1){border-color:var(--red)}
.size-list article:nth-child(2){border-color:var(--blue)}
.size-list article:nth-child(3){border-color:var(--orange)}
.size-list h3{
  margin:18px 0 0;
  color:var(--ink);
  font-size:28px;
}
.size-list p{margin:0;font-weight:800}
.size-list strong{
  display:block;
  margin:8px 0 22px;
  color:var(--red);
  font-size:20px;
}

/* conditions */
.target{
  background:url("./assets/expo-bg.png") center center/cover no-repeat;
}
.condition-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.condition-card{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  padding:34px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.94);
  box-shadow:var(--shadow);
}
.condition-card.red{border:6px solid var(--red)}
.condition-card.blue{border:6px solid var(--blue)}
.condition-card .num{
  display:inline-grid;
  place-items:center;
  width:64px;height:64px;
  border-radius:50%;
  color:#fff;
  background:var(--red);
  font-size:26px;
  font-weight:900;
}
.condition-card.blue .num{background:var(--blue)}
.condition-card h3{
  margin:18px 0 12px;
  color:var(--ink);
  font-size:26px;
  line-height:1.35;
}
.date{
  display:inline-block;
  margin:0 0 16px;
  padding:8px 16px;
  border-radius:999px;
  background:var(--yellow);
  color:var(--ink);
  font-weight:900;
}
.condition-card p{font-weight:800}
.condition-card small{display:block;color:#666;font-weight:700}

/* flow */
.flow{background:#fff}
.flow-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.flow-list div{
  padding:26px 22px;
  border-radius:26px;
  background:#fff;
  border:4px solid var(--cyan);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.flow-list div:nth-child(2){border-color:var(--red)}
.flow-list div:nth-child(3){border-color:var(--yellow)}
.flow-list div:nth-child(4){border-color:var(--orange)}
.flow-list span{
  display:inline-grid;
  place-items:center;
  width:48px;height:48px;
  border-radius:50%;
  background:var(--cyan);
  color:#fff;
  font-size:24px;
  font-weight:900;
}
.flow-list div:nth-child(2) span{background:var(--red)}
.flow-list div:nth-child(3) span{background:#d8d300;color:var(--ink)}
.flow-list div:nth-child(4) span{background:var(--orange)}
.flow-list h3{margin:14px 0 8px;color:var(--ink);font-size:21px}
.flow-list p{margin:0;font-size:15px;font-weight:700}

/* notes */
.notes{
  background:linear-gradient(180deg,#fff,var(--cream));
}
.notes-box{
  padding:36px;
  border-radius:var(--radius);
  background:#fff;
  border:6px solid var(--red);
  box-shadow:var(--shadow);
}
.notes ul{
  margin:0;
  padding:0;
  list-style:none;
}
.notes li{
  position:relative;
  padding:13px 0 13px 34px;
  border-bottom:2px dashed #e5e5e5;
  color:var(--ink);
  font-weight:800;
}
.notes li::before{
  content:"●";
  position:absolute;
  left:0;
  color:var(--red);
}

/* faq */
.faq{background:#fff}
.faq details{
  margin:0 0 14px;
  border-radius:20px;
  background:#fff;
  border:4px solid #eeeeee;
  overflow:hidden;
}
.faq summary{
  cursor:pointer;
  padding:22px 24px;
  list-style:none;
  color:var(--ink);
  font-weight:900;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"＋";
  float:right;
  color:var(--red);
  font-size:22px;
}
.faq details[open] summary::after{content:"－"}
.faq p{
  margin:0;
  padding:0 24px 22px;
  font-weight:700;
}

/* cta/footer */
.cta{
  padding:40px 0;
  text-align:center;
  background:var(--blue);
  color:#fff;
}
.cta a{
  display:inline-block;
  padding:14px 28px;
  border-radius:999px;
  background:#fff;
  color:var(--blue);
  font-weight:900;
  box-shadow:0 6px 0 rgba(0,0,0,.14);
}
.lp-footer{
  padding:30px 16px;
  text-align:center;
  background:#222;
  color:#fff;
}
.lp-footer p{margin:4px 0;font-size:14px}

/* responsive */
@media (max-width:900px){
  .product-box,
  .condition-cards{grid-template-columns:1fr}
  .size-list{grid-template-columns:1fr}
  .flow-list{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .lp-container{width:min(100% - 28px,1080px)}
  .header-inner{min-height:68px}
  .site-logo{font-size:17px}
  .site-logo span{font-size:11px}
  .header-btn{padding:8px 13px;font-size:12px;box-shadow:0 4px 0 #c94743}
  .hero{padding:50px 0 42px}
  .hero-lead{font-size:15px;padding:14px}
  .hero-note{display:flex;justify-content:center;border-radius:18px;font-size:15px}
  .section{padding:48px 0}
  .product{padding-top:44px}
  .product-box,.notes-box,.condition-card{padding:22px}
  .product-main dl div{grid-template-columns:1fr;gap:2px}
  .price-panel li{grid-template-columns:48px 1fr 36px}
  .price-panel span{font-size:21px}
  .flow-list{grid-template-columns:1fr}
}


/* hamburger menu */
.hamburger-btn{
  width:58px;
  height:46px;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:0;
  border-radius:12px;
  background:var(--red);
  cursor:pointer;
  box-shadow:0 6px 0 #c94743;
  transition:transform .2s ease, box-shadow .2s ease;
}
.hamburger-btn:hover{
  transform:translateY(1px);
  box-shadow:0 5px 0 #c94743;
}
.hamburger-btn span{
  width:26px;
  height:3px;
  border-radius:999px;
  background:#fff;
  display:block;
  transition:transform .22s ease, opacity .22s ease;
}
body.menu-open .hamburger-btn span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
}
body.menu-open .hamburger-btn span:nth-child(2){
  opacity:0;
}
body.menu-open .hamburger-btn span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
}

.menu-overlay{
  position:fixed;
  inset:0;
  z-index:9998;
  background:rgba(0,0,0,.42);
  opacity:0;
  transition:opacity .22s ease;
}
body.menu-open .menu-overlay{
  opacity:1;
}
.global-menu{
  position:fixed;
  top:0;
  right:0;
  z-index:9999;
  width:min(380px,86vw);
  height:100vh;
  padding:72px 0 24px;
  background:#fff;
  box-shadow:-18px 0 40px rgba(0,0,0,.18);
  transform:translateX(100%);
  transition:transform .22s ease;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
body.menu-open .global-menu{
  transform:translateX(0);
}
.menu-close{
  position:absolute;
  top:18px;
  right:20px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#f5f5f5;
  color:var(--red);
  font-size:28px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
}
.global-menu ul{
  list-style:none;
  margin:0;
  padding:0;
}
.global-menu li{
  border-bottom:1px solid #eeeeee;
}
.global-menu a{
  display:flex;
  align-items:center;
  min-height:54px;
  padding:14px 28px;
  color:#222;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
}
.global-menu li:first-child a{
  color:var(--red);
}
.global-menu a:hover{
  background:#fff7f7;
  color:var(--red);
}
body.menu-open{
  overflow:hidden;
}

@media (max-width:640px){
  .hamburger-btn{
    width:52px;
    height:42px;
    border-radius:10px;
    box-shadow:0 4px 0 #c94743;
  }
  .hamburger-btn span{
    width:23px;
    height:3px;
  }
  .global-menu{
    width:min(340px,88vw);
    padding-top:68px;
  }
  .global-menu a{
    min-height:52px;
    padding:13px 22px;
    font-size:14px;
  }
}


/* flow patterns */
.flow-patterns{
  display:grid;
  gap:34px;
}
.flow-pattern{
  padding:28px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 14px 36px rgba(0,0,0,.08);
}
.flow-pattern-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
  padding-bottom:16px;
  border-bottom:3px dashed #eeeeee;
}
.flow-pattern-head span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
}
.flow-pattern-head.takeout span{background:var(--blue)}
.flow-pattern-head.eatin span{background:var(--red)}
.flow-pattern-head h3{
  margin:0;
  color:var(--ink);
  font-size:26px;
  line-height:1.35;
}
.flow-pattern .flow-list{
  display:grid;
  gap:18px;
}
.flow-pattern .takeout-flow{
  grid-template-columns:repeat(4,1fr);
}
.flow-pattern .eatin-flow{
  grid-template-columns:repeat(3,1fr);
}
.flow-pattern .flow-list div{
  min-height:210px;
}
.flow-pattern .flow-list h3{
  line-height:1.45;
}

@media (max-width:900px){
  .flow-pattern .takeout-flow,
  .flow-pattern .eatin-flow{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px){
  .flow-pattern{
    padding:20px;
  }
  .flow-pattern-head{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
  .flow-pattern-head h3{
    font-size:21px;
  }
  .flow-pattern .takeout-flow,
  .flow-pattern .eatin-flow{
    grid-template-columns:1fr;
  }
  .flow-pattern .flow-list div{
    min-height:auto;
  }
}


.flow-note{
  margin:18px 0 0;
  padding:14px 18px;
  border-radius:16px;
  background:#fff7e8;
  color:#222;
  font-size:14px;
  font-weight:800;
  line-height:1.7;
}

.shipping-info{
  margin-top:20px;
  padding:14px;
  background:#fff8e8;
  border:2px solid #f0d000;
  border-radius:12px;
  font-size:14px;
  line-height:1.8;
  font-weight:700;
}

.shipping-info strong{
  display:block;
  margin-bottom:6px;
  color:#222;
}