﻿/* CSS Document */

/*====================================================
全体
====================================================*/

.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition:all 0.9s;
}


@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(40px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


*{
	margin:0;
	padding: 0;
}



.freeArea-direct {
	overflow: hidden;
	max-width: 100vw;
}

.freeArea-direct span {
	color: inherit;
}

/* スマホビューでの左右の余白を削除 */
#fftop_recomDetail section {
	padding: 0px;
}

.pc { display: none !important; }
.sp { display: block !important; }

.report_all {
	box-sizing: border-box;
	margin: 0 auto;
	font-family: source-han-sans-japanese, sans-serif;
	font-style: normal;
	font-feature-settings: "palt";
	color: #333333;
	letter-spacing: 0.02em;
	line-height: 1.5;
	font-weight: 400;
	
}

img {
	vertical-align: top;
	font-size: 0;
	line-height: 0;
}

/* EVENT REPORTのタイトルまわり */
.header {
    background-color: #333333;
    width: 100%;
    text-align: center;
    padding: 5vw 0px;
    box-sizing: border-box;
}

/* EVENT REPORTのタイトルロゴ */
.header_img {
	width: 50vw;
	height: auto;
	text-align: center;
	margin: 0 auto;
}

/* 第〇弾 */
.sub_title {
    font-size: 3.947vw;
    line-height: 1.2;
    text-align: center;
    margin: 3.947vw 0;
    font-weight: 600;
}

/* 第〇弾の数字 */
.sub_title span {
    font-size: 10vw;
    color: #c79e4e;
    font-family: korolev, sans-serif;
    font-weight: 700;
    padding: 0px 1vw;
}


.introduction {
	position: relative;
}

.title {
    font-size: 5vw;
    text-align: center;
    font-weight: 600;
    padding: 1em;
    color: #fff !important;
    background-color: #c79e4e;
    width: 90vw;
    box-sizing: border-box;
    margin: 0 auto;
}

img.intro_img {
    position: absolute;
    top: 25vw;
    z-index: -1;
    height: 80vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit- transform: translateX(-50%);
    margin: auto;
}

.intro {
	width: 90vw;
	margin: 3.947vw auto 13vw !important;
	color: #fff;
	overflow: hidden;
}

.point {
	position: relative;
	padding-bottom: 10vw;　/*最後のところだけ余計な余白ができてしまうため、
下記のクラスを追加してpaddingを打ち消しています。*/
}

/* .pointの最後のところに入れる */
.pd_not {
	padding-bottom: 0vw !important;
}


/* 背景をゴールド系にするクラス */
.bg_gld {
    background-color: #e9d8b8;
}

/* Point1とかの丸いアイコン */
img.pt_icn {
    position: absolute;
    top: -12.5vw;
    width: 25vw;
    left: 0;
    right: 0;
    margin: auto;
}

/* 各ポイントのタイトル */
.pt_title {
	font-size: 4.4vw;
	text-align: center;
	padding-top: 10vw;
	font-weight: 600;
	margin-bottom: 3.947vw;
}

/* 写真とテキストの段組み */
.block {
    display: flex;
    text-align: center;
    flex-flow: row wrap;
    justify-content: center;
}

/* Point全体のテキストサイズ */
.text {
	text-align: justify;
	line-height: 2;
	font-size: 3.947vw;
	margin: 5vw 3.947vw;
}


/*画面いっぱいの写真*/
.main_img {
	width: 100vw;
}

/*中くらいの写真*/
.middle_img {
	margin: 0 5vw;
	width: 90vw;
}

/* 白枠つきの小さい写真 */
.small_img {
	border: solid #fff 2vw;
	position: relative;
	width: 60vw;
}

/* ピンのイラストをつけるクラス */
.pin {
	position: relative;
	margin: 5vw auto 2.5vw;
}


/* テキストと写真の上下順序を入れ替え */
.block .pin {
	order: 1;
}

.block .text {
	order: 2;
}

/* ピンのイラスト */
.pin::before {
	content: '';
	display: block;
	position: absolute;
	width: 10vw;
	height: 11vw;
	z-index: 1;
	background: url(../img/pin.png) no-repeat;
	background-size: contain;
	top: -3.947vw;
	right: 50%;
	left: 50%;
}

/* ピンのイラストをつけるクラス */
.pin2 {
	position: relative;
	margin: 5vw auto 2.5vw;
}

/* ピンのイラスト */
.pin2::before {
	content: '';
	display: block;
	position: absolute;
	width: 13vw;
	height: 9vw;
	z-index: 1;
	background: url(../img/pin2.png) no-repeat;
	background-size: contain;
	top: -3.3vw;
	left: 40%;
}

/* 右側の小さい写真を回転 */
.rotate_r {
	transform: rotate(2deg);
	position: relative;
}

/* 左側の小さい写真を回転 */
.rotate_l {
	transform: rotate(-2deg);

}

/* まだまだ魅力がいっぱい */
.column_title {
	text-align: center;
	margin: 5vw auto;
	font-size: 5vw;
	font-weight: 700;
	position: relative;
}

.column_title:before {
	content: '';
	position: absolute;
	background-size: contain;
	background-image: url(../img/arrow_black.png);
	background-repeat: no-repeat;
	width: 2.933vw;
	height: 5.333vw;
	transform: rotate(90deg);
	top: 10vw;
	left: 0;
	right: 0;
	margin: auto;
}

.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.other_photo {
	width: 90vw;
	height: 90vw;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	margin: 2.5vw;
}

.other_photo img {
	width: 90vw;
}

.other_photo .caption {
	font-size: 3.947vw;
	text-align: justify;
	width: 90vw;
	height: 90vw;
	color: #fff;
	padding: 3.947vw;
	box-sizing: border-box;
	line-height: 2;
}

.other_photo .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.other_photo:hover .mask {
	opacity: 1;	/* マスクを表示する */
	padding-top: 25vw;	/* ホバーで下にずらす */
}



/*ラウンジへ戻るボタン*/
.vpl_back a {
	font-size: 4.5vw;
	background: #323232;
	padding: 1em;
	color: #fff;
	text-decoration: none;
	transition: all 0.5s;
	line-height: 1;
	font-weight: 700;
	display: block;
	width: 90vw;
	margin: 0vw auto 5vw;
	text-align: center;
	box-sizing: border-box;
}

.vpl_back:active a {
	transition: all 0.5s;
	background: #fff;
}

.bk a {
	border: solid 2px #323232;
	background: #323232;
}

.bk a:active {
	color: #323232;
}

.gold a {
	background: #c79e4e;
	border: solid 2px #c79e4e;
}

.gold a:active {
	color: #c79e4e;
}

.vpl_back a::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background-size: cover;
	background-image: url(../img/arrow_white.png);
	background-repeat: no-repeat;
	width: 2.2vw;
	height: 3.947vw;
	margin: 0px 0px 0.5vw 2vw;
	transition: all 0.5s;
}

.bk:active a::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background-size: cover;
	background-image: url(../img/arrow_black.png);
	background-repeat: no-repeat;
	width: 2.2vw;
	height: 3.947vw;
	margin: 0px 0px 0.5vw 2vw;
	transition: all 0.5s;
}

.gold:active a::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background-size: cover;
	background-image: url(../img/arrow_gold.png);
	background-repeat: no-repeat;
	width: 2.2vw;
	height: 3.947vw;
	margin: 0px 0px 0.5vw 2vw;
	transition: all 0.5s;
}

.btn {
	padding: 3.947vw 0vw;
}


#vpl_pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999999999999999999;
}

#vpl_pagetop a {
    display: block;
    width: 20vw;
    height: 20vw;
    background: url(../img/btn_pagetop.png) no-repeat;
    background-size: contain;
}

#vpl_pagetop a:active {
	transition: all 0.5s;
	background:url(../img/btn_pagetop_on.png) no-repeat;
	background-size: contain;
}
#vpl_pagetop a span {
	display:none;
}

#forcia_gadget_categoryMenu{
    display:none;
}


