@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 {
  margin-top: 85px;
}
@media all and (min-width: 751px) {
  section {
    margin-top: 100px;
  }
}

/* お問い合わせ */
@media all and (min-width: 900px) {
  .sec_contact .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sec_contact .wrap .right_contents .means_contents .means {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1.4;
}
.sec_contact .wrap .right_contents .means_contents .means .means_name {
  padding-right: 15px;
  display: block;
  font-size: 15px;
}
@media all and (min-width: 751px) {
  .sec_contact .wrap .right_contents .means_contents .means .means_name {
    padding-right: 20px;
    font-size: min(2.64vw, 36px);
  }
}
.sec_contact .wrap .right_contents .means_contents .means .number {
  font-size: 28px;
}
@media all and (min-width: 751px) {
  .sec_contact .wrap .right_contents .means_contents .means .number {
    font-size: min(5.28vw, 72px);
  }
}
.sec_contact .wrap .right_contents .business_hours {
  margin: 20px 0 40px;
}
@media all and (min-width: 751px) {
  .sec_contact .wrap .right_contents .business_hours {
    margin: 50px 0 37px;
  }
}

/* ダウンロード */
@media all and (min-width: 751px) {
  .sec_download {
    margin-top: 140px;
  }
}

/* 施設の説明 */
.facility_description p {
  width: min(1000px, 100%);
}

/* 施設案内 */
.sec_facility .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media all and (min-width: 751px) {
  .sec_facility .wrap {
    gap: 20px;
  }
}
.sec_facility .wrap .facility_image {
  width: calc((100% - 10px) / 2);
}
@media all and (min-width: 751px) {
  .sec_facility .wrap .facility_image {
    width: calc((100% - 20px) / 2);
  }
}

/* 施設の外観 */
.facility_image img {
  border-radius: 5px;
}
@media all and (min-width: 751px) {
  .facility_image img {
    border-radius: 20px;
  }
}

/* 施設概要 */
.facility_list {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .facility_list {
    margin-top: 60px;
  }
}
.facility_list .facility_detail {
  padding: 25px 0;
  border-bottom: 1px solid #D0D3CE;
}
@media all and (min-width: 751px) {
  .facility_list .facility_detail {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.facility_list .facility_detail:first-child {
  border-top: 1px solid #D0D3CE;
}
.facility_list .facility_detail .content {
  margin-bottom: 8px;
  font-weight: bold;
  color: #EF7B31;
}
@media all and (min-width: 751px) {
  .facility_list .facility_detail .content {
    margin-bottom: 0;
    width: 15%;
  }
}
@media all and (min-width: 751px) {
  .facility_list .facility_detail .detail {
    width: 85%;
  }
}

.means_contents .means {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1.2;
}

/* 営業日、受付時間 */
.business_hours span {
  font-weight: bold;
}

/* 左にグレーの図形がついているタイトル */
.gray_ttl {
  margin-bottom: 25px;
  padding-left: 18px;
  position: relative;
  font-size: 18px;
}
@media all and (min-width: 751px) {
  .gray_ttl {
    margin-bottom: 24px;
    padding-left: 26px;
    font-size: 24px;
  }
}
.gray_ttl::before {
  position: absolute;
  content: "";
  background-color: #D0D3CE;
  border-radius: 10px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 19px;
}
@media all and (min-width: 751px) {
  .gray_ttl::before {
    width: 10px;
    height: 24px;
  }
}

/* 特別養護老人ホーム,養護老人ホーム
---------------------------------------------------------- */
.special_nursing,
.elderly_nursing {
  /* お問い合わせ */
}
@media all and (min-width: 751px) {
  .special_nursing .sec_contact,
  .elderly_nursing .sec_contact {
    margin-top: 140px;
  }
}

/* 居宅介護支援・特定相談支援,共生会の取組　共通
---------------------------------------------------------- */
.care_support .means .means_name,
.activity .means .means_name {
  padding-right: 15px;
  font-size: 15px;
}
@media all and (min-width: 751px) {
  .care_support .means .means_name,
  .activity .means .means_name {
    padding-right: 20px;
    font-size: min(2.05vw, 28px);
  }
}
.care_support .means .number,
.activity .means .number {
  font-size: 28px;
}
@media all and (min-width: 751px) {
  .care_support .means .number,
  .activity .means .number {
    font-size: min(4.1vw, 56px);
  }
}

/* 居宅介護支援・特定相談支援
---------------------------------------------------------- */
@media all and (max-width: 750px) {
  .care_fv .fv_ttl .jp::after {
    top: 26%;
  }
}

@media all and (min-width: 751px) {
  .care_support .sec_tomoiki {
    margin-top: 146px;
  }
}
.care_support .sec_tomoiki .facility_image {
  margin: 30px 0 40px;
}
@media all and (min-width: 751px) {
  .care_support .sec_tomoiki .facility_image {
    margin: 40px 0 64px;
  }
}
@media all and (min-width: 751px) {
  .care_support .sec_tomoiki .means_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 751px) {
  .care_support .sec_tomoiki .means_contents {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.care_support .sec_tomoiki .business_hours {
  margin: 20px 0 25px;
}
@media all and (min-width: 751px) {
  .care_support .sec_tomoiki .business_hours {
    margin: 32px 0;
  }
}

/* 共生会の取組
---------------------------------------------------------- */
.activity {
  /* ※付きの薄いグレーの文字 */
  /* そふら弁当 */
  /* かながわライフサポート事業,福祉なんでも相談窓口　共通 */
  /* かながわライフサポート事業 */
  /* 福祉なんでも相談窓口 */
}
@media all and (min-width: 751px) {
  .activity .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 751px) and (max-width: 899px) {
  .activity .wrap {
    display: block;
  }
}
.activity .attention {
  margin-top: 20px;
  opacity: 0.6;
}
@media all and (min-width: 751px) {
  .activity .attention {
    margin-top: 24px;
    font-size: 14px;
  }
}
.activity .business_hours {
  margin: 20px 0 25px;
}
@media all and (min-width: 751px) {
  .activity .business_hours {
    margin: 32px 0;
  }
}
.activity .sec_sofura .wrap {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  .activity .sec_sofura .wrap {
    margin-bottom: 48px;
  }
}
@media all and (min-width: 900px) {
  .activity .sec_sofura .wrap .use {
    width: 43%;
  }
}
@media all and (min-width: 751px) {
  .activity .sec_sofura .wrap .use .attention {
    margin-top: 14px;
    line-height: 2.57;
  }
}
.activity .sec_sofura .wrap .box_detail {
  margin-top: 40px;
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #F7F7F8;
  border-radius: 10px;
}
@media all and (min-width: 751px) {
  .activity .sec_sofura .wrap .box_detail {
    margin-top: 40px;
    padding: 40px;
  }
}
@media all and (min-width: 900px) {
  .activity .sec_sofura .wrap .box_detail {
    margin-top: 0;
    width: 50%;
  }
}
.activity .sec_sofura .wrap .box_detail .detail_item {
  padding-left: 26px;
  position: relative;
  line-height: 2;
}
@media all and (min-width: 751px) {
  .activity .sec_sofura .wrap .box_detail .detail_item {
    padding-left: 26px;
  }
}
.activity .sec_sofura .wrap .box_detail .detail_item::before {
  position: absolute;
  content: "";
  background-color: #3D434E;
  border-radius: 50%;
  width: 2px;
  height: 2px;
  top: 12px;
  left: 5px;
}
@media all and (min-width: 751px) {
  .activity .sec_sofura .wrap .box_detail .detail_item::before {
    width: 3px;
    height: 3px;
  }
}
@media all and (min-width: 900px) {
  .activity .sec_sofura .sofura_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: min(1140px, 100%);
  }
}
.activity .sec_sofura .sofura_list .sofura_item {
  /* ダウンロードファイル */
}
@media all and (max-width: 899px) {
  .activity .sec_sofura .sofura_list .sofura_item:not(:first-child) {
    margin-top: 40px;
  }
}
@media all and (min-width: 900px) {
  .activity .sec_sofura .sofura_list .sofura_item {
    width: 47.38%;
  }
}
.activity .sec_sofura .sofura_list .sofura_item .wp-block-file {
  width: 100%;
}
@media all and (max-width: 984px) {
  .activity .sec_life .wrap,
  .activity .sec_help .wrap {
    display: block;
  }
}
@media all and (min-width: 985px) {
  .activity .sec_life .wrap,
  .activity .sec_help .wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45.8% 0px 45.8%;
    grid-template-columns: 45.8% 45.8%;
    -ms-grid-rows: 35.8% 0px 0;
    grid-template-rows: 35.8% 0;
    gap: 0px 0px;
        grid-template-areas: "ttl img" "texts .";
  }
}
@media screen and (min-width: 1060px) and (max-width: 1238px) {
  .activity .sec_life .wrap,
  .activity .sec_help .wrap {
    -ms-grid-columns: 55% 40%;
    grid-template-columns: 55% 40%;
    -ms-grid-rows: 29% 1%;
    grid-template-rows: 29% 1%;
  }
  .activity .sec_life .wrap > *:nth-child(1), .activity .sec_help .wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .activity .sec_life .wrap > *:nth-child(2), .activity .sec_help .wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .activity .sec_life .wrap > *:nth-child(3), .activity .sec_help .wrap > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .activity .sec_life .wrap > *:nth-child(4), .activity .sec_help .wrap > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media screen and (min-width: 985px) and (max-width: 1059px) {
  .activity .sec_life .wrap,
  .activity .sec_help .wrap {
    -ms-grid-columns: 60% 35%;
    grid-template-columns: 60% 35%;
    -ms-grid-rows: 34% 1%;
    grid-template-rows: 34% 1%;
  }
  .activity .sec_life .wrap > *:nth-child(1), .activity .sec_help .wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .activity .sec_life .wrap > *:nth-child(2), .activity .sec_help .wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .activity .sec_life .wrap > *:nth-child(3), .activity .sec_help .wrap > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .activity .sec_life .wrap > *:nth-child(4), .activity .sec_help .wrap > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media all and (min-width: 985px) {
  .activity .sec_life .wrap .sec_ttl,
  .activity .sec_help .wrap .sec_ttl {
    grid-area: ttl;
  }
}
@media all and (min-width: 985px) {
  .activity .sec_life .wrap .image,
  .activity .sec_help .wrap .image {
    grid-area: img;
  }
}
@media all and (min-width: 985px) {
  .activity .sec_life .wrap .texts,
  .activity .sec_help .wrap .texts {
    grid-area: texts;
  }
}
@media all and (min-width: 985px){
  .activity .sec_life .wrap .sec_ttl,
  .activity .sec_help .wrap .sec_ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .activity .sec_life .wrap .image,
  .activity .sec_help .wrap .image {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .activity .sec_life .wrap .texts,
  .activity .sec_help .wrap .texts {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
@media all and (max-width: 984px) {
  .activity .sec_life .image,
  .activity .sec_help .image {
    margin: 0 0 30px;
  }
}
.activity .sec_life .more_btn,
.activity .sec_help .more_btn {
  margin-top: 25px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .activity .sec_life .more_btn,
  .activity .sec_help .more_btn {
    margin-top: 36px;
    padding: 21px 75px 21px 40px;
  }
}
.activity .sec_life .more_btn::after,
.activity .sec_help .more_btn::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../../images/activity/ico_external.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  border-radius: 0;
  width: 17.5px;
  height: 14px;
  right: 32px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .activity .sec_life .more_btn::after,
  .activity .sec_help .more_btn::after {
    width: 23px;
    height: 18.4px;
    right: 39px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .activity .sec_life .more_btn:hover,
  .activity .sec_help .more_btn:hover {
    background-color: #3D434E;
    color: #fff;
  }
  .activity .sec_life .more_btn:hover::after,
  .activity .sec_help .more_btn:hover::after {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
@media all and (min-width: 751px) {
  .activity .sec_life {
    margin-top: 140px;
  }
}
@media all and (min-width: 751px) {
  .activity .sec_life .wrap .texts .more_btn {
    width: min(372px, 100%);
  }
}
@media all and (min-width: 751px) {
  .activity .sec_help {
    margin-top: 130px;
  }
}
@media all and (min-width: 985px) {
  .activity .sec_help .wrap {
    -ms-grid-columns: 38.7% 51.3%;
    grid-template-columns: 38.7% 51.3%;
    -ms-grid-rows: 23.8% 64%;
    grid-template-rows: 23.8% 64%;
        grid-template-areas: "img ttl" "img texts";
  }
  .activity .sec_life .wrap .sec_ttl,
  .activity .sec_help .wrap .sec_ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .activity .sec_life .wrap .image,
  .activity .sec_help .wrap .image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .activity .sec_life .wrap .texts,
  .activity .sec_help .wrap .texts {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media all and (min-width: 751px) {
  .activity .sec_help .wrap .texts .more_btn {
    width: min(315px, 100%);
  }
}
.activity .sec_help .wrap .image {
  margin: 0 auto 30px;
}
@media all and (min-width: 985px) {
  .activity .sec_help .wrap .image {
    margin: 0 0 0 40px;
  }
}
@media screen and (min-width: 751px) and (max-width: 984px) {
  .activity .sec_help .wrap .image {
    margin: 0 auto 40px;
  }
}
/*# sourceMappingURL=service_detail.css.map */