@charset "utf-8";
:root {
    --white: #fff;
    --black: #000;
    --lightgray: #606269;
    --gray01: #404040;
    --gray02: #303030; 
    --gray03: #303139;
    --gray04: #1d1c1b;
}

/* modern-css-reset v1.4.0 | MIT License | https://github.com/andy-piccalilli/modern-css-reset/blob/master/dist/reset.css
================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,body,div,span,
h1,h2,h3,h4,
p,a,
em, img,
var,
dl, dt, dd,ol,ul,li,
figure,
footer, header, section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

html,
body  {
  min-width: 100%;
}

html {
  font-size: 62.5%;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  min-height: 100vh;
  font-size: 14px;
  letter-spacing: 0.05px;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

a[class] {
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 共通
================================================== */
body {
    background-color: var(--black);
}
.container {
  max-width: 1020px;
  margin: auto;
}

.all_text {
  font-size: 16px;
  letter-spacing: 0.6px;
  line-height: 2;
}

.all_new_line {
    display: inline-block;
    letter-spacing: inherit;
    font-family: inherit;
}


@media(max-width: 768px) {
    .container {
        max-width: 900px;
    }

    .all_text {
        font-size: 14px;
    }
}

/* header
================================================== */ 
.header {
    height: 60px;
    padding: 10px 30px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.header_logo {
    width: 120px;
}

.header_logo.collaboration {
    width: 100px;
}

.cross {
    position: relative;
    margin: 0 30px;
}

.cross::before,
.cross::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--white);
}

.cross::before {
    transform: translate(-50%, -50%)rotate(45deg);
}

.cross::after {
    transform: translate(-50%, -50%)rotate(-45deg);
}

@media(max-width: 768px) {
    .header {
        height: 60px;
        padding: 14px;
        margin-top: auto;
    }

    .header_logo {
        width: 60px;
    }

    .header_logo.collaboration {
        width: 50px;
    }

    .cross {
        margin: 0 14px;
    }

    .cross::before,
    .cross::after {
        width: 18px;
        height: 2px;
    }
}

/* main-visual
================================================== */
.main-visual {
    width: 100%;
    height: auto;
}

.overflow-hidden {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100vw;
    margin-right: calc(((100vw - 100%) / 2) * -1);
    margin-left: calc(((100vw - 100%) / 2) * -1);
}

.mv_img {
    background: url(../images/mv-pc.jpg) center center / cover no-repeat rgb(243, 243, 243);
    background-size: cover;
    --tw-blur: blur(50px);
    filter: var(--tw-blur);
    position: absolute;
    height: 100%;
    width: 100vw;
    z-index: 0;
}

.full {
    position: relative;
    display: flex;
    justify-content: center;
}

.mv_max {
    max-width: 1024px;
    width: 100%;
    height: 100%;
}

.mv_max img {
    object-fit: cover;
}

.mv_period {
    background-color: red;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

@media(max-width:768px) {
    .pc-only {
        display: none;
    }

    .mv_period {
        font-size: 20px;
    }
}

@media(min-width: 769px) {
    .sp-only {
        display: none;
    }
}

/* about
================================================== */
.about {
    background-color: var(--gray03);
}

.about_container {
    padding: 60px 50px 120px;
}

.about_text {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    font-size: 22px;
    font-weight: 600;
}

.text_red {
    color: red;
}

.about_box ul {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.item {
    width: calc(100%/3);
}

.item_img {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: skew(-10deg); 
  background-color: var(--lightgray);
  padding: 10px;
}

.item_img img {
  width: 100%;
  height: 100%;
  transform: skew(10deg);
}

.about_box .all_text {
    color: var(--white);
    text-align: center;
    margin-top: 10px;
}

.about_btn {
    display: block;
    text-align: center;
    margin: auto;
    margin-top: 30px;
    padding: 6px;
    width: 300px;
    color: var(--white);
    background-color: red;
    transform: skew(-10deg);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
}

@media(max-width: 768px) {
    .about_container {
        padding: 60px 30px 90px;
    }

    .about_text {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .about_box ul {
        flex-wrap: wrap;
        column-gap: 0px;
        align-content: center;
    }

    .item {
        width: calc((100% - 10px)/2);
    }

    .item:nth-child(3) {
        margin: auto;
        padding-top: 20px;
    }

    .about_btn {
        margin-top: 50px;
        padding: 3px;
        width: 300px;
        font-size: 18px;
    }
}

/* detail-price
================================================== */
.detail_container {
    position: relative;
    max-width: 1024px;
    margin: auto;
}

.detail_img {
    background: url(../images/RE004.png) center center / cover no-repeat var(--gray03);
    background-size: cover;
    --tw-blur: blur(50px);
    filter: var(--tw-blur);
    position: absolute;
    height: 100%;
    width: 100vw;
    z-index: 0;
}

.full {
    position: relative;
    display: flex;
    justify-content: center;
}

.detail_max {
    max-width: 1024px;
    width: 100%;
    height: 100%;
    background-color: var(--gray03);
}

.detail_text {
    position: absolute;
    text-align: center;
    top: 240px;
}

.detail_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: red;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.detail_phrase {
    display: flex;
    justify-content: space-around;
    align-items: center;
    column-gap: 60px;
    position: absolute;
    left: 50%;
    width: 100%;
    max-width: 920px;
    transform: translate(-50%,-50%);
    padding: 60px;
}

.detail_phrase li {
    width: 22.135vw;
}

.detail_phrase img {
    width: 100%;
    height: auto;
}

.price_container {
    padding: 60px 30px;
    margin-top: 160px;
    margin-bottom: 90px;
}

.price_item {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    color: var(--white);
}

.price_item dd {
    font-size: 22px;
    letter-spacing: 2px;
}

.price_item dd span {
    font-size: 40px;
}

.delivery {
    color: var(--white);
    margin: 60px 60px 0px;
}

.delivery_inner {
    background-color: var(--gray02);
    padding: 20px;
}

.delivery h3 {
    text-align: center;
    font-size: 18px;
    border-bottom: solid 1px var(--white);
    padding-bottom: 10px;
}

.list {
    font-size: 18px;
    margin: 30px 20px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list p {
    width: 47%;
    margin-bottom: 10px;
}

.note {
    margin-top: 10px;
    font-size: 12px;
}

@media(max-width: 768px) {
    .detail_text {
        top: 370px;
    }

    .detail_btn {
        padding: 10px 35px;
        font-size: 16px;
    }

    .detail_phrase {
        position: static;
        column-gap: 15px;
        transform: translate(0, -50%);
        padding: 10px 15px;
    }

    .detail_phrase li {
        width: 30.6667vw;
    }

    .detail_phrase li:nth-child(odd) {
        margin-right: auto;
    }

    .detail_phrase li:nth-child(even) {
        margin-left: auto;
    }

    .price_container {
        padding: 0 10px;
        margin: 170px 0 90px;
    }

    .price_item {
        display: block;
        text-align: center;
    }

    .price_item dd span {
        font-size: 50px;
    }

    .delivery {
        margin: 30px 20px 0px;
    }

    .list {
        display: block;
        margin: 30px 0 0;
        font-size: 14px;
    }

    .list p {
        width: 100%;
    }

    .note {
        font-size: 10px;
    }

}

/* prize
================================================== */
.prize {
    position: relative;
}

.prize::before {
    content: "";
    position: absolute;
    width: 100%;
    max-width: 1020px;
    height: 8.82vw;
    max-height: 90px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/borderline.svg) no-repeat center center;
    background-size: cover;
    z-index: 2;
}

.prize_container {
    padding:60px;
}

.prize_container h2 {
    margin: 90px auto;
    width: 210px;
}

.prize_item {
    background-color: var(--gray02);
    width: 80%;
    margin: auto;
}

.prize_item + .prize_item {
    margin-top: 90px;
}

.prize_item img {
    width: 100%;
    height: 100%;
}

.prize_text_box {
    border-top: solid 5px red;
    padding:40px;
}

.prize_item h3 {
    color: var(--white);
    font-size: 32px;
}

.prize_price {
    color: red;
    font-size: 30px;
    font-weight: 800;
}

.line {
    position: relative;
}

.line::after {
    content: "";
    transform: rotate(7deg);
    width: 100%;
    border-top: 3px solid var(--white);
    position: absolute;
    top: 50%;
    left: 0;
}

.prize_text {
    color: var(--white);
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    display: inline-block;
    text-align: left;
    letter-spacing: 0.6px;
    line-height: 2;
}

.prize_head {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    z-index: 0;
    margin-left: 10px;
}

.prize_head::before {
    content: "";
    position: absolute;
    background: url(../images/headline.svg) no-repeat;
    width: 200px; 
    height: 37px;
    top: 50%;
    left:103%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.even .prize_img  {
    background: var(--white);
}

.wrap {
    margin: 140px 0;
}

.box {
    border-top: solid 5px var(--white);
    border-bottom: solid 5px var(--white);
    padding: 60px 0;
}

.gift_item {
    margin: 120px auto 0;
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
    position: relative;
    width: 80%;
}

.gift_item h3 {
    position: relative;
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
    margin-left: 50px;
}

.gift_item h3::before {
    content: "";
    position: absolute;
    background: url(../images/headline.svg) no-repeat;
    width: 260px;
    height: 70px;
    top: 50%;
    /* left: 11%; */
    left: 90px;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.gift_img {
    padding-top: 10px;
}

.gift_item img {
    width: 680px;
    margin: auto;
}

.gift_text {
    text-align: center;
    font-size: 32px;
}

@media(max-width: 768px) {
    .prize_container {
        padding:20px;
    }

    .prize_container h2 {
        margin: 45px auto;
        width: 120px;
    }

    .prize_item + .prize_item  {
        margin-top: 30px;
    }

    .prize_item  {
        width: 100%;
    }

    .prize_text_box {
        padding:20px;
    }

    .prize_item h3 {
        font-size: 18px;
    }

    .prize_price {
        font-size: 16px;
    }

    .line::after {
        border-top: 2px solid var(--white);
    }
    
    .prize_text {
        margin-top: 10px;
        font-size: 12px;
    }

    .prize_head {
        font-size: 20px;
        margin-left: 10px;
    }
    
    .prize_head::before {
        width: 200px; 
        height: 37px;
        left:103%;
        transform: translate(-50%, -50%);
    }
    
    .wrap {
        margin: 90px 0;
    }

    .box {
        border-top: solid 2px var(--white);
        border-bottom: solid 2px var(--white);
        padding: 40px 0;
    }

    .gift_item {
        margin: 90px auto 0;
        width: 100%;
    }

    .gift_item h3 {
        font-size: 20px;
        margin-left: 50px;
    }
    
    .gift_item h3::before {
        width: 160px;
        height: 40px;
        top: 50%;
        left: 52px;
    }

    .gift_item img {
        width: 100%;
        margin: auto;
    }

    .gift_text {
        font-size: 18px;
    }
}

/* movie
================================================== */
.movie_container {
    padding: 120px 60px 60px;
}

.movie_content {
    margin: 45px auto 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
}

.movie_container h2 {
    width: 355px;
    margin:  0 auto 90px;
}

.content_block {
    width: 680px;
    height: auto;
    overflow: hidden;
    text-align: center;
    /* background-color: gainsboro; */
    aspect-ratio: 16/9;
    position: relative;
}

.content_block iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

/* .notice_text {
    color: #606269;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: 700;
} */


@media(max-width: 768px) {
    .movie_container {
        padding: 60px 30px 30px
    }

    .movie_content {
        display: block;
    }

    .content_block {
        width:  100%;
    }

    .movie_container h2 {
        width: 200px;
        margin:  0 auto 45px;
    }

    .notice_text {
        font-size: 16px;
    }
}

/* footer
================================================== */
.footer {
    margin: 20px 0 60px;
    height: 60px;
}

.page_top {
    position: absolute;
    width: 52px;
    height: 52px;
    background: var(--gray01);
    right: 6.4%;
}

.page_top::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%) rotate(-45deg);
}

@media(max-width: 768px) {
    .footer {
        margin-bottom: 30px;
    }

    .page_top {
        width: 30px;
        height: 30px;
    }

    .page_top::before {
        width: 10px;
        height: 10px;
    }
}