@charset "UTF-8";
/* modern-css-reset をベースに軽量化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

:focus {
  outline: 2px solid #0ea5e9;
  /* focus ring */
  outline-offset: 2px;
}

body {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  background: #fff;
}
@media (min-width: 768px) {
  body {
    font-size: 24px;
  }
}

h1,
h2,
h3 {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 800;
  font-size: 1.8em;
  line-height: 1.2;
  color: #000;
}

strong {
  font-weight: 800;
  font-size: 1.1em;
}

small {
  font-size: 0.7em;
  display: inline-block;
}

/* クリック時にスッとスクロール */
html {
  scroll-behavior: smooth;
}

main {
  width: 100%;
}

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

.only-screen {
  display: block;
}

.print-only {
  display: none;
}

.pc-only {
  display: none;
}

@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
@media print {
  .only-screen {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
}
a,
button {
  display: inline-block;
  /* transformを効かせるために必須 */
  transition: transform 0.15s ease, filter 0.15s ease;
}
a:hover,
button:hover {
  filter: contrast(120%);
  transform: scale(1.05);
  /* 少し拡大 */
}
a:active,
button:active {
  transform: scale(1);
  /* 押した瞬間に元サイズに戻る */
}
a:focus,
button:focus {
  outline: none;
  /* デフォルト青枠は消す */
}
a:focus-visible,
button:focus-visible {
  /* カスタムフォーカスリング */
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px #00c2c7;
}

@media print {
  .screen-only {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .print-page {
    break-after: page;
  }
  .print-avoid {
    break-inside: avoid;
  }
  .print-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5mm;
  }
  .print-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 5mm;
  }
  body {
    margin-top: 30mm;
    margin-bottom: 20mm;
  }
  @page {
    margin: 12mm;
  }
  .screen-only {
    display: none !important;
  }
  /* 印刷ボタンを隠す */
  a[href^="tel:"] {
    text-decoration: none;
  }
  .header.is-transparent {
    opacity: 1 !important;
  }
  .hero {
    height: 100vh;
  }
}
.header {
  position: fixed;
  top: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.header.is-transparent {
  opacity: 0.1;
}
.header__logo {
  margin-left: clamp(0.667rem, 2vw, 2.667rem);
  filter: drop-shadow(2px 5px 12px rgba(0, 0, 0, 0.2));
  width: 100px;
}
.header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.667rem;
  margin: 0 1.333rem;
}
.header__nav__link {
  display: none;
}
.header__nav .btn-primary {
  margin-left: auto;
}
@media (min-width: 768px) {
  .header__logo {
    width: 15vw;
    min-width: 100px;
  }
  .header__nav {
    font-size: 0.9em;
  }
  .header__nav__link {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: max-content;
    background-color: #fff;
    padding: 0.667rem;
    border-radius: 999px;
    font-size: 0.8em;
    font-weight: 800;
    line-height: 1.2;
  }
  .header__nav__link::after {
    content: "▼";
    color: #00c2c7;
    font-size: 10px;
    margin-bottom: -0.333rem;
  }
  .header__nav .btn-primary {
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .header__nav {
    font-size: 1.1em;
  }
}

footer {
  background-color: #00c2c7;
  color: #fff;
  text-align: center;
  padding-block: 2rem;
}

.btn-primary {
  position: relative;
  display: inline-block;
  padding: 0.667rem 1.667rem;
  border-radius: 16px;
  border: 3px solid #000;
  background: #00c2c7;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 -8px 0 rgba(0, 0, 0, 0.15);
  text-shadow: 3px 0 1px #000, -3px 0 1px #000, 0 3px 1px #000, 0 -3px 1px #000, 2px 2px 1px #000, -2px -2px 1px #000, 2px -2px 1px #000, -2px 2px 1px #000;
}
.btn-primary-icon {
  text-shadow: none;
  margin-right: 0.333rem;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 0 30% 0;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.btn-primary--large {
  font-size: 1.25em;
  padding: 1.667rem 2rem;
}
@media (min-width: 768px) {
  .btn-primary {
    padding: 1rem 1.667rem;
    border: 3.5px solid #000;
  }
  .btn-primary--large {
    font-size: 1.25em;
    padding: 2rem 3.333rem;
  }
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.333rem;
  margin: 0;
  padding: 1.333rem;
  border-radius: 16px;
  list-style: none;
  background-color: rgb(218.2, 239.8, 153);
}
.badges__item {
  width: 200px;
  text-align: center;
  font-size: 0.8em;
  font-weight: 700;
  line-height: 1.5em;
  text-shadow: 3px 0 1px #fff, -3px 0 1px #fff, 0 3px 1px #fff, 0 -3px 1px #fff, 2px 2px 1px #fff, -2px -2px 1px #fff, 2px -2px 1px #fff, -2px 2px 1px #fff;
}
.badges__item strong {
  font-size: 1.5em;
  font-weight: 700;
}
.badges__icon {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  margin-inline: auto;
  margin-bottom: 0.667rem;
  font-size: 1.8em;
  background: #fff;
}

.star-list li {
  font-weight: 500;
}
.star-list li::marker {
  content: "★ ";
  color: #000;
}

.requirements__list {
  margin-bottom: 1.333rem;
}
.requirements__list dt {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 0.667rem;
}
.requirements__list dt::before {
  content: "【";
}
.requirements__list dt::after {
  content: "】";
}
.requirements__list dd {
  margin-left: 1.333rem;
  margin-bottom: 0.667rem;
  font-weight: 400;
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 1.333rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}
.cards__item strong {
  font-weight: 700;
}
.cards--benefits {
  display: flex;
  flex-wrap: wrap;
}
.cards--benefits .cards__item {
  width: 10em;
  height: 9.5em;
  padding: 1rem 0.333rem;
  border: 3px solid #666;
  border-radius: 16px;
  font-size: 0.85em;
}
.cards--benefits .cards__item strong {
  color: #666;
  font-size: 1.5em;
}
.cards--benefits .cards__item--turquoise {
  border-color: rgb(178.5, 236.7, 238.2);
}
.cards--benefits .cards__item--turquoise strong {
  color: #00c2c7;
}
.cards--benefits .cards__item--coral {
  border-color: rgb(255, 211.8, 207.6);
}
.cards--benefits .cards__item--coral strong {
  color: #ff6f61;
}
.cards--benefits .cards__item--orange {
  border-color: rgb(255, 232.2, 199.8);
}
.cards--benefits .cards__item--orange strong {
  color: #ffb347;
}
.cards--benefits .cards__icon {
  font-size: 2.2em;
  display: block;
  margin-bottom: 0.667rem;
}
.cards--scenes {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.cards--scenes .cards__item {
  border: 3px solid rgb(218.2, 239.8, 153);
  padding-bottom: 1.333rem;
}
.cards--scenes .cards__item > * {
  width: 100%;
}
.cards--scenes .cards__item h3 {
  font-size: 1.3em;
  padding-bottom: 1rem;
}
.cards--scenes .cards__item p {
  color: #666;
  font-size: 0.8em;
  font-weight: 400;
}
.cards--scenes .cards__icon {
  font-size: 1.5em;
  display: block;
  margin-block: 0.667rem;
}
@media (min-width: 768px) {
  .cards--scenes {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cards--services {
  display: flex;
  flex-direction: column;
  gap: 1.333rem;
}
.cards--services .cards__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  min-height: 180px;
  height: auto;
  padding: 2rem 1.667rem;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
}
.cards--services .cards__item > div {
  flex: 1;
  text-align: left;
}
.cards--services .cards__item h3 {
  font-size: 1.3em;
  margin-bottom: 0.333rem;
}
.cards--services .cards__item p,
.cards--services .cards__item li {
  color: #666;
  font-size: 0.7em;
  font-weight: 400;
}
.cards--services .cards__item .color--turquoise {
  color: #00c2c7;
}
.cards--services .cards__item .color--lavender {
  color: #b497f0;
}
.cards--services .cards__item .color--lime {
  color: #a3d900;
}
.cards--services .cards__item .color--orange {
  color: #ffb347;
}
.cards--services .cards__icon {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  font-size: 1.8em;
  background: #666;
}
.cards--services .cards__icon--turquoise {
  background-color: rgb(178.5, 236.7, 238.2);
}
.cards--services .cards__icon--lavender {
  background-color: rgb(225, 213.4, 249);
}
.cards--services .cards__icon--lime {
  background-color: rgb(218.2, 239.8, 153);
}
.cards--services .cards__icon--orange {
  background-color: rgb(255, 232.2, 199.8);
}
.cards--services .cards__bubble {
  margin-left: auto;
  position: absolute;
  right: -50px;
  top: -50px;
}
@media (min-width: 768px) {
  .cards--services .cards__bubble {
    position: static;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150vw;
  /* iOSのセーフエリアを考慮（ノッチ等） */
  padding-top: max(env(safe-area-inset-top, 0px), 0px);
  padding-bottom: max(env(safe-area-inset-bottom, 0px), 0px);
  margin: auto;
  text-align: center;
  color: #fff;
}
.hero__inner--hasbg {
  background-image: url("../img/hero-bg-bottom-sp.webp"), url("../img/hero-bg-top-sp.webp"), url("../img/hero-bg-center-sp.webp");
  background-position: bottom center, top center, center center;
  background-repeat: no-repeat;
  background-size: 100%, 100%, contain;
  /* 高解像度最適化（対応ブラウザ向け） */
  background-image: -webkit-image-set(url("../img/hero-bg-bottom-sp.webp") 1x, url("../img/hero-bg-bottom-sp@2x.webp") 2x), -webkit-image-set(url("../img/hero-bg-top-sp.webp") 1x, url("../img/hero-bg-top-sp@2x.webp") 2x), -webkit-image-set(url("../img/hero-bg-center-sp.webp") 1x, url("../img/hero-bg-center-sp@2x.webp") 2x);
  background-image: image-set(url("../img/hero-bg-bottom-sp.webp") 1x, url("../img/hero-bg-bottom-sp@2x.webp") 2x), image-set(url("../img/hero-bg-top-sp.webp") 1x, url("../img/hero-bg-top-sp@2x.webp") 2x), image-set(url("../img/hero-bg-center-sp.webp") 1x, url("../img/hero-bg-center-sp@2x.webp") 2x);
}
.hero__title {
  margin-bottom: 1.667rem;
  filter: drop-shadow(2px 5px 12px rgba(0, 0, 0, 0.2));
}
.hero__intro {
  background-color: #00c2c7;
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero__inner {
    height: 650px;
  }
  .hero__inner--hasbg {
    background-image: url("../img/hero-bg-bottom.webp"), url("../img/hero-bg-top.webp"), url("../img/hero-bg-center.webp");
    background-position: bottom center, top center, center center;
    background-repeat: no-repeat;
    background-size: 100%, 100%, contain;
    /* 高解像度最適化（対応ブラウザ向け） */
    background-image: -webkit-image-set(url("../img/hero-bg-bottom.webp") 1x, url("../img/hero-bg-bottom@2x.webp") 2x), -webkit-image-set(url("../img/hero-bg-top.webp") 1x, url("../img/hero-bg-top@2x.webp") 2x), -webkit-image-set(url("../img/hero-bg-center.webp") 1x, url("../img/hero-bg-center@2x.webp") 2x);
    background-image: image-set(url("../img/hero-bg-bottom.webp") 1x, url("../img/hero-bg-bottom@2x.webp") 2x), image-set(url("../img/hero-bg-top.webp") 1x, url("../img/hero-bg-top@2x.webp") 2x), image-set(url("../img/hero-bg-center.webp") 1x, url("../img/hero-bg-center@2x.webp") 2x);
  }
  .hero__title {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    /* 画面いっぱい。ただし内容が増えたら伸びてOK */
    height: 100vh;
    height: 100dvh;
    min-height: 800px;
  }
}

.section {
  padding: 1rem;
  overflow: hidden;
}
.section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.667rem;
  max-width: 1120px;
  background-color: #fff;
  padding-block: 1.333rem 2rem;
  padding-inline: 1rem;
  margin-inline: auto;
}
.section__title {
  margin-bottom: 2rem;
}
.section__icon {
  display: block;
  margin: 0 auto 1.333rem;
  font-size: 2em;
  text-align: center;
}
.section__intro {
  text-align: center;
}
@media (min-width: 768px) {
  .section {
    padding: 5.333rem 4.667rem;
  }
  .section__inner {
    gap: 3.333rem;
    padding-block: 4rem 5rem;
    padding-inline: 1.667rem;
  }
}

#benefits {
  background-color: rgb(255, 232.2, 199.8);
  position: relative;
}
#benefits .section__bg-image {
  display: none;
}
@media (min-width: 768px) {
  #benefits .section__bg-image {
    position: absolute;
    right: 1.333rem;
    bottom: 0;
  }
}

#scenes-and-effects .block-title {
  position: relative;
  display: inline-block;
  max-width: 900px;
  width: 100%;
  height: 84px;
  line-height: 0;
  color: transparent;
}
#scenes-and-effects .block-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/effects-title.webp") no-repeat center/contain;
  background-image: image-set(url("../img/effects-title.webp") 1x, url("../img/effects-title@2x.webp") 2x);
}

#cases {
  background-color: rgb(225, 213.4, 249);
}
#cases .block-title {
  position: relative;
  display: inline-block;
  max-width: 900px;
  width: 100%;
  height: 84px;
  line-height: 0;
  color: transparent;
}
#cases .block-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(url("../img/cases-title.webp") 1x, url("../img/cases-title@2x.webp") 2x);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#cases .section__inner {
  position: relative;
}

.photo-marquee {
  --gap: clamp(16px, 2vw, 32px);
  --speed: 60s;
  overflow: hidden;
  position: relative;
  padding-block: 200px;
  margin-block: -150px;
  border-radius: 16px;
  width: 100vw;
  /* is-ready になったら2本のアニメを同時適用 */
  /* ホバーで一時停止（2本とも止める） */
}
.photo-marquee__bg-image {
  --expand: 80px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(7%) scale(0.4);
  transform-origin: center center;
  max-width: none;
  display: block;
  pointer-events: none;
  z-index: 0;
}
.photo-marquee__track {
  width: max-content;
  display: flex;
  gap: var(--gap);
  align-items: center;
  will-change: transform;
  /* ▼ is-ready までは止めておく（初期チラつき防止） */
  animation: none;
}
.photo-marquee.is-ready .photo-marquee__track {
  animation-name: marquee-scroll, marquee-half;
  animation-duration: var(--speed), calc(var(--speed) / 2);
  animation-timing-function: linear, linear;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}
.photo-marquee li {
  width: clamp(150px, 26vw, 220px);
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(var(--y, 0)) rotate(var(--rot, 0deg));
}
.photo-marquee li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}
.photo-marquee:hover .photo-marquee__track {
  animation-play-state: paused, paused;
}
@media (prefers-reduced-motion: reduce) {
  .photo-marquee__track {
    animation: none !important;
  }
}
@media (min-width: 768px) {
  .photo-marquee__bg-image {
    transform: translateX(-50%) scale(1);
  }
}

/* 1周で -50% 移動（前半/後半で同じ並びが前提） */
@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}
/* 半周ダミー（イベント用） */
@keyframes marquee-half {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
#services {
  background-color: rgb(255, 211.8, 207.6);
}
#services .section__inner {
  background: transparent;
}

#contact .cta-block {
  background-color: rgb(178.5, 236.7, 238.2);
  padding: 1.667rem;
  text-align: center;
  border-radius: 16px;
}
#contact .cta-block__intro {
  font-weight: 700;
  font-size: 1.1em;
}
#contact .cta-block small {
  font-size: 0.7em;
}
#contact .cta-block__cta {
  padding-block: 2rem;
}
#contact .cta-block__print {
  margin-block: 1.333rem 0.667rem;
}
@media (min-width: 768px) {
  #contact .cta-block {
    padding: 4rem;
  }
}
#contact .company {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.667rem;
  font-size: 0.9em;
  font-style: normal;
}
#contact .company__name, #contact .company__url, #contact .company__tel {
  font-weight: 700;
}
#contact .company__tel {
  margin-bottom: 2em;
}
#contact .company__tel, #contact .company__address-main, #contact .company__address-aict {
  font-size: 0.8em;
}/*# sourceMappingURL=main.css.map */