@charset "UTF-8";
.sec-end, .sec-lead {
	margin-left: 16px;
	margin-right: 16px;
}
@media all and (min-width: 360px) {
	.sec-end, .sec-lead {
		margin-left: 32px;
		margin-right: 32px;
	}
}
@media all and (min-width: 768px) {
	.sec-end, .sec-lead {
		width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form,
fieldset, input, textarea, p, blockquote, th, td, figure {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

fieldset, img {
	border: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th {
	text-align: left;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}

a {
	outline: none;
}
a:link, a:visited {
	color: blue;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: #ccc;
}
textarea::-moz-placeholder,
input::-moz-placeholder {
	color: #ccc;
	opacity: 1;
}
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
	color: #ccc;
}

* {
	box-sizing: border-box;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

main {
	display: block;
	margin: 0;
	padding: 0;
}

.com-modal .com-rl-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	transition: 0.3s;
	background: rgba(0, 0, 0, 0.7);
	visibility: hidden;
	opacity: 0;
}
.com-modal .com-rl-content {
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 10000;
	margin-left: auto;
	margin-right: auto;
	transition: 0.4s;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
	visibility: hidden;
	opacity: 0;
	background: #ffffff;
	width: 80%;
	max-height: 50%;
	padding: 16px;
	border-radius: 16px;
}
.com-modal .com-rl-content .com-rl-close {
	cursor: pointer;
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
}
.com-modal .com-rl-content .com-rl-header {
	text-align: center;
}
.com-modal .com-rl-content .com-rl-content-body {
	overflow: auto;
}
.com-modal.st-show .com-rl-overlay,
.com-modal.st-show .com-rl-content {
	opacity: 1;
	visibility: visible;
}

.com-h2 {
	color: #393939;
	text-align: center;
	background-image: url("../img/common/bg-h2-top@2x.png");
	background-repeat: no-repeat;
	background-size: 94px 47px;
	background-position-x: center;
}
.com-h2 > span {
	display: inline-block;
	position: relative;
	font-size: 22px;
	width: 100%;
	height: 65px;
	letter-spacing: 3.2px;
	padding-top: 26px;
}
.com-h2 > span:after {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 111, 171, 0.14);
	width: 100%;
	height: 18px;
	border-radius: 9px;
}
@media all and (min-width: 768px) {
	.com-h2 > span {
		font-size: 24px;
		letter-spacing: 2.8px;
		width: auto;
		padding-top: 25px;
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media all and (min-width: 992px) {
	.com-h2 > span {
		font-size: 28px;
		letter-spacing: 3.4px;
		padding-top: 10px;
	}
}
@media all and (min-width: 1200px) {
	.com-h2 > span {
		font-size: 32px;
		letter-spacing: 4.4px;
		padding-top: 14px;
	}
	.com-h2.larger > span {
		padding-top: 8px;
	}
}

.com-link,
.com-link:link,
.com-link:visited {
	line-height: 1;
	color: #393939;
	transition: 0.2s;
	cursor: pointer;
	padding-top: 16px;
	padding-bottom: 16px;
	padding-right: 14px;
	padding-left: 16px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.com-link:after,
.com-link:link:after,
.com-link:visited:after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	transform: translate(8px, 6px) rotate(45deg);
	transition: 0.2s;
	border-right: 1px solid #393939;
	border-top: 1px solid #393939;
}
.com-link:hover,
.com-link:link:hover,
.com-link:visited:hover {
	color: #E60012;
}
.com-link:hover:after,
.com-link:link:hover:after,
.com-link:visited:hover:after {
	border-right-color: #E60012;
	border-top-color: #E60012;
}

.com-sns {
	font-size: 0;
}
.com-sns li {
	display: inline-block;
}
.com-sns li a {
	display: inline-block;
}
.com-sns li a:active .fill-path {
	fill: #E60012;
}
@media all and (min-width: 992px) {
	.com-sns li a .fill-path {
		transition: 0.2s;
	}
	.com-sns li a:hover .fill-path {
		fill: #E60012;
	}
}

.messageBlodk {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	width: 100%;
	height: auto;
	padding: 16px;
	background: rgba(0, 112, 174, 0.95);
	color: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
	display: none;
}
.messageBlodk .rl-bt {
	text-align: center;
	margin-top: 16px;
}
.messageBlodk .rl-bt button {
	color: #ff6a85;
	font-size: 16px;
	line-height: 42px;
	height: 44px;
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 4px;
	text-align: center;
	padding: 0 32px;
	transition: 0.3s;
	cursor: pointer;
	background: #fff;
}
@media all and (min-width: 992px) {
	.messageBlodk .rl-inner {
		margin-left: auto;
		margin-right: auto;
		display: flex;
	}
	.messageBlodk .rl-inner > p {
		margin-right: 32px;
		text-align: center;
		flex-grow: 1;
	}
}

body {
	font-size: 16px;
	line-height: 1.8;
	background: #fff;
}
body.ja {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
body.ja .maru {
	font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "sans-serif";
}
body.zh-TW {
	font-family: "Helvetica Neue", Helvetica, Arial, STHeiti, "Microsoft JhengHei", 微軟正黑體, sans-serif;
}
body.zh-TW .maru {
	font-family: "Helvetica Neue", Helvetica, Arial, STHeiti, "Microsoft JhengHei", 微軟正黑體, sans-serif;
}

a,
a:link,
a:visited {
	color: #393939;
	text-decoration: none;
}

.block-sns {
	text-align: center;
	margin-top: 32px;
}
@media all and (min-width: 768px) {
	.block-sns {
		position: relative;
		font-size: 0;
		margin-top: 0;
	}
	.block-sns .com-sns {
		position: absolute;
		bottom: 0;
		left: 0;
	}
}

.block-header {
	padding: 2px 0px;
	position: relative;
	background: rgba(29, 29, 29, 0.8);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 9998;
	width: 100%;
}
@media all and (min-width: 992px) {
	.block-header {
		padding: 0;
		height: 60px;
	}
}
.block-header .rl-logo {
	height: 100%;
	width: 230px;
	padding-left: 15px;
	margin-right: 15px;
}
.block-header .rl-logo a {
	height: 100%;
	width: 100%;
	display: block;
	position: relative;
	font-size: 0;
}
.block-header .rl-logo a img {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
@media all and (min-width: 992px) {
	.block-header .rl-logo {
		height: 35px;
		z-index: 2;
	}
	.block-header .rl-logo a {
		width: auto;
		height: 100%;
	}
	.block-header .rl-logo a img {
		position: static;
		width: auto;
		height: 100%;
	}
}
.block-header .rl-bt-nav {
	position: absolute;
	top: 0;
	right: 8px;
	height: 100%;
}
.block-header .rl-bt-nav button {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
@media all and (min-width: 992px) {
	.block-header .rl-bt-nav {
		display: none;
	}
}
.block-header .rl-logo-tek {
	width: 130px;
	margin-right: 20px;
	padding-top: 5px;
}
.block-header .rl-logo-tek img {
	width: 100%;
	height: auto;
}
.block-header .com-modal .com-rl-content {
	max-height: 80%;
}
.block-header .com-modal .com-rl-content-body {
	padding: 16px;
}
.block-header .com-modal .rl-global li {
	margin: 16px 0;
}
.block-header .com-modal .rl-global li a {
	position: relative;
	width: 100%;
	font-weight: bold;
	display: flex;
}
.block-header .com-modal .rl-global li a::before {
	content: "";
	display: inline-block;
	background: #393939;
	width: 4px;
	margin-right: 8px;
	border-radius: 2px;
}
.block-header .com-modal .rl-lang {
	display: table;
	margin: 32px auto;
	text-align: center;
}
.block-header .com-modal .rl-lang li {
	display: inline-block;
	padding-left: 8px;
	padding-right: 8px;
}
.block-header .com-modal .rl-lang li a {
	color: #393939;
}
.block-header .com-modal .rl-lang li:first-child {
	border-right: 1px solid ccc;
}
.block-header .com-modal .rl-illust {
	text-align: center;
}
@media all and (min-width: 992px) {
	.block-header .com-modal {
		display: block !important;
		height: 60px;
	}
	.block-header .com-modal .com-rl-overlay,
.block-header .com-modal .rl-illust {
		display: none !important;
	}
	.block-header .com-modal .com-rl-content {
		max-height: 60px;
		height: 60px;
		background: transparent;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body {
		padding: 0;
		height: 60px;
		overflow: visible;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav {
		position: relative;
		height: 60px;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global {
		display: flex;
		width: 600px;
		z-index: 1;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li {
		width: 20%;
		margin-top: 0;
		margin-bottom: 0;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li a {
		line-height: 1.3;
		transition: color 0.2s;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li a::before {
		transition: background-color 0.2s;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li a:hover {
		color: #E60012;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li a:hover::before {
		background-color: #E60012;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li.ex-zh a {
		line-height: 2.6;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global .rl-label > span {
		display: block;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-lang {
		margin: 0;
		right: 16px;
	}
	.block-header .com-modal .com-rl-content {
		position: static;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		display: block;
		padding: 0;
		border-radius: 0;
		transform: none;
		transition: inherit;
		width: 100%;
	}
	.block-header .com-modal .com-rl-content .com-rl-close {
		display: none !important;
	}
}
@media all and (min-width: 1400px) {
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global {
		width: 960px;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global .rl-label > span {
		display: inline;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li:nth-child(1) a:after {
		top: -8px;
	}
	.block-header .com-modal .com-rl-content .com-rl-content-body nav .rl-global li.ex-zh a {
		line-height: 1.3;
	}
}

.block-footer {
	text-align: center;
	background-color: #A7A7A7;
	margin-top: 5%;
}

.block-footer__logo {
	padding: 15px 15px 12px;
	fill: #fff;
}

.block-footer__links {
	display: block;
	justify-content: center;
	margin-bottom: 12px;
	list-style: none;
}
@media all and (min-width: 768px) {
	.block-footer__links {
		display: flex;
	}
}

.block-footer__item:not(:last-child)::after {
	color: #fff;
	margin: 0 1em;
	content: none;
}
@media all and (min-width: 768px) {
	.block-footer__item:not(:last-child)::after {
		content: "|";
	}
}

.block-footer__link {
	font-size: 12px;
	color: #fff !important;
}
.block-footer__link:hover {
	text-decoration: underline;
}

.block-footer__copyright {
	display: grid;
	place-items: center;
	height: 30px;
	font-size: 10px;
	color: #6C6C6C;
	background-color: #F0F0F0;
}

.fadeIn {
	opacity: 1;
	transition: opacity 0.3s;
}
.fadeIn.hide {
	opacity: 0;
}

.totop {
	position: fixed;
	z-index: 9998;
	bottom: 16px;
	right: 16px;
	cursor: pointer;
	display: none;
}
.totop .fillarea {
	fill: #66B4B0;
	transition: fill 0.3s;
}
.totop:hover .fillarea {
	fill: #458d8a;
}

.main {
	padding-top: 57px;
}
@media all and (min-width: 992px) {
	.main {
		padding-top: 60px;
	}
}

.block-hero {
	position: relative;
}
.block-hero .rl-background {
	font-size: 0;
	position: relative;
	padding-top: 60%;
	overflow: hidden;
	background-color: #fff;
	opacity: 1;
	transition: opacity 0.5s;
}
.block-hero .rl-background.hide {
	opacity: 0;
}
.block-hero .rl-background .item {
	width: 60%;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	transform: translateX(500%);
}
.block-hero .rl-background .item img {
	width: 100%;
	height: auto;
}
.block-hero .rl-background .item.animation {
	transition: transform 0.9s;
}
.block-hero .rl-background .item.p-pre-outer {
	transform: translateX(-400%);
	z-index: 1;
}
.block-hero .rl-background .item.p-pre-3 {
	transform: translateX(-300%);
	z-index: 7;
}
.block-hero .rl-background .item.p-pre-2 {
	transform: translateX(-200%);
	z-index: 8;
}
.block-hero .rl-background .item.p-pre-1 {
	transform: translateX(-100%);
	z-index: 9;
}
.block-hero .rl-background .item.p-current {
	transform: translateX(0%);
	z-index: 10;
}
.block-hero .rl-background .item.p-next-1 {
	transform: translateX(100%);
	z-index: 9;
}
.block-hero .rl-background .item.p-next-2 {
	transform: translateX(200%);
	z-index: 8;
}
.block-hero .rl-background .item.p-next-3 {
	transform: translateX(300%);
	z-index: 7;
}
.block-hero .rl-background .item.p-next-outer {
	transform: translateX(400%);
	z-index: 1;
}
@media all and (min-width: 992px) {
	.block-hero .rl-background {
		padding-top: 33.3333333%;
	}
	.block-hero .rl-background .item {
		width: 33.3333333%;
	}
}
@media all and (min-width: 1440px) {
	.block-hero .rl-background {
		padding-top: 25%;
	}
	.block-hero .rl-background .item {
		width: 25%;
	}
}
.block-hero h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 100;
	width: 100%;
	font-size: 24px;
}
.block-hero h1 > span {
	padding: 12px 0;
	display: inline-block;
	margin: 0 auto;
	position: relative;
	line-height: 1.35;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.block-hero h1 > span:before {
	position: absolute;
	width: 100%;
	height: 2px;
	content: "";
	top: 0;
	left: 0;
	background: #fff;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.block-hero h1 > span:after {
	position: absolute;
	width: 100%;
	height: 2px;
	content: "";
	bottom: 0;
	left: 0;
	background: #fff;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
@media all and (min-width: 768px) {
	.block-hero h1 {
		font-size: 36px;
		max-width: 720px;
	}
}
@media all and (min-width: 992px) {
	.block-hero h1 {
		font-size: 44px;
	}
}

.rl-sns {
	padding: 16px 0;
}
.rl-sns .com-sns {
	text-align: center;
}
@media all and (min-width: 768px) {
	.rl-sns {
		position: relative;
		padding: 0;
		margin-bottom: 32px;
	}
	.rl-sns .com-sns {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 100;
	}
}
@media all and (min-width: 992px) {
	.rl-sns {
		margin-bottom: 64px;
	}
}

.sec-lead p + p {
	margin-top: 16px;
}

.sec-end {
	margin-top: 96px;
}
.sec-end h2 {
	text-align: left;
	font-weight: bold;
	font-size: 24px;
}
@media all and (min-width: 768px) {
	.sec-end h2 {
		font-size: 28px;
	}
}

.sec-main-image {
	max-width: 1200px;
	margin: 32px 16px;
}
@media all and (min-width: 992px) {
	.sec-main-image {
		width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media all and (min-width: 1200px) {
	.sec-main-image {
		width: 960px;
	}
}
@media all and (min-width: 1440px) {
	.sec-main-image {
		width: 1200px;
	}
}
.sec-main-image figure img {
	width: 100%;
	height: auto;
}

.block-google-map {
	margin-top: 32px;
	margin-left: 16px;
	margin-right: 16px;
	position: relative;
	padding-top: 56.25%;
}
.block-google-map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: none;
}
@media all and (min-width: 992px) {
	.block-google-map {
		padding-top: 33.3333%;
		width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media all and (min-width: 1200px) {
	.block-google-map {
		width: 960px;
	}
}
@media all and (min-width: 1440px) {
	.block-google-map {
		width: 1200px;
	}
}

.h2 {
	text-align: center;
	font-size: 36px;
	margin-top: 64px;
	font-weight: bold;
}
@media all and (min-width: 992px) {
	.h2 {
		font-size: 44px;
		margin-top: 96px;
	}
}

.block-line {
	margin-left: 16px;
	margin-right: 16px;
	position: relative;
	font-size: 0;
}
@media all and (min-width: 360px) {
	.block-line {
		margin-left: 32px;
		margin-right: 32px;
	}
}
@media all and (min-width: 768px) {
	.block-line {
		width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media all and (min-width: 992px) {
	.block-line {
		width: 960px;
	}
}
@media all and (min-width: 1440px) {
	.block-line {
		width: 1200px;
	}
}
.block-line .line-box {
	position: relative;
	height: 160px;
	margin-left: 20%;
	margin-right: 30%;
}
@media all and (min-width: 992px) {
	.block-line .line-box {
		height: 256px;
	}
}
.block-line .line-1 {
	position: absolute;
	display: inline-block;
	background: #e0e0e0;
	z-index: 0;
	top: 0;
	left: 0;
	width: 8px;
	height: 64px;
	transition: height 0.15s linear;
}
.block-line .line-2 {
	position: absolute;
	display: inline-block;
	background: #e0e0e0;
	z-index: 0;
	width: 100%;
	height: 8px;
	top: 64px;
	transition: width 0.3s 0.15s linear;
}
.block-line .line-3 {
	position: absolute;
	display: inline-block;
	background: #e0e0e0;
	z-index: 0;
	width: 8px;
	height: 88px;
	top: 72px;
	right: 0;
	transition: height 0.15s 0.45s linear;
}
.block-line .rl-text {
	line-height: 16px;
	display: inline-block;
	position: absolute;
	top: 104px;
	right: 0;
	font-size: 12px;
	transform: translateX(50%);
	transition: opacity 0.3s 1s;
	color: #666;
}
@media all and (min-width: 992px) {
	.block-line .rl-text {
		height: 16px;
		line-height: 16px;
	}
}
.block-line.start .line-box, .block-line.end .line-box {
	margin-left: 50%;
}
.block-line.start .rl-text, .block-line.end .rl-text {
	right: inherit;
	left: 0;
	top: 50%;
	transform: translate(-50%, -50%);
}
.block-line.start .line-1, .block-line.end .line-1 {
	top: 16px;
	height: 144px;
	left: -8px;
}
.block-line.start .line-2,
.block-line.start .line-3, .block-line.end .line-2,
.block-line.end .line-3 {
	display: none;
}
@media all and (min-width: 768px) {
	.block-line.start .line-1, .block-line.end .line-1 {
		height: 144px;
	}
}
@media all and (min-width: 992px) {
	.block-line.start .line-1, .block-line.end .line-1 {
		width: 16px;
		height: 240px;
	}
	.block-line.start .rl-text, .block-line.end .rl-text {
		top: 128px;
	}
}
.block-line.A-B {
	width: 100%;
}
@media all and (min-width: 992px) {
	.block-line.A-B .line-box {
		margin-left: 30%;
		margin-right: 20%;
	}
	.block-line.A-B .line-1 {
		width: 16px;
		top: -96px;
		height: 176px;
	}
	.block-line.A-B .line-2 {
		height: 16px;
		top: 80px;
	}
	.block-line.A-B .line-3 {
		top: 96px;
		width: 16px;
		height: 160px;
	}
	.block-line.A-B .rl-text {
		top: 80px;
		left: 0;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
@media all and (min-width: 1440px) {
	.block-line.A-B .line-box {
		margin-left: 47%;
	}
	.block-line.A-B .line-1 {
		display: none;
	}
	.block-line.A-B .line-2 {
		top: 32px;
	}
	.block-line.A-B .line-3 {
		top: 48px;
		height: 240px;
	}
	.block-line.A-B .rl-text {
		top: 32px;
	}
}
@media all and (min-width: 992px) {
	.block-line.A-E .line-box {
		margin-left: 50%;
		margin-right: 30%;
	}
	.block-line.A-E .line-1 {
		width: 16px;
		top: -80px;
		height: 192px;
	}
	.block-line.A-E .line-2 {
		height: 16px;
		top: 112px;
	}
	.block-line.A-E .line-3 {
		top: 128px;
		width: 16px;
		height: 160px;
	}
	.block-line.A-E .rl-text {
		top: 112px;
		left: 0;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
@media all and (min-width: 992px) {
	.block-line.B-C .line-box {
		margin-left: 25%;
		margin-right: 55%;
	}
	.block-line.B-C .line-1 {
		display: none;
	}
	.block-line.B-C .line-2 {
		height: 16px;
		top: -80px;
		right: 0;
		left: inherit;
	}
	.block-line.B-C .line-3 {
		top: -64px;
		width: 16px;
		height: 320px;
		left: 0;
		right: inherit;
	}
	.block-line.B-C .rl-text {
		top: 96px;
		left: 8px;
		right: inherit;
		transform: translateX(-50%);
	}
}
@media all and (min-width: 992px) {
	.block-line.B-C .line-box {
		margin-left: 30%;
		margin-right: 20%;
	}
	.block-line.B-C .line-1 {
		display: block;
		width: 16px;
		top: -16px;
		height: 128px;
	}
	.block-line.B-C .line-2 {
		height: 16px;
		top: 112px;
		left: 0;
		right: inherit;
	}
	.block-line.B-C .line-3 {
		top: 128px;
		width: 16px;
		height: 128px;
		right: 0;
		left: inherit;
	}
	.block-line.B-C .rl-text {
		top: 112px;
		left: 0;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
@media all and (min-width: 992px) {
	.block-line.C-D .line-box {
		margin-left: 15%;
		margin-right: 65%;
	}
	.block-line.C-D .line-1 {
		width: 16px;
		top: -128px;
		height: 224px;
		right: 0;
		left: inherit;
	}
	.block-line.C-D .line-2 {
		height: 16px;
		top: 96px;
		right: 0;
		left: inherit;
	}
	.block-line.C-D .line-3 {
		top: 112px;
		width: 16px;
		height: 128px;
		left: 0;
		right: inherit;
	}
	.block-line.C-D .rl-text {
		top: 96px;
		left: 0;
		right: inherit;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
@media all and (min-width: 992px) {
	.block-line.D-E .line-box {
		margin-left: 32%;
		margin-right: 30%;
	}
	.block-line.D-E .line-1 {
		width: 16px;
		top: -80px;
		height: 192px;
	}
	.block-line.D-E .line-2 {
		height: 16px;
		top: 112px;
	}
	.block-line.D-E .line-3 {
		top: 128px;
		width: 16px;
		height: 160px;
	}
	.block-line.D-E .rl-text {
		top: 112px;
		left: 0;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
@media all and (min-width: 992px) {
	.block-line.E-C .line-box {
		margin-left: 25%;
		margin-right: 55%;
	}
	.block-line.E-C .line-1 {
		display: none;
	}
	.block-line.E-C .line-2 {
		height: 16px;
		top: -80px;
		right: 0;
		left: inherit;
	}
	.block-line.E-C .line-3 {
		top: -64px;
		width: 16px;
		height: 320px;
		left: 0;
		right: inherit;
	}
	.block-line.E-C .rl-text {
		top: 96px;
		left: 8px;
		right: inherit;
		transform: translateX(-50%);
	}
}
@media all and (min-width: 992px) {
	.block-line.E-C .line-box {
		margin-left: 30%;
		margin-right: 20%;
	}
	.block-line.E-C .line-1 {
		display: block;
		width: 16px;
		top: 16px;
		height: 112px;
	}
	.block-line.E-C .line-2 {
		height: 16px;
		top: 112px;
		left: 0;
		right: inherit;
	}
	.block-line.E-C .line-3 {
		top: 128px;
		width: 16px;
		height: 128px;
		right: 0;
		left: inherit;
	}
	.block-line.E-C .rl-text {
		top: 112px;
		left: 0;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
@media all and (min-width: 992px) {
	.block-line.E-F .line-box {
		margin-left: 68%;
		margin-right: 15%;
	}
	.block-line.E-F .line-1 {
		width: 16px;
		top: -240px;
		height: 160px;
	}
	.block-line.E-F .line-2 {
		height: 16px;
		top: -96px;
		left: 0;
	}
	.block-line.E-F .line-3 {
		top: -80px;
		width: 16px;
		height: 352px;
		right: 0;
	}
	.block-line.E-F .rl-text {
		top: 96px;
		left: inherit;
		right: 8px;
		transform: translateX(50%);
	}
}
@media all and (min-width: 992px) {
	.block-line.F-G .line-box {
		margin-left: 15%;
		margin-right: 60%;
	}
	.block-line.F-G .line-1 {
		width: 16px;
		top: 0;
		height: 96px;
		right: 0;
		left: inherit;
	}
	.block-line.F-G .line-2 {
		height: 16px;
		top: 96px;
		right: 0;
		left: inherit;
	}
	.block-line.F-G .line-3 {
		top: 112px;
		width: 16px;
		height: 128px;
		left: 0;
		right: inherit;
	}
	.block-line.F-G .rl-text {
		top: 96px;
		left: 0;
		right: inherit;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
@media all and (min-width: 992px) {
	.block-line.G-H .line-box {
		margin-left: 35%;
		margin-right: 55%;
	}
	.block-line.G-H .line-1 {
		display: none;
	}
	.block-line.G-H .line-2 {
		height: 16px;
		top: -80px;
		right: 0;
		left: inherit;
	}
	.block-line.G-H .line-3 {
		top: -64px;
		width: 16px;
		height: 320px;
		left: 0;
		right: inherit;
	}
	.block-line.G-H .rl-text {
		top: 96px;
		left: 8px;
		right: inherit;
		transform: translateX(-50%);
	}
}
@media all and (min-width: 1440px) {
	.block-line.G-H .line-box {
		margin-left: 10%;
		margin-right: 65%;
	}
	.block-line.G-H .line-3 {
		height: 448px;
		transition: height 0.35s 0.45s linear;
	}
}
@media all and (min-width: 992px) {
	.block-line.H-I .line-box {
		margin-left: 30%;
		margin-right: 30%;
	}
	.block-line.H-I .line-1 {
		width: 16px;
		top: -96px;
		height: 208px;
	}
	.block-line.H-I .line-2 {
		height: 16px;
		top: 112px;
	}
	.block-line.H-I .line-3 {
		top: 128px;
		width: 16px;
		height: 128px;
	}
	.block-line.H-I .rl-text {
		top: 112px;
		left: 0;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
.block-line.I-J .line-3 {
	height: 200px;
}
@media all and (min-width: 768px) {
	.block-line.I-J .line-3 {
		height: 208px;
	}
	.block-line.I-J .rl-text {
		top: 168px;
	}
}
@media all and (min-width: 992px) {
	.block-line.I-J .line-box {
		margin-left: 20%;
		margin-right: 20%;
	}
	.block-line.I-J .line-1 {
		width: 16px;
		top: -128px;
		height: 240px;
		right: 0;
		left: inherit;
	}
	.block-line.I-J .line-2 {
		height: 16px;
		top: 112px;
		right: 0;
		left: inherit;
	}
	.block-line.I-J .line-3 {
		top: 128px;
		width: 16px;
		height: 128px;
		left: 0;
		right: inherit;
	}
	.block-line.I-J .rl-text {
		top: 112px;
		left: 0;
		right: inherit;
		width: 100%;
		text-align: center;
		transform: translateX(0%);
	}
}
.block-line .line-box.hide .line-1 {
	height: 0px;
}
.block-line .line-box.hide .line-2 {
	width: 0px;
}
.block-line .line-box.hide .line-3 {
	height: 0px;
}
.block-line .line-box.hide .rl-text {
	opacity: 0;
}

.row-start,
.row-end {
	text-align: center;
}
.row-start > span,
.row-end > span {
	padding: 8px 32px;
	display: inline-block;
}
.row-start .time,
.row-end .time {
	font-size: 14px;
	color: #444;
}

.row-start {
	margin-top: 16px;
}
.row-start > span {
	border-bottom: 2px solid #444;
}

.row-end {
	marign-top: 16px;
}
.row-end > span {
	border-top: 2px solid #444;
}

.sec-location {
	margin-left: 16px;
	margin-right: 16px;
	display: flex;
	flex-direction: column;
	position: relative;
}
@media all and (min-width: 768px) {
	.sec-location {
		width: 720px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media all and (min-width: 992px) {
	.sec-location {
		width: 960px;
	}
}
@media all and (min-width: 1440px) {
	.sec-location {
		width: 1200px;
	}
}
.sec-location .rl-num {
	position: absolute;
	top: -48px;
	left: 0;
	z-index: 11;
	display: inline-block;
	font-size: 22px;
	width: 44px;
	height: 44px;
	line-height: 44px;
	letter-spacing: 0;
	text-align: center;
	border: 1px solid #393939;
	border-radius: 50%;
	background-color: #ffffff;
	color: #393939;
	transform: translateX(-50%);
}
.sec-location .rl-num:after {
	content: "";
	font-size: 0;
	display: inline-block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	z-index: 2;
	transform: translateX(-50%);
	line-height: 0;
	border-top: 8px solid #393939;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: none;
}
@media all and (min-width: 992px) {
	.sec-location .rl-num {
		display: inline-block;
		font-size: 28px;
		width: 90px;
		height: 90px;
		line-height: 90px;
		top: -95px;
	}
	.sec-location .rl-num:after {
		bottom: -7px;
		border-top: 12px solid #393939;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
	}
}
.sec-location .col-figures {
	order: 1;
	position: relative;
}
.sec-location .col-figures figure {
	font-size: 0;
}
.sec-location .col-figures figure img {
	width: 100%;
	height: auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	border: 2px solid #fff;
}
.sec-location .col-figures figure:nth-child(1) {
	z-index: 1;
}
.sec-location .col-figures figure:nth-child(2) {
	z-index: 2;
}
.sec-location .col-figures figure:nth-child(3) {
	z-index: 3;
}
@media all and (min-width: 768px) {
	.sec-location .col-figures figure img {
		border: 4px solid #fff;
	}
}
@media all and (min-width: 992px) {
	.sec-location .col-figures figure img {
		border: 8px solid #fff;
	}
}
.sec-location .col-text {
	order: 2;
	position: relative;
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.6;
}
.sec-location .col-text .time {
	font-size: 14px;
	color: #444;
	text-align: center;
	display: block;
}
.sec-location .col-text h2 {
	color: #393939;
	font-size: 22px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 16px;
}
.sec-location .col-text h2 > span {
	display: inline-block;
}
.sec-location .col-text h2 > span.title-pre {
	font-size: 12px;
	letter-spacing: 0;
	font-weight: bold;
}
.sec-location .col-text h2 > span.title-after {
	background-color: #C9A34C;
	margin-top: 0.5em;
	padding: 10px 20px;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0;
	font-weight: bold;
}
.sec-location .col-text h2.small {
	font-size: 20px;
}
@media all and (min-width: 360px) {
	.sec-location .col-text {
		margin-left: 16px;
		margin-right: 16px;
	}
	.sec-location .col-text h2.small {
		font-size: 22px;
	}
}
@media all and (min-width: 768px) {
	.sec-location .col-text {
		margin-top: 0;
		margin-left: 0;
		margin-right: 0;
	}
	.sec-location .col-text h2 {
		text-align: left;
		margin-bottom: 32px;
	}
	.sec-location .col-text h2 > span.title-pre {
		font-size: 14px;
	}
	.sec-location .col-text h2 > span.title-after {
		font-size: 16px;
	}
	.sec-location .col-text .time {
		text-align: left;
	}
}
@media all and (min-width: 992px) {
	.sec-location .col-text h2 {
		font-size: 36px;
	}
	.sec-location .col-text h2.small {
		font-size: 32px;
	}
}
.sec-location .com-modal .com-rl-content {
	max-height: 80%;
	width: 90%;
}
@media all and (min-width: 768px) {
	.sec-location .com-modal .com-rl-content {
		width: 640px;
	}
}
@media all and (min-width: 992px) {
	.sec-location .com-modal .com-rl-content {
		width: 720px;
	}
}
.sec-location .com-modal .rl-name {
	color: #393939;
	margin: 16px 0;
	font-size: 22px;
	text-align: center;
}
.sec-location .com-modal .rl-name > span {
	line-height: 1.4;
	display: inline-block;
	text-align: left;
}

.sec-location.type-A .rl-num {
	left: 6%;
	transform: translateX(-50%);
}
@media all and (min-width: 992px) {
	.sec-location.type-A .rl-num {
		left: 10%;
	}
}
.sec-location.type-A .col-figures {
	margin-bottom: 37%;
}
.sec-location.type-A .col-figures figure:nth-child(1) {
	width: 95%;
	position: relative;
	right: calc(-5% - 4px);
}
.sec-location.type-A .col-figures figure:nth-child(2) {
	position: absolute;
	transform: rotate(-11deg);
	width: 31%;
	top: 84%;
	left: 8%;
	z-index: 5;
}
.sec-location.type-A .col-figures figure:nth-child(3) {
	position: absolute;
	transform: rotate(5deg);
	width: 55%;
	top: 88%;
	right: 3%;
}
@media all and (min-width: 992px) {
	.sec-location.type-A .col-figures {
		margin-bottom: 32px;
	}
	.sec-location.type-A .col-figures figure:nth-child(1) {
		width: 80%;
		right: inherit;
		left: 10%;
	}
	.sec-location.type-A .col-figures figure:nth-child(2) {
		transform: rotate(-2deg);
		width: 28%;
		top: 81%;
		left: 0%;
		z-index: 3;
	}
	.sec-location.type-A .col-figures figure:nth-child(3) {
		transform: rotate(2deg);
		width: 36%;
		top: 148%;
		right: inherit;
		right: 50%;
	}
	.sec-location.type-A .col-text {
		padding-left: 55%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-A .col-text {
		padding-right: 120px;
	}
	.sec-location.type-A .col-figures figure:nth-child(2) {
		top: 61%;
	}
	.sec-location.type-A .col-figures figure:nth-child(3) {
		top: 120%;
	}
}

.sec-location.type-B .rl-num {
	left: 21%;
}
@media all and (min-width: 992px) {
	.sec-location.type-B .rl-num {
		left: 50%;
	}
}
.sec-location.type-B .rl-kanahei {
	width: 28%;
	bottom: -51%;
	right: 0%;
}
@media all and (min-width: 768px) {
	.sec-location.type-B .rl-kanahei {
		width: 24%;
	}
}
@media all and (min-width: 992px) {
	.sec-location.type-B .rl-kanahei {
		width: 36%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-B .rl-kanahei {
		right: 29%;
		width: 195px;
	}
}
.sec-location.type-B .col-figures {
	margin-bottom: 26%;
}
.sec-location.type-B .col-figures figure:nth-child(1) {
	position: relative;
	transform: rotate(1deg);
	width: 80%;
	left: 20%;
}
.sec-location.type-B .col-figures figure:nth-child(2) {
	position: absolute;
	transform: rotate(-3deg);
	width: 65%;
	top: 75%;
	left: 0%;
}
@media all and (min-width: 992px) {
	.sec-location.type-B {
		flex-direction: row;
	}
	.sec-location.type-B .col-figures {
		order: 2;
		width: 50%;
		margin-bottom: 23%;
	}
	.sec-location.type-B .col-figures figure:nth-child(1) {
		width: 100%;
		left: inherit;
	}
	.sec-location.type-B .col-figures figure:nth-child(2) {
		width: 78%;
		top: 91%;
		left: -18%;
	}
	.sec-location.type-B .col-text {
		order: 1;
		width: 50%;
		padding-right: 13%;
		padding-top: 5%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-B .col-text {
		padding-top: 0%;
	}
	.sec-location.type-B .col-figures {
		margin-bottom: 19%;
	}
	.sec-location.type-B .col-figures figure:nth-child(2) {
		left: 25%;
	}
}

.sec-location.type-C .rl-num {
	left: 7%;
}
@media all and (min-width: 992px) {
	.sec-location.type-C .rl-num {
		left: 10%;
	}
}
.sec-location.type-C .col-figures {
	margin-bottom: 43%;
}
.sec-location.type-C .col-figures figure:nth-child(1) {
	position: relative;
	width: 95%;
	right: calc(-5% - 4px);
}
.sec-location.type-C .col-figures figure:nth-child(2) {
	width: 37%;
	position: absolute;
	transform: rotate(-4deg);
	top: 75%;
	left: 23%;
	z-index: 5;
}
.sec-location.type-C .col-figures figure:nth-child(3) {
	position: absolute;
	transform: rotate(4deg);
	width: 45%;
	top: 114%;
	right: 2%;
}
@media all and (min-width: 992px) {
	.sec-location.type-C .col-figures {
		margin-bottom: 32px;
	}
	.sec-location.type-C .col-figures figure:nth-child(1) {
		width: 80%;
		right: inherit;
		left: 10%;
	}
	.sec-location.type-C .col-figures figure:nth-child(2) {
		width: 34%;
		top: 75%;
		left: 0%;
		z-index: 4;
	}
	.sec-location.type-C .col-figures figure:nth-child(3) {
		width: 32%;
		top: 132%;
		right: 52%;
		z-index: 5;
	}
	.sec-location.type-C .col-text {
		padding-left: 50%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-C .col-text {
		padding-left: 57%;
	}
	.sec-location.type-C .col-figures figure:nth-child(3) {
		right: 48%;
	}
}

.sec-location.type-D .rl-num {
	left: 21%;
}
@media all and (min-width: 992px) {
	.sec-location.type-D .rl-num {
		left: 50%;
	}
}
.sec-location.type-D .col-figures {
	margin-bottom: 33%;
}
.sec-location.type-D .col-figures figure:nth-child(1) {
	position: relative;
	transform: rotate(2deg);
	width: calc(80%);
	left: 20%;
}
.sec-location.type-D .col-figures figure:nth-child(2) {
	position: absolute;
	width: 60%;
	top: 65%;
	left: 5%;
	transform: rotate(-4deg);
}
.sec-location.type-D .col-figures figure:nth-child(3) {
	position: absolute;
	transform: rotate(9deg);
	width: 30%;
	top: 91%;
	right: 15%;
}
@media all and (min-width: 992px) {
	.sec-location.type-D {
		flex-direction: row;
	}
	.sec-location.type-D .col-figures {
		order: 2;
		margin-bottom: 17%;
		width: 50%;
	}
	.sec-location.type-D .col-figures figure:nth-child(1) {
		width: calc(100%);
		left: inherit;
		right: 0;
	}
	.sec-location.type-D .col-figures figure:nth-child(2) {
		width: 54%;
		top: 75%;
		left: -6%;
	}
	.sec-location.type-D .col-figures figure:nth-child(3) {
		width: 40%;
		top: 88%;
		right: 14%;
	}
	.sec-location.type-D .col-text {
		width: 50%;
		padding-right: 7%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-D .col-text {
		padding-right: 15%;
	}
	.sec-location.type-D .col-figures figure:nth-child(2) {
		width: 60%;
		left: -16%;
	}
	.sec-location.type-D .col-figures figure:nth-child(3) {
		width: 40%;
		top: 92%;
		right: 19%;
	}
}

.sec-location.type-E .rl-num {
	left: 4%;
}
@media all and (min-width: 360px) {
	.sec-location.type-E .rl-num {
		left: 2.5%;
	}
}
@media all and (min-width: 768px) {
	.sec-location.type-E .rl-num {
		left: 0%;
	}
}
@media all and (min-width: 992px) {
	.sec-location.type-E .rl-num {
		left: 4%;
	}
}
@media all and (min-width: 1200px) {
	.sec-location.type-E .rl-num {
		left: 0%;
	}
}
.sec-location.type-E .col-figures {
	margin-bottom: 36%;
}
.sec-location.type-E .col-figures figure:nth-child(1) {
	position: relative;
	width: calc(100% + 8px);
}
.sec-location.type-E .col-figures figure:nth-child(2) {
	position: absolute;
	transform: rotate(3deg);
	width: 46%;
	top: 83%;
	left: 5%;
}
.sec-location.type-E .col-figures figure:nth-child(3) {
	width: 40%;
	top: 115%;
	right: 11%;
	position: absolute;
	transform: rotate(-2deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-E .col-figures {
		margin-bottom: 32px;
	}
	.sec-location.type-E .col-figures figure:nth-child(1) {
		width: 80%;
	}
	.sec-location.type-E .col-figures figure:nth-child(2) {
		width: 41%;
		top: 95%;
		left: inherit;
		right: 0;
		transform: rotate(6deg);
	}
	.sec-location.type-E .col-figures figure:nth-child(3) {
		width: 33%;
		top: 166%;
		right: 25%;
		transform: rotate(-5deg);
	}
	.sec-location.type-E .col-text {
		padding-right: 64%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-E .col-text {
		padding-left: 30px;
		padding-right: 61%;
	}
	.sec-location.type-E .col-figures {
		margin-bottom: 32px;
	}
	.sec-location.type-E .col-figures figure:nth-child(1) {
		width: 80%;
	}
	.sec-location.type-E .col-figures figure:nth-child(2) {
		width: 34%;
		top: 83%;
		left: inherit;
		right: 0;
	}
	.sec-location.type-E .col-figures figure:nth-child(3) {
		width: 30%;
		top: 128%;
		right: 27%;
		transform: rotate(-4deg);
	}
}

.sec-location.type-F .rl-num {
	left: 4%;
}
@media all and (min-width: 360px) {
	.sec-location.type-F .rl-num {
		left: 2.5%;
	}
}
@media all and (min-width: 768px) {
	.sec-location.type-F .rl-num {
		left: 0%;
	}
}
@media all and (min-width: 992px) {
	.sec-location.type-F .rl-num {
		left: 17%;
	}
}
.sec-location.type-F .col-figures {
	margin-bottom: 28%;
}
.sec-location.type-F .col-figures figure:nth-child(1) {
	width: calc(100% + 8px);
	position: relative;
}
.sec-location.type-F .col-figures figure:nth-child(2) {
	width: 50%;
	position: absolute;
	top: 79%;
	left: 10%;
	transform: rotate(-2deg);
}
.sec-location.type-F .col-figures figure:nth-child(3) {
	position: absolute;
	width: 30%;
	top: 73%;
	right: 10%;
	transform: rotate(7deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-F .col-figures {
		margin-bottom: 32px;
	}
	.sec-location.type-F .col-figures figure:nth-child(1) {
		width: 83%;
		left: 17%;
	}
	.sec-location.type-F .col-figures figure:nth-child(2) {
		width: 38%;
		top: 69%;
		left: 0%;
	}
	.sec-location.type-F .col-figures figure:nth-child(3) {
		width: 24%;
		top: 111%;
		right: 47%;
	}
	.sec-location.type-F .col-text {
		padding-left: 60%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-F .col-figures figure:nth-child(1) {
		width: 73%;
	}
	.sec-location.type-F .col-figures figure:nth-child(2) {
		width: 40%;
		top: 79%;
		left: 0%;
	}
	.sec-location.type-F .col-figures figure:nth-child(3) {
		width: 18%;
		top: 109%;
		right: 47%;
	}
}

.sec-location.type-G .rl-num {
	left: 30%;
}
@media all and (min-width: 992px) {
	.sec-location.type-G .rl-num {
		left: 50%;
	}
}
.sec-location.type-G .col-figures {
	margin-bottom: 20%;
}
.sec-location.type-G .col-figures figure:nth-child(1) {
	width: 70%;
	position: relative;
	left: 30%;
	transform: rotate(-1deg);
}
.sec-location.type-G .col-figures figure:nth-child(2) {
	width: 64%;
	position: absolute;
	top: 75%;
	left: 0%;
	transform: rotate(2deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-G {
		flex-direction: row;
		margin-bottom: 0;
	}
	.sec-location.type-G .col-figures {
		order: 2;
		width: 50%;
	}
	.sec-location.type-G .col-figures figure:nth-child(1) {
		width: 100%;
		left: 0;
	}
	.sec-location.type-G .col-figures figure:nth-child(2) {
		width: 80%;
		top: 94%;
		left: -15%;
	}
	.sec-location.type-G .col-text {
		order: 1;
		width: 50%;
		padding-right: 10%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-G .col-text {
		padding-left: 10%;
	}
	.sec-location.type-G .col-figures {
		margin-bottom: 21%;
	}
	.sec-location.type-G .col-figures figure:nth-child(2) {
		left: 36%;
	}
}

.sec-location.type-H .rl-num {
	left: 4%;
}
@media all and (min-width: 360px) {
	.sec-location.type-H .rl-num {
		left: 2.5%;
	}
}
@media all and (min-width: 992px) {
	.sec-location.type-H .rl-num {
		left: 20%;
	}
}
.sec-location.type-H .col-figures {
	margin-bottom: 36%;
}
.sec-location.type-H .col-figures figure:nth-child(1) {
	width: calc(100% + 8px);
	position: relative;
}
.sec-location.type-H .col-figures figure:nth-child(2) {
	width: 36%;
	position: absolute;
	top: 71%;
	left: 10%;
	transform: rotate(-2deg);
}
.sec-location.type-H .col-figures figure:nth-child(3) {
	position: absolute;
	width: 40%;
	top: 115%;
	right: 17%;
	transform: rotate(2deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-H .col-figures {
		margin-bottom: 32px;
	}
	.sec-location.type-H .col-figures figure:nth-child(1) {
		width: 80%;
		left: 20%;
	}
	.sec-location.type-H .col-figures figure:nth-child(2) {
		width: 36%;
		top: 40%;
		left: 0%;
	}
	.sec-location.type-H .col-figures figure:nth-child(3) {
		width: 31%;
		top: 117%;
		right: 46%;
	}
	.sec-location.type-H .col-text {
		padding-left: 58%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-H .col-figures figure:nth-child(1) {
		width: 73%;
	}
	.sec-location.type-H .col-figures figure:nth-child(2) {
		width: 31%;
	}
	.sec-location.type-H .col-figures figure:nth-child(3) {
		width: 28%;
		right: 45%;
	}
	.sec-location.type-H .col-text {
		padding-left: 61%;
	}
}

.sec-location.type-I .rl-num {
	left: 8%;
}
@media all and (min-width: 768px) {
	.sec-location.type-I .rl-num {
		left: 6%;
	}
}
@media all and (min-width: 992px) {
	.sec-location.type-I .rl-num {
		left: 3%;
	}
}
@media all and (min-width: 1200px) {
	.sec-location.type-I .rl-num {
		left: 0%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-I .rl-num {
		left: 10%;
	}
}
.sec-location.type-I h2 small {
	display: block;
	font-size: 0.6em;
}
.sec-location.type-I .col-figures {
	margin-bottom: 21%;
}
.sec-location.type-I .col-figures figure:nth-child(1) {
	width: 95%;
	position: relative;
	right: calc(-5% - 8px);
}
.sec-location.type-I .col-figures figure:nth-child(2) {
	width: 36%;
	position: absolute;
	top: 31%;
	left: -4px;
	transform: rotate(8deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-I .col-figures {
		margin-bottom: 32px;
	}
	.sec-location.type-I .col-figures figure:nth-child(1) {
		width: 90%;
		right: 0;
	}
	.sec-location.type-I .col-figures figure:nth-child(2) {
		width: 36%;
		top: 31%;
		left: inherit;
		right: 0;
	}
	.sec-location.type-I .col-text {
		width: 60%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-I .col-figures figure:nth-child(1) {
		width: 70%;
		right: -10%;
	}
	.sec-location.type-I .col-figures figure:nth-child(2) {
		width: 31%;
		top: 56%;
	}
	.sec-location.type-I .col-text {
		width: 50%;
		padding-left: 10%;
	}
}

.sec-location.type-J .rl-num {
	left: 4%;
}
@media all and (min-width: 360px) {
	.sec-location.type-J .rl-num {
		left: 2%;
	}
}
@media all and (min-width: 768px) {
	.sec-location.type-J .rl-num {
		left: 1%;
	}
}
@media all and (min-width: 992px) {
	.sec-location.type-J .rl-num {
		left: 3%;
	}
}
@media all and (min-width: 1200px) {
	.sec-location.type-J .rl-num {
		left: 0%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-J .rl-num {
		left: 1%;
	}
}
.sec-location.type-J .col-figures {
	margin-bottom: 28%;
}
.sec-location.type-J .col-figures figure:nth-child(1) {
	width: 55%;
	transform: rotate(1deg);
}
.sec-location.type-J .col-figures figure:nth-child(2) {
	width: 55%;
	position: absolute;
	top: 31%;
	right: -2%;
	transform: rotate(-2deg);
}
.sec-location.type-J .col-figures figure:nth-child(3) {
	width: 55%;
	position: absolute;
	top: 68%;
	left: 5%;
	transform: rotate(3deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-J {
		flex-direction: row;
	}
	.sec-location.type-J .col-figures {
		width: 60%;
		margin-bottom: 16%;
	}
	.sec-location.type-J .col-figures figure:nth-child(1) {
		width: 63%;
	}
	.sec-location.type-J .col-figures figure:nth-child(3) {
		top: 86%;
		left: 25%;
	}
	.sec-location.type-J .col-text {
		width: 40%;
		padding-left: 64px;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-J .col-figures figure:nth-child(2) {
		top: 39%;
	}
	.sec-location.type-J .col-figures figure:nth-child(3) {
		width: 46%;
		top: 89%;
	}
}

.sec-location.type-K .rl-num {
	left: 12%;
}
@media all and (min-width: 992px) {
	.sec-location.type-K .rl-num {
		left: 50%;
		top: -4%;
	}
}
.sec-location.type-K .col-figures figure:nth-child(1) {
	width: 82%;
	position: relative;
	left: 9%;
	transform: rotate(-3deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-K {
		flex-direction: row;
		margin-bottom: 0;
	}
	.sec-location.type-K .col-figures {
		order: 2;
		width: 50%;
		margin-top: 8%;
	}
	.sec-location.type-K .col-figures figure:nth-child(1) {
		width: 100%;
		left: 0;
		transform: rotate(-3deg);
	}
	.sec-location.type-K .col-text {
		order: 1;
		width: 50%;
		padding-right: 4%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-K .col-text {
		padding-left: 10%;
	}
	.sec-location.type-K .col-figures {
		margin-bottom: 21%;
	}
	.sec-location.type-K .col-figures figure:nth-child(1) {
		width: 100%;
		left: 0;
	}
}

.sec-location.type-L .rl-num {
	left: 12%;
}
@media all and (min-width: 992px) {
	.sec-location.type-L .rl-num {
		left: 50%;
		top: -4%;
	}
}
.sec-location.type-L .col-figures figure:nth-child(1) {
	width: 82%;
	position: relative;
	left: 9%;
	transform: rotate(-3deg);
}
@media all and (min-width: 992px) {
	.sec-location.type-L {
		flex-direction: row;
		margin-bottom: 0;
	}
	.sec-location.type-L .col-figures {
		order: 1;
		width: 50%;
		margin-top: 8%;
	}
	.sec-location.type-L .col-figures figure:nth-child(1) {
		width: 100%;
		left: 0;
		transform: rotate(-3deg);
	}
	.sec-location.type-L .col-text {
		order: 2;
		width: 50%;
		padding-left: 4%;
	}
}
@media all and (min-width: 1440px) {
	.sec-location.type-L .col-figures {
		margin-bottom: 21%;
	}
	.sec-location.type-L .col-figures figure:nth-child(1) {
		width: 100%;
		left: 0;
	}
}

.sec-location.type-M .rl-num {
	left: 6%;
	transform: translateX(-50%);
}
@media all and (min-width: 992px) {
	.sec-location.type-M .rl-num {
		left: 10%;
	}
}
.sec-location.type-M .col-text {
	z-index: 2;
	background: #fff;
}
@media all and (min-width: 992px) {
	.sec-location.type-M .col-text {
		display: flex;
		align-items: center;
	}
	.sec-location.type-M .col-text .col-text-left {
		width: 31%;
		position: relative;
	}
	.sec-location.type-M .col-text .col-text-left .rl-num {
		top: -108px;
	}
	.sec-location.type-M .col-text .col-text-right {
		flex: 1;
		background: #fff;
		z-index: 2;
		padding: 32px;
	}
}
.ee-contents__link {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 50px;
	width: 400px;
	margin: 5% auto;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	background-color: #393939;
}
.ee-contents__link:not(:last-child) {
	margin-bottom: 20px;
}
.ee-contents__link::before {
	position: absolute;
	top: 0;
	left: -25px;
	z-index: -1;
	display: block;
	width: 50px;
	height: 100%;
	content: "";
	background-color: #000000;
	transition: left 0.2s, width 0.2s, transform 0.2s;
	transform: skewX(-45deg);
}
@media (hover: hover) and (pointer: fine) {
	.ee-contents__link:hover::before {
		left: 0;
		width: 100%;
		transform: skew(0);
	}
}
.ee-contents__link.--strong {
	background-color: #C9A34C;
	color: #fff;
}
.ee-contents__link.--strong::before {
	background-color: #BC8E45;
}
.ee-contents__link.--strong::after {
	position: absolute;
	top: 50%;
	right: 17px;
	display: block;
	width: 17px;
	height: 17px;
	content: "";
	background-image: url("/lp/assets/images/exclusive-expeditions/external.svg");
	background-size: contain;
	transform: translateY(-50%);
}
.ee-contents__link[href*="youtu.be"]::after {
	position: absolute;
	top: 50%;
	right: 17px;
	display: block;
	width: 28px;
	height: 28px;
	content: "";
	background-image: url("/lp/assets/images/exclusive-expeditions/video.png");
	background-size: contain;
	transform: translateY(-50%);
}