@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background-color: #f3fbff;
}

.global_head {
  margin: 0;
}

.wrap {
  font-family: "Noto Sans JP";
  position: relative;
  z-index: 0;
  color: #333;
}
.wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: screen;
  opacity: 0.4;
}
.wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(8px);
  z-index: -2;
}

.local-head {
  --lh-top: 110px;
}
@media only screen and (min-width: 768px) {
  .local-head {
    background-color: #f4db35;
  }
}
.local-head__icon {
  position: fixed;
  background-color: #fff;
  border-top: 3px solid #f4db35;
  border-bottom: 3px solid #f4db35;
  border-left: 3px solid #f4db35;
  box-shadow: 0 3px 0 #f4db35;
  z-index: 999;
  border-radius: 30px 0 0 30px;
}
@media only screen and (max-width: 767px) {
  .local-head__icon {
    transition: transform 0.4s ease;
    top: var(--lh-top);
    right: 0;
    width: 60px;
    height: 60px;
    transition: right 0.4s ease;
  }
  .local-head__icon.is-open {
    right: 247px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__icon {
    display: none;
    top: 0px;
    right: 0;
    width: 110px;
    height: 90px;
  }
}
.local-head__icon::after {
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 7px);
  position: absolute;
  top: 3px;
  right: 0;
  transition: top 0.3s ease;
  background-color: #f4db35;
  border-radius: 30px 0 0 30px;
}
.local-head__icon span {
  display: block;
  position: absolute;
  z-index: 99;
  height: 3px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .local-head__icon span {
    width: 25px;
    right: 11px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__icon span {
    width: 28px;
    left: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .local-head__icon span:nth-child(1) {
    top: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__icon span:nth-child(1) {
    top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .local-head__icon span:nth-child(2) {
    top: 25.5px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__icon span:nth-child(2) {
    top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .local-head__icon span:nth-child(3) {
    top: 34px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__icon span:nth-child(3) {
    top: 48px;
  }
}
.local-head__nav {
  font-family: "Raleway";
  font-weight: 700;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .local-head__nav {
    transition: transform 0.4s ease;
    background-color: #fff;
    border-top: 3px solid #f4db35;
    border-bottom: 3px solid #f4db35;
    border-left: 3px solid #f4db35;
    box-shadow: 3px 3px 0 #f4db35;
    border-radius: 0 0 0 30px;
    flex-direction: column;
    width: 250px;
    position: fixed;
    top: var(--lh-top);
    right: -250px;
    transition: right 0.4s ease, top 0.3s ease;
    z-index: 99;
    padding: 30px 0;
  }
  .local-head__nav::before {
    content: "";
    width: 5px;
    height: 47px;
    position: absolute;
    top: 3px;
    left: 0;
    background-color: #f4db35;
    z-index: -1;
  }
  .local-head__nav::after {
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 7px);
    position: absolute;
    top: 3px;
    right: 0;
    background-color: #f4db35;
    border-radius: 0 0 0 30px;
    z-index: -2;
  }
  .local-head__nav.is-open {
    right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__nav {
    justify-content: center;
    align-items: center;
    height: 70px;
  }
}
.local-head__nav-item {
  font-weight: 800;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .local-head__nav-item {
    font-size: 1.2rem;
    margin: 0 20px 10px;
    padding: 0 0 10px;
    border-bottom: 1px dashed #e8631f;
  }
  .local-head__nav-item:last-of-type {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__nav-item {
    text-align: center;
    font-size: 1.4rem;
    height: 70px;
  }
}
.local-head__nav-item span {
  display: block;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 1px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .local-head__nav-item span {
    font-size: 0.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .local-head__nav-item span {
    font-size: 0.7rem;
  }
}
.local-head a {
  color: #e8631f;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .local-head a {
    justify-content: center;
    align-items: center;
    padding: 0 35px;
  }
  .local-head a:hover {
    color: #fff;
  }
}

.local-head--scrolled .local-head__icon,
.local-head--scrolled .local-head__nav {
  transform: translateY(-90px);
}

.hero {
  position: relative;
  width: 100dvw;
  margin: 0;
  overflow: hidden;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .hero {
    background-position: top -50px right -250px;
    height: calc(100dvh - 40px);
  }
  .hero::after {
    content: "";
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f1e5cc;
    z-index: -1;
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    background-position: center;
    aspect-ratio: 2048/1226;
  }
}

@keyframes heroPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 767px) {
  @keyframes heroDatePop {
    0% {
      opacity: 0;
      transform: translateX(-50%) scale(0.85);
    }
    60% {
      opacity: 1;
      transform: translateX(-50%) scale(1.1);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
  }
  @keyframes heroCharaPop {
    0% {
      opacity: 0;
      transform: translateX(-113%) scale(0.8);
    }
    60% {
      opacity: 1;
      transform: translateX(-113%) scale(1.1);
    }
    100% {
      opacity: 1;
      transform: translateX(-113%) scale(1);
    }
  }
}
@media (min-width: 768px) {
  @keyframes heroDatePop {
    0% {
      opacity: 0;
      transform: scale(0.85);
    }
    60% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  @keyframes heroCharaPop {
    0% {
      opacity: 0;
      transform: translateX(34%) scale(0.8);
    }
    60% {
      opacity: 1;
      transform: translateX(34%) scale(1.1);
    }
    100% {
      opacity: 1;
      transform: translateX(34%) scale(1);
    }
  }
}
.hero__ttl {
  opacity: 0;
  transform: scale(0.85);
  margin: 0;
  position: absolute;
  left: 4.167%;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero__ttl {
    top: 2%;
  }
}
@media only screen and (min-width: 768px) {
  .hero__ttl {
    top: 3%;
  }
}
.hero__ttl img {
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}
@media only screen and (max-width: 767px) {
  .hero__ttl img {
    width: 215px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__ttl img {
    width: 33.333%;
  }
}

.hero__date {
  opacity: 0;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero__date {
    transform: translateX(-50%) scale(0.85);
    left: 50%;
    bottom: 3.5%;
    width: min(90vw, 550px);
  }
}
@media only screen and (min-width: 768px) {
  .hero__date {
    transform: scale(0.85);
    left: 4.167%;
    bottom: 5%;
  }
}
.hero__date img {
  height: auto;
  filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.25));
}
@media only screen and (max-width: 767px) {
  .hero__date img {
    width: 100%;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .hero__date img {
    width: 35%;
  }
}

.hero__chara {
  opacity: 0;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .hero__chara {
    transform: translateX(-113%) scale(0.85);
    left: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .hero__chara {
    transform: translateX(34%) scale(0.85);
    right: 2.5%;
  }
}
.hero__chara img {
  height: auto;
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .hero__chara img {
    width: 280%;
  }
}
@media only screen and (min-width: 768px) {
  .hero__chara img {
    width: 66.667%;
  }
}

.hero__logo {
  opacity: 0;
  position: absolute;
  top: 0;
  right: max(0px, (100vw - 100%) / 2 + env(safe-area-inset-right));
  z-index: 1;
}
.hero__logo img {
  height: auto;
}
@media only screen and (max-width: 767px) {
  .hero__logo img {
    width: 14vw;
  }
}
@media only screen and (min-width: 768px) {
  .hero__logo img {
    width: clamp(60px, 7.5vw, 120px);
  }
}

.hero.show .hero__ttl {
  animation: heroPop 0.8s ease-out 0.6s forwards;
}
.hero.show .hero__date {
  animation: heroDatePop 0.8s ease-out 1s forwards;
}
.hero.show .hero__chara {
  animation: heroCharaPop 0.8s ease-out 0.2s forwards;
}
.hero.show .hero__logo {
  opacity: 1;
  transform: scale(1);
  transition: ease-out 0.4s;
  transition-delay: 1.5s;
}

.block {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .block {
    width: 88%;
  }
}
@media only screen and (min-width: 768px) {
  .block {
    max-width: 950px;
    width: 90%;
  }
}

h2 {
  color: #0869c1;
  text-align: center;
  font-family: "Raleway";
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.7rem;
    margin: 0 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 4.6rem;
    margin: 0 0 60px;
  }
}
h2 span {
  display: block;
  line-height: 1;
  letter-spacing: 0.2rem;
  margin-top: -3px;
}
@media only screen and (max-width: 767px) {
  h2 span {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  h2 span {
    font-size: 1.3rem;
  }
}

.news {
  background-color: #f3fbff;
}
@media only screen and (max-width: 767px) {
  .news {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 768px) {
  .news {
    padding: 70px 0;
  }
}
@media only screen and (min-width: 768px) {
  .news .block {
    max-width: 1100px;
  }
}
.news__content {
  display: grid;
}
@media only screen and (min-width: 768px) {
  .news__content {
    grid-template-columns: 270px 1fr;
  }
}
@media only screen and (min-width: 768px) {
  .news h2 {
    margin: 0;
    text-align: left;
  }
}
.news__item {
  background-color: #fff;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  border-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .news__item {
    padding: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .news__item {
    padding: 40px;
  }
}
.news__item dl {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .news__item dl {
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 768px) {
  .news__item dl {
    font-size: 1.1rem;
  }
}
.news__item dl dt {
  margin: 0 0 10px;
  background-color: #0869c1;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  border-radius: 99px;
  padding: 5px 15px 8px;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .news__item dl dt {
    font-size: 1.1rem;
  }
}
.news__item dl dd {
  margin: 0;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
}

@keyframes storyPop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.story {
  background-image: url(../img/story-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .story {
    background-position: center left -300px;
    padding: 80px 0 100px;
  }
}
@media only screen and (min-width: 768px) {
  .story {
    background-position: center left;
    padding: 130px 0 150px;
  }
}
.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2084a2;
  mix-blend-mode: screen;
  z-index: -2;
}
.story::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#fff 20%, transparent 31%), radial-gradient(#fff 20%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 4px 4px;
  z-index: -1;
}
.story__lead {
  opacity: 0;
  transform: scale(0.85);
  will-change: transform, opacity;
  display: grid;
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff;
  paint-order: stroke;
  text-shadow: 0 0 15px white;
}
@media only screen and (max-width: 767px) {
  .story__lead {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .story__lead {
    gap: 15px 0;
    margin-bottom: 50px;
  }
}
.story__lead p {
  font-weight: 800;
  margin: 0;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .story__lead p {
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.05rem;
  }
}
@media only screen and (min-width: 768px) {
  .story__lead p {
    font-size: 2.1rem;
    line-height: 1.8;
    letter-spacing: 0.3rem;
  }
}
.story__lead span {
  color: #0769c1;
}
.story__ttl {
  opacity: 0;
  transform: scale(0.85);
  will-change: transform, opacity;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.1rem;
  background-color: #0769c1;
  color: #fff;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  paint-order: stroke;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .story__ttl {
    padding: 5px 15px 7px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .story__ttl {
    font-size: 1.7rem;
    margin-bottom: 25px;
    padding: 5px 20px 8px;
  }
}
.story__text {
  opacity: 0;
  transform: scale(0.85);
  will-change: transform, opacity;
  display: grid;
  color: #000;
  -webkit-text-stroke: 4px #fff;
  text-stroke: 4px #fff;
  paint-order: stroke;
  text-shadow: 0 0 15px white;
}
@media only screen and (max-width: 767px) {
  .story__text {
    gap: 13px 0;
  }
}
@media only screen and (min-width: 768px) {
  .story__text {
    gap: 20px 0;
  }
}
.story__text p {
  margin: 0;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .story__text p {
    font-size: 0.9rem;
    line-height: 2;
    letter-spacing: 0.05rem;
  }
}
@media only screen and (min-width: 768px) {
  .story__text p {
    font-size: 1.2rem;
    line-height: 2.4;
    letter-spacing: 0.1rem;
  }
}

.story.show .story__lead {
  animation: storyPop 0.8s ease-out 0s forwards;
}
.story.show .story__ttl {
  animation: storyPop 0.8s ease-out 0.3s forwards;
}
.story.show .story__text {
  animation: storyPop 0.8s ease-out 0.8s forwards;
}

@keyframes charaSlideUp {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  60% {
    opacity: 1;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .chara {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 768px) {
  .chara {
    padding: 130px 0 150px;
  }
}
.chara__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .chara__list {
    gap: 0 15px;
  }
}
@media only screen and (min-width: 768px) {
  .chara__list {
    gap: 0 50px;
  }
}
.chara__item {
  opacity: 0;
  background: #f3fbff url(../img/chara-bg.png) no-repeat center/cover;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
  overflow: hidden;
  transform: translateY(-40px);
  will-change: opacity, transform;
}
@media only screen and (max-width: 767px) {
  .chara__item {
    border-radius: 10px;
  }
  .chara__item:first-child .chara__img img {
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) {
  .chara__item {
    border-radius: 15px;
  }
}
.chara__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(89, 202, 216, 0.8) 0%, rgba(89, 202, 216, 0) 70%);
}
.chara__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#fff 20%, transparent 31%), radial-gradient(#fff 20%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  z-index: -1;
}
.chara__name {
  position: absolute;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .chara__name {
    left: 0;
    bottom: 42px;
    padding: 5px 10px;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .chara__name {
    left: 20px;
    bottom: 60px;
    font-size: 1.9rem;
    letter-spacing: 0.1rem;
  }
}
.chara__name span {
  display: block;
  letter-spacing: 0;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .chara__name span {
    font-size: 0.65rem;
    margin-top: 7px;
  }
}
@media only screen and (min-width: 768px) {
  .chara__name span {
    font-size: 1.05rem;
    margin-top: 7px;
  }
}
.chara__cv {
  font-weight: 500;
  line-height: 1;
  background-color: #0769c1;
  color: #fff;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .chara__cv {
    bottom: 13px;
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}
@media only screen and (min-width: 768px) {
  .chara__cv {
    bottom: 18px;
    font-size: 1.1rem;
    padding: 5px 20px;
  }
}
.chara__img {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .chara__img {
    height: 270px;
  }
}
@media only screen and (min-width: 768px) {
  .chara__img {
    height: 500px;
  }
}
.chara__img img {
  max-width: none;
  width: auto;
  height: 100%;
}

.chara.show .chara__item:nth-child(1) {
  animation: charaSlideUp 1s ease-out 0.2s forwards;
}
.chara.show .chara__item:nth-child(2) {
  animation: charaSlideUp 1s ease-out 0.6s forwards;
}
.chara.show .chara__item:nth-child(3) {
  animation: charaSlideUp 1s ease-out 1s forwards;
}

.prod {
  position: relative;
  z-index: 0;
  background: linear-gradient(#51cff4, #49cbf2, #51cff4);
}
@media only screen and (max-width: 767px) {
  .prod {
    padding: 80px 0 100px;
  }
}
@media only screen and (min-width: 768px) {
  .prod {
    padding: 130px 0 150px;
  }
}
.prod::before {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.prod::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/prod-bg.png) no-repeat top left/cover;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.prod h2 {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .prod .block {
    max-width: 1100px;
  }
}
.prod__nav {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .prod__nav {
    gap: 0 8px;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__nav {
    gap: 0 18px;
    margin: 0 0 40px;
  }
}
.prod__nav-item {
  width: 100%;
  background-color: #0869c1;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .prod__nav-item {
    border: 3.5px solid #fff;
    flex: 0 0 calc((100% - 24px) / 3);
    font-size: 0.8rem;
    line-height: 1.2;
    height: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__nav-item {
    border: 4px solid #fff;
    max-width: 250px;
    font-size: 1.15rem;
    height: 60px;
    transition: 0.3s;
  }
  .prod__nav-item:hover {
    transform: scale(1.05);
  }
}
.prod__nav-item::after {
  content: "";
  display: inline-block;
  clip-path: polygon(100% 0, 0 0, 50% 55%);
  background-color: #fff;
  transition: 0.3s;
  position: absolute;
  top: 23px;
  right: 25px;
  width: 15px;
  height: 15px;
}
@media only screen and (max-width: 767px) {
  .prod__nav-item::after {
    display: none;
  }
}
.prod__list {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .prod__list {
    gap: 30px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__list {
    gap: 60px 0;
  }
}
.prod__item {
  background-color: #fff;
  background-image: url("../img/prod-item-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  border: 8px solid #0869c1;
  border-radius: 2vw;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .prod__item {
    background-size: 400%;
    border-radius: 20px;
    padding: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__item {
    background-size: 140%;
    padding: 60px 80px;
  }
}
.prod__item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .prod__item:nth-of-type(1) .splide__pagination {
    bottom: -3.5em;
  }
}
@media only screen and (max-width: 767px) {
  .prod__item:nth-of-type(2) .splide__pagination {
    bottom: -2em;
  }
}
@media only screen and (max-width: 767px) {
  .prod__item:nth-of-type(3) .prod__thumb .slide__item img {
    max-height: 200px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__item:nth-of-type(3) .prod__thumb .slide__item img {
    max-height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .prod__item:nth-of-type(3) .splide__pagination {
    bottom: -2em;
  }
}
@media only screen and (min-width: 768px) {
  .prod__item:nth-of-type(3) .splide__pagination {
    bottom: -1.5em;
  }
}
.prod__item-wrapper {
  display: grid;
}
@media only screen and (min-width: 768px) {
  .prod__item-wrapper {
    grid-template-columns: 450px 1fr;
    gap: 0 50px;
  }
}
.prod__thumb {
  aspect-ratio: 1;
  background-color: #f9f9f9;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .prod__thumb {
    margin-bottom: 50px;
  }
}
.prod__thumb .slide {
  margin: 0 auto;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .prod__thumb .slide {
    max-width: 250px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__thumb .slide {
    max-width: 400px;
  }
}
.prod__thumb .slide__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .prod__thumb .slide__item img {
    max-height: 270px;
  }
}
.prod .splide__arrow {
  background: #0869c1;
  border: 4px solid #fff;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .prod .splide__arrow {
    width: 3.3em;
    height: 3.3em;
  }
}
@media only screen and (min-width: 768px) {
  .prod .splide__arrow {
    width: 3.5em;
    height: 3.5em;
  }
}
@media only screen and (max-width: 767px) {
  .prod .splide__arrow--prev {
    left: -3.6em;
  }
}
@media only screen and (min-width: 768px) {
  .prod .splide__arrow--prev {
    left: -3.3em;
  }
}
.prod .splide__arrow--next {
  right: -3em;
}
.prod .splide__arrow svg {
  fill: #fff;
}
@media only screen and (max-width: 767px) {
  .prod .splide__arrow svg {
    width: 1.3em;
    height: 1.3em;
  }
}
@media only screen and (min-width: 768px) {
  .prod .splide__arrow svg {
    width: 1.5em;
    height: 1.5em;
  }
}
@media only screen and (min-width: 768px) {
  .prod .splide__pagination {
    bottom: -2em;
  }
}
.prod .splide__pagination__page {
  background: #ccc;
  width: 10px;
  height: 10px;
}
.prod .splide__pagination__page.is-active {
  background: #0869c1;
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  .prod__text {
    padding-top: 20px;
  }
}
.prod__name {
  font-weight: 800;
  text-align: center;
  color: #0869c1;
}
@media only screen and (max-width: 767px) {
  .prod__name {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__name {
    font-size: 2.3rem;
    letter-spacing: 0.05rem;
    margin-bottom: 40px;
  }
}
.prod__price {
  font-weight: 600;
  display: grid;
}
.prod__price-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0 10px;
  padding: 15px 0 18px;
  border-top: 1px solid #ccc;
}
.prod__price-item:last-child {
  border-bottom: 1px solid #ccc;
}
.prod__price-item p {
  margin: 0 0 7px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .prod__price-item p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__price-item p {
    max-width: 300px;
    font-size: 1.3rem;
  }
}
.prod__price-item strong {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  text-align: center;
  font-weight: normal;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .prod__price-item strong {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__price-item strong {
    font-size: 1.15rem;
  }
}
.prod__price-item .price-num {
  font-weight: 700;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .prod__price-item .price-num {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__price-item .price-num {
    font-size: 2.3rem;
  }
}
.prod .order-block {
  width: 100%;
  display: grid;
}
@media only screen and (max-width: 767px) {
  .prod .order-block {
    margin-top: 18px;
    gap: 10px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod .order-block {
    margin-top: 20px;
    gap: 15px 0;
  }
}
.prod .order-block__item {
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .prod .order-block__item {
    grid-template-columns: 85px 1fr;
  }
}
@media only screen and (min-width: 768px) {
  .prod .order-block__item {
    grid-template-columns: 125px 1fr;
  }
}
.prod .order-block__item p {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .prod .order-block__item p {
    font-size: 0.9rem;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .prod .order-block__item p {
    font-size: 1.1rem;
  }
}
.prod .order-block__item .prod__order-link {
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .prod .order-block__item .prod__order-link {
    height: 55px;
    font-size: 0.95rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod .order-block__item .prod__order-link {
    height: 65px;
    font-size: 1.2rem;
  }
}
.prod__order-link {
  display: block;
  background-color: #fff;
  border: 3px solid #ef5c18;
  box-shadow: 2px 2px 0 #ef5c18;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 99px;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .prod__order-link {
    width: 90%;
    height: 60px;
    font-size: 1.05rem;
    margin: 18px auto 0;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__order-link {
    width: 100%;
    max-width: 330px;
    height: 70px;
    font-size: 1.25rem;
    margin: 20px auto 0;
    padding-left: 25px;
    transition: 0.3s;
  }
  .prod__order-link:hover {
    transform: scale(1.05);
  }
}
.prod__order-link::before {
  content: "";
  width: calc(100% - 7px);
  height: calc(100% - 7px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #ef5c18;
  border-radius: 99px;
  z-index: -1;
}
.prod__order-link::after {
  content: "";
  display: inline-block;
  clip-path: polygon(0 0, 0 100%, 50% 50%);
  background-color: #fff;
  margin: 0 0 0 15px;
  transition: 0.3s;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .prod__order-link::after {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__order-link::after {
    width: 18px;
    height: 18px;
  }
}
.prod__detail {
  margin: 30px 0 0;
  letter-spacing: 0.05rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .prod__detail {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 768px) {
  .prod__detail {
    font-size: 1.05rem;
    line-height: 1.7;
  }
}
.prod__note {
  color: #999;
  margin: 25px 0 0;
  letter-spacing: 0.02rem;
}
@media only screen and (max-width: 767px) {
  .prod__note {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__note {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

.spec {
  background-color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767px) {
  .spec {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 768px) {
  .spec {
    padding: 80px 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  .spec .block {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .spec .block {
    max-width: 850px;
  }
}
.spec__content {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .spec__content {
    gap: 40px 0;
  }
}
@media only screen and (min-width: 768px) {
  .spec__content {
    grid-template-columns: 350px 1fr;
    gap: 0 45px;
  }
}
@media only screen and (max-width: 767px) {
  .spec__img {
    width: 60vw;
    margin: auto;
  }
}
.spec__text dl {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .spec__text dl {
    grid-template-columns: 90px 1fr;
    font-size: 0.9rem;
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  .spec__text dl {
    grid-template-columns: 95px 1fr;
    margin: 0 0 15px;
  }
}
.spec__text dl:last-child {
  border-bottom: none;
  margin: 0;
  padding-bottom: 0;
}
.spec__text dl dt {
  margin: 0;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .spec__text dl dt {
    padding-top: 3px;
  }
}
.spec__text dl dd {
  font-weight: 500;
  margin: 0;
  line-height: 1.7;
}

.sns {
  background-color: #f3f8fa;
}
@media only screen and (max-width: 767px) {
  .sns {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 768px) {
  .sns {
    padding: 50px 0;
  }
}
.sns__content {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .sns__content {
    gap: 0 30px;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .sns__content {
    gap: 0 50px;
  }
}
.sns__item {
  display: flex;
  align-items: center;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .sns__item {
    gap: 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item {
    gap: 0 20px;
    transition: 0.3s;
  }
  .sns__item:hover {
    opacity: 0.7;
  }
}
.sns .item-x {
  border-right: 1px solid #666;
}
@media only screen and (max-width: 767px) {
  .sns .item-x {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .sns .item-x {
    padding-right: 40px;
  }
}
.sns .item-x p {
  font-weight: 600;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .sns .item-x p {
    font-size: 0.8rem;
  }
}
.sns .item-x__icon {
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .sns .item-x__icon {
    width: 47px;
    height: 47px;
  }
}
@media only screen and (min-width: 768px) {
  .sns .item-x__icon {
    width: 57px;
    height: 57px;
  }
}
@media only screen and (max-width: 767px) {
  .sns .item-x__icon img {
    width: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .sns .item-x__icon img {
    width: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .sns .item-link img {
    width: 150px;
  }
}
@media only screen and (min-width: 768px) {
  .sns .item-link img {
    width: 170px;
  }
}

.local-foot {
  background-color: #fff;
  text-align: center;
  letter-spacing: 0.01rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .local-foot {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 768px) {
  .local-foot {
    padding: 50px 0;
  }
}
.local-foot__logo {
  width: 110px;
}
@media only screen and (max-width: 767px) {
  .local-foot__logo {
    margin: 0 auto 20px;
  }
}
@media only screen and (min-width: 768px) {
  .local-foot__logo {
    margin: 0 auto 30px;
  }
}
.local-foot__text {
  margin: 0 0 10px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .local-foot__text {
    font-size: 0.85rem;
  }
}
@media only screen and (min-width: 768px) {
  .local-foot__text {
    font-size: 0.9rem;
  }
}
.local-foot__copyright {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .local-foot__copyright {
    font-size: 0.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .local-foot__copyright {
    font-size: 0.9rem;
  }
}

.back-top-top {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .back-top-top {
    width: 60px;
    right: 15px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .back-top-top {
    width: 80px;
    right: 10%;
    bottom: 30px;
  }
  .back-top-top:hover {
    transform: translateY(-5px);
  }
}

.chara h2,
.prod h2,
.spec h2,
.sns h2 {
  opacity: 0;
  transform: scale(0.85);
  will-change: transform, opacity;
}

@keyframes sectionTitlePop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
h2.is-visible {
  animation: sectionTitlePop 0.8s ease-out 0s forwards;
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */