/**
 * 03-01　アコーディオン
 */
/* アコーディオンのデフォルト（閉） */
.accordion > div {
	width:1000px;
	cursor: pointer;
	margin: 0 0 10px 0;
	padding: 0 0 8px 0px;
	border-radius: 5px;
	background-color: black;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-down.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	text-align:center;
}
.accordion > .green {
	width:1000px;
	cursor: pointer;
	margin: 0 0 10px 0;
	padding: 0 0 8px 0px;
	border-radius: 5px;
	background-color: green;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-down.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	text-align:center;
}

.accordion > .orange {
	width:1000px;
	cursor: pointer;
	margin: 0 0 10px 0;
	padding: 0 0 8px 0px;
	border-radius: 5px;
	background-color: orange;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-down.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	text-align:center;
}

.accordion > .purple {
	width:1000px;
	cursor: pointer;
	margin: 0 0 10px 0;
	padding: 0 0 8px 0px;
	border-radius: 5px;
	background-color: purple;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-down.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	text-align:center;
}

.accordion > .blue {
	width:1000px;
	cursor: pointer;
	margin: 0 0 10px 0;
	padding: 0 0 8px 0px;
	border-radius: 5px;
	background-color: blue;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-down.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	text-align:center;
}
.accordion > div:hover {
	background-color: black;
}
.accordion > div > p {
	font-weight: normal;
}
.accordion > div .content {
	display: none;
}
/* アコーディオンが開いたときのスタイル */
.accordion > div.expanded {
	background-color:black;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-up.png);
}

.accordion > .green.expanded {
	background-color: green;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-up.png);
}

.accordion > .orange.expanded {
	background-color: orange;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-up.png);
}

.accordion > .purple.expanded {
	background-color: purple;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-up.png);
}

.accordion > .blue.expanded {
	background-color: blue;
	background-image: url(../../../../portfolio/images/international/thalys/arrow-up.png);
}

.accordion > div.expanded > p {
	font-weight: bold;
}
.accordion > div.expanded .content {
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
	border-top: solid 1px #fff;
}

/**
 * 03-06 スライドショー
 */
/* スライドショー全体のスタイル */
.slide {
	position: relative;
	width:500px;
	font-size: 0; /* 画像下の隙間を埋めるため */
	margin:0px 0 0 0;
	float:left;
}
.slide img {
	max-width: 100%;
}
.slide > .container {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
/* 写真の配置 */
.slide > .container > li {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s linear;
}
.slide > .container > li.current {
	position: relative;
	z-index: 1;
	opacity: 1;
}
/* スライドショーのボタン */
.slide a.prev,
.slide a.next {
	position: absolute;
	display: block;
	top: 45%;
	width: 40px;
	height: 40px;
	text-indent: -5000px;
	z-index: 10; /* ボタンを常に画像より上に配置 */
}
.slide a.prev {
	background: url(../../../../portfolio/images/special-bottom/arrow-left1.png) 50% 50% no-repeat;
	left: 0;
}
.slide a.prev:hover {
	background: url(../../../../portfolio/images/special/bottomarrow-left2.png) 50% 50% no-repeat;
}
.slide a.prev:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-left3.png) 50% 50% no-repeat;
}
.slide a.next {
	background: url(../../../../portfolio/images/special-bottom/arrow-right1.png) 50% 50% no-repeat;
	right: 0;
}
.slide a.next:hover {
	background: url(../../../../portfolio/images/special-bottom/arrow-right2.png) 50% 50% no-repeat;
}
.slide a.next:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-right3.png) 50% 50% no-repeat;
}

/**
 * RESPONSIVE: スマートフォン向けウィンドウ幅600px以下
 */
@media screen and (max-width:600px) {
	.slide a.prev,
	.slide a.next {
		top: 40%;
	}
}



/**
 * 03-06 スライドショー世界遺産編
 */
/* スライドショー全体のスタイル */
.slide-world-heritage {
	position: relative;
	width:400px;
	font-size: 0; /* 画像下の隙間を埋めるため */
	margin:0 0 0 0;
	float:left;
}
.slide-world-heritage  img {
	max-width: 100%;
}
.slide-world-heritage  > .container {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
/* 写真の配置 */
.slide-world-heritage  > .container > li {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s linear;
}
.slide-world-heritage  > .container > li.current {
	position: relative;
	z-index: 1;
	opacity: 1;
}
/* スライドショーのボタン */
.slide-world-heritage  a.prev,
.slide-world-heritage  a.next {
	position: absolute;
	display: block;
	top: 45%;
	width: 40px;
	height: 40px;
	text-indent: -5000px;
	z-index: 10; /* ボタンを常に画像より上に配置 */
}
.slide-world-heritage  a.prev {
	background: url(../../../../portfolio/images/special-bottom/arrow-left1.png) 50% 50% no-repeat;
	left: 0;
}
.slide-world-heritage  a.prev:hover {
	background: url(../../../../portfolio/images/special/bottomarrow-left2.png) 50% 50% no-repeat;
}
.slide-world-heritage  a.prev:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-left3.png) 50% 50% no-repeat;
}
.slide-world-heritage  a.next {
	background: url(../../../../portfolio/images/special-bottom/arrow-right1.png) 50% 50% no-repeat;
	right: 0;
}
.slide-world-heritage  a.next:hover {
	background: url(../../../../portfolio/images/special-bottom/arrow-right2.png) 50% 50% no-repeat;
}
.slide-world-heritage  a.next:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-right3.png) 50% 50% no-repeat;
}


/**
 * 03-06 スライドショー交通手段編
 */
/* スライドショー全体のスタイル */
.slide-transport{
	position: relative;
	width:300px;
	font-size: 0; /* 画像下の隙間を埋めるため */
	margin:0 0 10px 25px;
	float:left;
}
.slide-transport  img {
	max-width: 100%;
}
.slide-transport > .container {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
/* 写真の配置 */
.slide-transport  > .container > li {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s linear;
}
.slide-transport > .container > li.current {
	position: relative;
	z-index: 1;
	opacity: 1;
}
/* スライドショーのボタン */
.slide-transport  a.prev,
.slide-transport  a.next {
	position: absolute;
	display: block;
	top: 45%;
	width: 40px;
	height: 40px;
	text-indent: -5000px;
	z-index: 10; /* ボタンを常に画像より上に配置 */
}
.slide-transport  a.prev {
	background: url(../../../../portfolio/images/special-bottom/arrow-left1.png) 50% 50% no-repeat;
	left: 0;
}
.slide-transport  a.prev:hover {
	background: url(../../../../portfolio/images/special/bottomarrow-left2.png) 50% 50% no-repeat;
}
.slide-transport  a.prev:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-left3.png) 50% 50% no-repeat;
}
.slide-transport  a.next {
	background: url(../../../../portfolio/images/special-bottom/arrow-right1.png) 50% 50% no-repeat;
	right: 0;
}
.slide-transport  a.next:hover {
	background: url(../../../../portfolio/images/special-bottom/arrow-right2.png) 50% 50% no-repeat;
}
.slide-transport a.next:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-right3.png) 50% 50% no-repeat;
}

/**
 * 03-06 スライドショー交通手段編
 */
/* スライドショー全体のスタイル */
.slide-transport-airport{
	position: relative;
	width:300px;
	font-size: 0; /* 画像下の隙間を埋めるため */
	margin:0 0 0 0;
	float:right;
}
.slide-transport-airport  img {
	max-width: 100%;
}
.slide-transport-airport > .container {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
/* 写真の配置 */
.slide-transport-airport > .container > li {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s linear;
}
.slide-transport-airport > .container > li.current {
	position: relative;
	z-index: 1;
	opacity: 1;
}
/* スライドショーのボタン */
.slide-transport-airport  a.prev,
.slide-transport-airport  a.next {
	position: absolute;
	display: block;
	top: 45%;
	width: 40px;
	height: 40px;
	text-indent: -5000px;
	z-index: 10; /* ボタンを常に画像より上に配置 */
}
.slide-transport-airport   a.prev {
	background: url(../../../../portfolio/images/special-bottom/arrow-left1.png) 50% 50% no-repeat;
	left: 0;
}
.slide-transport-airport   a.prev:hover {
	background: url(../../../../portfolio/images/special/bottomarrow-left2.png) 50% 50% no-repeat;
}
.slide-transport-airport   a.prev:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-left3.png) 50% 50% no-repeat;
}
.slide-transport-airport   a.next {
	background: url(../../../../portfolio/images/special-bottom/arrow-right1.png) 50% 50% no-repeat;
	right: 0;
}
.slide-transport-airport  a.next:hover {
	background: url(../../../../portfolio/images/special-bottom/arrow-right2.png) 50% 50% no-repeat;
}
.slide-transport-airport  a.next:active {
	background: url(../../../../portfolio/images/special-bottom/arrow-right3.png) 50% 50% no-repeat;
}

