@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.top-page > .container-contents > .list-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  padding: 1.5%;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area {
    display: block;
    padding: 0 1.5%;
  }
}
.top-page > .container-contents > .list-area > .area {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 49%;
  aspect-ratio: 2.2/1;
  height: auto;
  padding: 8px;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area {
    width: 100%;
    padding: 4px;
    aspect-ratio: auto;
    height: 19.7vh;
  }
}
.top-page > .container-contents > .list-area > .area:first-child {
  background-image: url(../../../assets/imgs/background-osaka.webp);
  margin-right: 1.5%;
  margin-bottom: 1.5%;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area:first-child {
    margin-right: 0;
    margin-bottom: 1%;
  }
}
.top-page > .container-contents > .list-area > .area:nth-child(2) {
  background-image: url(../../../assets/imgs/background-fukuoka.webp);
  margin-bottom: 1.5%;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area:nth-child(2) {
    margin-bottom: 1%;
  }
}
.top-page > .container-contents > .list-area > .area:nth-child(3) {
  background-image: url(../../../assets/imgs/background-kyoto.webp);
  margin-right: 1.5%;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area:nth-child(3) {
    margin-right: 0;
    margin-bottom: 1%;
  }
}
.top-page > .container-contents > .list-area > .area:last-child {
  background-image: url(../../../assets/imgs/background-tokyo.webp);
}
.top-page > .container-contents > .list-area > .area > .link {
  display: inline-block;
  border: 1px solid #ffffff;
  width: 100%;
  height: 100%;
  padding: 32px;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area > .link {
    text-align: center;
    padding: 22px 20px 24px;
  }
}
.top-page > .container-contents > .list-area > .area > .link > .area-name {
  color: #ffffff;
  font-size: 2.1vw;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area > .link > .area-name {
    font-size: 20px;
  }
}
.top-page > .container-contents > .list-area > .area > .link > .area-name > .highlight {
  font-size: 2.6vw;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area > .link > .area-name > .highlight {
    font-size: 24px;
  }
}
.top-page > .container-contents > .list-area > .area > .link > .area-name > .english {
  display: inline-block;
  color: #ffffff;
  font-size: 1.8vw;
  margin-left: 4px;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area > .link > .area-name > .english {
    font-size: 20px;
  }
}
.top-page > .container-contents > .list-area > .area > .link > .button {
  position: relative;
  border: 1px solid #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  font-size: 1.2vw;
  font-weight: 500;
  text-align: center;
  padding: 12px 44px 12px 36px;
}
@media screen and (max-width: 820px) {
  .top-page > .container-contents > .list-area > .area > .link > .button {
    font-size: 16px;
    padding: 6px 44px 6px 36px;
    margin: 0 auto;
  }
}
.top-page > .container-contents > .list-area > .area > .link > .button:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ffffff;
  width: 7px;
  height: 9px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}