@charset "utf-8";

/* CSS Document */


/* ------------------------------------------
  reset
--------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
main,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

q:before,
q:after {
    content: "";
    content: none;
}

abbr {
    text-decoration: none;
}

mark {
    background: none;
}

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

caption,
th {
    text-align: left;
}

img {
    vertical-align: top;
}

hr {
    height: 0;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 16px;
    line-height: 1.75;
    font-family: 'Noto Sans JP', sans-serif;
    color: #212121;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-all;
    letter-spacing: 1px;
    -webkit-font-feature-settings: "palt";
    -moz-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

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

/*a:not(.btn):hover {
    opacity: 0.75;
    transition: all 0.1s 0s ease;
}*/

button:focus {
    outline: none;
}


/*a[href^="tel"] {
    color: #fff;
    pointer-events: none;
}*/

.select:focus,
input:focus {
    outline: none;
}

.pc-hide {
    display: none !important;
}

.sp-hide {
    display: block !important;
}

.strong {
    font-weight: 700;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left !important;
}


/* ------------------------------------------
  common
--------------------------------------------- */

/*footer*/

.footer {
    margin: 0 auto;
    padding: 20px 0;
    background: #fff;
    font-size: 12px;
    text-align: center;
}


/*block*/

.block {
    width: 100%;
    padding: 80px 0 100px;
    position: relative;
}


/* ------------------------------------------
  mv
--------------------------------------------- */
.mv {
    width: 100%;
    height: 600px;
    padding-bottom: 20px;
    background: url(../images/mv.webp) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mv-title {}

/* スクロールダウンの位置 */
.scroll {
    padding-top: 60px;
    position: absolute;
    text-align: center;
    left: 50%;
    bottom: -100px;
    display: block;
}

/* 矢印のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
    height: 30px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

/* 矢印のアニメーション */
@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translate(0, 0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: rotate(-45deg) translate(-20px, 20px);
    }

    100% {
        opacity: 0;
    }
}


/* ------------------------------------------
  campaign
--------------------------------------------- */
.campaign {
    width: 100%;
    padding: 60px 30px 60px;
    text-align: center;
    background: url(../images/osusume-bg.webp) repeat;
    color: #fff;
}

.campaign-title {
    padding-bottom: 20px;
    font-size: 18px;
}

/* ------------------------------------------
  introduction
--------------------------------------------- */
.introduction {
    background: url(../images/sec-bg02.webp) repeat;
}

/* ------------------------------------------
  movie
--------------------------------------------- */
.movie-wrap {
    background: url(../images/sec-bg01.webp) repeat;
}

.movie {
    width: 810px;
    display: flex;
    margin: 0 auto;
}

.movie .story-title {
    font-size: 24px;
    text-align: left;
}

.movie .story-text {
    padding: 0;
}

.movie .story-text span {
    display: inline-block;
    padding-left: 16px;
}

.story-iframe {
    width: 70%;
    /* 伸縮する横幅 */
    max-width: 400px;
    /* 最大の横幅 */
    margin: auto;
    /* 画面の中央に配置 */
}

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

/* ------------------------------------------
  story
--------------------------------------------- */
.story-wrap {
    background: url(../images/sec-bg02.webp) repeat;
}


.story {
    display: flex;
    max-width: 1536px;
    margin: 0 auto;
    background: #ffffffb0;
}

.story:nth-child(even) {
    flex-direction: row-reverse;
}

.story-img {
    width: 50%;
}

.story-img img {
    width: 100%;
}

.story-text {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5.5vw 5.5vw 9.5vw;
}

.story-title {
    font-family: "Noto Serif JP", serif;
    padding-bottom: 40px;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 4px;
}

.story p {
    line-height: 1.75;
    letter-spacing: 3px;
}

.story a {
    padding-top: 40px;
    display: block;
    text-decoration: underline;
    font-size: 14px;
    letter-spacing: 2px;
}

.story a + a {
    padding-top: 10px;
}

/* ------------------------------------------
  purchase 
--------------------------------------------- */
.cheese-block {
    width: 100%;
    padding: 70px 30px 90px;
    background-size: cover;
}

.cheese-title {
    font-family: "Noto Serif JP", serif;
    text-align: center;
    padding-bottom: 50px;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 2px;
}

.cheese-block p {
    line-height: 1.75;
}

.purchase {
    background: url(../images/sec-bg01.webp) repeat;
}

.purchase-list {
    width: 1110px;
    margin: 0 auto;
}

.slick-slide {
    width: 255px;
}

.purchase-items-box {
    display: block;
    margin: 0 15px;
}

.purchase-text {}

.item-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding-bottom: 11px;
}

.purchase-image {
    margin-bottom: 10px;
}

.purchase-text p {
    padding-bottom: 10px;
}

.purchase-slider-prev,
.purchase-slider-next {
    position: absolute;
    top: 50%;

}

.purchase-slider-prev {
    left: -30px;
}

.purchase-slider-next {
    right: -30px;
}

.purchase .item-price span span {
    border: 1px solid;
    display: inline-block;
    line-height: 1;
    font-size: 10px;
    height: 100%;
    padding: 2px;
    margin: 3px 4px 0 0;
}

.purchase .item-price span {
    display: flex;
    align-items: center;
    line-height: 1;
}

.purchase .item-price {
    display: flex;
    align-items: center;
}

/*animated scroll arrow animation*/
@-webkit-keyframes ca3_fade_move_down {
    0% {
        -webkit-transform: translate(0, -15px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0, 15px);
        opacity: 0;
    }
}

@-moz-keyframes ca3_fade_move_down {
    0% {
        -moz-transform: translate(0, -15px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -moz-transform: translate(0, 15px);
        opacity: 0;
    }
}

@keyframes ca3_fade_move_down {
    0% {
        transform: translate(0, -15px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 15px);
        opacity: 0;
    }
}


/* ------------------------------------------
  loading
--------------------------------------------- */

#lead-fadeIn {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 1000ms;
}

r #lead-fadeIn.lead-fadeIn-active {
    opacity: 1;
    transform: translateY(0);
}

#loading {}

#kv-lead {
    opacity: 0;
    -webkit-transition: all 2s;
    transition: all 2s;
    transform: translateY(15px);
}

#kv-lead.kv-lead-loaded {
    opacity: 1;
    transform: translateY(0);
}

/*fadein*/
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 1500ms;
}

.fadein-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================================
   for SP
===========================================================*/

@media screen and (max-width: 768px) {

    /*common*/
    html {
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
        min-width: 0;
    }

    a:hover,
    a:not(.btn):hover {
        opacity: 1;
    }

    .btn-wrap {
        padding-top: 30px;
    }

    .btn {
        width: 260px;
        height: 50px;
        font-size: 14px;
    }

    .btn:after {
        top: 48%;
        right: 20px;
        width: 8px;
        height: 8px;
    }

    .pc-hide {
        display: block !important;
    }

    .sp-hide {
        display: none !important;
    }

    .block {
        padding: 30px 20px 50px;
    }

    .inner {
        width: 100%;
    }

    /*header*/
    .header .logo {
        padding-top: 3px;
    }

    .header a:hover {
        opacity: 1;
    }

    .header .header-inner {
        padding: 0 20px;
    }

    .footer {
        width: 100%;
        padding: 20px;
        font-size: 10px;
    }

    /* ------------------------------------------
      mv
    --------------------------------------------- */
    .mv-sp {
        position: relative;
        padding-top: 105.5%;
    }

    .mv-sp > img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .mv-lead {
        position: absolute;
        padding: 0 4vw;
        text-align: center;
        top: 52%;
        margin-top: -14.5vw;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mv-lead img {
        width: 77vw;
        height: 32vw;
    }

    /* ------------------------------------------
      movie
    --------------------------------------------- */
    .movie-wrap {}

    .movie {
        width: 100%;
        flex-direction: column;
    }

    .movie .story-text {
        padding: 0 0 8vw 0;
    }
    
    .movie .story-text span {
        padding-left: 14px;
    }

    .movie .story-title {
        font-size: 20px;
        text-align: left;
    }

    .story-iframe {
        width: 80%;
    }


    /* ------------------------------------------
      story
    --------------------------------------------- */
    .story {
        display: block;
        padding: 6vw 6vw 8vw;
    }

    .story + .story {
        margin-top: 6vw;
    }

    .story-img {
        width: 100%;
    }

    .story-text {
        width: 100%;
        padding: 6vw 0 0;
        display: block;
        text-align: left;
    }

    .story-title {
        padding-bottom: 20px;
        letter-spacing: 1px;
        font-size: 18px;
    }

    .story p {
        letter-spacing: 1px;
    }

    .story a {
        padding-top: 30px;
    }



    /* ------------------------------------------
      purchase
    --------------------------------------------- */
    .cheese-block {
        padding: 8vw 7.3vw 10vw;
    }

    .cheese-title {
        padding-bottom: 20px;
        font-size: 20px;
    }

    .purchase-list {
        width: 100%;
        margin: 0 auto;
    }

    .purchase-items-box {
        margin: 0 2vw;
    }

    .purchase-list img {}

    .purchase-text {
        width: 100%;
    }

    .purchase-image {
        margin-bottom: 10px;
    }

    .item-name {
        font-size: 14px;
    }

    .item-price {
        font-size: 12px;
        font-weight: 700;
    }

    .item-price small {
        font-size: 10px;
    }

    .purchase-slider-prev,
    .purchase-slider-next {
        width: 20px;
    }

    .purchase-slider-prev {
        left: -20px;
    }

    .purchase-slider-next {
        right: -20px;
    }

    .purchase .item-price span span {
        padding: 1px;
        margin: 1px 4px 0 0;
    }


    /* ------------------------------------------
      campaign
    --------------------------------------------- */
    .campaign {
        padding: 6vw 6vw 8vw;
        text-align: center;
        background: url(../images/osusume-bg.webp) repeat;
        color: #fff;
    }

    .campaign-title {
        padding-bottom: 3vw;
        letter-spacing: 1px;
        font-size: 16px;
    }

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


}
