
body.no-scroll {
  overflow: hidden;
}
.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4800;
}
/* -----------------------------
    base
-------------------------------- */
.p-base-bg {
  position: relative;
}
.p-base-bg::before {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -10;
  background-color: #f5f5f5;
}
.p-base-mapwrap {
  position: relative;
}
.p-base-base {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #000;
  overflow: hidden;
  text-decoration: none;
}
.p-base-base::before {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.p-base-base.base01::before {
  background-image: url(../img/im-base01.png);
}
.p-base-base.base02::before {
  background-image: url(../img/im-base02.png);
}
.p-base-base.base03::before {
  background-image: url(../img/im-base03.png);
}
.p-base-base.base04::before {
  background-image: url(../img/im-base04.png);
}
.p-base-base.base05::before {
  background-image: url(../img/im-base05.png);
}
.p-base-base-place {
  position: relative;
  z-index: 10;
}
.p-base-base-place::after {
  position: absolute;
  content: "";
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  right: 0;
  top: 45%;
  transform: rotate(-45deg) translateY(-50%);
}
.p-base-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-base-map img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-base-modal-bg {
  background: transparent;
  height: 100vh;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -10;
}
.p-base-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 2px solid #ec870e;
  max-height: 80vh;
  overflow-y: auto;
  box-sizing: border-box;
}
.p-base-modal-batsu {
  position: absolute;
  z-index: 10;
  display: inline-block;
  cursor: pointer;
}
.p-base-modal-batsu::before, .p-base-modal-batsu::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #009933;
  top: 50%;
  left: 50%;
  width: 2px;
}
.p-base-modal-batsu::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-base-modal-batsu::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-base-modal-lead .notes {
  display: block;
  font-size: 0.75em;
}
.p-base-modal-table {
  width: 100%;
  /* table-layout: fixed; */
  border-collapse: collapse;
}
.p-base-modal-table thead th {
  background-color: #fbe7cf;
  border: 2px solid #fff;
  text-align: center;
}
.p-base-modal-table tbody th {
  background-color: #fbe7cf;
  border: 2px solid #fff;
  text-align: center;
}
.p-base-modal-table tbody td {
  border: 2px solid #fbe7cf;
}
.p-base-modal-table tbody td:last-of-type {
  border-right-color: transparent;
}
.p-base-modal-table tbody td .notes {
  display: block;
  line-height: 1.2;
}
.p-base-modal-table tbody tr:last-of-type td {
  border-bottom-color: transparent;
}
.p-base-modal-table.-col2 tbody tr:first-of-type td {
  border-top-color: transparent;
}
.p-base-modal-close {
  text-decoration: none;
  position: relative;
  color: #fff;
  background-color: #009933;
  border: 1px solid #009933;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
}
.p-base-modal-close span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: color 0.6s;
  position: relative;
  z-index: 20;
}
.p-base-modal-close span::before, .p-base-modal-close span::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  width: 2px;
}
.p-base-modal-close span::before {
  transform: rotate(-45deg);
}
.p-base-modal-close span::after {
  transform: rotate(45deg);
}
.p-base-modal-close::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

@media screen and (min-width: 768px) {
  .p-base-bg {
    padding: 130px 0 116px;
  }
  .p-base-bg::before {
    width: calc(100% - 50px);
    border-radius: 0 30px 30px 0;
  }
  .p-base-lead {
    margin-top: 20px;
  }
  .p-base-mapwrap {
    margin-left: 108px;
    margin-top: -196px;
  }
  .p-base-base {
    width: 250px;
    height: 140px;
    border-radius: 10px;
  }
  .p-base-base:hover::before {
    transform: scale(1.06);
  }
  .p-base-base.base01 {
    top: 314px;
    left: 12px;
  }
  .p-base-base.base02 {
    bottom: 280px;
    left: -108px;
  }
  .p-base-base.base03 {
    top: 388px;
    right: 0;
  }
  .p-base-base.base04 {
    bottom: 165px;
    right: 69px;
  }
  .p-base-base.base05 {
    bottom: -15px;
    right: 68px;
  }
  .p-base-base-place {
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    font-size: clamp(10px, 1.8vw, 18px);
    padding-right: 14px;
  }
  .p-base-base-place::after {
    width: 10px;
    height: 10px;
  }
  .p-base-map {
    width: 833px;
  }
  .p-base-modal-content {
    width: 900px;
    border-radius: 10px;
    padding: 30px 40px;
  }
  .p-base-modal-batsu {
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
  }
  .p-base-modal-batsu::before, .p-base-modal-batsu::after {
    height: 28px;
  }
  .p-base-modal-ttl {
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    font-size: clamp(10px, 2.4vw, 24px);
    margin-bottom: 12px;
  }
  .p-base-modal-lead {
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-size: clamp(10px, 1.6vw, 16px);
    margin-bottom: 24px;
  }
  .p-base-modal-tablewrap {
    margin-bottom: 30px;
  }
  .p-base-modal-table thead th {
    height: 50px;
  }
  .p-base-modal-table thead th:first-of-type {
    width: 120px;
  }
  .p-base-modal-table tbody th {
    width: 120px;
    min-height: 70px;
  }
  .p-base-modal-table th {
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: clamp(10px, 1.8vw, 18px);
    padding: 10px 0;
  }
  .p-base-modal-table td {
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-size: clamp(10px, 1.6vw, 16px);
    padding: 14px 20px;
  }
  .p-base-modal-table td .notes {
    line-height: 1.8285714286;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-size: clamp(10px, 1.4vw, 14px);
  }
  .p-base-modal-table.-col2 tbody td {
    width: 700px;
  }
  .p-base-modal-table.-col3 tbody td {
    width: 348px;
  }
  .p-base-modal-close {
    width: 180px;
    height: 40px;
    border-radius: 40px;
  }
  .p-base-modal-close:hover span {
    color: #009933;
  }
  .p-base-modal-close:hover span::before, .p-base-modal-close:hover span::after {
    background-color: #009933;
  }
  .p-base-modal-close:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .p-base-modal-close span {
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    font-size: clamp(10px, 1.4vw, 14px);
  }
  .p-base-modal-close span::before, .p-base-modal-close span::after {
    top: 11px;
    right: 20px;
    height: 17px;
  }
}
@media (min-width: 768px) and (max-width: 1000px) {
  .p-base-modal-content {
    width: 90vw;
    border-radius: 1vw;
    padding: 3vw 4vw;
  }
  .p-base-modal-batsu {
    width: 2vw;
    height: 2vw;
    top: 2vw;
    right: 2vw;
  }
  .p-base-modal-batsu::before, .p-base-modal-batsu::after {
    height: 2.8vw;
  }
  .p-base-modal-ttl {
    margin-bottom: 1.2vw;
  }
  .p-base-modal-lead {
    margin-bottom: 2.4vw;
  }
  .p-base-modal-tablewrap {
    margin-bottom: 3vw;
  }
  .p-base-modal-table thead th {
    height: 5vw;
  }
  .p-base-modal-table thead th:first-of-type {
    width: 12vw;
  }
  .p-base-modal-table tbody th {
    width: 12vw;
    min-height: 7vw;
  }
  .p-base-modal-table th {
    padding: 1vw 0;
  }
  .p-base-modal-table td {
    padding: 1.4vw 2vw;
  }
  .p-base-modal-table.-col2 tbody td {
    width: 70vw;
  }
  .p-base-modal-table.-col3 tbody td {
    width: 34.8vw;
  }
  .p-base-modal-close {
    width: 18vw;
    height: 4vw;
    border-radius: 4vw;
  }
  .p-base-modal-close span::before, .p-base-modal-close span::after {
    top: 1.1vw;
    right: 2vw;
    height: 1.7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-base-bg {
    padding: 13.3333333333vw 0 17.3333333333vw;
  }
  .p-base-bg::before {
    width: calc(100% - 4vw);
    border-radius: 0 1.3333333333vw 1.3333333333vw 0;
  }
  .p-base-lead {
    margin-top: 4vw;
  }
  .p-base-mapwrap {
    max-width: 92vw;
    margin: 0 auto 20vw;
  }
  .p-base-base {
    width: 33.3333333333vw;
    height: 18.6666666667vw;
    border-radius: 1.3333333333vw;
  }
  .p-base-base.base01 {
    top: 8vw;
    left: 22.1333333333vw;
  }
  .p-base-base.base02 {
    top: 32vw;
    left: 0;
  }
  .p-base-base.base03 {
    bottom: 14.9333333333vw;
    right: 4vw;
  }
  .p-base-base.base04 {
    bottom: -9.3333333333vw;
    right: 4vw;
  }
  .p-base-base.base05 {
    bottom: -9.6vw;
    left: 5.3333333333vw;
  }
  .p-base-base-place {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    padding-right: 2.2666666667vw;
  }
  .p-base-base-place::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
  .p-base-map {
    width: 88vw;
  }
  .p-base-modal-content {
    width: 92vw;
    border-radius: 1.3333333333vw;
    padding: 4vw 2.6666666667vw;
  }
  .p-base-modal-batsu {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    top: 4vw;
    right: 4vw;
  }
  .p-base-modal-batsu::before, .p-base-modal-batsu::after {
    height: 4.8vw;
  }
  .p-base-modal-ttl {
    font-size: calc(32 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    margin-bottom: 2.6666666667vw;
  }
  .p-base-modal-lead {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 4vw;
  }
  .p-base-modal-tablewrap {
    overflow-x: scroll;
    margin-bottom: 7.2vw;
  }
  .p-base-modal-table {
    width: 142.1333333333vw;
  }
  .p-base-modal-table thead th {
    white-space: nowrap;
    height: 8.6666666667vw;
  }
  .p-base-modal-table thead th:first-of-type {
    width: 20.8vw;
    position: sticky;
    top: 0;
    left: 0;
    border-left: none;
  }
  .p-base-modal-table tbody th {
    min-height: 8.6666666667vw;
    width: 20.8vw;
    position: sticky;
    top: 0;
    left: 0;
    border-left: none;
  }
  .p-base-modal-table th {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.4230769231;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 1.6vw 0;
  }
  .p-base-modal-table td {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 400;
    padding: 2.1333333333vw 3.4666666667vw;
  }
  .p-base-modal-table td .notes {
    font-size: calc(22 / 750 * 100vw);
    line-height: 1.5454545455;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
  .p-base-modal-table.col2 tbody td {
    width: 121.3333333333vw;
  }
  .p-base-modal-table.-col3 tbody td {
    width: 60.4vw;
  }
  .p-base-modal-close {
    width: 38.9333333333vw;
    height: 8.6666666667vw;
    border-radius: 5.3333333333vw;
  }
  .p-base-modal-close span {
    font-size: calc(22 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
  }
  .p-base-modal-close span::before, .p-base-modal-close span::after {
    top: 2.4vw;
    right: 4vw;
    height: 3.4666666667vw;
  }
}



