@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: #3A322E;
}

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: #6B4A3C66;
  transition: 0.3s ease-in-out;
}

.header_checked {
  background-color: #6B4A3C66;
}

.hover_clear:hover {
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

/*========================
TOPページ 
============================*/

/*----------------------
メインビジュアル 
-----------------------*/
.main_bg_top {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 135px;
}
.slider {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .main_bg_top {
    margin-top: 60px;
  }
}


.sp_only {
  display: none;
}


/*-----------------------------
TOP 住宅一覧
------------------------------*/

#top_first_section {
  padding: 120px 0;
  background-color: #FFFDE5;
  background-image: url(/img/top/top_bg_001.png);
  background-repeat: no-repeat;
  background-size: contain;
}
 @media screen and (min-width: 1200px) {
  #top_first_section{
    background-position: center;
  }
 }

.top_first_section_inner{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.top_title{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.top_title h1{
  color: #3A322E;
  font-size: clamp(18px, 2vw, 26px);;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.top_txt{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top_txt p{
  color: #3A322E;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 200%;
}


/*-----------------------------
top 輝の日常
------------------------------*/
#top_living_section{
  background-color: #FFFDE5;
}

.scr-img {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.scr-bg {
  background: url('/img/top/top_019.png') no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg_para:before {
  content: "";
  display: block;
  padding-top: 24%;
}

@media screen and (max-width: 768px){
  .bg_para:before{
    padding-top: 55%;
  }
}

.top_living_section_inner{
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0 40px;
  align-items: center;
}

.top_living_section_inner h4{
  color: #3A322E;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

ul.pic_search{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

ul.pic_search li {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: opacity 0.6s ease, transform .6s ease;
  transform: translateY(10px);
}

ul.pic_search li.is-show {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin: initial;
  transform: translateY(0);
}

.more-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

ul.pic_search li a{
  display: block;
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

ul.pic_search li a img:not(.search-marker){
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(
    0% 0%, 
    100% 0%, 
    100% 66%,
    75% 100%,
    0% 100%
  )
}

ul.pic_search li a img.search-marker{
  border-radius: 0px;
  position: absolute;
  right: 3%;
  bottom: 6%;
  z-index: 10;
}

/* もっと見るボタン */
#daily-more{
  display: flex;
  width: 220px;
  height: 60px;
  padding: 18px 60px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  border: 1px solid #6B4A3C;
  background: #FFF;
  color: #6B4A3C;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s;
}

/* もっと見るボタン */

.top_017{
  width: 100%;
}

/* モーダル全体（背景の暗い部分） */
.modal-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* モーダルが「開いた」状態のときだけ display: flex にする */
.modal-overlay.is-open {
  display: flex;
}

.modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 700px;
  padding: 40px 100px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

#modal-title {
  color: #3A322E;
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.modal-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

#modal-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
}

#modal-desc {
  color: #3A322E;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
  text-align: left;
}

#modal-close-btn{
  width: 220px;
  height: 60px;
  padding: 18px 60px;
  border-radius: 60px;
  border: 1px solid #6B4A3C;
  background: #FFF;
  color: #6B4A3C;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s;
}



/*-----------------------------
円樹の特徴
------------------------------*/


/* ボタン */
.btn_top_feature {
  display: flex;
  width: 220px;
  height: 60px;
  padding: 18px 10px;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  border-radius: 60px;
  border: 1px solid  #6B4A3C;
  background: #6B4A3C;
}

.btn_top_feature span {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 900px) and (min-width: 769px) {
  .btn_top_feature span {
    padding-right: 2rem;
    font-size: 14px;
  }
}


.top_feature_list {
  margin-bottom: 20px;
}

h4.h4_top_feature {
  margin: 20px 0;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {

  h4.h4_top_feature {
    margin: 0px 0 20px;
    line-height: 1;
    text-align: center;
  }

  .top_feature_list {
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
    max-width: 500px;
    margin: 0 auto 20px;
  }

  .top_feature_list div,
  .top_feature_list div.top_middle_pic {
    width: 48%;
  }

  .btn_top_feature {
    max-width: 300px;
    margin: 0 auto;
  }
}

/*-----------------------------
地域とのつながり/食へのこだわり
------------------------------*/
#top_features_section_01{
  background-image: url(/img/top/top_bg_002.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FFFDE5;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 120px;
}

.top_middle_inner_wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.top_middle_pic{
  text-align: center;
}

.top_middle_pic_visual{
  position: relative;
  display: inline-block;
}

.top_middle_pic img{
  border-radius: 428px;
}

.top_middle_pic img.top_17,.top_middle_pic img.top_18{
  border-radius: 0px;
  position: absolute;
}

.top_middle_pic img.top_17{
  top: -20px;
  transform: translateX(-450px);
  left: 100%;
}

.top_middle_pic img.top_18{
  top: -85px;
  left: 100%;
  transform: translateX(-75px);
}

.top_middle_txt{
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 39%;
}

.top_middle_txt h5{
  color: #3A322E;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
}

.top_middle_txt p{
  color: #3A322E;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

a.circ-arr{
  color: #6B4A3C;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 24px;
}

a.circ-arr img{
  width: 60px;
  height: 60px;
  padding: 18px;
  aspect-ratio: 1/1;
  border-radius: 60px;
  border: 1px solid #6B4A3C;
  background: #6B4A3C;
}

#top_features_section_02{
  background-color: #FFFEF5;
}

#top_features_section_02 .top_middle_inner_wrapper,#top_features_section_03 .top_middle_inner_wrapper{
  flex-direction: column;
}
#top_features_section_03{
  background-image: url(/img/top/top_bg_003.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;;
  background-color: #FFFDE5;
}

@media screen and (max-width: 768px){
  #top_features_section_03{
    background-size: 100% 40%;
  }
}


ul.feature{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 64px 0 40px;
}

ul.feature li{
  display: flex;
  flex-direction: column;
  width: 220px;
}

ul.feature li img{
  border-radius: 16px;
}

ul.feature li p{
  color: #3A322E;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

ul.feature li p.b{
  color: #6B4A3C;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  margin: 16px 0 8px;
}

.flow{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 144px 0 104px;
}

.flow li{
  border-radius: 16px;
  display: flex;
  width: 386px;
  padding-bottom: 24px;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  background: #FFF;
}

.flow li img.flow-img{
  border-radius: 16px 16px 0 0;
}

@media screen and (max-width: 768px){

  #top_features_section_01{
    gap: 120px;
    padding-bottom: 80px;
  }

  .top_middle_inner_wrapper{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .top_middle_pic,.top_middle_txt,.top_title,ul.feature li{
    width: 100%;
  }
  
  .top_middle_pic img.w304{
    width: 304px;
  }


  .top_features_section_inner:nth-child(even) .top_middle_inner_wrapper{
    flex-direction: column-reverse;
  }

  .top_middle_pic img.top_17{
    transform: translateX(-345px);
    width: 68px;
  }

  .top_middle_pic img.top_18{
    transform: translateX(-45px);
    width: 80px;
    top: -55px;
  }

  #top_features_section_02 .top_middle_inner_wrapper,#top_features_section_03 .top_middle_inner_wrapper{
    gap: 40px;
  }

  ul.feature{
    margin: 0;
  }

  ul.feature li{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  ul.feature li p{
    order: 3;
    width: 44%;
  }

  ul.feature li img{
    order: 2;
    width: 50%;
  }

  ul.feature li p.b{
    order: 1;
    width: 100%;
    margin: 0;
  }

  a.circ-arr{
    padding-right: 24px;
  }

  ul.pic_search li{
    width: 165px;
  }

  .modal-content{
    padding: 40px 20px;
    gap: 20px;
  }

  ul.pic_search li a img:not(.search-marker){
    clip-path: polygon(
      0% 0%,
      100% 0%,
      100% 56%,
      68% 100%,
      0% 100%
      )
  }
}

@media screen and (max-width: 450px){
  .flow li{
    width: 100%;
  }

}
@media screen and (max-width: 375px){
  .top_features_section_inner:nth-child(odd) .top_middle_inner_wrapper .top_middle_pic{
    text-align: end;
  }
  .top_features_section_inner:nth-child(even) .top_middle_inner_wrapper .top_middle_pic{
    text-align: left;
  }
}





/*-----------------------------
スタッフブログ 
------------------------------*/

#top_blog_section {
  padding: 60px 0;
  background-color: #eef2ec;
}

#top_blog_section h2 img {
  width: 209px;
}

#top_blog_section h2 img,
#top_blog_section h2 span {
  vertical-align: middle;
}

#top_blog_section h2 span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f8c5ac;
  margin-right: 1rem;
}

.top_blog_section_inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.top_blog_section_inner ul li {
  width: 23.5%;
}

.top_blog_list div.top_middle_pic {
  display: block;
  aspect-ratio: 4 / 3;
}

.top_blog_list div.top_middle_pic img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.top_blog_list div h3 {
  margin: 4px 0;
  font-size: 16px;
  color: #646464;
  font-weight: 600;
}

#top_blog_section a {
  margin: 40px auto 0;
}

.blog_flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  #top_blog_section {
    padding: 45px 0;
    background-color: #fff;
  }

  #top_blog_section h2 img {
    width: 150px;
  }

  #top_blog_section h2 span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f8c5ac;
    margin-right: 13px;
  }

  #top_blog_section h2 {
    text-align: left;
  }

  .slider_sp h3 {
    font-size: 11px;
    margin: 8px 0;
    letter-spacing: 0.06em;
    color: #646464;
  }

  .slider_sp p {
    font-size: 14px;
    margin: 8px 0;
  }

  #top_blog_section a {
    margin: 20px auto 0;
  }

  .blog_flex {
    display: initial;
  }
}

/*-----------------------------
ご入居様の声 
------------------------------*/

#top_voice_section {
  padding: 60px 0;
}

#top_voice_section h2 img {
  width: 207px;
}

#top_voice_section h2 span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffed61;
  margin-right: 1rem;
}

#top_voice_section h2 img,
#top_voice_section h2 span {
  vertical-align: middle;
}

.h3_sec_voice {
  color: #6B4A3C;
  font-size: 12px;
  margin: 1rem 0;
  letter-spacing: 0.4em;
}

.top_voice_section_inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.top_voice_section_inner ul li {
  width: 22%;
}

#top_voice_section a {
  margin: 48px auto 0;
}

@media screen and (max-width: 768px) {
  #top_voice_section h2 {
    text-align: left;
  }

  #top_voice_section h2 img {
    width: 147px;
  }

  #top_voice_section h2 span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ffed61;
    margin-right: 13px;
  }

  #top_voice_section {
    padding: 0px 0 45px;
  }

  .slider_sp h3.h3_sec_voice {
    font-size: 11px;
    margin: 8px 0;
    letter-spacing: 0.15em;
  }

  .slider_sp li p {
    font-size: 14px !important;
  }

  #top_voice_section a {
    margin: 20px auto 0;
  }
}

/*-----------------------------
アクセス
------------------------------*/

#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;
  /* height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative; */
}

.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;
  height: 90px;
  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(/kawagoe/img/main_bg_facilities.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(/img/sp/main_bg_concierge_sp.png) center top / cover;
    /* padding: 55px; */
  }
}

/*---------------------
コンシェルジュとは？TOP 
--------------------- */

#facilities_top_sec {
  padding: 40px 0;
  background-color: #eef2ec;
}

.facilities_top_sec_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.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;
}
.facilities_top_sec_imgarea {
  width: 60%;
}

.facilities_top_sec_txt {
  width: 36%;
}

.facilities_top_sec_txt p {
  letter-spacing: 0.1em;
}

.facilities_top_sec_imgarea div {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.facilities_top_sec_imgarea div img {
  width: 235px;
}

@media screen and (max-width: 768px) {
  .facilities_top_sec_inner {
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    padding-left: 0;
  }

  .facilities_top_sec_txt {
    width: 100%;
    padding-left: 4%;
  }

  .facilities_top_sec_imgarea {
    width: 100%;
  }

  img.Watercolor_pink_facilities_top {
    position: absolute;
    width: 186px;
    top: 45%;
    right: 4%;
    z-index: -1;
  }

  .facilities_top_sec_txt div {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
  }

  .facilities_top_sec_txt div img {
    width: calc((100% - 5px) / 2);
  }
}

@media screen and (max-width: 950px) and (min-width: 769px) {
  .facilities_top_sec_imgarea div {
    display: flex;
    gap: 20px;
  }

  .facilities_top_sec_imgarea div img {
    width: calc((100% - 20px) / 2);
  }
}

/*---------------------
コンシェルジュとは？middle 
--------------------- */

#facilities_middle_sec {
  padding: 60px 0 40px;
  background-color: #fff;
}

.facilities_middle_sec_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

img.icon_tree_facilities {
  position: absolute;
  width: 160px;
  top: -180px;
  right: 0;
}

.facilities_middle_sec_imgarea {
  width: 60%;
}

.facilities_middle_sec_txt {
  width: 36%;
}

.facilities_middle_sec_txt p {
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .facilities_middle_sec_inner {
    flex-direction: column-reverse;
  }

  #facilities_middle_sec {
    padding: 0px 0 40px;
  }

  .write_cut_bg_facilities {
    position: absolute;
    width: 100%;
    height: 120px;
    top: 0px;
    background: linear-gradient(to bottom right, #fff 50%, transparent 50%);
  }

  .facilities_middle_sec_imgarea {
    width: 100%;
    z-index: 10;
  }

  .facilities_middle_sec_txt {
    width: 100%;
    position: relative;
  }

  img.middle_tree_facilities {
    position: absolute;
    right: 0;
    top: 30px;
  }
}

@media screen and (max-width: 1000px) {
  img.icon_tree_facilities {
    width: 100px;
    top: -135px;
    right: 4%;
  }
}

/*========================
ご入居までの流れページ 
============================*/

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_flow {
  background: url(/img/flow/main_bg_flow.webp) center center / cover;
}

.main_bg_flow .main_bg_inner {
  width: 300px;
}

.main_bg_flow .main_bg_inner h1 img {
  width: 209px;
}

.main_bg_flow .main_bg_inner h2 img {
  width: 48px;
}

@media screen and (max-width: 768px) {

  .main_bg_flow .main_bg_inner {
    width: 250px;
  }

  .main_bg_flow .main_bg_inner h1 img {
    width: 187px;
  }

  .main_bg_flow .main_bg_inner h2 img {
    width: 40px;
  }
}

/*----------------------
メインコンテンツ 
-----------------------*/

.flow_wrapper {
  max-width: 800px;
  margin: 0 auto;
}

#flow_sec {
  padding: 80px 0 120px;
  background-image: url(/img/flow/flow_001.svg),
    url(/img/flow/flow_002.svg),
    url(/img/flow/flow_003.svg),
    url(/img/flow/flow_004.svg),
    url(/img/flow/flow_005.svg),
    url(/img/flow/flow_006.svg);
  background-repeat: no-repeat;
  background-position: top 200px right 2%, top 580px right 2%, top 700px right 11%, bottom 520px left 10%, bottom 280px left -5%, bottom 49px left 14%;
}


@media screen and (max-width: 1100px) {
  .flow_wrapper {
    padding: 0 4%;
  }
}

.flow_sec_txt p {
  color: #3A322E;
  text-align: center;
  font-size: clamp(15px, 2vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
}

.flow_sec_list {
  margin-top: 40px;
}

.flow_sec_list ul li {
  width: 100%;
  display: flex;
}

.flow_sec_list ul li section {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  /* padding-right: 76px; */
  gap: 24px;
  color: #6B4A3C;
  /* font-family: 'Zen Maru Gothic', serif; */
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: bold;
  width: 31%;
}

.flow_sec_list ul li section h3 span {
  display: block;
  letter-spacing: 0.4em;
  line-height: 1;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

.flow_sec_list ul li section h3 span:nth-of-type(2) {
  font-size: 60px;
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
}

.flow_sec_list ul li section h4 {
  letter-spacing: 0.2em;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.3;
}

.flow_sec_list ul li:nth-of-type(odd) {
  border-radius: 20px;
  background-color: #FFFDE5;
  display: flex;
  height: 160px;
  padding: 30px 30px 30px 72px;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.flow_sec_list ul li:nth-of-type(even) {
  background: url(/img/arr-dn.png) no-repeat center center /
    cover;
  background-size: 35px 28px;
  height: 46px;
}

.flow_sec_list ul li:nth-of-type(odd) p {
  padding: 16px 0 16px 30px;;
  border-left: 1px solid #6B4A3C;
  width: 67%;
  display: flex;
  align-items: center;
}

.flow_sec_list ul li:nth-of-type(odd) p span{
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.6px;
}

/* @media screen and (min-width: 1400px) {
    .flow_sec_list ul li section {
        padding-right: 3%;
    }
} */

@media screen and (max-width: 768px) {
  .flow_sec_list ul li {
    flex-direction: column;
  }

  .flow_sec_list ul li:nth-of-type(odd) {
    height: auto;
    background-color: #FFFDE5;
    border-radius: 10px;
    padding: 30px 30px 39px;
    gap: 0;
  }

  .flow_sec_list ul li:nth-of-type(5) {
    position: relative;
  }
/*
  img.flow_step3_icon {
    position: absolute;
    width: 65px;
    right: 20px;
    top: -37px;
  }*/

  .flow_sec_list ul li section {
    display: flex;
    align-items: flex-end;
    padding-right: 0;
    gap: 20px;
    width: 100%;
  }

  .flow_sec_list ul li:nth-of-type(odd) p {
    padding-left: 0;
    border-left: none;
    width: 100%;
    letter-spacing: 0.05em;
    margin-top: 18px;
    line-height: 1.8;
    padding: 0;
  }

  .flow_sec_img_area {
    margin-bottom: 25px;
  }

  .flow_sec_img_area h3 {
    font-size: 20px;
    margin-top: 35px;
  }

  .flow_sec_txt p {
    text-align: left;
  }

  #flow_sec {
    padding: 80px 0 100px;
    background-image: url(/img/flow/flow_001.svg),
      url(/img/flow/flow_002.svg),
      url(/img/flow/flow_003.svg),
      url(/img/flow/flow_004.svg),
      url(/img/flow/flow_005.svg),
      url(/img/flow/flow_006.svg);
    background-repeat: no-repeat;
    background-position: top 10px right -8%, top 100px right 30%, top 340px right 0%, bottom 450px left 20%, bottom 0px left 4%, bottom 13px left 38%;
  }

  .flow_sec_list ul li section h3 span {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  .flow_sec_list ul li section h3 span:nth-of-type(2) {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }

  .flow_sec_list ul li section h4 {
    font-size: 25px;
  }

  .flow_sec_list ul li:nth-of-type(even) {
    height: 48px;
  }
}

@media screen and (max-width: 500px) {
  #flow_sec {
    background-image: url(/img/flow/flow_001.svg),
      url(/img/flow/flow_003.svg),
      url(/img/flow/flow_004.svg),
      url(/img/flow/flow_006.svg);
    background-repeat: no-repeat;
    background-position: top 10px right -8%, top 340px right 0%, bottom 340px left 2%, bottom 2px left 2%;
    padding: 40px 0;
  }
}

/*========================
　　医療・介護
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_care {
  background: url(/img/main_bg_care.jpg) center / cover;
}

.main_bg_care .main_bg_inner h1 img {
  width: 126px;
}

.main_bg_care .main_bg_inner h2 img {
  width: 43px;
}

.main_bg_care .main_bg_inner {
  width: 250px;
}

@media screen and (max-width: 768px) {
  .main_bg_care {
    background: url(/img/sp/main_bg_care_sp.jpg) center top / cover;
    /* padding: 55px; */
  }

  .main_bg_care .main_bg_inner h2 img {
    width: 37px;
  }
}

/*--------------------------------
 見守りによる 安心感に包まれた暮らし
-----------------------------------*/

#care_sec_top {
  padding: 40px 0;
}

.care_sec_top_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.1em;
  background-image: url(/img/Watercolor_pink.png);
  background-repeat: no-repeat;
  background-size: 252px 247px;
  background-position: top right;
}

.care_sec_top_inner h3 {
  /* font-size: 22px; */
  font-size: clamp(20px, 2vw, 22px);
  margin-bottom: 27px;
}

.care_sec_top_inner div.top_middle_pic {
  display: block;
  width: 60%;
}

.care_sec_top_inner div {
  width: 36%;
}

.care_sec_top_inner div p:first-of-type {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .care_sec_top_inner {
    flex-direction: column;
    padding: 0;
    background-image: url(/img/Watercolor_pink.png);
    background-repeat: no-repeat;
    background-size: 186px 182px;
    background-position: bottom 20% right 4%;
  }

  .care_sec_top_inner div.top_middle_pic,
  .care_sec_top_inner div {
    width: 100%;
  }

  .care_sec_top_inner h3 {
    font-size: 20px;
    margin: 30px 0;
  }

  .care_sec_top_inner div p:first-of-type {
    margin-bottom: 0;
  }

  .care_sec_top_inner div p {
    line-height: 1.8;
  }

  .care_sec_top_inner div {
    padding: 0 4%;
  }

  #care_sec_top {
    padding: 30px 0;
  }
}

/*--------------------------------
 円樹の特徴
-----------------------------------*/

#care_sec_feature {
  /* background-color: #eef2ec; */
  padding: 40px 0 60px;
}

.care_sec_need_inner h3 img,
.care_sec_feature_inner h3 img {
  width: 65px;
  margin-bottom: 1rem;
}

.care_sec_feature_inner h4 img {
  width: 147px;
}

.care_sec_feature_inner ul {
  display: flex;
  justify-content: space-between;
}

.care_sec_feature_inner ul li {
  width: 32%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.care_sec_feature_inner ul li h5 {
  color: #6B4A3C;
  margin: 0.5rem 0;
  /* font-size: 20px; */
  font-size: clamp(17px, 2vw, 20px);
  letter-spacing: 0.1em;
}

.care_sec_feature_inner ul li p {
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .care_sec_feature_inner h4 img {
    width: 120px;
  }

  .care_sec_feature_inner ul {
    flex-direction: column;
  }

  .care_sec_feature_inner ul li {
    width: 100%;
    margin-top: 40px;
  }

  .care_sec_feature_inner ul li:first-of-type {
    margin-top: 0px;
  }

  .care_sec_feature_inner {
    padding: 0;
  }

  #care_sec_feature {
    padding: 0 0 40px;
  }

  .care_sec_feature_inner h4,
  .care_sec_feature_inner h3 {
    background-color: #fff;
  }

  .care_sec_feature_inner h4 {
    padding-bottom: 20px;
  }

  .care_sec_feature_inner ul li h5,
  .care_sec_feature_inner ul li p,
  .care_sec_feature_inner ul li div.top_middle_pic {
    padding: 0 4%;
  }

  .care_sec_feature_inner ul li p {
    line-height: 1.8;
  }

  .care_sec_feature_inner ul li:first-of-type div.top_middle_pic {
    padding: 0;
  }

  .care_sec_feature_inner ul li h5 {
    margin: 25px 0 17px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 420px) {
  .care_sec_feature_inner ul li h5 {
    text-align: left;
  }
}

/*--------------------------------
 住宅サービス
-----------------------------------*/

/* 共通 */

.care_sec h3 {
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #6B4A3C;
}

.care_sec_livser_inner {
  letter-spacing: 0.1em;
}

#care_sec_livser {
  padding: 55px 0 60px;
  background-color: #eef2ec;
}

.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: #6B4A3C;
  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 #6B4A3C;
    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 h4 {
  font-size: 22px;
  margin-bottom: 1rem;
}

.care_sec_coop_inner section {
  margin-bottom: 55px;
}

.care_sec_coop_inner section p {
  line-height: 1.7;
}

.care_sec_coop_inner section:last-of-type {
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  #care_sec_coop {
    padding: 40px 0;
  }

  .care_sec_coop_inner h4 {
    font-size: 18px;
    letter-spacing: 0.15em;
  }

  .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 {
    margin-bottom: 35px;
  }

  .care_sec_coop_inner section:not(section:first-of-type) h4 {
    color: #6B4A3C;
    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:nth-of-type(3) h4::before {
    background-color: #ffed61 !important;
  }

  .care_sec_coop_inner section address {
    letter-spacing: 0.05em;
    line-height: 2;
    font-size: 14px;
  }
}
/* ------------------------------
介護が必要になった場合
---------------------------------*/
#care_sec_need {
  padding: 60px 0 64px;
  letter-spacing: 0.1em;
}
.care_sec_need_inner h4 img {
  width: 284px;
}
.care_sec_need--lead {
  margin: 25px 0 0;
  font-weight: 300;
  text-align: left;
  padding: 0 4%;
}
.care_sec_need_inner--left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 55px auto 37px;
}
.care_sec_need_mark {
  max-width: 242px;
}
.care_sec_need_mark span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
  margin: 0 auto 35px;
}
.care_sec_need_mark span {
  background-color: #f8c5ac;
}
.care_sec_need__ttl h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 27px;
}
.care_sec_need__ttl--txt {
  margin-bottom: 20px;
}
.care_sec_need--attention {
  max-width: 800px;
  margin: 0 auto;
}
.care_sec_need--attention li {
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 3px;
  line-height: 28px;
}
.care_sec_need--attention p {
  margin: 10px auto 40px;
}
.care_sec_need--attention__indent {
  display: block;
  padding-left: 3.2rem;
}
.selfpay--attention {
  text-align: right;
  margin-top: 17px;
}
.care_sec_need--selfpay h3 {
  font-size: 22px;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #care_sec_need {
    padding: 40px 0;
  }
  .care_sec_need_inner--left {
    display: block;
    margin: 35px auto;
  }
  .care_sec_need__ttl h3 {
    position: relative;
    padding-left: 2rem;
    margin: 30px auto 20px;
  }
  .care_sec_need__ttl h3::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f8c5ac;
    position: absolute;
    top: 5px;
    left: 0;
  }
  .care_sec_need--attention li {
    text-indent: -3.3rem;
    padding-left: 3.1rem;
  }
  .care_sec_need--attention p {
    font-size: 12px;
    margin: 10px 0 35px;
  }
  .care_sec_need--selfpay h3 {
    background-color: #eef2ec;
    font-size: 16px;
    border-radius: 10px 10px 0 0;
    height: 60px;
    text-align: center;
    padding: 19.2px 0;
  }
  .selfpay--attention {
    text-align: left;
    font-size: 12px;
  }
}
/*--------------------------------
サービス付き高齢者向け住宅
-----------------------------------*/

#care_sec_middle {
  padding: 80px 0 0px;
  letter-spacing: 0.1em;
  background-color: #eef2ec;
}
.care_sec_middle_inner section:first-of-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.care_sec_middle_inner .care_sec_need_mark {
  max-width: 279px;
}
.care_sec_middle_inner .care_sec_need_mark span {
  background-color: #ffed61;
}
.care_sec_need_inner--left div.top_middle_pic,
.care_sec_middle_inner section:first-of-type div.top_middle_pic {
  width: 60%;
}

.care_sec_need__ttl,
.care_sec_middle_inner section:first-of-type div {
  width: 36%;
}

.care_sec_middle_inner section h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.care_sec_middle__txt {
  margin-bottom: 20px;
}
.care_sec_middle_inner section:nth-of-type(2) {
  margin-top: 35px;
}

.care_sec_middle_inner section:nth-of-type(2) p:nth-of-type(2) {
  letter-spacing: 0.05em;
  margin-top: 30px;
}

/* table */

.care_sec_need_inner table,
.care_sec_middle_inner section table {
  border-collapse: collapse;
  width: 100%;
}

.care_sec_need_inner table th,
.care_sec_middle_inner section table th {
  background-color: #6B4A3C;
  color: #fff;
  font-size: 18px;
  height: 60px;
  letter-spacing: 0.1em;
}

.care_sec_need_inner table td,
.care_sec_middle_inner section table td {
  background-color: #f2f2f2;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  height: 100px;
}
.care_sec_need_inner table td,
.care_sec_need_inner table th,
.care_sec_middle_inner section table td,
.care_sec_middle_inner section table th {
  border-left: 2px solid #fff;
}

.care_sec_need_inner table td:first-of-type,
.care_sec_need_inner table th:first-of-type,
.care_sec_middle_inner section table td:first-of-type,
.care_sec_middle_inner section table th:first-of-type {
  border-left: none;
}

.care_sec_middle_inner section:last-of-type p {
  text-align: right;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.care_sec_need_inner section:last-of-type div,
.care_sec_middle_inner section:last-of-type div {
  border: 2px solid #6B4A3C;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .care_sec_middle_inner section:first-of-type {
    flex-direction: column;
    background-position: bottom 10% right 4%;
    background-size: 186px 182px;
  }
  .care_sec_need__ttl,
  .care_sec_middle_inner section:first-of-type div.top_middle_pic,
  .care_sec_middle_inner section:first-of-type div {
    width: 100%;
  }
  .care_sec_need--selfpay table tr th,
  .care_sec_need--selfpay table tr td,
  .care_sec_middle_inner section table tr th,
  .care_sec_middle_inner section table tr td {
    height: 50px;
    color: #454545;
    font-size: 14px;
  }
  .care_sec_need--selfpay table tr th,
  .care_sec_middle_inner section table tr th {
    border-right: solid 2px #6B4A3C;
  }
  .care_sec_need--selfpay table tr:nth-of-type(odd) th,
  .care_sec_need--selfpay table tr:nth-of-type(odd) td,
  .care_sec_middle_inner section table tr:nth-of-type(odd) th,
  .care_sec_middle_inner section table tr:nth-of-type(odd) td {
    background-color: #eef2ec;
  }
  .care_sec_need--selfpay table tr:nth-of-type(even) th,
  .care_sec_need--selfpay table tr:nth-of-type(even) td,
  .care_sec_middle_inner section table tr:nth-of-type(even) th,
  .care_sec_middle_inner section table tr:nth-of-type(even) td {
    background-color: #fff;
  }
  .care_sec_need--selfpay:last-of-type
    div
    .care_sec_middle_inner
    section:last-of-type
    div {
    border: solid 2px #6B4A3C;
    border-radius: 9px;
    margin-top: 30px;
  }

  #care_sec_middle {
    padding: 40px 0 0px;
  }
  .care_sec_need_inner,
  .care_sec_middle_inner {
    padding: 0;
  }
  .care_sec_need__ttl,
  .care_sec_need--attention,
  .care_sec_need--selfpay,
  .selfpay--attention,
  .care_sec_middle_inner section:first-of-type div,
  .care_sec_middle_inner section:not(section:first-of-type) {
    padding: 0 4%;
  }

  .care_sec_middle_inner section h3 {
    font-size: 20px;
    margin: 30px 0 25px;
    position: relative;
  }
  .care_sec_middle_ttlArea h3 {
    padding-left: 2rem;
  }
  .care_sec_middle_ttlArea h3::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ffed61;
    position: absolute;
    top: 2px;
    left: 0;
  }
  .care_sec_middle_inner section p {
    line-height: 1.8;
  }

  .care_sec_middle_inner section:nth-of-type(2) h3 {
    margin: 35px 0 20px;
    text-align: center;
    background-color: #fff;
    height: 60px;
    line-height: 60px;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
  }

  .care_sec_middle_inner section:nth-of-type(2) p:nth-of-type(2) {
    margin-top: 20px;
    font-size: 12px;
    line-height: 2;
  }

  .care_sec_middle_inner section:last-of-type p {
    text-align: left;
    font-size: 12px;
  }

  .care_sec_middle_inner {
    background-image: none;
  }
}

/*--------------------------------
介護保険サービスを利用される流れ
-----------------------------------*/

#care_sec_flow {
  background-color: #eef2ec;
  padding: 74px 0 0px;
}

.care_sec_flow_inner h3 {
  margin-bottom: 35px;
}

.care_sec_flow_inner {
  letter-spacing: 0.1em;
}

.care_sec_flow_list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.care_sec_flow_list01,
.care_sec_flow_list02,
.care_sec_flow_list03 {
  position: absolute;
  /* width: 250px; */
  width: clamp(160px, 19vw, 220px);
  z-index: 10;
  left: 50%;
  transform: translateX(-70%);
}

.care_sec_flow_list01 {
  top: 25%;
}

.care_sec_flow_list02 {
  top: 55%;
}

.care_sec_flow_list03 {
  bottom: 10%;
}

.care_sec_flow_list section {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 70px;
  /* padding: 60px 46px 48px; */
  padding: 60px 4% 35px;
  position: relative;
}

.care_sec_flow_list section:first-of-type {
  width: 38%;
  letter-spacing: 0.05em;
  text-align: center;
}

.care_sec_flow_list section:first-of-type p {
  letter-spacing: 0.05em;
  text-indent: -1em;
  margin-top: 1rem;
  text-align: left;
  padding-left: 1em;
}

.care_sec_flow_list section:first-of-type h5 {
  /* font-size: 20px; */
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: 35px;
}

.care_sec_flow_list section:first-of-type h6 {
  font-size: 20px;
  margin: 26px 0;
}

.care_sec_flow_list section:first-of-type p:last-of-type {
  margin-top: 0;
  text-align: right;
}

.care_sec_flow_list section:nth-of-type(2) {
  width: 47%;
}

.care_sec_flow_list section h4 {
  /* font-size: 24px;  */
  font-size: clamp(18px, 2vw, 24px);
  border-radius: 10px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
}

.care_sec_flow_list section:first-of-type h4 {
  background-color: #f8c5ac;
  width: 68%;
}

.care_sec_flow_list section:nth-of-type(2) h4 {
  background-color: #b9d79c;
  width: 77%;
}

.care_sec_flow_list section:nth-of-type(2) div {
  background-color: #fff1ea;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 10px;
}

.care_sec_flow_list section:nth-of-type(2) div:first-of-type {
  margin-bottom: 40px;
  position: relative;
}

img.care_sec_flow_list04 {
  position: absolute;
  width: 122px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;
}

.care_sec_flow_list section:nth-of-type(2) div:first-of-type p {
  background-color: #f8c5ac;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  display: table;
  width: 100%;
  height: 33px;
  margin-top: 10px;
}

.care_sec_flow_list section:nth-of-type(2) div:first-of-type p span {
  display: table-cell;
  vertical-align: middle;
}

img.care_illust_person {
  width: 160px;
}

.care_sec_flow_inner_p {
  text-align: right;
  letter-spacing: 0.05em;
  font-size: clamp(12px, 1.25vw, 16px);
  margin-top: 18px;
  line-height: 1.75;
}

.care_sec_flow_inner_p_f {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .care_sec_flow_list section:nth-of-type(2) div:first-of-type {
    margin-bottom: 70px;
  }

  .care_sec_flow_list section:nth-of-type(2) div {
    margin-bottom: 30px;
  }

  .care_sec_flow_list section:nth-of-type(2) {
    padding-bottom: 0;
  }

  .care_sec_flow_list02 {
    top: 60%;
  }

  /* .care_sec_flow_list03 {
        bottom: 15%;
    } */
}

@media screen and (max-width: 840px) {
  .care_sec_flow_list section:nth-of-type(2) div {
    margin-bottom: 40px;
  }

  .care_sec_flow_list section:nth-of-type(2) {
    padding: 60px 2% 0;
  }
}

@media screen and (max-width: 800px) {
  .care_sec_flow_list section:nth-of-type(2) div {
    margin-bottom: 40px;
  }

  .care_sec_flow_list03 {
    bottom: 15%;
  }

  .care_sec_flow_list02 {
    top: 55%;
  }
}

@media screen and (max-width: 768px) {
  .care_sec_flow_list section h4 {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
  }

  .care_sec_flow_list {
    flex-direction: column;
  }

  .care_sec_flow_list section:first-of-type,
  .care_sec_flow_list section:nth-of-type(2) {
    width: 100%;
  }

  #care_sec_flow {
    padding: 57px 0 40px;
  }

  .care_sec_flow_inner h3 {
    margin-bottom: 27px;
  }

  .care_sec_flow_inner_p_f {
    line-height: 1.8;
  }

  .care_sec_flow_list section {
    margin-top: 60px;
    padding: 60px 4% 30px;
  }

  img.care_illust_person {
    width: 90px;
  }

  .care_sec_flow_list section:first-of-type h5 {
    margin-bottom: 15px;
  }

  .care_sec_flow_list section:first-of-type h6 {
    font-size: 16px;
    margin: 24px 0;
  }

  .care_sec_flow_list section:first-of-type p:last-of-type {
    margin-top: 1rem;
  }

  .care_sec_flow_list section:nth-of-type(2) div:first-of-type {
    margin-bottom: 55px;
  }

  .care_sec_flow_list section:nth-of-type(2) div {
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 1rem;
  }

  .care_sec_flow_list
    section:nth-of-type(2)
    div
    img:not(.care_sec_flow_list04) {
    width: 70%;
    display: block;
    margin: 0 auto;
  }

  img.care_sec_flow_list04 {
    width: 110px;
    bottom: -65px;
  }

  #care_illust_per_sp_area div img {
    display: block;
    width: 70%;
    min-width: 238px;
    margin: 0 auto;
  }

  #care_illust_per_sp_area {
    /* height: 250px; */
    padding: 74px 0 39px;
    margin-top: 30px;
  }

  .care_sec_flow_inner_p {
    text-align: left;
    line-height: 2;
  }

  .care_sec_flow_list section h4 {
    width: 60%;
  }

  .care_sec_flow_list section:nth-of-type(2) h4 {
    width: 83%;
  }

  .care_sec_flow_list section:nth-of-type(2) {
    position: relative;
    padding: 35px 4%;
  }

  .care_sec_flow_list section:nth-of-type(2) ul {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    max-width: 608px;
  }

  .care_sec_flow_list section:nth-of-type(2) ul li img {
    width: 80px;
  }

  .care_sec_flow_list section:nth-of-type(2) ul:nth-of-type(2) {
    position: absolute;
    width: 100%;
    z-index: 10;
    margin-top: 0;
    bottom: -110px;
    left: 0;
  }

  .care_sec_flow_list section:nth-of-type(2) ul:nth-of-type(2) img {
    width: 68px;
  }

  .care_sec_flow_list section:nth-of-type(2) div:first-of-type p {
    height: 27px;
    font-size: 13px;
    width: 70%;
    margin: 10px auto 0;
  }

  .care_sec_flow_list section:nth-of-type(2) div {
    margin-bottom: 30px;
  }

  .care_sec_flow_list section:nth-of-type(2) div:nth-of-type(2) {
    margin-bottom: 10px;
  }

  /* .care_sec_flow_list section:nth-of-type(2) {
        padding: 60px 2% 0;
    }  */
}

@media screen and (max-width: 440px) {
  .care_sec_flow_list section:nth-of-type(2) div:first-of-type p {
    width: 100%;
  }

  .care_sec_flow_list
    section:nth-of-type(2)
    div
    img:not(.care_sec_flow_list04) {
    width: 100%;
  }
}

@media screen and (min-width: 700px) {
  .care_sec_flow_list section:nth-of-type(2) ul:nth-of-type(2) {
    left: 4%;
  }
}

/*---------------------------------------------
ご希望に応じて自在にアレンジできる生活サポート
----------------------------------------------*/

#care_sec_support {
  padding: 73px 0 100px;
  background-color: #eef2ec;
}

#care_sec_support h3 {
  margin-bottom: 35px;
}

.care_sec_support_inner {
  letter-spacing: 0.1em;
}

.care_sec_support_list {
  margin-top: 40px;
}

/* 
.care_sec_support_list p:last-of-type {
    font-size: clamp(13px,1.25vw,16px);
} */

.care_sec_support_list section.care_supo_list_sec {
  background-color: #ffffff;
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 30px 0;
}

.care_sec_support_list section.care_supo_list_sec section {
  display: flex;
  justify-content: space-between;
  max-width: 854px;
  margin: 0 auto;
  padding: 0 2%;
}

section.care_supo_list_sec section div {
  width: 65%;
}

section.care_supo_list_sec section div p {
  font-size: clamp(12px, 1.25vw, 16px);
}

section.care_supo_list_sec section div dl {
  display: flex;
  margin-bottom: 30px;
  font-size: clamp(12px, 1.25vw, 16px);
}

section.care_supo_list_sec section div:nth-of-type(2) {
  padding: 0 25px;
  background-color: #f2f2f2;
  border-radius: 20px;
  width: 27%;
  font-size: 18px;
  font-weight: bold;
  display: table;
  font-size: clamp(14px, 1.4vw, 18px);
}

section.care_supo_list_sec section div:nth-of-type(2) span {
  display: table-cell;
  vertical-align: middle;
}

.care_sec_support_list h4 {
  /* font-size: 22px; */
  font-size: clamp(13px, 1.7vw, 22px);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.care_sec_support_list h4 span {
  /* font-size: 16px; */
  font-size: clamp(13px, 1.25vw, 16px);
  display: block;
  background-color: #f8c5ac;
  border-radius: 5px;
  height: 33px;
  width: 200px;
  line-height: 33px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .care_sec_support_list section.care_supo_list_sec section {
    padding: 0 5%;
  }
}

@media screen and (max-width: 768px) {
  #care_sec_support {
    padding: 40px 0;
  }

  #care_sec_support h3 {
    margin-bottom: 27px;
  }

  .care_sec_support_list section.care_supo_list_sec section {
    flex-direction: column;
  }

  .care_sec_support_list section.care_supo_list_sec:first-of-type section {
    flex-direction: column-reverse;
  }

  section.care_supo_list_sec section div:nth-of-type(2) {
    width: 100%;
    height: 86px;
    border-radius: 0 0 10px 10px;
    border: 2px solid #c66c44;
    text-align: center;
    background-color: #fff;
  }

  section.care_supo_list_sec:first-of-type section div:nth-of-type(2) {
    width: 100%;
    height: 86px;
    border-radius: 10px 10px 0 0;
    border: 2px solid #6B4A3C;
    background-color: #fff;
  }

  .care_sec_support_list section.care_supo_list_sec {
    background-color: #faf0ea;
    border-radius: 10px;
    padding: 20px 0 0;
  }

  .care_sec_support_list section.care_supo_list_sec:first-of-type {
    background-color: #fff;
    padding: 0 0 10px;
  }

  .care_sec_support_list section.care_supo_list_sec section {
    padding: 0;
  }

  section.care_supo_list_sec section div {
    width: 100%;
    padding: 0 5%;
  }

  .care_sec_support_list h4 {
    margin-top: 25px;
    font-size: 16px;
    display: block;
    letter-spacing: 0.05em;
    margin: 14px 0 20px;
  }

  .care_sec_support_list h4 span {
    margin-top: 0.5rem;
  }

  section.care_supo_list_sec section div dl {
    font-size: 16px;
    line-height: 1.8;
  }

  section.care_supo_list_sec section div p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
  }

  section.care_supo_list_sec section div p:first-of-type {
    margin-bottom: 37px;
  }

  .care_supo_list_sec_last_p {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

/*========================
食事ページ 
============================*/

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_meal {
  background: url(/img/meal/main_bg_meal.webp) center center / cover;
}

.main_bg_meal .main_bg_inner h1 img {
  width: 60px;
}

.main_bg_meal .main_bg_inner h2 img {
  width: 42px;
}


/*--------------------
最上部セクション 
---------------------*/

#meal_top_sec {
  padding: 80px 0;
}

.meal_top_sec_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meal_top_sec_inner p {
  color: #3A322E;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}

.meal_top_sec_inner div.top_middle_pic {
  width: 60%;
}

.meal_top_sec_inner div {
  width: 36%;
}

.meal_top_sec_inner div div.top_middle_pic {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 28px;
}

.meal_top_sec_inner div img {
  width: 177px;
  display: block;
  margin: 40px auto 0;
}

@media screen and (max-width: 1000px) {
  .meal_top_sec_inner div img {
    width: 13.8vw;
  }

  .meal_top_sec_inner div div.top_middle_pic {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #meal_top_sec {
    padding: 50px 0 0;
  }

  .meal_top_sec_inner {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-bottom: 126px;
  }

  .meal_top_sec_inner div.top_middle_pic {
    width: 100%;
    text-align: center;
  }

  .meal_top_sec_inner div {
    width: 100%;
  }

  .meal_top_sec_inner div img {
    width: 135px;
  }

  img.Watercolor_pink {
    position: absolute;
    width: 70px;
    bottom: 0px;
    right: 7%;
    z-index: -1;
  }

  .meal_top_sec_inner div div.top_middle_pic {
    text-align: center;
  }
}

/*---------------------
 中間セクション 
 ----------------------*/

#meal_middle_sec {
  background-color: #FFFDE5;
  padding: 80px 0 120px;
}

.meal_middle_inner_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.meal_middle_sec_inner {
  position: relative;
}

img.icon_tree {
  position: absolute;
  width: 100px;
  top: -195px;
  right: 0;
}

.meal_middle_inner {
  margin-bottom: 80px;
}

.meal_middle_inner:last-of-type{
  margin-bottom: 0px;
}

.meal_middle_inner .meal_middle_inner_wrapper div.top_middle_pic,
.meal_middle_inner .meal_middle_inner_wrapper div:nth-of-type(2) {
  width: 60%;
}

.meal_middle_inner div.meal_middle_txt {
  width: 36%;
}

.meal_middle_inner div.meal_middle_txt p {
  color: #3A322E;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}

.meal_middle_sec_inner section:nth-of-type(2) .meal_middle_inner_wrapper {
  flex-direction: row-reverse;
  /* flex-wrap: wrap; */
}

.meal_middle_img_area {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.meal_middle_img_area img {
  width: 39%;
}

/* .meal_middle_img_area img:first-of-type {
    margin-right: 20px;
} */

.meal_middle_txt p.p_margin {
  margin-bottom: 25px;
}

/*
div.meal_middle_txt p.meal_middle_mark span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
  margin: 0 auto 35px;
}

/*丸アイコン*//*
.meal_middle_sec_inner
  .meal_middle_inner:first-of-type
  p.meal_middle_mark
  span {
  background-color: #f8c5ac;
}

.meal_middle_sec_inner
  .meal_middle_inner:nth-of-type(2)
  p.meal_middle_mark
  span {
  background-color: #ffed61;
}

.meal_middle_sec_inner .meal_middle_inner:last-of-type p.meal_middle_mark span {
  background-color: #b9d79c;
}*/

div.meal_middle_txt p.meal_middle_mark{
  text-align: center;
  margin-bottom: 40px;
}

.meal_img{
  border-radius: 20px;
}

@media screen and (max-width: 920px) and (min-width: 769px) {
  .meal_middle_img_area img:first-of-type {
    margin-right: 0px;
  }

  .meal_middle_img_area {
    display: flex;
    gap: 20px;
  }

  .meal_middle_img_area img {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 768px) {
  /* .meal_middle_inner {
        flex-direction: column-reverse;
    } */

  .meal_middle_inner_wrapper {
    flex-direction: column-reverse;
  }

  .meal_middle_sec_inner section:nth-of-type(2) .meal_middle_inner_wrapper,.meal_middle_sec_inner section:nth-of-type(4) .meal_middle_inner_wrapper {
    flex-direction: column-reverse;
    position: relative;
    /* flex-wrap: wrap; */
  }

  .meal_middle_inner .meal_middle_inner_wrapper div.top_middle_pic,
  .meal_middle_inner .meal_middle_inner_wrapper div:nth-of-type(2) {
    width: 100%;
  }

  .meal_middle_inner div.meal_middle_txt {
    width: 100%;
    position: relative;
  }

  img.Watercolor_pink_middle {
    position: absolute;
    width: 186px;
    top: 20px;
    right: 4%;
  }

  img.middle_tree {
    position: absolute;
    right: 17px;
    top: 30px;
  }

  #meal_middle_sec {
    position: relative;
    padding: 60px 0 24px;
  }

  /* .write_cut_bg_bottom {
        position: absolute;
        width: 100%;
        height: 120px;
        bottom: 780px;
        background: linear-gradient(to bottom right, #fff 50%, transparent 50%);
    }

    .write_cut_bg_middle {
        position: absolute;
        width: 100%;
        height: 1070px;
        bottom: 900px;
        background-color: #fff;
    } */

  .meal_middle_inner div.top_middle_pic,
  .meal_middle_inner div:nth-of-type(2) {
    width: 100%;
    z-index: 10;
  }

  .meal_middle_inner div.meal_middle_txt {
    width: 100%;
    position: relative;
    z-index: 10;
  }

  img.Watercolor_pink_middle_cut {
    position: absolute;
    width: 186px;
    top: 463px;
    right: 4%;
    z-index: 1;
  }

  .meal_middle_sec_inner section:nth-of-type(2) {
    flex-direction: column-reverse;
    padding: 30px 0 ;
    /* flex-wrap: nowrap; */
  }

  .meal_middle_img_area {
    margin: 30px 0;
    display: flex;
    gap: 5px;
  }

  .meal_middle_img_margin {
    margin-bottom: 0;
  }

  .meal_middle_img_area img {
    width: calc((100% - 5px) / 2);
    display: block;
  }

  /* .meal_middle_img_area img:first-of-type {
        margin-right: 5px;
    } */

  .meal_middle_sec_inner .meal_middle_inner:first-of-type {
    margin-bottom: 110px;
    position: relative;
  }

  .meal_middle_sec_inner .meal_middle_inner:nth-of-type(2) {
    margin-bottom: 0;
  }

  .meal_middle_sec_inner
    .meal_middle_inner:last-of-type
    .meal_middle_inner_wrapper
    div:nth-of-type(2) {
    margin-top: -40px;
  }

  .meal_middle_sec_inner .meal_middle_inner:last-of-type {
    position: relative;
  }

  .write_cut_bg {
    position: absolute;
    width: 100%;
    height: 120px;
    top: 0px;
    background: linear-gradient(to bottom right, #fff 50%, transparent 50%);
  }

  .write_cut_bg_bottom {
    position: absolute;
    width: 100%;
    height: 200px;
    top: 0px;
    background: linear-gradient(to bottom right, #fff 50%, transparent 50%);
  }
}

/*---------------------
最下部セクション
--------------------- */

#meal_bottom_sec,
#meal_bottom_sec02 {
  padding: 60px 0 79px;
}
#meal_bottom_sec02 {
  background-color: #fff;
}
#meal_bottom_sec h2 img,
#meal_bottom_sec02 h2 img {
  width: 65px;
}

#meal_bottom_sec h3,
#meal_bottom_sec02 h3 {
  margin: 16px 0 57px;
  line-height: 1;
}

#meal_bottom_sec h3 img {
  width: 335px;
}
#meal_bottom_sec02 h3 img {
  width: 220px;
}
#meal_bottom_sec section,
#meal_bottom_sec section ul,
#meal_bottom_sec02 section {
  display: flex;
}

#meal_bottom_sec section,
#meal_bottom_sec02 section {
  justify-content: space-between;
  max-width: 862px;
  margin: 0 auto;
}

#meal_bottom_sec section ul {
  justify-content: space-between;
}

#meal_bottom_sec section ul li {
  width: 40%;
}

#meal_bottom_sec section ul li:nth-of-type(2) {
  width: 45%;
}

#meal_bottom_sec section ul:first-of-type li:nth-of-type(2) {
  width: 40%;
}

#meal_bottom_sec section ul li span {
  display: block;
}

.meal_bottom_sec_txt {
  width: 54%;
}

.meal_bottom_sec_txt p {
  letter-spacing: 0.1em;
}

.meal_bottom_sec_illust {
  width: 36%;
}

.meal_bottom_sec_illust p:first-of-type {
  font-size: 14px;
  margin-bottom: 8px;
}

.meal_bottom_sec_illust .meal_bottom_arrow {
  margin-bottom: 8px;
}

.meal_bottom_sec_illust ul li {
  /* font-size: 12px; */
  font-size: 11px;
}

.meal_bottom_sec_illust ul li span {
  margin-top: 10px;
}

.meal_bottom_sec_illust ul:nth-of-type(2) li p {
  /* font-size: 12px; */
  font-size: 11px;
  margin-top: 10px;
  margin-bottom: 0;
}

.meal_bottom_sec_illust p:nth-of-type(2) {
  color: #c66c44;
  margin: 10px 0 45px;
  position: relative;
}

.meal_bottom_sec_illust p:nth-of-type(2) img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -35%);
  z-index: -1;
}

.meal_bottom_sec_illust ul:nth-of-type(2) p {
  position: relative;
}

.meal_bottom_sec_illust ul:nth-of-type(2) p img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.meal_bottom_sec_illust ul:nth-of-type(3) {
  align-items: center;
  margin-top: 24px;
}

.meal_bottom_sec_illust p:last-of-type {
  font-size: 14px;
  margin-top: 10px;
}

.meal_bottom_sec_txt h4 {
  margin-bottom: 34px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.meal_bottom_sec_txt p:first-of-type,
.meal_bottom_sec_txt p:nth-of-type(2) {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  #meal_bottom_sec section,
  #meal_bottom_sec02 section {
    max-width: 100%;
    flex-direction: column;
  }

  #meal_bottom_sec {
    position: relative;
  }

  img.Watercolor_pink_bottom_cut {
    position: absolute;
    /* width: 48vw; */
    width: 186px;
    z-index: -1;
    top: 0;
  }

  .meal_bottom_sec_txt {
    width: 100%;
    position: relative;
  }

  img.Watercolor_pink_bottom {
    position: absolute;
    width: 186px;
    z-index: -1;
    top: 0;
    right: 0;
  }

  .meal_bottom_sec_illust {
    width: 100%;
    margin-bottom: 90px;
  }

  #meal_bottom_sec h3 img {
    width: 270px;
  }
  #meal_bottom_sec02 h3 img {
    width: 170px;
  }
  #meal_bottom_sec section ul:first-of-type li:nth-of-type(2) {
    padding-left: 38px;
  }

  #meal_bottom_sec section ul:first-of-type li:first-of-type {
    padding-right: 38px;
  }

  .meal_bottom_sec_illust .meal_bottom_arrow {
    width: 70%;
  }
}

@media screen and (min-width: 529px) and (max-width: 768px) {
  .meal_bottom_sec_illust ul:nth-of-type(2) p img {
    top: -45%;
  }
}

/*========================
コンシェルジュページ 
============================*


/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_concierge {
  background: url(/img/main_bg_concierge.jpg) top center / cover;
}

.main_bg_concierge .main_bg_inner h1 img {
  width: 175px;
}

.main_bg_concierge .main_bg_inner h2 img {
  width: 104px;
}

@media screen and (max-width: 768px) {
  .main_bg_concierge {
    background: url(/img/sp/main_bg_concierge_sp.png) center top / cover;
    /* padding: 55px; */
  }
}

/*---------------------
コンシェルジュとは？TOP 
--------------------- */

#concierge_top_sec {
  padding: 40px 0;
}

.concierge_top_sec_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

img.Watercolor_pink_concierge_top {
  position: absolute;
  width: 252px;
  top: 0;
  right: 0;
  z-index: -1;
}

.concierge_top_sec_imgarea {
  width: 60%;
}

.concierge_top_sec_txt {
  width: 36%;
}

.concierge_top_sec_txt p {
  letter-spacing: 0.1em;
}

.concierge_top_sec_txt p:first-of-type {
  margin-bottom: 30px;
}

.concierge_top_sec_imgarea div {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.concierge_top_sec_imgarea div img {
  width: 235px;
}

@media screen and (max-width: 768px) {
  .concierge_top_sec_inner {
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    padding-left: 0;
  }

  .concierge_top_sec_txt {
    width: 100%;
    padding-left: 4%;
  }

  .concierge_top_sec_imgarea {
    width: 100%;
  }

  img.Watercolor_pink_concierge_top {
    position: absolute;
    width: 186px;
    top: 45%;
    right: 4%;
    z-index: -1;
  }

  .concierge_top_sec_txt div {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
  }

  .concierge_top_sec_txt div img {
    width: calc((100% - 5px) / 2);
  }
}

@media screen and (max-width: 950px) and (min-width: 769px) {
  .concierge_top_sec_imgarea div {
    display: flex;
    gap: 20px;
  }

  .concierge_top_sec_imgarea div img {
    width: calc((100% - 20px) / 2);
  }
}

/*---------------------
コンシェルジュとは？middle 
--------------------- */

#concierge_middle_sec {
  padding: 60px 0 40px;
  background-color: #eef2ec;
}

.concierge_middle_sec_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

img.icon_tree_conciege {
  position: absolute;
  width: 160px;
  top: -180px;
  right: 0;
}

.concierge_middle_sec_imgarea {
  width: 60%;
}

.concierge_middle_sec_txt {
  width: 36%;
}

.concierge_middle_sec_txt p {
  letter-spacing: 0.1em;
}

.concierge_middle_mark span {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #f8c5ac;
  margin: 0 auto 40px;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .concierge_middle_sec_inner {
    flex-direction: column-reverse;
  }

  #concierge_middle_sec {
    padding: 0px 0 40px;
  }

  .write_cut_bg_concierge {
    position: absolute;
    width: 100%;
    height: 120px;
    top: 0px;
    background: linear-gradient(to bottom right, #fff 50%, transparent 50%);
  }

  .concierge_middle_sec_imgarea {
    width: 100%;
    z-index: 10;
  }

  .concierge_middle_sec_txt {
    width: 100%;
    position: relative;
  }

  img.middle_tree_concierge {
    position: absolute;
    right: 0;
    top: 30px;
  }
}

@media screen and (max-width: 1000px) {
  img.icon_tree_conciege {
    width: 100px;
    top: -135px;
    right: 4%;
  }
}

/*---------------------
コンシェルジュの日々の活動
--------------------- */

#concierge_active_sec {
  padding: 60px 0;
  position: relative;
}

.concierge_active_sec_inner {
  max-width: 859px;
  margin: 0 auto;
}

.concierge_active_sec_illust_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

img.Watercolor_pink_concierge_bottom {
  position: absolute;
  width: 252px;
  top: 0;
  right: 0;
  z-index: -1;
}

.concierge_active_sec_illust {
  width: 53%;
}

.concierge_active_sec_txt {
  width: 41%;
}

.concierge_active_sec_txt h4 {
  margin-bottom: 30px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.concierge_active_sec_txt p {
  letter-spacing: 0.1em;
}

#concierge_active_sec h2 img {
  width: 65px;
}

#concierge_active_sec h3 img {
  width: 394px;
}

#concierge_active_sec h3 {
  margin: 17px 0 40px;
}

@media screen and (max-width: 768px) {
  .concierge_active_sec_illust_area {
    flex-direction: column;
  }

  .concierge_active_sec_illust {
    width: 100%;
  }

  .concierge_active_sec_txt {
    width: 100%;
  }

  #concierge_active_sec h3 img {
    width: 192px;
  }

  #concierge_active_sec h3 {
    margin: 17px 0 30px;
  }

  .concierge_active_sec_txt h4 {
    margin-bottom: 30px;
    margin-top: 40px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  img.Watercolor_pink_concierge_bottom {
    width: 186px;
    bottom: 30px;
    right: 0;
    top: auto;
  }

  img.Watercolor_pink_bottom_cut_concierge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 179px;
  }
}

/*========================
インタビューページ 
============================*


/*-------------------------
       共通 
--------------------------*/

.h2_sec_interview {
  font-size: 12px;
  margin-bottom: 15px;
  letter-spacing: 0.4em;
  color: #262626;
}

/*--------
ボタン 
---------*/
.btn_interview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 50px;
  max-width: 220px;
  width: 100%;
  height: 43px;
  color: #6B4A3C;
  border: #6B4A3C 2px solid;
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.btn_interview span {
  padding-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .btn_interview {
    margin: 0 auto;
  }

  .h2_sec_interview {
    letter-spacing: 0.2em;
    margin-bottom: 13px;
  }
}

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_interview {
  background: url(/img/main_bg_interview.png) center center / cover;
}

.main_bg_interview .main_bg_inner h1 img {
  /* width: 210px; */
  width: 175px;
}

.main_bg_interview .main_bg_inner h2 img {
  /* width: 86px; */
  width: 104px;
}

@media screen and (max-width: 768px) {
  .main_bg_interview {
    background: url(/img/sp/main_bg_interview_sp.jpg) center center / cover;
    padding: 55px;
  }
}

/*-----------------------------
トップのセクション 
------------------------------*/

#interview_top_sec {
  padding: 60px 0;
  background-color: #eef2ec;
}

.interview_top_sec_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.interview_top_sec_inner div.top_middle_pic {
  width: 60%;
}

.interview_top_sec_inner .interview_top_sec_txt {
  width: 36%;
  letter-spacing: 0.1em;
}

.interview_top_sec_inner .interview_top_sec_txt h3 {
  margin-bottom: 24px;
  /* font-size: 22px; */
  font-size: clamp(20px, 1.83vw, 22px);
}

.interview_top_sec_inner .interview_top_sec_txt p:first-of-type {
  margin: 24px 0 18px;
}

.interview_top_sec_inner .interview_top_sec_txt p:nth-of-type(2) {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .interview_top_sec_inner {
    flex-direction: column;
  }

  .interview_top_sec_inner div.top_middle_pic {
    width: 100%;
  }

  .interview_top_sec_inner .interview_top_sec_txt {
    width: 100%;
    position: relative;
  }

  img.interview_tree {
    position: absolute;
    top: 28px;
    right: 0;
  }

  #interview_top_sec {
    padding: 20px 0 45px;
  }

  .interview_top_sec_inner .interview_top_sec_txt h2 {
    margin-top: 28px;
    margin-bottom: 18px;
    letter-spacing: 0.4em;
  }

  .interview_top_sec_inner .interview_top_sec_txt h3 {
    margin-bottom: 0;
  }

  .interview_top_sec_inner .interview_top_sec_txt p:first-of-type {
    margin: 17px 0 18px;
  }
}

@media screen and (min-width: 769px) and (max-width: 868px) {
  .interview_top_sec_inner div.top_middle_pic img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 100px 20px;
  }

  .interview_top_sec_inner {
    align-items: stretch;
  }
}

/*-----------------------------
インタビュー詳細セクション
------------------------------*/

#interview_detail_sec {
  padding: 60px 0;
}

.interview_detail_sec_inner {
  position: relative;
}

.interview_detail_sec_inner ul.interview_detail_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.interview_detail_sec_inner ul.interview_detail_list li {
  width: 22%;
}

.interview_detail_sec_inner ul.interview_detail_list li h2 {
  color: #6B4A3C;
  margin: 18px 0;
}

.interview_detail_sec_inner ul.interview_detail_list li p {
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

img.icon_tree_interview {
  position: absolute;
  right: 0;
  top: -180px;
  width: 160px;
}

@media screen and (max-width: 1100px) {
  .interview_detail_sec_inner ul.interview_detail_list li {
    width: calc((100% - 80px) / 3);
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1000px) {
  img.icon_tree_interview {
    width: 120px;
    top: -150px;
    right: 4%;
  }
}

@media screen and (max-width: 968px) {
  img.icon_tree_interview {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .interview_detail_sec_inner ul.interview_detail_list li {
    width: calc((100% - 40px) / 2);
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 550px) {
  .interview_detail_sec_inner ul.interview_detail_list {
    flex-direction: column;
  }

  .interview_detail_sec_inner ul.interview_detail_list li {
    width: 100%;
  }

  .interview_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .interview_list div.top_middle_pic {
    width: 49%;
  }

  .interview_list div {
    width: 45%;
  }

  #interview_detail_sec {
    padding: 40px 0 20px;
  }

  .interview_detail_sec_inner ul.interview_detail_list li p {
    letter-spacing: 0.05em;
  }

  .interview_detail_sec_inner ul.interview_detail_list li h2 {
    margin: 0 0 13px 0;
  }

  .interview_detail_sec_inner ul.interview_detail_list li p {
    margin-bottom: 0;
  }
}

/*========================
インタビュー詳細ページ 
============================*

/*----------------------
メインビジュアル (インタビューページのものを流用）
-----------------------*/

/* .main_bg_interview {
    background: url(/img/main_bg_interview.jpg) center center / cover;
}

.main_bg_interview .main_bg_inner h1 img {
    width: 210px;
}

.main_bg_interview .main_bg_inner h2 img {
    width: 86px;
}


@media screen and (max-width: 768px) {
    .main_bg_interview {
        background: url(/img/sp/main_bg_interview_sp.jpg) center center / cover;
        padding: 55px;
    }
} */

/*-------------
共通 
---------------*/

.h2_sec_interview_internal {
  margin-bottom: 30px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

/*-----------------------------
トップのセクション 
------------------------------*/

#interview_internal_top_sec {
  padding: 40px 0;
  background-color: #eef2ec;
}

.interview_internal_top_sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.interview_internal_top_sec h3 {
  margin-bottom: 24px;
  /* font-size: 22px; */
  font-size: clamp(20px, 1.83vw, 22px);
}

.interview_internal_top_sec div.top_middle_pic {
  width: 60%;
}

.interview_internal_top_sec_txt {
  width: 36%;
  letter-spacing: 0.1em;
}

.interview_internal_top_sec_txt p:first-of-type {
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  #interview_internal_top_sec {
    padding: 20px 0 45px;
  }

  .interview_internal_top_sec {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .interview_internal_top_sec div.top_middle_pic {
    width: 100%;
  }

  .interview_internal_top_sec_txt {
    width: 100%;
    position: relative;
  }

  img.interview_internal_tree {
    position: absolute;
    top: 28px;
    right: 0;
  }

  .interview_internal_top_sec h2 {
    letter-spacing: 0.4em;
    margin: 28px 0 18px;
  }

  .interview_internal_top_sec h3 {
    margin-bottom: 17px;
  }
}

/*-----------------------------
インタビュー詳細セクション
------------------------------*/

#interview_internal_sec {
  padding: 60px 0;
}

.interview_internal_sec_inner {
  position: relative;
}

img.icon_tree_interview_internal {
  position: absolute;
  width: 160px;
  right: 0;
  top: -180px;
}

/* セクション内 */
.interview_internal_sec_inner section {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-bottom: 80px;
  gap: 7.2%;
  position: relative;
}

img.Watercolor_pink_interview_internal_top,
img.Watercolor_pink_interview_internal_middle,
img.Watercolor_pink_interview_internal_bottom {
  position: absolute;
  width: 252px;
  z-index: -1;
}

img.Watercolor_pink_interview_internal_top {
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}

img.Watercolor_pink_interview_internal_middle {
  right: 0;
  bottom: -100px;
}

img.Watercolor_pink_interview_internal_bottom {
  left: 0;
  bottom: 0;
  transform: translateY(50%);
}

.interview_internal_sec_inner section:last-of-type {
  margin-bottom: 112px;
}

.interview_internal_sec_inner section:nth-of-type(2) {
  flex-direction: row-reverse;
  justify-content: left;
}

.interview_internal_sec_inner section div.top_middle_pic {
  width: 42.8%;
}

.interview_internal_sec_inner section div {
  width: 40%;
  letter-spacing: 0.1em;
}

#btn_interview_internal {
  padding: 0 20px 0 44.5px;
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  img.icon_tree_interview_internal {
    width: 120px;
    top: -150px;
    right: 4%;
  }
}

@media screen and (max-width: 968px) and (min-width: 769px) {
  .interview_internal_sec_inner section {
    align-items: stretch;
  }
}

@media screen and (max-width: 868px) {
  img.icon_tree_interview_internal {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #interview_internal_sec {
    padding: 20px 0 60px;
  }

  .interview_internal_sec_inner section {
    display: flex;
    align-items: center;
    justify-content: right;
    flex-direction: column-reverse;
    margin-bottom: 60px;
    gap: 7.2%;
    position: relative;
  }

  .interview_internal_sec_inner section:nth-of-type(2) {
    flex-direction: column-reverse;
    justify-content: left;
  }

  .interview_internal_sec_inner section div.top_middle_pic {
    width: 100%;
  }

  .interview_internal_sec_inner section div {
    width: 100%;
    letter-spacing: 0.1em;
  }

  .h2_sec_interview_internal {
    margin: 30px 0;
    font-size: 20px;
  }

  .interview_internal_bottom_img {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .interview_internal_bottom_img img {
    width: calc((100% - 5px) / 2);
  }

  .interview_internal_sec_inner section {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 80px;
    gap: 7.2%;
    position: relative;
  }

  img.Watercolor_pink_interview_internal_top,
  img.Watercolor_pink_interview_internal_middle,
  img.Watercolor_pink_interview_internal_bottom {
    position: absolute;
    width: 186px;
    z-index: -1;
  }

  img.Watercolor_pink_interview_internal_top {
    right: 0;
    left: auto;
    bottom: -10px;
    transform: translateY(50%);
  }

  img.Watercolor_pink_interview_internal_middle {
    right: auto;
    left: 0;
    bottom: -100px;
  }

  img.Watercolor_pink_interview_internal_bottom {
    left: auto;
    right: 0;
    bottom: 0;
    transform: translateY(80%);
  }

  .interview_internal_sec_inner section:last-of-type {
    margin-bottom: 80px;
  }
}

/*========================
　　会社案内
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_company {
  background: url(/img/company/main_bg_company.webp) lightgray 50% / cover no-repeat;
  background-color: rgba(107, 74, 60, 0.30);
}

.main_bg_company .main_bg_inner h1 img {
  width: 100px;
}

.main_bg_company .main_bg_inner h2 img {
  width: 84px;
}

.main_bg_company .main_bg_inner {
  width: 300px;
}


/*----------------------
コンテンツ 
-----------------------*/

#company_sec {
  padding: 78px 8% 80px;
  background-color: #FFFDE5;
}

.company_sec_inner {
  background-color: #ffffff;
  border-radius: 20px;
}

.company_sec_table {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.company_sec_table table {
  width: 100%;
  border-collapse: collapse;
}

.company_sec_table table tr th,.company_sec_table table tr td {
  vertical-align: top;
  padding-top: 20px;
  padding-bottom: 20px;
}

.company_sec_table table tr th {
  color: #3A322E;
  font-weight: 600;
  line-height: normal;
  font-size: clamp(14px, 2vw, 18px);
  width: 148px;
  border-bottom: 2px solid #6B4A3C;
}

.company_sec_table table tr td {
  color: #3A322E;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  line-height: normal;
  border-bottom: 1px solid #C4B7B1;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .company_sec_inner {
    background-color: transparent;
    padding: 0 !important;
  }

  .company_sec_table table tr th,
  .company_sec_table table tr td {
    border-bottom: none;
  }

  #company_sec {
    padding: 23px 0;
  }

  .company_sec_table {
    padding: 0;
  }

  .company_sec_table table tr:nth-of-type(even) {
    background-color: #fff;
  }

  .company_sec_table table tr th {
    padding-left: 20px;
    width: 110px;
  }

  .company_sec_table table tr td {
    padding-right: 20px;
  }
}

/*========================
　　費用
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.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: 80px 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_sec_table {
  margin-top: 40px;
}

.price_sec_table_pc {
  width: 100%;
  /* border-radius: 10px; */
  border: 2px solid #989898;
  background-color: #fff;
  border-collapse: collapse;
  font-weight: bold;
}

.price_sec_table_pc tr:nth-of-type(4) td {
  background-image: url(/img/price_arrow_pc.png);
  background-position: bottom -4px center;
  background-repeat: no-repeat;
  background-size: 23px;
  color: #bc5928;
}

.price_sec_table_pc tr {
  height: 100px;
}

.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 td {
  letter-spacing: 0.1em;
}

.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) {
  background-color: #e2eade;
}

.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;
}

.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: 26px;
  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(5),
.price_sec_table_pc tr:nth-of-type(7) {
  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 #6B4A3C;
}

.price_sec_list ul:first-of-type {
  margin-bottom: 30px;
}

@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: #6B4A3C;
    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:first-of-type th span,
  table.price_sp_inner_tab tr:first-of-type td span,
  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;
  }

  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: 30px 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_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;
  }
}

@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%;
  }
}

/*========================
　　個人情報保護
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_privacy {
  background: url(/img/privacy_policy/main_bg_privacy.webp) center / cover;
}

.main_bg_privacy .main_bg_inner h2 img {
  width: 150px;
}

.main_bg_privacy .main_bg_inner {
  width: 300px;
}

@media screen and (max-width: 768px) {

  .main_bg_privacy .main_bg_inner {
    width: 250px;
  }

  .main_bg_privacy .main_bg_inner h2 img {
    width: 132px;
  }
}

/*----------------------
コンテンツ 
-----------------------*/

/* 共通 */
.privacy_a {
  margin-top: 8px;
  color: #6B4A3C;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}


#privacy_sec {
  padding: 80px 120px;
}

.privacy_wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.privacy_sec_inner h3 {
  color: #3A322E;
  font-size: clamp(18px, 2vw, 22px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
}

.privacy_sec_inner h4 {
  color: #6B4A3C;
  font-size: clamp(15px, 2vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
  margin-top: 64px;
}

.privacy_sec_inner h5 {
  color: #3A322E;
  font-size: clamp(14px, 2vw, 16px);;
  font-style: normal;
  font-weight: 600;
  line-height: 190%;
  margin-top: 20px;
  margin-bottom: 8px;
}

.privacy_main_01 {
  margin-bottom: 50px;
}
.privacy_sub_01 >div{
  margin-top: 12px;
  margin-bottom: 12px;
}
.privacy_main_01 p,.privacy_main_02_under,.privacy_sub_01 p,.privacy_sec_inner h6,.privacy_sub_02 p,.privacy_sub_03 p,.privacy_sub_04 p,.privacy_sub_05 p,.privacy_sub_06 p{
  color: #3A322E;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
  margin-bottom: 8px;
}

p.dot{
  position: relative;
  padding-left: 1.2em;
  line-height: 190%;
}

p.dot::before {
  content: "\30FB";
  position: absolute;
  left: 0;
  top: 0;
  height: 1.9em;
  display: flex;
  align-items: center;
}

.privacy_sub_01 p.ast_01,
.privacy_sub_01 p.ast_02,
.privacy_sub_01 p.ast_03,
.privacy_sub_01 p.ast_04{
  position: relative;
  padding-left: 4em;
  color: #3A322E;
  font-size: clamp(12px, 2vw, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
  margin-bottom: 8px;
}

.privacy_sub_01 p.ast_01::before,
.privacy_sub_01 p.ast_02::before,
.privacy_sub_01 p.ast_03::before,
.privacy_sub_01 p.ast_04::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 1.9em;
  display: flex;
  align-items: center;
}
.privacy_sub_01 p.ast_01::before{
  content: "（※１）";
}
.privacy_sub_01 p.ast_02::before{
  content: "（※２）";
}
.privacy_sub_01 p.ast_03::before{
  content: "（※３）";
}
.privacy_sub_01 p.ast_04::before{
  content: "（※４）";
}

.privacy_sub_01 .privacy_analy {
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

@media screen and (max-width: 1100px) {
  .privacy_wrapper {
    padding: 0 4%;
  }
}

@media screen and (max-width: 768px) {
  /* 共通 */

  #privacy_sec {
    padding: 40px 0 80px;
    font-size: 14px;
  }

  .privacy_sec_inner h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    line-height: 1;
  }

  .privacy_main_01 {
    margin-bottom: 37px;
    line-height: 1.8;
  }

  p.privacy_main_02_under {
    letter-spacing: 0.05em;
    /* font-size: 14px; */
    line-height: 1.8;
  }

  .privacy_sub_01 h4 {
    margin-top: 35px;
  }

  .privacy_sub_01 div:not(div:first-of-type) {
    margin-bottom: 40px;
    letter-spacing: 0.05em;
  }

  .privacy_sub_01 p {
    line-height: 2;
  }

  .privacy_sub_01 .privacy_analy p {
    line-height: 2;
  }

  .privacy_sub_01 .privacy_analy div {
    font-size: 12px;
  }

  .privacy_sub_02 p,
  .privacy_sub_03 p,
  .privacy_sub_04 p,
  .privacy_sub_05 p,
  .privacy_sub_06 p {
    letter-spacing: 0.05em;
  }

  .privacy_sub_02 div:first-of-type,
  .privacy_sub_03 div:first-of-type {
    margin-top: 37px;
  }

  .privacy_sub_02 div,
  .privacy_sub_03 div,
  .privacy_sub_04,
  .privacy_sub_05 {
    margin-bottom: 37px;
  }
}

/*========================
　　ブログ
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_blog {
  background: url(/img/blog/main_bg_blog.webp) center / cover;
}

/*----------------------
コンテンツ 
-----------------------*/

#blog_sec {
  padding: 80px 0 58px;
}

.blog_sec_inner h3 {
  color: #3A322E;
  text-align: center;
  font-size: clamp(14px, 2vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  margin-bottom: 80px;
}


.blog_sec_inner_list ul.blog_sec_items {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 2.6%;
}

.blog_sec_inner_list ul.blog_sec_items li {
  /* width: 31.6%; */
  width: calc((100% - 5.2%) / 3);
  margin-bottom: 58px;
  letter-spacing: 0.1em;
}

.blog_sec_inner_list ul.blog_sec_items li div {
  margin: 15px 0 3px;
}
/* フィルター */
ul.blog_sec_inner_list_filter {
  /* display: none; */
  /* カテゴリー増えたら表示 */
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

ul.blog_sec_inner_list_filter li {
  width: 22.3%;
  /* width: calc((100% - 392px) / 4); */
}

ul.blog_sec_inner_list_filter li a {
  display: flex;
  height: 44px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 88px;
  text-align: center;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.blog_sec_inner_list_flex {
  display: flex;
  margin-bottom: 60px;
  align-items: flex-end;
  position: relative;
}
.blog_sec_inner_list_filterArea {
  width: 100%;
}
.btn_color_focus_checked {
  background-color: #6B4A3C;
  border: 2px solid #6B4A3C;
  color: #fff;
}
.blog_sec_inner_list_select label {
  color: #3A322E;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 190%;
}
.blog_sec_inner_list_select select {
  border: solid 1px #ccc;
  width: 320px;
  padding: 10px;
  height: 48px;
  background-color: #fff;
  border-radius: 5px;
}
.blog_sec_inner_list_select::after {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1;
  border-top: 2px solid #1c1b1f;
  border-right: 2px solid #1c1b1f;
  rotate: 135deg;
  position: absolute;
  top: 52px;
  left: 290px;
  transition: ease 0.25s;
}
.blog_sec_inner_list_filterArea p {
  margin: 0 50px 10px;
}
.btn_color_focus {
  color: #6B4A3C;
  background-color: #fff;
  border: 1px solid #6B4A3C;
}

/* .blog_sec_inner_list_filter li a:focus {
    background-color: #fff;
    border: 2px solid #6B4A3C;
    color: #6B4A3C;
    box-shadow: none;
} */

/* 追加 */
.blog_sec_inner_list ul.blog_sec_items li img {
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 289 / 217;
}

.blog_sec_inner_list ul.blog_sec_items li section a {
  display: block;
}

.blog_sec_inner_list ul.blog_sec_items li h4 {
  overflow: hidden;
  color: #3A322E;
  text-overflow: ellipsis;
  font-size: clamp(14px, 2vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-self: stretch;
}

.blog_sec_inner_list ul.blog_sec_items li .blog_item_list_sp p {
  color: #C4B7B1;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.blog_sec_inner_list ul.blog_sec_items li div span {
  /* display: none; */
  /* カテゴリー増えたら表示 */
  display: inline-block;
  padding: 0px 8px;
  /* height: 29px;
  line-height: 23px; */
  text-align: center;
  border-radius: 4px;
  border: 1px solid #6B4A3C;
  color: #6B4A3C;
  font-weight: 500;
}
.blog_item_tag {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.blog_item_tag p {
  color: #6B4A3C;
  font-weight: normal;
  font-size: 16px;
}
.blog_item_tag span {
  /* display: none; */
  /* カテゴリー増えたら表示 */
  display: inline-block;
  padding: 0px 8px;
  /* height: 29px;
  line-height: 23px; */
  text-align: center;
  border-radius: 4px;
  border: 1px solid #6B4A3C;
  color: #6B4A3C;
  font-weight: 500;
  font-size: 14px;
}
/* 画像 */
#blog_detail_sec .blog_detail_sec_inner div.img-1col,
#blog_detail_sec .blog_detail_sec_inner div.img-2col {
  margin: 1em 0;
}

#blog_detail_sec .blog_detail_sec_inner div.img-1col img {
  width: 80%;
}

#blog_detail_sec .blog_detail_sec_inner div.img-2col {
  display: flex;
  justify-content: flex-start;
}

#blog_detail_sec .blog_detail_sec_inner div.img-2col img {
  width: 40%;
}

#blog_detail_sec .blog_detail_sec_inner div.img-2col img:first-of-type {
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  #blog_sec {
    padding: 37px 0 40px;
    background-color: #FFFDE5;
  }

  /* フィルター */
  .blog_sec_inner_list_filterArea {
    margin-top: 20px;
  }
  ul.blog_sec_inner_list_filter {
    flex-wrap: wrap;
    margin-bottom: 10px;
    gap: 0 16px;
  }

  ul.blog_sec_inner_list_filter li {
    width: calc((100% - 16px) / 2);
    margin-bottom: 16px;
  }

  ul.blog_sec_inner_list_filter li a {
    font-size: 16px;
  }

  .blog_sec_inner_list ul.blog_sec_items {
    flex-direction: column;
  }

  .blog_sec_inner_list ul.blog_sec_items li {
    width: 100%;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    padding: 30px 0;
    border-bottom: 1px solid #707070;
  }

  .blog_sec_inner_list ul.blog_sec_items li:nth-of-type(6n),
  .blog_sec_inner_list ul.blog_sec_items li:last-of-type {
    border: none;
  }

  .blog_sec_inner_list ul.blog_sec_items li section a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    pointer-events: none;
  }

  .blog_sec_inner_list ul.blog_sec_items li img {
    width: 50%;
  }

  .blog_sec_inner_list ul.blog_sec_items li div {
    width: 45%;
    /* display: flex;
        flex-direction: column-reverse; */
  }

  .blog_item_list_sp {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 4px;
  }
  .blog_sec_inner_list_select select {
    width: 100%;
  }
  .blog_sec_inner_list_flex {
    display: block;
    margin-top: 50px;
    margin-bottom: 0;
  }
  .blog_sec_inner_list_select::after {
    top: 42px;
    right: 20px;
    left: unset;
  }
  .blog_sec_inner_list_filterArea p {
    margin: 0 0 10px;
  }
  /* ボタン */
  .btn_blog {
    max-width: 220px;
    font-weight: bold;
    display: table;
    width: 100%;
    height: 43px;
    color: #6B4A3C;
    border: #6B4A3C 2px solid;
    background-color: #ffffff;
    border-radius: 22px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background-image: url(/img/btn_arrow.png);
    background-size: 11px 14px;
    background-position: right 20px center;
    margin: 0 auto;
  }

  .btn_blog span {
    display: table-cell;
    vertical-align: middle;
  }

  .blog_sec_inner h3 {
    margin: 0 auto 10px;
  }

  .blog_sec_inner_list ul.blog_sec_items li p {
    font-size: 12px;
  }

  .blog_sec_inner_list ul.blog_sec_items li h4 {
    margin: 0;
    margin-top: 10px;
  }

  /* 画像 */
  #blog_detail_sec .blog_detail_sec_inner div.img-1col {
    text-align: center;
  }

  #blog_detail_sec .blog_detail_sec_inner div.img-2col {
    display: inline-block;
    text-align: center;
  }
  .blog_item_tag {
    display: block;
    width: auto !important;
    margin: 0px !important;
  }
  .blog_item_tag p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .blog_sec_inner_list ul.blog_sec_items li div span {
    padding: 0px 5px;
    font-size: 14px;
  }
  .blog_sec_inner_list ul.blog_sec_items li div {
    margin: 0;
  }
}

@media screen and (min-width: 500px) and (max-width: 768px) {
  .blog_sec_inner_list ul.blog_sec_items li section a {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .blog_sec_inner_list ul.blog_sec_items li section a {
    pointer-events: none;
  }

  .blog_sec_inner_list ul.blog_sec_items li img {
    max-width: 250px;
  }
}

@media screen and (max-width: 414px) {
  .blog_sec_inner h3 {
    font-size: 16px;
    padding-left: 0;
    background-image: none;
  }
}

/*========================
　　ブログ詳細
============================*

/*----------------------
 コンテンツ
-----------------------*/

.blog_detail_sec_inner {
  padding: 80px 0;
}

.blog_detail_sec_inner .blog_detail_list span {
  display: none;
  /* カテゴリー増えたら表示 */
  /* display: inline-block; */
  padding: 0 16px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #6B4A3C;
  border-radius: 4px;
  border: 1px solid #6B4A3C;
  background: #fff;
  font-weight: bold;
}

.blog_detail_list {
  padding: 25px 0;
  border-bottom: 1px solid #707070;
}

.blog_detail_txt {
  padding: 30px 0;
}

.blog_detail_sec_inner .blog_detail_art {
  padding: 30px 0;
}
.blog_detail_art_flex{
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog_detail_art_flex p{
  color: #3A322E;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
  margin-bottom: 30px;
}
.blog_detail_art_flex p a{
  color: #6B4A3C;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.blog_detail_list ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog_detail_list li {
  color: #6B4A3C;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.blog_detail_list li:nth-child(2) {
  border-radius: 4px;
  border: 1px solid #6B4A3C;
  background: #FFF;
  display: flex;
  padding: 2px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.blog_detail_sec_inner h3 {
  overflow: hidden;
  color: #3A322E;
  text-overflow: ellipsis;
  font-size: clamp(18px, 2vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.blog_detail_sec_inner h4 {
  color: #C4B7B1;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}
.blog_detail_list img {
  display: block;
  margin: 0 0 0 auto;
  width: 86px;
}
@media screen and (max-width: 1100px) {
  .blog_detail_sec_inner {
    padding: 64px 4% 80px;
  }
}

@media screen and (max-width: 768px) {
  .blog_detail_txt {
    margin-bottom: 30px;
  }

  .blog_detail_sec_inner .blog_detail_art {
    padding: 30px 0;
    margin-bottom: 30px;
  }
  .blog_detail_sec_inner h4 {
    font-size: 16px;
  }

  .blog_detail_sec_inner h3 {
    margin: 15px 0 0;
  }
  .blog_detail_art_flex{
    flex-direction: column;
  }
}

/* アーカイブ */

.blog_detail_archive_inner {
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog_detail_archive_inner ul li p {
  overflow: hidden;
  color: #3A322E;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.blog_detail_archive_inner .blog_item_tag{
  margin-top: 4px;
}

.blog_detail_archive_inner .blog_item_tag p{
  color: #C4B7B1;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%
}


.blog_detail_archive_tag {
  display: flex;
  justify-content: flex-start !important;
  gap: 15px;
  margin: 15px 0 !important;
}
.blog_detail_archive_tag li {
  width: auto !important;
  color: #6B4A3C;
}
.blog_detail_archive_tag li:nth-child(2) {
  border: #6B4A3C solid 1px;
  border-radius: 4px;
  padding: 0px 8px;
}
.blog_detail_archive_inner ul {
  display: flex;
  justify-content: space-between;
}

.blog_detail_archive_inner ul li {
  width: 23.5%;
  text-align: left;
}

.blog_detail_archive_inner ul li img {
  border-radius: 20px;
  aspect-ratio: 215 / 161;
  object-fit: cover;
}

.blog_detail_archive_inner ul li section a {
  display: block;
}

.blog_detail_archive_inner ul li h4 {
  color: #6B4A3C;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog_detail_archive_inner ul li .blo_archive_list span {
  border-radius: 2px;
  border: 1px solid #6B4A3C;
  color: #6B4A3C;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 0 8px;
}

.blo_archive_list {
  margin-top: 10px;
}

a.blog_btn_under {
  margin: 0 auto;
}

*:focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  .blog_detail_archive_inner ul {
    flex-direction: column;
    margin: 20px 0 0;
  }

  .blog_detail_archive_inner ul li {
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #707070;
  }

  .blog_detail_archive_inner ul li section a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    max-width: 100%;
    pointer-events: none;
  }

  .blog_detail_archive_inner ul li:first-of-type {
    padding-top: 0;
  }

  .blog_detail_archive_inner ul li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .blog_detail_archive_inner ul li img {
    display: block;
    width: 49%;
  }

  .blog_detail_archive_inner ul li a {
    max-width: 220px;
  }

  .blog_detail_archive_inner ul li a.btn_top_feature img{
    width: auto;
  }

  .blog_detail_archive_inner ul li div {
    width: 45%;
  }

  .blog_detail_archive {
    padding: 30px 0 40px;
  }
  .blog_detail_archive_tag {
    display: block !important;
  }
}

/*========================
　 アクセス
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_access {
  background: url(/img/main_bg_access.jpg) center / cover;
}

.main_bg_access .main_bg_inner h1 img {
  width: 129px;
}

.main_bg_access .main_bg_inner h2 img {
  width: 65px;
}

.main_bg_access .main_bg_inner {
  width: 250px;
}

@media screen and (max-width: 768px) {
  .main_bg_access {
    background: url(/img/sp/main_bg_access_sp.jpg) center top / cover;
    /* padding: 55px; */
  }

  .main_bg_access .main_bg_inner h1 img {
    width: 97px;
  }

  .main_bg_access .main_bg_inner h2 img {
    width: 57px;
  }
}

/*----------------------
　　コンテンツ 
-----------------------*/

.access_sec h3 {
  height: 100px;
  line-height: 100px;
  background-color: #e2eade;
  letter-spacing: 0.1em;
  font-size: 22px;
}

#access_sec_car section {
  padding: 60px 0;
}

.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: 12px;
  display: inline-block;
  border-bottom: 1px solid #000;
  margin-top: 1rem;
}

.access_maps_p {
  text-align: right;
}

.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;
  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 h3 {
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }

  #access_sec_car section {
    padding: 20px 0 40px;
  }

  .access_sec_car_inner {
    display: flex;
    flex-direction: column;
  }

  .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;
  }

  .access_maps_p {
    text-align: left;
    font-weight: bold;
  }
}

/* 電車・バスをご利用の方  */

.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 #6B4A3C;
}

.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: #6B4A3C;
  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.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.top_middle_pic img {
  max-width: 317px;
}

.access_sec_train_inner ul li section div.access_train_method div.top_middle_pic {
  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: space-between;
  align-items: center;
  margin-top: 30px;
  background-image: url(/img/Watercolor_pink.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 252px;
}

.access_sec_info_inner section div.top_middle_pic {
  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-bottom: 40px;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.access_sec_info_inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.access_sec_info_inner ul li {
  width: 23.5%;
}

@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;
  }

  .access_sec_info_inner section div.top_middle_pic,
  .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;
  }

  .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 div.top_middle_pic 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;
  }
}

/*========================
　　居室
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_space {
  background: url(/img/main_bg_space.jpg) center / cover;
}

.main_bg_space .main_bg_inner h1 img {
  width: 60px;
}

.main_bg_space .main_bg_inner h2 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_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.space_sec_top_inner div.top_middle_pic {
  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(/img/Watercolor_pink.png);
    background-size: 186px;
    background-repeat: no-repeat;
    background-position: right 4% bottom 10%;
    padding: 0;
  }

  .space_sec_top_inner div.top_middle_pic,
  .space_sec_top_inner div {
    width: 100%;
  }

  .space_sec_top_inner div.top_middle_pic {
    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%;
}

.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: #6B4A3C 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;
}

.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 {
  display: flex;
  justify-content: left;
}

.space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_mm_list li {
  padding-right: 50px;
}

.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;
}

.space_sec_second_inner section:nth-of-type(2) ul.space_sec_second_tab_list {
  display: flex;
  max-width: 360px;
  flex-wrap: wrap;
}

.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;
}

.space_sec_second_inner
  section:nth-of-type(2)
  ul.space_sec_second_tab_list
  li:nth-of-type(2) {
  width: 57%;
}

@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 div.top_middle_pic {
    width: 100% !important;
  }

  .space_sec_second_inner section:first-of-type {
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }

  .space_sec_second_h3_sp h3 {
    font-size: 22px;
    letter-spacing: 0.15em;
    padding-top: 74px;
    background-image: url(/img/icon_illust.png);
    background-position: center top;
    background-size: 65px;
    margin-bottom: 1rem;
  }

  .space_sec_second_h3_sp h3 img {
    width: 124px;
  }

  .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_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: #6B4A3C 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
    li {
    height: 30px;
    line-height: 30px;
    background: #e6e6e6;
    border-left: 6px solid #c4c4c4;
    font-size: 12px;
  }
}

@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: #6B4A3C 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_third {
  padding: 60px 0;
  letter-spacing: 0.1em;
}

.space_sec_third_inner {
  background-image: url(/img/Watercolor_pink.png);
  background-size: 250px;
  background-repeat: no-repeat;
  background-position: right top 35%;
}

.space_sec_third_inner section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.space_sec_third_inner h4 {
  font-size: 22px;
}

.space_sec_third_inner section div {
  width: 36%;
}

.space_sec_third_inner section div.top_middle_pic {
  width: 60%;
}

.space_sec_third_inner section:nth-of-type(2) div.top_middle_pic {
  width: 47.8%;
}

.space_sec_third_inner section:nth-of-type(2) div {
  width: 39%;
}

.space_sec_third_inner section:nth-of-type(2) a {
  max-width: 390px;
  margin: 30px auto 40px;
  height: 80px;
  border-radius: 40px;
  font-size: 24px;
  border: #6B4A3C 3px solid;
  box-shadow: 5px 6px 1px rgba(0, 0, 0, 16%);
  background-size: 16px 20px;
  background-position: right 30px center;
}

.space_sec_third_inner section h3 {
  margin-bottom: 45px;
}

.space_sec_third_inner section h4 {
  margin-bottom: 40px;
}

.space_sec_third_inner section h3 img {
  width: 302px;
}

.space_sec_third_inner section:first-of-type {
  margin-bottom: 40px;
}

.space_sec_third_span {
  max-width: 67px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.space_sec_third_inner section:first-of-type div span {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #f8c5ac;
  border-radius: 50%;
}

.space_sec_third_inner section:first-of-type div span:nth-of-type(2) {
  background-color: #ffed61;
}

.space_sec_third_mm_list {
  display: flex;
  justify-content: space-between;
}

.space_sec_third_mm_list li span {
  font-size: 30px;
  font-weight: bold;
  vertical-align: sub;
}

.space_sec_third_tab_list {
  display: flex;
  max-width: 360px;
  flex-wrap: wrap;
}

.space_sec_third_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_third_inner
  section:nth-of-type(2)
  ul.space_sec_third_tab_list
  li:nth-of-type(odd) {
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .space_sec_third_inner section {
    flex-direction: column;
  }

  .space_sec_third_inner section div,
  .space_sec_third_inner section div.top_middle_pic {
    width: 100% !important;
  }

  #space_sec_third {
    padding: 0 0 40px;
    letter-spacing: 0.1em;
  }

  .space_sec_third_inner {
    padding: 0;
    background-image: none;
  }

  .space_sec_third_inner
    section:first-of-type
    div:not(div.space_sec_third_span),
  .space_sec_third_inner section:nth-of-type(2) {
    padding: 0 4%;
  }

  .space_sec_third_inner section h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 70px;
    position: relative;
  }

  .space_sec_third_inner section:first-of-type:not(h3) {
    line-height: 1.8;
  }

  .space_sec_third_inner section h3::before,
  .space_sec_third_inner section h3::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
    top: 15%;
  }

  .space_sec_third_inner section h4 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .space_sec_third_inner section h3::after {
    background-color: #f8c5ac;
    left: 0;
  }

  .space_sec_third_inner section h3::before {
    background-color: #ffed61;
    left: 30px;
  }

  .space_sec_third_inner section h3 img {
    width: 196px;
  }

  .space_sec_third_mm_list {
    margin-top: 30px;
    justify-content: space-around;
  }

  .space_sec_third_mm_list li span {
    font-size: 22px;
    vertical-align: baseline;
  }

  /* .space_sec_third_inner section:nth-of-type(2) a {
        max-width: 195px;
        margin: 30px auto;
        height: 40px;
        border-radius: 40px;
        font-size: 14px;
        border: #6B4A3C 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 (max-width: 900px) and (min-width: 769px) {
  .space_sec_third_inner section:nth-of-type(2) a span {
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  .space_sec_third_inner section:nth-of-type(2) a {
    max-width: 195px;
    margin: 30px auto;
    height: 40px;
    border-radius: 40px;
    font-size: 14px;
    border: #6B4A3C 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_third_tab_list {
    max-width: 100%;
  }

  .space_sec_third_tab_list li {
    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;
}

.main_bg_com_facilities .main_bg_inner h1 img {
  width: 132px;
}

.main_bg_com_facilities .main_bg_inner h2 img {
  width: 151px;
}

.main_bg_com_facilities .main_bg_inner {
  width: 250px;
}

@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 div.top_middle_pic {
  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 30% right 4%;
    background-size: 186px 182px;
    background-image: none;
  }

  .common_facilities_sec_top_inner div.top_middle_pic,
  .common_facilities_sec_top_inner div {
    width: 100%;
  }

  .common_facilities_sec_top_inner div.top_middle_pic {
    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;
    background-image: url(/img/Watercolor_pink.png);
    background-size: 170px;
    background-repeat: no-repeat;
    background-position: top right 4%;
  }

  .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;
}

.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: 5%;
  top: -47.5px;
}

.common_facilities_sec_intro_inner section:first-of-type div.top_middle_pic {
  display: block;
  width: calc(100% + 100vh);
  margin: 0 0 0 -100vh;
}

.common_facilities_sec_intro_inner section:first-of-type div.top_middle_pic img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  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: 211px;
}

.common_facilities_sec_intro_inner section {
  margin-top: 40px;
}

.common_facilities_sec_intro_inner section div.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: 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: 40px;
  color: #6B4A3C;
}

.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 div.top_middle_pic {
    width: 100%;
    margin: 0;
  }

  .common_facilities_sec_intro_inner section:first-of-type div.top_middle_pic img {
    border-radius: 0;
  }

  .common_facilities_sec_intro_inner h3 {
    padding-top: 80px;
    background-image: url(/img/icon_illust.png);
    background-repeat: no-repeat;
    background-size: 65px;
    background-position: center top;
  }

  .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)
    div.top_middle_pic,
  .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)
    div.top_middle_pic {
    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 ul li h3 {
  color: #6B4A3C;
  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: 40px 0;
  }

  .common_facilities_sec_dining_inner ul li h3 {
    font-size: 18px;
    margin: 12px 0;
    letter-spacing: 0.1em;
  }
}

/* リハビリ室*/

#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 div.top_middle_pic {
  width: 60%;
  display: block;
}

.common_facilities_sec_rehab_inner h3 {
  color: #6B4A3C;
  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) div.top_middle_pic {
  width: 100%;
}

/* 
.common_facilities_sec_rehab_inner div.com_fac_rehab_insec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */

@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 div.top_middle_pic 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 div.top_middle_pic {
    width: 100%;
  }

  .common_facilities_sec_rehab_inner div.com_fac_rehab_insec {
    width: 100%;
    padding: 0 4%;
    margin-top: 30px;
  }

  #common_facilities_sec_rehab {
    padding: 0 0 40px 0;
  }

  .common_facilities_sec_rehab_inner div.top_middle_pic img {
    border-radius: 0;
  }

  .common_facilities_sec_rehab_inner h3 {
    padding-left: 37px;
    font-size: 18px;
    margin-bottom: 25px;
    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: 30px;
    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) div.top_middle_pic,
  .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: #6B4A3C;
  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: #6B4A3C;
}

.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 30px 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;
  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: #6B4A3C;
  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:first-of-type {
    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: #6B4A3C;
    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: 20px 0 30px;
  }

  .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: 13px 0 20px;
    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;
  }
}

/*========================
　　WEB見学
============================*

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_tour {
  background: url(/img/main_bg_com_facilities.jpg) center / cover;
}

.main_bg_tour .main_bg_inner h1 img {
  width: 139px;
}

.main_bg_tour .main_bg_inner h2 img {
  width: 39px;
}

.main_bg_tour .main_bg_inner {
  width: 250px;
}

@media screen and (max-width: 768px) {
  .main_bg_tour {
    background: url(/img/sp/main_bg_com_facilities_sp.jpg) center top / cover;
    /* padding: 55px; */
  }

  .main_bg_tour .main_bg_inner h1 img {
    width: 109px;
  }

  .main_bg_tour .main_bg_inner h2 img {
    width: 40px;
  }
}

/*----------------------
コンテンツ
-----------------------*/

#main_bg_tour_sec {
  padding: 77px 0 80px;
  background-color: #e2eade;
}

.main_bg_tour_sec_inner p {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .main_bg_tour_sec_inner div iframe {
    height: 530px;
  }

  #main_bg_tour_sec {
    padding: 37px 0 34px;
  }

  .main_bg_tour_sec_inner p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 440px) {
  .main_bg_tour_sec_inner p {
    text-align: left;
  }
}


/*========================
輝の強みページ
============================*/

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_strengths {
  background: url(/img/strengths/main_bg_strengths.webp) center center / cover;
}

/*--------------------
最上部セクション 
---------------------*/

#strengths_top_sec {
  padding: 80px 0;
}

.strengths_top_sec_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.strengths_top_sec_inner p {
  color: #3A322E;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}

.strengths_top_sec_inner div.top_middle_pic {
  width: 60%;
}

.strengths_top_sec_inner div {
  width: 36%;
}

.strengths_top_sec_inner div div.top_middle_pic {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 28px;
}

.strengths_top_sec_inner div img {
  width: 177px;
}

@media screen and (max-width: 1000px) {
  .strengths_top_sec_inner div img {
    width: 13.8vw;
  }

  .strengths_top_sec_inner div div.top_middle_pic {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #strengths_top_sec {
    padding: 50px 0 0;
  }

  .strengths_top_sec_inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 126px;
  }

  .strengths_top_sec_inner div.top_middle_pic {
    width: 100%;
    text-align: center;
  }

  .strengths_top_sec_inner div {
    width: 100%;
  }

  .strengths_top_sec_inner div img {
    width: 135px;
  }

  .strengths_top_sec_inner {
    position: relative;
  }

  #strengths_top_sec img.Watercolor_pink {
    position: absolute;
    width: 60px;
    bottom: 0;
    right: 7%;
    z-index: -1;
  }

  .strengths_top_sec_inner div div.top_middle_pic {
    text-align: center;
  }
}

/*---------------------
 中間セクション 
 ----------------------*/

#strengths_middle_sec {
  background-color: #FFFDE5;
  padding: 80px 0 120px;
}

.strengths_middle_sec_inner {
  position: relative;
}

.strengths_middle_sec {
  margin-bottom: 80px;
}

.strengths_middle_sec:last-of-type{
  margin-bottom: 0px;
}

.strengths_middle_sec_inner section:nth-of-type(2) .meal_middle_inner_wrapper,.strengths_middle_sec_inner section:nth-of-type(4) .meal_middle_inner_wrapper {
  flex-direction: row-reverse;
  /* flex-wrap: wrap; */
}

@media screen and (max-width: 768px) {
  .strengths_middle_sec_inner section:nth-of-type(2) .meal_middle_inner_wrapper,.strengths_middle_sec_inner section:nth-of-type(4) .meal_middle_inner_wrapper {
    flex-direction: column-reverse;
    position: relative;
  }
  #strengths_middle_sec {
    position: relative;
    padding: 60px 0 24px;
  }
  .strengths_middle_sec_inner .meal_middle_inner:first-of-type {
    position: relative;
  }
  #strengths_middle_sec .meal_middle_inner{
    margin-bottom: 40px;
  }
  #strengths_middle_sec .meal_middle_inner .h2_sec{
    margin: 25px 0;
  }
  #strengths_middle_sec .meal_middle_inner .meal_middle_txt p.p_margin{
    margin-bottom: 0px;
  }

}


/*========================
人財育成ページ 
============================*/

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_nurture {
  background: url(/img/nurture/main_bg_nurture.webp) center center / cover;
}


/*--------------------
最上部セクション 
---------------------*/
#nurture_top_sec{
  padding: 80px 0;
}

#nurture_top_sec h3 {
  color: #3A322E;
  text-align: center;
  font-size: clamp(14px, 2vw, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  margin-bottom: 80px;
}

.nurture_top_sec_inner,.nurture_middle_inner{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.nurture_top_sec_inner div.top_middle_pic,.nurture_middle_inner div.top_middle_pic{
  width: 60%;
}

.nurture_img{
  border-radius: 20px;
}

.nurture_top_sec_inner .point-wrapper,.nurture_middle_inner .point-wrapper{
  width: 36%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.point-wrapper .point-content{
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.point-wrapper .point-content img{
  width: 87px;
}

.point-wrapper .point-content h4{
  color: #3A322E;
  font-size: clamp(17px, 2vw, 22px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.point-wrapper p{
  color: #3A322E;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}

.point-table-wrapper{
  display: flex;
  padding: 30px 40px;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border-radius: 20px;
  background: #FFFDE5;
}

.point-table-wrapper p{
  color: #3A322E;
  font-size: clamp(13px, 2vw, 15px);
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}

.point-table-wrapper table{
  width: 100%;
  border-collapse: collapse;
}

.point-table-wrapper table tr th{
  text-align: left;
}

.point-table-wrapper table tr td{
  text-align: right;
}

.point-table-wrapper table tr th,.point-table-wrapper table tr td{
  color: #3A322E;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}

.point-table-wrapper table .total-row th,.point-table-wrapper table .total-row td{
  border-top: 1px solid #6B4A3C;
  padding-top: 10px;
}
.point-table-wrapper table tr:nth-child(2) th,.point-table-wrapper table tr:nth-child(2) td{
  padding-bottom: 10px;
}

.point-table-wrapper table .total-row th,.point-table-wrapper table .total-row td{
  color: #3A322E;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 190%;
}

/*--------------------
中間のセクション
---------------------*/

.nurture_middle_sec_inner:nth-child(odd){
  padding: 80px 0 120px;
  background: #FFFDE5;
}

.nurture_middle_sec_inner:nth-child(odd) .nurture_middle_inner{
  flex-direction: row-reverse;
}

.nurture_middle_sec_inner:nth-child(even){
  padding: 80px 0;
  background: #FFF;
}

.nurture_middle_sec_inner:nth-child(odd) .point-wrapper{
  order: 1;
}

.nurture_middle_sec_inner:nth-child(odd) div.top_middle_pic{
  order: 2;
}

.point-wrapper ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.point-wrapper ul li {
  position: relative;
  padding: 0 12px 0 16px;
  color: #3A322E;
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  background:  #FFF;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  height: 40px;
}

.point-wrapper ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 100%;
  background-color: #C4B7B1;
}

.nurture_middle_img_area{
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.nurture_middle_img_area img {
  width: 39%;
}

@media screen and (max-width: 768px){
  #nurture_top_sec{
    
  }
  .nurture_top_sec_inner, .nurture_middle_inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .nurture_top_sec_inner div.top_middle_pic, .nurture_middle_inner div.top_middle_pic,.nurture_top_sec_inner .point-wrapper, .nurture_middle_inner .point-wrapper{
    width: 100%;
  }
  #nurture_top_sec,.nurture_middle_sec_inner:nth-child(even){
    padding: 40px 0;
  }
  .nurture_middle_sec_inner:nth-child(odd){
    padding: 40px 0 60px;
  }
}

/*========================
住宅一覧ページ 
============================*/

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_facilities {
  background: url(/img/facilities/main_bg_facilities.webp) center center / cover;
}

.main_bg_facilities .main_bg_inner {
  width: 300px;
}

.main_bg_facilities .main_bg_inner h1 img {
  width: 209px;
}

.main_bg_facilities .main_bg_inner h2 img {
  width: 48px;
}

@media screen and (max-width: 768px) {

  .main_bg_facilities .main_bg_inner {
    width: 250px;
  }

  .main_bg_facilities .main_bg_inner h1 img {
    width: 187px;
  }

  .main_bg_facilities .main_bg_inner h2 img {
    width: 40px;
  }
}

/*----------------------
メインコンテンツ 
-----------------------*/

#facilities_point {
  display: flex;
  padding: 80px 200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  background: #FFFDE5;
}

.facilities_wrapper {
  max-width: 800px;
  margin: 0 auto;
}

#facilities_point .main_copy {
  color: #3A322E;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
}

#facilities_point .point {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}
#facilities_point .point_box {
  display: flex;
  width: 180px;
  height: 180px;
  padding: 32px 24px 24px 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 156px;
  background: var(--fff, #FFF);
}
#facilities_point .point_box p {
  color: #3A322E;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

#facilities_point .sub_copy {
  width: 620px;
  margin: 40px auto 0;
  color: #3A322E;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}


#facilities_list {
  margin: 56px auto 120px;
}

.facilities_wrapper2 {
  max-width: 1000px;
  margin: 0 auto;
}

.mixitup-button {
  display: flex;
  width: 1000px;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 56px;
}
.mixitup-button button {
  display: flex;
  height: 44px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: calc(100% / 5);
  border-radius: 88px;
  border: 1px solid #6B4A3C;
  background:  #FFF;
  color: #6B4A3C;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.mixitup-button button.mixitup-control-active {
  background: #6B4A3C;
  color: #FFF;
}

.mixitup-list {
  display: inline-grid;
  width: 100%;
  row-gap: 40px;
  column-gap: 40px;
  grid-template-rows: repeat(6,fit-content(100%));
  grid-template-columns: repeat(3,minmax(0,1fr));
  grid-auto-flow: row;
}
.mixitup-list .mix {
  display: flex;
  padding-bottom: 16px;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  grid-row: span 1;
  grid-column: span 1;
  justify-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--brown-40, #C4B7B1);
  background: #FFF;
}
.mixitup-list .mix .thum {
  margin-bottom: 10px;
}
.mixitup-list .mix .thum img {
  border-radius: 20px 20px 0 0;
}
.mixitup-list .mix .facilities_name {
  position: relative;
  color: #3A322E;
  font-size: 14px;
  font-weight: 600;
  line-height: 160%;
  padding: 4px 16px 4px 42px;
}
.mixitup-list .mix .facilities_name::before {
  position: absolute;
  content: '';
  top: 5px;
  left: 16px;
  width: 23px;
  height: 16px;
  background-repeat: no-repeat;
}
.mixitup-list .mix .facilities_name.orange::before {
  background-image: url(/img/facilities/iconmini-home01.png);
}
.mixitup-list .mix .facilities_name.green::before {
  background-image: url(/img/facilities/iconmini-home02.png);
}
.mixitup-list .mix h3 {
  color: #3A322E;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  padding: 0 16px;
}
.mixitup-list .mix .address {
  color: #3A322E;
  font-size: 16px;
  font-weight: 300;
  line-height: 160%;
  padding: 0 16px;
}
.mixitup-list .mix .more {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 0;
}
.mixitup-list .mix .more p {
  color: #6B4A3C;
  font-size: 16px;
  font-weight: 600;
  line-height: 170%;
}

@media screen and (max-width: 1100px) {
  #facilities_point {
    padding: 60px 4%;
    gap: 40px;
    align-self: unsafe;
  }

  .facilities_wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  #facilities_point .point {
    gap: 20px;
    margin-top: 40px;
  }

  #facilities_point .sub_copy {
    width: 100%;
    margin: 40px auto 0;
    font-size: 15px;
    line-height: 180%;
  }

  .facilities_wrapper2 {
    padding: 0 4%;
  }

  .mixitup-button {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }
  .mixitup-button button {
    width: calc(100% / 3 - 10px);
    font-size: 16px;
  }

  .mixitup-list .mix {
    padding-bottom: 7px;
    align-self: stretch;
    grid-row: span 1;
    grid-column: span 1;
    justify-self: stretch;
  }
  .mixitup-list .mix .facilities_name {
    font-size: 12px;
    line-height: 140%;
    padding: 2px 8px 4px 28px;
  }
  .mixitup-list .mix .facilities_name::before {
    top: 4px;
    left: 8px;
    width: 18px;
    height: 13px;
  }
  .mixitup-list .mix h3 {
    font-size: 18px;
    padding: 0 8px;
  }
  .mixitup-list .mix .address {
    font-size: 14px;
    padding: 0 8px;
  }
  .mixitup-list .mix .more {
    gap: 6px;
    padding: 5px 8px 0;
  }
  .mixitup-list .mix .more p {
    font-size: 16px;
    line-height: 120%;
  }
}


@media screen and (max-width: 500px) {
  #facilities_point .point_box {
    width: 152px;
    height: 152px;
    gap: 12px;
  }
  #facilities_point .point_box img{
    width: 54px;
  }
  #facilities_point .point_box p {
    font-size: 14px;
  }
  .mixitup-list {
    row-gap: 15px;
    column-gap: 15px;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

/*========================
住宅詳細ページ 
============================*/

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_detail.enjyu_nishino {
  background: url(/img/facilities/main_bg_enjyu_nishino.webp) center center / cover;
}
.main_bg_detail.hachiken-shinkan {
  background: url(/img/facilities/main_bg_hachiken-shinkan.webp) center center / cover;
}
.main_bg_detail.heiwadouri {
  background: url(/img/facilities/main_bg_heiwadouri.webp) center center / cover;
}
.main_bg_detail.nishimiyanosawa {
  background: url(/img/facilities/main_bg_nishimiyanosawa.webp) center center / cover;
}
.main_bg_detail.nishimachi {
  background: url(/img/facilities/main_bg_nishimachi.webp) center center / cover;
}
.main_bg_detail.enjyu {
  background: url(/img/facilities/main_bg_enjyu.webp) center center / cover;
}
.main_bg_detail.ensoleille {
  background: url(/img/facilities/main_bg_ensoleille.webp) center center / cover;
}
.main_bg_detail.hachiken {
  background: url(/img/facilities/main_bg_hachiken.webp) center center / cover;
}
.main_bg_detail.sakaemachi {
  background: url(/img/facilities/main_bg_sakaemachi.webp) center center / cover;
}
.main_bg_detail.ayuchi {
  background: url(/img/facilities/main_bg_ayuchi.webp) center center / cover;
}
.main_bg_detail.syurakuen2 {
  background: url(/img/facilities/main_bg_syurakuen2.webp) center center / cover;
}
.main_bg_detail.hapilia-asahi {
  background: url(/img/facilities/main_bg_hapilia-asahi.webp) center center / cover;
}
.main_bg_detail.kishin {
  background: url(/img/facilities/main_bg_kishin.webp) center center / cover;
}
.main_bg_detail.daigo {
  background: url(/img/facilities/main_bg_daigo.webp) center center / cover;
}
.main_bg_detail.juraku {
  background: url(/img/facilities/main_bg_juraku.webp) center center / cover;
}
.main_bg_detail.syurakuen {
  background: url(/img/facilities/main_bg_syurakuen.webp) center center / cover;
}
.main_bg_detail.taihei {
  background: url(/img/facilities/main_bg_taihei.webp) center center / cover;
}
.main_bg_detail.teinetomioka {
  background: url(/img/facilities/main_bg_teinetomioka.webp) center center / cover;
}

.main_bg_detail .main_bg_inner {
  width: 300px;
  padding: 19px 0 28px;
}

.main_bg_detail .main_bg_inner div {
  color:#6B4A3C;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}

.main_bg_detail .main_bg_inner h1 img {
  width: 209px;
}

.main_bg_detail .main_bg_inner h2 img {
  width: 48px;
}

@media screen and (max-width: 768px) {

  .main_bg_detail .main_bg_inner {
    width: 250px;
  }

  .main_bg_detail .main_bg_inner h1 img {
    width: 187px;
  }

  .main_bg_detail .main_bg_inner h2 img {
    width: 40px;
  }
}



/*----------------------
タブ共通
-----------------------*/

/* PC共通 */
.facilities_tab-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFDE5;
  border-bottom: 2px solid #6B4A3C;
  top: 95px;
  position: sticky;
  z-index: 99;
  padding: 60px 0 0;
}

.facilities_tab-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  gap: 20px;
}

.facilities_tab {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #6B4A3C;
  border-radius: 88px;
  color: #6B4A3C;
  font-size: 18px;
  font-weight: 600;
  width: 185px;
  height: 62px;
  padding: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.facilities_tab:hover {
  background-color: #6B4A3C;
  color: #fff;
}

.facilities_active-tab {
  background-color: #6B4A3C;
  color: #fff;
  height: 88px;
  padding: 14px 8px 26px 8px;
  border-radius: 20px 20px 0 0;
}

/* フェード部分 */
.facilities_tab-fade {
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facilities_tab-fade.left {
  left: 0;
  background: linear-gradient(to right, #fff 40%, rgba(255, 255, 255, 0));
}

.facilities_tab-fade.right {
  right: 0;
  background: linear-gradient(to left, #fff 40%, rgba(255, 255, 255, 0));
}

.facilities_tab-fade.show {
  opacity: 1;
}



/* タブコンテンツ */
.facilities_tab-content {
  display: none;
}
.facilities_active-content {
  display: block;
}

@media screen and (max-width: 768px) {
  .facilities_tab-wrapper {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    top: 35px;
    max-height: 0; /* 高さをなくす */
    overflow: hidden; /* 中身を隠す */
    padding: 0;
  }

  .facilities_tab-container {
    overflow-x: auto;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding-right: 15px;
    gap: 5px;
  }
  .facilities_tab-wrapper.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 60px 0 0;
    max-height: unset;
  }
  .facilities_tab-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .facilities_tab {
    min-width: 135px;
    font-size: 16px;
    margin: 0 4px;
    box-shadow: none;
    height: 60px;
  }
  .facilities_tab-arrow.prev {
    left: 5px;
  }
  .facilities_tab-arrow.next {
    right: 5px;
  }
  .facilities_tab-arrow.hidden {
    display: none;
  }
  .facilities_tab-arrow {
    position: fixed;
    top: 70px;
    background: #fff;
    border: 2px solid #6B4A3C;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    width: 41px;
    height: 41px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
  }

  .facilities_tab-arrow img {
    width: 12px;
    position: relative;
    top: -2px;
  }
  .facilities_tab:first-of-type {
    margin-left: 15px;
  }
  .facilities_tab:last-of-type {
    margin-right: 15px;
  }
}

@media screen and (max-width: 790px) {
  .facilities_page-menu {
    background: #FFFDE5;
    margin: 0 auto 20px;
    width: 100%;
    padding: 20px 0;
  }
  .facilities_page-menu ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
    margin: 0 auto;
    width: 90%;
  }
  .facilities_page-menu ul li {
    border: 1px solid #6B4A3C;
    height: 44px;
    position: relative;
    width: 48.4%;
    color: #6B4A3C;
    padding: 9px 0;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    background-color: #fff;
  }
  .facilities_page-menu ul li.facilities_page-menu__active-tab,
  .facilities_page-menu__active-tab {
    color: #fff !important;
    background-color: #6B4A3C;
  }
  .facilities_active-tab {
    border-radius: 16px 16px 0 0;
    height: 70px;
  }

  .facilities_tab-arrow.prev {
    left: 10px;
  }
  .facilities_tab-arrow.next {
    right: 10px;
  }
  .facilities_tab-arrow {
    display: block;
  }
  .facilities_tab-arrow.hidden {
    display: none;
  }
}


/*----------------------
居室
-----------------------*/
#facilities_tab .full-width {
  margin: 0 calc(50% - 50vw);
  background-color: #FFFDE5;
}
#facilities_tab .full-width.white {
  background-color: #fff;
}

.facilities_tab_detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
  color: #3A322E;
}
.facilities_about {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.facilities_about .img {
  width: 60%;
}
.facilities_about .img img {
  border-radius: 20px;
}
.facilities_about .dtl {
  width: 36%;
}
.facilities_about .dtl .facilities_name {
  padding-left: 73px;
  padding-top: 5px;
  background-image: url(/img/facilities/facilities_logo.png);
  background-size: contain;
  height: 65px;
  background-repeat: no-repeat;
  background-position: center left;
  margin-bottom: 40px;
}
.facilities_about .dtl .facilities_name p {
  font-size: 15px;
  font-weight: 600;
  line-height: 140%;
}
.facilities_about .dtl .facilities_name h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 120%;
}
.facilities_about .dtl .facilities_name + p {
  font-size: 16px;
  font-weight: 300;
  line-height: 190%;
  margin-bottom: 16px;
}
.facilities_about .dtl a {
  color: #6B4A3C;
  display: flex;
  gap: 0 5px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 120%;
  padding-top: 6px;
  height: 32px;
  margin-top: 8px;
}
.facilities_about .dtl a span {
  padding-bottom: 3px;
  border-bottom: 1px #6B4A3C solid;
}

.facilities_space {
  margin: 80px auto 0;
}
.facilities_space h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 56px;
}
.facilities_space h2 span {
  font-family: Roboto;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 2.4px;
}

.space_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.space_wrap.column1 {
  display: block;
  text-align: center;
}
.space_wrap .img {
  width: 60%;
}
.space_wrap .img img {
  border-radius: 20px;
}
.space_wrap .dtl {
  width: 36%;
}
.space_wrap.column1 .dtl {
  width: 100%;
}
.space_wrap .dtl h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 40px;
}
.space_wrap .dtl p {
  font-size: 16px;
  font-weight: 300;
  line-height: 190%;
}

.facilities_tab_detail .room_dtl {
  padding: 80px 0;
  border-bottom: 1px solid #C4B7B1;
}
.facilities_tab_detail .room_dtl:first-child {
  padding-top: 0;
}
.facilities_tab_detail .room_dtl:last-child {
  border-bottom: unset;
}
.facilities_tab_detail .room_wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 40px;
  align-self: stretch;
  margin-bottom: 48px;
}
.facilities_tab_detail .room_wrapper.common {
  align-items: center;
}
.facilities_tab_detail .room_wrapper .img {
  max-width: 600px;
}
.facilities_tab_detail .room_wrapper .dtl {
  max-width: 360px;
}
.facilities_tab_detail .room_wrapper .dtl h3 {
  position: relative;
  padding-left: 28px;
  font-size: 22px;
  line-height: 150%;
  margin-bottom: 40px;
}
.facilities_tab_detail .room_wrapper .dtl h3::before {
  position: absolute;
  content: '';
  top: 6px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50px;
  background-color: #BFDEAE;
}
.facilities_tab_detail .room_wrapper .dtl h4 {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 16px;
}
.facilities_tab_detail .room_wrapper .dtl p {
  font-size: 16px;
  font-weight: 300;
  line-height: 190%;
  margin-bottom: 40px;
}

.facilities_tab_detail .room_type_wrapper .floor_plan {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: center;
}
.facilities_tab_detail .room_type_wrapper .floor_plan dd {
  font-size: 30px;
  font-weight: 600;
}
.facilities_tab_detail .room_type_wrapper .floor_plan dd:last-child {
  margin-right: 0;
}
.facilities_tab_detail .room_type_wrapper .room_point {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  align-self: stretch;
  margin-top: 24px;
}
.facilities_tab_detail .room_type_wrapper .room_point li {
  position: relative;
  padding: 0 12px 0 18px;
  height: 40px;
  line-height: 40px;
  background: #FFF;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
}
.facilities_tab_detail .room_type_wrapper .room_point li::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 8px;
  height: 40px;
  background: #C4B7B1;
}

@media screen and (max-width: 1100px) {
  #facilities_tab {
    padding: 0 4% 0;
  }

  .facilities_tab_detail {
    max-width: 100%;
    padding: 20px 4% 40px;
  }
  .facilities_about {
    flex-direction: column;
    gap: 0;
  }
  .facilities_about .img,
  .facilities_about .dtl {
    width: 100%;
  }
  .facilities_about .img img {
    border-radius: 16px;
  }
  .facilities_about .dtl .facilities_name {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  .facilities_space h2 {
    margin-bottom: 40px;
  }

  .space_wrap {
    flex-direction: column;
    gap: 0;
  }
  .space_wrap.column1 {
    text-align: left;
  }
  .space_wrap .img,
  .space_wrap .dtl {
    width: 100%;
  }
  .space_wrap .img img {
    border-radius: 16px;
  }
  .space_wrap .dtl h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .facilities_tab_detail .room_dtl {
    padding: 40px 0;
  }
  .facilities_tab_detail .room_dtl:first-child {
    padding: 40px 0;
  }
  .facilities_tab_detail .room_wrapper {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .facilities_tab_detail .room_wrapper .img,
  .facilities_tab_detail .room_wrapper .dtl {
    width: 100%;
    max-width: 100%;
  }
  .facilities_tab_detail .room_wrapper .dtl h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .facilities_tab_detail .room_wrapper .dtl h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .facilities_tab_detail .room_wrapper .dtl p {
    margin-bottom: 10px;
  }

  .facilities_tab_detail .room_type_wrapper {
    flex-direction: column;
    gap: 0;
  }
  .facilities_tab_detail .room_type_wrapper .room_point {
    margin-bottom: 40px;
  }
  .facilities_tab_detail .room_type_wrapper .img,
  .facilities_tab_detail .room_type_wrapper .dtl {
    width: 100%;
  }
  .facilities_tab_detail .room_type_wrapper .floor_plan {
    margin-top: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
  }
  .facilities_tab_detail .room_type_wrapper .floor_plan dd {
    margin-right: 0px;
    font-size: 22px;
  }
  .facilities_tab_detail .room_type_wrapper .room_point li {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .facilities_tab_detail .room_type_wrapper .room_point li::before {
    height: 30px;
  }
}



/*----------------------
共用施設・WEB見学
-----------------------*/
.facilities_space.common {
  margin-top: 0;
  margin-bottom: 80px;
}
.common_facilities {
  color: #3A322E;
}
.common_facilities h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 40px;
}
.common_facilities .img {
  width: 91.6vw;
  height: 600px;
  background-position: center;
  border-radius: 0 20px 100px 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.common_facilities .img.enjyu_nishino {
  background-image: url(/img/facilities/enjyu_nishino/common02.png);
}
.common_facilities .img.hachiken-shinkan {
  background-image: url(/img/facilities/hachiken-shinkan/common02.png);
}
.common_facilities .img.heiwadouri {
  background-image: url(/img/facilities/heiwadouri/common02.png);
}
.common_facilities .img.nishimiyanosawa {
  background-image: url(/img/facilities/nishimiyanosawa/common02.png);
}
.common_facilities .img.nishimachi {
  background-image: url(/img/facilities/nishimachi/common02.png);
}
.common_facilities .img.enjyu {
  background-image: url(/img/facilities/enjyu/common02.png);
}
.common_facilities .img.ensoleille {
  background-image: url(/img/facilities/ensoleille/common02.png);
}
.common_facilities .img.hachiken {
  background-image: url(/img/facilities/hachiken/common02.png);
}
.common_facilities .img.sakaemachi {
  background-image: url(/img/facilities/sakaemachi/common02.png);
}
.common_facilities .img.ayuchi {
  background-image: url(/img/facilities/ayuchi/common02.png);
}
.common_facilities .img.syurakuen2 {
  background-image: url(/img/facilities/syurakuen2/common02.png);
}
.common_facilities .img.hapilia-asahi {
  background-image: url(/img/facilities/hapilia-asahi/common02.png);
}
.common_facilities .img.kishin {
  background-image: url(/img/facilities/kishin/common02.png);
}
.common_facilities .img.daishin {
  background-image: url(/img/facilities/daishin/common02.png);
}
.common_facilities .img.daigo {
  background-image: url(/img/facilities/daigo/common02.png);
}
.common_facilities .img.juraku {
  background-image: url(/img/facilities/juraku/common02.png);
}
.common_facilities .img.syurakuen {
  background-image: url(/img/facilities/syurakuen/common02.png);
}
.common_facilities .img.taihei {
  background-image: url(/img/facilities/taihei/common02.png);
}
.facilities_tab_detail .room_wrapper.common .dtl h3 {
  padding-left: 0;
  color: #6B4A3C;
}
.facilities_tab_detail .room_wrapper.common .dtl h3::before {
  content: unset;
}
.facilities_tab_detail .room_wrapper.common .img img {
  border-radius: 20px;
}

.dining_room_wrapper .dining_room_img {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.dining_room_wrapper h3 {
  color: #6B4A3C;
  font-size: 22px;
  line-height: 150%;
  margin-bottom: 8px;
}
.dining_room_wrapper img,
.common_box_wrapper img,
.common_box_wrapper2 img {
  border-radius: 20px;
}

.common_box_wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.common_box_wrapper .common_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.common_box_wrapper h3,
.common_box_wrapper2 h3 {
  color: #6B4A3C;
  font-size: 16px;
  line-height: 120%;
}
.common_img {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 8px;
}
.common_img img {
  flex: 1;
  width: 100%;
}
.common_box_wrapper.column2 h3,
.common_box_wrapper2 h3 {
  font-size: 22px;
  margin-bottom: 8px;
  margin-top: 12px;
}

.web_visit {
  padding: 80px 0;
}
.web_visit h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 40px;
}
.web_visit .street_view {
  position: relative;
  width: 100%;
  padding-top: 62.7%;
  height: 0;
}
.web_visit .street_view iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1100px) {
  .facilities_space.common {
    margin-top: 0;
    margin-bottom: 0;
  }
  .common_facilities h3 {
    margin-bottom: 10px;
  }
  .common_facilities .img {
    height: 246px;
    margin-bottom: 0;
  }
  .facilities_tab_detail .room_wrapper.common .img img {
    border-radius: 16px;
  }
  .facilities_tab_detail .room_wrapper.common .dtl h3 {
    margin-top: 10px;
  }
  .dining_room_wrapper img,
  .common_box_wrapper img,
  .common_box_wrapper2 img {
    max-width: 490px;
    width: 100%;
  }
  .common_facilities + .facilities_tab_detail {
    padding-top: 0;
  }
  .common_box_wrapper2 {
    padding-bottom: 40px;
  }
  .dining_room_wrapper .dining_room_img,
  .facilities_tab_detail .room_wrapper .img {
    margin-bottom: 0;
  }
  .facilities_tab_detail .room_wrapper.common {
    padding-top: 40px;
    margin-bottom: 0;
  }
  .facilities_tab_detail .room_wrapper.reverse {
    flex-direction: column-reverse;
  }
  .dining_room_wrapper .dining_room_img,
  .common_box_wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 40px 0;
  }
  .common_box_wrapper {
    margin-top: 20px;
  }
  .common_box_wrapper .common_box {
    width: 100%;
  }
  .common_box_wrapper h3,
  .common_box_wrapper2 h3 {
    font-size: 12px;
  }
}

/*----------------------
費用
-----------------------*/
.facilities_space.price {
  text-align: center;
  color: #3A322E;
  margin-top: 0;
}
.facilities_space.price h3 {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 4.8px;
  margin-bottom: 32px;
}
.facilities_space.price .price_img {
  margin-bottom: 80px;
}
.facilities_space.price .price_other_wrap {
  display: flex;
  padding: 30px 48px;
  align-items: flex-start;
  gap: 40px;
  border-radius: 20px;
  background: #FFFDE5;
  text-align: left;
  margin-bottom: 30px;
}
.facilities_space.price .price_other_wrap:last-child {
  margin-bottom: 0;
}
.facilities_space.price .price_other_wrap .title {
  display: flex;
  width: 180px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-right: 1px solid #C4B7B1;
  font-size: 18px;
  color: #3A322E;
  font-weight: 600;
  line-height: 120%; 
}
.facilities_space.price .price_other_wrap .dtl {
  flex: 1 0 0;
  color: #3A322E;
  font-size: 15px;
  line-height: 190%;
}

@media screen and (max-width: 1100px) {
  .facilities_space.price {
    margin-top: 0;
    padding-bottom: 30px;
  }
  .facilities_space.price .price_other_wrap {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-radius: 16px;
  }
  .facilities_space.price .price_other_wrap .title {
    width: 100%;
    padding-bottom: 16px;
    border-right: unset;
    border-bottom: 1px solid #C4B7B1;
  }
}

/*----------------------
アクセス
-----------------------*/
.facilities_space.access {
  text-align: center;
  color: #3A322E;
  margin-top: 0;
}
.facilities_space.access h3 {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 4.8px;
  margin-bottom: 32px;
}
.facilities_space.access h3 + a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}
.facilities_space.access h3 + a span {
  padding-bottom: 5px;
  border-bottom: 1px#3A322E solid;
}
.facilities_space.access .access_map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  margin-top: 40px;
  margin-bottom: 80px;
}
.facilities_space.access .access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.facilities_space.access h4 {
  display: flex;
  padding: 9px 20px 9px 40px;
  align-items: center;
  align-self: stretch;
  border-radius: 10px 10px 0 0;
  background: #6B4A3C;
  color: #fff;
  font-size: 18px;
}
.facilities_space.access .access_pt {
  display: flex;
  padding: 24px 40px 32px 40px;
  align-items: flex-start;
  gap: 50px;
  align-self: stretch;
  background: #FFFDE5;
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  text-align: left;
  margin-bottom: 40px;
}
.facilities_space.access .access_pt .access_pt_left {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 24px;
}
.facilities_space.access .access_pt .access_pt_left .toho {
  padding-left: 18px;
  background-image: url(/img/facilities/icon-people.svg);
  background-repeat: no-repeat;
}
.facilities_space.access .access_pt .access_pt_left .bus {
  padding-left: 20px;
  background-image: url(/img/facilities/icon-bus.svg);
  background-repeat: no-repeat;
}
.facilities_space.access .access_pt .access_pt_right {
  flex: 1;
}
.facilities_space.access .access_pt .access_pt_right .timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
  padding-left: 50px;
}
.facilities_space.access .access_pt .access_pt_right .timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background-color: #65463e;
  transform: translateX(-50%);
}
.facilities_space.access .access_pt .access_pt_right .step {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
}
.facilities_space.access .access_pt .access_pt_right .step::before {
  content: "";
  position: absolute;
  left: -30px;
  width: 20px;
  height: 20px;
  background-color: #65463e;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.facilities_space.access .access_pt .access_pt_right .step.badge-step::before {
  display: none;
}
.facilities_space.access .access_pt .access_pt_right .time-badge {
  position: absolute;
  left: -30px;
  width: 60px;
  height: 60px;
  background-color: #fbf9e7;
  border: 4px solid #65463e;
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
  box-sizing: border-box;
}
.facilities_space.access .access_pt .access_pt_right .time-badge .small {
  font-size: 10px;
  font-weight: 600;
}
.facilities_space.access .access_pt .access_pt_right .time-badge .number {
  font-size: 18px;
  margin: 0 1px 2px;
  font-weight: 600;
}
.facilities_space.access .access_pt .access_pt_right .title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.facilities_space.access .access_pt .access_pt_right .description {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.facilities_space.access .access_pt .access_pt_right .walk-time {
  font-size: 14px;
  font-weight: normal;
  padding-left: 16px;
  margin: -16px 0;
}

.facilities_tab_detail_02{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 120px;
  text-align: center;
}

.facilities_tab_detail_02 h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

.facilities_tab_detail_02 .access-table{
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.facilities_tab_detail_02 .access-table tr th{
  color: #3A322E;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 148px;
  border-bottom: 2px solid #6B4A3C;
}

.facilities_tab_detail_02 .access-table tr td{
  color: #3A322E;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-bottom: 1px solid #C4B7B1;
  padding-left: 20px;
}

.facilities_tab_detail_02 .access-table tr th,.facilities_tab_detail_02 .access-table tr td{
  vertical-align: top;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1100px) {
  .facilities_space.access {
    margin-top: 0;
    padding-bottom: 30px;
  }
  .facilities_space.access .access_pt {
    flex-direction: column;
    padding: 20px 30px;
  }
  .facilities_space.access .access_pt .access_pt_left {
    display: none;
  }
  .facilities_space.access .access_pt .access_pt_right .title {
    font-size: 16px;
  }
}


/*========================
　　地域とのつながり
============================*/

/*----------------------
メインビジュアル 
-----------------------*/

.main_bg_conns {
  background: url(/img/blog/main_bg_blog.webp) center / cover;
}

/*----------------------
コンテンツ 
-----------------------*/

#conns_top_sec{
  padding: 80px 0 120px;
  background: #FFFEF5;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.conns_top_sec_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.conns_top_sec_inner div.top_middle_pic {
  width: 60%;
}

.conns_top_sec_inner div {
  width: 36%;
}

.conns_top_sec_inner_002{
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  width: 100%;
}

.conns_top_sec_inner_002 .h2_sec,.conns_top_sec_inner_002 p{
  text-align: center;
}

#conns_middle_sec{
  padding: 80px 0 120px;
}

.conns_middle_inner_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.conns_middle_inner .conns_middle_inner_wrapper div.top_middle_pic, .conns_middle_inner .conns_middle_inner_wrapper>div{
  width: 60%;
}

.conns_middle_inner div.conns_middle_txt{
  width: 36%;
}

.conns_top_sec_inner p,.conns_middle_inner .conns_middle_inner_wrapper .conns_middle_txt p,.conns_top_sec_inner_002 p{
  color: #3A322E;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 190%;
}

.conns_middle_img_area {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.conns_middle_img_area img{
  width: 39%;
}

.conns_img {
  border-radius: 20px;
}

.conns_001{
  border-radius: 20px 20px 100px 20px;
}

.conns_flex{
  display: flex;
  gap: 40px;
}

/*  スケジュール部分左側  */
.img_box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.pos_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.pos_item.reverse {
  flex-direction: row-reverse;
}

.img_wrapper {
  position: relative;
}

.pos_img {
  border-radius: 50%;
}

.pos_mark01,.pos_mark02,.pos_mark03 {
  position: absolute;
}
.pos_mark01{
  top: 20px;
}
.pos_mark02{
  top: 0;
  left: -200px;
}
.pos_mark03{
  top: 20px;
  right: -200px;
}

.pos_txt01,.pos_txt02,.pos_txt03 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFF;
  width: 126px;
  height: 126px;
  margin: 0;
  position: absolute;
}
.pos_txt01{
  bottom: 0;
  right: -40px;
}
.pos_txt02{
  bottom: -50px;
  left: -80px;
}
.pos_txt03{
  bottom: 0;
  right: -110px;
}
/*  スケジュール部分左側  */


/*  スケジュール部分右側  */
.cal_box{
  min-width: 240px;
}

.sch-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sch-list::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 60px;
  width: 1px;
  background-color: #6B4A3C;
  z-index: 1;
}

.sch-list li {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.month {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B4A3C;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 190%;
  width: 120px;
  padding: 4px 40px;
  border-radius: 40px;
  background:  #BFDEAE;
}

.event {
  color:  #3A322E;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 190%;
}

/*  スケジュール部分右側  */

@media screen and (max-width: 768px) {
  .conns_top_sec_inner,.conns_middle_inner_wrapper{
    flex-direction: column;
  }
  .conns_top_sec_inner div.top_middle_pic,.conns_top_sec_inner div,.conns_middle_inner .conns_middle_inner_wrapper>div,.conns_middle_inner div.conns_middle_txt{
    width: 100%;
  }
  #conns_middle_sec .h2_sec{
    font-size: 20px;
    margin: 30px 0 20px;
  }
  .conns_top_sec_inner_002 div .h2_sec{
    margin: 0 0 20px;
  }
  .conns_top_sec_inner_002 .h2_sec, .conns_top_sec_inner_002 p{
    text-align: left;
  }
  .conns_middle_img_area img{
    width: calc((100% - 20px) / 2);
  }

  .conns_flex{
    gap: 5px;
  }
  .pos_mark01, .pos_mark02, .pos_mark03{
    width: 30%;
  }
  .pos_mark01{
    top: -90px;
    left: 40px;
  }
  .pos_mark02{
    top: -95px;
    left: 0;
    width: 40%;
  }
  .pos_mark03 {
    top: -60px;
    right: 40px;
  }

  .img_box{
    justify-content: center;
    gap: 14vw;
  }
  .pos_img{
    width: 60%;
  }
  .reverse .pos_img{
    width: 50%;
  }

  .pos_txt01, .pos_txt02, .pos_txt03{
    display: none;
  }

  
}

@media screen and (max-width: 625px){
  .img_box{
    gap: 22vw;
  }
}

@media screen and (max-width: 505px){
  .img_box {
    gap: 30vw;
  }
}

@media screen and (max-width: 459px){

  .pos_mark01, .pos_mark02, .pos_mark03{
    width: 28%;
  }
  .pos_mark01{
    top: -90px;
    left: 40px;
  }
  .pos_mark02{
    top: -95px;
    left: 0;
    width: 30%;
  }
  .pos_mark03 {
    top: -65px;
    right: 0;
  }
  .img_box{
    gap: 32vw;
  }
  .pos_img{
    width: 70%;
  }
  .reverse .pos_img{
    width: 50%;
  }
  .cal_box{
    min-width: 200px;
  }
  .sch-list::before{
    left: 40px;
  }
  .month{
    width: 80px;
    padding: 4px 0px;
  }
}

@media screen and (max-width: 380px){

  .pos_mark01, .pos_mark02, .pos_mark03{
    width: 40%;
  }
  .pos_mark01{
    top: -90px;
    left: 40px;
  }
  .pos_mark02{
    top: -95px;
    left: 0;
    width: 60%;
  }
  .pos_mark03 {
    top: -60px;
    right: 0;
  }
  .img_box{
    gap: 45vw;
  }
  .pos_img{
    width: 90%;
  }
  .reverse .pos_img{
    width: 70%;
  }
}