@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {content: "";display: block;clear: both;}
/* flex */
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.fadeIn {
    opacity: 0;
	transform: translate(0,100px);
	-webkit-transition: all ease-in-out 0.8s;
    transition: all ease-in-out 0.8s;
}

.fadeIn.on {
    opacity: 1;
	transform: translate(0, 0);
}
.fadeInLeft {
    opacity: 0;
	transform: translate(-400px,0);
	-webkit-transition: all ease-in-out 0.8s;
	transition: all ease-in-out 0.8s;
}
.fadeInLeft.on {
    opacity: 1;
	transform: translate(0,0);
	left: 0;
}
.fadeInRight {
    opacity: 0;
	transform: translate(400px,0);
	-webkit-transition: all ease-in-out 0.8s;
	transition: all ease-in-out 0.8s;
}
.fadeInRight.on {
    opacity: 1;
	transform: translate(0,0);
}
.dely02 {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.dely03 {
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
}

/*------------------------------------------------------------
	popBox
------------------------------------------------------------*/
.popup_wrap input {
    display: none;
}
.popup_overlay {
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000000000000000000000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    overflow-x: hidden;
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
}
.popup_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
}
.popup_content {
    position: relative;
/*    align-self: center;*/
    padding: 60px 0 0;
    box-sizing: border-box;
    transition: 0.5s;
    text-align: justify;
}
.popup_wrap input:checked ~ .popup_overlay {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}
.popup_wrap input:checked ~ .popup_overlay .popup_content {
    transform: translateY(0);
}
.open_btn:hover {

}

.popBox {
/*    display: none;*/
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    padding: 0 0 0;
}
.popBox::after {
    position: absolute;
    left: 0;
    bottom: -30px;
    height: calc(100% - 70px);
    width: 100%;
    content: '';
    z-index: 0;
}
.popBox .num {
    position: absolute;
    top: 80px;
    right: -195px;
    color: #BBBBBB;
    font-size: 17rem;
    font-family: 'Arial-Black';
    mix-blend-mode: multiply;
    letter-spacing: -0.05em;
    z-index: 10;
}
.popBox .num .txt {
    display: block;
    transform: rotate(-90deg);
}
.popBox .num .txt span {
    margin-left: 10px;
    font-size: 26rem;
}
.popBox .close {
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 200;
}



.subPop {
    position: relative;
	display:table;
    width: 1400px;
    z-index: 2;
	background:#1D232A;
  -webkit-box-shadow: 0 0 20px 0 #ccc; /* Safari, Chrome用 */
  -moz-box-shadow: 0 0 20px 0 #ccc; /* Firefox用 */
  box-shadow: 0 0 20px 0 #ccc; /* CSS3 */
}
.subPop .lBox {
	display:table-cell;
    width: 720px;
	vertical-align:top;
}
.subPop .lBox img {
    width: 100%;
}
.subPop .dlBox {
	display:table-cell;
    width: 680px;
    padding: 0;
	vertical-align:top;
}

.subPop div.profile{
    margin:0 0 0 0;
    padding:140px 90px 40px 0 !important;
	text-align:right;
}
.subPop .sub p {
    margin: 0 -30px -12px 48px;
    font-family: 'Arial-Black';
    font-size: 3.6rem;
    line-height: 1;
    letter-spacing: -0.04em;
    white-space:nowrap;
}
.subPop .sub p .txtSpan {
    margin: 0 10px 0 0;
    top: 25px;
    position: relative;
    font-size: 1.5rem;
    width: 30px;
    height: 100px;
    color: black;
    letter-spacing: 0;
    -webkit-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    vertical-align: -14px;
}
.subPop .sub p .black {
    color: black;
}
.popBox dl {
    max-width: 590px;
    box-sizing: border-box;
    padding: 10px 10px 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #999;
}
.popBox dt {
    font-size: 1.6rem;
	line-height:2;
    font-weight: bold;
color:#B9ACCF;
}
.popBox dt span {
    margin-top: -5px;
    display: block;
	color:#fff;
    font-family: 'Arial';
    white-space: nowrap;
    font-size: 93%;
}
.popBox dd {
	width:380px;
	padding:0 0 0 10px;
    font-size: 1.7rem;
	color:#fff;
    font-weight: 900;
	text-align:right;
}
.popBox dd.sml {
    font-size: 1.8rem;
	line-height:2;
}
.popBox .fancybox-button {
    display: none;
}

@media all and (max-width: 896px) {
    .popBox {
        width: 100%;
        padding: 0;
    }
    .subPop {
	display:block;
        width: 82% !important;
        min-width: 330px !important;
	margin:0 auto;
        padding: 5%;
  -webkit-box-shadow: 0 0 20px 0 #ccc; /* Safari, Chrome用 */
  -moz-box-shadow: 0 0 20px 0 #ccc; /* Firefox用 */
  box-shadow: 0 0 20px 0 #ccc; /* CSS3 */
    }
    .subPop .lBox {
	display:block;
        width: 100%;
        position: relative;
    }
    .subPop .rBox {
        width: auto;
        flex: 1;
    }
    .subPop .sub {
        width: 100%;
        margin: 0;
    }
    .subPop .photo {
        width: 100%;
        margin: 0 auto;
        order: 2;
        box-sizing: border-box;
    }
    .popBox .num {
        display: none;
    }
    .subPop .sub p {
        margin: 0;
        text-align: center;
        font-size: 2.55rem;
    }
    .subPop .spBox {
        margin: -10px auto 30px;
    }
    .subPop .spBox .num02 {
        margin-top: -20px;
        font-size: 3.5rem;
        display: block;
        text-align: right;
        line-height: 1;
        color: #DADADA;
        font-family: 'Arial-Black';
    }
    .subPop .spBox .num02 span {
        font-size: 5.25rem;
    }
    .subPop .sub p .txtSpan {
        font-size: 1.2rem;
        width: 20px;
        height: 90px;
        color: #000;
        text-align: left;
        letter-spacing: -0.1em;
        vertical-align: -21px;
    }
    .subPop .dlBox {
	display:block;
        float: none;
        width: auto;
        clear: both;
        padding: 5px 0 20px 0;
    }

    .subPop .lBox img {
        min-width: 300px;
        width: 100%;
    }

.subPop div.profile{
    display:none;
}
    .popBox dl {
	width:100%;
    box-sizing: border-box;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    }
    .popBox dt {
	width:33%;
	padding:0 0 0 0;
        font-size: 1.2rem;
	line-height:1.5;
    }
    .popBox dt span {
        display: block;
        margin: 0 0 0 0;
        vertical-align: 0;
    }
    .popBox dd {
	width:65%;
	padding:0 0 0 0;
        font-size: 1.2rem !important;
	line-height:1.3;
	text-align:right;
    }
    .popBox .close {
        width: 20px;
        right: 30px;
        top: auto;
        bottom: 10px !important;
    }
    .popup_content {
        padding: 40px 0;
    }

    .popup_wrap input:checked ~ .popup_overlay .popup_content {
        transform: none;
        align-self: center;
    }

    .popBox::after {
        display: none;
    }
}

@media all and (max-width: 374px) {
    .subPop .sub p {
        font-size: 2rem;
    }
}
