@charset "UTF-8";
/* CSS Document */
/*-----------------------------

20240902add

-----------------------------*/
.c-card04{
	background-color: inherit;
}
.c-card04__item{
	background-color: #fff;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.c-card04__body{
	height: 223px;
	gap: 0;
	flex-grow: 0;
	padding: 32px 24px;
}
.u-text--alineCenter{
	line-height: 1.4;
}
.c-card04__text-sub{
	margin-bottom: 12px;
}
.c-card04__btn{
	margin-top: auto;
}
.c-card04__text{
	flex-grow: 0;
}
.c-card04__head-span{
	color: #003E70;
	background-color: #fff;
	font-size: 1.3rem;
	padding: 4px 8px;
	display: block;
    max-width: 74px;
    margin: 0 auto 6px;
}
.p-topPrice__optionLogo {
	justify-content: inherit;
}
@media screen and (max-width:768px){
	.c-card04__head-span {
		padding: 2px;
		max-width: 70px;
		margin: 6px auto 6px;
	}
}
.c-card04__head{
	height: 153px;
}
@media screen and (max-width:768px){
	.c-card04__head{
		height: auto;
	}
}
@media screen and (max-width:768px){
	.c-card04__textNum {
		font-size: 2.1rem;
	}
}

/* -------------------------------
  20250618add ポップアップ追加
---------------------------------*/
.open-popup-btn {
  display: block;
  width: 240px;
  margin: 50px auto 50px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #003e70;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
    box-shadow: -8px 16px 16px rgba(130, 139, 136, 0.24);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 40px 20px 30px;
  border-radius: 10px;
  text-align: center;
  width: 700px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.popup-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 2px;
}

.map-image {
  width: 100%;
  display: block;
  opacity: 0.2; /* 薄く背景に */
}

.region-btn {
  position: absolute;
}

.region-btn a {
  background-color: #003e70;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  width: 267px;
  margin: auto;
}

.region-btn span {
  margin-left: 8px;
  font-weight: bold;
}

/* 地域ボタンの配置 */
.asia {
  top: 23%;
  left: 28%;
}

.emea {
  top: 48%;
  left: 5%;
}

.americas {
  top: 48%;
  right: 5%;
}

.close-bottom-btn {
  padding: 10px 30px;
  border: 1px solid #003e70;
  background: white;
  color: #003e70;
  cursor: pointer;
}

.hidden {
  display: none;
}

@media screen and (max-width: 768px) {
	  .map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
  }

  .map-image {
    display: none; /* スマホでは地図を非表示 */
  }

  .region-btn {
    position: static;
    width: 90%;
    margin: 10px 0;
    justify-content: space-between;
  }
	.popup-content {
		width: 95%;
	}
	.close-bottom-btn {
		margin: 20px auto 0;
	}
}