/* ------------------------------------------------------------------------
    Loading
------------------------------------------------------------------------  */      
.loadingWrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 1000;
}
/* ------------------------------------------------------------------------
    Header
------------------------------------------------------------------------  */   
header.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-100px);
	}
}
header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* ------------------------------------------------------------------------
    Base
------------------------------------------------------------------------  */   
.js_in ,
.js_List_in {
}
.js_in,
.js_List_in .Target {
	transition: .6s;
}
.js_List_in .Target.active {
}

/* Type */


/* ------------------------------------------------------------------------
    animation
------------------------------------------------------------------------  */
.ani_fade_in {
	animation: is-fade-in .6s ease 0s both;
}
.js_fadein {
	opacity: 0;
}
.js_fadein.active {
	animation: is-fade-in .8s ease 0s both;
}
.js_upin {
	opacity: 0;
}
@media screen and (max-width:1023px){
	.js_upin.active {
		animation: is-fadeup-in_sp 1s ease 0s both;
	}
}
@media screen and (min-width:1024px){
	.js_upin.active {
		animation: is-fadeup-in 1s ease 0s both;
	}
}

/* mv */
.mv_fadein {
	animation: is-fade-in 2s ease 0s both;
}

/* ------------------------------------------------------------------------
    keyframe
------------------------------------------------------------------------  */
@keyframes is-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes is-fadeup-in {
	0% {
		opacity: 0;
		transform: translateY(70px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes is-fadeup-in_sp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes is-listfadeup-in {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ------------------------------------------------------------------------
    Modaal
------------------------------------------------------------------------  */
.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #000 !important;
}
.modaal-close:before,
.modaal-close:after {
	width: 2px !important;
	left: 24px !important;
	border-radius:0 !important;
}
.modaal-gallery-control:before,
.modaal-gallery-control:after {
	width: 2px !important;
	left: 26px !important;
	border-radius: 0 !important;
}
.modaal-gallery-control:before {
	margin: -6px 0 0 !important;
}

.modaal-gallery-control:after {
	margin: 6px 0 0 !important;
}
.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
	left: 21px !important;
}
.modaal-gallery-prev:before {
	margin: 6px 0 0 !important;
}

.modaal-gallery-prev:after {
	margin: -6px 0 0 !important;
}
.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
	background: #000 !important;
}

/* ------------------------------------------------------------------------
    MODAL
------------------------------------------------------------------------  */
/* container */
.modal-container{
    position: fixed;
    top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,50%);
	padding: 30px 25px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
    z-index: 500;
}
@media screen and (min-width:769px){
    .modal-container{
        padding: 80px 25px;
    }
}
/* active */
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/* body */
.modal-body{
	display: block;
	vertical-align: middle;
	max-width: 786px;
	width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/* close */
.modal-close{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	cursor: pointer;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 2em;
    line-height: 1em;
}
@media screen and (min-width:769px){
    .modal-close{
        top: 20px;
        right: 20px;
    }
}

/* contents */
.modal-content{
    position: relative;
    width: 100%;
	background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: left;
    
    padding-top: 30px;
    padding-bottom: 40px;
}
.modal-content .container{
    padding-left: 20px;
    padding-right: 20px;
}
.modal-content .container:not(.HD){
    margin-bottom: 30px;
}
.modal-content .container .SubContainer{
    padding-left: 1em;
    padding-right: 1em;
}
@media screen and (min-width:769px){
    .modal-content .container{
        padding-left: 100px;
        padding-right: 100px;
    }
    .modal-content .container:not(.HD){
        margin-bottom: 50px;
    }
}

/* Detail */
/* title */
.modal-content .Modal_Title{
    font-size: 1.85em;
}
.modal-content .Modal_Title span{
    font-size: 12px;
    font-family: 'Noto Sans JP', sans-serif;
}
/* image */
.modal-content .Main_Image{
    margin-top: 15px;
    margin-bottom: 20px;
}
/* SubTitle */
.modal-content .Sub_Title{
    color: #A59380;
    font-weight: 500;
    margin-bottom:1em;
    line-height: 1.5em;
    font-size: 1.428em;
}
/* SubTitle */
.modal-content .Sub_Title2{
    display: flex;
    align-items: center;
    color: #999;
    font-weight: 500;
    margin-bottom:1em;
    line-height: 1.5em;
    font-size: 1.5rem;
}
.modal-content .Sub_Title2:after{
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
    margin-left: 1em;
}
/* Message */
.modal-content .Message {
}
/* Sub_Message */
.modal-content .Sub_Message {
    font-size: 1.3rem;
}
.modal-content .Sub_Message span{
    font-weight: 700;
}
@media screen and (max-width:768px){
    /* title */
    .modal-content .Modal_Title span{
        display: block;
    }
}
@media screen and (min-width:769px){
    /* title */
    .modal-content .Modal_Title{
        font-size: 1.75em;
    }
    .modal-content .Modal_Title span{
        margin-left: 1em;
    }
    /* image */
    .modal-content .Main_Image{
        padding-left: 100px;
        padding-right: 100px;
    }
    /* SubTitle */
    .modal-content .Sub_Title{
        font-size: 1.375em;
    }
    .modal-content .Sub_Title2{
        font-size: 1.7rem;
    }
    /* Message */
    .modal-content .Message {
        font-size: .875em;
    }
    /* Sub_Message */
    .modal-content .Sub_Message {
        font-size: .875em;
    }
}

/* Detail List */
.modal-content .Detail_List {
    margin-bottom: 20px;
}
.modal-content .Detail_List .Item{
    display: flex;
}
.modal-content .Detail_List .Item p{
    font-size: 1.5rem;
}
.modal-content .Detail_List .Item p:nth-child(1){
    font-weight: 500;
    width: 6em;
}
.modal-content .Detail_List .Item p:nth-child(2){
}
.modal-content .Detail_List .Item p:nth-child(2) span{
    font-size: 1.2rem;
}
.modal-content .Detail_List .Message{
    line-height: 1.5em;
    font-size: 1.2rem;
    margin-top: .5em;
}
@media screen and (min-width:769px){
    .modal-content .Detail_List {
        margin-top: 1em;
        margin-bottom: 1em;
    }
    .modal-content .Detail_List .Item p{
        font-size: 1.7rem;
    }
    .modal-content .Detail_List .Item p:nth-child(1){
        width: 10em;
    }
    .modal-content .Detail_List .Message{
        font-size: 1.4rem;
    }
}

/* Btn */
.modal-content .Link_Btn {
    margin-top: 1em;
    margin-bottom: 1.5em;
}

/* ------------------------------------------------------------------------
    BTN_AREA
------------------------------------------------------------------------  */
#BTN_AREA {
    position: fixed;
    left: 10px;
    bottom: 10px;
    padding: 20px;
    max-width: 80%;
    border-radius: 7px;
    background: rgba(225,225,225,.7);
    transition: all .6s;
    transform: translateY(50px);
    opacity: 0;
    z-index: 10;
    border:2px solid #fff;
}
#BTN_AREA.active{
    transform: translateY(0);
    opacity: 1;
}
#BTN_AREA .container{
    position: relative;
}
#BTN_AREA .container .Item:not(:last-child){
    margin-bottom: 20px;
}
#BTN_AREA .container p{
    margin-bottom: .5em;
    font-weight: 500;
}


/* Btn */
#BTN_AREA .container .Area_Close{
    position: absolute;
    right: -40px;
    top: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.25em;
    border:2px solid #fff;
    
    cursor: pointer;
}
#BTN_AREA .arr_Link{
    max-width: 220px;
}