@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
* {
    transition: all 0.3s ease-out;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: hiragino-kaku-gothic-pron, sans-serif;
	font-size: min(3.4vw, 16px);
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
    transition: all 0.6s ease-out;
    background-color: #f7f7f5;
}
body.bgBlack {
    background-color: #000;
    color: #fff;
}


.wrap {
    padding-top: min(14vw, 70px);
    transition: none !important;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .6s ease-out;
}
.anim.on {
	opacity: 1;
}

@media screen and (min-width: 821px) {

	.sp { display: none;}

	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}

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

	.pc { display: none;}

}



#pageWrap {
    border: #000 solid 3px;
    margin: min(3vw, 40px);
    padding: 0 min(4vw, 60px) min(4vw, 60px);
}

#op {
	position: fixed;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 9999;
	animation: op 2s ease-out 1.6s forwards;
}
#op img {
    width: 80%;
    max-width: 640px;
}
@keyframes op {
	0% { opacity: 1;}
	100% { opacity: 0;}
}

#mainVisual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#mainVisual h1 {
    width: 48vh;
    line-height: 0;
    margin: 4vh 0;
}
#mainVisual .name {
    font-size: 4vh;
    font-weight: 300;
    letter-spacing: 0.08em;
    position: absolute;
    top: 6vh;
    right: 0vh;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

#mainVisual .mainNote {
    background-color: #000;
    color: #fff;
    padding: 3vh 8vh;
}
#mainVisual .mainNote p {
    text-align: center;
    font-size: 2vh;
    font-weight: 500;
}


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

    #mainVisual h1 {
        width: 70vw;
        margin: 8vw 0;
    }
    #mainVisual .name {
        font-size: 5.8vw;
        top: 7vw;
    }
    #mainVisual .mainNote {
        padding: 5vw 6vw;
    }
    #mainVisual .mainNote p {
        font-size: 3.4vw;
    }


}


section {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding: min(10vw, 80px) 0;
}
section h2 {
    font-size: min(5.6vw, 32px);
    font-weight: 700;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    margin-bottom: min(4vw, 20px);
}

.bdrBoxWrap {
    position: relative;
}
.bdrBox {
    border: #000 solid 3px;
    width: calc(100% - 6px);
    position: relative;
    background-color: #f7f7f5;
    box-sizing: border-box;
    padding: min(6vw, 30px);
}
.bdrBoxWrap::before {
    content: "";
    display: block;
    border: #000 solid 3px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: -1;
    box-sizing: border-box;
}
.bdrBox h3 {
    font-size: min(4vw, 20px);
    font-weight: bold;
    margin-bottom: min(4vw, 20px);
}
.bdrBox h3 span {
    font-size: 0.8em;
}
.bdrBox p + p {
    margin-top: min(5vw, 25px);
}


#info {
    max-width: 800px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#info .leadTxt {
    width: 100%;
    text-align: center;
    font-size: min(4vw, 20px);
    font-weight: bold;
    margin-bottom: min(10vw, 80px);
}

#info .jacket {
    line-height: 0;
    border: #000 solid 1px;
    width: 36%;
}
#info .txt {
    background-color: #fff;
    width: 64%;
    padding: 6% 10%;
    position: relative;
    z-index: 0;
}
.buyBtn {
    margin: min(6vw, 30px) auto 0;
    width: 100%;
    max-width: 360px;
}
.buyBtn a {
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: #000;
    text-align: center;
    padding: min(2vw, 10px);
}


.newsList {
    border-bottom: #000 solid 1px;
}
.newsList dt {
    padding-top: min(4vw, 20px);
    padding-bottom: min(4vw, 20px);
    padding-right: min(10vw, 60px);
    display: flex;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    align-items: flex-start;
}
.newsList dd + dt {
    border-top: #000 solid 1px;
}
/*
.newsList dt::before {
    content: "";
    display: block;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 0;
    width: min(8vw, 40px);
    height: min(8vw, 40px);
    border-radius: 50%;
    transform: translateY(-50%);
}
.newsList dt::after {
    content: "";
    display: block;
    width: min(3vw, 14px);
    height: min(3vw, 14px);
    border-top: #fff solid 1px;
    border-left: #fff solid 1px;
    position: absolute;
    right: min(2.5vw, 13px);
    top: 45%;
    transform: translateY(-50%) rotate(225deg);
    transition: all 0.3s ease-out;
}
*/
.newsList dt.on::after {
    top: 54%;
    transform: translateY(-50%) rotate(45deg);
}
.newsList dt .date {
    border: #000 solid 2px;
    font-weight: bold;
    width: 120px;
    text-align: center;
    line-height: 1.4;
    padding-top: 0.12em;
}
.newsList dt .headLine {
    width: calc(100% - 160px);
}
.newsList dd {
    margin-bottom: min(4vw, 20px);
/*    background-color: #f7f7f5;*/
    padding: min(4vw, 20px) 0;
    display: none;
    transition: none !important;
}


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

    #info {
        flex-direction: column;
    }
    #info .jacket {
        width: 55%;
        margin-bottom: -10vw;
        position: relative;
        z-index: 1;
    }
    #info .txt {
        width: 100%;
        padding-top: 15vw;
    }

    .newsList dt {
        align-items: flex-start;
        flex-direction: column;
    }
    .newsList dt::after {
        top: 48%;
    }
    .newsList dt.on::after {
        top: 52%;
    }
    .newsList dt .date {
        margin-bottom: min(3vw, 15px);
    }
    .newsList dt .headLine {
        width: 100%;
    }

}

.xTimeline {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: min(4vw, 20px);
}
.xTimeline span {
    line-height: 1.1;
}


/* ////////////////////////////////////////////////////////////////////////////////

	bg

//////////////////////////////////////////////////////////////////////////////// */

#pageWrap,
#info .txt,
.buyBtn a,
.bdrBox,
.bdrBoxWrap::before,
.newsList,
.newsList dt,
.newsList dt::before,
.newsList dt::after,
.newsList dt .date {
    transition: all 0.8s ease-out;
}
.bgBlack #pageWrap {
    border: #fff solid 3px;
}
.bgBlack #info .txt {
    background-color: #222;
}
.bgBlack .buyBtn a {
    color: #000;
    background-color: #fff;
}
.bgBlack .bdrBox {
    border: #fff solid 3px;
    background-color: #000;
}
.bgBlack .bdrBoxWrap::before {
    border: #fff solid 3px;
}
.bgBlack .newsList {
    border-bottom: #fff solid 1px;
}
.bgBlack .newsList dd + dt {
    border-top: #fff solid 1px;
}
.bgBlack .newsList dt::before {
    background-color: #fff;
}
.bgBlack .newsList dt::after {
    border-top: #000 solid 1px;
    border-left: #000 solid 1px;
}
.bgBlack .newsList dt .date {
    border: #fff solid 2px;
}
.bgBlack .newsList dt a {
    color: #fff;
}
/*
.bgBlack .newsList dd {
    background-color: #222;
}
*/
