﻿/* CSS Document */

/*====================================================
全体
====================================================*/

*{
	margin:0;
	padding: 0;
}

.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);
}
}


.pc { display: block !important; }
.sp { display: none !important; }


.report_all {
	box-sizing: border-box;
	width: 940px !important;
	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;
	display: block;
}


/* EVENT REPORTのタイトルまわり */
.header {
    background-color: #333333;
    width: 940px;
    text-align: center;
    padding: 50px 0px;
    box-sizing: border-box;
}

/* EVENT REPORTのタイトルロゴ */
.header_img {
	width: 300px;
	height: auto;
	text-align: center;
	margin: 0 auto;
}

/* 第〇弾 */
.sub_title {
	font-size: 22px;
	line-height: 1.2;
	text-align: center;
	margin: 50px 0;
}

/* 第〇弾の数字 */
.sub_title span {
	font-size: 50px;
	color: #c79e4e;
	font-family: korolev, sans-serif;
	font-weight: 700;
	padding: 0px 10px;
}

.introduction {
	position: relative;
}

.title {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    padding: 1em;
    color: #fff;
    background-color: #c79e4e;
    width: 550px;
    box-sizing: border-box;
    margin: 0 auto;
}

img.intro_img {
    position: absolute;
    top: 120px;
    z-index: -1;
}

.intro {
    width: 700px;
    margin: 98px auto 138px;
    color: #fff;
}

.point {
	position: relative;
	padding-bottom: 80px;
}

/* 背景をゴールド系にするクラス */
.bg_gld {
    background-color: #e9d8b8;
}

/* Point1とかの丸いアイコン */
img.pt_icn {
    position: absolute;
    top: -65px;
    width: 130px;
    left: 0;
    right: 0;
    margin: auto;
}

/* 各ポイントのタイトル */
.pt_title {
	font-size: 25px;
	text-align: center;
	padding-top: 60px;
	font-weight: 500;
	margin-bottom: 30px;
}

/* 写真とテキストの段組み */
.block {
    display: flex;
    justify-content: center;
}

/* Point全体のテキストサイズ */
.text {
    text-align: justify;
    line-height: 2;
    font-size: 15px;
}

/* テキストのみの段 */
.center {
	width: 700px;
	margin: 40px auto;
}

/* 左寄せの文字 */
.left {
	width: 310px;
	margin-right: 50px;
	align-self: center;

}

/* 右寄せの文字 */
.right {
	width: 310px;
	margin-left: 50px;
	align-self: center;
}

/*画面いっぱいの写真*/
.main_img {
	margin: 40px auto;
}

/*中くらいの写真*/
.middle_img {
	margin: 0 auto;
}

/* 白枠つきの小さい写真 */
.small_img {
	border: solid #fff 10px;
	position: relative;
	width: 340px;
	box-sizing: border-box;
}

/* ピンのイラストをつけるクラス */
.pin {
	position: relative;
}

/* ピンのイラスト */
.pin::before {
	content: '';
	display: block;
	position: absolute;
	width: 50px;
	height: 62px;
	z-index: 1;
	background: url(../img/pin.png) no-repeat;
	background-size: contain;
	top: -30px;
	right: 50%;
	left: 50%;
}

/* ピンのイラストをつけるクラス */
.pin2 {
	position: relative;
}


/* ピンのイラスト2 */
.pin2::before {
	content: '';
	display: block;
	position: absolute;
	width: 65px;
	height: 49px;
	z-index: 1;
	background: url(../img/pin2.png) no-repeat;
	background-size: contain;
	top: -20px;
	left: 40%;
}

/* 右側の小さい写真を回転 */
.rotate_r {
	transform: rotate(2deg);
	position: relative;
}

/* 左側の小さい写真を回転 */
.rotate_l {
	transform: rotate(-2deg);

}

/* まだまだ魅力がいっぱい */
.column_title {
	text-align: center;
	margin: 60px auto 40px;
	font-size: 25px;
	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: 17px;
	height: 30px;
	transform: rotate(90deg);
	top: 45px;
	left: 0;
	right: 0;
	margin: auto;
}

.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.other_photo {
	width: 330px;
	height: 330px;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	margin: 20px;
}

.other_photo img {
	width: 330px;
}

.other_photo .caption {
	font-size: 15px;
	text-align: justify;
	width: 330px;
	height: 330px;
	color: #fff;
	padding: 30px;
	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: 80px;	/* ホバーで下にずらす */
}


/*ラウンジへ戻るボタン*/

.btn {
    display: flex;
    justify-content: center;
}

.vpl_back {
	padding-top: 50px;
	text-align: center;
	margin: 0 15px;
}

.vpl_back a {
	font-size: 18px;
	padding: 0.5em 1em;
	color: #fff;
	text-decoration: none;
	transition: all 0.5s;
	line-height: 18px;
	font-weight: 700;
}



.vpl_back a:hover {
	transition: all 0.5s;
	background: #fff;
}

.bk a {
	border: solid 2px #323232;
	background: #323232;
}

.bk a:hover {
	color: #323232;
}

.gold a {
	background: #c79e4e;
	border: solid 2px #c79e4e;
}

.gold a:hover {
	color: #c79e4e;
}



.vpl_back a::after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background-size: contain;
	background-image: url(../img/arrow_white.png);
	background-repeat: no-repeat;
	width: 11px;
	height: 18px;
	margin: 0px 0px 2px 10px;
	transition: all 0.5s;
}

.bk a:hover:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background-size: contain;
	background-image: url(../img/arrow_black.png);
	background-repeat: no-repeat;
	width: 11px;
	height: 18px;
	margin: 0px 0px 2px 10px;
	transition: all 0.5s;
	color: #323232;
}

.gold a:hover:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	background-size: contain;
	background-image: url(../img/arrow_gold.png);
	background-repeat: no-repeat;
	width: 11px;
	height: 18px;
	margin: 0px 0px 2px 10px;
	transition: all 0.5s;
	color: #c79e4e;
}

/* vpl_pagetop */
#vpl_pagetop {
	position:fixed;
	right:35px;
	bottom:35px;
	z-index: 1;
}
#vpl_pagetop a {
	display:block;
	width:125px;
	height:125px;
	background:url(../img/btn_pagetop.png) no-repeat;
	transition: all 0.5s;
}
#vpl_pagetop a:hover {
	transition: all 0.5s;
	background:url(../img/btn_pagetop_on.png) no-repeat;
}
#vpl_pagetop a span {
	display:none;
}

#forcia_gadget_categoryMenu{
    display:none;
}



