@charset "utf-8";

/* パソコンで出してスマホは出さない */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマホは出してパソコンは出さない */
@media screen and (max-width: 736px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* ページ全体 */
html {
  margin: 0;
  padding: 0;
  /*   height: 100%; */
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Yu Gothic UI", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 1000;
  background-image: linear-gradient(white 15%, #FFF5F7 15%, #FFF5F7 50%, white 50%);
}

img {
  vertical-align: bottom;
}

p {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

/* トップ画像 */
.sp_posi {
  position: relative;
}

.top {
  width: 100%;
  height: 100%;
}

.top img {
  width: 100%;
}

.top_logo {
  width: 20%;
  position: absolute;
  bottom: 5%;
  right: 5%;
}

.top_logo img {
  width: 100%;
}

.top_font {
  width: 85%;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top_font img {
  width: 100%;
}

/* 募集 */
.bosyu {
  color: #FFF;
  font-size: calc(14px + 6 * (100vw - 280px)/457);
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 1% 0;
  background-color: #EA6D8D;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  background-color: #EA6D8D;
  display: flex;
  height: calc(40px + 20 * (100vw - 280px)/456);
  ;
  width: calc(40px + 20 * (100vw - 280px)/456);
  ;
  justify-content: center;
  align-items: center;
  /*     position: absolute; */
  position: fixed;
  top: 3%;
  right: 7%;
  z-index: 100;
  /* 重なり順を一番上にする */
  cursor: pointer;
  border-radius: 11%;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  background: white;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
  background-color: #FFF5F7;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

/* メニュー黒ポチを消す */
.nav_content ul {
  margin-top: 120px;
  list-style: none;
  text-align: center;
}

.nav_content li {
  font-size: 20px;
  background-color: white;
  border-top: 1px solid #F4B3B3;
  margin: 0;
}

.nav_content li:last-child {
  border-bottom: 1px solid #F4B3B3;
}

.nav_content li a {
  margin-left: 10px;
  padding: 5% 0;
  display: flex;
  justify-content: space-between;
}

.nav_content li p {
  margin-right: 20px;
}

.nav_content a {
  text-decoration: none;
  color: black;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
  left: 0;
  /* メニューを画面に入れる */
}

/* メニュー内お問い合わせ */
.menu_tel {
  padding: 20px 0;
  margin-top: 30px;
  background-color: #EA6D8D;
  text-align: center;
}

.menu_tel p {
  color: white;
  font-feature-settings: "palt";
  text-shadow: 2px 0 2px brown;
}

.menu_tel p:first-child {
  font-size: 40px;
  line-height: 1.2;
}

.menu_tel p:nth-child(2) {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.menu_tel a {
  font-size: 30px;
  color: yellow;
  line-height: 1.2;
  text-decoration: underline !important;
  text-decoration-skip-ink: none;
}

/* メニューを閉じるための要素のデザイン*/
.drawer-close {
  width: 100%;
  height: 100%;
  background: #FFF5F7;
  position: fixed;
  top: 0;
  left: 100%;
  /* 閉じるための要素を画面外へ */
  z-index: 99;
  /* 重なり順をメニューより下に*/
  transition: .5s;
}

#drawer-check:checked~.drawer-close {
  left: 0;
  /* 閉じるための要素を画面内へ */
}



/* 単身者向け */
.tanshin_waku {
  position: relative;
}

.tanshin {
  width: 100%;
  height: 100%;
}

.tanshin img {
  width: 100%;
}

.tanshin_font {
  width: 60%;
  position: absolute;
  bottom: 10%;
  left: 3%;
}


/* 安心サポート */
.saport {
  width: 80%;
  margin: 20% auto 0;
}

.saportfont {
  width: 105%;
  left: -70%;
}

.saport p {
  margin: 0px;
  padding: 0 3%;
  text-align: justify;
}

.kome {
  font-size: 8px;
  vertical-align: top;
}

.kome_shita {
  font-size: 9px;
}

.saportmaru {
  width: 90%;
}

.saportmaru img {
  width: 100%;
  margin: 5% auto 25%;
}

/* ご利用料金 */
.ryokinbg {
  margin: 0 auto;
  text-align: center;
  background: rgb(234, 109, 141);
  background: linear-gradient(90deg, rgba(234, 109, 141, 1) 0%, rgba(244, 179, 179, 1) 100%);
  width: 95%;
  padding: 1%;
  border-radius: 4%;
  position: relative;
}

.ryokintitle {
  /* width: 58%; */
  margin: 3% auto;
}

.ryokin {
  /* width: 58%; */
  margin: 15px auto 0;
  /* padding-bottom: 15px;*/
  display: block;
  background-color: #FFF5F7;
  text-align: center;
  /*  display: flex;
    justify-content: center;*/
  padding: 5% 8%;
  border-radius: 4%;
}


.title {
  width: 40%;
  padding: 2% 0;
}

.tyusyaku {
  width: 90%;
  margin-bottom: 5%;
}

.kihon {
  border: 2px solid #EA6D8D;
  padding: 3%;
}

.kihon1 {
  width: 100%;
}

.pluswaku {
  margin: 5% auto;
}

.pluswaku img {
  width: 10%;
}

.kihon2 {
  width: 90%;
}

.kihon ul li p {
  text-align: left;
  color: #EA6D8D;
  /* margin-left: 2%;
    font-size: 100%; */
}

.syokuzi {
  width: 100%;
  margin: 3%;
}

.yellowwaku {
  border: 5px solid #F4B3B3;
  background-color: #EA6D8D;
  /* position: absolute;
    bottom:-35%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%); */
  width: 100%;
  font-size: calc(14px + 6 * (100vw - 280px)/456);
}

.yellowwaku p {
  padding: 5% 7% 0;
}

.yellowwaku ul {
  padding: 0 7% 2%;
}

.yellow {
  width: 100%;
  margin-bottom: 1%;
}

.yellowwaku ul li {
  text-align: left;
  color: white;
  line-height: 1.3;
}

.yellowwaku ul li span {
  color: #FFF000;
}

.ryokin_note {
  font-size: 12px;
  color: #ea6d8d;
  letter-spacing: .05em;
  padding-inline: 5%;
  margin-block: 0.5em 0;
}

/* バリアフリー・外観 共通div */
.barr_gaikann {
  width: 100%;
  display: flex;
  flex-flow: column;
  margin: 15% auto 30%;
  align-items: center;
  position: relative;
}


.wave {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

/* バリアフリー */

.barr2 {
  margin: 0 auto;
  width: 80%;
}

.barr2 img {
  margin-bottom: 5%;
  width: 100%;
}

.barr2 p {
  font-size: 16px;
  line-height: 40px;
  text-align: justify;
}

.barr1 {
  width: 100%;
}

.barr1 img {
  width: 100%;
  margin: 0 auto;
}

.gaikann img {
  width: 60%;
  margin-left: 40%;
}


/* ピンク横線 */
.pink_line {
  margin: 0;
  height: 10px;
  width: 100%;
  background: linear-gradient(90deg, rgba(234, 109, 141, 1) 0%, rgba(244, 179, 179, 1) 100%);
}

/* GoogleMAP */
iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 500px;
  display: block;
}

/* フッター */
.footer {
  width: 100%;
  background-color: #381A08;
  color: white;
  padding: 10% 0;
}

.footer1 {
  width: 80%;
  margin: 0 auto;
  padding-top: 7%;
}

.footer1 img {
  width: 100%;
}


.footer2 {
  width: 20% !important;
  display: block;
  margin: 0 auto 5%;
}

.footer2 img:hover {
  opacity: 0.5;
}

li {
  list-style: none;
  margin: 3% 0;
}

ul.sp {
  padding: 0;

}

.center {
  text-align: center;
  font-size: 18px;
  line-break: anywhere;
}

.takken {
  font-size: 12px;
}

.back {
  padding: 0.3% 0.7%;
  background-color: white;
  color: #381A08;
  margin-right: 1%;
}


.footer p {
  font-size: 20px;
  text-align: center;
  margin: 10% 0 1%;
}

.footer3 img {
  margin-bottom: 5%;
}

.copyright p {
  width: 80%;
  padding: 10% 0 5%;
  font-size: 10px;
  text-align: center;
  margin: 0% auto;
}

/*物件概要*/
.outline {
  position: relative;
  font-size: 16px;
  color: #000;
  text-align: justify;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: calc(20px + 40 * (100vw - 280px)/456);
  padding-bottom: calc(20px + 40 * (100vw - 280px)/456);
  padding-right: calc(20px + 40 * (100vw - 280px)/456);
  padding-left: calc(20px + 40 * (100vw - 280px)/456);
  background-color: #FFF;
}

.outline p:first-child {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.lastupdate {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}

.outline table {
  border-collapse: collapse;
  border-spacing: 0;
  outline: 2px solid #EA6D8D;
  background-color: #FFF5F7;
}

.outline th {
  /*     width: 100%; */
  padding: 0.5em 0.5em 0.5em 1.5em;
  border-top: 1px solid #FFF;
  background-color: #EA6D8D;
  color: #FFF;
}

.border_none {
  border-top: none !important;
}

.outline td {
  /*     width: 100%; */
  padding: 0.8em 1.5em 0.8em 1.5em;
  border-top: 1px solid #EA6D8D;
}

/*   .outline tr:last-child .outline td,.outline tr:last-child .outline th{
    border-bottom: 1px solid #002E73;
  } */

.outline th,
.outline td {
  /*    width:100%; */
  display: block;
}

button.mfp-arrow {
  display: none !important;
}

/*ページスクロール
------------------------------*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EA6D8D;
  border-radius: 5em;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}