@charset "UTF-8";
:root {
  --font_family: "Noto Sans JP", sans-serif;
  --main_font_color: #335467;
  --white: #FFFFFF;
  --green: #4DAE51;
  --bg_green: #E3F4CD;
  --bg_blue: #CDE8F4;
  --bg_blue_2: #D5F4F5;
  --bg_blue_3: #EDFAFA;
  --bg_blue_4: #E9F3F5;
  --border_color: #B9E9EE;
  --blue: #2F96AD;
  --bg_yellow: #F8F0C3;
  --yellow: #B8A74A;
  --orange: #EE8E49;
  --bg_orange: #F4E2CD;
  --pink: #C670D3;
  --bg_pink: #F4D9D9;
  --red: #674733;
  --box_shadow: 2px 2px 10px rgba(47, 150, 173, .3);
}

/* flexの基本の形 */
.flex_basic {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* gideの基本の形 */
.grid_basic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* gnav */
@media screen and (min-width: 751px) {
  #nav_visit_nursing > a .hover_line {
    color: var(--blue);
  }
  #nav_visit_nursing > a .hover_line::before {
    transform: scale(1, 1);
  }
}
/* main_view */
#main_view {
  background: var(--blue);
  background-size: 100% auto;
}

.page main {
  padding-bottom: 0;
}

/* detailes */
.detailes {
  position: relative;
  align-items: center;
}
.detailes .block {
  max-width: 960px;
  width: 100%;
  margin-bottom: 60px;
}
.detailes .block .find_2 {
  padding-bottom: 0.5em;
  border-bottom: 2px dotted var(--border_color);
}
.detailes .block .float {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.detailes .block .float .img {
  width: 350px;
  max-height: 350px;
  background: #C4C4C4;
  box-shadow: var(--box_shadow);
  border-radius: 10px 60px 10px 60px;
}
.detailes .block .float img {
  height: auto;
  border-radius: 10px;
  box-shadow: var(--box_shadow);
}
.detailes .block .img_list {
  border: 2px solid var(--border_color);
  border-radius: 20px;
  padding: 30px;
  background: #fff;
}
.detailes .block .img_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px dotted var(--border_color);
  padding-bottom: 30px;
  margin-bottom: 30px;
  margin-left: 0;
  text-indent: 0;
}
.detailes .block .img_list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.detailes .block .img_list li::before {
  display: none;
}
.detailes .block .img_list li strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.detailes .block .img_list li strong::before {
  content: "●";
  margin-right: 0.5em;
  color: var(--blue);
  font-weight: 500;
}
.detailes .block .img_list li > div {
  display: grid;
  grid-template-columns: repeat(3, 0fr);
  gap: 40px;
}
.detailes .block .img_list li > div figure {
  width: 240px;
  text-align: center;
}
.detailes .block .img_list li > div figure div {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--box_shadow);
  margin-bottom: 10px;
}
.detailes .block .img_list li > div figure div img {
  max-width: 100%;
  height: 100%;
}
.detailes .block .img_list.grid_4 li > div {
  grid-template-columns: repeat(4, 0fr);
}
.detailes .block .img_list.grid_4 li > div figure {
  width: 194px;
}
.detailes .block .img_list.grid_4 li > div figure div {
  height: 140px;
  margin-bottom: 0;
}
.detailes .block:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .detailes .icon_find {
    font-size: 6.4vw;
    gap: 2.6666666667vw;
  }
  .detailes .icon_find img {
    width: 18.6666666667vw;
  }
  .detailes .block {
    margin-bottom: 8vw;
  }
  .detailes .block .float {
    flex-direction: column;
    align-items: center;
    gap: 5.3333333333vw;
    margin-bottom: 8vw;
  }
  .detailes .block .float img {
    width: 32vw;
    height: 40vw;
  }
  .detailes .block .float .img {
    width: 95%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 2.6666666667vw 16vw 2.6666666667vw 16vw;
  }
  .detailes .block .img_list {
    padding: 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
  .detailes .block .img_list li:not(:last-child) {
    padding-bottom: 8vw !important;
    margin-bottom: 8vw !important;
  }
  .detailes .block .img_list li strong {
    font-size: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .detailes .block .img_list li > div {
    grid-template-columns: repeat(2, 0fr);
    gap: 4vw;
  }
  .detailes .block .img_list li > div figure {
    width: 36.8vw;
  }
  .detailes .block .img_list li > div figure div {
    height: 24.5333333333vw;
  }
  .detailes .block .img_list li > div figure figcaption {
    font-size: 3.7333333333vw;
  }
  .detailes .block .img_list.grid_4 li > div {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .detailes .block .img_list.grid_4 li > div figure {
    width: 36.8vw;
  }
  .detailes .block .img_list.grid_4 li > div figure div {
    height: 26.6666666667vw;
  }
}

/* features */
#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20.8333333333vw;
  display: block;
  width: 55.5555555556vw;
  height: 83.3333333333vw;
  background: url(../../assets/img/bg_blue.png) no-repeat top right;
  background-size: 100% auto;
  opacity: 0.4;
  z-index: -1;
}
#features .border_radius {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 750px) {
  #features::before {
    top: 0;
    right: 0;
    width: 85%;
    height: 346.6666666667vw;
    background-position: top right;
  }
  #features .border_radius {
    padding: 5.3333333333vw;
  }
}

/* staff */
#staff img {
  width: 100%;
}

/* zaitaku_madoguchi */
#visiting_nursing_content .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px 15px;
  margin-bottom: 30px;
  margin-left: 0;
}
#visiting_nursing_content .grid li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  border-radius: 10px;
  text-align: center;
  min-height: 100px;
  font-size: 1.8rem;
}
#visiting_nursing_content .grid li span {
  font-size: 1.6rem;
}
#visiting_nursing_content .grid li:nth-child(1) {
  background: #F4E1CD;
}
#visiting_nursing_content .grid li:nth-child(2) {
  background: #F4D2CD;
}
#visiting_nursing_content .grid li:nth-child(3) {
  background: #E7CDF4;
}
#visiting_nursing_content .grid li:nth-child(4) {
  background: #CDDBF4;
}
#visiting_nursing_content .grid li:nth-child(5) {
  background: #CDECF4;
}
#visiting_nursing_content .grid li:nth-child(6) {
  background: #CDF4F1;
}
#visiting_nursing_content .grid li:nth-child(7) {
  background: #CDF4D7;
}
#visiting_nursing_content .grid li:nth-child(8) {
  background: #EAF4CD;
}
#visiting_nursing_content .border_radius {
  text-align: center;
  padding: 30px 0;
}
#visiting_nursing_content .border_radius p {
  margin-bottom: 0;
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  #visiting_nursing_content .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  #visiting_nursing_content .grid li {
    font-size: 4vw;
  }
  #visiting_nursing_content .grid li span {
    font-size: 3.2vw;
  }
  #visiting_nursing_content .border_radius p {
    font-size: 4.2666666667vw;
  }
}

/* usage_fee */
#usage_fee .scroll {
  border-radius: 0;
  border: 0;
}
#usage_fee .scroll .table_1 {
  width: 100%;
}
#usage_fee .scroll .table_1 th {
  text-align: center;
}
#usage_fee .scroll .table_1 th, #usage_fee .scroll .table_1 td {
  min-width: 0;
  padding: 0.2em 0.5em;
  border-right: 1px solid var(--border_color);
}
#usage_fee .scroll .table_1 td {
  text-align: right;
}
#usage_fee .scroll .table_1 td.text_center {
  text-align: center !important;
}
#usage_fee .scroll .table_1 .border-right {
  border-right-width: 4px;
}
#usage_fee .city {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px 15px;
  margin-left: 0;
}
#usage_fee .city li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  border-radius: 10px;
  border: 2px solid var(--border_color);
  min-height: 60px;
  background: var(--white);
}
@media screen and (max-width: 750px) {
  #usage_fee .scroll {
    position: relative;
    overflow-x: scroll;
  }
  #usage_fee .scroll.on::before {
    opacity: 0;
  }
  #usage_fee .scroll::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 23.4666666667vw;
    height: 23.4666666667vw;
    background: url(../img/icon_scroll.png) no-repeat center;
    background-size: 100% auto;
    pointer-events: none;
    transition: opacity 0.5s;
  }
  #usage_fee .scroll .table_1 {
    width: 100%;
  }
  #usage_fee .scroll .table_1 tr {
    display: table-row;
  }
  #usage_fee .scroll .table_1 tr th, #usage_fee .scroll .table_1 tr td {
    display: table-cell;
    white-space: nowrap;
  }
  #usage_fee .city {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.8666666667vw;
  }
  #usage_fee .city li {
    min-height: 10.6666666667vw;
  }
}

/* contact_address */
#contact_address .border_radius table {
  width: auto;
  margin: 0 auto;
}
#contact_address .border_radius table th, #contact_address .border_radius table td {
  min-width: 150px;
}
@media screen and (max-width: 750px) {
  #contact_address .border_radius table {
    width: 100%;
  }
}

/* message */
#message {
  padding: 80px 0;
}
#message::after {
  content: "";
  position: absolute;
  bottom: -48.6111111111vw;
  right: -19.4444444444vw;
  display: block;
  width: 52.0833333333vw;
  height: 83.3333333333vw;
  background: url(../../assets/img/bg_green.png) no-repeat bottom right;
  background-size: 100% auto;
  opacity: 0.4;
  z-index: -1;
}
#message p {
  font-size: 2.4rem;
}
@media screen and (max-width: 750px) {
  #message {
    padding: 21.3333333333vw 0;
    width: 100%;
    overflow: hidden;
  }
  #message::after {
    width: 85%;
    height: 346.6666666667vw;
    bottom: -85.3333333333vw;
  }
  #message p {
    font-size: 5.8666666667vw;
  }
}

.btn_questionnaire {
  cursor: pointer;
  transition: fill 0.3s;
}
.btn_questionnaire:hover {
  fill: #C1B600;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}/*# sourceMappingURL=visit_nursing.css.map */