@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: 30px 0 70px;
  }
}

.location {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}
.location__body {
  background: #fff;
}
.location__wrap {
  padding: 20px 20px 0 20px;
}
@media screen and (min-width: 760px) {
  .location__wrap {
    display: flex;
    padding: 0;
  }
}
.location__img {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 760px) {
  .location__img {
    width: 50%;
    margin-bottom: 0;
  }
}
.location__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.location__table {
  width: 100%;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
@media screen and (min-width: 760px) {
  .location__table {
    border-left: none;
    border-right: none;
  }
}
@media screen and (min-width: 760px) {
  .location__table {
    flex: 1;
    width: auto;
  }
}
.location__table tr th, .location__table tr td {
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 520px) {
  .location__table tr th, .location__table tr td {
    display: table-cell;
    height: 100px;
  }
}
.location__table tr th {
  background: #f1f1f1;
  width: 100%;
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 520px) {
  .location__table tr th {
    width: 90px;
    padding: 0;
  }
}
@media screen and (min-width: 760px) {
  .location__table tr th {
    width: 100px;
  }
}
@media screen and (min-width: 960px) {
  .location__table tr th {
    width: 130px;
  }
}
.location__table tr td {
  padding: 10px;
  width: 100%;
  line-height: 2;
}
@media screen and (min-width: 520px) {
  .location__table tr td {
    width: auto;
    padding: 0 20px;
  }
}
.location__table tr td span {
  display: inline-block;
}
.location__table tr:first-of-type th {
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 520px) {
  .location__table tr:first-of-type td {
    border-top: 1px solid #ccc;
  }
}
.location__map {
  padding: 20px;
  width: 100%;
}
.location__map iframe {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 760px) {
  .location__map iframe {
    height: 400px;
  }
}
.location__links {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (min-width: 760px) {
  .location__links {
    margin-top: 40px;
  }
}
.location__link {
  width: 200px;
  display: inline-block;
}
.location__link--locations {
  position: relative;
  display: inline-block;
  background-color: #f00;
  color: #fff;
  font-weight: bold;
  border: 1px solid #f00;
  text-align: right;
  padding: 10px 20px 10px 0;
}
.location__link--locations:hover {
  color: #f00;
  background: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 760px) {
  .location__link--locations {
    padding: 10px 30px 10px 0;
  }
}
.location__link--locations::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/module/arrow_white_reverse_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 9px;
  transition: 0.3s;
}
.location__link--locations:hover::after {
  left: 10px;
  background-image: url(../img/module/arrow_red_reverse_icon.svg);
}
.location__link--map {
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
  padding: 10px 0 10px 20px;
  font-weight: 500;
  border: 1px solid #000;
}
.location__link--map:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  left: 0;
  top: 0;
}
.location__link--map::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/module/link_black_icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 27px;
  height: 25px;
  transition: 0.3s;
}