@charset "UTF-8";
/* Zen Kaku Gothic Antique */
/* Montserrat */
/* 【ホバーアクション】下線が出てくる
  ・aタグにhov_lineをつける
  ・白線の場合hov_line_white
---------------------------------------------------------- */
.hov_line, .hov_line_white {
  position: relative;
  display: inline-block;
}
.hov_line::before, .hov_line_white::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #3D434E;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  .hov_line:hover::before, .hov_line_white:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

.hov_line_white::before {
  background-color: #fff;
}

/* ==========================================================================//
//
// アクセス
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
section:not(:first-of-type) {
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  section:not(:first-of-type) {
    margin-top: 40px;
  }
}

.contents {
  border-radius: 10px;
}
@media all and (min-width: 751px) {
  .contents {
    border-radius: 15px;
  }
}
.contents .sec_ttl {
  margin-bottom: 0;
  padding: 15px 20px;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.83;
}
@media all and (min-width: 751px) {
  .contents .sec_ttl {
    padding: 20px 50px;
    border-radius: 10px 10px 0 0;
    font-size: 32px;
    line-height: 1.68;
  }
}
.contents .detail {
  padding: 35px 20px;
  /* 所在地 */
  /* アクセス方法 */
}
@media all and (min-width: 751px) {
  .contents .detail {
    padding: 56px 50px 64px;
  }
}
.contents .detail .wrap {
  margin-bottom: 36px;
}
@media all and (min-width: 751px) {
  .contents .detail .wrap {
    margin-bottom: 58px;
  }
}
@media all and (min-width: 950px) {
  .contents .detail .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contents .detail .wrap p {
  font-weight: bold;
}
.contents .detail .wrap .location {
  padding: 2px 16px;
  display: inline-block;
  border-radius: 20px;
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}
@media all and (min-width: 751px) {
  .contents .detail .wrap .location {
    padding: 2px 30px;
    font-size: 24px;
  }
}
.contents .detail .wrap .address {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  .contents .detail .wrap .address {
    font-size: 20px;
  }
}
@media all and (min-width: 950px) {
  .contents .detail .wrap .address {
    margin: 0 40px 0 24px;
  }
}
@media screen and (min-width: 751px) and (max-width: 949px) {
  .contents .detail .wrap .address {
    margin: 15px 0;
  }
}
.contents .detail .wrap .map {
  padding: 1px 9px;
  display: inline-block;
  border: 1px solid #3D434E;
  border-radius: 35px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .contents .detail .wrap .map {
    padding: 2px 20px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .contents .detail .wrap .map:hover {
    background-color: #3D434E;
    color: #fff;
  }
}
.contents .detail .way_list .way_item:not(:first-child) {
  margin-top: 20px;
}
@media all and (min-width: 1191px) {
  .contents .detail .way_list .way_item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 751px) and (max-width: 1190px) {
  .contents .detail .way_list .way_item:not(:first-child) {
    margin-top: 30px;
  }
}
.contents .detail .way_list .way_item .way_ttl {
  margin-bottom: 20px;
  padding-left: 18px;
  position: relative;
  font-size: 17px;
}
@media all and (min-width: 751px) {
  .contents .detail .way_list .way_item .way_ttl {
    margin-bottom: 32px;
    padding-left: 26px;
    font-size: 24px;
  }
}
.contents .detail .way_list .way_item .way_ttl::before {
  position: absolute;
  content: "";
  background-color: #D0D3CE;
  border-radius: 10px;
  width: 8px;
  height: 19px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media all and (min-width: 751px) {
  .contents .detail .way_list .way_item .way_ttl::before {
    width: 10px;
    height: 24px;
  }
}
@media all and (min-width: 1190px) {
  .contents .detail .way_list .way_item .vehicle_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (max-width: 750px) {
  .contents .detail .way_list .way_item .vehicle_list .item:not(:first-child) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1190px) {
  .contents .detail .way_list .way_item .vehicle_list .item:not(:first-child) {
    margin-top: 25px;
  }
}
.contents .detail .way_list .way_item .vehicle_list .item .orange_ttl,
.contents .detail .way_list .way_item .vehicle_list .item .green_ttl {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
}
@media all and (min-width: 751px) {
  .contents .detail .way_list .way_item .vehicle_list .item .orange_ttl,
  .contents .detail .way_list .way_item .vehicle_list .item .green_ttl {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

/* アクセスマップ
---------------------------------------------------------- */
.access_map {
  margin-bottom: 75px;
}
@media all and (min-width: 751px) {
  .access_map {
    margin-bottom: 120px;
  }
}
.access_map .image {
  position: relative;
}
@media all and (max-width: 750px) {
  .access_map .image {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.access_map .image .map_image {
  margin: 0 auto;
  width: min(352px, 100%);
}
@media screen and (min-width: 400px) and (max-width: 750px) {
  .access_map .image .map_image {
    width: 90%;
  }
}
@media all and (min-width: 751px) {
  .access_map .image .map_image {
    padding: 0;
    width: min(1200px, 100%);
  }
}
.access_map .image .map_box {
  position: absolute;
  width: 18px;
  height: 18px;
}
@media all and (min-width: 751px) {
  .access_map .image .map_box {
    width: 43px;
    height: 43px;
  }
}
.access_map .image .map_box.one {
  top: 1%;
  left: 4%;
  width: 26%;
}
@media all and (min-width: 751px) {
  .access_map .image .map_box.one {
    top: 1.2%;
    left: 0.8%;
    width: 25.59%;
  }
}
@media screen and (min-width: 390px) and (max-width: 750px) {
  .access_map .image .map_box.one {
    left: 6%;
    width: 23%;
  }
}
.access_map .image .map_box.two {
  bottom: 40%;
  left: 5%;
  width: 30%;
}
@media all and (min-width: 751px) {
  .access_map .image .map_box.two {
    bottom: 42.5%;
    left: 1.6%;
    width: 32.59%;
  }
}
@media screen and (min-width: 390px) and (max-width: 750px) {
  .access_map .image .map_box.two {
    bottom: 41.5%;
    left: 6%;
    width: 30%;
  }
}

/* 藤沢養護老人ホーム/藤沢特別養護老人ホーム
---------------------------------------------------------- */
.sec_nursing_home .contents {
  border: 2px solid #EF7A32;
}
.sec_nursing_home .contents .sec_ttl {
  background-color: #EF7B31;
}
.sec_nursing_home .contents .detail .wrap .location {
  background-color: #EF7B31;
}
.sec_nursing_home .contents .detail .way_list .way_item .vehicle_list .item .orange_ttl {
  color: #EF7B31;
}

/* 藤沢西部いきいきサポートセンター（地域包括支援センター）
---------------------------------------------------------- */
.sec_support .contents {
  border: 2px solid #289941;
}
.sec_support .contents .sec_ttl {
  background-color: #289941;
}
.sec_support .contents .detail .wrap .location {
  background-color: #289941;
}
.sec_support .contents .detail .way_list .way_item {
  /* 外部リンク */
}
.sec_support .contents .detail .way_list .way_item .external_link {
  position: relative;
  color: #289941;
  display: inline-block;
}
.sec_support .contents .detail .way_list .way_item .external_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background-color: #289941;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (min-width: 751px) and (hover: hover) {
  .sec_support .contents .detail .way_list .way_item .external_link:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.sec_support .contents .detail .way_list .way_item .vehicle_list .item .green_ttl {
  color: #289941;
}
/*# sourceMappingURL=access.css.map */