@charset "utf-8";
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    text-align: justify;
}

html {
    overflow: auto;
    font-size: 62.5%;
    height: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #000;
    line-break: strict;
    background: #fff;
    margin: 0 auto;
    line-height: 1;
    position: relative;
}


/* body.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
} */

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

main {
    overflow: hidden;
}

iframe {
    max-width: 100%;
    width: calc(1100px / 2);
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #1c1c1c;
    cursor: pointer;
}

@media print,
screen and (min-width: 601px) {
    body {
        min-width: 1280px;
    }
}


/* ------------------------------------- */


/*フォント*/


/* ------------------------------------- */

.arvo {
    font-family: 'Arvo', serif;
}

.lobster {
    font-family: 'Lobster', cursive;
}


/* ------------------------------------- */


/*デバイス切り替えここから*/


/* ------------------------------------- */

@media screen and (max-width: 600px) {
    .pc {
        display: none !important;
    }
}

@media print,
screen and (min-width: 601px) {
    .sp {
        display: none !important;
    }
}


/* ------------------------------------- */


/*共通ここから*/


/* ------------------------------------- */

.txt {
    font-size: 2rem;
    line-height: 2;
    text-align: center;
    font-weight: bold;
}


/* ボタン */

.btn {
    font-family: 'Arvo', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    letter-spacing: 0.1em;
    background: #000;
    color: #fff;
    width: 280px;
    height: 130px;
    font-size: 3rem;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    transition: 0.3s;
}

.btn:after {
    content: "";
    width: 52px;
    height: 4px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.btn:hover {
    background: #d70000;
    transition: 0.3s;
}

@media screen and (max-width: 600px) {
    .txt {
        font-size: 1.4rem;
        margin: 0 5%;
        letter-spacing: 0;
        white-space: nowrap;
    }
    .btn {
        max-width: 300px;
        width: 38%;
        height: 17vw;
        font-size: 1.5rem;
    }
    .btn:after {
        content: "";
        width: 35px;
        height: 2px;
    }
}


/* --------------------------------------*/


/*header */


/* --------------------------------------*/

header {
    width: 100%;
    height: 64px;
    padding: 0 30px 0 0;
    background: #d70000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
}

header nav ul li .icon {
    position: relative;
    padding-right: 0.8em;
}

header nav ul li .icon::after {
    content: "";
    background: url(../img/common/icon_window.png) no-repeat;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    position: absolute;
    bottom: 3px;
    margin: auto;
    right: -5px;
}

header nav ul li a {
    font-family: 'Arvo', serif;
    font-size: 1.8rem;
    color: #fff;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    transition: 0.3s;
}

header nav ul li a.active {
    background: #000;
}

header nav ul li:not(:last-child) a:hover {
    background: #000;
    transition: 0.3s;
}

header nav ul .icon a {
    margin-left: 40px;
    padding: 0;
    transition: 0.3s;
}

header nav ul .icon a svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    transition: 0.3s;
}

header nav ul .icon a:hover svg {
    fill: #000;
    transition: 0.3s;
}

@media print,
screen and (min-width: 1111px) {
    header.hamburger {
        display: none;
    }
    header h1 img {
        vertical-align: bottom;
        height: 64px;
        width: auto;
    }
    header h1 a {
        display: block;
    }
    header nav ul {
        display: flex;
        align-items: center;
        height: 63px;
    }
}

@media screen and (max-width:1110px) {
    header.global {
        display: none;
    }
    header {
        display: flex;
        align-items: center;
        padding: 0;
        height: 50px;
    }
    header h1 img {
        width: auto;
        height: 50px;
    }
    /*========= ボタンのためのCSS ===============*/
    .openbtn1 {
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #000;
        width: 45%;
    }
    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }
    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }
    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }
    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }
    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }
    /*========= ナビゲーションのためのCSS ===============*/
    #g-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        right: -120%;
        width: 100%;
        height: 100%;
        background: #d70000;
        transition: all 0.6s;
    }
    #g-nav.panelactive {
        right: 0;
    }
    #g-nav.panelactive #g-nav-list {
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100%;
        padding: 0 25px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    #g-nav .nav_item_wrap {
        padding: 90px 0 60px;
    }
    #g-nav .nav_item_wrap li a {
        font-family: 'Arvo', serif;
        font-size: 3rem;
        color: #fff;
        height: auto;
        margin-bottom: 20px;
    }
    #g-nav .nav_item_wrap .icon a {
        margin-left: 10px;
    }
    #g-nav .nav_item_wrap .icon svg {
        width: 12%;
        height: 12vw;
    }
    #g-nav .copy {
        position: absolute;
        bottom: 0;
        display: flex;
        background: #000;
        padding: 20px 5%;
        color: #fff;
        font-size: 1rem;
        font-family: 'Lobster', cursive;
        letter-spacing: 0;
        align-items: center;
        width: 100%;
    }
    #g-nav .copy img {
        width: 25%;
        max-width: 100px;
        margin-right: 4%;
    }
}


/* --------------------------------------*/


/*onlinestore */


/* --------------------------------------*/

.onlinestore {
    padding: 150px 0 100px;
}

.onlinestore h2 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.onlinestore .btn {
    width: 570px;
    margin: 0 auto;
    font-size: 3rem;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (max-width:1110px) {
    .onlinestore {
        padding: 100px 0 50px;
    }
    .onlinestore h2 {
        font-size: 1.2rem;
    }
    .onlinestore .btn {
        width: 90%;
        max-width: 375px;
        margin: 0 auto;
        font-size: 1.8rem;
        height: 80px;
    }
}


/* --------------------------------------*/


/*footer */


/* --------------------------------------*/

footer {
    padding-bottom: 65px;
    font-family: "Helvetica Neue", Helvetica, "游ゴシック Medium", "Yu Gothic Medium", YuGothicMedium, 游ゴシック体, YuGothic, "Yu Gothic", 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", メイリオ, Meiryo, sans-serif;
}

footer .upif-social {
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #c8c8c8;
}

footer .upif-social .social-links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .upif-social .social-links li {
    font-size: 0.875rem;
    word-wrap: break-word;
    word-break: break-all;
    margin: 0px 0.75em;
}

footer .upif-social .social-links li:first-child {
    margin-left: 0;
}

footer .upif-social .social-links li:last-child {
    margin-right: 0;
}

.social-links li a {
    display: block;
    line-height: 1.0;
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
}

.social-links li a.facebook {
    background-size: 30px auto;
    background-image: url(../img/common/ic_social_facebook.svg);
}

.social-links li a.instagram {
    background-size: 28px auto;
    background-image: url(../img/common/ic_social_instagram.svg);
}

.social-links li a.youtube {
    background-size: 30px auto;
    background-image: url(../img/common/ic_social_youtube.svg);
}

.social-links li a.vimeo {
    background-size: 26px auto;
    background-image: url(../img/common/ic_social_vimeo.svg);
}

.social-links li a span {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    font-size: 0;
}

footer .logo_disc {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 2.5rem;
}

footer .upif-logo {
    width: 88px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
}

footer .upif-copyright {
    margin: 2.5rem 0px;
    font-size: 1rem;
    text-align: center;
}

footer .upif-nav ul {
    text-align: center;
}

footer .upif-nav ul li {
    display: inline-block;
    padding-left: 1em;
    font-size: 1.2rem;
    position: relative;
}

footer .upif-nav ul li:first-of-type {
    padding-left: 0px;
}

footer .upif-nav ul li:last-of-type {
    padding-right: 0px;
}

footer .upif-nav ul li:after {
    content: "|";
    padding-left: 1.2em;
    color: #979797;
}

footer .upif-nav ul li:last-of-type:after {
    content: "";
    padding-left: 0;
}

footer .upif-nav ul li a {
    color: #979797;
    transition: 0.3s;
}

footer .upif-nav ul li a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 600px) {
    footer {
        padding-bottom: 105px;
    }
    footer .upif-nav ul li {
        font-size: 1rem;
        padding-left: 0.5em;
    }
    footer .upif-nav ul li:last-of-type:after {
        padding-left: 1em;
    }
}


/* ------------------------------------- */


/*下層共通ここから*/


/* ------------------------------------- */

.ud_layer .mv {
    margin-top: 64px;
    position: relative;
    height: 750px;
}

.mv_inner {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.ud_layer .mv h2 {
    font-size: 12rem;
    font-family: 'Arvo', serif;
    text-align: center;
    margin-bottom: 30px;
}

.ud_layer .mv span {
    font-size: 3rem;
    display: block;
    text-align: center;
    line-height: 1.4;
}

@media print,
screen and (max-width: 1110px) {
    .ud_layer .mv {
        margin-top: 50px;
        height: 133vw;
    }
    .mv_inner {
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .ud_layer .mv h2 {
        font-size: 5rem;
        /* font-family: 'Arvo', serif; */
        /* text-align: center; */
        margin-bottom: 20px;
        white-space: nowrap;
    }
    .ud_layer .mv span {
        font-size: 1.6rem;
    }
}


/*---------------------------------*/


/* button pagetop*/


/* --------------------------------------*/

footer .pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    width: 60px;
    height: 60px;
    background: url(../img/common/page_top.svg) no-repeat;
    background-size: 60px 60px;
    z-index: 100;
}

@media screen and (max-width: 600px) {
    footer .pagetop {
        right: 5%;
        width: 45px;
        height: 45px;
        background-size: 45px 45px;
    }
}


/* ------------------------------------- */


/*404ここから*/


/* ------------------------------------- */

#not_found .mv {
    background: url(../img/common/mv_404.jpg) no-repeat center/cover;
}

#not_found .mv h2 {
    font-size: 6rem;
}

#not_found .mv h2 span {
    font-size: 2rem;
    font-weight: 600;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    #not_found .mv {
        background: url(../img/common/mv_404_sp.jpg) no-repeat center/cover;
    }
    #not_found .mv h2 {
        font-size: 3rem;
    }
    #not_found .mv h2 span {
        font-size: 1.4rem;
    }
}


/* ------------------------------------- */


/*ローディングアニメーションここから*/


/* ------------------------------------- */

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #d70000;
    text-align: center;
    color: #fff;
}

#loading_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

#loading_logo::after {
    content: "";
    background: url("../img/common/logo_loading_txt.png") no-repeat center/contain;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: center;
    transform: translate(-50%, -50%);
    animation: rotate-anime 10s linear infinite;
    display: block;
}

@keyframes rotate-anime {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(-360deg);
    }
}

#loading_logo::before {
    content: "LOADING...";
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    animation: blink 1.5s infinite linear;
    font-size: 1.2rem;
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}