/* ------------------------------------------------------------------------
    Common
------------------------------------------------------------------------  */
/* Anchor Height */
.AH {
	margin-top: -70px;
	padding-top: 70px;
}

/* icon */
.inquiry {
    width: 70px;
    height: 50px;
    
    border-left: 1px solid #323232;
    
    display: flex;
    justify-content: center;
    align-items:center;
}
.inquiry i{
    position: relative;
    width: 20px;
    height: 20px;
    padding-top: 10px;
    padding-bottom: 25px;
    
}
.inquiry i:after{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    content: 'CONTACT';
    font-size: 10px;
}
@media screen and (min-width:1024px){
    .inquiry {
        width: 80px;
        height: 60px;
    }
}

/* shadow */
.shadow {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}


/* Googlemap */
.GoogleMap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 57%;
}
.GoogleMap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ------------------------------------------------------------------------
    Button
------------------------------------------------------------------------  */
.Btm-Btn {
    margin-top: var(--space-30);
}
.Btm-Btn > *{
	display:inline-block;
	width: 100%;
	text-align: center;
}
.color-btn {
	display: inline-block;
	padding: 12px 35px;
	font-weight: 500;
	color: #fff !important;
	background: var(--main-color) !important;
	border-radius: 50px;
	border-color: var(--main-color) !important;
	border-width: 0px;
    
    transition: all .6s;
}
.blue-btn.bg-orange {
	background-color: #f0bd5d !important;
	border-color: #f0bd5d !important;
}
.blue-btn.bg-green {
	background-color: var(--color-green) !important;
	border-color: #3CB371 !important;
}

/* ------------------------------------------------------------------------
    MV
------------------------------------------------------------------------  */
#MV {
    position: relative;
}
#MV .MV_Contents{
    display: none;
}
#MV .MV_Contents.slick-initialized{
    display: block; /*slick-initializedが付与されたら表示*/
}

#MV .MV_Contents .Item{
    position: relative;
    width: 100%;
    min-height: calc(100vh - 70px);
    box-sizing: border-box;
}
@media screen and (min-width:1024px){
    #MV .MV_Contents .Item{
        min-height: calc(100vh - 90px);
    }
}
/* Image */
#MV .MV_Contents .Item .Mv_Image{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    z-index: -3;
}
#MV .MV_Contents .Item .Mv_Image:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0,0,0,.4);
    z-index: 1;
}

/* Contents */
#MV .MV_Contents .Item,
#MV .MV_Contents .Item .Contents{
    display: flex;
    align-items:flex-end;
    justify-content: flex-end;
}
#MV .MV_Contents .Item .Contents{
    height: auto;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 15%;
    color: #fff;
    font-weight: 700;
}
@media screen and (min-width:769px){
    #MV .MV_Contents .Item .Contents{
        padding-bottom: 5%;
    }
}

/* Contents Text */
#MV .MV_Contents .Item .Contents .Title{
    text-align: right;
    font-size: 2em;
    margin-bottom: 1em;
    padding-bottom: .5em;
    border-bottom: 1px solid #fff;
    line-height: 1.3em;
    color: #fff;
}
#MV .MV_Contents .Item .Contents .Title span{
    text-align: right;
    font-size: .5em;
    display: block;
    line-height: 1.3em;
    color: #fff;
}
#MV .MV_Contents .Item .Contents .Message{
    line-height: 1.5em;
}
@media screen and (min-width:769px){
    #MV .MV_Contents .Item .Contents .Title{
        font-size: 3em;
    }
    #MV .MV_Contents .Item .Contents .Message{
        font-size: 1.25em;
    }
}

/* prev/next arrow */
#MV button {
    display: none !important;
}
#MV .Mv_Arrow {
    position: absolute;
    right: 5%;
    bottom: 5%;
}
#MV .Mv_Arrow .Arr_Prev,
#MV .Mv_Arrow .Arr_Next{
    position: relative;
    width: 20px;
    height: 20px;
}
#MV .Mv_Arrow .Arr_Prev{
    margin-right: 10px;
}
#MV .Mv_Arrow .Arr_Prev:after,
#MV .Mv_Arrow .Arr_Next:after{
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
    content: '';
    
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
}
#MV .Mv_Arrow .Arr_Prev:after{
    transform: rotate(-135deg);
}
#MV .Mv_Arrow .Arr_Next:after{
    transform: rotate(45deg);
}
@media screen and (min-width:769px){
    #MV .Mv_Arrow .Arr_Prev,
    #MV .Mv_Arrow .Arr_Next{
        width: 40px;
        height: 40px;
    }
    #MV .Mv_Arrow .Arr_Prev:after,
    #MV .Mv_Arrow .Arr_Next:after{
        left: calc(50% - 10px);
        top: calc(50% - 10px);
        width: 20px;
        height: 20px;
    }
}

/* hover */
#MV .Mv_Arrow .Arr_Prev,
#MV .Mv_Arrow .Arr_Next,
#MV .Mv_Arrow .Arr_Prev:after,
#MV .Mv_Arrow .Arr_Next:after{
    transition: opacity .6s;
}
@media screen and (min-width:769px){
    #MV .Mv_Arrow .Arr_Prev:hover,
    #MV .Mv_Arrow .Arr_Next:hover,
    #MV .Mv_Arrow .Arr_Prev:hover:after,
    #MV .Mv_Arrow .Arr_Next:hover:after{
        opacity: .6;
    }
}

/* ------------------------------------------------------------------------
    ARROW
------------------------------------------------------------------------  */
.Arr .Arr_Prev,
.Arr .Arr_Next{
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid var(--main-color);
    border-radius: 999px;
}
.Arr_Prev:after,
.Arr_Next:after{
    position: absolute;
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    content: '';
    display: inline-block;
    vertical-align: middle;
    color: var(--main-color);
    line-height: 1;
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
}
.Arr_Prev:after{
    transform: rotate(-135deg);
}
.Arr_Next:after{
    transform: rotate(45deg);
}

.Arr .Arr_Prev,
.Arr .Arr_Next,
.Arr_Prev:after,
.Arr_Next:after{
    transition: all .6s;
}
@media screen and (min-width:769px){
    .Arr .Arr_Prev,
    .Arr .Arr_Next{
        width: 36px;
        height: 36px;
    }
    
    .Arr .Arr_Prev:hover,
    .Arr .Arr_Next:hover,
    a:hover .Arr .Arr_Prev,
    a:hover .Arr .Arr_Next{
        background: var(--main-color);
    }
    .Arr_Prev:hover:after,
    .Arr_Next:hover:after,
    a:hover .Arr_Prev:after,
    a:hover .Arr_Next:after{
        color: #fff;
    }
}

