@charset "UTF-8";
/* -------------------------------
共通パーツ
------------------------------- */

/* ナビゲーション */
.shibuya3-navi-items {
  background: #86a2d2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.shibuya3-navi-list::before {
  content: "";
  border-left: 1px solid #ffffff60;
}
.shibuya3-navi-list:first-child::before {
  border: none;
}
.shibuya3-navi-link {
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
}
span.shibuya3-navi-link {
  color: #ffffff60;
}
.shibuya3-navi.on {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .shibuya3-navi-items {
    height: 33px;
    overflow: hidden;
  }
  .shibuya3-navi-list {
    display: none;
  }
  .shibuya3-navi-list:first-child {
    display: block;
  }
  .shibuya3-navi-link {
    width: 100%;
    display: block;
  }
  .shibuya3-navi.on {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 100%;
    background: rgb(38 41 54 / 75%);
    padding: 0 30px 0;
    display: flex;
    align-items: center;
  }

  .shibuya3-navi.on .shibuya3-navi-items {
    display: flex;
    flex-wrap: wrap;
    height: 400px;
    padding: 20px 50px 20px 0;
    font-size: 15px;
    margin-bottom: 60px;
    position: relative;
  }
  .shibuya3-navi.on .shibuya3-navi-items::after {
    content: "×";
    font-weight: 200;
    color: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 40px;
  }
  .shibuya3-navi.on .shibuya3-navi-list {
    display: block;
    width: 100%;
  }
  .shibuya3-navi.on .shibuya3-navi-list::before {
    border: none;
  }
  .shibuya3-navi.on .shibuya3-navi-link {
    padding: 10px 0 10px 30px;
  }
  .shibuya3-navi.on .shibuya3-navi-link::before {
    content: "";
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 15px;
    transform: rotate(225deg);
  }
  .shibuya3-navi.on span.shibuya3-navi-link::before {
    border: none;
    content: "-";
    transform: rotate(0deg);
  }
}


/* フッターのコンテンツ導線 */
.shibuya3-navi2 {
  border-top: 5px solid #86a2d2;
  background: #f2f2f2;

}
.shibuya3-navi2-items {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}
.shibuya3-navi2-list {
  width: 100%;
  border-bottom: 1px solid #fff;
}
.shibuya3-navi2-link {
  padding: 15px 20px;
  display: inline-block;
  width: 100%;
}
span.shibuya3-navi2-link {
    background: #ccc;
    opacity: 0.5;
    filter: grayscale(1);
}
span.shibuya3-navi2-link > * {
  opacity: 0.8;
  mix-blend-mode: multiply;
}
.shibuya3-navi2-link-img {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  font-size: 24px;
  text-align: center;
  color: #86a2d2;
}

@media screen and (min-width: 768px) {

  .shibuya3-navi2 {
      border: 1px solid #ccc;
      max-width: 1000px;
      margin: 70px auto 0;
      overflow: hidden;
  }

}
/* ---------------------------
お問合せボタン
---------------------------*/

.contact_lead {
  display: block;
  background: #b63c93;
  color: #fff;
  margin: 0 auto 2em;
  text-align: center;
  width: 17em;
  padding: 10px;
  border-radius: 30px;
}
.arc_contact .contact_tel .telImg .label {
    background-color: #b63c93;
}

.arc_contact .contact_title span {
    color: #6386c3;
    border-color: #6386c3;
}

.arc_contact .contactBt > a.contact-btn01 {
    background: #86a2d2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #86a2d2, #6689c5);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #86a2d2, #6689c5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.arc_contact .contactBt > a.contact-btn02 {
    color: #6386c3;
    border: 1px solid;
    background: white;
}
@media screen and (max-width: 767px) {
  .arc_contact .contactBt {
    margin-top: 0;
  }
  .arc_contact .contactBt > a {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .contactBt {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
  }
  .arc_contact .contactBt > a {
    margin: 0 10px;
  }
  .arc_contact .contactBt > a:first-child {
    width: 350px;
  }
  .arc_contact .contactBt > a:nth-child(2) {
    width: 140px;
  }
}


/* ---------------------------
スマホフッター
---------------------------*/

nav.sp-footer-navi {
  display: none;
}

@media screen and (max-width: 767px) {
  nav.sp-footer-navi {
    position: fixed;
    bottom: 0;
    z-index: 40;
    background: #f2f2f2;
    border-top: 1px solid #ccc;
    width: 100%;
    height: 48px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  .footer-navi-tel {
    /* width: 55%; */
    width: 70%;
    min-width: 158px;
    margin: 3px 10px 3px 3px;
    border-radius: 5px;
    background: #86a2d2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #86a2d2, #6689c5);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #86a2d2, #6689c5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }

  .footer-navi-tel-icon-area {
    display: flex;
    align-items: center;
    justify-content: left;
    /* width: 34px; */
    height: 30px;
    color: #fff;
    margin: 0 13px 0 17px;
    text-align: center;
    border-radius: 5px;
  }

  .footer-navi-tel-time {
    font-size: 8px;
    line-height: 1.5;
    color: #fff;
    white-space: nowrap;
    position: absolute;
    left: 48px;
    bottom: 0;
  }

  .footer-navi-tel-num-icon {
    font-size: 18px;
    transform: rotateY(180deg);
  }
  .footer-navi-tel .tel {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: left;
    align-items: center;
    /* padding-left: 20px; */
  }
  .footer-navi-tel .tel a {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .footer-navi-tel .tel-tapArea {
    max-width: 150px;
    width: calc(100% - 60px);
    opacity: 0;
    position: absolute;
    left: 48px;
    bottom: 15px;
  }

  .footer-navi-btn {
    width: 15%;
    width: 17%;
    border-left: 1px solid #f2f2f2;
    text-align: center;
    color: #6386c3;
    /* background: #529931; */  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #88bf6d, #529931);  /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to bottom, #88bf6d, #529931); */ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  .footer-navi-btn a {
    display: block;
  }

  .footer-navi-btn-icon {
    /* 文字なしver */
    /* width: 100%;
    height: 47px;
    text-align: center;
    font-size: 20px;
    line-height: 47px; */

    /* 文字アリver */
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 10px 0 5px;
  }
  .footer-navi-btn-txt {
    font-size: 9px;
    white-space: nowrap;
  }
  .footer-navi-btn.menu {
    /* background: #86a2d2; */  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #86a2d2, #6689c5);  /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to bottom, #86a2d2, #6689c5); */ /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
  .footer-navi-btn.menu .footer-navi-btn-icon {
    /* 文字なしver */
    width: 100%;
    height: 47px;
    text-align: center;
    font-size: 20px;
    line-height: 47px;
    padding: 0;
  }
}
/* 安心して内見いただくための取組み */
/* .footer-info {
  display: none;
  position: fixed;
  bottom: 10px;
  z-index: 10;
  text-align: center;
  width: 100%;
}
.footer-info-btn {
  display: inline-block;
  background: #4594ff;
  border: 1px solid #a7b3c6;
  color: #fff;
  width: 680px;
  max-width: 80%;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
}
.footer-info-box {
  display: none;
  position: fixed;
  top:0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.footer-info-box-inner {
  background:rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-info-box img {
  max-height: 90vh;
  width: auto;
}
@media screen and (max-width: 767px) {
  .footer-info {
    bottom: 75px;
  }
  .footer-info-btn {
    padding: 5px;
  }

}
 */

/*------------------------------
 TOPページ
------------------------------ */
/*   メイン画像 */
.main-img {
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* .main-img::before {
  content: "";
  display: block;
  width: 120%;
  height: 800px;
  background: url(https://www.trust5.co.jp/biz/shibuya3/images/floor-1-7.jpg) center;
  background-size: cover;
  filter: blur(1rem);
  position: absolute;
  z-index: -1;
  left: -30px;
  top: -80px;
} */
.main-img .for-pc img {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .main-img {
    margin-bottom: 40px;
  }

}

/* 更新情報（Twitterの埋込） */
.session-bg01 {
  background: #ebf0f7;
  padding: 3em 0;
}
.twitter-timeline-area {
  text-align: center;
}
/*------------------------------
 アクセス
------------------------------ */
.access-txt {
  display: flex;
    flex-wrap: wrap;
}
.access-txt p {
  width: 50%;
}
/* PICK UP */

@media print,
screen and (min-width: 768px) {
  .pickupBox {
    margin: 0 auto 50px;
    width: 100%;
    padding: 0 10px;
    max-width: 1000px;
  }

  .pickupBox .common-inner {
    background: #f2f2f2;
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 20px 40px 20px 50px;
    display: table;
    overflow: hidden;
  }

  .pickupBox .left {
    width: 450px;
    padding-right: 40px;
    display: table-cell;
    vertical-align: middle;
  }

  .pickupBox .right {
    max-width: 628px;
    padding-left: 30px;
    border-left: 1px solid #ccc;
    display: table-cell;
    vertical-align: middle;
  }

}

@media screen and (max-width: 767px) {
  .pickupBox {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .pickupBox .common-inner {
    background: #f2f2f2;
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 30px 25px 0;
  }

  .pickupBox .left {
    padding: 0 0 25px;
  }

  .pickupBox .right {
    padding-top: 20px;
    border-top: 1px solid #ccc;
  }
}

.access-more {
  border: 1px solid;
  padding: 1em 1.5em;
}
/*------------------------------
 フロア概要
------------------------------ */
 /* フロアごとタイトル */
 .floor-table-ttl {
   width: 100%;
   color: #415f91;
   border-bottom: 2px solid #415f91;
   padding: 2em 0.5em 0.5em 0em;
 }


/* 詳細写真 */
@media screen and (max-width: 767px) {
  .shibuya2_lp-thumbs {
    position: relative;
  }

  .shibuya2_lp-thumbs::after {
    content: "";
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 35%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  }

  .shibuya2_lp-thumbs.on::after {
    display: none;
  }

.shibuya2_lp-thumbs.sm .common-img {
    width: 100%;
  }
}

.more-box {
  width: 100%;
}


/* 店舗イメージ画像 */

@media screen and (min-width: 768px) {
  .common-img-area.xsm {
    margin-bottom: 50px;
  }
  .common-img-area.xsm .common-img {
    width: 20%;
  }
  .common-img-area.xsm .common-img:nth-child(3n) {
    margin-right: 2%;
  }
  .common-img-area.xsm .common-img:last-child {
    font-size: 0.8em;
    line-height: 1.6;
    color: #666;
    /* border: 1px solid; */
    height: 144px;
    padding-right: 1em;
    background: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .common-img-area.xsm {
    justify-content: space-between;
    margin-bottom: 2em;
  }

  .common-img-area.xsm .common-img {
    width: 32%;
    margin: 0 2px 1em;
  }

  .common-img-area.xsm .common-img:last-child {
    /* width: 64%; */
    /* padding-left: 1em; */
    width: 100%;
    font-size: 0.8em;
    line-height: 1.6;
    color: #666;
  }
}

/* 詳細ボタン */
@media screen and (max-width: 767px) {
  .trigger.floor {
    border: 1px solid;
    padding: 10px;
    width: 50%;
    min-width: 210px;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }

  .trigger.floor::after {
    content: ""
  }
}

/* 申込有のアイコン */
/*
.moushikomiari-area {
  position: relative;
}
.moushikomiari {
  position: absolute;
  top: 80px;
  left: 15%;
  background: #fff;
  color: #415f91;
  padding: 10px 20px;
  opacity: 0.7;
  transform: rotate(-25deg);
  border: double 4px;
} */
.moushikomiari {
  color: #415f91;
  background: #fff;
  padding: 5px 8px;
  font-weight: normal;
  border: none;
  margin-left: 1em;
  border: 1px solid;
}
.boshutyu {
  color: #fff;
  background: #b53b92;
  padding: 5px 8px;
  font-weight: normal;
  border: none;
  margin-left: 1em;
  /* border: 1px solid;   */
}
/* -------------------------------
資料請求フォーム
------------------------------- */
.shibuya3_form-area {
  max-width: 350px;
  margin: auto;
}
.shibuya3_form-parts {
  position: relative;
}
.shibuya3_form-area iframe{
  height: 530px;
  width: 100%;
}
.shibuya3_form input,
.shibuya3_form select {
  display: block;
  height: 38px;
  width: 100%;
  line-height: 1.2em;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  padding: 2px 3px;
}

/* 初期状態 */
.shibuya3_form input::placeholder,
.shibuya3_form select {
  opacity: 1;
  color: #999;
  font-size: 16px;
}

/* エラー表示 */
.shibuya3_form-parts .error-txt {
  display: none;
}
.shibuya3_form-parts .error-txt {
  position: absolute;
  left: 8px;
  top: 37px;
  background: #c7000a;
  color: #fff;
  padding: 5px 7px;
  font-size: 10px;
  z-index: 1;
}
.shibuya3_form-parts .error-txt::before {
  position: absolute;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background: #c7000a;
  transform: rotate(45deg);
  top: -4px;
  left: 10px;
}

/* 入力中 */
.shibuya3_form input:focus,
.shibuya3_form select:focus {
  background: #ebf0f7;
  border: 3px solid #86a2d2;
  color: #222;
}

/* エラーのとき */
.error.shibuya3_form-parts .error-txt {
  display: block!important;
}
.error.shibuya3_form-parts input,
.error.shibuya3_form-parts select {
  border: 1px solid #c7000a;
}

/* 入力後 */
.shibuya3_form input.on,
.shibuya3_form select.on {
  background: #ebf0f7;
  color: #222;
}

/* 同意チェックボックス */
.shibuya3_form-parts.privacy {
  display: flex;
  padding: 15px 0;
}
.shibuya3_form-parts.privacy input{
  width: 15px;
  border: 1px solid #999;
  height: 15px;
  margin-right: 15px;
}
.shibuya3_form-parts.privacy input:checked + label::after {
    content: "";
    width: 20px;
    height: 12px;
    border-left: 3px solid #415f91;
    border-bottom: 3px solid #415f91;
    position: absolute;
    top: 10px;
    left: -2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.shibuya3_form-parts.privacy label {
  color: #666;
}
.shibuya3_form-parts.privacy a {
  text-decoration: underline;
}

/* 送信ボタン */
.shibuya3_form-btn {
  position: relative;
}
.shibuya3_form-btn input {
  background: #415f91!important;
  color: #fff!important;
  border-radius: 4px;
  height: 45px;
  text-align: center;
  width: 100%;
  font-size: 16px;
}
.shibuya3_form-btn input:disabled {
  background: #ccc!important;
}

.shibuya3_form-btn input + .error-btn {
  display: none;
}
.shibuya3_form-btn input:disabled + .error-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.error-btn.error::before {
  content: "すべての項目を入力し、\Aプライバシーポリシーに同意してください";
  white-space: pre;
  text-align: center;
  background: #c7000a;
  color: #fff;
  padding: 5px 7px;
  font-size: 12px;
  position: absolute;
  width: 100%;
  bottom: -42px;
}
.error-btn.error::after {
  position: absolute;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background: #c7000a;
  transform: rotate(45deg);
  bottom: -12px;
  left: calc(50% - 4px);
}


/* 入力必須 */
.shibuya3_form-required {
  /* color: #b53b92; */
  padding: 0px 5px;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  margin: 0 0 10px 0;
}
/* 説明文 */
.shibuya3_form-info {
  font-size: 0.8em;
  line-height: 1.5;
  max-width: 350px;
  margin: 30px auto 0;
  padding-bottom: 40px;
}

.modal-form-area {
  position: fixed;
  background: rgb(0 0 0 / 60%);
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 50;
  transition: 0.5s ease-out;
}

.modal-form-area.on {
  left: 0;
}
.modal-form-close {
  position: absolute;
  height: 100%;
  width: 15%;
}
.modal-form-area .modal-form {
  background: #fff;
  height: 100%;
  padding: 10px;
  left: 15%;
  top: 0;
  position: absolute;
  width: 85%;
  transition: 0.5s ease-out;
}
.modal-form iframe{
  width: 100%;
  height: 100%;
}


/* ---------------------------
調整
---------------------------*/
#pankuz {
  display: none;
}
#article {
  padding-top: 2em;
}
h1.common-ttl01 {
  display: none;
}
.common-ttl01 {
  padding-top: 70px;
}
.common-ttl01#floor {
  padding-top: 0;
}

.pageAnker {
  max-width: 480px;
}
.pageAnker ul li .ses_title {
  text-decoration: none;
}

.for-sp-pc {
  display: block !important;
}

.common-ttl01 span,
.common-ttl02 span {
  border-color: #b53b92;
}


.common-inner {
  position: relative;
}
@media screen and (max-width: 767px){
  #article {
      padding-top: 0;
  }
  .trigger.floor + div {
    padding-top: 20px;
  }
}

@media print,
screen and (min-width: 768px) {
  .sec_column .read figure {
    min-height: 200px;
    height: 200px;
  }
}
/* 動画 */
.common-img figcaption a {
  text-decoration: underline;
}

/* TOPへ戻るボタン */
#topBtn {
    bottom: 50px !important;
    background: #cccacd;
}
