@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-bound: cubic-bezier(0.34, 1.56, 0.64, 1);
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
html {
  font-size: 0.625em;
}

body {
  font-weight: 400;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

h2,
h3 {
  font-weight: 400;
}

a {
  text-decoration: none;
}

.p-wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-wrap {
    overflow: visible;
  }
}

.p-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/bg_sp.jpg) no-repeat center/cover;
}
@media screen and (min-width: 900px) {
  .p-bg {
    background: url(../img/bg_pc.jpg) no-repeat center/cover;
  }
}

.p-main {
  padding: 7.8% 0 8.7%;
}
@media screen and (min-width: 900px) {
  .p-main {
    margin: 0 auto;
    padding: 37px 0 42px;
    max-width: 500px;
  }
}

.p-section {
  width: 89.1%;
  margin: 0 auto 7.4%;
  padding: 16% 7.6%;
  position: relative;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-bound), opacity 0.5s var(--ease-bound);
}
.is-load .p-section {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .p-section {
    width: 100%;
    border-top: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
  }
}

.p-kv {
  width: 89.1%;
  margin: 0 auto 7.4%;
  position: relative;
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  background-color: var(--color-white);
  opacity: 0;
  transform: scale(0.85);
  transition: transform 0.6s var(--ease-bound), opacity 0.5s var(--ease-bound);
}
.is-load .p-kv {
  opacity: 1;
  transform: scale(1);
}
@media screen and (min-width: 900px) {
  .p-kv {
    width: 100%;
    border-top: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
  }
}
.p-kv .p-kv__image {
  width: 100%;
}
.p-kv .p-kv__image img {
  width: 100%;
}

.p-streaming {
  padding: 16% 7.6% 12.3%;
}
@media screen and (min-width: 900px) {
  .p-streaming {
    padding: 19.5% 9.9% 16.3%;
  }
}

.p-streaming__deco {
  width: 22%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(23%, -23%);
}
@media screen and (min-width: 900px) {
  .p-streaming__deco {
    width: 20%;
    transform: translate(24%, -24%);
  }
}
.p-streaming__deco img {
  width: 100%;
}

.p-streaming__title {
  width: 76%;
  margin: 0 auto 10%;
}

.p-streaming__contents-block {
  margin-bottom: 6%;
}
.p-streaming__contents-block:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .p-streaming__contents-block {
    margin-bottom: 20px;
  }
}
.p-streaming__contents-list-item {
  padding: 5% 0;
  position: relative;
}
.p-streaming__contents-list-item::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px dotted var(--color-black);
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .p-streaming__contents-list-item::before {
    border-bottom: 2px dotted var(--color-black);
  }
}
.p-streaming__contents-list-item:last-of-type {
  margin-bottom: 0;
}
.p-streaming__contents-list-item:last-of-type::before {
  display: none;
}
.p-streaming__contents-list-item .p-in-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-streaming__contents-list-item .p-in-brand {
  width: 66%;
}
.p-streaming__contents-list-item .p-in-brand p {
  font-size: min(4.55vw, 1.7rem);
  line-height: 1.2;
  font-weight: 500;
}
.p-streaming__contents-list-item .p-in-link {
  width: 32%;
  font-size: 3vw;
  text-align: center;
  background-color: var(--color-black);
  border-radius: 6px;
  transition: background-color 0.6s var(--ease-bound);
}
@media screen and (min-width: 900px) {
  .p-streaming__contents-list-item .p-in-link:hover {
    background-color: #5b826f;
  }
}
@media screen and (min-width: 900px) {
  .p-streaming__contents-list-item .p-in-link {
    width: 30%;
    font-size: 1.5rem;
    border-radius: 10px;
  }
}
.p-streaming__contents-list-item .p-in-link a {
  display: block;
  padding: 15% 2% 18%;
  color: var(--color-white);
}
.p-streaming__contents-list-item .p-in-other {
  display: block;
  margin-top: 2vw;
  font-size: 2.7vw;
}
@media screen and (min-width: 900px) {
  .p-streaming__contents-list-item .p-in-other {
    margin-top: 6px;
    font-size: 1rem;
  }
}
.p-streaming__contents-head {
  margin-bottom: 4%;
  font-size: min(4.8vw, 2rem);
  line-height: 1.2;
  font-weight: 700;
  color: #1c6643;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-streaming__contents-head {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

.p-link {
  padding: 16% 7.6% 8%;
}
@media screen and (min-width: 900px) {
  .p-link {
    padding: 18.5% 9.7% 13.4%;
  }
}

.p-link__block {
  position: relative;
  padding: 12% 0;
}
@media screen and (min-width: 900px) {
  .p-link__block {
    padding: 10.3% 0 9.9%;
  }
}
.p-link__block::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px dotted var(--color-black);
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .p-link__block::before {
    border-bottom: 2px dotted var(--color-black);
  }
}
.p-link__block:first-of-type {
  padding-top: 0;
}
.p-link__block:last-of-type::before {
  display: none;
}

.p-link__title {
  margin: 0 auto;
}
.p-link__title.--official {
  width: 57%;
  margin: 0 auto 7%;
}
@media screen and (min-width: 900px) {
  .p-link__title.--official {
    width: 53%;
    margin: 0 auto 8.4%;
  }
}
.p-link__title.--sns {
  width: 55%;
  margin-bottom: 7%;
}
@media screen and (min-width: 900px) {
  .p-link__title.--sns {
    width: 52%;
    margin-bottom: 8%;
  }
}
.p-link__title.--movie {
  width: 28%;
  margin-bottom: 8.6%;
}
@media screen and (min-width: 900px) {
  .p-link__title.--movie {
    width: 24%;
    margin-bottom: 8.7%;
  }
}

.p-link__banner {
  margin: 0 auto;
  border: 2px solid var(--color-black);
  border-radius: 5px;
  box-shadow: 0 3px 0 0 #d6d6d8;
  transition: transform 0.4s var(--ease-bound);
}
@media screen and (min-width: 900px) {
  .p-link__banner:hover {
    transform: scale(0.95);
  }
}
@media screen and (min-width: 900px) {
  .p-link__banner {
    border: 3px solid var(--color-black);
    border-radius: 10px;
  }
}
.p-link__banner a {
  display: block;
  padding: 3.2% 14%;
}
@media screen and (min-width: 900px) {
  .p-link__banner a {
    padding: 1.9% 21% 2.2%;
  }
}

.p-link__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}
.p-link__sns-list-item {
  width: 22%;
  background-color: var(--color-white);
  border-radius: 50rem;
  border: 2px solid var(--color-black);
  box-shadow: 0 3px 0 0 #d6d6d8;
  transition: transform 0.4s var(--ease-bound);
}
@media screen and (min-width: 900px) {
  .p-link__sns-list-item:hover {
    transform: scale(0.9);
  }
}
@media screen and (min-width: 900px) {
  .p-link__sns-list-item {
    width: 18%;
  }
}
.p-link__sns-list-item a {
  display: block;
  padding: 25%;
}

.p-link__movie {
  width: calc(100% - 8px);
  margin: 0 auto;
  outline: 2px solid var(--color-black);
  outline-offset: 2px;
}
@media screen and (min-width: 900px) {
  .p-link__movie {
    width: calc(100% - 10px);
    outline: 3px solid var(--color-black);
    outline-offset: 2px;
  }
}
.p-link__movie-item {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  border: 1px solid var(--color-black);
}
@media screen and (min-width: 900px) {
  .p-link__movie-item {
    border: 2px solid var(--color-black);
  }
}
.p-link__movie-item iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-footer {
  padding-bottom: 16%;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-bound), opacity 0.5s var(--ease-bound);
}
.is-load .p-footer {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .p-footer {
    padding-bottom: 6%;
  }
}

.p-footer_help {
  margin-bottom: 6.3%;
}
@media screen and (min-width: 900px) {
  .p-footer_help {
    margin-bottom: 37px;
  }
}

.p-footer_help__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
}
@media screen and (min-width: 900px) {
  .p-footer_help__list {
    gap: 32px;
  }
}
.p-footer_help__list-item {
  display: block;
  font-size: 3.2vw;
  white-space: nowrap;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .p-footer_help__list-item {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
  }
}
.p-footer_help__list-item:last-of-type {
  margin-right: 0;
}

.p-footer_help__link {
  display: block;
  position: relative;
  margin-left: 12%;
  color: var(--color-black);
}
@media screen and (min-width: 900px) {
  .p-footer_help__link {
    margin-left: 14px;
  }
  .p-footer_help__link:hover {
    text-decoration: underline;
  }
  .p-footer_help__link:hover::before {
    animation: help 0.3s cubic-bezier(0.65, 0, 0.35, 1) 2;
  }
  @keyframes help {
    0%, 100% {
      transform: translateX(-158%) rotate(0deg);
    }
    50% {
      transform: translateX(-158%) rotate(20deg);
    }
  }
}
.p-footer_help__link::before {
  content: "";
  width: 3.4vw;
  padding-top: 3.4vw;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-130%);
  background: url(../img/deco_footer.svg) no-repeat center/contain;
  transform-origin: 10% 80%;
}
@media screen and (min-width: 900px) {
  .p-footer_help__link::before {
    width: 18px;
    padding-top: 18px;
    transform: translateX(-158%);
  }
}

.p-footer__caution {
  margin-bottom: 7%;
  text-align: center;
  font-size: 2.5vw;
  line-height: 1.9;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .p-footer__caution {
    margin-bottom: 7px;
    font-size: 1rem;
  }
}

.p-footer__copy {
  text-align: center;
  font-size: 3vw;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .p-footer__copy {
    font-size: 1rem;
  }
}