@charset "UTF-8";

/* animation */

.js-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
  transition-duration: .56s;
}

.js-fade-in-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}



/* ボタン */
.line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  max-width: 22rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.25em .5em;
  font-weight: 700;
  border-radius: 100vmax;
  background: var(--color-white);
  border: 3px solid var(--color-sns-line);
}

.line-button::before {
  content: '';
  display: block;
  width: 2rem;
  aspect-ratio: 26/30;
  background: center / contain no-repeat url('../images/common/icon_line.svg');
}

.back-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
  max-width: 22rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.25em var(--gutter-x);
  font-weight: 700;
  border-radius: 100vmax;
  background: var(--color-white);
  border: 3px solid var(--color-orange);
}

.back-button::after {
  content: '';
  display: block;
  width: 1.625rem;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url('../images/common/icon_arrow_prev.svg');
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
  max-width: 22rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.25em var(--gutter-x);
  font-weight: 700;
  border-radius: 100vmax;
  background: var(--color-white);
  border: 3px solid var(--color-orange);
}

.link-button::after {
  content: '';
  display: block;
  width: 1.625rem;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url('../images/common/icon_arrow_next.svg');
}

.link-button-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
  max-width: 22rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.25em var(--gutter-x);
  font-weight: 700;
  color: var(--color-white);
  border-radius: 100vmax;
  background: var(--color-black);
  border: 3px solid var(--color-black);
}

.link-button-dark::after {
  content: '';
  display: block;
  width: 1.625rem;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url('../images/common/icon_arrow_next.svg');
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
  max-width: 22rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.25em var(--gutter-x);
  font-weight: 700;
  border-radius: 100vmax;
  background: var(--color-white);
  border: 3px solid var(--color-orange);
}

.download-button::after {
  flex-shrink: 0;
  content: '';
  display: block;
  width: 1.3125rem;
  aspect-ratio: 21/26;
  background: center / contain no-repeat url('../images/common/icon_file.svg');
}

.close-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
  max-width: 22rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.25em var(--gutter-x);
  font-weight: 700;
  border-radius: 100vmax;
  background: var(--color-white);
  border: 3px solid var(--color-orange);
}

.close-button::after {
  flex-shrink: 0;
  content: '';
  display: block;
  width: 1.625rem;
  aspect-ratio: 1;
  background: center / contain no-repeat url('../images/common/icon_close.svg');
}

.post-back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.8;
}

.post-back-button::before {
  content: '';
  display: block;
  width: 1.625rem;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url('../images/common/icon_arrow_prev.svg');
}

.close-page-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
}

.close-page-button::after {
  content: '';
  display: block;
  width: 3.125rem;
  aspect-ratio: 1;
  background: center / contain no-repeat url('../images/common/icon_menu_close.svg');
}

/* category */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-item {
  display: block;
  padding: 0.1875rem 1rem;
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  background: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: 100vmax;
}

.tag-item--secondary {
  background: var(--color-white);
}

/* 背景 */
.bg {
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.bg-item {
  position: absolute;
}

.bg-item01 {
  top: 8.9375rem;
  left: -2.9375rem;
  width: 9rem;
}

.bg-item02 {
  top: -3.5625rem;
  left: 9.75rem;
  width: 9rem;
  transform: rotate(45deg);
}

.bg-item03 {
  top: 11.75rem;
  right: -3.9375rem;
  width: 15rem;
}

.bg-item04 {
  display: none;
}

.bg-item05 {
  display: none;
}

@media (min-width: 960px) {
  .bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 90rem;
    transform: translateX(-50%);
  }

  .bg-item01 {
    top: 8rem;
    left: -0.9375rem;
  }

  .bg-item02 {
    top: -1.5625rem;
    left: 16.5rem;
  }

  .bg-item03 {
    top: 8.25rem;
    right: -2rem;
  }

  .bg-item04 {
    top: 2.875rem;
    right: 17.625rem;
    display: block;
    width: 9rem;
  }

  .bg-item05 {
    top: 17.0625rem;
    left: 13.3125rem;
    display: block;
    width: 15rem;
    transform: rotate(45deg);
  }
}

.content-bg {
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.content-bg-item {
  position: absolute;
}

.content-bg-item01 {
  top: 8.9375rem;
  left: -2.9375rem;
  width: 9rem;
}

.content-bg-item02 {
  top: -3.5625rem;
  left: 9.75rem;
  width: 9rem;
  transform: rotate(45deg);
}

.content-bg-item03 {
  top: 11.75rem;
  right: -3.9375rem;
  width: 15rem;
}

/* 左 固定セクション */

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  padding-inline: var(--gutter-x);

}


/*260211追加分*/
.hero__title {
  max-width: 17rem;
  animation: fadeInUp var(--animation-duration) var(--loading-delay) ease both;
  margin: 0 auto;
  position: relative;
  display: inline-block;
}

.hero-note {
  position: absolute;
  top: -20px;
  left: -50px;
  transform: rotate(-15deg) scale(0.9);
  transform-origin: left top;
  pointer-events: none;
}

.hero-note__text{
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-align: center;
}

.hero-note__dots{
  position: absolute;
  left: -38px;
  top: 28px;
  width: 38px;
  height: 66px;
  transform: rotate(40deg);
}

.hero-note__dots::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #111 2px, transparent 3.5px) 0 12px / 10px 10px repeat-x;
  transform: rotate(10deg);
}

/*260211追加分ここまで*/


.hero__text {
  display: grid;
  gap: 1.125rem;
  margin-top: 1.1875rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.8;
  animation: fadeInUp var(--animation-duration) calc(var(--loading-delay) + var(--animation-duration)) ease both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__text span {
  color: var(--color-orange);
}

.hero__button {
  display: none;
}


@media (min-width: 960px) {
  .hero__inner {
    gap: 1.75rem;
    justify-items: center;
  }

  .hero__title {
    max-width: 24rem;
  }

  /*260211追加分*/
  .hero-note {
    top: -60px;
    left: -70px;
  }

  .hero-note__text{
    font-size: 18px;
    line-height: 24px;
  }

  .hero-note__dots{
    left: -68px;
    top: 38px;
    width: 70px;
    height: 80px;
    transform: rotate(30deg);
  }

  .hero-note__dots::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #111 3px, transparent 3.5px) 0 12px / 10px 10px repeat-x;
    transform: rotate(10deg);
  }

    /* 右の縦ドット（デザインにある縦の点線）※疑似要素で追加 */
  .hero-note::after{
    content: "";
    position: absolute;
    left: 120px;
    top: 12px;
    width: 10px;
    height: 60px;
    background: radial-gradient(circle, #111 3px, transparent 3.5px) 0 12px / 10px 10px repeat-y;
    transform: rotate(30deg);
  }

  /*260211追加分ここまで*/

  .hero__text {
    margin-top: 0;
    font-size: 1.125rem;
  }

  .hero__button {
    display: flex;
  }
}

/* line ボタン ブロック */
.line-button-block {
  display: grid;
  justify-items: center;
}

.line-button-block__attention {
  justify-self: center;
  display: flex;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
}

.line-button-block__attention::before {
  content: '※';
}

/* ページャー */
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pager-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.pager-item.pager-button--current {
  color: var(--color-orange);
  /* background: var(--color-orange);
  border-radius: 0.5rem; */
}

.pager-prev-next {
  display: flex;
}

.pager-prev-next-button {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.8;
}

.pager-prev::before {
  content: '';
  display: block;
  width: 1.625rem;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url('../images/common/icon_arrow_prev.svg');
}


.pager-next {
  margin-left: auto;
}

.pager-next::after {
  content: '';
  display: block;
  width: 1.625rem;
  aspect-ratio: 1/1;
  background: center / contain no-repeat url('../images/common/icon_arrow_next.svg');
}