/* base */
.js_in ,
.js_List_in {
}
.js_in,
.js_List_in .Target {
}
.js_List_in .Target.active {
}

/* Type */
.js_Fadein {
	transition: opacity .6s;
	opacity:0;
}
.js_Fadein.active {
	opacity:1;
}
.js_upin {
	transition: opacity 1s, transform .8s;
	transition-delay: .3s;
	opacity: 0;
	transform: translateY(30px);
}
.js_upin.active {
	opacity: 1;
	transform: translateY(0);
}
.js_Slidein {
	transition: opacity .6s, transform 1s;
	opacity: 0;
	transform: translateX(-50%);
}
.js_SlideinR {
	transition: opacity .6s, transform 1s;
	opacity: 0;
	transform: translateX(50%);
}
.js_Slidein.active ,
.js_SlideinR.active {
	opacity: 1;
	transform: translateX(0);
}
/* switch */
.js_Switch{}

/* ------------------------------------------------------------------------
    animation
------------------------------------------------------------------------  */
.ani_scale_in {
	animation-name: is-scale;
	animation-duration: 1s;
	animation-timing-function:ease;
	animation-delay: .8s;
}
@keyframes is_scale {
	0% {
		transform: scale(1,1);
	}
	50% {
		transform: scale(1,0);
	}
	100%{
		transform: scale(0,0);
	}
}
@keyframes is_swipe {
	0% {
        transform: rotate(0);
	}
	25% {
        transform: rotate(10deg);
	}
    50% {
        transform: rotate(-10deg);
	}
    75% {
        transform: rotate(10deg);
	}
	100%{
        transform: rotate(0);
	}
}

/* ------------------------------------------------------------------------
    Loading
------------------------------------------------------------------------  */      
.loadingWrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 1000;
}

/* ------------------------------------------------------------------------
    SLICK
------------------------------------------------------------------------  */
.slick-slider {
    /*width: 100%;*/
}
.slick-dots li button{
    padding: 0 !important;
}
.slick-dots li button:before{
    content: ''!important;
}
.slick-dots li button:after{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 8px;
    height: 8px;
    content: '';
    border-radius: 50%;
    background: #fff;
    opacity: .3;
}
.slick-dots li.slick-active button:after{
    opacity: 1;
}
.slick-dots{
    bottom: 30px!important;
}
@media screen and (max-width:768px){
    .slick-dots {
        text-align: left;
        box-sizing: border-box;
        padding-left: 25px;
    }
}

/* ------------------------------------------------------------------------
    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: 5px;
    background: #333;
    color: #fff;
    font-size: 2.7em;
    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;
}
@media screen and (min-width:769px){
    .modal-content .container{
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* 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;
}
/* 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;
    }
    /* Message */
    .modal-content .Message {
        font-size: .875em;
    }
    /* Sub_Message */
    .modal-content .Sub_Message {
        font-size: .875em;
    }
}

/* Detail List */
.modal-content .Detail_List {
    margin-top: 2em;
    margin-bottom: 1em;
}
@media screen and (min-width:769px){
    .modal-content .Detail_List {
        margin-top: 1em;
        margin-bottom: 1em;
    }
}

/* Btn */
.modal-content .Btn {
    max-width: 378px;
    margin-left: auto;
    margin-right: auto;
    
    margin-top: 20px;
    margin-bottom: 20px;
}
.modal-content .Btn a span{
    font-size: 1.3rem;
}
@media screen and (min-width:769px){
    .modal-content .Btn {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
.modal{
    z-index: 2;
}
.md-overlay{
  display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,50%); 
    padding: 40px 20px;
    /* overflow: auto; */
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: .3s;
    box-sizing: border-box;
  z-index: 9999;
}
.md-contents{
  display: none;
  position: fixed;
  max-width: 1014px;
  width: 90%;
  top: 25%;
  left: 50%;
  height: auto;
  transform: translateX(-50%);
  z-index: 10000;
}
.md-inner, .md-inner video{
    display: block;
    text-align: center;
  width: 100%!important;
}
.md-xmark{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -60px;
  right: -5px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
  cursor: pointer;
}
.md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(20px) rotate(-45deg);
}
.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-17px) rotate(45deg);
}
#modal02 p{
    color: #fff;
    font-weight: bold;
    text-align: right;
    margin-top: 1em;    
}
@media (max-width: 47.99rem){
    .f-logo{
        width: 50vw;
    }
    .md-xmark {
      right: -5px;
    }
    .md-contents {
    top: 35%;
    }
}
