@charset "utf-8";

/** ***************************************************************************
 * 共用
 * ************************************************************************* */

body {
  padding-top: 0 !important;
}

#main {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}

#main .section ~ .section {
  margin-top: 60px;
}

#main .column ~ .column {
  margin-top: 40px;
}

#main .section-title {
  margin-bottom: 40px;
  text-align: center;
}

#main .section-title img {
  width: auto;
  height: 16px;
}

#main .section[id] {
  transition:
    visibility 1.5s ease-in-out 0.3s,
    opacity 1.5s ease-in-out 0.3s,
    transform 1.5s ease-in-out 0.3s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
}

#main .section[id].window-in {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #main {
    padding-top: 120px;
    padding-bottom: 120px;
    line-height: 1.8;
    font-size: 16px;
  }

  #main .section ~ .section {
    margin-top: 160px;
  }

  #main .column ~ .column {
    margin-top: 60px;
  }

  #main .section-title {
    margin-bottom: 80px;
  }

  #main .section-title img {
    height: 20px;
  }

}

/** ***************************************************************************
 * ローディング
 * ************************************************************************* */

#loading {
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  animation: loading-effectt 2.0s ease-in-out 3.0s forwards;
}

@keyframes loading-effectt {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

#loading img {
  width: 25%;
  max-width: 110px;
  display: block;
  transform: translateY(20px);
  visibility: hidden;
  opacity: 0;
  animation: loading-img 1.0s ease-in-out 1.0s forwards;
}

@keyframes loading-img {
  0% {
    transform: translateY(20px);
    visibility: hidden;
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #loading img {
    width: 15%;
  }

}

/** ***************************************************************************
 * ビジュアル
 * ************************************************************************* */

#visual {
  color: #fff;
  background-color: #000;
  position: relative;
  z-index: 1;
}

#visual a {
  color: inherit;
}

/** ***************************************************************************
 * テキスト
 */

#visual div.content {
  letter-spacing: 4px;
  line-height: 2.25;
  font-family: serif;
  font-size: 1.538em;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  transition:
    visibility 1.0s ease-in-out 0.0s,
    opacity 1.0s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
}

body.loaded
#visual div.content {
  visibility: visible;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #visual div.content {
    top: 50%;
  }

}

/** ***************************************************************************
 * スクロールボタン
 */

#visual div.scroll {
  letter-spacing: 2px;
  font-family: serif;
  font-size: 1.23em;
  transform: translateX(-50%);
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 10%;
  transition:
    visibility 1.0s ease-in-out 0.0s,
    opacity 1.0s ease-in-out 0.0s;
  visibility: hidden;
  opacity: 0;
}

body.loaded
#visual div.scroll {
  visibility: visible;
  opacity: 1;
}

#visual div.scroll a {
  padding-bottom: 120px;
  letter-spacing: 1px;
  display: block;
  position: relative;
  z-index: 1;
  animation: scroll-text 2s infinite;
}

/* :::::::: アニメーション :::::::: */

@keyframes scroll-text {
  0% {
    top: -20px;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #visual div.scroll {
    bottom: 0;
  }

}

/** ===========================================================================
 * ライン
 */

#visual div.scroll::after {
  content: '';
  width: 1px;
  height: 80px;
  margin-left: -1px;
  background-color: #fff;
  vertical-align: middle;
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  animation: scroll-line 2s infinite;
}

/* :::::::: アニメーション :::::::: */

@keyframes scroll-line {
  0% {
    height: 0;
    bottom: 110px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 80px;
    bottom: 30px;
    opacity: 0;
  }
}

/** ===========================================================================
 * 四角
 */

#visual div.scroll::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-left: -4px;
  background-color: #fff;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 24px;
  animation: scroll-dot 2s infinite;
}

/* :::::::: アニメーション :::::::: */

@keyframes scroll-dot {
  0% {
    bottom: 104px;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    bottom: 24px;
    opacity: 0;
  }
}

/** ***************************************************************************
 * 動画
 */

#visual div.visual {
  padding-bottom: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

#visual div.visual::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image:url(../image/index/visual-texture.png);
  background-position: center center;
  background-repeat: repeat;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}

#visual div.visual div.texture {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1.0);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}

#visual div.visual iframe {
  max-width: none;
  width: 177.77777778vh;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transition:
    visibility 3.0s ease-in-out 1.0s,
    opacity 3.0s ease-in-out 1.0s;
  visibility: hidden;
  opacity: 0;
}

body.loaded
#visual div.visual iframe {
  visibility: visible;
  opacity: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #visual div.visual {
    padding-bottom: 56.25%;
  }

  #visual div.visual iframe {
    max-width: 100%;
    width: 100%;
    transform: none;
    top: 0;
    left: 0;
  }

}

/** ***************************************************************************
 * ABOUT STYLIO
 * ************************************************************************* */

#about div.body {
  position: relative;
  z-index: 1;
}

/** ***************************************************************************
 * タイトル
 */

#about .section-title {
  transform-origin: right top;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #about .section-title {
    margin-bottom: 0;
    position: absolute;
    z-index: 1;
    top: 210px;
    right: 20px;
  }

}

/** ***************************************************************************
 * 内容
 */

#about div.content {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

#about div.content .catchcopy {
  margin-bottom: 2em;
  font-family: 'NotoSerifCJKjp';
  font-size: 1.125em;
  font-weight: 500;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #about div.content {
    padding-right: 80px;
  }

  #about div.content .catchcopy {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.375em;
    text-align: left;
  }

}

/** ***************************************************************************
 * たとえば
 * ************************************************************************* */

#case {
  padding: 30px 0;
  background-color: #bcbab7;
}

#case div.case {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

#case div.body {
  max-width: none;
  padding: 0;
}

#case div.case div.slick-track {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

#case div.case div.item {
  width: 96vw;
  height: auto;
  float: none;
}

#case div.case div.item a {
  height: 100%;
  text-decoration: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  transition:
    color 0.5s ease-in-out 0.0s,
    background-color 0.5s ease-in-out 0.0s;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

#case div.case div.item a:hover {
  color: #000;
  background-color: #aba8a4;
}

#case div.case div.item a:hover {
  background-color: #aba8a4;
}

#case div.case div.image {
  width: 54%;
}

#case div.case div.image svg {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: right bottom;
  transition: transform 0.3s ease-in-out 0.0s;
  transform: scale(1.0);
}

#case div.case div.image svg.hover {
  transform: scale(0.95);
}

#case div.case div.content {
  width: 46%;
  padding: 0 0.5em 0.75em 0.75em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

#case div.case div.content .title {
  line-height: 1.4;
  font-family: 'NotoSerifCJKjp';
  font-size: 1.125em;
}

#case div.case div.content .text {
  margin-top: 5px;
  font-size: 0.923em;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #case {
    padding: 50px 0;
  }

  #case div.case div.item {
    max-width: 500px;
  }

  #case div.case div.content {
    padding: 1em;
  }

  #case div.case div.content .text {
    font-size: 0.875em;
  }

}

/** ***************************************************************************
 * TOPICS
 * ************************************************************************* */

#topics div.body {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #topics {
    width: fit-content;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
  }

}

/** ***************************************************************************
 * タイトル
 */

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #topics .section-title {
    margin-bottom: 0;
    transform-origin: left top;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50px;
  }

}

/** ***************************************************************************
 * 内容
 */

#topics div.topics {
  padding-bottom: 5px;
  overflow: hidden;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
}

#topics div.topics div.list {
  width: fit-content;
  max-width: none;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

#topics div.topics div.item {
  width: 65vw;
  max-width: 300px;
  margin: 0 5px;
  flex-shrink: 0;
}

#topics div.topics div.item a {
  height: 100%;
  padding: 10px 10px 15px;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: rgba(0, 0, 0, 0.0);
}

#topics div.topics div.item a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

#topics div.topics div.item div.image {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: filter 0.3s ease-in-out 0.0s;
}

#topics div.topics div.item a:hover div.image {
  filter: brightness(115%);
}

#topics div.topics div.item div.content {
  line-height: 1.8;
}

#topics div.topics div.item div.content .title {
  font-weight: 600;
  font-family: 'NotoSerifCJKjp';
}

#topics div.topics div.item div.content .text {
  margin-top: 15px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #topics div.topics {
    margin-left: 100px;
    padding-bottom: 25px;
  }

  #topics div.topics div.list {
    padding-left: 0;
  }

  #topics div.topics div.item {
    width: 25vw;
    min-width: 300px;
    max-width: 400px;
  }

  #topics div.topics div.item div.content .text {
    font-size: 0.875em;
  }

}

/** ***************************************************************************
 * NEWS
 * ************************************************************************* */

#news {
  margin-top: 80px !important;
}

#news div.body {
  max-width: 1380px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #news {
    margin-top: 160px !important;
  }

}

/** ***************************************************************************
 * タイトル
 */

#news .section-title {
  transform-origin: right top;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #news .section-title {
    margin-bottom: 0;
    position: absolute;
    z-index: 1;
    top: 110px;
    right: 20px;
  }

}

/** ***************************************************************************
 * 内容
 */

#news div.news {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

#news div.news ul.list,
#news div.news ul.list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#news div.news ul.list {
  border-top: 1px dashed #b2b2b2;
  border-bottom: 1px dashed #b2b2b2;
}

#news div.news ul.list li {
  padding: 1em;
}

#news div.news ul.list li:has(a) {
  padding: 0;
}

#news div.news ul.list li ~ li {
  border-top: 1px dashed #b2b2b2;
}

#news div.news ul.list li a {
  padding: 1em 3.5em 1em 1em;
  color: inherit;
  background: url("../image/_common/icon-arrow-3.png") center right 1em / 1.5em 1.5em no-repeat;
  display: block;
  transition: background-color 0.3s ease-in-out 0.0s;
  background-color: rgba(0, 0, 0, 0.0);
}

#news div.news ul.list li a:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #news div.news {
    padding-right: 80px;
  }

  #news div.news ul.list {
    max-width: 700px;
  }

}

/** ***************************************************************************
 * More
 */

#news div.button {
  margin-top: 30px !important;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #news div.button {
    margin-top: 60px !important;
  }

}

/** ***************************************************************************
 * STYLIO SERIES
 * ************************************************************************* */

#series {
  margin-top: 100px !important;
}

#series div.body {
  max-width: 1340px;
}

#series div.series {
  max-width: none;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #series {
    margin-top: 160px !important;
  }

  #series div.series {
    width: calc(100% + 40px);
    margin-left: -40px;
    margin-right: 0;
  }

}

/** ***************************************************************************
 * ページャー
 */

#series div.series div.pager {
  margin-bottom: 20px;
}

#series div.series div.pager ul {
  font-family: 'NotoSerifCJKjp';
  font-size: 0.7em;
  overflow: hidden;
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

#series div.series div.pager ul li {
  width: calc(100% / 2);
  cursor: pointer;
  padding: 10px 0 5px;
  text-align: center;
  transition: border-color 0.3s ease-in-out 0.0s;
  border-bottom: 3px solid #ededed;
  position: relative;
  z-index: 1;
}

#series div.series div.pager ul li::after {
  content: '';
  border-bottom: 3px solid #000;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -3px;
}

#series div.series div.pager ul li.slick-active::after {
  width: 100%;
}

#series div.series div.pager ul li:not(.slick-active):hover::after {
  animation: pager-hover 0.4s ease-in-out 0.0s forwards;
}

@keyframes pager-hover {
  0% {
    width: 0;
    left: 0;
  }
  70% {
    width: 10%;
    left: 90%;
  }
  100% {
    width: 100%;
    left: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #series div.series div.pager {
    margin-left: 40px;
    margin-bottom: 40px;
  }

  #series div.series div.pager ul {
    font-size: 0.75em;
  }

  #series div.series div.pager ul li {
    width: auto;
    padding: 10px 15px;
  }

}

/** ***************************************************************************
 * スライダー
 */

#series div.series section.item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

#series div.series section.item .series-title {
  display: none;
}

#series div.series section.item div.image {
  position: relative;
  z-index: 1;
}

#series div.series section.item div.image a {
  height: 100%;
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 1;
}

#series div.series section.item div.content {
  min-height: 9em;
  padding: 0 1.5em 1.5em;
  letter-spacing: 2px;
  line-height: 1.8;
  font-family: serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #series div.series section.item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  #series div.series section.item div.image {
    max-width: 90%;
    border-radius: 20px;
    overflow: hidden;
  }

  #series div.series section.item div.content {
    min-width: 9em;
    min-height: 0;
    height: 48.5vw;
    max-height: calc(720px + 1em);
    margin-top: 0;
    padding: 0.75em;
    padding-left: 0.75em;
    letter-spacing: 2px;
    line-height: 2.5;
    font-family: serif;
    font-size: 0.9375em;
    text-align: left;
    writing-mode: vertical-rl;
    text-orientation: upright;
    align-items: flex-start;
    justify-content: flex-start;
    order: 0;
  }

}

/** ***************************************************************************
 * 前へ / 次へ
 */

#series div.series div.arrow {
  padding: 20px;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #series div.series div.arrow {
    right: 5px;
    bottom: 5px;
  }

}

/** ***************************************************************************
 * 全ての物件一覧・実績を見る
 */

#series div.button {
  margin-top: 30px !important;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #series div.button {
    margin-top: 60px !important;
  }

}

/** ***************************************************************************
 * QUALITY
 * ************************************************************************* */

#quality {
  margin-top: 100px !important;
}

#quality div.body {
  max-width: 1340px;
}

#quality div.quality {
  max-width: none;
  margin-top: -20px;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #quality {
    margin-top: 160px !important;
  }

  #quality div.quality {
    width: calc(100% + 40px);
    margin-top: 0;
    margin-left: -40px;
    margin-right: 0;
  }

}

/** ***************************************************************************
 * スライダー
 */

#quality div.quality div.item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

#quality div.quality div.item div.image {
  position: relative;
  z-index: 1;
}

#quality div.quality div.item div.image a {
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 1;
}

#quality div.quality div.item div.image a:not([href]) {
  filter: brightness(50%);
}

#quality div.quality div.item div.image a:not([href])::before {
  content: 'coming soon';
  width: 100%;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1.375em;
  font-weight: 500;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: calc(50% - 0.5em);
  left: 0;
}

#quality div.quality div.item div.content {
  min-height: 7em;
  padding: 0 1.5em 1.5em;
  letter-spacing: 2px;
  line-height: 1.8;
  font-family: serif;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #quality div.quality div.item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  #quality div.quality div.item div.image {
    max-width: 90%;
    border-radius: 20px;
    overflow: hidden;
  }

  #quality div.quality div.item div.content {
    min-width: 9em;
    min-height: 0;
    height: 48.5vw;
    max-height: calc(720px + 1em);
    margin-top: 0;
    padding: 0.75em;
    padding-left: 0.75em;
    letter-spacing: 2px;
    line-height: 2.5;
    font-family: serif;
    font-size: 0.9375em;
    text-align: left;
    writing-mode: vertical-rl;
    text-orientation: upright;
    align-items: flex-start;
    justify-content: flex-start;
    order: 0;
  }

}

/** ***************************************************************************
 * 前へ / 次へ
 */

#quality div.quality div.arrow {
  padding: 20px;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #quality div.quality div.arrow {
    right: 5px;
    bottom: 5px;
  }

}

/** ***************************************************************************
 * 内容
 */

#quality div.content {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: 'NotoSerifCJKjp';
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #quality div.content {
    text-align: center;
  }

}

/** ***************************************************************************
 * リンクボタン
 */

#quality div.button {
  margin-top: 30px !important;
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:737px) {

  #quality div.button {
    margin-top: 60px !important;
  }

}
