/* One Piece 2027 CSS Stylesheet */

@import "reset.css";
@import "base.css";
@import "header.css";

body {
  color: #000;
  font-family: "Oswald", sans-serif;
}

a {
  display: block;
  color: #000;
}

/* override */
section[role="social"] > div > ul:first-of-type li a span {
  font-weight: 400;
}

section[role="social"] > div > ul:nth-of-type(2):before {
  /* font-weight: 400; */
}

ul[role="translate"] li a,
ul[role="translate"] li span {
  font-weight: 400;
}

section[role="bottom"] > div ul li a {
  font-weight: 400;
}

.btn-item {
  border: none;
  padding: 0;
}

.btn-item dl dt {
  padding: 8px;
}

.btn-item dl dt + dd {
  padding: 8px 8px 0;
}

.region-switcher .ge-flag {
  margin: 0;
  padding: 0;
}

/* animation */
@keyframes scroll-anim {
  100% {
    background-position: calc(100% - 100vw);
  }
}
@keyframes scroll-anim-rev {
  100% {
    background-position: calc(-100% + 100vw);
  }
}

@keyframes scroll-anim-to-bottom-left {
  100% {
    background-position: calc(100% - 100vw) calc(100% + 100vh);
  }
}

@keyframes scroll-anime-to-top-right {
  100% {
    background-position: calc(-100% + 100vw) calc(-100% + 100vh);
  }
}

@keyframes badgeScale {
  0% {
    transform: scale(1.02) rotate(-2deg);
  }

  to {
    transform: scale(0.95) rotate(2deg);
  }
}

@keyframes hyokkoriAnimation {
  0% {
    transform: translateY(100px) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: translateY(-10px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes shimmer-order {
  0% {
    transform: translateX(-100%) scale(1);
  }
  24% {
    transform: translateX(240%) scale(1.2);
  }
  100% {
    transform: translateX(240%) scale(1);
  }
}

/* button */
.c-btn--orange {
  background-color: #ff7e1a;
}
.c-btn {
  position: relative;
  width: 255px;
  height: 56px;
  color: #fff;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 30px;
  border-radius: 1000px;
}

.c-btn::after {
  content: "";
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  width: 15.575px;
  height: 15.163px;
  background-image: url(/store/techo/ja/one-piece2025/img/ico-arrow.svg);
  background-size: contain;
}

/* mv */

.mv__luffy {
  opacity: 0;
}

.mv__dust {
  opacity: 0;
}

.mv__hat {
  opacity: 0;
}

.js-mv-anime-item {
  opacity: 0;
  transform: translateY(-50px);
}

.js-obi {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 2px 8px 6px;
  line-height: inherit;
  color: #fff;
  background: #000;
}

.js-hyokkori {
  opacity: 0;
  transform: translateY(100px) scale(0.5);
}

.js-hyokkori.visible {
  animation: hyokkoriAnimation 0.8s ease-in-out forwards;
}

.js-hyokkori.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* next-button */
.next-button {
  position: fixed;
  z-index: 10;
  cursor: pointer;
  width: 36px;
  right: 0;
  bottom: 75px;
  transition-property: visibility, opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-in;
  opacity: 1;
  visibility: visible;

  &.is-invisible {
    opacity: 0;
    visibility: hidden;
    transition-property: visibility, opacity;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
  }
}

.next-button-hidden {
  display: none;
}

@media screen and (min-width: 769px) {
  .mv-next {
    right: 40px;
    bottom: 80px;
    width: 139px;
    z-index: 10;
  }
}

/* common */

.rotate-text {
  display: inline-block;
  transform: rotate(15deg);
}

.rotate-text:first-child {
  padding-left: 0.1em;
}

.rotate-text:last-child {
  padding-right: 0.1em;
}

.button {
  display: flex;
  align-items: center;
  color: #fff;
  background: #ff3923;
  border-radius: 100vmax;
  box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.2);

  &::after {
    content: "";
    display: block;
    width: 13px;
    aspect-ratio: 13/15;
    background: center / contain no-repeat url("../img/arrow_forward.svg");
  }
}

/* content */
.content {
  overflow: clip;
}

.content::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  display: block;
  opacity: 1;
  background: url("/store/techo/ja/one-piece2027/img/bg_mamga.webp") repeat-x;
  background-size: auto 100vh; /* 縦幅を100vhに設定し、横幅をautoに設定 */
  background-position: 0%;
  animation: scroll-anim 120s linear infinite;
  mix-blend-mode: plus-darker;
}

/* section */
.sec {
  position: relative;
}

.sec::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
}

.sec__inner {
  position: relative;
  z-index: 2;
}

/* mv */
.js-mv-item {
  opacity: 0;
  filter: blur(4px);
}

.mv {
  position: relative;
  padding-top: 50px;
}

.mv::after {
  background: #ff3923;
}

.mv__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 390/692;
  overflow: hidden;
}

.mv__title {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  top: calc(20 / 692 * 100%);
  width: calc(355 / 390 * 100%);
  margin-inline: auto;
}

.mv__catch {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  top: calc(112 / 692 * 100%);
  width: calc(355 / 390 * 100%);
  margin-inline: auto;
}

.mv__badge {
  position: absolute;
  top: calc(232 / 692 * 100%);
  right: calc(22 / 390 * 100%);
  z-index: 3;
  width: calc(109 / 390 * 100%);
  aspect-ratio: 1/1;
  background: center / contain no-repeat
    url("/store/techo/ja/one-piece2027/img/mv_badge.svg");
}

.mv__badgeImg.is-animated {
  display: block;
  animation-name: badgeScale;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.mv__img {
  position: absolute;
  left: 50%;
  top: calc(291 / 692 * 100%);
  width: calc(355 / 390 * 100%);
  z-index: 2;
  transform: translateX(-50%);
}

.mv__luffy {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  aspect-ratio: 390/210;
  background: left bottom / contain no-repeat
    url("/store/techo/ja/one-piece2027/img/mv_luffy_sp.webp");
}

.mv__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  height: 53px;
  background: url("/store/techo/ja/one-piece2027/img/one-piece-hobonichi.svg")
    repeat-x;
  background-size: auto 53px;
  background-position: 0%;
  animation: scroll-anim 60s linear infinite;
  transform: translateY(50%);
}

@media (min-width: 769px) {
  .mv__inner {
    aspect-ratio: 1440/760;
  }

  .mv__title {
    position: absolute;
    top: calc(50 / 760 * 100%);
    left: calc(63 / 1440 * 100%);
    right: auto;
    width: calc(338 / 1440 * 100%);
    margin-inline: 0;
  }

  .mv__catch {
    position: absolute;
    top: calc(285 / 760 * 100%);
    left: calc(64 / 1440 * 100%);
    right: 0;
    width: calc(540 / 1440 * 100%);
    margin-inline: 0;
  }

  .mv__badge {
    right: auto;
    top: calc(44 / 760 * 100%);
    left: calc(401 / 1440 * 100%);
    width: calc(198 / 1440 * 100%);
  }

  .mv__img {
    left: auto;
    right: calc(29 / 1440 * 100%);
    top: calc(60 / 760 * 100%);
    width: calc(784 / 1440 * 100%);
    margin-inline: auto;
    transform: unset;
  }

  .mv__luffy {
    bottom: 0;
    left: calc(14 / 1440 * 100%);
    width: calc(806 / 1440 * 100%);
    background: left bottom / contain no-repeat
      url("/store/techo/ja/one-piece2027/img/mv_luffy_pc.webp");
  }

  .mv__bottom {
    height: 94px;
    background-size: auto 94px;
  }
}

/* yodogawa */

.yodogawa {
  position: relative;
  z-index: 2;
  padding: 88px 0 64px;
  background: #fff;
}

.yodogawa__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 72px;
  background: url("/store/techo/ja/one-piece2027/img/one-piece-hobonichi.svg")
    repeat-x;
  background-size: auto 72px;
  background-position: 0%;
  animation: scroll-anim 60s linear infinite;
  transform: translateY(-50%);
}

.yodogawa__inner {
  width: calc(100% - 32px);
  margin-inline: auto;
  max-width: 800px;
}

.yodogawa__lead {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  text-align: center;
}

.yodogawa__title {
  font-weight: 700;
  font-size: var(--fz26);
  text-align: center;
  line-height: 1.2;
}

.yodogawa__catch {
  margin-top: 24px;
  font-weight: 500;
  font-size: var(--fz16);
  line-height: 1.8;
}

.yodogawa__going-meryy {
  margin: 28px auto 0;
  max-width: 202px;
  animation: yodogawa__going-meryy 3s ease-in-out infinite;
}

.yodogawa__bg--sp {
  position: absolute;
  z-index: -1;
}

.yodogawa__bg--sp {
  position: absolute;
  inset: 0;
  z-index: -1;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@keyframes yodogawa__going-meryy {
  0% {
    transform: rotate(-5deg);
    transform: translateY(0);
  }
  50% {
    transform: rotate(5deg);
    transform: translateY(10);
  }
  100% {
    transform: rotate(-5deg);
    transform: translateY(0);
  }
}

@media (min-width: 769px) {
  .yodogawa {
    padding-top: 152px;
    padding-bottom: 135px;
  }

  .yodogawa__lead {
    display: none;
  }

  .yodogawa__title {
    font-size: var(--fz44);
    line-height: 1.3;
  }

  .yodogawa__top {
    height: 133px;
    background-size: auto 133px;
  }

  .yodogawa__catch {
    margin-top: 40px;
    line-height: 2;
    text-align: center;
  }

  .yodogawa__going-meryy {
    margin-top: 56px;
    max-width: 256px;
  }

  .yodogawa__bg--pc-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    pointer-events: none;
    z-index: -1;
    width: 1440px;
    transform: translateX(-50%);
  }

  .yodogawa__bg--pc01 {
    position: absolute;
    left: 12px;
    top: 265px;
    width: 403px;
  }

  .js-yodogawa-bg-off {
  }

  .js-yodogawa-bg-on {
    position: absolute;
    inset: 0;
    opacity: 0;
  }

  .yodogawa__bg--pc02 {
    position: absolute;
    right: -46px;
    top: 201px;
    width: 426px;
  }
}

.img-obi {
  position: relative;
  z-index: 2;
}

/* intro */
.intro {
  position: relative;
  padding: 53px 20px 86px;
  background: linear-gradient(to bottom, #ffefc8, #ffdf91);
  z-index: 2;
}

.intro___inner {
  display: grid;
  justify-items: center;
}

.intro__text {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
}

.intro__title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  line-height: 1.25;
}

.intro__obi {
  width: fit-content;
  margin: 28px auto 0;
  padding: 3px 7px;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  line-height: 2;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.intro__items {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
}

.intro-item__link {
  display: grid;
  justify-items: center;
}

.intro-item__img {
  display: block;
  max-width: 144px;
}

.intro-item__img--shadow {
  filter: drop-shadow(0 0 17px rgba(0, 0, 0, 0.18));
}

.intro-item__name {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: 1.4285714286;
}

.intro-item__price {
  display: flex;
  align-items: flex-end;
  justify-items: center;
  margin-top: 15px;

  .inner {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -0.04em;

    .tax {
      font-size: 21px;
    }
  }

  .tax {
    display: grid;
    justify-items: center;
    font-size: 17px;

    small {
      font-size: 8px;
    }
  }
}

.intro-item__button {
  position: relative;
  gap: 8px;
  width: 100%;
  max-width: 216px;
  justify-content: center;
  margin-top: 24px;
  min-height: 48px;
  padding: 0 18px 0;
  font-weight: 600;
  font-size: 16px;

  &::after {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.intro-luffy {
  display: block;
  position: absolute;
  bottom: -55px;
  left: 50%;
  width: 89px;
  aspect-ratio: 89/107;
  background: center / contain no-repeat url("../img/intro_luffy.webp");
  transform: translateX(-50%);
}

@media (min-width: 769px) {
  .intro {
    padding: 120px 20px 132px;
  }

  .intro__text {
    font-size: 26px;
    line-height: 1.5;
  }

  .intro__title {
    font-size: 40px;
  }

  .intro__obi {
    margin-top: 38px;
    padding: 11px 0;
    font-size: 20px;
    letter-spacing: 0.01em;
  }

  .intro__items {
    justify-content: center;
    gap: 38px;
    margin-top: 40px;
  }

  .intro-item__img {
    max-width: 172px;
  }

  .intro-item__name {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.75;
  }

  .intro-item__price {
    display: flex;
    align-items: flex-end;
    justify-items: center;
    margin-top: 15px;

    .inner {
      font-size: 48px;
      letter-spacing: -0.05em;

      small {
        font-size: 33px;
      }
    }

    .tax {
      font-size: 27px;

      small {
        font-size: 10px;
      }
    }
  }

  .intro-item__button {
    gap: 23px;
    margin-top: 22px;
    min-height: 56px;
    padding: 0 24px 0;
    font-size: 16px;
  }

  .intro__bgArea {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1440px;
    transform: translateX(-50%);
  }

  .intro__bg--01 {
    position: absolute;
    top: 282px;
    left: -90px;
    width: 430px;
    transform: rotate(-4deg);
  }

  .intro__bg--02 {
    position: absolute;
    top: 272px;
    right: -74px;
    width: 395px;
    transform: rotate(6deg);
  }

  .intro-luffy {
    bottom: -70px;
    width: 118px;
  }
}

/* content01 */
.content01 {
  padding-top: 80px;
}

.content01::after {
  background: #ff3923;
}

@media (min-width: 769px) {
  .content01 {
    padding-top: 120px;
  }
}

/* point */

.point__lead {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  line-height: 1.25;
  color: #fff;
}

.content01__title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
}

.point__content {
  margin-top: 32px;
}

.pointItem {
  position: relative;
  z-index: 1;
  min-height: 708px;
  padding-top: 60px;
  padding-bottom: 60px;

  &:not(:first-child) {
    margin-top: 16px;
  }
}

.pointItem__title {
  display: grid;
  justify-items: center;

  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;

  span {
    font-weight: 500;
    font-size: 3em;
    letter-spacing: 0.03em;
  }
}

.pointItem__label {
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  .js-obi {
    padding-block: 0;
  }
}

.pointItem__text {
  margin-top: 16px;
  padding: 0 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;

  small {
    font-size: 12px;
  }
}

.pointItem__bottom {
  position: relative;
  width: calc(100% - 32px);
  max-width: 358px;
  margin: 32px auto 0;
}

.pointItem__imgFrame {
  position: relative;

  &::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 32px;
    aspect-ratio: 1;
    background: #000 center / 20px 20px no-repeat url("../img/icon_plus.svg");
    border-radius: 8px;
  }
}

.pointItem__fukidashi {
  position: absolute;
  filter: drop-shadow(4px 6px 30px rgba(0, 0, 0, 0.2));
}

.pointItem__fukidashi--01-01 {
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  width: calc(100% + 2px);
}

.pointItem__characte {
  position: absolute;
}

.pointItem__character--01 {
  width: 81px;
  top: -38px;
  right: -13px;
}

.pointItem__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: auto;
  height: 100%;
  aspect-ratio: 1;
  background: linear-gradient(to bottom right, #ffefc8 0%, #fcbd1a 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pointItem__fukidashi--02-01 {
  top: calc(34 / 255 * 100%);
  left: calc(188 / 358 * 100%);
  width: calc(72 / 358 * 100%);
}

.pointItem__fukidashi--02-02 {
  top: calc(131 / 255 * 100%);
  left: calc(-12 / 358 * 100%);
  width: calc(125 / 358 * 100%);
}

.pointItem__fukidashi--02-03 {
  top: calc(221 / 255 * 100%);
  left: calc(86 / 358 * 100%);
  width: calc(221 / 358 * 100%);
}

.pointItem__character--02 {
  top: -48px;
  left: -9px;
  width: 99px;
}

.pointItem--03 {
  .pointItem__bottom {
    max-width: 298px;
    margin-top: 16px;
  }
}

.pointItem__character--03 {
  top: -6px;
  right: -63px;
  width: 123px;
}

@media (min-width: 769px) {
  .point__lead {
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 1.45;
  }

  .content01__title {
    font-size: 60px;
    line-height: 1.15;
    text-align: center;
  }

  .content01__title--huge {
    font-size: 1.875em;
  }

  .point__content {
    margin-top: 56px;
  }

  .pointItem {
    position: relative;
    z-index: 1;
    min-height: unset;
    padding-top: 0;
    padding-bottom: 0;

    &:not(:first-child) {
      margin-top: 68px;
    }

    &:nth-child(odd) {
      .pointItem__inner {
        flex-direction: row-reverse;
      }
    }
  }

  .pointItem__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
  }

  .pointItem__body {
    flex-shrink: 0;
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    padding-top: 96px;
    width: 560px;
    height: 560px;
  }

  .pointItem__title {
    font-size: 14px;
  }

  .pointItem__label {
    margin-top: 56px;
  }

  .pointItem__text {
    max-width: 340px;
    margin-top: 24px;
    padding: 0;
    font-size: 16px;
  }

  .pointItem__bottom {
    position: static;
    width: calc(100% - 511px);
    max-width: 733px;
    margin: 0;
  }

  .pointItem__imgFrame {
    position: relative;
    pointer-events: none;

    &::after {
      display: none;
    }
  }

  .pointItem--01 {
    .pointItem__bottom {
      margin-right: -56px;
    }
  }

  .pointItem__fukidashi {
    position: absolute;
    filter: drop-shadow(4px 6px 30px rgba(0, 0, 0, 0.2));
  }

  .pointItem__fukidashi--01-01 {
    top: calc(148 / 528 * 100%);
    left: calc(-26 / 730 * 100%);
    width: calc(625 / 730 * 100%);
    transform: unset;
  }

  .pointItem__characte {
    position: absolute;
  }

  .pointItem__character--01 {
    width: 116px;
    top: 64px;
    right: 94px;
  }

  .pointItem__bg {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    z-index: -1;
    width: 560px;
    height: 560px;
    aspect-ratio: 1;
    background: linear-gradient(to bottom right, #ffefc8 0%, #fcbd1a 100%);
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .pointItem--02 {
    .pointItem__bg {
      left: 0;
      right: auto;
    }

    .pointItem__bottom {
      margin-left: -72px;
    }
  }

  .pointItem__fukidashi--02-01 {
    top: calc(75 / 528 * 100%);
    left: calc(421 / 730 * 100%);
    width: calc(84 / 730 * 100%);
  }

  .pointItem__fukidashi--02-02 {
    top: calc(331 / 528 * 100%);
    left: calc(-19 / 730 * 100%);
    width: calc(128 / 730 * 100%);
  }

  .pointItem__fukidashi--02-03 {
    top: calc(331 / 528 * 100%);
    left: calc(315 / 730 * 100%);
    width: calc(225 / 730 * 100%);
  }

  .pointItem__character--02 {
    top: 94px;
    left: 86px;
    width: 139px;
  }

  .pointItem--03 {
    .pointItem__bottom {
      max-width: 700px;
      margin-top: 0;
      margin-right: -18px;
    }
  }

  .pointItem__character--03 {
    top: 50%;
    right: 53px;
    width: 149px;
    transform: translateY(-203px);
  }
}

/* modal */

.modal::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #a54e34;
  mix-blend-mode: multiply;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}

.useful-modal::after {
  background: #517a92;
}

.modal.is-open::after {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 30px;
  height: 100%;

  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}

.useful-modal__overlay {
  padding: 70px 23px;
}

.point-modal__overlay {
  padding-inline: 0;
}

.modal.is-open .modal__overlay {
  opacity: 1;
  visibility: visible;
}

.modal__container {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 0;
}

.useful-modal__container {
  aspect-ratio: 2/3;
  max-width: 383px;
  max-height: calc(100svh - 80px);
}

.modal__content {
  overflow-y: auto;
  height: auto;
  overscroll-behavior: contain;
  max-height: calc(100svh - 140px);
}

.useful-modal-content {
  max-height: unset;
}

.modal__close {
  position: absolute;
  top: -40px;
  right: 8px;
  display: block;
  width: 27px;
  aspect-ratio: 1/1;
  background: center / contain no-repeat
    url("/store/techo/ja/one-piece2027/img/icon_close.svg");
}

.useful-modal__close {
  right: 0;
}

.modalSwiper__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  filter: drop-shadow(2px 2px 20px rgba(0, 0, 0, 0.2));
}

.modalSwiper__button--prev {
  left: 0;
  transform: translate(-50%, -50%);
  background: center / contain no-repeat
    url("/store/techo/ja/one-piece2027/img/slide_prev_button.svg");
}

.modalSwiper__button--next {
  right: 0;
  transform: translate(50%, -50%);
  background: center / contain no-repeat
    url("/store/techo/ja/one-piece2027/img/slide_next_button.svg");
}

.point-modal-frame {
  overflow-x: auto;
  position: relative;

  &::-webkit-scrollbar {
    display: none;
  }

  img {
  }
}

.point-modal-frame-img {
  max-width: unset;
  width: calc(100vw + 170px);
}

.point-modal-frame-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease-out;

  &.is-hidden {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .modal__overlay {
    padding: 40px 60px;
  }

  .modal__close {
    position: absolute;
    top: 12px;
    right: -46px;
    width: 28px;
  }

  .useful-modal__close {
    top: 0;
  }

  .modalSwiper__button {
    width: 44px;
  }

  .point-modal {
    display: none;
  }
}

/* sec1Bottom */

.sec1Bottom {
  margin-top: 40px;
}

.sec1Bottom__title {
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  line-height: 1.4;
}

.sec1Bottom__text {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  line-height: 1.8;
}

.sec1Bottom__container {
  padding-inline: 20px;
}

.sec1Swiper {
  margin-top: 16px;
}

.sec1Swiper .swiper-slide {
  width: 346px;
}

.sec1SwiperCard {
  position: relative;
  padding-top: 63px;
}

.sec1SwiperCard__img {
  border-radius: 20px;
  overflow: hidden;
}

.sec1SwiperCard__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding-inline: 25px;
  height: 94px;
  font-weight: 600;
  font-size: var(--fz18);
  line-height: 1.5;
  background: linear-gradient(to bottom right, #ffefc8, #fcbd1a);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.sec1SwiperCard__bottom::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 80px;
  height: 80px;
  background: #000;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.sec1SwiperCard__bottom::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 12px;
  z-index: 2;
  display: block;
  width: 24px;
  height: 24px;
  background: center / contain no-repeat
    url("/store/techo/ja/one-piece2027/img/icon_plus.svg");
}

.sec1SwiperCard__fukidashi {
  position: absolute;
  top: 0;
  left: 7px;
  right: 7px;
}

.sec1Modal__container {
  max-width: 440px;
  margin-inline: auto;
}

.modalSwiperCard {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.sec1ModalCard__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  gap: 10px;
  place-items: center;
  place-content: center;
  text-align: center;
  padding: 25px 20px 25px;
  min-height: 100px;
  background: linear-gradient(to bottom right, #ffefc8, #fcbd1a);
  font-weight: 600;
}

.sec1ModalCard__text01 {
  font-size: var(--fz14);
}

.sec1ModalCard__text02 {
  font-size: var(--fz12);
  line-height: 1.6;
}

.sec1ModalCard__fukidashi {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  margin-inline: auto;
  width: calc(100% - 76px);
}

.sec1Bottom__img {
  margin-top: 24px;
}

@media (min-width: 769px) {
  .sec1Bottom {
    margin-top: 80px;
  }

  .sec1Bottom__container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
    width: var(--pc-width);
    max-width: 982px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 0;
  }

  .sec1Bottom__title {
    text-align: left;
    font-size: 26px;
  }

  .sec1Bottom__text {
    text-align: left;
  }

  .sec1Swiper {
    margin-top: 40px;
  }

  .sec1Swiper .swiper-slide {
    width: 392px;
  }

  .sec1SwiperCard {
    padding-top: 88px;
  }

  .sec1SwiperCard__bottom {
    padding-inline: 30px;
    min-height: 96px;
    font-weight: 600;
    font-size: var(--fz20);
  }

  .sec1ModalCard__bottom {
    min-height: 137px;
  }

  .sec1ModalCard__text01 {
    font-size: var(--fz18);
  }

  .sec1ModalCard__text02 {
    font-size: var(--fz14);
  }

  .sec1ModalCard__fukidashi {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    margin-inline: auto;
    width: calc(100% - 76px);
  }

  .sec1Bottom__img {
    margin-top: -16px;
    max-width: 383px;
  }
}

/* type */
.type {
  padding: 74px 18px 0;
}

.type__inner {
  padding: 40px 12px 64px;
  background: top left / cover no-repeat url("../img//type_bg_sp.webp");
  border-radius: 20px;
}

.type__title {
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  line-height: 1.25;
}

.typeSection {
  margin-top: 16px;
  + .typeSection {
    margin-top: 70px;
  }
}

.typeSection__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: 1;
  font-size: 61px;
  color: #8c4027;

  span {
    margin-right: 12px;
    padding-top: 9px;
    padding-bottom: 8px;
    font-size: 24px;
    border-bottom: 1px solid #8c4027;
  }
}

.typeSection__sanji {
  width: 88px;
  margin-left: -27px;
  margin-right: 5px;
}

.typeSection__headWrapper {
  display: grid;
  gap: 24px;
}

.typeSection__lead {
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  width: calc(100% + 24px);
  margin-left: -12px;
}

.typeSection__label {
  margin-top: 8px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
}

.typeSection__text {
  margin-top: 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
}

.typeSection__content {
  margin-top: 52px;
}

.typeSectionItem {
  &:not(:first-child) {
    margin-top: 45px;
  }
}

.typeSectionItem__sliderArea {
  position: relative;
}

.typeSectionItemSwiper__pagination {
  --swiper-pagination-bottom: 16px;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-width: 24px;
  --swiper-pagination-color: #ff3923;
  --swiper-pagination-bullet-border-radius: 0;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.typeSectionItemSwiper__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.typeSectionItemSwiper__button--prev {
  left: -14px;
  background: center / contain no-repeat url("../img/slide_prev_button.svg");
}

.typeSectionItemSwiper__button--next {
  right: -14px;
  background: center / contain no-repeat url("../img/slide_next_button.svg");
}

.typeSectionItem__character {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.typeSectionItem__character--luffy {
  width: 62px;
  bottom: 0;
  left: 0;
}

.typeSectionItem__body {
  margin-top: 16px;
}

.typeSectionItemInfo {
  display: grid;
  grid-template-columns: 150px auto;
  align-items: center;
}

.typeSectionItemInfo__img {
  filter: drop-shadow(4px 6px 19px #a88034);
}

.typeSectionItemInfo__body {
}

.typeSectionItemInfo__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  span {
    font-size: 14px;
    display: block;
  }
}

.typeSectionItemInfo__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3px;
  margin-right: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;

  &::before {
    content: "";
    display: block;
    width: 4px;
    height: 30px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  &::after {
    content: "";
    display: block;
    width: 4px;
    height: 30px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
}

.typeSectionItemInfo__price {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 10px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;

  .tax {
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    letter-spacing: 0.02em;
  }
}

.typeSectionItem__text {
  margin-top: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
}

.typeSectionItem__button {
  margin: 16px auto 0;
  background: #ff3923;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  justify-content: center;
  box-shadow: 1px 3px 11px rgba(0, 0, 0, 0.2);
}

.typeSectionItem__character--characters {
  right: -34px;
  bottom: -31px;
  width: 135px;
}

.typeSectionItem__character--usop {
  left: 0;
  bottom: 0;
  width: 79px;
}

.typeSection--02 {
  .typeSection__title {
    padding-left: 83px;
  }

  .typeSection__content {
    margin-top: 24px;
  }
}

.typeSection__bonchan {
  width: 73px;
  margin-left: 10px;
}

.typeSectionItem__character--going-merry {
  right: -15px;
  bottom: -16px;
  width: 84px;
}

@media (min-width: 769px) {
  .type {
    padding: 120px 0 0;
  }

  .type__inner {
    width: 92%;
    max-width: 1224px;
    padding: 120px;
    margin: 0 auto;
    background: top left / cover no-repeat url("../img//type_bg_pc.webp");
  }

  .type__title {
    text-align: center;
    font-size: 40px;
  }

  .typeSection {
    margin-top: 56px;
    + .typeSection {
      margin-top: 110px;
    }
  }

  .typeSection__title {
    font-size: 72px;

    span {
      margin-right: 24px;
      padding-top: 9px;
      padding-bottom: 8px;
      font-size: 29px;
    }
  }

  .typeSection__sanji {
    width: 124px;
    margin-left: -50px;
    margin-right: 8px;
  }

  .typeSection__headWrapper {
    display: flex;
    gap: 20px;
    margin-top: 40px;

    .typeSection__lead,
    .typeSection__label {
      text-align: left;
    }
    .typeSection__label {
      font-size: 28px;
      line-height: 1.35;

      .js-obi {
        padding-block: 6px 8px;
      }
    }

    .typeSection__head {
      width: 411px;
    }
  }

  .typeSection__lead {
    margin-top: 0;
    width: auto;
    font-size: 26px;
    margin-left: 0;
  }

  .typeSection__text {
    margin-top: 16px;
  }

  .typeSection__img {
    flex: 1;
    max-width: 555px;
  }

  .typeSection__content {
    margin-top: 40px;
  }

  .typeSectionItem {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    &:not(:first-child) {
      margin-top: 90px;
    }
  }

  .typeSection--01 {
    .typeSectionItem:nth-child(even) {
      flex-direction: row-reverse;
    }
  }

  .typeSectionItem__sliderArea {
    position: relative;
    max-width: 504px;
    min-width: 0;
  }

  .typeSectionItemSwiper__pagination {
    --swiper-pagination-bottom: 24px;
    --swiper-pagination-bullet-horizontal-gap: 8px;
    --swiper-pagination-bullet-width: 40px;
  }

  .typeSectionItemSwiper__button--prev {
    left: -12px;
  }

  .typeSectionItemSwiper__button--next {
    right: -12px;
  }

  .typeSectionItem__character--luffy {
    width: 110px;
  }

  .typeSectionItem__body {
    margin-top: 0;
    max-width: 392px;
  }

  .typeSectionItemInfo {
    grid-template-columns: 170px auto;
    align-items: start;
    gap: 4px;
  }

  .typeSectionItemInfo__body {
    padding-top: 40px;
  }

  .typeSectionItemInfo__name {
    font-size: 18px;
    line-height: 1.55;
    span {
      font-size: 14px;
    }
  }

  .typeSectionItemInfo__block {
    width: fit-content;
    gap: 5px;
    margin-top: 5px;
    margin-right: 0;
    font-size: 14px;
    margin-right: 8px;
    line-height: 1.6;

    &::before {
      height: 38px;
    }

    &::after {
      height: 38px;
    }
  }

  .typeSectionItem__text {
    margin-top: 26px;
  }

  .typeSectionItem__button {
    margin-top: 24px;
    width: 100%;
    max-width: 328px;
  }

  .typeSectionItem__character--characters {
    right: -64px;
    bottom: -45px;
    width: 191px;
  }

  .typeSectionItem__character--usop {
    width: 111px;
  }

  .typeSection--02 {
    .typeSection__title {
      padding-left: 100px;
    }

    .typeSection__text {
      text-align: center;
    }

    .typeSection__content {
      margin-top: 35px;
    }

    .typeSectionItem {
      flex-direction: row-reverse;
    }
  }

  .typeSection__bonchan {
    width: 87px;
    margin-left: 13px;
  }

  .typeSectionItem__character--going-merry {
    right: -32px;
    bottom: -40px;
    width: 139px;
  }
}

/* youtube */
.youtube {
  position: relative;
  z-index: 2;
  padding: 64px 18px;
}

.youtube__frame {
  max-width: 355px;
  margin: 0 auto;
  aspect-ratio: 9/16;

  img,
  iframe {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 769px) {
  .youtube {
    padding: 120px 20px;
  }

  .youtube__frame {
    max-width: 355px;
    margin: 0 auto;
    aspect-ratio: 9/16;

    img,
    iframe {
      width: 100%;
      height: 100%;
    }
  }

  .youtube__bgArea {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: 1440px;
    pointer-events: none;
    transform: translateX(-50%);
  }

  .youtube__bg {
    position: absolute;
  }

  .pc {
  }

  .youtube__bg--01 {
    top: 108px;
    left: -16px;
    width: 456px;
    transform: rotate(8deg);
  }

  .youtube__bg--02 {
    top: 164px;
    right: -59px;
    width: 496px;
    transform: rotate(-8deg);
  }

  .youtube__bg--03 {
    top: 527px;
    left: 68px;
    width: 296px;
    transform: rotate(-4deg);
  }
}

/* line up */
.line-up {
  padding: 64px 16px;

  &::after {
    background: #ffc621;
  }
}

.line-up__inner {
  max-width: 960px;
  margin: 0 auto;
}

.sec__inner {
}

.line-up__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.line-up__textArea {
  flex-shrink: 0;
}

.line-up__lead {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.45;
}

.sp {
}

.line-up__title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 34px;
}

.js-obi {
}

.line-up__brook {
  flex: 1;
  max-width: 119px;
}

.js-bounce-in {
}

.line-up-new {
  margin-top: 40px;
}

.line-up-new__icon {
  width: fit-content;
  overflow: hidden;
  font-family: Gothic MB101 Bold;
  font-size: 24px;

  .js-obi {
    padding-block: 0;
    line-height: 1.5;
    background: #ff3923;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        111deg,
        transparent 30%,
        rgb(255, 255, 255) 30%,
        rgba(255, 244, 198, 0.9) 31%,
        rgba(255, 238, 212, 0.3) 50%,
        transparent 70%
      );
      pointer-events: none;
      transform: translateX(-100%);
      z-index: 1;
      filter: brightness(1.2);
    }

    span {
      position: relative;
      z-index: 2;
    }
  }

  &.is-animated {
    .js-obi {
      &::after {
        animation: shimmer-order 6s infinite;
      }
    }
  }
}

.line-up-new__title {
  font-weight: 700;
  font-size: 24px;

  .js-obi {
    color: #000;
    background: linear-gradient(to bottom, #ffefc8 0%, #ffdf91 100%);
  }
}

.pc {
}

.line-up-new-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.line-up-new-items-list-item {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
}

.line-up-new-items-list-item__link {
  display: block;
  padding: 15px 13px;
  width: 100%;
  background: center / cover no-repeat url("../img/line-up-item-bg.webp");
}

.line-up-new-items-list-item__img {
}

.line-up-new-items-list-item__name {
  margin-top: 8px;
  min-height: 40px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
}

.line-up-new-items-list-item__price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 24px;

  .tax {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 12px;
  }
}

.line-up-new-items-list-item__button {
  max-width: 100%;
  min-height: 40px;
  margin: 10px auto 0;
  padding: 0 20px;
  justify-content: center;
  height: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  background: #ff3923;

  &::after {
    right: 10px;
  }
}

.c-btn {
}

.line-up-new-items-list-item__character {
  align-self: center;
}

.line-up-youtube {
  margin-top: 40px;
  aspect-ratio: 16/9;

  iframe {
    width: 100%;
    height: 100%;
  }
}

.line-up-items {
  margin-top: 40px;
}

.line-up-items__title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 24px;
}

.line-up-items .techo-items {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  > li {
    margin: 0 !important;
    width: 100% !important;
  }

  .btn-item dl dt {
    border-color: #ff3923;
  }

  .techo-items__img {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    align-self: center;
    order: 1000;
    background: transparent !important;
    padding: 0 !important;
  }

  .techo-items__imgBox {
    width: 50%;
    padding: 20px 26px 0;
  }
}

@media (min-width: 769px) {
  .line-up {
    padding: 120px 3%;
  }

  .sec__inner {
  }

  .line-up__head {
    position: relative;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
  }

  .line-up__textArea {
    text-align: center;
    flex-shrink: 0;
  }

  .line-up__lead {
    font-size: 26px;
  }

  .line-up__title {
    margin-top: 18px;
    font-size: 40px;
  }

  .js-obi {
  }

  .line-up__brook {
    position: absolute;
    left: 100%;
    top: 11px;
    width: 157px;
    max-width: 157px;
    margin-left: 18px;
  }

  .js-bounce-in {
  }

  .line-up-new {
    margin-top: 40px;

    + .line-up-new {
      margin-top: 80px;
    }
  }

  .line-up-new__icon {
    font-size: 24px;
  }

  .line-up-new__title {
    font-size: 30px;
  }

  .line-up-new-list {
    margin-top: 32px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .line-up-new-items-list-item {
    border-radius: 16px;
  }

  .line-up-new-items-list-item__link {
    padding: 16px;
  }

  .line-up-new-items-list-item__img {
  }

  .line-up-new-items-list-item__name {
    margin-top: 8px;
    min-height: 52px;
    font-size: 13px;
  }

  .line-up-new-items-list-item__price {
    font-size: 26px;

    .tax {
      font-size: 14px;

      &::before {
        font-size: 8px;
      }
    }
  }

  .line-up-new-items-list-item__button {
    margin-top: 16px;
    max-width: 160px;
    justify-content: center;
    padding-right: 20px;
    padding-left: 10px;
    height: 40px;
    font-size: 16px;
  }

  .c-btn {
  }

  .line-up-new-items-list-item__character {
  }

  .line-up-youtube {
    margin-top: 80px;
  }

  .line-up-items {
    margin-top: 80px;
  }

  .line-up-items__title {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .line-up-items .techo-items {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;

    > li {
      margin: 0 !important;
      width: 100% !important;
      padding: 16px 13px !important;
    }

    .btn-item dl dt {
      border-color: #ff3923;
    }

    .no-touch a.btn-item[data-href]:hover,
    .no-touch a.btn-item[href]:hover {
      background-color: #ff3923 !important;
    }

    .techo-items__img {
      grid-column: span 1;
      display: flex;
      align-self: center;
      order: 1000;
      background: transparent !important;
      padding: 0 !important;
    }

    .techo-items__imgBox {
      width: 100%;
      padding: 0 30px;
    }
  }
}

.no-touch a.btn-item[data-href]:hover,
.no-touch a.btn-item[href]:hover {
  background-color: #ff3923 !important;
}

.btn-item dl > .mdi-arrow-right:before {
  color: #ff3923;
}

/* useful */
.useful {
  padding: 64px 0;

  &::after {
    background: #6fc9ff;
  }
}

.sec {
}

.sec__inner {
}

.useful__inner {
}

.useful__head {
  display: grid;
  justify-items: center;
}

.useful__texts {
}

.useful__lead {
  margin-top: 8px;
  font-weight: 700;
  font-size: 22px;
}

.useful__title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
}

.js-obi {
}

.useful__text {
  margin-top: 30px;
  padding: 0 25px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
}

.useful__img {
  margin-top: 24px;
  width: 272px;
  max-width: 100%;
}

.js-bounce-in {
}

.useful__slideArea {
  position: relative;
  margin-top: 40px;
  padding: 0 60px;
}

.useful-swiper {
  overflow: visible;
  width: 100%;
}

.swiper {
}

.js-useful-swiper {
}

.swiper-wrapper {
}

.swiper-slide {
}

.useful-swiper-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;

  &::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: block;
    width: 30px;
    aspect-ratio: 1;
    background: #000 center / 18px 18px no-repeat url("../img/icon_plus.svg");
    border-radius: 8px;
  }
}

.useful-swiper-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: block;
  width: 44px;
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.useful-swiper-button--next {
  right: -33px;
  background: center / contain no-repeat url("../img/slide_next_button.svg");
}

.useful-swiper-button--prev {
  left: -33px;
  background: center / contain no-repeat url("../img/slide_prev_button.svg");
}

.useful-swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;

  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 769px) {
  .useful {
    padding: 120px 0;
  }

  .useful__head {
    display: flex;
    justify-content: center;
    gap: 22px;
    max-width: 982px;
    width: 92%;
    margin: 0 auto;
  }

  .useful__texts {
    flex-shrink: 0;
    margin-right: auto;
  }

  .useful__lead {
    margin-top: 16px;
    font-size: 26px;
  }

  .useful__title {
    text-align: left;
    font-size: 40px;
  }

  .js-obi {
  }

  .useful__text {
    margin-top: 0;
  }

  .useful__img {
    flex-shrink: 0;
    align-self: center;
    margin-top: 0;
    width: 235px;
  }

  .useful__slideArea {
    padding: 0;
    max-width: 1016px;
    margin-inline: auto;
  }

  .useful-swiper {
    overflow: visible;
    width: 100%;

    .swiper-slide {
      width: 320px;
    }
  }

  .swiper {
  }

  .js-useful-swiper {
  }

  .swiper-wrapper {
  }

  .useful-swiper-img {
    border-radius: 20px;

    &::after {
      right: 16px;
      bottom: 16px;
      width: 32px;
      background: #000 center / 20px 20px no-repeat url("../img/icon_plus.svg");
    }
  }

  .useful-swiper-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: block;
    width: 44px;
    aspect-ratio: 1;
    transform: translateY(-50%);
  }

  .useful-swiper-button--next {
    right: -21px;
  }

  .useful-swiper-button--prev {
    left: -21px;
  }

  .useful-swiper-pagination {
    margin-top: 40px;
  }
}

/* articles */

.articles::after {
  background: #bae2ff;
}

.sec-ttl .sec-ttl-txt1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  white-space: nowrap;
}
.sec-ttl .sec-ttl-txt2 {
  margin-top: 12px;
}

.articles .sec-ttl .sec-ttl-txt2 span {
  font-weight: 700;
  font-size: var(--fz40);
}

.articles .sec-inner {
  max-width: 960px;
  padding: 120px 80px;
  margin: auto;
}

.articles .sec-ttl {
  max-width: 762px;
  /* margin-bottom: 88px; */
}

.articles .c-bg-character .c-bg-character-img {
  right: 42px;
  top: -50px;
  width: 499.643px;
}

.articles__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 764px;
}

.articles__img {
  display: block;
  max-width: 219px;
  margin: 0 17px 0 auto;
}

.articles-block {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;
  background: #fff;
  color: #000;
  padding: 28px;
  margin-top: 24px;
  z-index: 8;
}

.articles-block:first-child {
  margin-top: 0;
}

.articles-block > div:nth-of-type(1) p:nth-of-type(1) {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
}

.articles-block > div:nth-of-type(1) p:nth-of-type(2) {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin: 16px 0;
}

.articles-block > div:nth-of-type(1) p:nth-of-type(3) {
  font-weight: 500;
  font-size: 12px;
  line-height: 2.1;
  margin-bottom: 16px;
}

.articles-block > div:nth-of-type(2) {
  flex-shrink: 0;
  width: 400px;
  font-weight: 700;
}

.articles-block > div.yt {
  position: relative;
  max-width: 100%;
  padding-bottom: calc(min(200px, 56.25%));
  height: 0;
  overflow: hidden;
}

.articles-block > div.yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.articles-thousand-sunny-frame {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.articles-thousand-sunny {
  display: block;
  max-width: 220px;
  margin: 0 auto;
}

.articles-block-img {
  a {
    display: block;
  }
}

@media (max-width: 1049px) {
  .articles-block {
    padding: 30px 50px;
  }
  .articles-block > div:nth-of-type(1) {
    width: calc(50% - 20px);
  }
  .articles-block > div:nth-of-type(2) {
    width: 50%;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .articles {
    .c-btn {
      width: 100%;
      height: 40px;
      text-align: center;
      justify-content: center;
      position: absolute;
      bottom: 32px;
      left: 20px;
      right: 20px;
      width: auto;
    }
  }

  .articles .sec-inner {
    padding: 80px 20px 64px;
  }

  .sec-ttl .sec-ttl-txt1 {
    font-size: 15px;
    text-align: center;
    white-space: unset;
  }

  .sec-ttl .sec-ttl-txt2 {
    text-align: center;
  }

  .articles .sec-ttl {
    padding-bottom: 0;
    margin-bottom: auto 0;
  }

  .articles .sec-ttl .sec-ttl-txt2 span {
    font-size: var(--fz32);
  }

  .articles__container {
    display: block;
    align-items: center;
    justify-content: space-between;
  }

  .articles__img {
    display: block;
    max-width: 219px;
    margin: 16px auto 0;
  }

  .articles .c-bg-character .c-bg-character-img {
    width: 85vw;
    position: static;
    margin: 0 auto -25px;
    display: block;
  }
  .articles-block {
    position: relative;
    display: block;
    padding: 40px 20px 94px;
    border-radius: 20px;
  }
  .articles-block > div:nth-of-type(1) {
    width: 100%;
  }
  .articles-block > div:nth-of-type(1) p:nth-of-type(1) {
    font-size: 12px;
  }
  .articles-block > div:nth-of-type(1) p:nth-of-type(3) {
    font-size: 12px;
  }
  .articles-block > div:nth-of-type(2) {
    width: 100%;
    margin: 30px 0 0;
  }
  .articles-block > div.yt {
    padding-bottom: 56.25%;
  }
  .articles-thousand-sunny-frame {
    padding-top: 64px;
  }
}

/* shop */
.shop {
  padding-top: 80px;
  padding-bottom: 86px;

  &::after {
    background: #ff8036;
  }
}

.shop__title {
  margin-top: 9px;
  padding: 0 18px;
  font-weight: 700;
  font-size: var(--fz32);
}

.shop__text {
  font-weight: 700;
  padding: 0 18px;
  width: calc(100% - 110px);
  font-size: 22px;
  line-height: 1.4;
}

.shop__inner {
  display: grid;
  gap: 30px;
  width: calc(100% - 36px);
  margin-top: 40px;
  margin-inline: auto;
  max-width: 954px;
}

.shopSection__title {
  display: grid;
  place-items: center;
  min-height: 56px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: var(--fz20);
  background: #fff;
}

.shopSection__list {
  line-height: 1.5625;

  li {
    &:not(:first-child) {
      margin-top: 0.5em;
    }
  }
}

.shopSection__list a {
  width: fit-content;
  font-weight: 600;
  text-decoration: underline;
}

.shopSection__list a[target="_blank"]::after {
  content: "";
  margin-left: 6px;
}

.shopSection__info {
  margin-top: 8px;
  font-weight: 600;
  font-size: var(--fz12);
  line-height: 1.5;
}

.shopSection__text {
  line-height: 1.8;
}

.shopImg {
  position: absolute;
  z-index: 2;
  top: 80px;
  right: 30px;
  width: 91px;
}

@media (min-width: 769px) {
  .shop {
    padding-top: 120px;
    padding-bottom: 92px;
  }

  .shop__title {
    font-size: var(--fz40);
    text-align: center;
  }

  .shop__text {
    width: 100%;
    text-align: center;
    font-size: 26px;
    line-height: 1.45;
  }

  .shop__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 60px;
  }

  .shopImg {
    position: absolute;
    top: 120px;
    left: 50%;
    right: auto;
    width: 121px;
    margin-left: 294px;
  }

  .shopSection__title {
    font-size: 24px;
  }

  .shopSection__info {
    margin-top: 15px;
  }
}

@media (hover: hover) {
  .shopSection__list a {
    transition: opacity 0.2s ease-out;
  }
  .shopSection__list a:hover {
    opacity: 0.5;
  }
}

/* copy */
.copy {
  background-color: #fff;
  padding: 50px 30px;
  text-align: center;
  font-size: 12px;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .copy {
    padding: 30px;
    font-size: 10px;
  }
}
