@charset "utf-8"; * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  line-height: 1.7em;
  font-weight: 400;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

html {
}

body {
}

.wrapper {
  overflow: hidden;
}

main {
}

.pc {
  display: block;
}

.sp {
  display: none;
}

a {
  color: #030303;
  text-decoration: none;
  transition: 0.35s;
}

figure {
  width: 100%;
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.loading {
  display: block;
  backface-visibility: hidden;
  background-image: url("../img/loading.gif");
  background-repeat: no-repeat;
  background-position: center center;
}

.section_inner {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

#page-top {
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 333;
}

#page-top a {
  color: #fff;
  font-size: 14px;
  width: 70px;
  height: 70px;
  background: #B18046;
  display: grid;
  place-content: center;
  border-radius: 50%;
  line-height: 1.3;
  text-align: center;
}

/*--------header----------------------------*/
header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  z-index: 300;
  width: 100%;
  background: rgb(255 255 255 / 90%);
  height: 80px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(6px);
}

header dl {
  width: 94%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 10%;
  align-items: center;
}

header dt {
  width: 75%;
}

header dt figure {
}

header dt figure img {
  object-fit: contain;
  max-width: 300px;
}

header dd {
  width: 60%;
  display: none;
}

header dd h1 {
  font-size: 15px;
  margin: 0;
}

header dd ul {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

header dd ul li {
  width: 32%;
}

header dd ul li a {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

header dd ul li:nth-of-type(1) a {
  background: #B18247;
  line-height: 1.3;
}

header dd ul li:nth-of-type(2) a {
  background: #269AE7;
  font-size: 20px;
}

header dd ul li:nth-of-type(3) a {
  background: #ff7218;
  font-size: 20px;
}

header dd ul li:nth-of-type(4) a {
  background: #8EC025;
  font-size: 20px;
}

/*--------header--------------ここまで--------------*/
/*--------footer----------------------------*/
footer {
  z-index: 2;
  width: 100%;
  background: #fff;
}

footer dl {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 10%;
  align-items: center;
  padding: 15px 0 15px;
  flex-wrap: wrap;
}

footer dt {
  width: 100%;
}

footer dt figure {
}

footer dt figure img {
}

footer dd {
  width: 100%;
}

footer dd h1 {
  font-size: 15px;
  margin: 0;
}

footer dd ul {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  width: 80%;
  flex-wrap: wrap;
}

footer dd ul li {
  width: 100%;
}

footer dd ul li a {
  display: flex;
  height: 100%;
  padding: 5px;
  font-weight: bold;
  border-radius: 10px;
  font-size: 4vw;
}

footer dd ul li a p {
  font-weight: bold;
}

.small_inner {
  background: #B18046;
  text-align: center;
  height: 30px;
}

small {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  color: #fff;
}

/*--------footer--------------ここまで--------------*/
/*--------hero----------------------------*/
.hero {
  height: calc(100vh - 80px);
  margin-top: 80px;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
  width: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  height: calc(100vh - 80px);
}

.swiper-slide h2 img {
  margin-top: 20px;
  width: 200px;
  height: auto;
  filter: drop-shadow(0px 0px 2px rgba(255,255,255,1)) drop-shadow(0px 0px 2px rgba(255,255,255,1))drop-shadow(0px 0px 3px rgba(255,255,255,1))drop-shadow(0px 0px 3px rgba(255,255,255,1));
}

.swiper-slide h2 {
  position: absolute;
  top: 8%;
  right: 2%;
  z-index: 2;
  font-weight: bold;
  font-size: clamp(20px, 3vw, 30px);
  text-shadow: 2px 2px 4px #ffffff, -2px 2px 4px #ffffff, 2px -2px 4px #ffffff, -2px -2px 4px #ffffff, 2px 0px 4px #ffffff, 0px 2px 4px #ffffff, -2px 0px 4px #ffffff, 0px -2px 4px #ffffff;
}

.swiper-slide .slide_text {
  position: absolute;
  bottom: 2%;
  left: 3%;
  z-index: 2;
  background: rgb(255 255 255 / 50%);
  padding: 10px 20px;
  backdrop-filter: blur(8px);
  filter: drop-shadow(1px 3px 6px rgba(0,0,100,.2));
  border-radius: 10px;
  width: 80%;
}

.swiper-slide h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.swiper-slide p {
  font-size: 13px;
  line-height: 1.5;
}

.under-hero {
  height: 150px;
  margin-top: 80px;
  background: #FFC750;
  display: grid;
  place-content: center;
}

.under-hero h1 {
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #fff;
  filter: drop-shadow(0px 1px 2px rgba(0,0,0,.3));
  font-size: 6vw;
}

/*--------hero--------------ここまで--------------*/
/*--------top_about----------------------------*/
.top_about {
  padding: 50px 0 50px;
}

.top_about p.top_about_catch {
  font-size: 10vw;
  text-align: center;
  color: #efefef;
  width: 100%;
  margin: 0;
  font-family: 'Belleza', sans-serif;
  line-height: 1;
}

.head_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

.head_grid_parts_1 {
  grid-area: 1 / 1 / 2 / 3;
}

.head_grid_parts_2 {
  grid-area: 2 / 1 / 3 / 2;
}

.head_grid_parts_3 {
  grid-area: 2 / 2 / 3 / 3;
}

.head_grid_parts_4 {
  grid-area: 1 / 3 / 3 / 4;
}

.head_grid_parts_5 {
  grid-area: 1 / 4 / 2 / 5;
}

.head_grid_parts_6 {
  grid-area: 1 / 5 / 2 / 6;
}

.head_grid_parts_7 {
  grid-area: 2 / 4 / 3 / 6;
}

.head_grid figure {
  height: 100%;
}

.top_about h2 {
  font-size: 5vw;
  text-align: center;
  margin: 50px 0;
  color: #ff7218;
  font-weight: bold;
}

.top_about dl {
  display: flex;
  flex-wrap: wrap;
}

.top_about dt {
  width: 100%;
  background: url(../img/top_about_detail_back.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 80%;
  display: flex;
  flex-direction: column;
  padding: 30px 0 30px;
}

.top_about dd {
  width: 100%;
  padding: 15px;
  background: #efefef;
  display: flex;
  flex-direction: column;
}

.top_about h3 {
  font-size: 5vw;
  margin-bottom: 30px;
  font-weight: bold;
}

.top_about dd h4 {
  text-align: center;
  font-size: 4.5vw;
  font-weight: bold;
}

.top_about dd iframe {
  width: 100%;
  height: 200px;
  display: block;
  margin: 30px 0 30px;
}

.top_about p {
  width: 100%;
  margin-bottom: auto;
  text-shadow: 1px 1px 1px #ffffff, -1px 1px 1px #ffffff, 1px -1px 1px #ffffff, -1px -1px 1px #ffffff, 1px 0px 1px #ffffff, 0px 1px 1px #ffffff, -1px 0px 1px #ffffff, 0px -1px 1px #ffffff;
  filter: drop-shadow(0px 0px 2px white);
}

.link_btn {
  margin: auto;
  text-align: center;
}

.link_btn.orange {
  max-width: 300px;
  background: #FF7218;
  width: 100%;
  margin: 30px auto 0;
}

.link_btn.gray {
  background: #757474;
  width: 100%;
}

.link_btn a {
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 4.5vw;
  opacity: 1;
}

.link_btn a::after {
}

/*--------top_about--------------ここまで--------------*/
/*--------top_know----------------------------*/
.top_know {
  background: #FFC750;
  padding: 50px 0;
}

.top_know h2 {
  text-align: center;
  border-bottom: solid 2px #1a1a1a;
  width: fit-content;
  padding: 0px 1em;
  margin: 0 auto 0px;
  font-weight: bold;
  font-size: 5vw;
}

.top_know ul {
  display: flex;
  gap: 50px;
  width: 100%;
  margin: 30px 0 50px;
  flex-wrap: wrap;
}

.top_know ul li {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  width: 100%;
}

.top_know ul li .know_number {
  color: #fffb91;
  font-size: 70px;
  text-align: center;
  font-family: montserrat;
  line-height: 1;
  margin-bottom: 10px;
}

.top_know ul li .know_text {
  font-size: 4.5vw;
  background: #fff;
  padding: 10px 15px;
  text-align: center;
  border-radius: 20px;
  display: grid;
  place-content: center;
  margin: 0 auto 30px;
  position: relative;
  width: fit-content;
}

.top_know ul li .know_text::after {
  content: "";
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-width: 20px;
  border-right-width: 20px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.top_know ul li figure {
  margin: auto;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  width: 70%;
}

.top_know h3 {
  background: #fff;
  border: solid 1px #ff7218;
  color: #ff7218;
  text-align: justify;
  padding: 10px 15px;
  font-size: 5vw;
  font-weight: bold;
  margin-top: 50px;
}

/*--------top_know--------------ここまで--------------*/
/*--------top_bnr----------------------------*/
.top_bnr {
  padding: 50px 0;
  background: #efefef;
}

.top_bnr ul {
  display: flex;
  flex-wrap: wrap;
}

.top_bnr ul li {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.top_bnr ul li a {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}

.top_bnr ul li a:hover + figure img {
  transform: scale(1.05);
}

.top_bnr ul li a h3 {
  color: #fff;
  font-weight: bold;
  font-size: 9vw;
  text-align: center;
}

.top_bnr ul li a p {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 90%;
  margin: 0 5%;
}

.top_bnr ul li figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 400px;
  overflow: hidden;
}

.top_bnr ul li figure img {
  transition: 0.2s;
}

/*--------top_bnr--------------ここまで--------------*/
/*--------top_smart----------------------------*/
.top_smart {
  padding: 50px 0;
  background: #DAD1C6;
}

.top_smart_catch {
  background: #fff;
  border: solid 1px #B18046;
  color: #B18046;
  text-align: center;
  padding: 10px 15px;
  font-size: 5vw;
  font-weight: bold;
}

.top_smart h2 {
  line-height: 1.5;
  font-size: 6vw;
  font-weight: bold;
  text-align: center;
  margin: 30px 0;
}

.top_smart h3 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background: #B18046;
  color: #fff;
  margin: 30px 0 30px;
}

ul.top_smart_life {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

ul.top_smart_life li {
  width: 100%;
}

ul.top_smart_life li:nth-of-type(1) {
}

ul.top_smart_explanation {
  display: flex;
  gap: 15px 4%;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

ul.top_smart_explanation li {
  width: 48%;
  position: relative;
}

ul.top_smart_explanation li:nth-of-type(10) figure::after, ul.top_smart_explanation li:nth-of-type(11) figure::after {
  content: "オプション\Aになります";
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 1px 3px;
  display: block;
  background: #c71908;
  border: solid 2px #c71908;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  font-size: 10px;
  line-height: 1.2;
  white-space: pre;
}

ul.top_smart_explanation li a figure {
  overflow: hidden;
  position: relative;
}

ul.top_smart_explanation li a figure img {
  transition: 0.2s;
}

ul.top_smart_explanation li a figcaption {
  margin-top: 4px;
  font-size: 4.5vw;
}

ul.top_smart_explanation li a figcaption span {
  background: #ff7218;
  color: #fff;
  padding: 0 8px;
  font-size: 13px;
  display: inline-block;
  border-radius: 4px;
  padding-bottom: 1px;
  position: relative;
  bottom: 2px;
}

ul.top_smart_explanation li a:hover figure img {
  transform: scale(1.05);
}

ul.top_smart_explanation li p {
  background: #ff7218;
  color: #fff;
  position: absolute;
  bottom: 22px;
  right: -17px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 6px;
  line-height: 1.3;
  font-size: 12px;
  transform: rotate(-7deg);
  border: solid 1px #fff;
  filter: drop-shadow(2px 4px 4px rgba(0,0,0,.3));
}

ul.top_smart_explanation li:nth-last-of-type(1) {
  max-height: 226px;
  display: grid;
  place-content: center;
  place-items: center;
}

ul.top_smart_explanation li h4 {
  color: #ff7218;
  font-weight: bold;
  font-size: 6vw;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-align: center;
}

/*--------top_smart--------------ここまで--------------*/
/*--------top_smart--------------ここまで--------------*/
/*--------top_smart--------------ここまで--------------*/
/*--------mid_hero----------------------------*/
.mid_hero {
  position: relative;
  padding: 50px 0;
  margin: 0px 0 0px;
}

.mid_hero_inner {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
}

.mid_hero_inner p {
  background: #fff;
  padding: 10px;
  font-size: 5vw;
  text-align: center;
  font-weight: bold;
  color: #FF7218;
  width: 100%;
  margin-top: 30px;
}

.mid_hero_inner h2 {
  color: #fff;
  font-size: 5.8vw;
  text-align: right;
  font-weight: bold;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,.5));
  width: 100%;
  position: relative;
  margin-top: 20px;
  line-height: 1.3;
}

.mid_hero_inner h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: url(../img/waiki_mark.png);
  width: 68px;
  height: 68px;
  transform: translate(0%, -50%);
  background-size: contain;
}

figure.mid_hero_image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  height: 100%;
  width: 100%;
}

figure.mid_hero_image img {
}

figure.mid_hero_snap {
  position: absolute;
  right: 6%;
  bottom: 11%;
  width: 34%;
  max-width: 400px;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,.5));
  transform: rotate(15deg);
  outline: solid 10px #fff;
  height: auto;
}

figure.mid_hero_snap img {
  transform: rotate(-15deg) scale(1.2);
}

/*--------mid_hero--------------ここまで--------------*/
/*--------top_waiki----------------------------*/
.top_waiki {
  background: #E9F5FD;
  padding-bottom: 50px;
}

.top_waiki h2 {
  background: #ff7218;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw 0 100vw;
  font-size: 5vw;
  text-align: center;
}

.top_waiki_innter_top {
  margin: 50px 0 0px;
}

ul.top_waiki_annai {
  display: flex;
  gap: 30px 4%;
  flex-wrap: wrap;
}

ul.top_waiki_annai li {
  width: 100%;
}

ul.top_waiki_annai li figure {
  border-radius: 20px;
}

ul.top_waiki_annai li figure img {
}

ul.top_waiki_annai li figcaption {
  margin-top: 5px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 4.5vw;
}

ul.top_waiki_annai li figcaption::before {
  content: "■";
  color: #ff7218;
}

.lunch_block {
  margin: 50px 0;
}

.lunch_block .inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.lunch_block h5 {
  display: flex;
  align-items: center;
  position: relative;
}

.lunch_block h5 span:nth-of-type(1) {
  background: #ff7218;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 0.5em;
  font-size: 20px;
  line-height: 1.2;
  z-index: 2;
  transform: rotate(355deg);
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,.3));
}

.lunch_block h5 span:nth-of-type(2) {
  background: #fff;
  width: 75%;
  text-align: center;
  font-size: 20px;
  padding: 0.5em 0.5em 0.5em 2em;
  position: absolute;
  font-weight: bold;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,.3));
  margin-left: 25%;
}

.lunch_block dl {
  display: flex;
  gap: 4%;
  flex-wrap: wrap;
}

.lunch_block dt {
  display: flex;
  width: 100%;
}

.lunch_block dt figure {
}

.lunch_block dt figure img {
}

.lunch_block dd {
  width: 100%;
}

.lunch_block dd p {
  padding: 0;
  font-size: 16px;
}

.lunch_block dd p + p {
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 1em;
}

.top_waiki_innter_top h3 {
  background: #fff;
  text-align: center;
  font-size: 5vw;
  color: #269AE7;
  font-weight: bold;
  margin-top: 50px;
}

.top_waiki_innter_top h4 {
  font-size: 6vw;
  text-align: center;
  font-weight: bold;
  margin: 30px 0;
}

.top_waiki_innter_top p {
  text-align: justify;
}

ul.top_waiki_secure {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 30px 0 0px;
  flex-wrap: wrap;
}

ul.top_waiki_secure li {
  width: 80%;
  aspect-ratio: 1/1;
  display: flex;
}

ul.top_waiki_secure li figure {
  display: flex;
  flex-direction: column;
  border-radius: 50%;
}

ul.top_waiki_secure li figure img {
}

ul.top_waiki_secure li figure figcaption {
  background: #269AE7;
  height: 100%;
  color: #fff;
  text-align: center;
  display: grid;
  place-content: center;
  font-size: 5vw;
  font-weight: bold;
  padding-bottom: 20px;
  line-height: 1.5;
}

/*--------top_waiki--------------ここまで--------------*/
/*--------top_waiki_bottom----------------------------*/
.top_waiki_bottom {
  padding: 50px 0;
}

.top_waiki_bottom h3 {
  background: #269AE7;
  text-align: center;
  font-size: 5vw;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
}

.top_waiki_bottom figure {
  width: 100%;
  margin: 50px auto 0;
  position: relative;
}

.top_waiki_bottom figure img {
}

.top_waiki_bottom figure::after {
  content: "【※見守りサービスはオプション（3万円）となります】";
  position: relative;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  width: fit-content;
  margin: auto;
  display: block;
}

/*--------top_waiki_bottom--------------ここまで--------------*/
/*--------top_rent----------------------------*/
.top_rent {
  background: #E3D6E8;
  padding: 50px 0;
}

.top_rent h3 {
  background: #fff;
  text-align: center;
  font-size: 30px;
  color: #b968c7;
  font-weight: bold;
}

.top_rent_top_section_inner > h3 {
  background: #fff;
  text-align: center;
  font-size: 30px;
  color: #b968c7;
  font-weight: bold;
  margin-top: 100px;
  margin-bottom: 50px;
}

.top_rent h4 {
  font-size: 6vw;
  text-align: center;
  font-weight: bold;
  margin: 15px 0 0;
}

.top_rent h5 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin: 10px 0 0;
  line-height: 1;
}

.top_rent h5 span {
  font-size: 60px;
  text-align: center;
  font-weight: bold;
  font-family: "roboto", serif;
  line-height: 1;
  margin: 0 4px;
  position: relative;
  bottom: -2px;
}

.top_rent_top_section_inner {
  padding: 0px 0 0px;
  margin-top: 80px;
}

.top_rent_bottom_section_inner {
  margin: auto;
  max-width: 1200px;
}

.top_rent_top_section_inner dl {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.top_rent_top_section_inner dl + dl {
  margin-top: 50px;
}

.top_rent_top_section_inner dl dt {
  width: 100%;
}

.top_rent_top_section_inner dl dt figure {
}

.top_rent_top_section_inner dl dt figure img {
  object-fit: contain;
}

.top_rent_top_section_inner dl dd {
  width: 100%;
  background: #fff;
}

.top_rent_bottom_section_inner dl dd iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.top_rent_top_section_inner dl:nth-of-type(2) dd {
  display: flex;
  gap: 4%;
  align-items: flex-start;
}

.top_rent_top_section_inner dl:nth-of-type(2) dd figure {
  width: 100%;
}

.top_rent_top_section_inner dl:nth-of-type(2) dd figure img {
  object-fit: contain;
}

.top_rent_block {
  display: flex;
  gap: 30px;
  margin: 50px auto 0;
  flex-wrap: wrap;
}

.top_rent_block_left {
  width: 100%;
}

.top_rent_block_left_title {
}

.top_rent_block_left_title h3 {
  background: #fff;
  text-align: center;
  font-size: 30px;
  color: #905DA2;
  font-weight: bold;
}

.top_rent_block_left_title h4 {
  text-align: center;
  font-size: 20px;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin: 0;
}

.top_rent_block_left_text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  gap: 20px;
}

.top_rent_block_left_text dl {
  display: flex;
  flex-wrap: wrap;
}

.top_rent_block_left_text dl + dl {
  margin-top: auto;
}

.top_rent_block_left_text dl dt {
  width: 100%;
  background: #e3d6e8;
  display: grid;
  place-content: center;
  font-size: 18px;
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  background: #ffe18e;
  line-height: 1.5;
}

.top_rent_block_left_text dl dd {
  width: 100%;
  display: grid;
  align-items: center;
  padding: 20px 20px;
  background: #fff;
}

.top_rent_block_left_text dl dd b {
  font-size: 18px;
}

.top_rent_block_left_text dl dd span {
  font-size: 13px;
  color: #555;
}

.top_rent_block_left_text dl dd.dd_unit {
  display: flex;
  gap: 3px 5%;
  flex-wrap: wrap;
  align-items: flex-start;
}

.top_rent_block_left_text dl dd.dd_unit hr {
  border: none;
  border-top: 1px double #1a1a1a;
  width: 100%;
}

.dd_left {
  width: 45%;
}

.dd_right {
  width: 50%;
  line-height: 1.5;
}

.top_rent_block_right {
  width: 100%;
  background: #fff;
  padding: 20px;
}

.top_rent_block_right iframe {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  display: block;
}

.top_rent_block_right h5 {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  margin: 0 0 15px;
}

.top_rent_block_right dl {
  display: flex;
  gap: 0%;
  flex-wrap: wrap;
}

.top_rent_block_right dl dt {
  width: 100%;
  font-weight: bold;
  text-align: center;
  background: #ddd;
  display: grid;
  place-content: center;
}

.top_rent_block_right dl dd {
  width: 100%;
  padding: 0 1em;
}

.top_rent_block_right dl + dl {
  margin-top: 10px;
}

.top_rent_top_section_inner dl:nth-of-type(2) {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  margin-top: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.top_rent_top_section_inner dl:nth-of-type(2) dt {
  width: 65%;
}

.top_rent_top_section_inner dl:nth-of-type(2) dt figure {
}

.top_rent_top_section_inner dl:nth-of-type(2) dt figure img {
  object-fit: contain;
}

.top_rent_top_section_inner dl:nth-of-type(2) dd {
  width: 65%;
  background: #fff;
}

.top_rent_top_section_inner ul {
  max-width: 1200px;
  margin: 25px auto 0;
  display: flex;
  gap: 15px 6%;
  background: #fff;
  flex-wrap: wrap;
  padding: 10px;
}

.top_rent_top_section_inner ul li {
  background: #fff;
  width: 47%;
}

.top_rent_top_section_inner ul li figure {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  justify-content: center;
}

.top_rent_top_section_inner ul li figure figcaption {
  background: #ff7218;
  color: #fff;
  padding: 7px 10px;
  line-height: 1;
}

.top_rent_top_section_inner ul li figure figcaption + figcaption {
  margin-left: 10px;
}

.top_rent_top_section_inner ul li figure img {
  height: auto;
  margin-top: 10px;
}

/*--------top_rent--------------ここまで--------------*/
/* --------------------ポップアップメニューここから-------------------- */
.modal_open {
  display: inline-block;
  cursor: pointer;
}

.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 80%;
  max-width: 80%;
  margin: 0;
  padding: 20px;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
  filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3));
  border-radius: 5px;
}

.modal_box dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  gap: 30px;
  flex-wrap: wrap;
}

.modal_box dt {
  width: 100%;
}

.modal_box dd {
  width: 100%;
}

.modal_box dd h2 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 6vw;
  text-align: left;
  line-height: 1;
}

.modal_box dd p {
  text-align: justify;
  font-size: 4vw;
}

a.modal_close {
  top: 0;
  right: 0;
  display: block;
  font-size: 4.5vw;
  color: #222;
  text-align: center;
  background: #444;
  padding: 10px 15px;
  color: #fff!important;
  margin: 30px auto 0;
  border-radius: 5px;
}

.modal_close p {
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

.madori {
  width: 100%;
  margin: auto;
}

.madori img {
  max-height: 600px;
  object-fit: contain;
}

.width {
  width: auto!important;
}

/* --------------------ポップアップメニューここまで-------------------- */
.information {
  height: calc(100vh - 290px);
  display: grid;
  place-content: center;
  margin-top: 80px;
  background: #ddd;
}

.information p {
  text-align: justify;
  font-size: 4.5vw;
  width: 80%;
  margin: auto;
}

/*-----SPメニュー用-----*/
.menu {
  position: relative;
  z-index: 1001;
}

#smt_menu_wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.5s;
  width: 100%;
  visibility: hidden;
  background-color: rgb(255 114 24 / 70%);
  backdrop-filter: blur(12px);
  padding: 50px;
}

#smt_menu_wrapper>ul {
  margin: 0 auto 0 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

#smt_menu_wrapper>ul>li {
  font-size: 20px;
  list-style-type: none;
  padding: 0;
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}

#smt_menu_wrapper ul li.red a {
  color: #ffffff;
}

.cta_bg {
  width: 252px;
  height: 49px;
  text-align: center;
  line-height: 29px;
  margin: 5px 0 0 0;
  display: block;
  transition: all 0.3s ease;
}

.cta_bg:hover {
  color: #f5f5f5;
}

#smt_menu_wrapper ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

#smt_menu_wrapper ul li a {
  display: block;
  color: #fff;
  padding: 0;
  background: none;
  font-size: 4vw;
}

#smt_menu_wrapper.active {
  transform: translateY(0%);
  visibility: inherit;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.navToggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  transform: rotate(-45deg);
  border-color: #fff;
}

.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
  border-color: #fff;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.navToggle {
  display: block;
  position: fixed;
  top: 17px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10015;
  text-align: center;
  border-radius: 2px;
}

.navToggle span:nth-child(1) {
  top: 15px;
}

.navToggle span:nth-child(2) {
  top: 24px;
}

.navToggle span {
  display: block;
  position: absolute;
  width: 30px;
  border-top: solid 3px #222;
  transition: 0.3s;
  left: 6px;
}

/*-----SPメニュー用-----*/
.information {
  height: calc(100vh - 290px);
  display: grid;
  place-content: center;
  margin-top: 120px;
}

.information p {
  text-align: center;
  font-size: 20px;
}

.test {
  display: none;
}

/* -----------------吹田市に住む ここから----------------- */
#suita {
  overflow-x: hidden;
}

.suita_top_visual {
  margin-top: 80px;
  height: calc(100vh - 80px);
  position: relative;
}

.parent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.4fr 0.6fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 100%;
}

.parent li figure {
  height: 100%;
  overflow: hidden;
}

.child1 {
  width: 100%;
  grid-area: 1 / 1 / 2 / 3;
}

.child2 {
  width: 100%;
  grid-area: 2 / 1 / 3 / 2;
}

.child3 {
  width: 100%;
  grid-area: 2 / 2 / 3 / 3;
}

.suita_top_visual h2 {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  display: flex;
  background: rgb(255 255 255 / 15%);
  filter: drop-shadow(0px 0px 18px rgba(38,154,231,.8));
}

.suita_top_visual h2::before {
  content: url(../img/suita/bird01.png);
  position: absolute;
  top: -80px;
  left: -50px;
  z-index: 2;
  transform: scale(0.7);
}

.suita_top_visual h2::after {
  content: url(../img/suita/bird02.png);
  position: absolute;
  bottom: -70px;
  right: -50px;
  z-index: 2;
  transform: scale(0.7);
}

.suita_top_visual h2 span {
  font-size: 36px;
  color: #fff;
  font-family: 'Kiwi Maru', serif;
  line-height: 1;
  display: grid;
  padding: 2px 6px 10px;
  border: solid 1px #fff;
  place-items: center;
  border-right: none;
}

.suita_top_visual h2 span:last-child {
  border-right: solid 1px #fff;
}

.suita_index {
  margin: 50px 0 0;
}

.suita_index > .section_inner {
  border: solid 2px #269AE7;
  padding: 25px 0;
}

.suita_index h2 {
  background: #269AE7;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

.suita_index p {
  max-width: 710px;
  margin: 15px auto;
  width: fit-content;
  width: 90%;
  text-align: center;
}

.suita_index p span {
  display: inline-block;
  text-align: center;
}

.about_top_index {
  width: 90%;
  max-width: 1000px;
  text-align: center;
  margin: 40px auto 0;
}

.about_top_index h3 {
  position: relative;
}

.about_top_index h3::before, .about_top_index h3::after {
  content: "";
  display: block;
  width: 300px;
  height: 10px;
  background-image: url(../img/suita/border.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 25px;
}

.about_top_index h3::before {
  background-position: left;
  left: 0%;
  top: -10px;
  left: 0;
}

.about_top_index h3::after {
  background-position: right;
  right: 0%;
  top: 85px;
  left: 0;
}

.about_top_index h3::before {
  background-position: left;
  left: 0%;
}

.about_top_index h3::after {
  background-position: right;
  right: 0%;
  z-index: 22;
}

.about_top_index h3 p {
  position: relative;
  width: 100%;
  max-width: 350px;
  font-size: 24px;
  font-weight: bold;
  color: #269AE7;
  background-color: #fff;
  margin: 0 auto;
  z-index: 10;
}

.about_top_index h3 span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #978C85;
}

.about_top_index ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.about_top_index ul li {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 30px 1.5% 0;
}

.about_top_index ul li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid;
  padding: 10px 0;
}

.about_top_index ul li a::after {
  content: "";
  display: block;
  width: 95%;
  height: 90%;
  border-right: 1px solid;
  border-bottom: 1px solid;
  position: absolute;
  bottom: -6px;
  right: -6px;
  transition: .2s;
}

.about_top_index ul li a:hover::after {
  bottom: 0;
  right: 0;
  transition: .2s;
}

.about_top_index ul li:nth-child(1) a {
  color: #269AE7;
  border-color: #269AE7;
}

.about_top_index ul li:nth-child(1) a::after {
  border-color: #269AE7;
}

.about_top_index ul li:nth-child(1) a:hover {
  color: #fff;
  background-color: #269AE7;
}

.about_top_index ul li:nth-child(2) a {
  color: #FF7319;
  border-color: #FF7319;
}

.about_top_index ul li:nth-child(2) a::after {
  border-color: #FF7319;
}

.about_top_index ul li:nth-child(2) a:hover {
  color: #fff;
  background-color: #FF7319;
}

.about_top_index ul li:nth-child(3) a {
  color: #915DA3;
  border-color: #915DA3;
}

.about_top_index ul li:nth-child(3) a::after {
  border-color: #915DA3;
}

.about_top_index ul li:nth-child(3) a:hover {
  color: #fff;
  background-color: #915DA3;
}

.about_top_index ul li:nth-child(4) a {
  color: #B18046;
  border-color: #B18046;
}

.about_top_index ul li:nth-child(4) a::after {
  border-color: #B18046;
}

.about_top_index ul li:nth-child(4) a:hover {
  color: #fff;
  background-color: #B18046;
}

.about_top_index ul li:nth-child(5) a {
  color: #8EC025;
  border-color: #8EC025;
}

.about_top_index ul li:nth-child(5) a::after {
  border-color: #8EC025;
}

.about_top_index ul li:nth-child(5) a:hover {
  color: #fff;
  background-color: #8EC025;
}

.suita_access {
  background-image: url(../img/suita/access_back.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  scroll-margin-top: 80px;
}

.suita_access > .section_inner {
  margin: 50px auto 0;
}

.suita_access h2 {
  color: #8EC025;
  font-size: 24px;
  text-align: center;
  border-bottom: solid 3px #1a1a1a;
  max-width: 710px;
  margin: auto;
  font-weight: 500;
  padding-bottom: 10px;
  width: 50%;
}

.suita_access p {
  font-size: 20px;
  width: fit-content;
  margin: 50px auto;
  font-weight: bold;
  text-align: center;
}

.suita_access p.small {
  font-size: 16px;
  font-weight: normal;
}

.suita_access h3 {
  font-size: 24px;
  color: #8EC025;
  background: #fff;
  border: solid 1px #8EC025;
  text-align: center;
  font-weight: 500;
}

.suita_access figure {
  margin-top: 25px;
}

.suita_accessline {
  margin: 50px 0;
}

.suita_accessline > .section_inner {
}

.suita_accessline h3 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  background: #8ec025;
  color: #fff;
  padding: 5px 10px;
}

.suita_accessline ul {
  margin-top: 50px;
}

.suita_accessline ul li {
}

.suita_accessline ul li figure {
}

.suita_accessline ul li figure img {
  width: 100%;
}

.suita_accessline ul li figcaption {
  bottom: 0;
  background: #fff;
  text-align: right;
}

.suita_accessline .top_about_catch {
  text-align: center;
  color: #efefef;
  width: 100%;
  margin: 25px 0 0 0;
  font-family: 'Belleza', sans-serif;
  line-height: 1;
  font-size: 10vw;
}

.accessline_parent {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: 100%;
  gap: 30px 5%;
}

.accessline_child1 {
  grid-area: 1 / 1 / 2 / 2;
}

.accessline_child2 {
  grid-area: 2 / 1 / 3 / 2;
  position: relative;
}

.accessline_child3 {
  grid-area: 3 / 1 / 4 / 2;
  position: relative;
}

.suita_uchihonmachi {
  margin: 50px 0;
  scroll-margin-top: 80px;
}

.suita_uchihonmachi > .section_inner {
}

.suita_uchihonmachi h2 {
  color: #FF7319;
  font-size: 24px;
  text-align: center;
  border-bottom: solid 3px #1a1a1a;
  max-width: 710px;
  margin: auto;
  font-weight: 500;
  padding-bottom: 10px;
}

.suita_uchihonmachi p {
  font-size: 20px;
  width: fit-content;
  margin: 25px auto;
  font-weight: bold;
  text-align: center;
}

.suita_uchihonmachi ul {
  display: flex;
  gap: 30px 12%;
  flex-wrap: wrap;
  margin: 50px auto 0;
  max-width: 1200px;
}

.suita_uchihonmachi ul li {
  width: 100%;
}

.suita_uchihonmachi ul li:nth-of-type(1) h3 {
  font-size: 24px;
  color: #FF7319;
  border-bottom: solid 1px #FF7319;
  margin-bottom: 10px;
  font-weight: 500;
}

.suita_uchihonmachi ul li:nth-of-type(2) h3 {
  font-size: 24px;
  color: #269AE7;
  border-bottom: solid 1px #269AE7;
  margin-bottom: 10px;
  font-weight: 500;
}

.suita_uchihonmachi ul li:nth-of-type(3) h3 {
  font-size: 24px;
  color: #8EC025;
  border-bottom: solid 1px #8EC025;
  margin-bottom: 10px;
  font-weight: 500;
}

.suita_uchihonmachi ul li:nth-of-type(4) h3 {
  font-size: 24px;
  color: #B18247;
  border-bottom: solid 1px #B18247;
  margin-bottom: 10px;
  font-weight: 500;
}

.suita_uchihonmachi ul li dl {
  display: flex;
  font-size: 14px;
  gap: 20px 2%;
}

.suita_uchihonmachi ul li dl dt {
  width: 70%;
}

.suita_uchihonmachi ul li dl dd:nth-of-type(1) {
  width: 20%;
}

.suita_uchihonmachi ul li dl dd:nth-of-type(2) {
  width: 16%;
  text-align: right;
}

.suita_live {
  margin: 50px 0;
  scroll-margin-top: 80px;
}

.suita_live > .section_inner {
}

.suita_live h2 {
  color: #269AE7;
  font-size: 24px;
  text-align: center;
  border-bottom: solid 3px #1a1a1a;
  max-width: 710px;
  margin: auto;
  font-weight: 500;
  padding-bottom: 10px;
}

.suita_live p {
  font-size: 20px;
  width: fit-content;
  margin: 25px auto;
  font-weight: bold;
  text-align: center;
}

.suita_live figure {
  width: 100%;
  max-width: 1115px;
  margin: 50px auto 0;
  position: relative;
}

.suita_live figure img {
}

.suita_live h3 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  background: #B18247;
  color: #fff;
  margin: 25px 0;
  scroll-margin-top: 120px;
}

.suita_live .swiper-slide figure {
  height: 180px;
  border-radius: 10px;
  margin: 0;
}

.suita_live .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suita_live .swiper-slide h4 {
  text-align: center;
  font-weight: bold;
  color: #269AE7;
  margin: 10px 0;
  font-size: 17px;
  font-feature-settings: "palt";
}

.suita_live .swiper-slide p {
  font-size: 14px;
  text-align: justify;
  font-weight: normal;
  width: 100%;
  margin: 0;
}

.suita_info {
  background: #7FA037;
}

.suita_info > .section_inner {
  padding: 50px 0;
}

.suita_info_first {
}

.suita_info_first h2 {
  background: #fff;
  color: #7FA037;
  font-size: 32px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0 15px;
}

.suita_info_first h3 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin: 25px 0;
}

.suita_info_first ul {
  display: flex;
  gap: 20px 0;
  flex-wrap: wrap;
}

.suita_info_first ul li:nth-of-type(1) {
  width: 100%;
}

.suita_info_first ul li:nth-of-type(1) figure {
  position: relative;
}

.suita_info_first ul li:nth-of-type(1) figure img {
  max-height: 210px;
}

.suita_info_first ul li:nth-of-type(1) figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 2px 10px;
  font-size: 14px;
}

.suita_info_first ul li:nth-of-type(2) {
  width: 100%;
}

.suita_info_first ul li dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.suita_info_first ul li dl dt {
  width: 100%;
}

.suita_info_first ul li dl dt figure {
  position: relative;
  height: 100%;
}

.suita_info_first ul li dl dt figure img {
  max-height: 210px;
}

.suita_info_first ul li dl dt figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 2px 10px;
  font-size: 14px;
}

.suita_info_first ul li dl dd {
  width: 100%;
}

.suita_info_first ul li dl dd figure {
  height: 100%;
}

.suita_info_first ul li dl dd figure img {
  max-height: 210px;
}

.suita_info_first ul li dl dd figcaption {
}

.suita_info_first ul li p {
  color: #fff;
  margin-top: 30px;
  font-size: 14px;
  text-align: justify;
}

.suita_info_first h4 {
  font-family: 'Noto Serif JP';
  font-size: 64px;
  color: #fff;
  background: #435817;
  line-height: 1;
  text-align: right;
  display: grid;
  place-items: center right;
  padding: 10px 20px 24px;
  margin-top: 25px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  border-image-source: linear-gradient(#435817,#435817);
  border-image-slice: 0 fill;
  border-image-outset: 0 0 0 100vw;
}

/*-------------------------------*/
.suita_info_second {
  margin-top: 100px;
}

.suita_info_second h2 {
  background: #fff;
  color: #7FA037;
  font-size: 32px;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0 15px;
}

.suita_info_second h3 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin: 25px 0;
}

.suita_info_second ul {
  display: flex;
  gap: 4%;
  flex-wrap: wrap;
  gap: 20px;
}

.suita_info_second ul li:nth-of-type(1) {
  width: 100%;
}

.suita_info_second ul li:nth-of-type(1) figure {
  position: relative;
}

.suita_info_second ul li:nth-of-type(1) figure img {
  max-height: 210px;
}

.suita_info_second ul li:nth-of-type(1) figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 2px 10px;
  font-size: 14px;
}

.suita_info_second ul li:nth-of-type(2) {
  width: 100%;
}

.suita_info_second ul li dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.suita_info_second ul li dl dt {
  width: 100%;
}

.suita_info_second ul li dl dt figure {
  position: relative;
  height: 100%;
}

.suita_info_second ul li dl dt figure img {
  max-height: 210px;
}

.suita_info_second ul li dl dt figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 2px 10px;
  font-size: 14px;
}

.suita_info_second ul li dl dd figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 2px 10px;
  font-size: 14px;
}

.suita_info_second ul li dl dd {
  width: 100%;
}

.suita_info_second ul li dl dd figure {
  height: 100%;
  position: relative;
}

.suita_info_second ul li dl dd figure img {
  max-height: 210px;
}

.suita_info_second ul li dl dd figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 2px 10px;
  font-size: 14px;
}

.suita_info_second ul li p {
  color: #fff;
  margin-top: 20px;
  font-size: 14px;
  text-align: justify;
}

.suita_info_second h4 {
  font-family: 'Noto Serif JP';
  font-size: 64px;
  color: #fff;
  background: #435817;
  line-height: 1;
  text-align: right;
  display: grid;
  place-items: center left;
  padding: 10px 20px 24px;
  margin-top: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  border-image-source: linear-gradient(#435817,#435817);
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw 0 0;
}

span.cortion_text {
  font-size: 12px;
  line-height: 1.5;
  display: block;
  margin: 20px 0 0;
  margin-left: auto;
  width: fit-content;
}

#suita .swiper-button-prev {
  margin-top: 0!important;
  left: 0!important;
  right: auto!important;
  height: 100%!important;
  background: rgb(0 0 0 / 50%);
  transform: translate(0, -50%);
  padding: 0 20px;
}

#suita .swiper-button-next {
  margin-top: 0!important;
  right: 0!important;
  left: auto!important;
  height: 100%!important;
  background: rgb(0 0 0 / 50%);
  transform: translate(0, -50%);
  padding: 0 20px;
}

#suita .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev';
  color: #fff;
}

#suita .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: 'next';
  color: #fff;
}

.slide01 {
  position: absolute;
  top: 4.4%;
  right: 21.3%;
  width: 19.7%;
  height: 3.6%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide01:hover,.slide02:hover,.slide03:hover,.slide04:hover,.slide05:hover,.slide06:hover,.slide07:hover,.slide08:hover,.slide09:hover,.slide10:hover,.slide11:hover,.slide12:hover,.slide13:hover {
  background: rgb(38 154 231 / 20%);
}

.slide02 {
  position: absolute;
  top: 9.1%;
  right: 19.1%;
  width: 17.3%;
  height: 3.4%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide03 {
  position: absolute;
  top: 14.3%;
  right: 5.4%;
  width: 24.3%;
  height: 3.4%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide04 {
  position: absolute;
  top: 29.8%;
  right: 2.8%;
  width: 21.5%;
  height: 6.6%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide05 {
  position: absolute;
  bottom: 39.4%;
  right: 2.8%;
  width: 21.4%;
  height: 3.3%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide06 {
  position: absolute;
  bottom: 30.3%;
  right: 2.8%;
  width: 19.8%;
  height: 6.6%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide07 {
  position: absolute;
  bottom: 24.65%;
  right: 2.8%;
  width: 26.9%;
  height: 3.3%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide08 {
  position: absolute;
  bottom: 16.2%;
  right: 11.5%;
  width: 19.8%;
  height: 6.65%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide09 {
  position: absolute;
  bottom: 2.7%;
  right: 23.2%;
  width: 20%;
  height: 6.6%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide10 {
  position: absolute;
  top: 49.2%;
  left: 3%;
  width: 20%;
  height: 6.8%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide11 {
  position: absolute;
  top: 57.4%;
  left: 3%;
  width: 20%;
  height: 6.8%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide12 {
  position: absolute;
  top: 65.2%;
  left: 3%;
  width: 20%;
  height: 6.8%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

.slide13 {
  position: absolute;
  top: 78.1%;
  left: 3%;
  width: 20%;
  height: 3.5%;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.1s;
}

/* -----------------吹田市に住む ここまで----------------- */
/* -----------------20240325追加----------------- */
header .header-contact {
  display: none;
}

.header-contact-inner {
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin-top: 20px;
}

.hc-1 {
  font-size: 20px;
  border: solid 1px #030303;
}

.hc-1-link {
  display: grid;
  place-content: center;
  padding: 8px 16px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  flex-direction: column;
}

.hc-1-text {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

.hc-1-number {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
}

.hc-1-number::before {
  content: '';
  background: url(../img/phone.svg) no-repeat;
  width: 33px;
  height: 22px;
  background-size: contain;
  display: block;
  margin-right: 5px;
}

.hc-2 {
  background: #e6d7eb;
  font-size: 20px;
  width: 100%;
  border: solid 1px #812b9f;
}

.hc-2-link {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 5px;
  color: #812b9f;
  font-weight: bold;
}

.hc-3 {
  background-color: #eef3e2;
  font-size: 20px;
  width: 100%;
  border: solid 1px #659109;
}

.hc-3-link {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 5px;
  color: #659109;
  font-weight: bold;
}

header h1 {
  font-size: 15px;
  margin: 0;
}

.footer-contact {
  max-width: 1200px;
  margin: 100px auto 0;
}

.footer-contact-inner {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.fc-1 {
  font-size: 20px;
  border: solid 1px #030303;
  width: 100%;
}

.fc-1-link {
  display: grid;
  place-content: center;
  padding: 20px 16px;
  color: #fff;
  font-weight: bold;
  gap: 15px;
  background: #fff;
}

.fc-1-text {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
}

.fc-1-number {
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}

.fc-1-number::before {
  content: '';
  background: url(../img/phone.svg) no-repeat;
  width: 40px;
  height: 26px;
  background-size: contain;
  display: block;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.fc-2 {
  background: #e6d7eb;
  width: 200px;
  border: solid 1px #812b9f;
  width: 100%;
  background: #812b9f;
}

.fc-2-link {
  display: grid;
  place-content: center;
  height: 100%;
  padding: 30px 5px;
  color: #fff;
  font-size: 21px;
  letter-spacing: 0.1em;
}

/* -----------------20240325追加 ここまで----------------- */
