@charset "utf-8";

main {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/* -----------------------------------------------
common
------------------------------------------------ */
.c-heading {
  margin: 0 auto 56px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.12em;
}

.c-heading::before {
  content: "";
  display: block;
  width: 120px;
  height: 52px;
  margin: 0 auto 8px;
  background: url(../img/icon-snow.svg) no-repeat center / cover;
}

.c-heading .-en {
  display: block;
  margin-bottom: 16px;
  color: #007abd;
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  .c-heading {
    margin: 0 auto 40px;
    font-size: 24px;
  }

  .c-heading::before {
    width: 102px;
    height: 44px;
    margin: 0 auto 8px;
  }

  .c-heading .-en {
    margin-bottom: 8px;
    font-size: 14px;
  }
}

@media screen and (min-width: 767px) {
  main a:hover {
    transition: opacity 0.3s;
  }
  main a:hover {
    opacity: 0.7;
  }
}

/* -----------------------------------------------
hero
------------------------------------------------ */
.p-hero {
  margin-bottom: 80px;
}

.p-hero img {
  width: 100%;
  max-width: 100%;
}

.p-hero__read {
  margin-top: 48px;
  color: #00141f;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}

@media screen and (max-width: 640px) {
  .p-hero {
    margin-bottom: 64px;
  }

  .p-hero__read {
    margin-top: 24px;
    font-size: 16px;
  }
}

/* -----------------------------------------------
map
------------------------------------------------ */
.p-map {
  position: relative;
  padding: 90px 40px 100px;
  background: linear-gradient(#fff 0%, #ecf3f8 4%, #ecf3f8 96%, #fff 100%);
  color: #222;
}

.p-map__read {
  margin-bottom: 24px;
  text-align: center;
}

.p-map__wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding: 40px 48px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.p-button__plus,
.p-button__minus {
  display: none;
}

.p-map__body {
  position: relative;
}

.p-map__inner {
  position: relative;
  /* width: 900px; */
}

.p-map__inner img {
  width: 100%;
}

.p-map__att {
  font-size: 12px;
  margin-top: 16px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-map {
    position: relative;
    padding: 64px 20px 80px;
  }

  .p-map__read {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .p-map__wrap {
    padding: 16px;
  }

  .p-button__plus {
    display: block;
    position: absolute;
    top: 0;
    left: 8px;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-color: #007abd;
    color: #fff;
    text-align: center;
    font-weight: bold;
    line-height: 35px;
    z-index: 10;
  }
  .p-button__minus {
    display: block;
    position: absolute;
    top: 0;
    left: 50px;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-color: #007abd;
    color: #fff;
    text-align: center;
    font-weight: bold;
    line-height: 35px;
    z-index: 10;
  }

  .p-map__body {
    height: 500px;
    overflow: auto;
  }

  .p-map__inner {
    width: 1600px;
  }

  .p-map__att {
    text-align: left;
    font-size: 10px;
  }
}

/* -----------------------------------------------
area
------------------------------------------------ */
.p-area {
  width: 100%;
  max-width: 1160px;
  margin: auto;
  padding: 80px 40px;
  color: #222;
  box-sizing: border-box;
}

.p-area__nav {
  margin-bottom: 80px;
  padding: 40px;
  background-color: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.p-area__nav ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.p-area__nav ul > li {
  width: 19%;
  list-style: none;
}

.p-area__nav ul > li a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 16px 20px;
  background-color: #018cd6;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  box-sizing: border-box;
}

.p-area__nav ul > li a span {
  display: inline-block;
  font-size: 12px;
}

.p-area__nav ul > li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.p-area__contents + .p-area__contents {
  margin-top: 48px;
  padding-top: 80px;
  border-top: 2px dashed #ddd;
}

.p-area__heading {
  margin: 0 auto 48px;
  text-align: center;
}

.p-area__heading::before {
  content: "";
  display: block;
  width: 65px;
  height: 70px;
  margin: 0 auto 16px;
  background: url(../img/icon-area.svg) no-repeat center / cover;
}

.p-area__heading span {
  position: relative;
  padding: 0 8px;
  font-size: 28px;
}

.p-area__heading span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 16px;
  background: #fff576;
  z-index: -1;
  transform: skewX(-20deg);
}

.p-area__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.p-area__item {
  display: flex;
  width: 49%;
  margin-bottom: 32px;
  list-style: none;
}

a.-nolink {
  cursor: default;
}

.p-area__details {
  width: 48.5%;
}

.p-area__details h4 {
  overflow: hidden;
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  line-height: 1;
}

.p-area__logo {
  display: inline-block;
  float: left;
}

.p-area__logo a {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 50px;
}

.p-area__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.p-area__name {
  display: inline-block;
  margin-left: 8px;
  font-size: 16px;
  font-weight: bold;
}

.p-area__name a {
  color: #222;
  text-decoration: none;
}

.p-area__name > span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #d10000;
}

.p-area__read {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 14px;
}

.p-area__info {
  margin: 0;
  padding: 0;
}

.p-area__info li {
  list-style: none;
  font-size: 14px;
}

.p-area__info li a {
  color: #222;
  text-decoration: none;
}

.p-area__info li:nth-child(1),
.p-area__info li:nth-child(2) {
  display: none;
}

.p-area__info li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
}

.p-area__info li:nth-child(1)::before {
  background: url(../img/icon-map.svg) no-repeat center / cover;
}

.p-area__info li:nth-child(2)::before {
  background: url(../img/icon-tel.svg) no-repeat center / cover;
}

.p-area__info li:nth-child(3)::before {
  background: url(../img/icon-info.svg) no-repeat center / cover;
}

.p-area__info li:nth-child(4)::before {
  background: url(../img/icon-weather.svg) no-repeat center / cover;
}

.p-area__images {
  align-self: flex-start;
  width: 48.5%;
  margin-left: auto;
  overflow: hidden;
}

.p-area__images a {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 73%;
}

.p-area__images a img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 641px) {
  a.-nolink:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 640px) {
  .p-area {
    padding: 64px 20px;
  }

  .p-area__nav {
    margin-bottom: 64px;
    padding: 16px 16px 8px;
  }

  .p-area__nav ul {
    flex-wrap: wrap;
  }

  .p-area__nav ul > li {
    width: 49%;
    list-style: none;
    margin-bottom: 8px;
  }

  .p-area__nav ul > li a {
    padding: 16px 22px;
    font-size: 12px;
  }

  .p-area__nav ul > li a span {
    display: inline-block;
    font-size: 10px;
  }

  .p-area__nav ul > li a::after {
    right: 10px;
    border-top: 4px solid #fff;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }

  .p-area__contents + .p-area__contents {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 2px dashed #ddd;
  }

  .p-area__heading {
    margin: 0 auto 40px;
    text-align: center;
  }

  .p-area__heading::before {
    width: 60px;
    height: 65px;
    margin: 0 auto 8px;
  }

  .p-area__heading span {
    font-size: 22px;
  }

  .p-area__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }

  .p-area__item {
    flex-wrap: wrap;
    width: 48%;
  }

  .p-area__details {
    width: 100%;
  }

  .p-area__details h4 {
    flex-direction: column;
    margin: 0 0 8px;
    line-height: 1;
  }

  .p-area__logo a {
    width: 54px;
    height: 40px;
  }

  .p-area__name {
    align-self: flex-start;
    margin-left: 0;
    margin-top: 8px;
    font-size: 14px;
  }

  .p-area__read {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .p-area__info li {
    list-style: none;
    font-size: 12px;
  }

  .p-area__info li a {
    color: #222;
    text-decoration: none;
  }

  .p-area__images {
    width: 100%;
    margin-top: 8px;
  }
}

/* -----------------------------------------------
modal
------------------------------------------------ */
.p-modalBg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.p-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}

.p-modal__body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1080px;
  padding: 40px 48px;
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  pointer-events: all;
}

.p-modal__close {
  position: absolute;
  top: -20px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: none;
  background-color: #222;
  cursor: pointer;
  z-index: 10;
}

.p-modal__close::before,
.p-modal__close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background-color: #fff;
}

.p-modal__close::before {
  transform: rotate(45deg);
}

.p-modal__close::after {
  transform: rotate(-45deg);
}

.p-modal__inner {
  display: flex;
}

.p-modal__inner .-nolink a {
  cursor: default;
}

.p-modal__inner .p-area__logo a {
  width: 100px;
  height: 70px;
}

.p-modal__inner .p-area__name {
  font-size: 24px;
}

.p-modal__inner .p-area__read {
  font-size: 18px;
  line-height: 2;
}

.p-modal__inner .p-area__details {
  order: 1;
  margin-left: auto;
}

.p-modal__inner .p-area__info li {
  font-size: 16px;
}

.p-modal__inner .p-area__info li + li {
  margin-top: 4px;
}

.p-modal__inner .p-area__info li::before {
  width: 17px;
  height: 18px;
  vertical-align: sub;
}

.p-modal__inner .p-area__info li:nth-child(1),
.p-modal__inner .p-area__info li:nth-child(2) {
  display: block;
}

.p-modal__inner .p-area__images {
  order: 0;
  margin-left: 0;
}

@media screen and (max-width: 640px) {
  .p-modal__body {
    width: 90%;
    max-width: 500px;
    padding: 16px;
  }

  .p-modal__close {
    top: -17px;
    width: 34px;
    height: 34px;
  }

  .p-modal__close::before,
  .p-modal__close::after {
    width: 15px;
  }

  .p-modal__inner {
    display: flex;
    flex-wrap: wrap;
    max-height: 480px;
    overflow-y: scroll;
  }

  .p-modal__inner h4 {
    flex-direction: row;
  }

  .p-modal__inner .p-area__logo {
    margin-right: 8px;
  }

  .p-modal__inner .p-area__logo a {
    width: 60px;
    height: 45px;
  }

  .p-modal__inner .p-area__name {
    align-self: center;
    font-size: 16px;
  }

  .p-modal__inner .p-area__read {
    font-size: 14px;
    line-height: 1.75;
  }

  .p-modal__inner .p-area__details {
    width: 100%;
    order: 1;
    margin-left: auto;
    margin-top: 8px;
  }

  .p-modal__inner .p-area__info li {
    font-size: 12px;
  }

  .p-modal__inner .p-area__info li + li {
    margin-top: 4px;
  }

  .p-modal__inner .p-area__info li::before {
    width: 14px;
    height: 15px;
  }

  .p-modal__inner .p-area__images {
    order: 0;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
}

/* -----------------------------------------------
utility
------------------------------------------------ */
.u-sp {
  display: none;
}

@media screen and (max-width: 640px) {
  .u-sp {
    display: block;
  }
}

/* -----------------------------------------------
ツールチップ
------------------------------------------------ */
.p-toolTip {
  display: none;
  min-width: 80px;
  position: absolute;
  padding: 8px;
  margin: 0;
  background-color: #fff;
  color: #222;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  pointer-events: none;
}

@media screen and (min-width: 767px) {
  .p-toolTip.is-show {
    display: block;
  }
}
