@charset "UTF-8";
/* display
----------------------------------------------- */
/* pc */
@media only screen and (min-width: 1000px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
/* sp */
@media only screen and (max-width: 999px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/* swiper
----------------------------------------------- */
.swiper-slide {
  will-change: transform;
}

/* body
----------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #ecc99b;
  color: #603340;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  position: relative;
}

a {
  color: #b70a00;
  text-decoration: none;
}

.main {
  font-family: "Noto Serif JP", serif;
}

.footer {
  background: #fff;
}

/* loading
----------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}

.loading__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ecc99b;
  z-index: 1;
}

.loading__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2px 0 0 -150px;
  width: 300px;
  height: 4px;
  background-color: #ceab7d;
  overflow: hidden;
  z-index: 1;
}

.loading__progress {
  width: 100%;
  height: 100%;
  background-color: #603340;
  transform: scaleX(0);
  transform-origin: left;
  transition-property: transform;
}

.js-loading-ready .loading__mask {
  transition-property: opacity;
}

.js-loading-ready .loading__bar {
  transition-property: transform;
}

.js-loading-start .loading__mask {
  opacity: 0;
  transition-duration: 0.5s;
}

.js-loading-start .loading__bar {
  transform: scaleY(0);
  transition-duration: 0.25s;
}

.js-loading-end {
  pointer-events: none;
  visibility: hidden;
}

/* nolink
----------------------------------------------- */
.nolink {
  pointer-events: none;
  background: #c8c8c8;
}

/* ytplayer
----------------------------------------------- */
.ytplayer a {
  display: block;
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  z-index: 1;
}

.ytplayer a:before,
.ytplayer a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
}

.ytplayer a:before {
  margin: -30px 0 0 -30px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.ytplayer a:after {
  margin: -12px 0 0 -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #603340;
}

.ytplayer img {
  display: block;
  width: 100%;
  height: auto;
}

.ytplayer__movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ytplayer.is-play a:before,
.ytplayer.is-play a:after {
  pointer-events: none;
  visibility: hidden;
}

/* header
----------------------------------------------- */
.header {
  font-family: "Noto Serif JP", serif;
  background-image: url(images/header_bg.png);
  background-position: center top;
  background-size: 270px auto;
  overflow: hidden;
}
.header__inner {
  margin: auto;
  padding-bottom: 50px;
  width: 1000px;
}
.header__main {
  position: relative;
  z-index: 1;
}
.header__image {
  margin: auto;
  width: 954px;
}
.header__title {
  position: absolute;
  top: 54px;
  left: 50%;
  margin-left: -74px;
  width: 147px;
  z-index: 1;
}
.header__lead {
  position: absolute;
  left: 50%;
  bottom: 53px;
  margin-left: -425px;
  width: 850px;
}
.header img {
  display: block;
  width: 100%;
  height: auto;
}

/* sp */
@media only screen and (max-width: 999px) {
  .header {
    background-size: 135px auto;
  }
  .header__inner {
    width: auto;
  }
  .header__image {
    width: auto;
  }
  .header__title {
    top: 4.5%;
    margin-left: -8.5%;
    width: 17.45%;
  }
  .header__lead {
    position: static;
    margin: 3% auto 0;
    width: 91%;
  }
}
/* js */
.header-ready .header__image {
  opacity: 0;
  transform: scale(0.98);
  transition-property: opacity, transform;
}
.header-ready .header__title {
  opacity: 0;
  transform: scale(1.05);
  transition-property: opacity, transform;
}
.header-ready .header__lead {
  opacity: 0;
  transform: translateY(-30px);
  transition-property: opacity, transform;
}
.header-finish .header__image {
  opacity: 1;
  transform: scale(1);
  transition-duration: 0.85s;
  transition-delay: 0.25s;
}
.header-finish .header__title {
  opacity: 1;
  transform: scale(1);
  transition-duration: 0.85s;
  transition-delay: 0.25s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
.header-finish .header__lead {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.5s;
  transition-delay: 0.85s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

/* intro
----------------------------------------------- */
.intro {
  position: relative;
  margin-top: -50px;
  font-family: "Noto Serif JP", serif;
  z-index: 1;
}
.intro__inner {
  position: relative;
  margin: auto;
  padding: 25px 30px 40px;
  width: 660px;
  background-image: url(images/bg_intro.png);
  background-position: center top;
  background-size: 40px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.intro__summary {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.75em;
}
.intro__logo {
  margin: 26px auto 0;
  width: 300px;
}
.intro__copy {
  margin: 18px auto 0;
  width: 649.5px;
}
.intro__column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 20px auto 0;
  padding: 14px 0;
  width: 520px;
  background-color: #c4e1e8;
  z-index: 1;
}
.intro__column:before {
  display: block;
  content: "";
  position: absolute;
  top: 20px;
  left: 96px;
  bottom: 20px;
  width: 1px;
  background-color: #603340;
  z-index: 1;
}
.intro__col:first-child {
  width: 97px;
}
.intro__col:last-child {
  width: calc(100% - 97px - 17px);
}
.intro__col p {
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
}
.intro__col dt {
  font-size: 30px;
  letter-spacing: 0.03em;
  line-height: 1.1em;
}
.intro__col dt small {
  font-size: 20px;
}
.intro__col dd {
  margin-top: -0.25em;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.75em;
}
.intro__col dd + dt {
  margin-top: 5px;
}
.intro__button {
  margin: 20px auto 0;
  width: 300px;
}
.intro__image {
  position: absolute;
  bottom: 20px;
  width: 230px;
  z-index: 1;
}
.intro__image.is-left {
  left: -155px;
  transform: rotate(-5deg);
}
.intro__image.is-right {
  right: -155px;
  transform: rotate(5deg);
}
.intro img {
  display: block;
  width: 100%;
  height: auto;
}

/* sp */
@media only screen and (max-width: 999px) {
  .intro {
    margin: 50px 25px 0;
  }
  .intro__inner {
    padding: 36px 15px 30px;
    max-width: 400px;
    width: auto;
    background-size: 20px;
  }
  .intro__summary {
    font-size: 10px;
    line-height: 1.5em;
  }
  .intro__logo {
    margin-top: 9px;
    width: 150px;
  }
  .intro__copy {
    margin-top: 15px;
    width: 232px;
  }
  .intro__column {
    margin-top: 12px;
    padding: 14px 0;
    width: auto;
  }
  .intro__column:before {
    top: 15px;
    left: 65px;
    bottom: 15px;
  }
  .intro__col:first-child {
    width: 65px;
  }
  .intro__col:last-child {
    width: calc(100% - 65px - 9px);
  }
  .intro__col p {
    margin-left: 15px;
    font-size: 10px;
  }
  .intro__col dt {
    font-size: 15px;
  }
  .intro__col dt small {
    font-size: 10px;
  }
  .intro__col dd {
    margin-top: 0.1em;
    font-size: 12px;
    line-height: 1.2em;
  }
  .intro__col dd + dt {
    margin-top: 12px;
  }
  .intro__button {
    margin: 20px auto 0;
    width: auto;
  }
  .intro__image {
    top: -40px;
    bottom: auto;
    width: 100px;
  }
  .intro__image.is-left {
    left: -20px;
  }
  .intro__image.is-right {
    right: -20px;
  }
}
/* button
----------------------------------------------- */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 1.75em;
  background-color: #542f3a;
  border-radius: 6px;
  z-index: 1;
}
.button[target=_blank]:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  margin: -6px 0 0;
  content: "";
  width: 14px;
  height: 11px;
  background: url(images/icon_blank.png) no-repeat;
  background-size: 14px 11px;
}

/* pc */
@media only screen and (min-width: 1000px) {
  .button {
    transition-property: background-color;
    transition-duration: 0.25s;
  }
  .button:hover {
    background-color: #b70a00;
    transition-duration: 0.1s;
  }
}
/* sp */
@media only screen and (max-width: 999px) {
  .button {
    font-size: 15px;
    line-height: 2.2em;
  }
}
/* present
----------------------------------------------- */
.present {
  background-image: url(images/bg_present.png);
  background-position: center top;
  background-size: 40px;
}
.present h3 {
  margin-top: -12px;
  color: #b70a00;
  font-size: 30px;
  font-weight: 700;
  line-height: 52px;
}
.present__inner {
  margin: auto;
  padding: 76px 0 80px;
  width: 900px;
}
.present__tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.present__tag li {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 38px;
  color: #b70a00;
  font-size: 20px;
  line-height: 24px;
  border: 1px solid #f2c28a;
  background-color: #fff0c8;
  border-radius: 200px;
}
.present__column {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.present__col:first-child {
  width: 300px;
}
.present__col:last-child {
  width: 570px;
}
.present__col dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  border-bottom: 1px solid #805c66;
}
.present__col dt, .present__col dd {
  padding: 14px 0;
  font-size: 16px;
  line-height: 28px;
  border-top: 1px solid #805c66;
}
.present__col dt {
  position: relative;
  width: 86px;
  z-index: 1;
}
.present__col dt:before {
  display: block;
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  background-color: #805c66;
  z-index: 1;
}
.present__col dd {
  padding-left: 20px;
  width: calc(100% - 86px - 20px);
}
.present__col small {
  display: block;
  margin-top: 15px;
  padding-left: 1em;
  font-size: 14px;
  text-indent: -1em;
  line-height: 25px;
}
.present__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* sp */
@media only screen and (max-width: 999px) {
  .present {
    background-size: 20px;
  }
  .present h3 {
    margin-top: 15px;
    font-size: 16px;
    text-align: center;
    line-height: 1em;
  }
  .present__outer {
    margin: 0 25px;
  }
  .present__inner {
    margin: auto;
    padding: 38px 0 40px;
    max-width: 630px;
    width: auto;
  }
  .present__tag {
    gap: 5px;
    margin-top: 20px;
  }
  .present__tag li {
    padding: 0 10px;
    height: 20px;
    font-size: 12px;
    line-height: 1em;
  }
  .present__column {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 17px;
  }
  .present__col:first-child {
    width: auto;
  }
  .present__col:last-child {
    width: auto;
  }
  .present__col dl {
    flex-direction: column;
    margin-top: 12px;
  }
  .present__col dt, .present__col dd {
    padding: 0px 0;
    font-size: 14px;
    line-height: 1em;
  }
  .present__col dt {
    padding-top: 14px;
    width: auto;
    font-weight: 700;
  }
  .present__col dt:before {
    display: none;
  }
  .present__col dd {
    padding: 15px 0;
    width: auto;
    border-top: none;
  }
  .present__col small {
    margin-top: 12px;
    font-size: 10px;
    line-height: 15px;
  }
  .present__image {
    margin: 0 28px;
  }
}
/* tab
----------------------------------------------- */
.tab {
  background-image: url(images/bg_tab.png);
  background-position: center top;
  background-size: 40px;
}
.tab__outer {
  margin: 0 25px;
}
.tab__inner {
  margin: auto;
  padding-top: 78px;
  max-width: 1000px;
  overflow: hidden;
}
.tab__list {
  display: flex;
  gap: 0 6px;
  margin-top: 30px;
}
.tab__list li {
  width: 27.8%;
}
.tab__list li:last-child {
  width: 43.2%;
}
.tab__list li.is-active a {
  color: #fff;
  background-color: #603340;
  pointer-events: none;
  transform: translateY(0);
  transition-duration: 0.1s, 0.25s;
}
.tab__list li.is-active a svg {
  transform: translateY(10px);
}
.tab__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 10px;
  height: 80px;
  color: #603340;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 34px;
  background-color: #fff;
  border-radius: 6px 6px 0 0;
  z-index: 1;
  transform: translateY(10px);
  transition-property: background-color, transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
.tab__list a svg {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 15px;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  fill: currentcolor;
  z-index: 2;
  transition-property: transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

/* pc */
@media only screen and (min-width: 1000px) {
  .tab__list a:hover {
    transform: translateY(0);
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .tab__list a:hover svg {
    transform: translateY(10px);
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
}
/* sp */
@media only screen and (max-width: 999px) {
  .tab {
    background-size: 20px;
  }
  .tab__outer {
    margin: 0 25px;
  }
  .tab__inner {
    padding-top: 34px;
    max-width: 630px;
  }
  .tab__list {
    gap: 0 5px;
    margin-top: 15px;
  }
  .tab__list li {
    width: 27.037037037%;
  }
  .tab__list li:last-child {
    width: 42.2222222222%;
  }
  .tab__list li.is-active a svg {
    transform: translateY(5px);
  }
  .tab__list a {
    padding-bottom: 20px;
    height: 73px;
    font-size: 13px;
    line-height: 15px;
    transform: translateY(5px);
  }
  .tab__list a svg {
    bottom: 17px;
    margin-left: -6px;
    width: 12px;
    height: 12px;
  }
}
/* story
----------------------------------------------- */
.story {
  padding: 80px 0 110px;
  background-image: url(images/bg_story.png);
  background-position: center top;
  background-size: 40px;
  overflow: hidden;
}
.story__inner {
  display: none;
}
.story__inner.is-active {
  display: block;
}

/* sp */
@media only screen and (max-width: 999px) {
  .story {
    padding: 40px 0 45px;
    background-size: 20px;
  }
}
/* pc
----------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  /* body
  ----------------------------------------------- */
  .sp {
    display: none;
  }
  .title {
    padding: 0 0 0 0.1em;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #603340;
  }
  .articles + .title {
    margin-top: 120px;
  }
  .title__label {
    margin: 10px 0 0;
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #805c66;
  }
  /* flow
  ----------------------------------------------- */
  .flow {
    padding: 80px 0 0;
  }
  .flow__columns {
    margin: 40px 0 0;
    display: flex;
    justify-content: space-between;
  }
  .flow__column {
    width: 560px;
  }
  .flow__column:last-child {
    width: 380px;
  }
  .flow__item {
    position: relative;
    padding: 30px 0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
  }
  .flow__arrow {
    margin: 15px 0;
    text-align: center;
  }
  .flow__arrow img {
    width: 60px;
    height: auto;
  }
  .flow__step {
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .flow__step:before,
  .flow__step:after {
    position: absolute;
    top: 0;
    left: 0;
  }
  .flow__step:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 90px 90px 0 0;
    border-color: #603340 transparent transparent transparent;
  }
  .flow__step:after {
    margin: 13px;
    color: #fff;
    font-size: 34px;
    font-weight: 500;
  }
  .flow__item--01 .flow__step:after {
    content: "1";
  }
  .flow__item--02 .flow__step:after {
    content: "2";
  }
  .flow__item--03 .flow__step:after {
    content: "3";
  }
  .flow__text {
    margin: -8px 0;
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }
  .flow__btn {
    margin: 30px 0 0;
  }
  .flow__btn a {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 80px;
    color: #fff;
    background: #1da1f2;
    border-radius: 6px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .flow__btn a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    margin: -4px 0 0;
    content: "";
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  /* nolink */
  .flow__btn a.nolink {
    background: #c8c8c8;
    box-shadow: none;
  }
  /* hover */
  .flow__btn a:hover {
    transform: translate3d(4px, 4px, 0);
    box-shadow: none;
  }
  .flow__btn a:hover:after {
    transform: translateX(5px) rotate(45deg);
  }
  /* outline
  ----------------------------------------------- */
  .outline {
    padding: 80px 0 0;
  }
  .outline__inner {
    margin: 40px 0 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
  }
  .outline__scroll {
    height: 310px;
    padding: 0 40px;
    overflow: auto;
    box-sizing: border-box;
  }
  .outline__scroll ::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
  .outline__contents {
    padding: 0 0 40px;
  }
  .outline__title {
    margin: 40px 0 15px;
    font-size: 16px;
    font-weight: 700;
  }
  .outline__list,
  .outline__text {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .outline__list {
    padding: 0 0 0 15px;
    text-indent: -15px;
  }
  .outline__list:before {
    margin: 0 5px 0 0;
    content: "◆";
    font-size: 10px;
    vertical-align: 2px;
  }
  .outline__list a,
  .outline__text a {
    color: #b70a00;
    font-weight: 700;
    text-decoration: underline;
  }
  /* hover */
  .outline__list a:hover,
  .outline__text a:hover {
    color: #603340;
    text-decoration: none;
  }
  /* simplebar */
  .outline .simplebar-scrollbar:before {
    right: 0;
    left: 0;
    background: #603340;
    border-radius: 0px;
    opacity: 1;
  }
  .outline .simplebar-track.simplebar-vertical {
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 6px;
    background: #c8c8c8;
    border-radius: 0px;
  }
  /* articles
  ----------------------------------------------- */
  .articles {
    margin: auto;
    width: 980px;
  }
  /* article
  ----------------------------------------------- */
  .article {
    position: relative;
    margin: 45px 0 0;
    padding: 270px 0 0;
  }
  .article__inner {
    position: relative;
    padding: 0 0 45px;
    width: 980px;
    min-height: 135px;
    background: rgba(242, 194, 138, 0.4);
  }
  .article__title {
    position: relative;
    top: -20px;
    width: 390px;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .article__title em {
    padding: 0 5px;
    font-size: 34px;
  }
  .aritcle__summary {
    margin: 10px 0 0;
    width: 390px;
    min-height: 96px;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .article__movie {
    position: absolute;
    top: -135px;
    width: 480px;
  }
  .article__image {
    position: absolute;
    top: 0;
  }
  /* article--2020 */
  .article--2020 .article__title {
    line-height: 1.4;
    letter-spacing: normal;
  }
  .article--2020 .article__figure img {
    width: 100%;
    height: auto;
  }
  .article--2020 .article__copyright {
    margin: 10px 0 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 10px;
  }
  .article--special .article__inner {
    background: rgba(240, 156, 180, 0.4);
  }
  .article--movie .article__inner {
    background: rgba(169, 206, 82, 0.4);
  }
  /* odd */
  .article:nth-child(odd) .article__movie {
    left: 40px;
  }
  .article:nth-child(odd) .article__title,
  .article:nth-child(odd) .aritcle__summary {
    margin-left: 550px;
  }
  .article:nth-child(odd) .aritcle__summary--wide {
    margin: 20px 40px 0;
    width: auto;
  }
  .article:nth-child(odd) .article__image {
    right: -72px;
  }
  /* even */
  .article:nth-child(even) .article__movie {
    right: 40px;
  }
  .article:nth-child(even) .article__title,
  .article:nth-child(even) .aritcle__summary {
    margin-left: 40px;
  }
  .article:nth-child(even) .aritcle__summary--wide {
    margin: 20px 40px 0;
    width: auto;
  }
  .article:nth-child(even) .article__image {
    left: -92px;
  }
  .aritcle__badge {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    margin-top: -30px;
    width: 80px;
    height: 80px;
    background-image: url(images/badge@2x.png);
    background-position: -240px 0;
    background-repeat: no-repeat;
    background-size: 480px 160px;
    z-index: 1;
  }
  /* movieinfo
  ----------------------------------------------- */
  .movieinfo {
    position: relative;
    padding: 85px 0;
    background: url(images/movieinfo_bg.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .movieinfo:before,
  .movieinfo:after {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    content: "";
    height: 5px;
    background: url(images/movieinfo_line.png) center top repeat-x;
    box-shadow: 0px 0px 8px rgba(84, 57, 48, 0.4);
  }
  .movieinfo:before {
    top: 0;
  }
  .movieinfo:after {
    bottom: 0;
  }
  .movieinfo__inner {
    margin: auto;
    max-width: 1000px;
  }
  .movieinfo__columns {
    margin: 45px auto 0;
    max-width: 980px;
    display: flex;
    justify-content: space-between;
  }
  .movieinfo__column {
    width: 470px;
  }
  .movieinfo__title {
    width: 470px;
  }
  .movieinfo__label {
    display: block;
    margin: 0 0 15px;
  }
  .movieinfo__image {
    box-shadow: 4px 4px 8px rgba(84, 57, 48, 0.2);
  }
  .movieinfo__image img {
    width: 100%;
    height: auto;
  }
  .movieinfo__summary {
    margin: 25px 0 0;
    width: 470px;
    font-size: 16px;
    line-height: 2;
  }
  .movieinfo__btn {
    position: relative;
    margin: 20px auto 0;
    width: 360px;
    z-index: 2;
  }
  /* join
  ----------------------------------------------- */
  .join {
    padding: 50px 0 56px;
    background: #b8e2e9;
  }
  .join__inner {
    margin: auto;
    max-width: 1000px;
  }
  .join__title {
    margin: auto;
    width: 780px;
    height: 52px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: url(images/join_title_pc.png) no-repeat;
    background-size: 780px 52px;
  }
  .join__btn {
    margin: 30px auto 0;
    width: 600px;
    transform: translateX(-6px) translateY(3px);
  }
  .join__btn a {
    position: relative;
    display: block;
    padding: 28px 0;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: #b70a00;
    border-radius: 6px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .join__btn a:before {
    margin: 0 20px 0 0;
    display: inline-block;
    content: "";
    width: 34px;
    height: 34px;
    vertical-align: -8px;
    background: url(images/icon_join.png) no-repeat;
    background-size: 34px 34px;
  }
  /* hover */
  .join__btn a:hover {
    transform: translate3d(6px, 6px, 0);
    box-shadow: none;
  }
  /* retina
  ----------------------------------------------- */
}
/* mobile
----------------------------------------------- */
@media only screen and (max-width: 999px) {
  /* body
  ----------------------------------------------- */
  .pc {
    display: none;
  }
  .title {
    padding: 0 0 0 0.1em;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #603340;
  }
  .articles + .title {
    margin-top: 80px;
  }
  .title__label {
    margin: 5px 0 0;
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #805c66;
  }
  /* loading
  ----------------------------------------------- */
  .loading__bar {
    margin: -2px 0 0 -100px;
    width: 200px;
  }
  /* wrapper
  ----------------------------------------------- */
  .l-wrapper img {
    display: block;
    width: 100%;
    height: auto;
  }
  /* flow
  ----------------------------------------------- */
  .flow {
    padding: 35px 0 0;
  }
  .flow__columns {
    margin: 15px auto 0;
    max-width: 480px;
  }
  .flow__item {
    position: relative;
    padding: 25px 0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
  }
  .flow__arrow {
    margin: 10px 0;
    text-align: center;
  }
  .flow__arrow img {
    width: 30px;
    height: auto;
  }
  .flow__step {
    margin: 0 0 20px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
  }
  .flow__step:before,
  .flow__step:after {
    position: absolute;
    top: 0;
    left: 0;
  }
  .flow__step:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 55px 55px 0 0;
    border-color: #603340 transparent transparent transparent;
  }
  .flow__step:after {
    margin: 4px 8px;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
  }
  .flow__item--01 .flow__step:after {
    content: "1";
  }
  .flow__item--02 .flow__step:after {
    content: "2";
  }
  .flow__item--03 .flow__step:after {
    content: "3";
  }
  .flow__text {
    margin: -5px 0;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
  }
  .flow__tweet {
    margin: 15px;
  }
  .flow__btn {
    margin: 15px auto 0;
    padding: 0 15px;
    max-width: 270px;
  }
  .flow__btn a {
    position: relative;
    display: flex;
    height: 55px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #1da1f2;
    border-radius: 6px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  }
  .flow__item:nth-of-type(1) .flow__btn img {
    width: auto;
    height: 26px;
  }
  .flow__item:nth-of-type(2) .flow__btn a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    margin: -4px 0 0;
    content: "";
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
  .flow__item:nth-of-type(2) .flow__btn img {
    width: auto;
    height: 18px;
  }
  /* nolink */
  .flow__btn a.nolink {
    background: #c8c8c8;
    box-shadow: none;
  }
  /* outline
  ----------------------------------------------- */
  .outline {
    padding: 35px 0 0;
  }
  .outline__inner {
    margin: 15px auto 0;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
  }
  .outline__scroll {
    height: 280px;
    padding: 0 20px 0 15px;
    overflow: auto;
    box-sizing: border-box;
  }
  .outline__scroll ::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
  .outline__contents {
    padding: 0 0 25px;
  }
  .outline__title {
    margin: 25px 0 15px;
    font-size: 12px;
    font-weight: 700;
  }
  .outline__list,
  .outline__text {
    margin: 5px 0 0;
    font-size: 10px;
    line-height: 1.5;
    word-break: break-word;
  }
  .outline__list {
    padding: 0 0 0 15px;
    text-indent: -15px;
  }
  .outline__list:before {
    margin: 0 5px 0 0;
    content: "◆";
    font-size: 10px;
  }
  .outline__list a,
  .outline__text a {
    color: #b70a00;
    font-weight: 700;
    text-decoration: underline;
  }
  /* simplebar */
  .outline .simplebar-scrollbar:before {
    right: 0;
    left: 0;
    background: #603340;
    border-radius: 0px;
    opacity: 1;
  }
  .outline .simplebar-track.simplebar-vertical {
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 5px;
    background: #c8c8c8;
    border-radius: 0px;
  }
  /* articles
  ----------------------------------------------- */
  .articles {
    margin: auto;
    max-width: 640px;
  }
  /* article
  ----------------------------------------------- */
  .article {
    margin: 45px 5px 0;
  }
  .article__inner {
    position: relative;
    padding: 0 0 25px;
    background: rgba(242, 194, 138, 0.4);
  }
  .article__title {
    position: relative;
    top: -16px;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
  }
  .article__title em {
    padding: 0 5px;
    font-size: 25px;
    vertical-align: -2px;
  }
  .aritcle__summary {
    margin: 15px 15px 0;
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
  }
  .article__movie {
    margin: 4px 35px 0;
  }
  .article__figure img {
    width: 100%;
    height: auto;
  }
  .article__image {
    text-align: center;
  }
  /* article--2020 */
  .article--2020 .article__title {
    line-height: 1.4;
  }
  .article--2020 .article__movie-inner {
    padding: 0;
    height: auto;
    overflow: visible;
  }
  .article--2020 .article__copyright {
    margin: 5px -20px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 10px;
    font-feature-settings: "palt";
    text-align: center;
  }
  .article--special .article__inner {
    background: rgba(240, 156, 180, 0.4);
  }
  .article--movie .article__inner {
    background: rgba(169, 206, 82, 0.4);
  }
  /* odd */
  .article:nth-child(odd) .article__image {
    margin: 25px 30px 0;
  }
  /* even */
  .article:nth-child(even) .article__image {
    margin: 25px 25px 0;
  }
  .aritcle__badge {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    background-image: url(images/badge@2x.png);
    background-position: -180px 0;
    background-repeat: no-repeat;
    background-size: 360px 120px;
    z-index: 1;
  }
  /* movieinfo
  ----------------------------------------------- */
  .movieinfo {
    position: relative;
    padding: 45px 0;
    background: url(images/movieinfo_bg.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .movieinfo:before,
  .movieinfo:after {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    content: "";
    height: 4px;
    background: url(images/movieinfo_line.png) center top repeat-x;
    background-size: auto 5px;
    box-shadow: 0px 0px 8px rgba(84, 57, 48, 0.4);
  }
  .movieinfo:before {
    top: 0;
  }
  .movieinfo:after {
    bottom: 0;
  }
  .movieinfo__inner {
    margin: auto;
    max-width: 640px;
  }
  .movieinfo__columns {
    margin: 30px 25px 0;
  }
  .movieinfo__title {
    text-align: center;
  }
  .movieinfo__label {
    display: block;
    margin: 0 0 10px;
  }
  .movieinfo__label img {
    width: auto;
    height: 22px;
  }
  .movieinfo__titletext img {
    width: auto;
    height: 35px;
  }
  .movieinfo__image {
    margin: 15px 0 0;
    box-shadow: 4px 4px 8px rgba(84, 57, 48, 0.2);
  }
  .movieinfo__summary {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.7;
  }
  .movieinfo__btn {
    margin: 20px auto 0;
    max-width: 330px;
  }
  /* join
  ----------------------------------------------- */
  .join {
    padding: 40px 0 43px;
    background: #b8e2e9;
  }
  .join__inner {
    margin: auto;
    max-width: 640px;
  }
  .join__title {
    margin: auto;
    width: 270px;
    height: 70px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: url(images/join_title_sp.png) no-repeat;
    background-size: 270px 70px;
  }
  .join__btn {
    margin: 20px auto 0;
    padding: 0 25px;
    max-width: 300px;
  }
  .join__btn a {
    position: relative;
    display: block;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: #b70a00;
    border-radius: 6px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  }
  .join__btn a:before {
    margin: 0 10px 0 0;
    display: inline-block;
    content: "";
    width: 17px;
    height: 17px;
    vertical-align: -3px;
    background: url(images/icon_join.png) no-repeat;
    background-size: 17px 17px;
  }
}
/* tablet
----------------------------------------------- */