@charset "UTF-8";
/* --------------------------------
 * object
 * -------------------------------- */
/* cols ------------------------ */
.cols {
  display: flex;
  flex-wrap: wrap;
}
.cols-ct {
  justify-content: center;
}
.cols-sb {
  justify-content: space-between;
}
.col-100 {
  width: 100%;
}
.col-49-5p {
  width: 49.5%;
}
.col-49p {
  width: 49%;
}
.col-p2 {
  width: calc(100% / 2);
}
.col-p3 {
  width: calc(100% / 3);
}
.col-p4 {
  width: calc(100% / 4);
}
.col-p5 {
  width: calc(100% / 5);
}
/* title-fixd ------------------------ */
.title-fixd {
  position: sticky;
  top: 46px;
  z-index: 99;
}
/* inner ------------------------ */
.inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.inner-none {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* clearfix ------------------------ */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/* for-pc, for-mobile ------------------------ */
.for-pc {
  display: block;
}
.for-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: block;
  }
}
/* youtube-wrap ------------------------ */
.youtube-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube-wrap iframe {
  width: 100%;
  height: 100%;
}
/* youtubeshort-wrap ------------------------ */
.youtubeshort-wrap {
  position: relative;
  width: 100%;
  padding-top: 130%;
}
.youtubeshort-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* movie-ttl ------------------------ */
.movie-ttl {
  width: 100%;
  text-align: center;
}
.movie-ttl strong {
  display: inline-block;
  font-size: 1.2rem;
}
.movie-ttl strong::before, .movie-ttl strong::after {
  content: "";
  width: 1px;
  background-color: #9D9D9D;
  display: inline-block;
  margin-right: 1em;
  margin-left: 1em;
  height: 1em;
}
.movie-ttl strong::before {
  margin-right: 1em;
  transform: rotateZ(-30deg);
}
.movie-ttl strong::after {
  margin-left: 1em;
  transform: rotateZ(30deg);
}
/* movie-16-9 ------------------------ */
.movie-16-9 {
  width: 100%;
  aspect-ratio: 16 / 9;
}
/* movie-1-1 ------------------------ */
.movie-1-1 {
  width: 100%;
  aspect-ratio: 1 / 1;
}
/* movie-9-16 ------------------------ */
.movie-9-16 {
  width: 100%;
  aspect-ratio: 9 / 16;
}
.movie-16-9 iframe, .movie-1-1 iframe, .movie-9-16 iframe {
  width: 100%;
  height: 100%;
}
/* flex-img ------------------------ */
.flex-img img {
  width: 100%;
  height: auto;
  display: block;
}
/* ul,ol ------------------------ */
.ul-restore {
  padding-left: 25px;
  list-style-type: disc;
}
.ol-restore {
  padding-left: 25px;
  list-style-type: decimal;
}
/* over ------------------------ */
.u-overflow {
  overflow: hidden;
}
/* --------------------------------
 * utility
 * -------------------------------- */
/* width ------------------------ */
.u-width-90p-c, .u-width-80p-c, .u-width-84p-c, .u-width-70p-c, .u-width-60p-c, .u-width-50p-c, .u-width-40p-c, .u-width-30p-c {
  margin-left: auto;
  margin-right: auto;
}
.u-width-90p-c {
  width: 90%;
}
.u-width-84p-c {
  width: 84%;
}
.u-width-80p-c {
  width: 80%;
}
.u-width-70p-c {
  width: 70%;
}
.u-width-60p-c {
  width: 60%;
}
.u-width-50p-c {
  width: 50%;
}
.u-width-40p-c {
  width: 40%;
}
.u-width-30p-c {
  width: 30%;
}
/* font-weight ------------------------ */
.u-weight-400 {
  font-weight: 400;
}
.u-weight-500 {
  font-weight: 500;
}
.u-weight-700 {
  font-weight: 700;
}
/* text-align ------------------------ */
.u-align-left {
  text-align: left;
}
.u-align-center {
  text-align: center;
}
.u-align-right {
  text-align: right;
}
/* font-size ------------------------ */
.u-fsize-10 {
  font-size: 1.0rem;
}
.u-fsize-12 {
  font-size: 1.2rem;
}
.u-fsize-13 {
  font-size: 1.3rem;
}
.u-fsize-16 {
  font-size: 1.6rem;
}
.u-fsize-18 {
  font-size: 1.8rem;
}
.u-fsize-22 {
  font-size: 2.2rem;
}
/* margin-bottom ------------------------ */
.u-mb-05 {
  margin-bottom: 5px;
}
.u-mb-10 {
  margin-bottom: 10px;
}
.u-mb-15 {
  margin-bottom: 15px;
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-mb-30 {
  margin-bottom: 30px;
}
.u-mb-40 {
  margin-bottom: 40px;
}
.u-mb-50 {
  margin-bottom: 50px;
}
.u-mb-70 {
  margin-bottom: 70px;
}
.u-mb-80 {
  margin-bottom: 80px;
}
.u-mb-0_3em {
  margin-bottom: 0.3em;
}
.u-mb-0_5em {
  margin-bottom: 0.5em;
}
.u-mb-0_8em {
  margin-bottom: 0.8em;
}
.u-mb-1em {
  margin-bottom: 1em;
}
.u-mb-1_5em {
  margin-bottom: 1.5em;
}
.u-mb-2em {
  margin-bottom: 2em;
}
.u-mb-2_5em {
  margin-bottom: 2.5em;
}
.u-mb-3em {
  margin-bottom: 3em;
}
.u-mb-4em {
  margin-bottom: 4em;
}
.u-mb-3p {
  margin-bottom: 3%;
}
.u-mb-5p {
  margin-bottom: 5%;
}
.u-mb-8p {
  margin-bottom: 8%;
}
.u-mb-10p {
  margin-bottom: 10%;
}
.u-mb-15p {
  margin-bottom: 15%;
}
.u-mb-20p {
  margin-bottom: 20%;
}
.u-mbb-last {
  margin-bottom: 120px;
}
/* padding-bottom ------------------------ */
.u-pb-05 {
  padding-bottom: 5px;
}
.u-pb-10 {
  padding-bottom: 10px;
}
.u-pb-70 {
  padding-bottom: 70px;
}
.u-pb-80 {
  padding-bottom: 80px;
}
.u-pb-1em {
  padding-bottom: 1em;
}
.u-pb-2em {
  padding-bottom: 2em;
}
.u-pb-3em {
  padding-bottom: 3em;
}
.u-pb-4em {
  padding-bottom: 4em;
}
.u-pb-5em {
  padding-bottom: 5em;
}
.u-pb-last {
  padding-bottom: 120px;
}