@charset "utf-8";

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

共通

----------------------------------------------------------- */
html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    background: #333;
    color: #fff;
    background-attachment: fixed;
    z-index: 1;
    transition: 1.0s;
    letter-spacing: 0.4px;
    line-height: 1.7em;
    background-color: #000;
    position: relative;
}

p {
    line-height: 1.5em;
}


body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure {
    margin: 0;
    padding: 0;
}

a {
    color: #333;
    transition: all 0.5s;
}

a:hover {
    text-decoration: none;
    transition: all 0.5s;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
}

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

img {
    vertical-align: top;
    max-width: 100%;
    border: 0;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

img::before {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    /* Chromeでは何かしら透明色以外の背景色を指定ないとだめ */
    background: white;
    /* 透明度を0 */
    opacity: 0;
}

li {
    list-style-type: none;
}

/* ----------------------------------------------- */
/* 768px以下 */
/* ----------------------------------------------- */
@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }
}

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

google fonts

----------------------------------------------------------- */
/*Zen Kaku Gothic Antique*/
.zen-kaku-gothic-antique-regular {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-kaku-gothic-antique-medium {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.zen-kaku-gothic-antique-bold {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.zen-kaku-gothic-antique-black {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/*Fugaz One*/
.fugaz-one-regular {
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*Caprasimo*/
.caprasimo-regular {
    font-family: "Caprasimo", serif;
    font-weight: 400;
    font-style: normal;
}

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

背景設定

----------------------------------------------------------- */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s ease 0s;
    z-index: -1;
}

.show .bg {
    opacity: 1;
}

.bg._01 {
    background: url(../images/mv_bg.jpg) no-repeat;
    background-size: contain;
    background-color: #000;
    background-position-y: 20em;
    opacity: 1;
}

.bg._02 {
    background: url(../images/intro_bg.jpg) no-repeat;
    background-size: cover;
    background-color: #000;
    background-position: top center;
}

.bg._03 {
    background: url(../images/profile_bg_01.jpg) no-repeat;
    background-size: cover;
    background-color: #000;
}

.bg._04 {
    background-color: #000;
}

.bg._05 {
    background: url(../images/news_bg.jpg) no-repeat;
    background-size: cover;
    background-color: #000;
}

.bg._06 {
    background: url(../images/info_bg.png) no-repeat;
    background-size: cover;
    background-color: #000;
}

/*お問い合わせページ*/
#contact_page .bg._contact,
#thanks_page .bg._thanks {
    background: url(../images/profile_bg_01.jpg) no-repeat;
    background-size: cover;
    background-color: #000;
    opacity: 1;
}


section.contents {
    display: flex;
    background-color: #000;
}

.one {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 110vh;
}

.onebox {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
}

.onebox img {
    width: 100%;
    height: auto;
    vertical-align: top;
    margin-bottom: 15px;
}

/* -----------------------------------------------------------
コンテンツ幅の設定 1920px 以下
----------------------------------------------------------- */

@media screen and (max-width:1920px) {
    .bg._01 {
        background-position-y: 16.5vw;
    }

}

/* -----------------------------------------------------------
コンテンツ幅の設定 1280px 以下
----------------------------------------------------------- */

@media screen and (max-width:1280px) {
    .bg._01 {
        background-position-y: 8em;
    }

}

/* -----------------------------------------------------------
コンテンツ幅の設定 768px 以下
----------------------------------------------------------- */

@media screen and (max-width:768px) {
    .bg._01 {
        display: none;
    }

    .bg._03 {
        background-position: top !important;
    }

    section.contents {
        width: 90%;
        margin: auto;
    }

}

/* -----------------------------------------------------------
コンテンツ幅の設定 480px 以下
----------------------------------------------------------- */

@media screen and (max-width:480px) {
    .bg._02 {
        background-size: auto;
        background-position: top right;
    }

    /*お問い合わせページ*/
    #contact_page .bg._contact,
    #thanks_page .bg._thanks {
        background-position: center;
    }

}

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

コンテンツ幅の設定

----------------------------------------------------------- */
.main_article {
    width: 52vw;
    margin: 0 auto;
    position: relative;
}

/* -----------------------------------------------------------
コンテンツ幅の設定 768px 以下
----------------------------------------------------------- */

@media screen and (max-width:768px) {
    .main_article {
        max-width: none;
        width: 100%;
    }
}

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

余白

----------------------------------------------------------- */
.wrapper {
    padding: 0 1em;
}

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

ボタン

----------------------------------------------------------- */
.btArea {
    text-align: center;
}

.btArea a {
    text-decoration: none;
    position: relative;
    font-weight: 800;
    font-size: 20px;
    padding: 16px 3% 16px 4%;
}

.btArea a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 25px;
    width: 0;
    height: 0;
    margin-top: -5px;
    border: 5px solid transparent;
    border-left: 8px solid #000;
}

.btArea a.btn01 {
    background-color: #FFD400;
    color: #000;
    border-radius: 30px;
    width: 90%;
    display: inline-block;
    max-width: 400px;
}

.btArea a.btn01:hover {
    background-color: #fff;
}

@media screen and (max-width:768px) {
    .btArea a {
        font-size: 16px;
    }

    .btArea a {
        padding: 16px 3% 16px 5%;
    }
}

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

タイトル

----------------------------------------------------------- */
.ttl01 {
    font-family: "Caprasimo", serif;
    font-weight: 400;
    color: #C20202;
    background-color: #fff;
    text-align: center;
    font-size: 40px;
    padding: 0.2em 1em;
    margin-bottom: 1em;
}

.ttl02 {
    margin-bottom: 1em;
    font-size: 32px;
}

@media screen and (max-width:1280px) {
    .ttl01 {
        font-size: 3vw;
    }

    .ttl02 {
        font-size: 2.5vw;
    }
}

@media screen and (max-width:768px) {
    .ttl01 {
        font-size: 24px;
    }

    .ttl02 {
        font-size: 22px;
    }
}

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

メニュー

----------------------------------------------------------- */
.header_nav {}

/* hamburgerここから */
/* input非表示 */
.input-hidden {
    display: none;
}

/* label */
.hamburger_switch {
    cursor: pointer;
    position: fixed;
    right: 3%;
    top: 0;
    z-index: 9999;
}

/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger_input:checked ~ .hamburger_switch {
    position: fixed;
}

/* ハンバーガーアイコン */
.hamburger_switch6:before,
.hamburger-switch-slide:before,
.hamburger-switch-slide:after {
    width: 25px;
    height: 3px;
    background: #fff;
    /* ハンバーガーアイコンの色 */
    position: absolute;
    top: 50%;
    left: 50%;
    transition: .3s;
    content: "";
}

.hamburger_switch6:before {
    transform: translate(-50%, -50%);
}

.hamburger-switch-slide:before {
    transform: translate(-50%, -300%);
}

.hamburger-switch-slide:after {
    transform: translate(-50%, 200%);
}

/* メニューエリア */
.hamburger_menuwrap {
    position: fixed;
    height: 100%;
    background: #333;
    padding: 5em 3% 2em 3%;
    z-index: 9998;
    transition: .3s;
    top: 0;
    left: 100%;
    width: 74%;
}

/* メニューリスト */
.hamburger_menulist {
    margin-right: 3%;
    padding-left: 5% !important;
    /* !importantは不要な場合あり */
    list-style: none;
}

.hamburger_menulist li {
    font-size: 15px;
    border-bottom: 1px solid #555;
    font-family: "Caprasimo", serif;
    font-weight: 400;
}

.hamburger_menulist li a {
    text-decoration: none;
    color: #fff;
    /* メニューリスト項目の文字色 */
    display: block;
    padding: .8em 0;
}

/* メニューエリアアニメーション */
/* 右から */
#hamburger_input:checked ~ .hamburger_menuwrap {
    left: 20%;
}

/* コンテンツカバー */
#hamburger_input:checked ~ .hamburger-demo-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9997;
    background: rgba(3, 3, 3, .5);
    display: block;
}

/* 外側四角枠 */
.hamburger_switch6 {
    width: 3em;
    height: 3em;
    transform: translate(0%, 15%);
    border: 1px solid #fff;
    overflow: hidden;
    background-color: #000;

}

/* ボーダースライド */
.hamburger_switch6:before,
.hamburger-switch-slide:before,
.hamburger-switch-slide:after {
    transition: .2s;
}

.hamburger-switch-slide:before {
    transition-delay: 0;
}

.hamburger_switch6:before {
    transition-delay: .1s;
}

.hamburger-switch-slide:after {
    transition-delay: .2s;
}

#hamburger_input:checked ~ .hamburger_switch6:before,
#hamburger_input:checked ~ .hamburger_switch .hamburger-switch-slide:before,
#hamburger_input:checked ~ .hamburger_switch6 .hamburger-switch-slide:after {
    left: 500%;
}

/* ×マークスライド */
.hamburger_switch6:after {
    content: "×";
    font-size: 2.5em;
    position: absolute;
    top: 50%;
    left: -500%;
    transform: translate(-50%, -50%);
    transition: .3s;
    color: #fff;
}

#hamburger_input:checked ~ .hamburger_switch6:after {
    left: 50%;
}

/* -----------------------------------------------------------
メニュー 1000 以上
----------------------------------------------------------- */
/* PCではハンバーガーメニューを表示しない */
@media (min-width: 1000px) {

    .hamburger_input,
    .hamburger_switch {
        display: none;
    }

    .hamburger_menuwrap {
        left: auto;
        right: 3%;
        height: auto;
        padding: 0;
        top: 10%;
        width: 200px;
        background: inherit;
    }

    /* メニューリスト */
    .hamburger_menulist li {
        font-size: 16px;
        border-bottom: 0;
        font-weight: 800;
        background-color: #808080;
        margin-bottom: 6px;
    }

    .hamburger_menulist li a {
        padding: .2em .5em;
    }

    .hamburger_menulist li a:hover {
        transform: translate(8px, 0);
    }
}

/* -----------------------------------------------------------
メニュー 1280 以上
----------------------------------------------------------- */
@media (min-width: 1280px) {
    .hamburger_menuwrap {
        right: 3%;
        width: 200px;
    }

    /* メニューリスト */
    .hamburger_menulist li {
        font-size: 17px;
    }

}

/* -----------------------------------------------------------
メニュー 1600 以上
----------------------------------------------------------- */
@media (min-width: 1600px) {
    .hamburger_menuwrap {
        right: 5%;
        width: 220px;
    }

    /* メニューリスト */
    .hamburger_menulist li {
        font-size: 19px;
    }

}

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

MV

----------------------------------------------------------- */
#mv {
    background-color: #000;
    color: #fff;
    position: relative;
    margin-bottom: 1em;
    margin-top: 20em;
}

/*メインタイトル*/
#mv h1 {
    position: absolute;
    top: -9.5em;
    max-width: 32.5vw;
    z-index: 1;
}

/*メイン画像*/
#mv .main_img {
    position: relative;
    margin-bottom: 8em;
}

/*名前*/
#mv .main_img .name {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -6em;
    max-width: 780px;

}

/*日付*/
#mv .date {
    max-width: 500px;
    margin: auto;
}

/* -----------------------------------------------------------
MV 1920px 以下
----------------------------------------------------------- */
@media screen and (max-width:1920px) {
    #mv {
        margin-top: 16.5vw;
    }

    .mv_bg .one {
        min-height: auto;
    }

    /*メインタイトル*/
    #mv h1 {
        max-width: 39vw;
        top: -15.5vw;
    }

    /*メイン画像*/
    #mv .main_img {
        margin-bottom: 6.5em;
    }

    /*名前*/
    #mv .main_img .name {
        max-width: 40vw;
        bottom: -5em;
    }

    /*日付*/
    #mv .date {
        max-width: 24vw;
    }
}

/* -----------------------------------------------------------
MV 1280px 以下
----------------------------------------------------------- */
@media screen and (max-width:1280px) {
    #mv {
        margin-top: 8em;
    }

    /*メインタイトル*/
    #mv h1 {
        max-width: 40vw;
        top: -3.6em;
    }

    /*メイン画像*/
    #mv .main_img {
        margin-bottom: 4em;
    }

    /*名前*/
    #mv .main_img .name {
        max-width: 38vw;
        bottom: -3em;
    }

    /*日付*/
    #mv .date {
        max-width: 28vw;
    }
}

/* -----------------------------------------------------------
MV 768px 以下
----------------------------------------------------------- */
@media screen and (max-width:768px) {
    section.mv_bg {
        width: 100%;
    }

    #mv {
        margin-top: 33vw;
    }

    /*メインタイトル*/
    #mv h1 {
        max-width: 79vw;
        top: -31vw;
    }

    /*メイン画像*/
    #mv .main_img {
        margin-bottom: 4em;
    }

    /*名前*/
    #mv .main_img .name {
        max-width: 68vw;
        bottom: -3em;
    }

    /*日付*/
    #mv .date {
        max-width: 50vw;
    }
}

/* -----------------------------------------------------------
MV 480px 以下
----------------------------------------------------------- */
@media screen and (max-width:480px) {

    /*メインタイトル*/
    #mv h1 {}

    /*メイン画像*/
    #mv .main_img {
        margin-bottom: 4em;
    }

    /*名前*/
    #mv .main_img .name {
        max-width: 72vw;
        bottom: -3em;
    }

    /*日付*/
    #mv .date {
        max-width: 50vw;
    }
}



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

INTRODUCTION

----------------------------------------------------------- */
/*テキスト*/
#intro {
    padding-bottom: 5em;
}

#intro .txtArea {
    margin-bottom: 2em;
}

#intro .txtArea p {
    font-size: 30px;
    font-weight: 700;
}

/*画像*/
#intro .imgArea {
    position: relative;
    margin-bottom: 5em;
}

#intro .imgArea .imgttl {
    position: absolute;
    bottom: -20px;
    left: -50px;
}

/*テキスト02*/
#intro .txtArea_02 h3 {
    color: #FFD400;
    font-size: 3.3vw;
    text-align: center;
    font-weight: 900;
    margin-bottom: 0.8em;
}

#intro .txtArea_02 p {
    font-size: 30px;
    font-weight: 700;
}

/* -----------------------------------------------------------
INTRODUCTION 1280px 以下
----------------------------------------------------------- */

@media screen and (max-width:1280px) {
    .intro_bg .one {
        min-height: auto;
    }

    #intro {
        padding-bottom: 3em;
    }

    /*テキスト*/
    #intro .txtArea p {
        font-size: 18px;
    }

    /*画像*/
    #intro .imgArea {
        margin-bottom: 3em;
    }

    #intro .imgArea .imgttl {
        bottom: -1vw;
        left: -0.8vw;
        max-width: 26vw;
    }

    /*テキスト02*/
    #intro .txtArea_02 h3 {
        font-size: 3.2vw;
    }

    #intro .txtArea_02 p {
        font-size: 18px;
    }
}

/* -----------------------------------------------------------
INTRODUCTION 768px 以下
----------------------------------------------------------- */
@media screen and (max-width:768px) {
    #intro .txtArea_02 h3 {
        font-size: 5.2vw;
    }
}

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

PROFILE

----------------------------------------------------------- */
/*顔写真*/
#profile .imgArea {
    width: 90%;
    margin: 0 auto 3em auto;
}

/*縦書きテキスト*/
#profile .txtimg {
    margin-bottom: 4em;
    text-align: center;
}

/*年表*/
#profile .timelineArea {
    margin-bottom: 5em;
    text-align: center;
}


/* -----------------------------------------------------------
PROFILE 1280px 以下
----------------------------------------------------------- */

@media screen and (max-width:1280px) {
    .profile_bg .one {
        min-height: auto;
    }

    #profile .txtimg {
        max-width: 550px;
        margin: 0 auto 4em auto;
    }
}

/* -----------------------------------------------------------
PROFILE 768px 以下
----------------------------------------------------------- */

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

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

GOODS

----------------------------------------------------------- */
#home .goods_bg .one {
    min-height: auto;
}

#home #goods {
    width: 100%;
}

/*Comming soon*/
#goods p.comming_soon {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    padding: 1em;
    border: solid 1px #fff;
    margin: 2em;
}

/* -----------------------------------------------------------
GOODS 1000px 以下
----------------------------------------------------------- */

@media screen and (max-width:1000px) {
    #goods p.comming_soon {
        font-size: 30px;
    }
}

/* -----------------------------------------------------------
GOODS 768px 以下
----------------------------------------------------------- */

@media screen and (max-width:768px) {
    #goods p.comming_soon {
        font-size: 28px;
        margin: 2em 2%;
    }
}

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

NEWS

----------------------------------------------------------- */
#home .news_bg {
    background-color: inherit;
}

#home .news_bg .one {
    min-height: auto;
}

#news {
    width: inherit;
}

#home .news_list {
    margin: 7em auto 7em auto;
}

.news_list .news_item {
    background-color: rgb(0, 0, 0, 0.7);
    padding: 1em;
    margin-bottom: 1em;
}

.news_list .news_item a {
    text-decoration: none;
}

.news_list .news_item a:hover {
    opacity: 0.5;
}

.news_list .news_item p {
    color: #fff;
}

/*日付*/
.news_list .news_item p.date {
    font-size: 28px;
    border-bottom: 2px solid #fff;
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
}

/*お知らせ内容*/
.news_list .news_item p.content {
    font-size: 26px;
}

/* -----------------------------------------------------------
NEWS 1280px 以下
----------------------------------------------------------- */

@media screen and (max-width:1280px) {
    #home .news_list {
        margin: 4em auto 4em auto;
    }

    /*日付*/
    .news_list .news_item p.date {
        font-size: 20px;
    }

    /*お知らせ内容*/
    .news_list .news_item p.content {
        font-size: 18px;
    }
}

/* -----------------------------------------------------------
NEWS 768px 以下
----------------------------------------------------------- */

@media screen and (max-width:768px) {
    #home .news_bg .wrapper {
        padding: 0;
    }
}

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

INFORMATION

----------------------------------------------------------- */
.info_bg {
    padding-bottom: 5em;
}

.info_bg .one {
    min-height: auto;
}

#home #info {
    width: 100%;
}

/*タイトル*/
#info .imgArea {
    max-width: 35vw;
    margin-bottom: 2em;
}

/*開催期日の詳細*/
#info .info_list {
    width: 90%;
    margin: auto;
    line-height: 2em;
}

#info .info_list h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 0.5em;
}

#info .info_list .detail {
    font-size: 28px;
}

#info .info_list .detail a {
    color: #fff;
}

#info .info_list .detail th {
    position: relative;
    padding: 4px 0.7em 4px 0;
    vertical-align: top;
    text-align: left;
}

#info .info_list .detail th::after {
    content: ':';
    position: absolute;
    right: 0;
}

#info .info_list .detail td {
    padding: 4px 0 4px 0.5em;
    vertical-align: top;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

/* -----------------------------------------------------------
INFORMATION 1280px 以下
----------------------------------------------------------- */

@media screen and (max-width:1280px) {
    #info .info_list h3 {
        font-size: 22px;
    }

    #info .info_list .detail {
        font-size: 18px;
    }

    #info .info_list {
        line-height: 1.5em;
    }
}

/* -----------------------------------------------------------
INFORMATION 1000px 以下
----------------------------------------------------------- */

@media screen and (max-width:1000px) {
    #info .imgArea {
        max-width: 42vw;
    }

    #info .info_list {
        width: 100%;
    }

    #info .info_list .detail {
        font-size: 16px;
    }

    #info .info_list .detail th {
        min-width: 36px;
    }
}

/* -----------------------------------------------------------
INFORMATION 768px 以下
----------------------------------------------------------- */

@media screen and (max-width:768px) {
    .info_bg {
        padding-bottom: 3em;
    }

    #info .imgArea {
        max-width: 50vw;
        min-width: 300px;
    }

    #info .info_list .detail th {
        display: block;
        width: 100%;
    }

    #info .info_list .detail td {
        display: block;
        width: 100%;
        border-bottom: solid 1px #333;
        margin-bottom: 8px;
        padding-bottom: 18px;
    }

    #info .info_list .detail th::after {
        display: none;
    }

    #info .info_list .detail {
        font-size: 18px;
        width: 97%;
    }
}

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

footer

----------------------------------------------------------- */
#footer_contents .one {
    min-height: auto;
}

#footer_contents #footer {
    width: 100%;
    overflow: hidden;
}

#footer_contents .footer_item {
    text-align: center;
    margin-bottom: 3em;
}

#footer_contents .footer_item p {
    font-size: 22px;
}

#footer_contents .footer_item p.sponsor {
    margin-bottom: 1em;
}

/*ボタン*/
#footer_contents .btArea {
    margin-bottom: 3em;
}

/*copyright*/
.copyright {
    text-align: center;
    font-size: 18px;
    background-color: #FFD400;
    color: #000;
    padding: 1em 1em 1em 1em;
}

/* -----------------------------------------------------------
footer 1280px 以下
----------------------------------------------------------- */

@media screen and (max-width:1280px) {
    #footer_contents .footer_item p {
        font-size: 16px;
    }

    .copyright {
        font-size: 13px;
    }
}

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

子ページ

----------------------------------------------------------- */
.sub_page .one:first-child {
    margin: 5em 0 0 0;
}
