:root {
  --white: #fff;
  --fg: #111;
  --muted: #3a3a3a;
  --brand: #f92d2d;
  --brand-2: #2e7bff;
  --surface: #f7f7f9;
  --border: #e6e6ee;
  --link: #f12148;
  --link-font: #fff;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0,0,0,.06), 0 2px 10px rgba(0,0,0,.04);
  --maxw: 1040px;
  --gutter: clamp(16px, 3vw, 28px);
  --h2: clamp(22px, 3.2vw, 30px);
  --h3: clamp(18px, 2.6vw, 22px);
  --body: clamp(15px, 1.7vw, 17px);
  --small: 12px;
}

* { box-sizing: border-box;word-break: break-all;}
html, body {
  padding: 0; margin: 0;
  background: var(--white);
  color: var(--fg);
  font: 400 var(--body)/1.7 system-ui, -apple-system, "Segoe UI",
        Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN",
        "Yu Gothic", "YuGothic", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  background:repeating-linear-gradient(
  -48deg,
  #f9f9f9,
  #f9f9f9 8px,
  #fff 0,
  #fff 14px
  );
}
a{
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
}
:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand) 70%, #fff);
  outline-offset: 2px;
  border-radius: 6px;
}
p a{
  font-weight:600;
  display:inline-block;
  color: var(--link);
  text-decoration:none;
  margin: 0 0.2em 3px 0.2em;
  position: relative;
}
p a::before {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: var(--link);
}
p a::before {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: var(--link);
bottom: -1px;
transform: scale(0, 1);
transform-origin: left top;
transition: transform 0.3s;
}
p a:hover::before {
transform: scale(1, 1);
}
p a:after {
  content: "↗";
  font-size: .9em;
  margin-left: .25em;
  opacity: .6;
}
section img{
  width: 100%;
}
header{
  width: 100%;
  max-width:720px;
  margin: 0 auto;
  padding: 0 0 40px 0;
}
header img{
  width: 100%;
  max-width: 980px;
  display: block;
  margin: 0 auto 40px auto;
}
header h1 {
  font-size: 20px;
  line-height: 1.3em;
  letter-spacing: 0.01em;
  font-weight:800;
  display:block;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align:center;
  transform: scale(1,1.12);
}
header h1 > span{
  font-size: 40px;
  font-weight:600;
  line-height: 1em;
  background: linear-gradient(transparent 45%, #ffe8ec 45%);
}
header h1 > span > span{
  font-size: 45px;
}
header > p{
  text-align:center;
  font-size: 30px;
  font-weight:400;
  transform: scale(1,1.1);
  line-height:1.8em;
  padding:30px 0 10px 0;
}
header > p > span{
  display: block;
}
header > p > span > span{
  font-weight:600;
  color: #000;
  font-size: 30px;
  display:block;
  line-height:1em;
}
header > p > strong{
  color: var(--brand);
  font-size: 40px;
}
header > p > strong span{
  margin: 0 0 0 -20px;
}
header > div.release{
  padding:10px 0 20px 0;
}
header > div.release p{
  text-align:center;
  font-weight:400;
  transform: scale(1,1.1);
}
header > div.release p > span{
  font-size: 20px;
}
header > div.release p > span > span{
  font-weight:600;
  color: #000;
  font-size: 30px;
  display:block;
  line-height:1.8em;
}
@media (max-width: 720px) {
  header h1 {
    font-size: 3.5vw;
  }
  header h1 > span{
    font-size: 5vw;
  }
  header h1 > span > span{
    font-size: 5.5vw;
  }
  header > p{
    font-size: 4.2vw;
  }
  header > p > span > span{
    font-size: 6vw;
  }
  header > p > strong{
    font-size: 8vw;
  }
  header > p > strong span{
    font-size: 7vw;
    margin: 0 0 0 -20px;
  }
  header > div.release p > span{
    font-size: 5.2vw;
  }
  header > div.release p > span > span{
    font-size: 3.5vw;
  }
}
header > div > p{
  padding: 0 25px 25px 25px;
  max-width:1024px;
  margin: 0 auto;
}
header > div > p > span{
  font-size: 25px;
  line-height: 1.5em;
  font-weight:600;
}
header > div > p strong{
  font-size: 25px;
  line-height: 1.5em;
  font-weight:600;
  background: linear-gradient(transparent 45%, #ffe8ec 45%);
}
header > div > p strong span{
  font-size: 28px;
  padding: 0 10px 0 10px;
}
main {
  padding: clamp(20px, 4vw, 48px) 0 80px;
  background: #f9f9f9;
  position: relative;
}
main section {
  width: 100%;
  max-width:720px;
  margin: 20px auto;
  padding: clamp(14px, 2.2vw, 22px);
}
section h3 {
  font-size: var(--h3);
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 1em;
  position:relative;
}
section h3::before {
  content: "";
  width: 8px;
  height: 23px;
  border-radius: 1px;
  background: var(--brand);
  display: inline-block;
  position:absolute;
  left:0;
  top:50%;
  margin:-13px 0 0 0;
}
@media (max-width: 680px) {
  section h3::before {
    margin:-12px 0 0 0;
  }
}
main > p{
  text-align:center;
}
main p{
  margin: 0;
}
main p strong {
  font-size: calc(var(--body) * 1.25);
  color: var(--fg);
  letter-spacing:-0.03em;
  padding: 3px 0 7px 0;
  display:block;
}
main p strong span{
  font-size: calc(var(--body) * 1.65);
  color: var(--fg);
  letter-spacing:-0.02em;
  vertical-align:-2px;
}
main dl{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px 16px;
  margin: 10px 0 0 0;
}
main dt{
  color: var(--muted);
  font-weight: 600;
}
main dd{
  margin: 0;
}
.list-payment{
  padding:0;
  margin:0;
}
.list-payment li{
  list-style: none;
  padding:5px 0 10px 0;
}
.list-tokuten{
  padding:0;
  margin:0;
}
.list-tokuten > li{
  list-style: none;
  padding:0 0 10px 0;
}
.list-tokuten > li > span{
  border:1px solid;
  display: inline-block;
  background: var(--brand);
  padding:4px 15px 3px 15px;
  font-size:12px;
  color: var(--white);
  font-weight: 600;
  margin: 40px 0 0 0;
}
.list-tokuten ul{
  padding:0;
  margin:0;
}
.list-tokuten ul > li{
  list-style: none;
  padding:0 0 40px 0;
}
.list-tokuten > li h5{
  padding: 0 0 0 15px;
  margin: 10px 0 20px 0;
  font-feature-settings: "palt";
  letter-spacing:0.05em;
  position:relative;
  line-height: 1.5em;
  text-align:justify;
  font-size: calc(var(--body) * 1.15);
}
.list-tokuten > li h5 a{
  display:inline-block;
  color:var(--muted);
  text-decoration:none;
  margin: 0 0.2em 3px 0.2em;
  position: relative;
  font-size:20px;
}
.list-tokuten > li h5 a:hover{
  color:var(--brand);
}
.list-tokuten > li h5 a::before {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: var(--brand);
}
.list-tokuten > li h5 a::before {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: var(--brand);
bottom: -1px;
transform: scale(0, 1);
transform-origin: left top;
transition: transform 0.3s;
}
.list-tokuten > li h5 a:hover::before {
transform: scale(1, 1);
}
.list-tokuten > li h5 a span:after {
  content: "↗";
  font-size: .9em;
  margin-left: .25em;
  opacity: .6;
  color:var(--brand);
}
.list-tokuten > li h5 span{
  display:inline;
  margin: 0 0 0 0.5em;
}
.list-tokuten > li h5:before{
  content:"";
  width:7px;
  height: 7px;
  border-radius:100%;
  background: var(--brand);
  position: absolute;
  left: 2px;
  top: 11px;
}
@media (max-width: 799px) {
  .list-tokuten > li h5:before{
    top: 9px;
  }
  .list-tokuten > li h5 span{
    display:block;
    margin: 0 0 0 0;
  }
}
.list-tokuten img+p{
  text-align:center;
  font-size:13px;
  letter-spacing:0.1em;
}
.list-random{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-random li{
  width:48%;
}
.list-random li.list-wide{
  width: 75%;
  margin: 0 auto;
}
.list-tokuten ul+p{
  text-align:center;
}
.list-tokuten ul+p span{
  display:block;
}
.list-tokuten h5+p{
  text-align:center;
  font-weight:600;
  font-size:17px;
  line-height:1.3em;
  padding: 20px 0 20px 0;
  background: #fff;
  margin: -10px 0 40px 0;
  position: relative;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.03);
}
.list-tokuten h5+p:after{
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 7px solid #aaa;
  border-bottom: 0;
  position:absolute;
  bottom:-8px;
  left:50%;
  margin:0 0 0 -9px;
}
.list-tokuten h5+p:before{
  content:"特典";
  width:34px;
  height: 34px;
  position:absolute;
  top:-15px;
  right:10px;
  font-size:12px;
  background: var(--brand);
  border-radius: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
  color:#fff;
  transform: rotate(10deg);
}
.list-tokuten h5+p > span{
  display:block;
}
.list-tokuten h5+p > span > span{
  font-weight:400;
  display:block;
  padding:5px 0 5px 0;
}

#online-tokuten .list-tokuten p{
  text-align:center;
  font-weight:600;
  font-size:17px;
  line-height:1.3em;
  padding: 20px 0 20px 0;
  background: #fff;
  margin: 30px 0 40px 0;
  position: relative;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.03);
}
#online-tokuten .list-tokuten p:after{
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 7px solid #aaa;
  border-bottom: 0;
  position:absolute;
  bottom:-8px;
  left:50%;
  margin:0 0 0 -9px;
}
#online-tokuten .list-tokuten p:before{
  content:"特典";
  width:34px;
  height: 34px;
  position:absolute;
  top:-15px;
  right:10px;
  font-size:12px;
  background: var(--brand);
  border-radius: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
  color:#fff;
  transform: rotate(10deg);
}
#online-tokuten .list-tokuten p > span{
  display:block;
}
#online-tokuten .list-tokuten p > span > span{
  font-weight:400;
  display:block;
  padding:5px 0 5px 0;
}
#online-tokuten .list-tokuten .list-random{
  align-items: end;
}
#online-tokuten .list-tokuten .list-random li:nth-child(1){
  width:37%;
}
#online-tokuten .list-tokuten .list-random li:nth-child(2){
  width:37%;
}
#online-tokuten .list-tokuten .list-random li:nth-child(3){
  width:25%;
}
@media (max-width: 799px) {
  #online-tokuten .list-tokuten .list-random{
    align-items: start;
  }
  #online-tokuten .list-tokuten .list-random li:nth-child(1){
    width:100%;
  }
  #online-tokuten .list-tokuten .list-random li:nth-child(2){
    width:100%;
  }
  #online-tokuten .list-tokuten .list-random li:nth-child(3){
    width:100%;
  }
}

.or{
  padding:10px 0 30px 0;
  text-align:center;
  font-weight:600;
  font-size:34px;
  color: var(--brand);
}
.or+p{
  text-align:center;
  font-weight:600;
  font-size:17px;
  line-height:1.3em;
  padding: 20px 0 20px 0;
  background: #fff;
  margin: -10px 0 40px 0;
  position: relative;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.03);
}
.or+p:after{
  content:"";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 7px solid #aaa;
  border-bottom: 0;
  position:absolute;
  bottom:-8px;
  left:50%;
  margin:0 0 0 -9px;
}
.or+p:before{
  content:"特典";
  width:34px;
  height: 34px;
  position:absolute;
  top:-15px;
  right:10px;
  font-size:12px;
  background: var(--brand);
  border-radius: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
  color:#fff;
  transform: rotate(10deg);
}
main ol{
  margin: 0;
  padding: 0;
}
main ol li{
  list-style:none;
  padding: 10px 0 10px 20px;
  font-feature-settings: "palt";
  letter-spacing:0.1em;
  position:relative;
  line-height: 1.5em;
  text-align:justify;
}
main ol li:before{
  content:"";
  width:7px;
  height: 7px;
  border-radius:100%;
  background: var(--brand);
  position: absolute;
  left: 2px;
  top: 18px;
}
main time{
  font-weight: 600;
  font-feature-settings: "palt";
  padding: 0 3px 0 3px;
}
main time span{
  font-size:19px;
}
main small { color: var(--muted); font-size: var(--small); display:block; position:relative; letter-spacing:-0.01em; padding: 5px 0 0 0;}
main small:before{
  content:"※ ";
  color: var(--brand);
}
#tokuten-2 ul {
  list-style: none;
  padding: 0 40px 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
}
@media (max-width: 720px) {
  #tokuten-2 ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#tokuten-2 a{
  display:inline-block;
  color:var(--muted);
  text-decoration:none;
  margin: 0 0.2em 3px 0.2em;
  position: relative;
  font-size:13px;
}
#tokuten-2 a:hover{
  color:var(--brand);
}
#tokuten-2 a::before {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: var(--brand);
}
#tokuten-2 a::before {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: var(--brand);
bottom: -1px;
transform: scale(0, 1);
transform-origin: left top;
transition: transform 0.3s;
}
#tokuten-2 a:hover::before {
transform: scale(1, 1);
}
#tokuten-2 a[target="_blank"]::after {
  content: "↗";
  font-size: .9em;
  margin-left: .25em;
  opacity: .6;
}
.pref-list {
  width:100%;
  margin: 0 auto;
}
.pref-list details {
  border-radius: 4px;
  background: #fff;
  margin: 10px 0;
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.pref-list details[open] {
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.pref-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.pref-list summary::-webkit-details-marker {
  display: none;
}
.pref-list summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease;
}
.pref-list details[open] > summary::after {
  transform: translateY(-50%) rotate(-135deg);
}
@media (max-width: 799px) {
  .pref-list summary {
    padding: 16px 48px 16px 16px;
  }
}
section > span{
  display:block;
}
section div.box-complement h4 {
  margin: 0 0 3px 0;
  font-size: calc(var(--body) * 1.12);
  color: var(--muted);
}
section div.box-complement address{
  font-style: normal;
  font-size:18px;
  color: var(--brand);
  position:relative;
  letter-spacing:0.05em;
  padding: 0 0 0 0;
}
section div.box-complement{
  background:#fff;
  padding:30px;
  margin:20px 0 0 0;
  border-radius: 3px;
}
section div.box-complement p{
  font-size:14px;
}
body > footer {
  background: var(--link);
  padding: 48px 0 48px 0;
}
body > footer > div{
  width: 100%;
  max-width:720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}
body > footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 12px;
}
body > footer li a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 40px; border-radius: 10px;
  background:none;
}
body > footer img {
  max-width: auto; max-height: 32px; display: block;
}
body > footer li a:hover img{
  opacity: 0.8;
}
body > footer p {
  margin: 0; color: var(--white); font-size: var(--small);
}
@media (max-width: 680px) {
  body > footer p {margin: 96px 0 0 0;}
  body > footer > div { grid-template-columns: 2fr; justify-items: center; text-align: center; }
  body > footer img {max-height: 40px;}
  body > footer ul {gap: 40px;}
}