@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Zen+Old+Mincho&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, summary {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* common */
*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
:root {
  --primary: #1a1a2a;
  --accent:#0046ff;
  --accent-pale:#5483ff;
  --text: #333333;
  --black:#090919;
  --text-pale:#666666;
  --bg:#aeaeae;
  --white: #fff;
}

h1.site-title {
  font-size: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -1000px;
  left: -1000px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.ff-ja {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.ff-miincho {
  font-family: "Zen Old Mincho VF", serif;
}

.ff-dela {
  font-family: "Dela Gothic One", sans-serif;
}

.primary-color {
  color: var(--primary);
}

.accent-color {
  color: var(--accent);
}

.white {
  color: var(--white);
}

.gray {
  color: var(--text-pale);
}

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

.t-right {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.large {
  font-size: 1.5em;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.radius4 {
  border-radius: 4px;
}

.radius8 {
  border-radius: 8px;
}

.condensed {
  font-family: "Zen Old Mincho VF", serif;
  transform: scaleX(0.9);
  transform-origin: left;
  letter-spacing: -0.08em;
  width: 111.11%;
  text-spacing-trim: space-first ideograph-alpha ideograph-numeric;
  text-autospace: ideograph-alpha ideograph-numeric;
}

.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  content: "";
  width: 1em;
  height: 1lh;
  background: radial-gradient(var(--text) 0.2em, transparent 0.2em) no-repeat center/1em 1em;
  position: absolute;
  inset: 0;
}
.list-normal > li:not(:first-of-type) {
  margin-top: 0.5em;
}

.list-triangle {
  position: relative;
  padding-left: 1.5em;
}
.list-triangle::before {
  content: "";
  width: 0.75em;
  height: 1em;
  background: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.5em);
}

.link-text {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.btn {
  width: max(260 / 16 * 1rem, 400 / 1680 * 100vw);
  height: max(56 / 16 * 1rem, 76 / 1680 * 100vw);
  background: var(--accent);
  border: 3px solid var(--black);
  font-size: max(16 / 16 * 1rem, 32 / 1680 * 100vw);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Zen Old Mincho VF", serif;
  font-weight: 900;
  letter-spacing: 0;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.sec {
  padding: max(64 / 16 * 1rem, 128 / 1680 * 100vw) 0;
  background: var(--bg);
}

.container {
  width: 88%;
  margin-inline: auto;
  position: relative;
}

.w96 {
  width: 96%;
  margin-inline: auto;
}

.flex {
  display: flex;
}

.jc-center {
  justify-content: center;
}

.jc-right {
  justify-content: flex-end;
}

.al-center {
  align-items: center;
}

.grid {
  display: grid;
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
  gap: max(16 / 16 * 1rem, 40 / 1680 * 100vw);
}
@media (max-width: 767px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
  gap: max(16 / 16 * 1rem, 40 / 1680 * 100vw);
}
@media (max-width: 767px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}

.mt160 {
  margin-top: max(96 / 16 * 1rem, 160 / 1680 * 100vw);
}

.mt112 {
  margin-top: max(64 / 16 * 1rem, 112 / 1680 * 100vw);
}

.mt96 {
  margin-top: max(56 / 16 * 1rem, 96 / 1680 * 100vw);
}

.mt80 {
  margin-top: max(48 / 16 * 1rem, 80 / 1680 * 100vw);
}

.mt64 {
  margin-top: max(40 / 16 * 1rem, 64 / 1680 * 100vw);
}

.mt48 {
  margin-top: max(32 / 16 * 1rem, 48 / 1680 * 100vw);
}

.mt32 {
  margin-top: max(16 / 16 * 1rem, 32 / 1680 * 100vw);
}

.mt24 {
  margin-top: max(16 / 16 * 1rem, 24 / 1680 * 100vw);
}

.mt16 {
  margin-top: max(12 / 16 * 1rem, 16 / 1680 * 100vw);
}

.mt8 {
  margin-top: max(6 / 16 * 1rem, 8 / 1680 * 100vw);
}

.mt4 {
  margin-top: 4px;
}

.js-accordion {
  cursor: pointer;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-out;
}
.accordion-content.open {
  grid-template-rows: 1fr;
}
.accordion-content > div {
  overflow: hidden;
}

.pagetop {
  color: var(--primary);
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 16px;
  transition: all 0.3s ease-out;
  writing-mode: vertical-rl;
  z-index: 10;
}
.pagetop:hover {
  letter-spacing: 0.2em;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
.aioseo-breadcrumbs {
  margin-top: 1em;
  padding: 8px 0;
  letter-spacing: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text);
}
.aioseo-breadcrumbs .aioseo-breadcrumb {
  font-size: max(10 / 16 * 1rem, 12 / 1680 * 100vw);
  background: var(--gray);
  border: 1px solid var(--black);
  border-radius: 20px;
  padding: 4px 8px;
  color: var(--white);
}
.aioseo-breadcrumbs .aioseo-breadcrumb:has(a) {
  background: var(--white);
  color: var(--text);
}
.aioseo-breadcrumbs a {
  color: var(--text-pale);
}
.aioseo-breadcrumbs br {
  display: none;
}

.copyright {
  font-size: max(10 / 16 * 1rem, 12 / 1680 * 100vw);
}

@-webkit-keyframes loadedFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loadedFade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes navMoveSp {
  0% {
    transform: translateX(-30px);
    opacity: 0.2;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes navMoveSp {
  0% {
    transform: translateX(-30px);
    opacity: 0.2;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(105%);
  }
  51% {
    transform: translateX(-105%);
  }
  0% {
    transform: translateX(0);
  }
}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(105%);
  }
  51% {
    transform: translateX(-105%);
  }
  0% {
    transform: translateX(0);
  }
}
@-webkit-keyframes fukidashiA {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  75% {
    transform: scale(1.1);
    opacity: 1;
  }
  90% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fukidashiA {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  75% {
    transform: scale(1.1);
    opacity: 1;
  }
  90% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fukidashiB {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fukidashiB {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fukidashiC {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  75% {
    transform: scale(1.2);
    opacity: 1;
  }
  90% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fukidashiC {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  75% {
    transform: scale(1.2);
    opacity: 1;
  }
  90% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fukidashiD {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fukidashiD {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes caseTextAnime {
  0% {
    grid-template-columns: 0fr;
  }
  100% {
    grid-template-columns: 1fr;
  }
}
@keyframes caseTextAnime {
  0% {
    grid-template-columns: 0fr;
  }
  100% {
    grid-template-columns: 1fr;
  }
}
@-webkit-keyframes ringiDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ringiDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.loading-wrap {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease-out;
}
.loading-wrap.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader {
  width: 24vw;
  aspect-ratio: 1;
  position: relative;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  box-shadow: 0 0 0 50px;
  -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
          clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.loader:after {
  -webkit-animation: l5 1s infinite;
          animation: l5 1s infinite;
  transform: perspective(300px) translateZ(0px);
}

@-webkit-keyframes l5 {
  to {
    transform: perspective(300px) translateZ(150px);
    opacity: 0;
  }
}

@keyframes l5 {
  to {
    transform: perspective(300px) translateZ(150px);
    opacity: 0;
  }
}
html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 50px;
  }
}
html.lock {
  overflow: hidden;
}

body {
  color: var(--primary);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt" on;
  font-optical-sizing: auto;
  font-size: max(14 / 16 * 1rem, 16 / 1680 * 100vw);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  overflow-x: clip;
}

.mv-wrap {
  height: 100dvh;
  background: var(--text);
  position: relative;
}
.mv-wrap .movie-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.mv-wrap .movie-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-dotted-blk.webp) repeat center/26px;
  opacity: 0.7;
}
.mv-wrap .movie-wrap .mv-video {
  opacity: 0.7;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-wrap .catch-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  height: 100%;
}
.mv-wrap .catch-wrap .mv-sub-catch {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho VF", serif;
  font-weight: 700;
  font-size: max(28 / 16 * 1rem, 72 / 1680 * 100vw);
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mv-wrap .catch-wrap .mv-sub-catch.loaded {
  -webkit-animation: loadedFade 2s 1s ease forwards;
          animation: loadedFade 2s 1s ease forwards;
}
.mv-wrap .catch-wrap .catch {
  font-size: max(50 / 16 * 1rem, 140 / 1680 * 100vw);
  font-family: "Zen Old Mincho VF", serif;
  text-align: center;
  color: var(--white);
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mv-wrap .catch-wrap .catch.loaded {
  -webkit-animation: loadedFade 2s 1.3s ease forwards;
          animation: loadedFade 2s 1.3s ease forwards;
}
.mv-wrap .catch-wrap .mv-cta {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mv-wrap .catch-wrap .mv-cta.loaded {
  -webkit-animation: loadedFade 2s 1.6s ease forwards;
          animation: loadedFade 2s 1.6s ease forwards;
}

.bg-dotted-gray {
  background: var(--bg);
  position: relative;
}
.bg-dotted-gray::before {
  content: "";
  background: url(../images/bg-dotted.webp) repeat center/26px, var(--bg);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.sec-story {
  padding: max(16 / 16 * 1rem, 32 / 1680 * 100vw) 0 max(32 / 16 * 1rem, 96 / 1680 * 100vw);
}

.story-lead {
  font-size: max(16 / 16 * 1rem, 38 / 1680 * 100vw);
  letter-spacing: 0;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.story-content {
  width: 87%;
  margin-inline: auto;
  margin-top: max(48 / 16 * 1rem, 160 / 1680 * 100vw);
}

.story-cate {
  font-size: max(16 / 16 * 1rem, 24 / 1680 * 100vw);
  color: var(--white);
  font-weight: 100;
}

.heading {
  font-size: max(32 / 16 * 1rem, 55 / 1680 * 100vw);
  font-weight: 700;
  line-height: 1.4;
}

.lead-catch {
  font-size: max(20 / 16 * 1rem, 96 / 1680 * 100vw);
  font-weight: 700;
  line-height: 1.4;
}

.lead {
  font-size: max(20 / 16 * 1rem, 36 / 1680 * 100vw);
  line-height: 1.6;
  font-weight: 700;
}

.text {
  font-size: max(16 / 16 * 1rem, 24 / 1680 * 100vw);
  line-height: 2;
  font-weight: 700;
}

.sec-moving {
  min-height: 100dvh;
  padding-bottom: max(64 / 16 * 1rem, 120 / 1680 * 100vw);
}
@media (max-width: 767px) {
  .sec-moving {
    min-height: auto;
  }
}

.text-moving {
  font-size: max(48 / 16 * 1rem, 214 / 1680 * 100vw);
  white-space: nowrap;
  line-height: 0.84;
  font-weight: 500;
  text-align: center;
}

.text-moving-btm {
  font-size: max(48 / 16 * 1rem, 200 / 1680 * 100vw);
  white-space: nowrap;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
}

.photos-wrap {
  width: min(700px, 88%);
  aspect-ratio: 7/5;
  margin-inline: auto;
  position: relative;
}
.photos-wrap .photo1,
.photos-wrap .photo2,
.photos-wrap .photo3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 7/5;
  width: 0;
  transform-origin: center center;
}
@media (max-width: 767px) {
  .photos-wrap .photo1,
.photos-wrap .photo2,
.photos-wrap .photo3 {
    background-size: 90vw;
  }
}

.photo1 {
  background: url(../images/moving-photo1.webp) no-repeat center/700px;
  z-index: 1;
}

.photo2 {
  background: url(../images/moving-photo2.webp) no-repeat center/700px;
  z-index: 2;
}

.photo3 {
  background: url(../images/moving-photo3.webp) no-repeat center/700px;
  z-index: 3;
}

.sec-ringi {
  padding-bottom: max(32 / 16 * 1rem, 96 / 1680 * 100vw);
}

.text-ringi {
  margin-inline: auto;
  font-size: max(16 / 16 * 1rem, 96 / 1680 * 100vw);
  line-height: 1.1;
  font-weight: 700;
}

.ringi-list {
  border-top: 3px solid var(--primary);
}
.ringi-list > li {
  border-bottom: 3px solid var(--primary);
  display: flex;
  align-items: center;
  padding-left: max(8 / 16 * 1rem, 32 / 1680 * 100vw);
  overflow: hidden;
}
.ringi-list > li .ringi-img {
  width: max(80 / 16 * 1rem, 230 / 1680 * 100vw);
  transform: translateY(-100%);
}
.ringi-list > li .ringi-img.is-active {
  -webkit-animation: ringiDown 0.3s ease forwards;
          animation: ringiDown 0.3s ease forwards;
}
.ringi-list > li .ringi-img.is-active:nth-child(1) {
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}
.ringi-list > li .ringi-img.is-active:nth-child(2) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.ringi-list > li .ringi-img.is-active:nth-child(3) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.ringi-list > li .ringi-list-text {
  flex: 1;
  font-size: max(14 / 16 * 1rem, 36 / 1680 * 100vw);
  font-weight: 700;
  padding-right: 1em;
}

.sec-hossy,
.sec-movie {
  padding: 0 0 max(16 / 16 * 1rem, 64 / 1680 * 100vw);
}

.text-hossy {
  font-size: max(14 / 16 * 1rem, 25 / 1680 * 100vw);
  line-height: 1.9;
  font-weight: 700;
}

.hossy-img-bottom-text {
  font-size: max(23 / 16 * 1rem, 70 / 1680 * 100vw);
  font-weight: 500;
  line-height: 1.2;
}

.hossy-img-wrap {
  display: grid;
  grid-template-columns: 683fr 663fr;
}
.hossy-img-wrap .semminer, .hossy-img-wrap .magic {
  position: relative;
}
.hossy-img-wrap .semminer a:hover, .hossy-img-wrap .magic a:hover {
  opacity: 0.7;
}
.hossy-img-wrap .semminer .hossy-img-title, .hossy-img-wrap .magic .hossy-img-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: max(18 / 16 * 1rem, 64 / 1680 * 100vw);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  font-family: "Zen Old Mincho VF", serif;
  z-index: 1;
  text-shadow: 3px 3px 0px rgb(0, 0, 0);
}
.hossy-img-wrap .semminer {
  margin-right: -3vw;
}
.hossy-img-wrap .semminer .hossy-img-title {
  left: 44%;
}
.hossy-img-wrap .magic {
  margin-left: -3vw;
}
.hossy-img-wrap .magic .hossy-img-title {
  left: 56%;
}

.movie-sec-text {
  font-size: max(18 / 16 * 1rem, 92 / 1680 * 100vw);
  font-weight: 500;
}

.case-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}
@media (max-width: 767px) {
  .case-list-wrap {
    grid-template-columns: 1fr;
  }
}
.case-list-wrap > li {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.case-list-wrap > li:first-of-type {
  border-right: 4px solid var(--black);
}
@media (max-width: 767px) {
  .case-list-wrap > li:first-of-type {
    border-right: none;
    border-bottom: 4px solid var(--black);
  }
}
.case-list-wrap > li video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-out;
}
.case-list-wrap > li .text-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.case-list-wrap > li .text-box.show {
  opacity: 1;
}
.case-list-wrap > li .text-box.show .case-catch > p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: caseTextAnime 0.5s ease-out forwards;
          animation: caseTextAnime 0.5s ease-out forwards;
  padding: 0.25em;
}
.case-list-wrap > li .text-box.show .case-catch > p:nth-child(1) {
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}
.case-list-wrap > li .text-box.show .case-catch > p:nth-child(2) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.case-list-wrap > li .text-box.show .case-catch > p:nth-child(3) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.case-list-wrap > li .text-box .case-catch {
  position: absolute;
  bottom: 5em;
  left: 1.5em;
  display: flex;
  flex-direction: column;
}
.case-list-wrap > li .text-box .case-catch > p {
  display: grid;
  width: 0;
  grid-template-columns: 0fr;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.case-list-wrap > li .text-box .case-catch > p span {
  display: inline-block;
  padding: 0.25em 0;
  font-size: max(14 / 16 * 1rem, 36 / 1680 * 100vw);
  font-weight: 700;
  min-width: 0;
  white-space: nowrap;
  background: var(--white);
}
.case-list-wrap > li .text-box .case-spec-list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 30fr 20fr 15fr 20fr;
  border-top: 3px solid var(--white);
}
.case-list-wrap > li .text-box .case-spec-list > li {
  padding: 0.5em 1em;
  text-align: center;
  background: rgba(0, 0, 0, 0.2666666667);
}
.case-list-wrap > li .text-box .case-spec-list > li:not(:first-of-type) {
  border-left: 3px solid var(--white);
}
.case-list-wrap > li .text-box .case-spec-list > li .text {
  color: var(--white);
  line-height: 1.3;
}
@media (max-width: 767px) {
  .case-list-wrap > li .text-box .case-spec-list > li .text {
    font-size: 13px;
  }
}

.voice-sec-text {
  font-size: max(26 / 16 * 1rem, 116 / 1680 * 100vw);
  font-weight: 500;
  color: var(--white);
}

.sec-voice {
  background: url(../images/bg-dotted-blue.webp) repeat center/26px;
}

.voice-line1 {
  display: grid;
  grid-template-columns: 30fr 43fr 20fr 27fr;
  gap: max(16 / 16 * 1rem, 32 / 1680 * 100vw);
}

.voice-line2 {
  display: grid;
  grid-template-columns: 31fr 31fr 16fr 28fr;
  gap: max(16 / 16 * 1rem, 48 / 1680 * 100vw);
}

.voice-line3 {
  display: grid;
  grid-template-columns: 29fr 22fr 31fr 26fr;
  gap: max(16 / 16 * 1rem, 32 / 1680 * 100vw);
}

.voice2 {
  position: relative;
  top: 2.5vw;
}

.voice4 {
  position: relative;
  left: 1.3vw;
}

.voice5 {
  position: relative;
  left: 2vw;
  top: -2vw;
}

.voice6 {
  position: relative;
  left: 2vw;
  top: 2vw;
  transform: scale(0.9);
}

.voice7 {
  position: relative;
  top: -4vw;
}

.voice8 {
  position: relative;
  top: 3vw;
  right: 1vw;
}

.voice9 {
  position: relative;
}
.voice9 img {
  position: absolute;
  top: 0;
  left: -2vw;
}

.voice10 {
  position: relative;
  top: 3vw;
}

.voice12 {
  position: relative;
  top: 3vw;
  right: 1vw;
}

.fukidashiA, .fukidashiB, .fukidashiC, .fukidashiD {
  transform-origin: center bottom;
  opacity: 0;
  transform: scale(0.1);
}

.fukidashiA.is-active {
  -webkit-animation: fukidashiA 0.3s ease forwards;
          animation: fukidashiA 0.3s ease forwards;
}

.fukidashiB.is-active {
  -webkit-animation: fukidashiB 0.3s 0.2s ease forwards;
          animation: fukidashiB 0.3s 0.2s ease forwards;
}

.fukidashiC.is-active {
  -webkit-animation: fukidashiC 0.3s 0.4s ease forwards;
          animation: fukidashiC 0.3s 0.4s ease forwards;
}

.fukidashiD.is-active {
  -webkit-animation: fukidashiD 0.3s 0.6s ease forwards;
          animation: fukidashiD 0.3s 0.6s ease forwards;
}

.footer {
  padding: max(32 / 16 * 1rem, 64 / 1680 * 100vw) 0;
}

.f-info-text {
  text-align: center;
  font-size: max(13 / 16 * 1rem, 20 / 1680 * 100vw);
  color: var(--text-pale);
  font-family: "Dela Gothic One", sans-serif;
  line-height: 1.8;
}

.copyright {
  font-size: max(10 / 16 * 1rem, 12 / 1680 * 100vw);
  color: var(--text-pale);
  text-align: center;
  font-family: "Dela Gothic One", sans-serif;
}

.sns-icon {
  width: 24px;
}

.thanks-bg {
  background: #d9e7f1;
}

.thanks-title {
  text-align: center;
  font-size: max(24 / 16 * 1rem, 64 / 1680 * 100vw);
  font-weight: 700;
}

.thanks-box {
  width: min(640px, 100%);
  margin-inline: auto;
  padding: clamp(16px, 3.75vw, 48px);
  background: var(--white);
  border-radius: 16px;
}

.thanks-text {
  font-size: clamp(0.875rem, 0.625rem + 0.625vw, 1.125rem);
  font-weight: 500;
  line-height: 2;
}
/*# sourceMappingURL=style.css.map */