@charset "UTF-8";
body {
  font-family: "Sawarabi Gothic", sans-serif;
  margin: 0;
}

img {
  width: 100%;
}

a {
  color: black;
  text-decoration: none;
}

.title {
  padding: 120px 0;
  margin-top: 40px;
  text-align: center;
  letter-spacing: 5px;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 24px;
  }
}

/*----------------------------
* ボタン
*----------------------------*/
.bento {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 25px;
  height: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.bento-box {
  display: block;
  width: calc((100% - 8px) / 3);
  height: calc((100% - 8px) / 3);
  background: rgb(244, 194, 55);
}

.bento.active span {
  display: block;
  width: calc((100% - 8px) / 3);
  height: calc((100% - 8px) / 3);
  background: black;
}

/*----------------------------
  * ハンバーガーメニュー
  *----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
}

.menu__item {
  text-align: left;
  font-weight: bold;
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  color: black;
  box-sizing: border-box;
  letter-spacing: 5px;
  font-size: 10px;
  margin-left: 130px;
}
@media screen and (max-width: 767px) {
  .menu__item {
    margin-left: 25px;
  }
}

.logo {
  width: 40%;
  margin: 10px 60px 10px 30px;
}
@media screen and (max-width: 767px) {
  .logo {
    width: 60%;
    margin: 35px 0;
  }
}

/* アニメーション前のメニューの状態 */
.menu {
  transform: translateX(100vw);
  transition: all 0.5s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  transform: translateX(0);
}

/*----------------------------
TOP
*----------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.top {
  position: relative;
}

.img-wrap {
  position: absolute;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .img-wrap {
    width: 40%;
  }
}

.second {
  opacity: 0;
  transition: 3s;
}

.pattern1.show img {
  transform: scale(1.3, 1.3);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .pattern1.show img {
    transform: scale(1.3, 1.3);
  }
}

.menu-image {
  width: 80%;
  margin-bottom: 20px;
}

/*----------------------------
CONCEPT
*----------------------------*/
.concept p {
  margin: 5px 100px 30px;
  letter-spacing: 8px;
  line-height: 1.5;
  text-align: left;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .concept p {
    margin: 5px 60px 30px;
    letter-spacing: 5px;
    font-size: 10px;
  }
}

.concept-image {
  margin-top: 80px;
}

/*----------------------------
FLOOR PLAN
*----------------------------*/
.roomplan {
  text-align: center;
}

.room-image {
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .room-image {
    width: 60%;
  }
}

.room-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 20px 60px;
}
@media screen and (max-width: 767px) {
  .room-wrapper {
    margin: 60px 20px;
  }
}

.room-text1 p,
.room-text2 p {
  letter-spacing: 4px;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .room-text1 p,
.room-text2 p {
    font-size: 9px;
    letter-spacing: 3px;
  }
}

.room-text1 {
  width: 50%;
  padding-left: 28%;
}
@media screen and (max-width: 767px) {
  .room-text1 {
    margin-right: 5px;
    padding-left: 5px;
  }
}
.room-text1 p {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .room-text1 p {
    text-align: right;
  }
}

.room-text2 {
  width: 50%;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .room-text2 {
    margin-left: 10px;
  }
}
.room-text2 p {
  text-align: left;
}

.room-message {
  margin: 60px 100px 80px;
}
@media screen and (max-width: 767px) {
  .room-message {
    margin: 60px 25px 0;
  }
}
.room-message p {
  text-align: left;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 2;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .room-message p {
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 10px;
  }
}

/*----------------------------
Share Space
*----------------------------*/
.price-wrapper {
  margin-top: 50px;
}

.price-table {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .price-table {
    width: 80%;
  }
}

table {
  border-collapse: collapse;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  width: 100%;
  table-layout: fixed;
}
table th,
table td {
  border: 1px solid #d8d8d8;
  height: 58px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  table th,
table td {
    font-size: 10px;
  }
}
table th {
  background-color: #999999;
  color: #fff;
  text-align: center;
}
table th:first-child {
  width: 170px;
}
@media screen and (max-width: 767px) {
  table th:first-child {
    width: 112px;
  }
}
table td {
  text-align: center;
  padding: 0 24px;
}

.table-top {
  text-align: left;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 2;
  margin: 60px 125px 100px;
}
@media screen and (max-width: 767px) {
  .table-top {
    margin: 0px 40px 0;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 10px;
  }
}

/*----------------------------
White Cube
*----------------------------*/
.white-p {
  text-align: left;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 2;
  margin: 10px 125px 60px;
}
@media screen and (max-width: 767px) {
  .white-p {
    line-height: 1.5;
    font-size: 10px;
    margin: 0 45px 60px;
  }
}

/*----------------------------
MONTHLY
*----------------------------*/
.monthly {
  margin: 60px 125px 80px;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .monthly {
    margin: 60px 40px 0;
  }
}
.monthly p {
  text-align: left;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 2;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .monthly p {
    line-height: 1.5;
    font-size: 10px;
    margin-bottom: 10px;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: auto;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*　背景画像設定　*/
.slider-item1 {
  background: url(../img/swiper1.jpg);
}

.slider-item2 {
  background: url(../img/swiper2.jpg);
}

.slider-item3 {
  background: url(../img/swiper3.jpg);
}

.slider-item4 {
  background: url(../img/swiper4.jpg);
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100%;
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .slider-item {
    background-size: contain;
    /*背景画像が.slider-item全体を覆い表示*/
    height: 50%;
  }
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc;
  /*矢印の色*/
  border-right: 2px solid #ccc;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}
@media screen and (max-width: 767px) {
  .slick-prev,
.slick-next {
    top: 50%;
  }
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}
@media screen and (max-width: 767px) {
  .slick-dots {
    margin: -70px 0 0 0;
  }
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

/*----------------------------
INFO
*----------------------------*/
.info {
  margin: 60px 125px 80px;
}
@media screen and (max-width: 900px) {
  .info {
    margin: 60px 40px 0;
  }
}
.info .qa-main a {
  color: rgb(74, 74, 246);
}
.info:hover {
  opacity: 0.6;
}

dl {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #d8d8d8;
}
@media screen and (max-width: 900px) {
  dl {
    display: block;
  }
}

dt {
  width: 20%;
  border-bottom: 1px solid #d8d8d8;
  padding: 25px;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  dt {
    width: 100%;
    line-height: 1.5;
    font-size: 10px;
    text-align: left;
    border-bottom: none;
    padding-bottom: 5px;
  }
}

dd {
  width: 80%;
  border-bottom: 1px solid #d8d8d8;
  padding: 25px;
  text-align: left;
  letter-spacing: 5px;
  font-size: 14px;
  line-height: 2;
}
dd span {
  color: red;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  dd {
    width: 100%;
    line-height: 1.5;
    font-size: 10px;
    padding-top: 5px;
  }
}

/*----------------------------
Q&A
*----------------------------*/
.qa-sub {
  margin: 60px 125px 60px;
}
@media screen and (max-width: 767px) {
  .qa-sub {
    margin: 0px 40px 0;
    font-size: 12px;
  }
}

.cp_hr01 {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #d8d8d8;
}

.qa-a {
  text-align: right;
  margin-top: 10px;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .qa-a {
    line-height: 1.5;
    font-size: 12px;
    padding-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .qa-a {
    font-size: 10px;
  }
}

.qa-tab {
  margin-top: 120px;
}

.qa-main {
  color: blue;
}

/*----------------------------
ACCESS
*----------------------------*/
.map {
  width: 95%;
  max-width: 100%;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .map {
    display: block;
    width: 100%;
  }
}
.map a {
  color: rgb(74, 74, 246);
  letter-spacing: 3px;
  font-size: 8px;
  margin-top: 50px;
}
.map a:hover {
  opacity: 0.6;
}
.map img {
  width: 50%;
  max-width: 50%;
  height: 50%;
  padding: 30px 0px 10px 50px;
}
@media screen and (max-width: 767px) {
  .map img {
    width: 100%;
    max-width: 75%;
    height: auto;
    padding: 0px;
  }
}

/*----------------------------
CONTACT
*----------------------------*/
.contact .title {
  padding: 60px;
}

.contact-wrapper {
  margin-bottom: 80px;
}
.contact-wrapper a {
  display: block;
  margin-bottom: 40px;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .contact-wrapper a {
    font-size: 10px;
  }
}
.contact-wrapper a:hover {
  opacity: 0.6;
}

/*----------------------------
footer
*----------------------------*/
footer {
  margin: 20px;
}
@media screen and (max-width: 767px) {
  footer {
    margin: 10px;
  }
}

.copyright {
  text-align: center;
  font-size: 8px;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 6px;
  }
}