@charset "UTF-8";

/*=================
全体
===================*/

* {
  box-sizing: border-box;
  font-style: normal;
}

html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  min-width: 375px;
}

a {
  text-decoration: none;
  color: #262626;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul li {
  list-style: none;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.middle_wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.text_align {
  text-align: center;
}

.text_align_right {
  text-align: right;
}

.text_align_left {
  text-align: left;
}

.font_bold {
  font-weight: bold;
}

.jus_right {
  justify-content: right;
}

@media screen and (max-width: 1100px) {
  .wrapper {
    padding: 0 4%;
  }
}

.hover_underline:hover {
  text-decoration: underline;
}

.hover:hover {
  background-color: #e2eade;
  transition: 0.3s ease-in-out;
}

.header_checked {
  background-color: #e2eade;
}

.hover_clear:hover {
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/*========================
 タブのスタイル 
============================*/

.facilities_tab-container {
  display: flex;
  border-bottom: #456800 solid 2px;
  justify-content: center;
  padding: 60px 0 0;
}

.facilities_tab {
  display: flex;
  justify-content: center;
  cursor: pointer;
  padding: 9px 0;
  background-color: #fff;
  border: 2px solid #456800;
  border-radius: 10px 10px 0 0;
  transition: background-color 0.3s;
  color: #456800;
  font-size: 22px;
  margin: 0 5px;
  width: 192px;
  border-bottom: none;
  box-shadow: rgb(0, 0, 0, 0.2) 4px 3px 0px;
  align-items: center;
  font-weight: 600;
}

.facilities_tab:hover {
  background-color: #456800;
  color: #fff;
}

.facilities_active-tab {
  background-color: #456800;
  border-radius: 10px 10px 0 0;
  color: #fff;
}

/* コンテンツのスタイル */
.facilities_tab-content {
  display: none;
  /* border: 1px solid #ccc; */
}

.facilities_active-content {
  display: block;
}

@media screen and (max-width: 790px) {
  .facilities_tab-container {
    overflow: scroll;
    justify-content: flex-start;
  }
  .facilities_tab {
    min-width: 108px;
    padding: 0px 0;
    font-size: 18px;
    margin: 0 0 0 4px;
    box-shadow: none;
  }
  .facilities_tab:nth-of-type(1) {
    margin-left: 10px;
  }
  .facilities_tab:nth-of-type(5) {
    margin-right: 10px;
  }
}
/*========================
TOPページ 
============================*/

/*----------------------
メインビジュアル 
-----------------------*/
.main_bg_top {
  /* height: 540px; */
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 100px;
}
.slider {
  position: relative;
  z-index: 1;
}

.mv_ttl {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  transform: translate(0%, -50%);
  color: #fff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  z-index: 10;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.mv_ttl .txt01 {
  font-size: 28px;
  margin-bottom: 10px;
}
.mv_ttl h2 {
  font-size: 90px;
  margin-bottom: 20px;
  font-weight: bold;
}
.mv_ttl h2 span {
  font-size: 72px;
}
.mv_ttl h2 em {
  font-weight: bold;
}
.mv_ttl .txt02 {
  font-size: 52px;
}
.mv_ttl .txt03 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}
.mv_txt {
  background: #e2eade;
  padding: 35px 0;
}
.mv_txt p {
  text-align: center;
  font-size: 27px;
  line-height: 1.4;
  font-weight: bold;
}

.sp_only {
  display: none;
}
.main_bg_top {
  margin-top: 135px;
}

@media screen and (max-width: 768px) {
  .main_bg_top {
    margin-top: 60px;
  }
}

/*-----------------------------
Web見学
------------------------------*/

#top_visit_sec {
  padding: 40px 0;
}

.top_visit_sec_inner {
  display: flex;
  justify-content: space-between;
}

.top_visit_sec_inner a {
  display: block;
  border-radius: 20px;
  font-size: 20px;
  padding: 35px 0;
  text-align: center;
  box-shadow: 5px 6px 1px rgba(56, 56, 56, 0.16);
}

.top_visit_sec_inner a:first-of-type {
  background-color: #c66c44;
  width: 20%;
  color: #fff;
}

.top_visit_sec_inner a:nth-of-type(2) {
  background-color: #f8c5ac;
  width: 78%;
}

/*-----------------------------
アクセス
------------------------------*/

#top_access_section h2 {
  /* background-color: #E2EADE; */
  padding: 30px 0;
  /* min-height: 100px; */
  line-height: 1;
  font-size: 22px;
  letter-spacing: 0.2em;
}

#top_access_section h3 {
  margin-bottom: 30px;
}

#top_access_section h3 img {
  width: 30px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

#top_access_section address {
  font-size: 15px;
}

#top_access_section h3 span {
  border-bottom: 2px solid #000000;
  padding-bottom: 5px;
  font-size: 16px;
}

.top_access_section_inner {
  padding: 0 4% 60px;
}

.top_access_maps {
  max-width: 800px;
  margin: 0 auto;
}

.top_access_maps iframe {
  margin: 28px 0 1rem;
  max-width: 100%;
  /* position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; */
}

#top_access_section a {
  margin: 48px auto 0;
}

@media screen and (max-width: 768px) {
  .top_access_section_inner {
    padding: 0 4% 60px;
  }

  .top_access_maps iframe {
    margin: 0 0 20px;
    max-width: 100%;
  }

  #top_access_section address {
    margin-bottom: 20px;
    font-size: 14px;
  }

  #top_access_section h3 span {
    border-bottom: none;
    padding-bottom: 0px;
    font-size: 12px;
  }

  #top_access_section h3 img {
    width: 24px;
    vertical-align: middle;
    margin-right: 0;
  }

  .top_access_maps p:first-of-type {
    margin-bottom: 1rem;
  }

  #top_access_section a {
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 426px) {
  .top_access_maps iframe {
    max-height: 223px;
  }
}

/*========================
施設一覧
============================*/
/*----------------------
メインビジュアル 
-----------------------*/
.facilities_main_bg_inner {
  width: 250px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px 0 19px;
}
.facilities_main_bg_inner h1 {
  line-height: 1;
}
.facilities_main_bg_inner img {
  width: 135px;
}
.facilities_main_bg_inner h2 {
  line-height: 0.5;
}
.facilities_main_bg_inner h2 img {
  width: 74px;
}
.main_bg_facilities {
  background: url(/facilities/img/kawagoe_bg.png) top center / cover;
}

.main_bg_facilities .main_bg_inner h1 img {
  width: 136px;
}

.main_bg_facilities .main_bg_inner h2 img {
  width: 104px;
}

@media screen and (max-width: 768px) {
  .main_bg_facilities {
    background: url(/facilities/img/sp/kawagoe_bg.png) center top / cover;
    /* padding: 55px; */
  }
}

/*---------------------
コンシェルジュとは？TOP 
--------------------- */

.room_list {
  display: flex;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
}
.room_list p {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  background: #e6e6e6;
  border-left: 8px solid #c4c4c4;
  padding: 0 10px;
  box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.1);
}
.facilities_btn {
  margin-top: 30px;
}
.facilities_btn a {
  max-width: 300px;
}

@media screen and (max-width: 1000px) {
  img.icon_tree_facilities {
    width: 100px;
    top: -135px;
    right: 4%;
  }
}

/*========================
　　医療・介護
============================*

/*--------------------------------
 住宅サービス
-----------------------------------*/

/* 共通 */

.care_sec h3 {
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #456800;
}

.care_sec_livser_inner {
  letter-spacing: 0.1em;
}

#care_sec_livser {
  padding: 55px 0 60px;
}
.care_sec_livser_inner section {
  display: flex;
  background-color: #f2f2f2;
  border: 1px solid #707070;
  border-radius: 20px;
  margin-top: 26px;
}

.care_sec_livser_inner section table {
  width: 50%;
  border-collapse: collapse;
}

.care_sec_livser_inner section table tr:first-of-type {
  height: 84px;
}

.care_sec_livser_inner section table tr:nth-of-type(2) {
  height: 66px;
}

.care_sec_livser_inner section table tr:nth-of-type(3) {
  height: 96px;
}

.care_sec_livser_inner section table tr:last-of-type {
  height: 90px;
}

.care_sec_livser_inner section table tr th,
.care_sec_livser_inner section table tr td {
  border-bottom: 1px solid #707070;
}

.care_sec_livser_inner section table tr:last-of-type th,
.care_sec_livser_inner section table tr:last-of-type td {
  border-bottom: none;
}

.care_sec_livser_inner section table:first-of-type {
  border-right: 1px solid #707070;
}

.care_sec_livser_inner section table tr th {
  font-size: 25px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  color: #456800;
  padding-left: 44px;
}

.care_sec_livser_inner section table tr td {
  /* font-size: 20px; */
  font-size: clamp(14px, 2vw, 20px);
  color: #454545;
  letter-spacing: 0.05em;
  padding-left: 10px;
  font-weight: bold;
}

.care_sec_livser_txt {
  margin-top: 20px;
  letter-spacing: 0.05em;
}

.care_sec_livser_txt h4 {
  margin-bottom: 0.25rem;
}

.care_sec_livser_txt div:nth-of-type(2) {
  margin-top: 30px;
}

.care_sec_livser_txt div:nth-of-type(2) p:nth-of-type(3) {
  margin-top: 20px;
}

.care_sec_livser_txt p {
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .care_sec_livser_inner section {
    flex-direction: column;
    margin-top: 16px;
    border: 2px solid #456800;
    border-radius: 9px;
    overflow: hidden;
  }

  .care_sec_livser_inner section table {
    width: 100%;
  }

  .care_sec_livser_inner section table:first-of-type {
    border-right: 0;
  }

  .care_sec_livser_inner section table tr:nth-of-type(odd) {
    background-color: #eef2ec;
    height: 50px;
  }

  .care_sec_livser_inner section table tr:nth-of-type(even) {
    background-color: #fff;
  }

  .care_sec_livser_inner section table:first-of-type tr:last-of-type td,
  .care_sec_livser_inner section table:first-of-type tr:last-of-type th {
    border-bottom: none;
  }

  .care_sec_livser_inner section table tr th,
  .care_sec_livser_inner section table tr td {
    border-bottom: none;
  }

  #care_sec_livser {
    padding: 40px 0;
  }

  .care_sec_livser_inner section table tr td {
    letter-spacing: 0.1em;
    padding-left: 1rem;
  }

  .care_sec_livser_inner section table tr th {
    padding-left: 20px;
    width: 17%;
  }

  .care_sec_livser_inner section table:nth-of-type(2) tr:nth-of-type(3) {
    height: 78px;
  }

  .care_sec_livser_txt {
    font-size: 12px;
  }

  .care_sec_livser_txt div:nth-of-type(2) {
    margin-top: 20px;
  }

  /* 共通 */
  .care_sec h3 {
    font-size: 18px;
    letter-spacing: 0.15em;
  }

  .care_sec_livser_inner section table tr:nth-of-type(2) {
    height: 50px;
  }

  .care_sec_livser_inner section table tr:last-of-type {
    height: 50px;
  }
}

#care_sec_coop {
  background-color: #eef2ec;
  padding: 55px 0 60px;
  letter-spacing: 0.1em;
}
.care_sec_coop_inner {
  padding: 0 4%;
}
.care_sec_coop_inner h3 {
  margin-bottom: 22px;
}
.care_sec_coop_inner section {
  margin-bottom: 55px;
}
.care_sec_coop_inner h4 {
  font-size: 22px;
  margin-bottom: 1rem;
}
.care_sec_coop_inner section p {
  line-height: 1.7;
}
.care_sec_coop_inner section:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 790px) {
  .care_sec_coop_inner section {
    margin-bottom: 35px;
  }
  .care_sec_coop_inner section:first-of-type h4 {
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    height: 60px;
    line-height: 60px;
    border-radius: 10px 10px 0 0;
  }
  .care_sec_coop_inner section:not(section:first-of-type) h4 {
    color: #456800;
    padding-left: 35px;
    position: relative;
  }
  .care_sec_coop_inner section:not(section:first-of-type) h4::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f8c5ac;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .care_sec_coop_inner section address {
    letter-spacing: 0.05em;
    line-height: 2;
    font-size: 14px;
  }
  .care_sec_coop_inner section:last-of-type {
    margin-bottom: 0px;
  }
  .care_sec_coop_inner section:nth-of-type(3) h4::before {
    background-color: #ffed61 !important;
  }
}

/*========================
　　費用
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_price {
  background: url(/img/main_bg_price.jpg) center / cover;
}

.main_bg_price .main_bg_inner h1 img {
  width: 55px;
}

.main_bg_price .main_bg_inner h2 img {
  width: 48px;
}

.main_bg_price .main_bg_inner {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .main_bg_price {
    background: url(/img/sp/main_bg_price_sp.jpg) center top / cover;
    /* padding: 55px; */
  }

  .main_bg_price .main_bg_inner {
    width: 250px;
  }
}

/*----------------------
コンテンツ 
-----------------------*/

#price_sec {
  padding: 40px 0 60px;
  background-color: #eef2ec;
}

.price_sec_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.price_sec_inner div.cp_bnr {
  text-align: center;
  margin: 50px auto;
}

@media screen and (max-width: 1100px) {
  .price_sec_inner {
    padding: 0 4%;
  }
}

@media screen and (max-width: 768px) {
  .price_sec_inner {
    padding: 0;
  }

  #price_sec {
    background-color: #fff;
  }

  .price_sec_inner div.cp_bnr {
    text-align: center;
    margin: 30px 4%;
  }
}

.price_sec_inner p {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.price_ttl {
  text-align: center;
  margin-bottom: 40px;
}
.price_ttl img {
  width: 65px;
}
.price_sec_table {
  margin-top: 40px;
}

.price_sec_table_pc {
  width: 100%;
  /* border-radius: 10px; */
  border: 2px solid #989898;
  background-color: #e2eade;
  border-collapse: collapse;
  font-weight: bold;
  border-radius: 20px;
}

.price_sec_table_pc tr:nth-of-type(3) td {
  background-image: url(/img/price_arrow_pc.png);
  background-position: bottom -4px center;
  background-repeat: no-repeat;
  background-size: 26px;
  color: #bc5928;
}

.price_sec_table_pc tr {
  height: 100px;
}
.price_sec_table_pc tr:nth-of-type(1) {
  border-bottom: 4px solid #989898;
}

.price_sec_table_pc tr th,
.price_sec_table_pc tr td {
  border-right: 2px solid #989898;
  text-align: center;
}

.price_sec_table_pc tr th {
  line-height: 1.2;
  letter-spacing: 0.05em;
  /* font-size: 18px; */
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: normal;
}
.price_sec_table_pc tr th:nth-of-type(1) {
  border-right: 4px solid #989898;
}

.price_sec_table_pc tr td {
  letter-spacing: 0.1em;
}
.price_sec_table_pc tr:nth-of-type(7) td {
  padding: 36px 32.5px;
  text-align: left;
}
.price_sec_table_pc tr:first-of-type {
  height: 110px;
}

.price_sec_table_pc tr:nth-of-type(1),
.price_sec_table_pc tr:nth-of-type(3),
.price_sec_table_pc tr:nth-of-type(5),
.price_sec_table_pc tr:nth-of-type(7) {
  background-color: #fff;
}

.price_sec_table_pc tr:nth-of-type(2) {
  height: 130px;
}

.price_sec_table_pc tr:nth-of-type(4) td {
  letter-spacing: 0.05em;
  font-size: 26px;
}

.price_sec_table_pc tr:nth-of-type(3) td span,
.price_sec_table_pc tr:nth-of-type(4) td span {
  letter-spacing: 0;
}

.price_sec_table_pc tr:nth-of-type(2) th,
.price_sec_table_pc tr:nth-of-type(3) th {
  /* font-size: 16px; */
  font-size: clamp(14px, 1.3vw, 16px);
}

.font_26_pc {
  /* font-size: 26px; */
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: 0.1em;
  font-weight: bold;
}

.font_22_pc {
  /* font-size: 22px; */
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.1em;
  font-weight: bold;
}

.font_20_pc {
  font-size: 20px;
}

.font_18_pc {
  /* font-size: 18px; */
  font-size: clamp(16px, 1.5vw, 18px);
}

.font_24_pc {
  font-size: 24px;
}

.font_50_pc {
  font-size: 50px;
}

/* .nth_second_tr {
  text-align: left !important;
  padding-left: 2%;
} */

.price_sec_table p {
  text-align: right;
  font-size: 14px;
  font-weight: normal;
  margin-top: 0.5rem;
}

.price_sec_table_pc tr:nth-of-type(5) td,
.price_sec_table_pc tr:nth-of-type(6) td,
.price_sec_table_pc tr:nth-of-type(7) td {
  font-size: 18px;
  letter-spacing: 0;
}

.price_sec_table_pc tr:nth-of-type(5) td span,
.price_sec_table_pc tr:nth-of-type(6) td span,
.price_sec_table_pc tr:nth-of-type(7) td span {
  font-size: 20px;
}

.price_sec_table_pc tr:nth-of-type(4),
.price_sec_table_pc tr:nth-of-type(6) {
  background-color: #efdcd3;
}

.price_sec_table_pc tr:nth-of-type(8) {
  height: 189px;
}

.price_sec_table_pc tr:nth-of-type(8) td {
  text-align: left;
  padding-left: 32px;
  line-height: 1.6;
}

.price_sec_list {
  max-width: 800px;
  margin: 70px auto 0;
}

.price_sec_list ul {
  display: flex;
  border-radius: 20px;
  background-color: #fff;
  padding: 30px 0;
  justify-content: center;
  letter-spacing: 0.1em;
  align-items: center;
}

.price_sec_list ul li:first-of-type {
  width: 22%;
  /* font-size: 18px; */
  font-size: clamp(16.5px, 2vw, 18px);
  font-weight: bold;
}

.price_sec_list ul li:nth-of-type(2) {
  padding-left: 40px;
  border-left: 1px solid #456800;
}

.price_sec_list ul:first-of-type,.price_sec_list ul:nth-of-type(2) {
  margin-bottom: 30px;
}
.price_sec_list ul:first-of-type li:nth-of-type(2) {
  width: 67%;
}

.price_sec_list ul:nth-of-type(2) li:nth-of-type(2) {
  width: 67%;
}
.price_sec_list ul:nth-of-type(1) li:nth-of-type(2) p {
   text-align: left;
  font-weight: normal;
  font-size: 16px;
  text-indent: -1em;
  padding-left: 1em;
 
}
.price_sec_list ul:nth-of-type(2) li:nth-of-type(2) p,.price_sec_list ul:nth-of-type(3) li:nth-of-type(2) p {
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  text-indent: -1em;
  padding-left: 1em;
}
.price_sec_list ul:nth-of-type(3) li:nth-of-type(2) {
  width: 65%;
}

@media screen and (max-width: 768px) {
  /* SP部 */

  .price_sec_table_sp_plan .price_tab_sp_plan_inner {
    padding: 0 4%;
  }

  .price_sec_table_sp_plan {
    padding: 40px 0;
  }

  .price_sec_table_sp_plan h3 {
    color: #456800;
    letter-spacing: 0.15em;
  }

  .price_sec_table_sp_plan:nth-of-type(2) {
    background: #eef2ec;
  }

  .price_sec_table_sp_plan h4 {
    border-radius: 10px 10px 0 0;
    margin: 13px 0 10px;
    background-color: #fff;
    padding: 17px 0;
    max-height: 80px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .price_sec_table_sp_plan h4 span {
    font-size: 20px;
    letter-spacing: 0.15em;
  }

  .price_sec_table_sp_plan:nth-child(odd) h4 {
    background-color: #f2f2f2;
  }

  .price_sec_table_sp_plan .price_tab_sp_plan_inner table {
    width: 100%;
  }

  table.price_sp_inner_tab {
    margin: 10px 0 15px;
    border-collapse: collapse;
  }

  table.price_sp_inner_tab th {
    width: 38%;
  }

  table.price_sp_inner_tab td {
    width: 62%;
  }

  table.price_sp_inner_tab tr:first-of-type span,
  table.price_sp_inner_tab tr:nth-of-type(3) th span {
    color: #262626;
  }

  table.price_sp_inner_tab td {
    background-color: #fff;
  }

  table.price_sp_inner_tab tr:nth-of-type(2),
  table.price_sp_inner_tab tr:nth-of-type(3) {
    text-align: center;
  }

  table.price_sp_inner_tab tr:first-of-type th {
    text-align: left;
  }

  table.price_sp_inner_tab tr:first-of-type th,
  table.price_sp_inner_tab tr:first-of-type td {
    padding-left: 20%;
    font-size: 12px;
  }

  table.price_sp_inner_tab tr:first-of-type th {
    padding-left: 12%;
  }

  table.price_sp_inner_tab tr:first-of-type th {
    font-weight: normal;
  }

  
  table.price_sp_inner_tab tr:nth-of-type(2) td span {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  table.price_sp_inner_tab tr:first-of-type th span {
    font-size: clamp(15px, 2vw, 16px);
  }

  table.price_sp_inner_tab tr:nth-of-type(3) td {
    color: #bc5928;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  table.price_sp_inner_tab tr:nth-of-type(3) td {
    font-size: 12px;
  }

  table.price_sp_inner_tab tr:nth-of-type(2) td span:first-of-type,
  table.price_sp_inner_tab tr:nth-of-type(3) td span:first-of-type {
    font-size: 22px;
    color: #bc5928;
  }
  table.price_sp_inner_tab tr:nth-of-type(2) td span:nth-of-type(2),
  table.price_sp_inner_tab tr:nth-of-type(2) td span:nth-of-type(3),
  table.price_sp_inner_tab tr:nth-of-type(3) td span:nth-of-type(2) {
    color: #bc5928;
  }

  table.price_sp_inner_tab tr:nth-of-type(3) td span:nth-of-type(2) {
    font-size: 16px;
  }

  table.price_sp_inner_tab tr:first-of-type {
    height: 93px;
  }

  table.price_sp_inner_tab tr:nth-of-type(2),
  table.price_sp_inner_tab tr:nth-of-type(3) {
    height: 70px;
  }

  table.price_sp_inner_tab tr:first-of-type th {
    background-color: #e2eade;
  }

  table.price_sp_inner_tab tr:nth-of-type(2) th {
    background-color: #fff;
  }

  table.price_sp_inner_tab tr:nth-of-type(3) th {
    background-color: #efdcd3;
    font-weight: normal;
    font-size: 12px;
  }

  .price_sec_table {
    margin-top: 0px;
  }

  #price_sec {
    padding: 20px 0 60px;
  }

  table.price_sp_inner_tab tr:nth-of-type(3) th span {
    font-weight: bold;
    font-size: 16px;
  }

  table.price_sp_inner_tab tr th,
  table.price_sp_inner_tab tr td {
    border-top: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
  }

  table.price_sp_inner_tab tr th {
    border-right: 1px solid #c4c4c4;
  }

  table.price_sp_inner_tab tr span {
    letter-spacing: 0.1em;
  }

  .price_sec_list ul {
    flex-direction: column;
    padding: 0;
    position: relative;
  }

  div.price_sp_inner_tab_2 {
    background-color: #f5e6df;
    border-radius: 9px;
    border: 2px solid #bc5928;
    padding: 16px 4% 32px;
  }

  div.price_sp_inner_tab_2 table {
    border-collapse: collapse;
  }

  div.price_sp_inner_tab_2 table tr:nth-of-type(even) {
    background-color: #fff;
  }

  div.price_sp_inner_tab_2 table tr {
    height: 50px;
  }

  div.price_sp_inner_tab_2 {
    position: relative;
  }

  img.price_sp_tab_arrow {
    position: absolute;
    width: 22px;
    top: -20px;
    right: 20%;
  }

  div.price_sp_inner_tab_2 table td {
    font-size: 16px;
  }

  div.price_sp_inner_tab_2 table td span {
    font-size: 18px;
  }

  div.price_sp_inner_tab_2 table th,
  div.price_sp_inner_tab_2 table td {
    width: 50%;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  div.price_sp_inner_tab_2 table th {
    width: 42%;
    color: #454545;
  }

  div.price_sp_inner_tab_2 table td {
    padding-right: 10%;
  }

  div.price_sp_inner_tab_2 table th:not(tr:first-of-type th),
  div.price_sp_inner_tab_2 table td {
    text-align: right;
  }

  .price_sec_table_sp_plan:nth-of-type(3)
    table.price_sp_inner_tab
    tr:first-of-type
    td {
    font-size: 20px;
    padding: 0;
    text-align: center;
    color: #000;
  }
.price_sp_inner_tab tr td span {
  font-size: 40px;
}
  .price_sec_table_sp_plan:nth-of-type(3)
    table.price_sp_inner_tab
    tr:first-of-type
    td
    span {
    font-size: 40px;
    color: #000;
  }

  img.icon_tree_price {
    position: absolute;
    width: 65px;
    right: 25px;
    top: -48px;
  }

  .price_sec_list {
    padding: 0 4%;
    margin-top: 58px;
  }

  .price_sec_list ul:first-of-type {
    margin-bottom: 60px;
  }

  .price_sec_list ul li:first-of-type {
    width: 100%;
    text-align: center;
    border-radius: 10px 10px 0 0;
    background-color: #f2f2f2;
    padding: 19px 0;
    max-height: 85px;
    font-size: 16px;
    letter-spacing: 0.15em;
  }

  /* .price_sec_list ul:first-of-type li:first-of-type {
    max-height: 60px;
  } */

  .price_sec_list ul li:nth-of-type(2) {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
    line-height: 1.8;
  }

  .price_tab_sp_other_inner {
    padding: 0 4%;
  }

  .price_tab_sp_other_inner ul {
    letter-spacing: 0.1em;
  }

  .price_tab_sp_other_inner ul li {
    line-height: 1.8;
  }

  .price_tab_sp_other_inner p {
    text-align: left;
    font-size: 12px !important;
    padding: 0 !important;
    letter-spacing: 0.05em;
    margin-top: 19px;
  }

  .price_tab_sp_other_inner h3 {
    margin-bottom: 13px;
    font-size: 20px;
    letter-spacing: 0.15em;
  }
  .price_sec_list ul:first-of-type li:nth-of-type(2) {
    width: auto;
  }
  .price_sec_list ul:nth-of-type(2) li:nth-of-type(2) {
    width: auto;
  }
  .price_sec_list ul:nth-of-type(3) li:nth-of-type(2) {
    width: auto;
  }
}

@media screen and (max-width: 500px) {
  /* table.price_sp_inner_tab tr:first-of-type th {
    padding-left: 7%;
  } */

  table.price_sp_inner_tab tr:first-of-type td {
    padding-left: 18%;
  }
}

@media screen and (max-width: 440px) {
  .price_sec_inner p {
    text-align: left;
    padding: 0 4%;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.8;
  }

  /* table.price_sp_inner_tab tr:first-of-type td {
    padding-left: 11%;
  } */
}

@media screen and (max-width: 768px) and (min-width: 500px) {
  div.price_sp_inner_tab_2 table th {
    width: 35%;
  }

  div.price_sp_inner_tab_2 table td {
    padding-right: 20%;
  }
}

/* アーカイブ */

/*========================
　 アクセス
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.access_sec {
  padding: 56px 0 0;
}
.access_sec h1 {
  text-align: center;
  margin-bottom: 40px;
}
.access_sec h1 img {
  width: 129px;
}
#access_sec_car {
  padding: 40px 0 0 0;
}
/*----------------------
　　コンテンツ 
-----------------------*/

.access_sec h3 {
  height: 100px;
  line-height: 100px;
  background-color: #e2eade;
  letter-spacing: 0.1em;
  font-size: 22px;
}
#access_sec_car h3 {
  margin-bottom: 55px;
}

/* #access_sec_car section {
  padding: 0px 0 60px;
} */

.access_sec_car_inner {
  letter-spacing: 0.05em;
}

.access_sec_car_inner address {
  margin: 24px 0 28px;
  text-align: center;
}

.access_sec_car_inner p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 1rem;
}

.access_maps_p {
  text-align: center;
}

.access_maps iframe {
  max-width: 100%;
}

.access_sec_car_inner p span {
  vertical-align: middle;
}

.access_sec_car_inner p img {
  width: 24px;
  vertical-align: middle;
}

.access_sec_car_inner h4 img {
  width: 30px !important;
  vertical-align: middle;
}

.access_sec_car_inner h4 span {
  vertical-align: middle;
  border-bottom: 2px solid #000000;
  padding-bottom: 5px;
}

@media screen and (max-width: 900px) {
  .access_sec_car_inner {
    padding: 0 4%;
  }
}

@media screen and (max-width: 768px) {
  .access_sec {
    padding: 40px 0;
  }
  .access_sec h1 {
    text-align: center;
    margin-bottom: 40px;
  }
  .access_sec h1 img {
    width: 98px;
  }

  .access_sec h3 {
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
  #access_sec_car h3 {
    margin-bottom: 20px;
  }
  #access_sec_car section {
    padding: 20px 0 0px;
  }

  .access_sec_car_inner {
    display: flex;
    flex-direction: column;
  }
  #access_sec_car {
    padding: 20px 0 0;
  }
  .access_maps {
    order: 0;
  }

  .access_maps_p {
    order: 2;
  }

  .access_sec_car_inner address {
    order: 1;
  }
}

@media screen and (max-width: 600px) {
  .access_maps iframe {
    max-height: 223px;
  }

  .access_sec_car_inner address {
    text-align: left;
    font-size: 14px;
    margin: 20px 0 0;
  }

  .access_maps_p {
    text-align: left;
    font-weight: bold;
  }
  .access_sec_car_inner p {
    font-size: 14px;
  }
}

/* 電車・バスをご利用の方  */

.access_sec_train_sec {
  padding: 40px 0 80px;
  background-color: #eef2ec;
}

.access_sec_train_inner {
  padding: 0 4%;
}

.access_sec_train_inner ul li section {
  background-color: #fff;
  border-radius: 10px;
  border: 3px solid #456800;
}

.access_sec_train_inner ul li {
  text-align: center;
}

.access_sec_train_inner ul li h4 {
  margin-bottom: 1rem;
  display: inline-block;
  padding-left: 45px;
  background-image: url(/img/access_train_illust_ttl.png);
  background-size: 42px;
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.access_sec_train_inner ul li:first-of-type {
  margin-bottom: 60px;
}

.access_sec_train_inner ul li:nth-of-type(2) {
  margin-bottom: 60px;
}

.access_sec_train_inner ul li section h5 {
  background-color: #456800;
  color: #fff;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  text-align: left;
  padding-left: 42px;
  letter-spacing: 0.05em;
}

.access_sec_train_inner ul li section div.access_train_method {
  padding: 22px 5% 35px;
  display: flex;
  gap: 69px;
  text-align: left;
}

.access_sec_train_inner ul li section div.access_train_method div p {
  font-weight: bold;
  font-size: 18px;
  background-repeat: no-repeat;
  background-position: left center;
  letter-spacing: 0.05em;
}

.access_sec_train_inner
  ul
  li
  section
  div.access_train_method
  div
  p:nth-of-type(2) {
  margin: 19px 0 25px;
  padding-left: 21px;
  background-image: url(/img/access_train_method_walk.png);
  background-size: 13px;
}

.access_sec_train_inner
  ul
  li
  section
  div.access_train_method
  div
  p:nth-of-type(3) {
  padding-left: 23px;
  background-image: url(/img/access_train_method_train.png);
  background-size: 16px;
}

.access_sec_train_inner
  ul
  li
  section
  div.access_train_method
  div
  p:nth-of-type(5) {
  padding-left: 23px;
  background-image: url(/facilities/img/access_train_method_bicycle.png);
  background-size: 21px;
}

/* ---成増駅--- */
.access_sec_train_inner ul li section div.access_train_method div p.third {
  text-align: right;
}

.access_sec_train_inner
  ul
  li
  section
  div.access_train_method
  div
  p.second:nth-of-type(2) {
  margin: 19px 0 25px;
  padding-left: 21px;
  background-image: url(/img/access_train_method_train.png);
  background-size: 13px;
}

.access_sec_train_inner
  ul
  li
  section
  div.access_train_method
  div
  p.third:nth-of-type(3) {
  padding-left: 23px;
  background-image: none;
  background-size: 16px;
}
/* ---成増駅ここまで--- */

.access_sec_train_inner
  ul
  li
  section
  div.access_train_method
  div
  p:nth-of-type(4) {
  text-align: right;
}
.access_sec_train_inner
  ul
  li
  section
  div.access_train_method
  div
  p:nth-of-type(6) {
  text-align: right;
}

.access_sec_train_inner ul li section div.access_train_method picture img {
  max-width: 317px;
}

.access_sec_train_inner ul li section div.access_train_method picture {
  display: block;
}

@media screen and (max-width: 768px) {
  .access_sec_train_sec {
    background-color: #fff;
    padding: 20px 0;
  }

  .access_sec_train_inner ul li section div.access_train_method {
    padding: 29px 3% 39px;
    display: flex;
    gap: 69px;
    text-align: left;
  }

  .access_sec_train_inner ul li:first-of-type {
    margin-bottom: 20px;
  }

  .access_sec_train_inner ul li:nth-of-type(2) {
    margin-bottom: 20px;
  }
}

/* 周辺情報 */

#access_sec_info {
  padding: 40px 0 60px;
}

.access_sec_info_inner h3 {
  margin-bottom: 1rem;
}

.access_sec_info_inner h3 img {
  width: 65px;
}

.access_sec_info_inner h4 img {
  width: 118px;
}

.access_sec_info_inner section {
  display: flex;
  justify-content:flex-start;
  margin-top: 40px;
  background-image: url(/img/Watercolor_pink.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 252px;
  gap: 40px;
}

.access_sec_info_inner section picture {
  width: 60%;
}

/* .access_sec_info_inner section div {
  width: 36%;
} */

.access_sec_info_inner section div p {
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.access_sec_info_inner section div p:first-of-type {
  margin-bottom: 1.5rem;
}

.access_sec_info_inner h5 {
  margin: 40px 0;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.access_sec_info_inner ul {
  display: flex;
  /* justify-content: space-between; */
  margin-top: 20px;
  gap: 20px;

}

.access_sec_info_inner ul li {
  width: 39.3%;
}
.access_sec_info_inner_flex {
  width: 154%;
}
.room_list {
  display: flex;
  margin: 60px 0 0;
  flex-wrap: wrap;
  gap:10px 15px;
}
.room_list p {
  display: inline-block;
  height: 40px;
  line-height: 40px !important;
  background: #e6e6e6;
  border-left: 8px solid #c4c4c4;
  padding: 0 10px;
  box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 0 !important;
}
.room_list li {
  width: auto !important;
}

@media screen and (max-width: 768px) {
  .access_sec_info_inner h4 img {
    width: 99px;
  }

  .access_sec_info_inner section {
    flex-direction: column;
    margin-top: 30px;
    gap: unset;
  }

  .access_sec_info_inner section picture,
  .access_sec_info_inner section div {
    width: 100%;
  }

  .access_sec_info_inner h3 {
    margin-bottom: 0.5rem;
  }

  .access_sec_info_inner ul {
    flex-wrap: wrap;
    gap: 5px;
    margin: 40px 0 0;
  }

  .access_sec_info_inner ul li {
    width: 49%;
    margin-bottom: 5px;
  }

  #access_sec_info {
    padding: 20px 0 45px;
  }

  .access_sec_info_inner h5 {
    margin: 30px 0 20px;
    font-size: 20px;
  }

  .access_sec_train_inner ul li section div.access_train_method picture img {
    max-width: 233px;
  }

  .access_sec_info_inner section {
    background-image: none;
  }

  .access_sec_info_inner section div {
    background-image: url(/img/Watercolor_pink.png);
    background-repeat: no-repeat;
    background-size: 186px;
    background-position: top 30px right;
  }
  .room_list {
    margin: 45px 0 0;
    gap: 10px !important;

  }
  .room_list p {
    font-size: 12px;
  }

}

/*========================
　　居室
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_space {
  background: url(/img/main_bg_space.jpg) center / cover;
}

.main_bg_space .main_bg_inner h1 img {
  width: 106px;
}

.main_bg_space .main_bg_inner {
  width: 250px;
}

@media screen and (max-width: 768px) {
  .main_bg_space {
    background: url(/img/sp/main_bg_space_sp.jpg) center top / cover;
    /* padding: 55px; */
  }

  .main_bg_space .main_bg_inner h1 img {
    width: 48px;
  }

  .main_bg_space .main_bg_inner h2 img {
    width: 119px;
  }
}

/* 心地よく安心して過ごせる */

#space_sec_top {
  padding: 40px 0;
}
#space_sec_top h1 {
  text-align: center;
  margin-bottom: 40px;
}
#space_sec_top h1 img {
  width: 106px;
}
.space_sec_top_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.space_sec_top_inner picture {
  width: 60%;
}

.space_sec_top_inner div {
  width: 33%;
  letter-spacing: 0.1em;
}

.space_sec_top_inner h3 {
  margin-bottom: 40px;
  /* font-size: 22px; */
  font-size: clamp(17px, 2vw, 22px);
}

@media screen and (max-width: 768px) {
  #space_sec_top {
    padding: 20px 0 40px;
  }

  .space_sec_top_inner {
    flex-direction: column;
    background-image: url(/facilities/img/sp/bg_ellipse_01.png);
    background-size: 186px;
    background-repeat: no-repeat;
    background-position: right 4% bottom 10%;
    padding: 0;
  }

  .space_sec_top_inner picture,
  .space_sec_top_inner div {
    width: 100%;
  }

  .space_sec_top_inner picture {
    padding-right: 4%;
  }

  .space_sec_top_inner div {
    padding: 0 4%;
  }

  .space_sec_top_inner h3 {
    margin: 30px 0;
    font-size: 20px;
  }
}

/* 単身タイプの部屋 */

#space_sec_second {
  background-color: #eef2ec;
  padding: 60px 0;
}

.space_sec_second_inner section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.1em;
}

.space_sec_second_inner {
  position: relative;
}

img.space_sec_second_tree {
  position: absolute;
  width: 140px;
  top: -165px;
  right: 0;
}

@media screen and (max-width: 940px) {
  img.space_sec_second_tree {
    display: none !important;
  }
}

.space_sec_second_inner section div {
  width: 36%;
  position: relative;
}
.space_sec_second_list {
  width: 39% !important;
}
.space_sec_second_inner section .space_sec_second_pic {
  width: 60%;
  display: block;
}

.space_sec_second_inner section:nth-of-type(2) .space_sec_second_pic {
  width: 53%;
}

.space_sec_second_inner section:nth-of-type(2) a {
  max-width: 390px;
  margin: 30px auto 40px;
  height: 80px;
  border-radius: 40px;
  font-size: 24px;
  border: #456800 3px solid;
  box-shadow: 5px 6px 1px rgba(0, 0, 0, 16%);
  background-size: 16px 20px;
  background-position: right 30px center;
}

.space_sec_second_inner section:first-of-type div span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f8c5ac;
  margin: 0 auto 30px;
  position: absolute;
  top: -60px;
  left: 35%;
}

.space_sec_second_inner section:first-of-type {
  margin-bottom: 40px;
}

.space_sec_second_inner section:first-of-type h4 {
  margin: 40px 0 30px;
  /* font-size: 22px; */
  font-size: clamp(17px, 2vw, 22px);
}

.space_sec_second_inner section h3 img {
  width: 273px;
}


.space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_mm_list li {
  padding-right: 10px;
}

.space_sec_second_inner
  section:nth-of-type(2)
  ul.space_sec_second_mm_list
  li
  span {
  font-size: 30px;
  font-weight: bold;
  vertical-align: sub;
}
.btn_top_feature {
  max-width: 220px;
  font-weight: bold;
  display: table;
  /* max-width: 300px; */
  width: 100%;
  /* line-height: 43px; */
  height: 43px;
  color: #456800;
  border: #456800 2px solid;
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background-image: url(/kawagoe/img/btn_arrow.png);
  background-size: 11px 14px;
  background-position: right 20px center;
}

.space_sec_second_inner section:nth-of-type(2) a {
  max-width: 390px;
  margin: 30px auto 40px;
  height: 80px;
  border-radius: 40px;
  font-size: 24px;
  border: #456800 3px solid;
  box-shadow: 5px 6px 1px rgba(0, 0, 0, 16%);
  background-size: 16px 20px;
  background-position: right 30px center;
}
.btn_top_feature span {
  display: table-cell;
  vertical-align: middle;
}
.space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_tab_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 10px 15px;
  margin-bottom: 10px;
}

.space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_tab_list li {
  height: 40px;
  line-height: 40px;
  background: #e6e6e6;
  border-left: 8px solid #c4c4c4;
  padding: 0 10px;
  box-shadow: 2px 3px 2px rgba(0, 0, 0, 16%);
  /* margin-bottom: 10px; */
  font-size: clamp(12px, 1.25vw, 16px);
}

/* .space_sec_second_inner
  section:nth-of-type(2)
  ul.space_sec_second_tab_list
  li:nth-of-type(odd) {
  width: 38%;
  margin-right: 15px;
} */



.room_detail {
  background-color: #fff;
  padding: 40px;
  margin: 60px 0 0px;
  border-radius: 20px;
}
.room_detail_flex {
  display: flex;
  justify-content: center;
}
.room_detail h3 {
  text-align: center;
}
.room_detail_text {
  text-align: center;
  margin: 20px 0;
}
.room_detail_step {
  text-align: center;
}
.room_detail_stepText {
  color: #456800;
  font-size: 22px;
  margin-top: 10px;
}
.room_detail_arrow {
  padding: 54px 10px;
  width: 30px;
}
.room_pc {
  display: block;
  margin: 0 auto;
}
.room_sp{
  display: none;
}



@media screen and (max-width: 930px) and (min-width: 769px) {
  .space_sec_second_inner
    section:nth-of-type(2)
    ul.space_sec_second_tab_list
    li:nth-of-type(odd),
  .space_sec_second_inner
    section:nth-of-type(2)
    ul.space_sec_second_tab_list
    li:nth-of-type(2) {
    width: auto;
  }
}

@media screen and (max-width: 900px) and (min-width: 769px) {
  .space_sec_second_inner section:nth-of-type(2) a span {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .space_sec_second_inner section h3 img {
    width: 176px;
  }

  .space_sec_second_inner {
    padding: 0;
  }

  #space_sec_second {
    padding: 30px 0 40px;
  }

  .space_sec_second_inner section {
    flex-direction: column;
  }

  .space_sec_second_inner section div,
  .space_sec_second_inner section picture {
    width: 100% !important;
  }

  .space_sec_second_inner section:first-of-type {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
  /* 
  .space_sec_second_h3_sp h3 {
    margin-bottom: 1rem;
  } */

  .space_sec_second_inner section:first-of-type div,
  .space_sec_second_inner section:nth-of-type(2) {
    padding: 0 4%;
  }

  .space_sec_second_inner section h3 {
    padding-left: 37px;
    position: relative;
    margin-top: 30px;
  }
  .space_sec_second_ttl_h3_sp {
    color: #456800;
  }
  .space_sec_second_inner section h3::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f8c5ac;
    position: absolute;
    left: 0;
    /* top: 10%; */
  }

  .space_sec_second_inner section:first-of-type h4 {
    margin: 20px 0 30px;
    font-size: 20px;
  }

  .space_sec_second_mm_list li span {
    font-size: 22px !important;
    vertical-align: baseline !important;
  }

  .space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_mm_list {
    margin-top: 20px;
    justify-content: space-around;
  }

  /* 
    .space_sec_second_inner section:nth-of-type(2) a {
        max-width: 195px;
        margin: 30px auto;
        height: 40px;
        border-radius: 40px;
        font-size: 14px;
        border: #456800 2px solid;
        box-shadow: 4px 5px 1px rgba(0, 0, 0, 16%);
        background-size: 10px 13px;
        background-position: right 20px center;
        letter-spacing: 0.15em;
    } */
    .space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_tab_list {
      gap: 10px;
    }
  .space_sec_second_inner
    section:nth-of-type(2)
    ul.space_sec_second_tab_list
    li {
    height: 30px;
    line-height: 30px;
    background: #e6e6e6;
    border-left: 6px solid #c4c4c4;
    font-size: 12px;
  }
  /* .space_sec_second_inner
    section:nth-of-type(2)
    ul.space_sec_second_tab_list
    li:nth-of-type(odd) {
    margin-right: 10px;
  } */
  .room_detail_flex {
    display: block;
  }

  .room_detail {
    margin:40px 4% 0px;
    padding:20px 15px;
  }
  .room_detail_text {
    font-size: 16px;
    line-height: 1.6;
    
  }
  .room_detail_text br.sp_only {
    display: none;
  }
  .room_detail_stepText {
    font-size: 20px;
    margin: 20px 0 0;
    font-weight: bold;
  }
  .room_detail_arrow {
    padding: 10px 0;
    transform: rotate(90deg);
    text-align: center;
    margin: 0 auto;
    width: 15px;
  }
  .room_pc {
    display: none;
  }
  .room_sp{
    display: block;
  }

}

@media screen and (max-width: 500px) {
  .space_sec_second_inner section:nth-of-type(2) a {
    max-width: 195px;
    margin: 30px auto;
    height: 40px;
    border-radius: 40px;
    font-size: 14px;
    border: #456800 2px solid;
    box-shadow: 4px 5px 1px rgba(0, 0, 0, 16%);
    background-size: 10px 13px;
    background-position: right 20px center;
    letter-spacing: 0.15em;
  }
}

@media screen and (min-width: 500px) and (max-width: 768px) {
  .space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_tab_list {
    max-width: 100%;
  }

  .space_sec_second_inner
    section:nth-of-type(2)
    ul.space_sec_second_tab_list
    li:nth-of-type(odd) {
    width: auto;
  }

  .space_sec_second_inner
    section:nth-of-type(2)
    ul.space_sec_second_tab_list
    li:nth-of-type(2) {
    width: auto;
    margin-right: 15px;
  }
}

/* 居室の特徴 */

#space_sec_feature {
  padding: 60px 0;
  /* background-color: #EEF2EC; */
}

.space_sec_feature_inner h3 img {
  width: 150px;
}

.space_sec_feature_inner h3 {
  margin-bottom: 30px;
}

.space_sec_feature_inner ul li img {
  display: block;
}

.space_sec_feature_inner ul {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.1em;
}

.space_sec_feature_inner ul li {
  width: 22%;
}

.space_sec_feature_inner ul li h4 {
  margin: 20px 0;
  text-align: center;
}

.space_sec_feature_inner ul li h4 img {
  height: 20px;
  display: inline;
}

@media screen and (max-width: 768px) {
  .space_sec_feature_inner h3 img {
    width: 126px;
  }

  #space_sec_feature {
    padding: 40px 0;
  }

  .space_sec_feature_inner ul {
    flex-direction: column;
  }

  .space_sec_feature_inner ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 50px;
  }

  .space_sec_feature_inner ul li:last-of-type {
    margin-bottom: 0;
  }

  .space_sec_feature_inner ul li h4 {
    order: -1;
    width: 100%;
    margin-top: 0;
    margin-bottom: 28px;
  }

  .space_sec_feature_inner ul li div {
    width: 49%;
  }

  .space_sec_feature_inner ul li p {
    width: 45%;
    letter-spacing: 0.05em;
    line-height: 1.75;
  }
}

@media screen and (min-width: 440px) and (max-width: 768px) {
  .space_sec_feature_inner ul li {
    width: 75%;
  }

  .space_sec_feature_inner ul li p {
    line-height: 2;
    font-size: clamp(15px, 3vw, 20px);
  }
}

@media screen and (max-width: 600px) {
  .space_sec_feature_inner ul li {
    width: 100%;
  }
}

/*========================
　　共用部分
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_com_facilities {
  background: url(/img/main_bg_com_facilities.jpg) center / cover;
}

#common_facilities_sec_top h1 {
  text-align: center;
  margin-bottom: 40px;
}
#common_facilities_sec_top h1 img {
  width: 152px;
}

@media screen and (max-width: 768px) {
  .main_bg_com_facilities {
    background: url(/img/sp/main_bg_com_facilities_sp.jpg) center top / cover;
    /* padding: 55px; */
  }

  .main_bg_com_facilities .main_bg_inner h1 img {
    width: 101px;
  }

  .main_bg_com_facilities .main_bg_inner h2 img {
    width: 165px;
  }
}

/* メインコンテンツ */

#common_facilities_sec_top {
  padding: 40px 0;
}

.common_facilities_sec_top_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url(/img/Watercolor_pink.png);
  background-position: top right 4%;
  background-repeat: no-repeat;
  background-size: 252px 247px;
}

.common_facilities_sec_top_inner picture {
  width: 60%;
}

.common_facilities_sec_top_inner div {
  width: 36%;
  letter-spacing: 0.1em;
}

.common_facilities_sec_top_inner div h3 {
  font-size: 22px;
  margin-bottom: 40px;
}

@media screen and (min-width: 769px) and (max-width: 800px) {
  .common_facilities_sec_top_inner div h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .common_facilities_sec_top_inner {
    flex-direction: column;
    background-position: bottom 0% right 4%;
    background-size: 170px;
   
  }

  .common_facilities_sec_top_inner picture,
  .common_facilities_sec_top_inner div {
    width: 100%;
  }

  .common_facilities_sec_top_inner picture {
    padding-right: 4%;
  }

  #common_facilities_sec_top {
    padding: 20px 0;
  }

  .common_facilities_sec_top_inner {
    padding: 0;
  }

  .common_facilities_sec_top_inner div {
    padding: 0 4%;
    margin-top: 30px;
    font-size: 20px;
  }

  .common_facilities_sec_top_inner div h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .common_facilities_sec_top_inner div p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* 共用施設の紹介 */

#common_facilities_sec_intro {
  padding: 40px 0 60px;
}
.facilities_sp {
  display: none;
}
.common_facilities_sec_intro_inner {
  letter-spacing: 0.1em;
  background-image: url(/img/Watercolor_pink.png), url(/img/Watercolor_pink.png);
  background-repeat: no-repeat;
  background-size: max(25vw, 252px), max(36vw, 433px);
  background-position: right -20px top 60px, left -50px bottom 200px;
}

.common_facilities_sec_intro_inner section:first-of-type {
  /* max-width: 1000px; */
  margin: 0 auto;
  position: relative;
}

img.com_fac_intro_tree {
  position: absolute;
  width: 140px;
  right: 14%;
  top: -47.5px;
}

.common_facilities_sec_intro_inner section:first-of-type picture {
  display: block;
  width: calc(100% + 38vh);
  margin: 0 0 0 -38vh;
}

.common_facilities_sec_intro_inner section:first-of-type picture img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 20px 100px 0;
}
.common_facilities_bg {
  background-image: url(/facilities/img/com_faci_middle_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 86.2vw;
  height: 600px;
  background-position: center;
  border-radius: 0 20px 100px 0;
}
.common_facilities_sec_intro_inner h3 {
  text-align: center;
  margin-bottom: 29px;
}

.common_facilities_sec_intro_inner h3 img {
  width: 65px;
}

.common_facilities_sec_intro_inner h4 img {
  width: 211px;
}
.common_facilities_sec_intro_inner section {
  margin-top: 80px;
}

.common_facilities_sec_intro_inner section div.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common_facilities_sec_intro_inner section h4 img {
  text-align: center;
}
.common_facilities_sec_intro_inner section div.wrapper div:nth-of-type(2) {
  width: 60%;
}

.common_facilities_sec_intro_inner section div.wrapper div:first-of-type {
  width: 36%;
}

.common_facilities_sec_intro_inner h4,
.common_facilities_sec_intro_inner h5 {
  font-size: 22px;
}

.common_facilities_sec_intro_inner h4 {
  margin-bottom: 25px;
  color: #456800;
  /* text-align: center; */
}

.common_facilities_sec_intro_inner h5 {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .common_facilities_sec_intro_inner section:first-of-type {
    padding-right: 4%;
  }
}

@media screen and (min-width: 769px) and (max-width: 870px) {
  .common_facilities_sec_intro_inner h5 {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .common_facilities_sec_intro_inner h4 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .common_facilities_sec_intro_inner section:first-of-type picture {
    width: 100%;
    margin: 0;
  }

  .common_facilities_sec_intro_inner section:first-of-type picture img {
    border-radius: 0;
  }
  .common_facilities_sec_intro_inner section {
    margin-top: 30px;
  }
  .common_facilities_sec_intro_inner section div.wrapper {
    flex-direction: column;
  }

  .common_facilities_sec_intro_inner section div.wrapper div:first-of-type,
  .common_facilities_sec_intro_inner section div.wrapper div:nth-of-type(2) {
    width: 100%;
  }

  .common_facilities_sec_intro_inner section div.wrapper div:first-of-type p {
    line-height: 1.8;
  }

  .common_facilities_sec_intro_inner section div.wrapper div:nth-of-type(2) {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }

  /* .common_facilities_sec_intro_inner
    section
    div.wrapper
    div:nth-of-type(2)
    picture,
  .common_facilities_sec_intro_inner
    section
    div.wrapper
    div:nth-of-type(2)
    figure {
    width: 49%;
  } */

  .common_facilities_sec_intro_inner
    section
    div.wrapper
    div:nth-of-type(2)
    picture {
    display: block;
  }

  #common_facilities_sec_intro {
    padding: 20px 0 40px;
  }

  .common_facilities_sec_intro_inner {
    background-image: none;
  }

  .common_facilities_sec_intro_inner h3 img {
    width: 172px;
  }

  .common_facilities_sec_intro_inner h3 {
    margin-bottom: 20px;
  }

  .common_facilities_sec_intro_inner h4 {
    padding-left: 37px;
    font-size: 18px;
    position: relative;
    margin-bottom: 20px;
  }

  .common_facilities_sec_intro_inner h4::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ffed61;
    position: absolute;
    left: 0;
  }

  .common_facilities_sec_intro_inner h5 {
    margin-bottom: 30px;
    font-size: 20px;
  }
}

/* 食堂・廊下 */

.common_facilities_sec_dining_inner ul {
  display: flex;
  justify-content: space-between;
}

#common_facilities_sec_dining {
  padding: 60px 0;
  background-color: #eef2ec;
  letter-spacing: 0.1em;
}

.common_facilities_sec_dining_inner ul li {
  width: 49%;
}

.common_facilities_sec_dining_inner h3 {
  color: #456800;
  font-size: 22px;
  margin: 10px 0 5px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .common_facilities_sec_dining_inner ul {
    flex-direction: column;
  }

  .common_facilities_sec_dining_inner ul li {
    width: 100%;
  }

  .common_facilities_sec_dining_inner ul li:first-of-type {
    margin-bottom: 30px;
  }

  #common_facilities_sec_dining {
    padding: 0px 0 30px;
  }

  .common_facilities_sec_dining_inner ul li h3 {
    font-size: 18px;
    margin: 12px 0;
    letter-spacing: 0.1em;
  }
  .common_facilities_sec_dining_inner h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px;
    padding-left: 37px;
    position: relative;
  }
  .common_facilities_sec_dining_inner h3::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f8c5ac;
    position: absolute;
    left: 0;
  }
  .common_facilities_sec_dining_inner p {
    margin-bottom: 10px;
  }
}

/* リハビリ室*/

#common_facilities_sec_rehab {
  padding: 60px 0;
  letter-spacing: 0.1em;
}

.common_facilities_sec_rehab_inner {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.1em;
  max-width: 1000px;
  margin: 0 auto;
}

.common_facilities_sec_rehab_inner picture {
  width: 60%;
  display: block;
}

.common_facilities_sec_rehab_inner h3 {
  color: #456800;
  font-size: 22px;
  margin-bottom: 0.5rem;
}

.common_facilities_sec_rehab_inner p {
  margin-bottom: 1rem;
}

.common_facilities_sec_rehab_inner div.com_fac_rehab_insec {
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.com_fac_rehab_insec div:nth-of-type(2) picture {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .common_facilities_sec_rehab_inner {
    padding: 0 4%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .common_facilities_sec_rehab_inner picture img {
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
  }
}

@media screen and (max-width: 768px) {
  .common_facilities_sec_rehab_inner {
    flex-direction: column-reverse;
    padding: 0;
  }

  .common_facilities_sec_rehab_inner picture {
    width: 100%;
  }

  .common_facilities_sec_rehab_inner div.com_fac_rehab_insec {
    width: 100%;
    padding: 0 4%;
    margin-top: 20px;
  }

  #common_facilities_sec_rehab {
    padding: 0 0 30px 0;
  }

  .common_facilities_sec_rehab_inner picture img {
    border-radius: 0;
  }

  .common_facilities_sec_rehab_inner h3 {
    padding-left: 37px;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
  }

  .common_facilities_sec_rehab_inner h3::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #b9d79c;
    position: absolute;
    left: 0;
  }

  .common_facilities_sec_rehab_inner p {
    margin-bottom: 20px;
    line-height: 1.8;
  }

  .com_fac_rehab_insec div:nth-of-type(2) {
    display: flex;
    justify-content: space-between;
  }

  /* .com_fac_rehab_insec div:nth-of-type(2) picture,
  .com_fac_rehab_insec div:nth-of-type(2) figure {
    width: 49%;
  } */
}

/* 談話コーナー */

#common_facilities_sec_disc {
  background-color: #eef2ec;
  padding: 60px 0;
}

.common_facilities_sec_disc_inner section:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.1em;
}

.common_facilities_sec_disc_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.common_facilities_sec_disc_inner section:first-of-type figure {
  width: 60%;
}

.common_facilities_sec_disc_inner figure figcaption {
  color: #456800;
  font-weight: bold;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.common_facilities_sec_disc_inner div {
  width: 36%;
}

.common_facilities_sec_disc_inner h3 {
  font-size: 22px;
  color: #456800;
}

.common_facilities_sec_disc_inner h4 {
  font-size: 22px;
  margin: 40px 0;
}

.common_facilities_sec_disc_inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.common_facilities_sec_disc_inner ul li {
  width: 32%;
}

@media screen and (max-width: 1100px) {
  .common_facilities_sec_disc_inner {
    padding: 0 4%;
  }
}

@media screen and (min-width: 769px) and (max-width: 870px) {
  .common_facilities_sec_disc_inner h4 {
    font-size: 19px;
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .common_facilities_sec_disc_inner section:first-of-type {
    flex-direction: column;
  }

  .common_facilities_sec_disc_inner section:first-of-type figure {
    width: 100%;
  }

  .common_facilities_sec_disc_inner figure figcaption {
    text-align: right;
    padding-right: 4%;
  }

  .common_facilities_sec_disc_inner div {
    width: 100%;
    margin-top: 1rem;
    padding: 0 4%;
  }

  .common_facilities_sec_disc_inner div p {
    line-height: 1.8;
  }

  .common_facilities_sec_disc_inner {
    padding: 0;
  }

  #common_facilities_sec_disc {
    padding: 0 0 14px 0;
    /* background-color: #fff; */
  }

  .common_facilities_sec_disc_inner h3 {
    font-size: 18px;
    padding-left: 37px;
    position: relative;
  }

  .common_facilities_sec_disc_inner h3::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f8c5ac;
    position: absolute;
    left: 0;
  }

  .common_facilities_sec_disc_inner h4 {
    font-size: 20px;
    margin: 20px 0 30px;
  }

  .common_facilities_sec_disc_inner ul {
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 0 4%;
  }

  .common_facilities_sec_disc_inner ul li {
    width: 49%;
    margin-bottom: 1rem;
  }

  .common_facilities_sec_disc_inner ul li img {
    border-radius: 20px;
    max-height: 229px;
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .common_facilities_sec_disc_inner figure figcaption {
    font-size: 12px;
  }
}

/* 最下部セクション */

#common_facilities_sec_bottom {
  padding: 60px 0 80px;
  letter-spacing: 0.1em;
}

.common_facilities_sec_bottom_inner section:first-of-type {
  margin-bottom: 35px;
}

.common_facilities_sec_bottom_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.common_facilities_sec_bottom_inner ul {
  display: flex;
  justify-content: space-between;
}

.common_facilities_sec_bottom_inner ul li {
  width: 32%;
}

.common_facilities_sec_bottom_inner ul li figure figcaption {
  color: #456800;
  font-weight: bold;
  margin-top: 0.25rem;
}

#common_facilities_sec_bottom p {
  margin-top: 0.25rem;
}

@media screen and (max-width: 1100px) {
  .common_facilities_sec_bottom_inner {
    padding: 0 4%;
  }
}

@media screen and (max-width: 768px) {
  .common_facilities_sec_bottom_inner section:nth-of-type(2) {
    background-color: #eef2ec;
  }

  .common_facilities_sec_bottom_inner {
    padding: 0;
  }

  #common_facilities_sec_bottom {
    padding: 0;
  }

  .common_facilities_sec_bottom_inner section {
    padding: 40px 0;
  }

  .common_facilities_sec_bottom_inner ul {
    padding: 0 4%;
    flex-direction: column;
  }

  .common_facilities_sec_bottom_inner ul li {
    width: 100%;
  }

  .common_facilities_sec_bottom_inner ul li h3 {
    font-size: 18px;
    margin-top: 30px;
    color: #456800;
    padding-left: 37px;
    position: relative;
  }

  .common_facilities_sec_bottom_inner ul li h3::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #b9d79c;
    position: absolute;
    left: 0;
  }

  .common_facilities_sec_bottom_inner ul li h4 {
    font-size: 20px;
    margin: 15px 0 20px;
  }

  .common_facilities_sec_bottom_inner ul li:last-of-type {
    display: flex;
    justify-content: space-between;
    /* margin-top: 30px; */
  }

  .common_facilities_sec_bottom_inner ul li:last-of-type img {
    display: block;
    width: 49%;
  }

  .common_facilities_sec_bottom_inner section:first-of-type {
    margin-bottom: 0;
  }

  .common_facilities_sec_bottom_inner
    section:nth-of-type(2)
    ul
    li:last-of-type
    img {
    width: 100%;
  }

  .common_facilities_sec_bottom_inner
    section:nth-of-type(2)
    ul
    li:last-of-type
    figure {
    width: 49%;
  }

  #common_facilities_sec_bottom p {
    margin: 5px 0 15px;
    line-height: 1.8;
  }

  .common_facilities_sec_bottom_inner ul li figure figcaption {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 440px) {
  .common_facilities_sec_bottom_inner ul li figure figcaption {
    font-size: 12px;
  }
}
