/*! 海外トップpc用 */

/* --------------------start_おすすめエリア-------------------- */

.RecommendArea__items {
  display: flex;
  justify-content: flex-start;
}

.RecommendArea__item {
  position: relative;
  overflow: hidden;
  width: 240px;
  height: 240px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}

.RecommendArea__item:not(:first-child) {
  margin-left: 20px;
}

.RecommendArea__link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.RecommendArea__link::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: var(--corporate-color);
  border-radius: 50%;
  position: absolute;
  bottom: 13px;
  right: 15px;
}

.RecommendArea__link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  bottom: 20px;
  right: 23px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}

.RecommendArea__img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  height: 100%;
  transform: translate(-50%, -50%);
}

.RecommendArea__img img {
  width: auto;
  height: 240px;
  transition: opacity 0.3s;
}

.RecommendArea__item:hover img {
  opacity: calc(var(--hoverOpacity) - 0.1);
}

.RecommendArea__name {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  padding: 12px 20px;
  background-color: white;
  font-feature-settings: "palt";
}
/* --------------------end_おすすめエリア-------------------- */

/* --------------------start_地図から探す-------------------- */
#Map {
  position: relative;
  height: 560px;
  margin-bottom: 60px;
  background-color: #f5f5f5;
  background-image: url(../images/map_i--pc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.Map__inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1024px;
  height: 100%;
  padding: 60px 0;
  transform: translateX(-50%);
}

.Map__item {
  position: absolute;
}

.Map__item::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  background: var(--corporate-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

/*start_ボタンposition*/
.Map__item--europe {
  top: 159px;
  left: 175px;
}
.Map__item--northAmerica {
  top: 190px;
  right: 148px;
}
.Map__item--middleEast {
  top: 254px;
  left: 211px;
}
.Map__item--asia {
  top: 254px;
  left: 371px;
}
.Map__item--hawaii {
  top: 254px;
  right: 338px;
}
.Map__item--micronesia {
  top: 317px;
  right: 382px;
}
.Map__item--southPacific {
  top: 381px;
  right: 329px;
}
.Map__item--africa {
  top: 381px;
  left: 175px;
}
.Map__item--oceania {
  bottom: 58px;
  left: 347px;
}
.Map__item--latinAmerica {
  top: 381px;
  right: 168px;
}
/*end_ボタンposition*/

.Map__link {
  display: inline-block;
  position: relative;
  padding: 10px 50px 10px 30px;
  background: white;
  border-radius: 3px;
  border: 1px solid white;
  box-shadow: 0px 10px 7px -5px rgb(0 0 0 / 10%);
  transition: box-shadow 0.3s, background-color 0.3s, border-color 0.3s;
}

.Map__link:hover {
  border-color: var(--corporate-color);
  background-color: var(--active-color);
  box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0);
}

.Map__link--link::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 2;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
}

.Map__link--modal::before,
.Map__link--modal::after {
  content: "";
  display: block;
  width: 6px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 2;
  background-color: white;
  transform: translateY(-50%);
}

.Map__link--modal::after {
  transform: translateY(-50%) rotate(90deg);
}

/* start_モーダル */
.MapModal {
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 100;
  width: 700px;
  font-size: 1.5rem;
  background: white;
  border-radius: 6px;
  transform: translate(-50%, calc(-50% + 20px));
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.MapModal.active {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.MapModal__inner {
  position: relative;
}

.MapModal__header {
  display: flex;
  font-weight: 600;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 20px;
  color: #767676;
}

.MapModal__close-icn {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-left: auto;
  cursor: pointer;
  background: #888;
  border-radius: 0 5px 0 0;
  transition: opacity 0.3s;
}

.MapModal__close-icn:hover {
  opacity: 0.7;
}

.MapModal__close-icn::before,
.MapModal__close-icn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
}

.MapModal__close-icn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.MapModal__close-icn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.MapModal__items {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-radius: 6px 6px 0 0;
}

.MapModal__item {
  width: calc(100% / 3);
  border-bottom: 1px solid #e5e5e5;
}

.MapModal__item:first-child {
  width: 100%;
}

.MapModal__item:not(:nth-child(3n + 1)) {
  border-right: 1px solid #e5e5e5;
}

.MapModal__link {
  position: relative;
  display: block;
  height: 100%;
  padding: 12px 20px 12px 40px;
  font-weight: 600;
  line-height: 1.3;
  text-indent: -20px;
}

.MapModal__link--parent {
  border-radius: 6px 6px 0 0;
}

.MapModal__link:not(.MapModal__link--parent)::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px dotted #888;
  border-bottom: 1px dotted #888;
  vertical-align: 4px;
  margin-right: 10px;
}

.MapModal__link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 16px;
  border-top: 2px solid var(--corporate-color);
  border-right: 2px solid var(--corporate-color);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.MapModal__link:hover {
  color: var(--corporate-color);
  background-color: var(--active-color);
}

.MapModal__close-wrap {
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  text-align: center;
  transform: translateY(-1px);
}

.MapModal__close-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #f5f5f5;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.MapModal__close-btn-icn {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  margin-right: 5px;
}

.MapModal__close-btn-icn::before,
.MapModal__close-btn-icn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #333;
}

.MapModal__close-btn-icn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.MapModal__close-btn-icn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.MapModal__close-btn:hover {
  opacity: 0.7;
}

.MapModal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00111a;
  z-index: 20;
  opacity: 0.7;
  cursor: pointer;
}

body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  overflow-y: scroll;
}
/* end_モーダル */
/* --------------------end_地図から探す-------------------- */

/*keyvisual横幅固定*/
#Keyvisual {
  background-color: #f5f5f5;
  background-size: 1400px auto;
}

/* .Brand__items {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
} */

.Brand__item_column01 {
    width: 100%;
    padding: 15px;
    box-shadow: 0px 0px 0px 1px #e5e5e5 inset;
    border-radius: 6px;
    transition: box-shadow 0.3s;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}


.Brand__item_column01 .Brand__logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
}

.Brand__item_column01 .Brand__name {
    text-align: left;
    font-size: 2.0rem;
}

.Brand__item_column01 .Brand__txt {
    font-size: 16px;
    margin-left: 20px;
}