@charset "utf-8";

/* 全体共通 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffff;
    color: #4F4E4E;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
}

/* ヘッダー */

.header {
  padding: 24px 6.4% 16px;
}

.header__topic,
.nav__topic {
  color: #000;
  font-weight: 700;
  font-size: 2.4rem;
}

.header__topicSp { 
  margin-top: auto;
  width: 150px; 
  height: 64px;
}

.header {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.header__logoSp {
  max-width: 200px;
  height: auto;
}

.telephone {
  display: none;
}

@media screen and (max-width:768px) {
  .header__topicPc {
    display: none;
  }
}

/* .nav初期表示 */
.nav {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100vh;
  padding: 24px 6.4%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.nav__list {
  margin-top: 66px;
}

.nav__item {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: #2F2F2F;
  margin-top: 30px;
}

.nav__item img {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 24px;
}

/* .nav.active表示 */
.nav.active {
  transform: translateX(0);
}

/* .header pc */
@media screen and (min-width:769px) {
  .header {
      display: block;
      max-width: 1280px;
      margin: 0 auto;
      padding: 30px 60px 30px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-direction: column;
  }

  .header__logo { 
      margin-top: auto;
      width: 340px; 
      height: auto;
  }

  .telephone {
      display: flex;
      justify-content: flex-end;
      font-size: 36px;
      font-weight: bold;
      color: #4F4E4E;
  }

  .header__topicSp {
      display: none;
  }

  .menu_btn img {
      display: none;
  }
  /* .menu_btn { 
      right: 5%;
      top: 60px;
  }  */  
  
  .tel_btn {
      margin: 10px 10px 0;
      position: relative;
      top: auto;
      right: auto;
  }
  
  .tel_set {
      display: flex;
      justify-content: flex-end;
      position: absolute;
      top:60px;
      right: 8%;
  }

  .nav {
      background: transparent;
      width: 100%;
      height: auto;
      padding: 0;
      position: static; 
      transform: translate(0);
  }

  .nav__list {
      margin-top: 0;
      display: flex;
      justify-content: space-between;
     
  }

  .nav__item a {
      display: flex;
      justify-content: space-between;
  }

  .nav__item a :last-of-type {
      margin-top: -2px;
  }

  .nav__item {
      font-weight: 400;
      font-size: 1.6rem;
      color: #0000cd;
      display: block;
      font-size: 20px;
  }

  .nav__header {
      display: none;
  }

  .nav__item img {
      display: block;
      width: 30px;
      height: 30px;
      margin: -8px 10px 0;
  }

  .nav__item:first-of-type {
      display: block;
      
  }

}/* pc 769px */




/* セクション共通 */
.section {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
}

.section--topics h1.section_topics {
    font-family: EB Garamond;
    font-size: 40px;
    font-weight: normal;
    text-align: center;
    color: #4F4E4E;
}

.japanese_title {
  font-size: 15px;
  font-weight: bold;
  color: #109AC4;
  margin-bottom: 20px;
  text-align: center;
}

/*  セクション共通 pc */
@media screen and (min-width:769px) {
  .splide {
    max-width: 1280px;
    margin: 0 auto;
  }

  .section--topics h1.section_topics {
    font-size: 64px;
    font-weight: normal;
    margin-bottom: -10px;
  }

  .japanese_title {
    font-size: 20px;
    font-weight: bold;
    color: #109AC4;
    margin-bottom: 30px;
    text-align: center;
  }
}

/* 画像スライダー */

.splide {
    background-color: #109AC4;
    border-radius: 6px;
}



.splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 6px; */
    margin-top: 20px;
}

.slick-prev.slick-arrow {
    left: -30px;
    z-index: 10;
    color: #4F4E4E;
}

.slick-next.slick-arrow {
    right: -30px;
    z-index: 10;
    color: #4F4E4E;
}

.slick-prev.slick-arrow::before,
.slick-next.slick-arrow::before {
    color: #4F4E4E;
}

.slick-prev,
.slick-next {
    width: auto;
    height: 80px;
}


/* メインスライダー */
.sub__title {
    padding-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.thumbnail__slide img {
  margin: 0 auto;
}

#main-slider {
  margin-bottom: 20px;
}

.slick-slide {
  height: auto;
}

.splide__list {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}

.slick-next:before, .slick-prev:before {
  font-size: 30px; /* スライダー矢印の大きさ  */
}

/* サムネイル */
.thumbnail {
  padding-bottom: 15px;
}

.thumbnail-slider .splide__slide {
  opacity: 0.5;
  cursor: pointer;
  padding: 4px;
  margin-top: 30px;
}

.thumbnail-slider .splide__slide.is-active {
  opacity: 1;
  border: 2px solid #007BFF;
}

.thumbnail-slider img {
  height: auto;  
  width: 100px;
  /* height: 60px; */
  object-fit: cover;
  border-radius: 4px;
  
}

.thumbnail__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
}

/*  スライダーpc */
@media screen and (min-width: 769px) {
  .sub__title { 
    font-size: 40px;
    padding-top: 60px;
  } 

  .slick-next:before, .slick-prev:before {
    font-size: 60px; /* スライダー矢印の大きさ  */
    /* padding-left: -50px; */
  }

  .slick-prev.slick-arrow {
    left: -80px;
  }
  .slick-next.slick-arrow {
    right: -80px;
  }

} /* pc 769px */ 


@media screen and (max-width: 600px) {
  .thumbnail-slider img {
    width: 70px;
    height: 50px;
  }
}


/* 物件詳細 */
.section--property_details {
    background-color: #fff;
    border-radius: 8px;
    /* padding: 24px; */
}

.topics__category {
    display: block;
    padding: 0.5em 1em;
    background-color: 4F4E4E;
    border: solid 3px #234E73;
    border-radius: 30px;
    color: #ffff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    position: absolute;
    height: 30px;
    width: 150px;
    text-align: center;
    line-height: 8px;
    /* font-size: 20px; 
    font-weight: 700;
    color: #555;*/
}

.topics__price {
    display: flex;
    justify-content: right;
    font-size: 28px;
    font-weight: bold;
    color: #e53935;
    margin-top: -8px;
    margin-bottom: 24px;
}

.box {
    padding: 0.5em 1em;
    /* margin: 1em 0; */
    color: #109AC4;
    background: #EAF4F7;
    border-left: solid 10px #109AC4;
    /* font-weight: bold; 
    margin-top: 12px;
    color: #444;*/
}

.box p {
    font-size: 13px;
    margin: 0;
    padding: 0;
}

.box__txt {
    font-size: 13px;
    padding-left: 8px;
    margin: 5px 0 25px;
    color: #333;
}

/*  物件詳細pc */
@media screen and (min-width: 769px){
  .topics__price {
    display: flex;
    justify-content: right;
    font-size: 60px;
  }

  .topics__category {
    font-size: 32px;
    border-radius: 60px;
    height: 70px;
    width: 360px;
    text-align: center;
    line-height: 25px;
  }    
  
  .box p {
    font-size: 20px;
    padding-left: 15px;
  }

  .box__txt {
    font-size: 20px;
    padding-left: 20px;
    margin: 10px 0 40px;
    
  }
  
} /* pc 769px */ 


/*==========================
footer
==========================*/
.footer {
  padding: 32px 4.2%;
}

.footer__topic {
  max-width: 150px;
}

.mail_btn {
  display: block;
  width: 40px;
  height: 40px;
  
  position: absolute;
  top: 40px;
  right: 6.4%;
}

.mail_btn a {
  display: block;
}

.copy {
  margin-top: 10px;
}

.copy small {
  font-size: 1.2rem;
}

/* footer pc */
@media screen and (min-width: 769px) {
  .footer {
      /* padding: 64px 60px; */
      max-width: 1280px;
      margin: 0 auto;
  }

  .footer__group {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .footer__topic {
      font-size: 2.4rem;
      line-height: 1;
      max-width: 100%;
  }

  .footer__logo {
      margin-top: auto;
      width: 340px;
      height: auto;
  }
  

  .menu__list {
      display: flex;
      margin-top: 0;
  }

  .menu__item {
      margin-top: 0;
      margin-left: 32px;
  }

  .copy {
      /* margin-top: 10px; */
  }
  
}/* pc 769px */



/* レスポンシブ対応 */
@media screen and (min-width: 768px) {
    .container {
        max-width: 1280px;
        margin: 0 auto;
    }

    .header__topicSp {
        display: none;
    }

    .header__topicPc {
        display: block;
    }

    .section--property_details {
        padding: 40px;
    }

    .box,
    .box__txt {
        display: flex;
        gap: 10px;
    }

    .box p,
    .box__txt p {
        margin: 0;
    }
}

