@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.section--gray {
  background: #f6f7f7;
  padding: 30px 0;
}
@media screen and (min-width: 520px) {
  .section--gray {
    padding: 50px 0;
  }
}
@media screen and (min-width: 760px) {
  .section--gray {
    padding: 40px 0 70px;
  }
}

.attraction {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}
.attraction__title {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .attraction__title {
    font-size: 2.2rem;
  }
}
.attraction__description {
  padding-top: 20px;
}
.attraction__link {
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 760px) {
  .attraction__link {
    margin-top: 45px;
  }
}
.attraction__link a {
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  max-width: 400px;
  width: 100%;
  border: 1px solid #000;
  padding: 20px;
  text-align: left;
  position: relative;
}
.attraction__link a:hover {
  color: #fff;
  background: #000;
  transition: 0.3s;
}
@media screen and (min-width: 520px) {
  .attraction__link a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 520px) and (min-width: 960px) {
  .attraction__link a {
    font-size: 2rem;
  }
}
.attraction__link a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/module/arrow_black_icon);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 10px;
  transition: 0.3s;
}
.attraction__link a:hover::after {
  right: 10px;
  background-image: url(../img/module/arrow_white_icon.svg);
}

.container {
  background: #fff;
  margin-top: 40px;
}
@media screen and (min-width: 760px) {
  .container {
    display: flex;
    justify-content: space-between;
  }
}
.container__title {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .container__title {
    font-size: 2.2rem;
  }
}
.container__left {
  padding: 30px 20px;
  width: 100%;
}
@media screen and (min-width: 520px) {
  .container__left {
    padding: 30px;
  }
}
@media screen and (min-width: 760px) {
  .container__left {
    width: 55%;
  }
}
.container__img {
  width: 100%;
}
@media screen and (min-width: 760px) {
  .container__img {
    width: 45%;
  }
}
.container__img img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 760px) {
  .container__img img {
    height: 100%;
  }
}

.link {
  display: block;
  margin-top: 30px;
}
.link:hover {
  opacity: 0.6;
}
.link__box {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #000;
  padding: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 520px) {
  .link__box {
    padding: 20px;
  }
}
.link__title {
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
  padding-right: 30px;
}
@media screen and (min-width: 960px) {
  .link__title {
    font-size: 1.8rem;
    padding-right: 50px;
  }
}
.link__title span {
  font-size: 1.2rem;
}
.link__title::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.link__title--jump::after {
  background-image: url(../img/attraction/link_icon1.svg);
  width: 16px;
  height: 16px;
}
.link__title--download::after {
  background-image: url(../img/attraction/link_icon2.svg);
  width: 16px;
  height: 14px;
}
.link__img {
  flex: 1;
  padding-right: 20px;
}