@charset "UTF-8";

.globalmapwrap .wrapper {
	padding-top: 0;
}

.globalmap {
	padding: 162px 20px 120px;
	background: url(/img/en/globalmap/bg.png) no-repeat right top;
    background-size: 1260px;
    overflow-x: hidden;
    position: relative;
}

.globalmap-inner {
	max-width: 1080px;
	margin: 0 auto;
}

.globalmap-title-wrapper {
    padding: 95px 0 24px;
    position: relative;
}

.globalmap-title {
    font-size: 36px;
    line-height: 1.5;
    font-weight: bold;
    max-width: 1120px;
    margin: 0 auto;
}

.globalmap-title b {
    position: relative;
    display: block;
    color: #0546a5;
    z-index: 2;
}

.globalmap-title::after {
	content: 'Contact us';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100px;
    font-weight: bold;
    color: #0546a5;
    opacity: 0.1;
    display: block;
    font-family: 'Roboto';
}

.globalmap-text {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 40px;
}

.globalmap-map {
	margin-bottom: 24px;
}

.globalmap-map svg {
	max-width: 100%;
	height: auto;
}

/* map interactions (map-item方式) */
.globalmap-map svg .map-item {
	cursor: pointer;
}

.globalmap-map svg .map-item * {
	cursor: pointer;
}

.globalmap-map svg .map-item path {
	fill: #CCD9EA;
	transition: fill 200ms ease-in-out;
}

/* 未選択hover / 選択中active は同色 */
.globalmap-map svg .map-item:hover path {
	fill: #004196;
}

.globalmap-map svg .map-item.is-active path {
	fill: #004196;
}

.globalmap-switch {
	margin-bottom: 40px;
}

.globalmap-switch-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;

}

.globalmap-switch-list li {
	width: calc((100% - 32px) / 3);
}

.globalmap-switch-item {
	display: block;
	color: #002D68;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 17px 30px 17px 16px;
	position: relative;
	border: 1px solid #004196;
	transition: all .25s ease;
	background: #fff;
	letter-spacing: 0;
}

.globalmap-switch-item:not(.is-active) {
	cursor: pointer;
}

.globalmap-switch-item:hover {
	background: #004196;
	color: #fff;
}

.globalmap-switch-item.is-active {
	background: #004196;
	color: #fff;
}

.globalmap-switch-item::after {
	content: '';	
	-webkit-mask-image: url('../img/common/icon_arrow_bl.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_arrow_bl.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	background: #002D68;
	width: 6px;
	height: 10px;
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translate(0, -50%);
	transition: all .25s ease;
}

.globalmap-switch-item:hover::after {
	background: #fff;
}

.globalmap-switch-item.is-active::after {
	background: #fff;
}

.globalmap-head {
	background-color: #004196;
	color: #fff;
	padding: 22px 24px;
	margin-bottom: 40px;
}

.globalmap-head-title {
	font-size: 24px;
	line-height: 1.5;
	font-weight: bold;
}


.globalmap-country {
	border: 1px solid #E4E7ED;
}

.globalmap-country + .globalmap-country {
	margin-top: 40px;
}

.globalmap-country-head {
	background-color: #E6ECF5;
	color: #002D68;
	padding: 20px 24px;
	border-bottom: 1px solid #E4E7ED;
}

.globalmap-country-head-title {
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
}

.globalmap-country-body {
	background: #fff;
	padding: 46px 48px 48px 48px;
}

.globalmap-country-body-item {
	border-bottom: 1px solid #E4E7ED;
	padding-bottom: 39px;
	margin-bottom: 40px;
}

.globalmap-country-body-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.globalmap-country-body-item-title {
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 28px;
	color: #333333;
}

.globalmap-country-body-item-list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 6px 16px;
}

.globalmap-country-body-item-list-dt, .globalmap-country-body-item-list-dd {
	font-size: 14px;
	line-height: 1.5;
}

.globalmap-country-body-item-list-dt {
	width: 80px;
	color: #777;
}

.globalmap-country-body-item-list-dd {
	width: calc(100% - 96px);
	color: #555;
}

.globalmap-country-body-item-link-wrapper {
	margin-top: 6px;
}

.globalmap-country-body-item-link {
	display: inline-block;
	text-decoration: underline;
	color: #004196;
	font-size: 14px;
	line-height: 1.5;
}

.globalmap-country-body-item-link:hover {
	text-decoration: none;
}

.globalmap-country-body-item-link i {
    display: inline-block;
	background: url('../img/common/icon_blank_bl.svg') no-repeat center center; 
	background-size: 100%;
	width: 10px;
	height: 10px;
	margin-left: 4px;
	vertical-align: middle;
}

@media screen and (max-width: 768px){


	/* SP: SVGタップ時にホバー色へ見え方が変わるのを抑制 */
	.globalmap-map svg .map-item:hover path{
		fill: #CCD9EA;
	}

	.globalmap-map svg .map-item.is-active path{
		fill: #004196;
	}

	/* SP: マップ上はタップ/長押し操作を完全無効化（リンクっぽい検出を防ぐ） */
	.globalmap-map svg .map-item{
		cursor: default;
		pointer-events: none;
	}

	.globalmap-map svg .map-item *{
		cursor: default;
	}

	.globalmapwrap .wrapper {
		padding-top: 60px;
	}

	.globalmap {
		padding: 26px 0 40px;
		background: url(/img/index/bg_kv_sp.png) no-repeat right top;
		background-size: 100%;
	}

	.globalmap-inner {
		max-width: 1080px;
		margin: 0 auto;
	}

	.globalmap-title-wrapper {
		padding: 55px 36px 16px;
	}

	.globalmap-title {
		font-size: 28px;
	}

	.globalmap-title b {
		position: relative;
		display: block;
		color: #0546a5;
		z-index: 2;
		line-height: 1.2;
	}

	.globalmap-title::after {
		font-size: 60px;
		left: 36px;
	}

	.globalmap-text {
		font-size: 16px;
		margin-bottom: 24px;
		padding: 0 36px;
	}

	.globalmap-map {
		margin-bottom: 0;
	}

	.globalmap-select {
		padding: 0 24px;
		margin-bottom: 42px;
	}

	.globalmap-select .globalmap-form-select {
		position: relative;
	}

	.globalmap-select .globalmap-form-select select {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		height: 50px;
		padding: 0 16px;
		line-height: 1;
		border: 1px solid #CED0D6;
		border-radius: 0;
		color: #333333;
		font-size: 16px;
		cursor: pointer;
		width: 100%;
		background: #fff;
		font-weight: 400;
	}

	.globalmap-select .globalmap-form-select select:focus {
		outline: none;
	}

	.globalmap-select .globalmap-form-select::before {
		right: 0;
		display: inline-block;
		width: 50px;
		height: 50px;
		border-radius: 0;
		background-color: #004196;
		position: absolute;
		content: '';
		pointer-events: none;
	}

	.globalmap-select .globalmap-form-select::after {
		position: absolute;
		top: 48%;
		right: 18px;
		background: url('../img/en/globalmap/icon_select.svg') no-repeat center center;
		width: 14px;
		height: 14px;
		content: '';
		transform: translate(0, -50%);
	}


	.globalmap-head {
		padding: 15px 24px;
		margin-bottom: 24px;
	}

	.globalmap-head-title {
		font-size: 20px;
		line-height: 1.5;
		font-weight: bold;
	}

	.globalmap-body {
		padding:0 24px;
	}

	.globalmap-country {
		border: 1px solid #E4E7ED;
	}

	.globalmap-country + .globalmap-country {
		margin-top: 24px;
	}

	.globalmap-country-head {
		background-color: #E6ECF5;
		color: #002D68;
		padding: 14px 24px;
		border-bottom: 1px solid #E4E7ED;
	}

	.globalmap-country-head-title {
		font-size: 18px;
		line-height: 1.5;
		font-weight: bold;
	}

	.globalmap-country-body {
		background: #fff;
		padding: 23px 23px 15px;
	}

	.globalmap-country-body-item {
		padding-bottom: 15px;
		margin-bottom: 24px;
	}

	.globalmap-country-body-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.globalmap-country-body-item-title {
		font-size: 16px;
		line-height: 1.5;
		font-weight: bold;
		margin-bottom: 16px;
	}

	.globalmap-country-body-item-list {
		display: block;
	}

	.globalmap-country-body-item-list-dt, .globalmap-country-body-item-list-dd {
		font-size: 14px;
		line-height: 1.5;
	}

	.globalmap-country-body-item-list-dt {
		width: 100%;
		margin-bottom: 2px;
	}

	.globalmap-country-body-item-list-dd {
		width: 100%;
		margin-bottom: 8px;
	}

	.globalmap-country-body-item-link-wrapper {
		margin-top: 8px;
	}

}