/* ------------------------------------------------------------------------
    Common
------------------------------------------------------------------------  */
/* Anchor Height */
.AH {
	margin-top: -70px;
	padding-top: 70px;
}

/* shadow */
.shadow {
	box-shadow: 0 3px 6px rgba(0,0,0,.5)!important;
}

/********** Youtube **********/
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/********** Google Map **********/
.Google_Map_Link {
    position: relative;
    width: 250px;
    height: 40px;
    border-radius: 3px;
    box-sizing: border-box;
    border:1px solid var(--sub2-color);
    
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    
    font-size: 1.4rem;
}
.Google_Map_Link:after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 17px;
    height: 14px;
    background-image: url("../images/icon_link.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.Google_Map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 200px;
}
.Google_Map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (min-width:769px){
	.Google_Map {
		padding-top: 350px;
	}
}

/* ------------------------------------------------------------------------
    Button
------------------------------------------------------------------------  */
.Btn_Area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap:30px;
    row-gap:20px;
}
.Btn {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    max-width: 300px;
    border:1px solid var(--sub2-color);
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
    transition: all .3s;
    font-size: .875em;
}
.Btn span{
    position: relative;
}
@media screen and (min-width:769px){
    .Btn {
        max-width: 430px;
    }
    .Btn:hover {
        background: var(--color-gray);
    }
}

/* ------------------------------------------------------------------------
    Arrow
------------------------------------------------------------------------  */
.arr {
	position: relative;
}
.arr:before ,
.arr:after {
    transition: all .3s;
}
.arr:before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	width: 30px;
    height: 1px;
    background: #b3b0a8;
}
.arr:after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
    
	transform: translateY(-50%);

	width: 0;
    height: 0;
    border-style: solid;
    
}
/* Right */
.arr.R:before {
    right: -15px;
}
.arr.R:after {
    right: -15px;
    border-width: 3.5px 0 3.5px 4px;
    border-color: transparent transparent transparent #b3b0a8;
}
/* Left */
.arr.L:before {
    left: -15px;
}
.arr.L:after {
    left: -15px;
    border-width: 3.5px 4px 3.5px 0;
    border-color: transparent #b3b0a8 transparent transparent;
}
@media screen and (min-width:1300px){
    .arr:hover:before ,
    .arr:hover:after {
        right: -20px;
    }
}

/* ------------------------------------------------------------------------
    MV
------------------------------------------------------------------------  */
#MV {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-content: center;
}
#MV:before ,
#MV:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
}
#MV:before {
    background-image: url("../images/mv_image.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    z-index: -3;
}
#MV:after {
    background: var(--color-mask);
    z-index: -2;
}
#MV .MV_container{
    display: flex;
    align-items: center;
}
#MV .KUROS{
    text-align: center;
}
@media screen and (min-width:769px){
    #MV {
        height: 500px;
    }
}
#MV .MV_Logo{
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    
    margin-top: 20px;
    margin-bottom: 0px;
}
#MV .MV_Logo img{
    width: 100%;
}
@media screen and (min-width:769px){
    #MV .MV_Logo{
        width: 100px;
    }
    #MV .MV_Logo {
        margin-top: 50px;
        margin-bottom: 0px;
    }
}
#MV .MV_Name1,
#MV .MV_Name2{
    line-height: 1.15em;
    color: #fff;
    text-shadow: 1px 2px 5px #000;
}
#MV .MV_Name1{
    font-size: calc(30px + 20 * (100vw - 370px)/398);
}
#MV .MV_Name2{
    font-size: calc(20px + 10 * (100vw - 370px)/398);
}
@media only screen and (min-width: 769px) and (max-width: 1520px) {
    #MV .MV_Name1{
        font-size: calc(50px + 20 * (100vw - 769px)/431);
    }
    #MV .MV_Name2{
        font-size: calc(20px + 10 * (100vw - 769px)/431);
    }
}
@media screen and (min-width:1521px){
    #MV .MV_Name1{
        font-size: 70px;
    }
    #MV .MV_Name2{
        font-size: 30px;
    }
}

/***** Air Ticket *****/
#AIR_TICKET {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: -30px;
    z-index: 10;
}
#AIR_TICKET .Air_Btn {
    position: relative;
    width: 124px;
    height: 124px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid var(--sub2-color);
    box-sizing: border-box;
}
#AIR_TICKET .Air_Btn:before {
    position: absolute;
    top: 2px;
    left: 2px;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background: rgba(70,134,217,.7);
    box-shadow: 0 3px 6px rgba(0,0,0,.5)!important;
    z-index: -1;
    transition: all .3s;
}
#AIR_TICKET .Air_Btn p{
    position: relative;
    color: #fff;
    font-size: .875em;
    line-height: 1.3em;
    text-align: center;
    padding-top: 1.5em;
}
#AIR_TICKET .Air_Btn p span{
    font-size: 1.75em;
    line-height: 1.3em;
    padding-top: .25em;
    display: inline-block;
    transition: all .3s;
}
#AIR_TICKET .Air_Btn p:before{
    position: absolute;
    top: 0;
    left: -80px;
    content: 'Air Ticket';
    font-family: 'Beyond Infinity - Demo', sans-serif;
    color: #fff;
    font-size: 40px;
    transform: rotate(-10deg);
    transition: all .3s;
}
#AIR_TICKET .Air_Btn p:after{
    position: absolute;
    top: -30px;
    right: -20px;
    content: '';
    width: 50px;
    height: 50px;
    background-image: url("../images/plane.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
    transition: all .3s;
}
@media screen and (min-width:769px){
    #AIR_TICKET .Air_Btn:hover:before{
        opacity: .8;
    }
    #AIR_TICKET .Air_Btn:hover p span{
        color: rgba(248,255,0,1.00);
    }
    #AIR_TICKET .Air_Btn:hover p:after{
        top: -35px;
        right: -25px;
    }
    #AIR_TICKET .Air_Btn:hover p:before{
        transform: rotate(-20deg);
    }
}

/* ------------------------------------------------------------------------
    Image Contents
------------------------------------------------------------------------  */
.Image_Contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap:30px;
}
.Image_Contents > * {
    width: 100%;
}
/* Image */
.Image_Contents .Image {
    display: flex;
    justify-content: space-between;
}
.Image_Contents .Image .Item{
    width: 48.5%;
}
/* Message */
.Image_Contents .Message {
}
.Image_Contents .Message .Title{
    margin-bottom: 1.5em;
    padding-left: 1em;
    border-left: 1px solid var(--sub2-color);
    padding-bottom: 1em;
}

@media screen and (min-width:769px){
    .Image_Contents .Image {
        max-width: 48.5%;
        column-gap:20px;
    }
    .Image_Contents .Image .Item{
        flex: 1;
    }
    .Image_Contents .Image .Item:nth-child(2){
        position: relative;
        
    }
    .Image_Contents .Image .Item:nth-child(2) img{
        position: absolute;
        top: 17%;
        left: 0;
    }
    .Image_Contents .Message {
        padding-top: 5%;
        max-width: 48.5%;
    }
    
}


/* ------------------------------------------------------------------------
    SHEDULE
------------------------------------------------------------------------  */
#SHEDULE .Title_Area {
    background: var(--sub4-color);
    padding-top: var(--space-25);
    padding-bottom: var(--space-25);
    text-align: center;
}

/* Years */
#SHEDULE .Year{
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}
#SHEDULE .Year:after{
    content: '';
    flex: 1;
    margin-left: 1em;
    height: 1px;
    background: var(--sub2-color);
}
#SHEDULE .Year p,
#SHEDULE .Year span{
    font-weight: 500;
    color: var(--sub2-color);
}
#SHEDULE .Year p{
    font-size: 1.5em;
}
#SHEDULE .Year span{
    font-size: .75em;
}

/* List */
.List {
    margin-top: var(--space-25);
    margin-bottom: var(--space-25);
}
.List .Item{
    display: flex;
    flex-wrap: wrap;
    row-gap:10px;
    padding-left: var(--space-30);
    font-size: .875em;
}
.List .Item:not(:last-child){
    margin-bottom: 1em;
}
.List .Item > *{
    width: 100%;
}
.List .Item .Days{
    display: flex;
}
.List .Item .Days >*:nth-child(1){
    width: 7em;
}
.List .Item .Detail > *{
    display: inline-block;
}
.List .Item .Detail > *:nth-child(2):before{
    content: '　/　';
}
.List .Item .Detail a{
    color: var(--sub-color);
}
@media screen and (min-width:769px){
    .List .Item .Days{
        width: 16em;
    }
    .List .Item .Detail{
        width: calc(100% - 16em);
    }
}