@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}

.container {
  margin: 0 16px;
}

.top {
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1;
  background: rgba(255, 255, 255, 0.456);
  color: #fff;
}
.top h1 {
  margin-top: -7px;
  font-size: 20px;
  margin-bottom: 15px;
  margin-left: 10px;
  text-shadow: 0.4px 0.3px 3px #000000;
  color: #fff;
}
.top h1 span {
  color: #f0efef;
  font-weight: bold;
}
.top .top-time {
  margin: 0;
  border: 1px solid #000;
  padding: 5px 10px;
  color: #000000;
  background: #fff;
}
.top a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  border-radius: 6px;
  color: #ffffff;
}
.top a img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}
.top p {
  margin-top: 15px;
  font-size: 8px;
  margin-left: 23px;
  font-weight: bold;
  color: #5e5e5e;
}
.top .hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.top .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  border-radius: 14px;
}
.top .slide.active {
  opacity: 1;
  z-index: 1;
}
.top .slide .caption {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  text-align: center;
  font-size: 3vw;
  max-width: 80%;
  line-height: 1.2;
  -letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0);
  padding: 1rem 2rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .top .slide .caption {
    font-size: 14px;
    padding: 0.8rem 0.7rem;
  }
}

.message {
  margin-top: 65px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 2.5s ease;
  background-position: left center;
}
.message img {
  width: 100%;
}

.message.visible {
  opacity: 1;
  transform: translateX(0);
  background-position: center;
}

.message h2 {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 3s ease;
}

.message h3 {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 4s ease;
}

.message p {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 6s ease;
}

.message.visible h2,
.message.visible h3,
.message.visible p {
  opacity: 1;
  transform: translateX(0);
}

.price h3 {
  position: relative;
  margin: 30px;
  text-align: center;
}
.price h3:before,
.price h3:after {
  position: absolute;
  z-index: 0;
  bottom: -5px;
  display: block;
  content: "";
  border: 1em solid #000000;
}
.price h3:before {
  left: -30px;
  border-left-width: 15px;
  border-left-color: transparent;
}
.price h3:after {
  right: -30px;
  border-right-width: 15px;
  border-right-color: transparent;
}
.price h3 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem 2rem;
  color: #ffffff;
  background: #000000;
  border: 1px solid #000000;
}
.price h3 span:before,
.price h3 span:after {
  position: absolute;
  bottom: -10px;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-style: solid;
  border-color: #444444 transparent transparent transparent;
}
.price h3 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}
.price h3 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}
.price .price-items {
  background: rgba(255, 255, 255, 0.0509803922);
  margin: 20px 0;
}
.price .price-items .price-item {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price .price-items .price-item .price-item-box {
  width: 49%;
  padding: 10px;
}
.price .price-items .price-item .price-item-box h2 {
  margin-left: 10px;
  margin-bottom: 5px;
  font-size: 18px;
}
.price .price-items .price-item .price-item-box p {
  font-size: 11px;
  margin-left: 10px;
}
.price .price-items .price-item .price-item-list {
  border-top: 1.3px solid #b6b6b6;
  list-style: none;
  width: 49%;
  text-align: center;
}
.price .price-items .price-item .price-item-list li {
  border-bottom: 1.3px solid #c4c4c4;
  line-height: 2.5;
  font-size: 13px;
  background: #fff;
  margin-right: 3px;
}
.price .price-items button {
  border-radius: 4px;
  margin: 15px 0 0;
  background: #282828;
  color: #fff;
  width: 100%;
}

/* 背景をゆっくり上下左右に動かすキーフレーム */
@keyframes bgFloat {
  0% {
    background-position: 50% 50%;
  }
  25% {
    background-position: 55% 48%;
  }
  50% {
    background-position: 50% 52%;
  }
  75% {
    background-position: 45% 49%;
  }
  100% {
    background-position: 50% 50%;
  }
}
.about {
  padding-top: 30px;
}
.about h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 25px;
}
.about h3 span {
  font-size: 1.5em;
}
.about p {
  margin: 20px;
}
.about .about-bg {
  text-align: center;
}
.about .about-bg img {
  width: 90%;
}
.about .about-bg-top {
  background-image: url(/img/about-bg-top.jpg);
  background-size: cover;
  background-position: center;
  padding-top: 10px;
  padding-bottom: 180px;
  font-weight: bold;
  opacity: 0.8;
}
.about .about-bg-top p {
  color: #000000;
  font-size: 14px;
}
.about .about-hp {
  margin: 20px;
  border: 2px solid #888888;
  border-radius: 14px;
}
.about .about-hp h5 {
  font-size: 16px;
  text-align: center;
  margin: 20px auto 0;
}
.about .about-hp img {
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  padding-bottom: 0;
}
.about .about-hp .about-hp-list .about-hp-list-items {
  border-bottom: 1px solid #3e3e3e;
  display: flex;
  align-items: center;
  padding: 5px 20px;
}
.about .about-hp .about-hp-list .about-hp-list-items img {
  width: 70px;
  height: 70px;
  padding: 10px;
}
.about .about-hp .about-hp-list .about-hp-list-items .about-hp-item {
  background: rgba(251, 251, 251, 0.4431372549);
  padding: 10px;
  border-radius: 4px;
}
.about .about-hp .about-hp-list .about-hp-list-items .about-hp-item h6 {
  font-size: 16px;
}
.about .about-hp .about-hp-list .about-hp-list-items .about-hp-item p {
  margin: 0;
  font-size: 14px;
}
.about .about-lp {
  margin: 20px;
  border: 2px solid #9b9b9b;
  border-radius: 14px;
}
.about .about-lp h5 {
  font-size: 16px;
  text-align: center;
  margin: 30px auto 15px;
}
.about .about-lp img {
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  padding-bottom: 0;
}
.about .about-lp .about-lp-list .about-lp-list-items {
  border-bottom: 1px solid #3e3e3e;
  display: flex;
  align-items: center;
  padding: 5px 20px;
}
.about .about-lp .about-lp-list .about-lp-list-items img {
  width: 70px;
  height: 70px;
  padding: 10px;
}
.about .about-lp .about-lp-list .about-lp-list-items .about-lp-item {
  background: rgba(251, 251, 251, 0.4431372549);
  padding: 10px;
  border-radius: 4px;
  margin-left: 20px;
}
.about .about-lp .about-lp-list .about-lp-list-items .about-lp-item h6 {
  font-size: 16px;
}
.about .about-lp .about-lp-list .about-lp-list-items .about-lp-item p {
  margin: 0;
  font-size: 14px;
}
.about .about-message {
  margin: 20px;
  font-size: 14px;
  margin-top: 0;
}

.accordion-toggle {
  width: 40%;
  display: block;
  margin: 10px auto 10px;
  background: #3e3e3e;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: -5px;
  transition: background 0.3s;
  font-weight: bold;
}

.accordion-toggle:hover {
  background: #5a5a5a;
}

.service {
  padding: 20px 16px 32px;
  /* タイトル装飾 */
  /* リスト */
  /* カード */
  /* 交互スライドの初期状態 */
  /* バッジ */
  /* テキスト */
  /* イラスト */
  /* 画面幅広め */
}
.service .service h2 {
  position: relative;
  margin: 30px;
  text-align: center;
}
.service .service h2:before,
.service .service h2:after {
  position: absolute;
  z-index: 0;
  bottom: -5px;
  display: block;
  content: "";
  border: 1em solid #000000;
}
.service .service h2:before {
  left: -30px;
  border-left-width: 15px;
  border-left-color: transparent;
}
.service .service h2:after {
  right: -30px;
  border-right-width: 15px;
  border-right-color: transparent;
}
.service .service h2 span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem 2rem;
  color: #fff;
  background: #191919;
  border: 1px solid #3e3e3e;
}
.service .service h2 span:before,
.service .service h2 span:after {
  position: absolute;
  bottom: -10px;
  width: 10px;
  height: 10px;
  content: "";
  border-style: solid;
  border-color: #444444 transparent transparent transparent;
}
.service .service h2 span:before {
  left: 0;
  border-width: 10px 0 0 10px;
}
.service .service h2 span:after {
  right: 0;
  border-width: 10px 10px 0 0;
}
.service .service-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.service .step {
  display: grid;
  grid-template-columns: 72px 1fr 86px;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 14px 12px 14px 10px;
}
.service .service .step {
  opacity: 0;
  transform: translateX(var(--offset, 0));
  transition: transform 3s ease, opacity 2s ease;
  will-change: transform, opacity;
}
.service .service .step.from-left {
  --offset: -40px;
}
.service .service .step.from-right {
  --offset: 40px;
}
.service .service .step.appear {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .service .service .step {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.service .badge {
  inline-size: 66px;
  block-size: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  line-height: 0;
  background: conic-gradient(from 210deg, #ff79c6, #ffaf7b, #ffe97a, #8be7a6, #6cc2ff, #8d7bff, #ff79c6);
  box-shadow: 0 6px 18px rgba(255, 121, 198, 0.35);
}
.service .badge.blue {
  background: conic-gradient(from 210deg, #6cc2ff, #7fa8ff, #9f7cff, #b07fff, #6cc2ff);
  box-shadow: 0 6px 18px rgba(108, 194, 255, 0.35);
}
.service .badge .step-txt {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0.2px 0.2px 2px #000;
}
.service .badge .num {
  font-size: 30px;
  font-weight: 700;
  margin-top: -15px;
  text-shadow: 0.2px 0.2px 4px #000;
}
.service .body .ttl {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #222;
  background: linear-gradient(transparent 60%, #d2d2d2 60%);
  padding: 0 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.service .body .desc {
  font-size: 13px;
  margin: 0;
  color: #333;
  line-height: 1.6;
}
.service .illust {
  display: grid;
  place-items: center;
}
.service .illust img {
  width: 90px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
  background-size: cover;
}
@media (min-width: 420px) {
  .service .step {
    grid-template-columns: 80px 1fr 108px;
    padding: 16px 5px;
  }
  .service .badge {
    inline-size: 72px;
    block-size: 72px;
  }
  .service .badge .num {
    font-size: 22px;
  }
  .service .body .ttl {
    font-size: 16px;
  }
  .service .body .desc {
    font-size: 12px;
  }
  .service .illust img {
    width: 96px;
  }
}
.service .step-box {
  margin: 20px 0;
  text-align: center;
}
.service .step-box p {
  text-align: center;
  font-size: 14px;
}
.service .step-box button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #494949;
  color: #fefefe;
  border-radius: 10px;
  font-weight: 900;
}

/* ───── sutdy styles (mobile-first) ───── */
.sutdy {
  --ink: #161616;
  --muted: #6e6e6e;
  --grad1: #ea00ff;
  --grad2: #ff6b6b;
  --bg1: #fff675;
  --bg2: #ffffff;
  --lp: #4da8ff;
  --hp: #6bffcb;
  --cta: #ffe055;
  --card: rgba(255, 255, 255, .9);
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, var(--bg1), var(--bg2));
  padding: 28px 16px 40px;
  /* appear アニメーション初期状態 */
}
.sutdy .sd-head,
.sutdy .sd-hero,
.sutdy .sd-story,
.sutdy .sd-plans,
.sutdy .sd-dummy,
.sutdy .sd-can,
.sutdy .sd-cta {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sutdy .sd-head.is-in,
.sutdy .sd-hero.is-in,
.sutdy .sd-story.is-in,
.sutdy .sd-plans.is-in,
.sutdy .sd-dummy.is-in,
.sutdy .sd-can.is-in,
.sutdy .sd-cta.is-in {
  opacity: 1;
  transform: none;
}

/* ① 見出し */
.sd-head {
  margin: 20px;
}
.sd-head h4 {
  font-size: 30px;
  font-size: 3rem;
  position: relative;
  padding: 1rem;
  text-align: center;
  padding-bottom: 0;
}
.sd-head h4 span {
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}
.sd-head h4:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: #fa4141;
}
.sd-head h4 {
  margin: 0 0 12px;
  line-height: 1.3;
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 15px;
}
.sd-head h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 35px;
  font-weight: bold;
  margin: 30px auto;
}
.sd-head p {
  color: #000;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 20px;
}
.sd-head .band {
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--grad1), var(--grad2));
  box-shadow: 0 10px 26px rgba(255, 107, 107, 0.25);
}
.sd-head .band-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sd-head .band .pill {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
}
.sd-head .band .pill-lp {
  background: #2d8ef8;
  color: #fff;
}
.sd-head .band .pill-hp {
  background: #ff6b6b;
  color: #fff;
}
.sd-head .band .price {
  font-size: 22px;
  letter-spacing: 0.02em;
}
.sd-head .band-sub {
  display: block;
  opacity: 0.9;
}
.sd-head .band2 {
  margin-top: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--grad1), var(--grad2));
  box-shadow: 0 10px 26px rgba(255, 107, 107, 0.25);
}
.sd-head .band2-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sd-head .band2 .pill {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
}
.sd-head .band2 .pill-lp {
  background: #f6ff00;
  color: #fff;
  text-shadow: 0.2px 0.2px 3px #000;
}
.sd-head .band2 .pill-hp {
  background: #ff6b6b;
  color: #fff;
}
.sd-head .band2 .price {
  font-size: 22px;
  letter-spacing: 0.02em;
}
.sd-head .band2-sub {
  display: block;
}
.sd-head .limit {
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: inline-block;
  margin: 10px auto;
  padding: 8px 12px;
  border-radius: 10px;
  color: #e24d31;
  border: 1px solid #ffc8b2;
  background: #fff7f3;
  font-size: 22px;
}

/* ② ヒーロー（スマホ束＋短文） */
.sd-hero {
  display: grid;
  gap: 12px;
  margin: 16px 0 6px;
  height: 350px;
}
.sd-hero .phones {
  position: relative;
  height: 100%;
}
@media (min-width: 320px) {
  .sd-hero .phones {
    height: 300px;
  }
}
.sd-hero .phones .ph {
  position: absolute;
  width: 34%;
  aspect-ratio: 9/19.5;
  border-radius: 26px;
  background: #0c0c0c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25), inset 0 0 0 2px #000, inset 0 0 0 6px #111;
  -o-object-fit: cover;
     object-fit: cover;
}
.sd-hero .phones .ph-center {
  left: 33%;
  transform: translateX(-10%) translateY(-6px);
  z-index: 3;
}
.sd-hero .phones .ph-left {
  left: 4%;
  transform: rotate(-2deg) translateY(10px);
  z-index: 2;
}
.sd-hero .phones .ph-right {
  right: 4%;
  transform: rotate(2deg) translateY(14px);
  z-index: 2;
}
.sd-hero .copy h3 {
  margin-top: 20px;
  font-size: 20px;
}

/* ③ ストーリーカード（短文） */
.sd-story {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.sd-story .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url(/img/banby.jpg);
  background-size: cover;
}

/* ④ プラン（2枚） */
.sd-plans {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 4px;
}
.sd-plans .plan {
  margin-top: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}
.sd-plans .plan header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sd-plans .plan .nums {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sd-plans .plan .nums .now {
  font-size: 20px;
  font-weight: 900;
  border-bottom: 2px solid red;
}
.sd-plans .plan .nums s {
  color: #9b9b9b;
}
.sd-plans .plan .bullets {
  margin: 10px 0 6px;
  padding-left: 18px;
  line-height: 1.6;
}
.sd-plans .plan footer {
  color: var(--muted);
  font-size: 12px;
}

/* ⑤ ダミー見本（横スクロール・スナップ） */
.sd-dummy {
  text-align: center;
}
.sd-dummy h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}
.sd-dummy p {
  font-size: 14px;
  margin-bottom: 10px;
}
.sd-dummy .rail {
  height: 600px;
  display: flex;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.sd-dummy .rail::-webkit-scrollbar {
  display: none;
}
.sd-dummy .rail figure {
  height: 600px;
  min-width: 75%;
  aspect-ratio: 16/10;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: center;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.sd-dummy .rail figure img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
}
.sd-dummy .dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 0;
}
.sd-dummy .dots button {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.1490196078);
}
.sd-dummy .dots button.is-active {
  width: 18px;
  background: rgba(0, 0, 0, 0.6);
  transition: width 0.25s;
}

/* ⑥ できること（3タグ） */
.sd-can {
  text-align: center;
}
.sd-can h5 {
  font-size: 25px;
  margin: 10px;
}
.sd-can .tags {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.sd-can .tags li {
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}

/* ⑦ CTA */
.sd-cta {
  text-align: center;
  margin-top: 16px;
}
.sd-cta .cta {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 900;
  background: var(--cta);
  box-shadow: 0 10px 22px rgba(255, 208, 0, 0.35);
}
.sd-cta .tiny {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

/* 広め端末の微調整 */
@media (min-width: 420px) {
  .sd-head h2 {
    font-size: 32px;
  }
  .sd-hero .phones {
    height: 220px;
  }
}
.cominng {
  text-align: center;
  margin: 20px auto;
  padding-bottom: 50px;
  padding-top: 50px;
}
.cominng h4 {
  font-size: 30px;
}/*# sourceMappingURL=style.css.map */