@charset "utf-8";

/*============================
イントロ
============================*/
.intro {
  padding-bottom: 1.00rem;
}
@media screen and (max-width: 640px) {
  .intro {
    padding-bottom: 0.50rem;
  }
}

.intro .lead {
  font-size: 0.16rem;
  font-weight: 500;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .intro .lead {
    font-size: 0.14rem;
    text-align: justify;
  }
}

/* 車・交通機関でお越しの場合 */
.access_method {
  padding-bottom: 1.20rem;
}
@media screen and (max-width: 640px) {
  .access_method {
    padding-bottom: 0.80rem;
  }
}

.access_method .access_method_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.50rem 0;
}
@media screen and (max-width: 640px) {
  .access_method .access_method_wrap {
    gap: 0.30rem 0;
  }
}

.access_method .access_method_wrap .sub_ttl {
  background-color: #145F81;
  padding: 0.15rem 0.15rem 0.17rem;
  color: #FFF;
  font-size: 0.18rem;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .access_method .access_method_wrap .sub_ttl {
    width: 100%;
    font-size: 0.14rem;
    padding: 0.10rem 0.10rem 0.12rem;
    box-sizing: border-box;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0.10rem;
  }
}

.access_method .access_method_wrap .sub_ttl span {
  font-size: 0.14rem;
  display: inline-block;
  padding-left: 0.10rem;
}
@media screen and (max-width: 640px) {
  .access_method .access_method_wrap .sub_ttl span {
    font-size: 0.11rem;
    padding-left: 0.06rem;
    display: block;
  }
}

/* アクセスマップ */
.access_map {
  position: relative;
  padding-bottom: 0.70rem;
}
@media screen and (max-width: 640px) {
  .access_map {
    padding-bottom: 0.40rem;
  }
}

.access_map::before {
  content: "";
  width: calc(100% - 0.5rem);
  height: calc(100% - 3.00rem);
  background-color: #F4F3F0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -3;
}
@media screen and (max-width: 640px) {
  .access_map::before {
    width: 100%;
  }
}

.access_map::after {
  content: "";
  width: 4.00rem;
  height: 1.80rem;
  background-image: url(../img/common/deco_kamome.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -1.00rem;
  bottom: -0.40rem;
  z-index: -2;
}
@media screen and (max-width: 640px) {
  .access_map::after {
    width: 2.00rem;
    height: 1.00rem;
    bottom: -0.20rem;
    right: -0.40rem;
  }
}

.access_map .gmap_box {
  width: 100%;
  height: 6.00rem;
}
@media screen and (max-width: 640px) {
  .access_map .gmap_box {
    height: 2.50rem;
    width: 100vw;
    margin: 0 -0.20rem;
  }
}

.access_map .gmap_box iframe {
  width: 100%;
  height: 100%;
}

.access_map .info_list_wrap {
  padding: 0.50rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .access_map .info_list_wrap {
    padding: 0.30rem 0;
    gap: 0.30rem 0;
  }
}

.access_map .info_list_wrap .left,
.access_map .info_list_wrap .right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}
@media screen and (max-width: 640px) {
  .access_map .info_list_wrap .left,
  .access_map .info_list_wrap .right {
    width: 100%;
  }
}

.access_map .info_list_wrap .info_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.access_map .info_list_wrap .info_box .ttl {
  width: 1.10rem;
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .access_map .info_list_wrap .info_box .ttl {
    width: 100%;
    font-size: 0.14rem;
    line-height: 1.75;
  }
}

.access_map .info_list_wrap .info_box .ttl span::before {
  content: "●";
  color: #999999;
}

.access_map .info_list_wrap .info_box .txt_box {
  width: calc(100% - 1.10rem);
}
@media screen and (max-width: 640px) {
  .access_map .info_list_wrap .info_box .txt_box {
    width: 100%;
  }
}

.access_map .info_list_wrap .info_box .txt_box .txt {
  font-size: 0.15rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .access_map .info_list_wrap .info_box .txt_box .txt {
    font-size: 0.13rem;
    letter-spacing: 0;
    line-height: 1.75;
  }
}

.access_map .info_list_wrap .info_box .txt_box .small_txt {
  font-size: 0.12rem;
  padding-top: 0.05rem;
}
@media screen and (max-width: 640px) {
  .access_map .info_list_wrap .info_box .txt_box .small_txt {
    font-size: 0.10rem;
    line-height: 1.65;
  }
}

.access_map .info_list_wrap .info_box .txt_box .small_txt + .txt {
  padding-top: 0.15rem;
}